Repository: SSSYDYSSS/TransProR Branch: main Commit: cdf08bed9130 Files: 138 Total size: 928.3 KB Directory structure: gitextract_t_svwp8g/ ├── .Rbuildignore ├── .github/ │ ├── .gitignore │ └── workflows/ │ └── R-CMD-check.yaml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── R/ │ ├── AdjustAlphaScale.R │ ├── CircosFruits.R │ ├── CombatNormal.R │ ├── CombatTumor.R │ ├── CompareMerge.R │ ├── Contrast_Venn.R │ ├── DESeq2Analyze.R │ ├── EdgeRAnalyze.R │ ├── EnrichCirclize.R │ ├── EnrichCircoBar.R │ ├── EnrichPolarBubble.R │ ├── EnrichmentSpiralize.R │ ├── FacetDensityFoldchange.R │ ├── FilterDiffGenes.R │ ├── FourDegsVenn.R │ ├── GatherGraphEdge.R │ ├── GatherGraphNode.R │ ├── GeneColor.R │ ├── GeneHighlights.R │ ├── GeneMapPathway.R │ ├── GetGtexExp.R │ ├── GetTcgaExp.R │ ├── HighlightByNode.R │ ├── HighlightGenes.R │ ├── LimmaAnalyze.R │ ├── LogTransform.R │ ├── MergeDensityFoldchange.R │ ├── MergeGtexTcga.R │ ├── MergeIDPosition.R │ ├── MergeMethodColor.R │ ├── NewGgraph.R │ ├── PathwayCount.R │ ├── PathwayDescription.R │ ├── PrepDeseq2.R │ ├── PrepEdgeR.R │ ├── PrepLimma.R │ ├── PrepWilcoxon.R │ ├── ProcessHeatdata.R │ ├── SeekGtexOrgan.R │ ├── WilcoxonAnalyze.R │ ├── data.R │ ├── utils-pipe.R │ └── zzz.R ├── README.md ├── TransProR.Rproj ├── data/ │ ├── all_degs_venn.rda │ └── gtree.rda ├── data-raw/ │ └── MAKEDATA.R ├── dev/ │ ├── build.R │ └── dev.R ├── inst/ │ └── extdata/ │ ├── DEG_deseq2.rds │ ├── DEG_deseq2_test.rds │ ├── DEG_edgeR_test.rds │ ├── DEG_limma_voom_test.rds │ ├── Diff_deseq2.rds │ ├── GTEX_phenotype_test │ ├── SKCM_Skin_TCGA_exp_normal_test.rds │ ├── SKCM_Skin_TCGA_exp_tumor_test.rds │ ├── Skin_SKCM_Gtex_test.rds │ ├── TCGA-SKCM.GDC_phenotype_test.tsv │ ├── TCGA-SKCM.htseq_counts_test.tsv │ ├── TCGA_gencode.v22.annotation.gene.probeMap_test │ ├── Wilcoxon_rank_sum_testoutRst_test.rds │ ├── all_count_exp_test.csv │ ├── ascii_art.txt │ ├── combined_df.rds │ ├── gtex_gene_expected_count_test │ ├── gtex_probeMap_gencode.v23.annotation.gene.probemap_test │ ├── p_tree_test.rds │ ├── removebatch_SKCM_Skin_Normal_TCGA_GTEX_count_test.rds │ ├── removebatch_SKCM_Skin_TCGA_exp_tumor_test.rds │ ├── selected_genes_deseq2.rds │ └── tree_plot.rds ├── man/ │ ├── Combat_Normal.Rd │ ├── Contrast_Venn.Rd │ ├── DESeq2_analyze.Rd │ ├── Wilcoxon_analyze.Rd │ ├── add_boxplot.Rd │ ├── add_new_tile_layer.Rd │ ├── adjust_alpha_scale.Rd │ ├── adjust_color_tone.Rd │ ├── adjust_export_pathway.Rd │ ├── all_degs_venn.Rd │ ├── circos_fruits.Rd │ ├── combat_tumor.Rd │ ├── compare_merge.Rd │ ├── create_base_plot.Rd │ ├── deg_filter.Rd │ ├── drawLegends.Rd │ ├── edgeR_analyze.Rd │ ├── enrich_circo_bar.Rd │ ├── enrich_polar_bubble.Rd │ ├── enrichment_circlize.Rd │ ├── enrichment_spiral_plots.Rd │ ├── extract_descriptions_counts.Rd │ ├── extract_ntop_pathways.Rd │ ├── extract_positive_pathways.Rd │ ├── facet_density_foldchange.Rd │ ├── filter_diff_genes.Rd │ ├── four_degs_venn.Rd │ ├── gather_graph_edge.Rd │ ├── gather_graph_node.Rd │ ├── gene_color.Rd │ ├── gene_highlights.Rd │ ├── gene_map_pathway.Rd │ ├── get_gtex_exp.Rd │ ├── get_tcga_exp.Rd │ ├── gtree.Rd │ ├── highlight_by_node.Rd │ ├── highlight_genes.Rd │ ├── limma_analyze.Rd │ ├── log_transform.Rd │ ├── merge_density_foldchange.Rd │ ├── merge_gtex_tcga.Rd │ ├── merge_id_position.Rd │ ├── merge_method_color.Rd │ ├── new_ggraph.Rd │ ├── pathway_count.Rd │ ├── pathway_description.Rd │ ├── pipe.Rd │ ├── prep_deseq2.Rd │ ├── prep_edgeR.Rd │ ├── prep_limma.Rd │ ├── prep_wilcoxon.Rd │ ├── process_heatdata.Rd │ ├── seek_gtex_organ.Rd │ ├── selectPathways.Rd │ └── spiral_newrle.Rd └── vignettes/ └── TransProR.Rmd ================================================ FILE CONTENTS ================================================ ================================================ FILE: .Rbuildignore ================================================ ^.*\.Rproj$ ^\.Rproj\.user$ ^data-raw$ ^data-raw$ ^dev$ ^CODE_OF_CONDUCT\.md$ ^LICENSE\.md$ ^\.github$ ^\.RDataTmp$ ================================================ FILE: .github/.gitignore ================================================ *.html ================================================ FILE: .github/workflows/R-CMD-check.yaml ================================================ name: R-CMD-check on: push: branches: [main, master] pull_request: branches: [main, master] jobs: R-CMD-check: runs-on: ${{ matrix.config.os }} name: ${{ matrix.config.os }} (${{ matrix.config.r }}) strategy: fail-fast: false matrix: config: - {os: macos-latest, r: 'release'} - {os: windows-latest, r: 'release'} - {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'} - {os: ubuntu-latest, r: 'release'} - {os: ubuntu-latest, r: 'oldrel-1'} env: R_KEEP_PKG_SOURCE: yes steps: # Checkout repository - uses: actions/checkout@v3 # Set up pandoc - uses: r-lib/actions/setup-pandoc@v2 # Set up R environment - uses: r-lib/actions/setup-r@v2 with: r-version: ${{ matrix.config.r }} http-user-agent: ${{ matrix.config.http-user-agent }} use-public-rspm: true # Automatically install dependencies from DESCRIPTION - uses: r-lib/actions/setup-r-dependencies@v2 with: extra-packages: >- any::rcmdcheck # Manually install Bioconductor and other missing dependencies - name: Install dependencies run: | Rscript -e "if (!requireNamespace('BiocManager', quietly = TRUE)) install.packages('BiocManager')" Rscript -e "BiocManager::install()" Rscript -e "if (!requireNamespace('remotes', quietly = TRUE)) install.packages('remotes')" Rscript -e "remotes::install_deps(dependencies = TRUE)" # Run R CMD check - uses: r-lib/actions/check-r-package@v2 with: upload-snapshots: true ================================================ FILE: .gitignore ================================================ .Rproj.user .Rhistory .RData .Ruserdata .Rdata .httr-oauth .DS_Store .quarto .RDataTmp ================================================ FILE: CODE_OF_CONDUCT.md ================================================ # Contributor Covenant Code of Conduct ## Our Pledge We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, caste, color, religion, or sexual identity and orientation. We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community. ## Our Standards Examples of behavior that contributes to a positive environment for our community include: * Demonstrating empathy and kindness toward other people * Being respectful of differing opinions, viewpoints, and experiences * Giving and gracefully accepting constructive feedback * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience * Focusing on what is best not just for us as individuals, but for the overall community Examples of unacceptable behavior include: * The use of sexualized language or imagery, and sexual attention or advances of any kind * Trolling, insulting or derogatory comments, and personal or political attacks * Public or private harassment * Publishing others' private information, such as a physical or email address, without their explicit permission * Other conduct which could reasonably be considered inappropriate in a professional setting ## Enforcement Responsibilities Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful. Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate. ## Scope This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at yudongyue@mail.nankai.edu.cn. All complaints will be reviewed and investigated promptly and fairly. All community leaders are obligated to respect the privacy and security of the reporter of any incident. ## Enforcement Guidelines Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct: ### 1. Correction **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community. **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested. ### 2. Warning **Community Impact**: A violation through a single incident or series of actions. **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban. ### 3. Temporary Ban **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior. **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban. ### 4. Permanent Ban **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals. **Consequence**: A permanent ban from any sort of public interaction within the community. ## Attribution This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.1, available at . Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder][https://github.com/mozilla/inclusion]. For answers to common questions about this code of conduct, see the FAQ at . Translations are available at . [homepage]: https://www.contributor-covenant.org ================================================ FILE: DESCRIPTION ================================================ Package: TransProR Type: Package Title: Analysis and Visualization of Multi-Omics Data Version: 1.0.4 Authors@R: person("Dongyue", "Yu", email = "yudongyue@mail.nankai.edu.cn", role = c("aut", "cre", "cph"), comment = c(ORCID = "0000-0002-7041-2073")) Maintainer: Dongyue Yu Description: A tool for comprehensive transcriptomic data analysis, with a focus on transcript-level data preprocessing, expression profiling, differential expression analysis, and functional enrichment. It enables researchers to identify key biological processes, disease biomarkers, and gene regulatory mechanisms. 'TransProR' is aimed at researchers and bioinformaticians working with RNA-Seq data, providing an intuitive framework for in-depth analysis and visualization of transcriptomic datasets. The package includes comprehensive documentation and usage examples to guide users through the entire analysis pipeline. The differential expression analysis methods incorporated in the package include 'limma' (Ritchie et al., 2015, ; Smyth, 2005, ), 'edgeR' (Robinson et al., 2010, ), 'DESeq2' (Love et al., 2014, ), and Wilcoxon tests (Li et al., 2022, ), providing flexible and robust approaches to RNA-Seq data analysis. For more information, refer to the package vignettes and related publications. Imports: magrittr, stats, dplyr, rlang, tibble, sva, DESeq2, utils, edgeR, limma, ggplot2, ggVennDiagram, ggdensity, ggpubr, ggtree, hrbrthemes, grid, ggraph, tidygraph, tidyr, stringr, geomtextpath, ggalt, ggnewscale, Hmisc, circlize, graphics, spiralize, ComplexHeatmap, grDevices Suggests: prettydoc, knitr, ggtreeExtra, rmarkdown, systemfonts VignetteBuilder: knitr License: MIT + file LICENSE Encoding: UTF-8 URL: https://github.com/SSSYDYSSS/TransProRBook BugReports: https://github.com/SSSYDYSSS/TransProR/issues LazyData: true RoxygenNote: 7.3.2 Depends: R (>= 4.3.0) ================================================ FILE: LICENSE ================================================ YEAR: 2023 COPYRIGHT HOLDER: Dongyue Yu ================================================ FILE: LICENSE.md ================================================ # MIT License Copyright (c) 2023 Dongyue Yu Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: NAMESPACE ================================================ # Generated by roxygen2: do not edit by hand export("%>%") export(Combat_Normal) export(Contrast_Venn) export(DESeq2_analyze) export(Wilcoxon_analyze) export(add_boxplot) export(add_new_tile_layer) export(adjust_alpha_scale) export(adjust_color_tone) export(adjust_export_pathway) export(circos_fruits) export(combat_tumor) export(compare_merge) export(create_base_plot) export(deg_filter) export(drawLegends) export(edgeR_analyze) export(enrich_circo_bar) export(enrich_polar_bubble) export(enrichment_circlize) export(enrichment_spiral_plots) export(extract_descriptions_counts) export(extract_ntop_pathways) export(extract_positive_pathways) export(facet_density_foldchange) export(filter_diff_genes) export(four_degs_venn) export(gather_graph_edge) export(gather_graph_node) export(gene_color) export(gene_highlights) export(gene_map_pathway) export(get_gtex_exp) export(get_tcga_exp) export(highlight_by_node) export(highlight_genes) export(limma_analyze) export(log_transform) export(merge_density_foldchange) export(merge_gtex_tcga) export(merge_id_position) export(merge_method_color) export(new_ggraph) export(pathway_count) export(pathway_description) export(prep_deseq2) export(prep_edgeR) export(prep_limma) export(prep_wilcoxon) export(process_heatdata) export(seek_gtex_organ) export(selectPathways) export(spiral_newrle) importFrom(ComplexHeatmap,Legend) importFrom(ComplexHeatmap,draw) importFrom(ComplexHeatmap,packLegend) importFrom(DESeq2,DESeq) importFrom(DESeq2,DESeqDataSetFromMatrix) importFrom(DESeq2,results) importFrom(Hmisc,capitalize) importFrom(circlize,chordDiagram) importFrom(dplyr,across) importFrom(dplyr,all_of) importFrom(dplyr,arrange) importFrom(dplyr,bind_rows) importFrom(dplyr,desc) importFrom(dplyr,distinct) importFrom(dplyr,filter) importFrom(dplyr,group_by) importFrom(dplyr,inner_join) importFrom(dplyr,mutate) importFrom(dplyr,n) importFrom(dplyr,pull) importFrom(dplyr,row_number) importFrom(dplyr,select) importFrom(dplyr,summarise) importFrom(edgeR,DGEList) importFrom(edgeR,calcNormFactors) importFrom(edgeR,cpm) importFrom(edgeR,estimateGLMCommonDisp) importFrom(edgeR,estimateGLMTagwiseDisp) importFrom(edgeR,estimateGLMTrendedDisp) importFrom(edgeR,filterByExpr) importFrom(edgeR,glmFit) importFrom(edgeR,glmLRT) importFrom(edgeR,topTags) importFrom(geomtextpath,geom_textpath) importFrom(ggVennDiagram,ggVennDiagram) importFrom(ggalt,stat_xspline) importFrom(ggdensity,geom_hdr) importFrom(ggdensity,geom_hdr_rug) importFrom(ggnewscale,new_scale) importFrom(ggnewscale,new_scale_fill) importFrom(ggplot2,aes) importFrom(ggplot2,aes_string) importFrom(ggplot2,alpha) importFrom(ggplot2,annotate) importFrom(ggplot2,coord_cartesian) importFrom(ggplot2,coord_polar) importFrom(ggplot2,element_blank) importFrom(ggplot2,element_rect) importFrom(ggplot2,expansion) importFrom(ggplot2,facet_wrap) importFrom(ggplot2,geom_bar) importFrom(ggplot2,geom_hline) importFrom(ggplot2,geom_point) importFrom(ggplot2,geom_segment) importFrom(ggplot2,geom_smooth) importFrom(ggplot2,geom_text) importFrom(ggplot2,ggplot) importFrom(ggplot2,guide_legend) importFrom(ggplot2,labs) importFrom(ggplot2,margin) importFrom(ggplot2,scale_alpha_continuous) importFrom(ggplot2,scale_color_brewer) importFrom(ggplot2,scale_color_manual) importFrom(ggplot2,scale_fill_gradient) importFrom(ggplot2,scale_fill_identity) importFrom(ggplot2,scale_fill_manual) importFrom(ggplot2,scale_size) importFrom(ggplot2,scale_x_continuous) importFrom(ggplot2,scale_y_continuous) importFrom(ggplot2,theme) importFrom(ggplot2,theme_minimal) importFrom(ggplot2,theme_void) importFrom(ggplot2,unit) importFrom(ggpubr,stat_cor) importFrom(ggraph,geom_edge_diagonal) importFrom(ggraph,geom_node_point) importFrom(ggraph,geom_node_text) importFrom(ggraph,ggraph) importFrom(ggraph,node_angle) importFrom(ggraph,scale_edge_colour_brewer) importFrom(ggtree,aes) importFrom(ggtree,geom_hilight) importFrom(ggtree,geom_point2) importFrom(grDevices,col2rgb) importFrom(grDevices,convertColor) importFrom(grDevices,rgb) importFrom(graphics,strwidth) importFrom(grid,gpar) importFrom(grid,grid.roundrect) importFrom(grid,grid.text) importFrom(grid,pushViewport) importFrom(grid,unit) importFrom(grid,upViewport) importFrom(grid,viewport) importFrom(hrbrthemes,theme_ipsum) importFrom(limma,contrasts.fit) importFrom(limma,eBayes) importFrom(limma,lmFit) importFrom(limma,topTable) importFrom(magrittr,"%>%") importFrom(rlang,.data) importFrom(rlang,sym) importFrom(spiralize,spiral_initialize) importFrom(spiralize,spiral_rect) importFrom(spiralize,spiral_text) importFrom(spiralize,spiral_track) importFrom(stats,as.formula) importFrom(stats,model.matrix) importFrom(stats,na.omit) importFrom(stats,p.adjust) importFrom(stats,quantile) importFrom(stats,wilcox.test) importFrom(stringr,str_c) importFrom(sva,ComBat_seq) importFrom(tibble,as_tibble) importFrom(tibble,column_to_rownames) importFrom(tibble,tibble) importFrom(tidygraph,tbl_graph) importFrom(tidyr,unite) importFrom(utils,head) importFrom(utils,read.table) importFrom(utils,tail) ================================================ FILE: R/AdjustAlphaScale.R ================================================ #' Adjust Alpha Scale for Data Visualization #' #' This function dynamically adjusts the transparency scale for visualizations, #' especially useful when the range of data values varies significantly across different sources. #' It modifies the transparency scale based on the range of values present in the data, #' ensuring that the visualization accurately reflects variations within the data. #' #' @importFrom ggplot2 scale_alpha_continuous guide_legend ggplot geom_point #' @param data A data frame containing the values for which the alpha scale is to be adjusted. #' @param name Character string that will be used as the title of the legend in the plot. #' @param range Numeric vector of length 2 specifying the range of alpha values, defaults to c(0.2, 0.8). #' @return A ggplot2 alpha scale adjustment layer. #' @export #' #' @examples #' # Assuming 'data' is a DataFrame with a 'value' column #' plot_data <- data.frame(value = c(10, 20, 30, 40, 50)) #' ggplot2::ggplot(plot_data, ggplot2::aes(x = 1:nrow(plot_data), y = value)) + #' ggplot2::geom_point(ggplot2::aes(alpha = value)) + #' adjust_alpha_scale(plot_data, "Transparency Scale") #' adjust_alpha_scale <- function(data, name, range = c(0.2, 0.8)) { min_val <- min(data$value, na.rm = TRUE) # Calculate minimum value, excluding NA max_val <- max(data$value, na.rm = TRUE) # Calculate maximum value, excluding NA # Apply scale_alpha_continuous from 'ggplot2' to adjust transparency scale_alpha_continuous( name = name, # Legend title limits = c(min_val, max_val), # Set the data range for alpha scaling range = range, # Set the alpha transparency range guide = guide_legend(keywidth = 0.65, keyheight = 0.35, order = 2) # Customize legend appearance ) } ================================================ FILE: R/CircosFruits.R ================================================ #' Create a base plot with gene expression data on a phylogenetic tree #' #' This function creates a base plot using 'ggtree' and 'ggtreeExtra' libraries, adding gene expression #' data as colored tiles to the plot. It allows for dynamic coloring of the genes and includes #' adjustments for alpha transparency based on the expression value. #' #' @importFrom ggplot2 aes scale_fill_manual scale_alpha_continuous guide_legend #' @param p A ggtree plot object to which the data will be added. #' @param data A data frame containing gene expression data with columns for Samples, Genes, and Values. #' @param gene_colors A named vector of colors for genes. #' @param gene_label A character string used as a label in the legend for the genes. Default is "Gene". #' @return A `ggtree` plot object with the gene expression data added. #' @export #' #' @examples #' \donttest{ #' # Check and load required packages #' if (requireNamespace("ggtreeExtra", quietly = TRUE) && #' requireNamespace("ggplot2", quietly = TRUE)) { #' library(ggtreeExtra) #' library(ggplot2) #' #' file_path <- system.file("extdata", "p_tree_test.rds", package = "TransProR") #' p <- readRDS(file_path) #' #' # Create gene expression data frame #' expression_data <- data.frame( #' Sample = rep(c("Species_A", "Species_B", "Species_C", "Species_D"), each = 5), #' Gene = rep(paste0("Gene", 1:5), times = 4), #' Value = runif(20, min = 0, max = 1) # Randomly generate expression values between 0 and 1 #' ) #' #' # Define gene colors (named vector) #' gene_colors <- c( #' Gene1 = "#491588", #' Gene2 = "#301b8d", #' Gene3 = "#1a237a", #' Gene4 = "#11479c", #' Gene5 = "#0a5797" #' ) #' #' # Call create_base_plot function to add gene expression data #' p <- create_base_plot(p, expression_data, gene_colors) #' } else { #' message("Required packages 'ggtreeExtra' and 'ggplot2' are not installed.") #' } #' } #' create_base_plot <- function(p, data, gene_colors, gene_label="Gene") { # Define local variables Sample <- data$Sample value <- data$value Gene <- data$Gene if (!requireNamespace("ggtreeExtra", quietly = TRUE)) { stop("ggtreeExtra is required for using create_base_plot. Please install it.", call. = FALSE) } if (!requireNamespace("ggplot2", quietly = TRUE)) { stop("ggplot2 is required to use geom_tile. Please install it.", call. = FALSE) } p <- p + ggtreeExtra::geom_fruit( data=data, geom="geom_tile", mapping=ggplot2::aes(y=Sample, alpha=value, x=Gene, fill=Gene), offset=0.001, pwidth=2 ) + ggplot2::scale_fill_manual( name=gene_label, values=gene_colors, guide=ggplot2::guide_legend(keywidth=0.65, keyheight=0.35, order=1) ) + # Assuming the function 'adjust_alpha_scale' is defined elsewhere to adjust alpha scale based on the expression values adjust_alpha_scale(data, gene_label) return(p) } #' Add a boxplot layer to a `ggtree` plot #' #' This function adds a boxplot layer to an existing `ggtree` plot object using ggtreeExtra's geom_fruit for boxplots. #' It is primarily used to display statistical summaries of the data related to gene expressions or other metrics. #' #' @importFrom ggplot2 aes #' @param p An existing ggtree plot object. #' @param data A data frame containing the data to be plotted. Expected to have columns for 'Sample' and 'value'. #' @param fill_color A character string specifying the fill color for the boxplots. Default is "#f28131". #' @param alpha Numeric value for the transparency of the boxplots. Default is 0.6. #' @param offset Numeric value, the position of the boxplot on the x-axis relative to its gene name. Default is 0.22. #' @param pwidth Numeric value, the width of the boxplot. Default is 0.5. #' @return A `ggtree` plot object with the added boxplot layer. #' @export #' #' @examples #' \donttest{ #' # Check and load required packages #' if (requireNamespace("ggtreeExtra", quietly = TRUE) && #' requireNamespace("ggplot2", quietly = TRUE)) { #' library(ggtreeExtra) #' library(ggplot2) #' #' file_path <- system.file("extdata", "p_tree_test.rds", package = "TransProR") #' p <- readRDS(file_path) #' #' # Create boxplot data frame #' boxplot_data <- data.frame( #' Sample = rep(c("Species_A", "Species_B", "Species_C", "Species_D"), each = 30), #' value = c( #' rnorm(30, mean = 5, sd = 1), # Data for Species_A #' rnorm(30, mean = 7, sd = 1.5), # Data for Species_B #' rnorm(30, mean = 6, sd = 1.2), # Data for Species_C #' rnorm(30, mean = 8, sd = 1.3) # Data for Species_D #' ) #' ) #' #' # Call add_boxplot function to add boxplot layer #' p_with_boxplot <- add_boxplot(p, boxplot_data) #' } else { #' message("Required packages 'ggtreeExtra' and 'ggplot2' are not installed.") #' } #' } #' add_boxplot <- function(p, data, fill_color="#f28131", alpha=0.6, offset=0.22, pwidth=0.5) { # Define local variables Sample <- data$Sample value <- data$value if (!requireNamespace("ggtreeExtra", quietly = TRUE)) { stop("ggtreeExtra is required for using create_base_plot. Please install it.", call. = FALSE) } if (!requireNamespace("ggplot2", quietly = TRUE)) { stop("ggplot2 is required to use geom_boxplot. Please install it.", call. = FALSE) } p + ggtreeExtra::geom_fruit( data=data, geom="geom_boxplot", mapping=ggplot2::aes(y=Sample, x=value), fill=fill_color, alpha=alpha, offset=offset, pwidth=pwidth, size=0.05, outlier.size=0.3, outlier.stroke=0.06, outlier.shape=21, show.legend=FALSE ) } #' Add a new tile layer with dynamic scales to a `ggtree` plot #' #' This function adds a new tile layer to an existing `ggtree` plot object, allowing for separate scales for fill #' and alpha transparency. This is useful when you want to add additional data layers without interfering with #' the existing scales in the plot. It utilizes the 'ggnewscale' package to reset scales for new layers. #' #' @importFrom ggplot2 aes scale_fill_manual guide_legend #' @importFrom ggnewscale new_scale #' @param p An existing ggtree plot object. #' @param data A data frame containing the data to be plotted. Expected to have columns for 'Sample', 'Gene', and 'value'. #' @param gene_colors A named vector of colors for genes. #' @param gene_label A character string used as a label in the legend for the genes. #' @param alpha_value A numeric or named vector for setting the alpha scale based on values. #' @param offset Numeric value, the position of the tile on the x-axis relative to its gene name. Default is 0.02. #' @param pwidth Numeric value, the width of the tile. Default is 2. #' @return A `ggtree` plot object with the added tile layer and new scales. #' @export #' #' @examples #' \donttest{ #' # Check and load required packages #' if (requireNamespace("ggtreeExtra", quietly = TRUE) && #' requireNamespace("ggplot2", quietly = TRUE) && #' requireNamespace("ggnewscale", quietly = TRUE)) { #' library(ggtreeExtra) #' library(ggplot2) #' library(ggnewscale) #' #' file_path <- system.file("extdata", "p_tree_test.rds", package = "TransProR") #' p <- readRDS(file_path) #' #' # Create new expression data #' new_expression_data <- data.frame( #' Sample = rep(c("Species_A", "Species_B", "Species_C", "Species_D"), each = 3), #' Gene = rep(c("Gene6", "Gene7", "Gene8"), times = 4), #' Value = runif(12, min = 0, max = 1) # Randomly generate expression values between 0 and 1 #' ) #' #' # Define new gene colors #' new_gene_colors <- c( #' Gene6 = "#0b5f63", #' Gene7 = "#074d41", #' Gene8 = "#1f5e27" #' ) #' #' # Define gene label and alpha values #' gene_label <- "New Genes" #' alpha_value <- c(0.3, 0.9) #' #' # Add new tile layer #' p_with_new_layer <- add_new_tile_layer( #' p, #' new_expression_data, #' new_gene_colors, #' gene_label, #' alpha_value, #' offset = 0.02, #' pwidth = 2 #' ) #' } else { #' message("Required packages 'ggtreeExtra', 'ggplot2', and 'ggnewscale' are not installed.") #' } #' } #' add_new_tile_layer <- function(p, data, gene_colors, gene_label, alpha_value=c(0.3, 0.9), offset=0.02, pwidth=2) { # Define local variables Sample <- data$Sample value <- data$value Gene <- data$Gene if (!requireNamespace("ggtreeExtra", quietly = TRUE)) { stop("ggtreeExtra is required for using create_base_plot. Please install it.", call. = FALSE) } if (!requireNamespace("ggplot2", quietly = TRUE)) { stop("ggplot2 is required to use geom_tile. Please install it.", call. = FALSE) } p + ggnewscale::new_scale("alpha") + ggnewscale::new_scale("fill") + ggtreeExtra::geom_fruit( data=data, geom="geom_tile", mapping=ggplot2::aes(y=Sample, alpha=value, x=Gene, fill=Gene), offset=offset, pwidth=pwidth ) + ggplot2::scale_fill_manual( name=gene_label, values=gene_colors, guide=ggplot2::guide_legend(keywidth=0.65, keyheight=0.35, order=1) ) + adjust_alpha_scale(data, gene_label, alpha_value) # Assuming function signature and usage } #' Add multiple layers to a `ggtree` plot for visualizing gene expression and enrichment data #' #' This function sequentially adds multiple layers to a `ggtree` plot, including gene expression data, boxplots for statistical #' summaries, and additional tile layers for pathway enrichment scores from SSGSEA and GSVA analyses. It utilizes separate #' functions for adding each type of layer and allows for the specification of gene colors as well as adjustments in aesthetics #' for each layer. The function is designed to work with specific data structures and assumes all functions for adding layers #' are defined and available. #' #' @param p A `ggtree` plot object to which the data and layers will be added. #' @param long_format_HeatdataDeseq A data frame containing gene expression data with columns for `Samples`, `Genes`, and `Values`. #' @param ssgsea_kegg_HeatdataDeseq A data frame containing SSGSEA analysis results with columns for `Samples`, `Genes`, and `Values`. #' @param gsva_kegg_HeatdataDeseq A data frame containing GSVA analysis results with columns for `Samples`, `Genes`, and `Values`. #' @param gene_colors A named vector of colors for genes, used for coloring tiles in different layers. #' @return A `ggtree` plot object with multiple layers added for comprehensive visualization. #' @export #' #' @examples #' \donttest{ #' # Check and load required packages #' if (requireNamespace("ggtreeExtra", quietly = TRUE) && #' requireNamespace("ggplot2", quietly = TRUE)) { #' library(ggtreeExtra) #' library(ggplot2) #' #' # Example data for gene expression, SSGSEA, and GSVA #' file_path <- system.file("extdata", "p_tree_test.rds", package = "TransProR") #' p <- readRDS(file_path) #' #' # Create gene expression data frame (long_format_HeatdataDeseq) #' long_format_HeatdataDeseq <- data.frame( #' Sample = rep(c("Species_A", "Species_B", "Species_C", "Species_D"), each = 5), #' Genes = rep(paste0("Gene", 1:5), times = 4), #' Value = runif(20, min = 0, max = 1) # Randomly generate expression values between 0 and 1 #' ) #' #' # Create SSGSEA analysis results data frame (ssgsea_kegg_HeatdataDeseq) #' ssgsea_kegg_HeatdataDeseq <- data.frame( #' Sample = rep(c("Species_A", "Species_B", "Species_C", "Species_D"), each = 3), #' Genes = rep(c("Pathway1", "Pathway2", "Pathway3"), times = 4), #' Value = runif(12, min = 0, max = 1) # Randomly generate enrichment scores between 0 and 1 #' ) #' #' # Create GSVA analysis results data frame (gsva_kegg_HeatdataDeseq) #' gsva_kegg_HeatdataDeseq <- data.frame( #' Sample = rep(c("Species_A", "Species_B", "Species_C", "Species_D"), each = 4), #' Genes = rep(c("PathwayA", "PathwayB", "PathwayC", "PathwayD"), times = 4), #' Value = runif(16, min = 0, max = 1) # Randomly generate enrichment scores between 0 and 1 #' ) #' #' # Define gene and pathway colors (named vector), including all genes and pathways #' gene_colors <- c( #' # Genes for gene expression #' Gene1 = "#491588", #' Gene2 = "#301b8d", #' Gene3 = "#1a237a", #' Gene4 = "#11479c", #' Gene5 = "#0a5797", #' # Pathways for SSGSEA #' Pathway1 = "#0b5f63", #' Pathway2 = "#074d41", #' Pathway3 = "#1f5e27", #' # Pathways for GSVA #' PathwayA = "#366928", #' PathwayB = "#827729", #' PathwayC = "#a1d99b", #' PathwayD = "#c7e9c0" #' ) #' #' # Call circos_fruits function to add multiple layers #' final_plot <- circos_fruits( #' p, #' long_format_HeatdataDeseq, #' ssgsea_kegg_HeatdataDeseq, #' gsva_kegg_HeatdataDeseq, #' gene_colors #' ) #' } else { #' message("Required packages 'ggtreeExtra' and 'ggplot2' are not installed.") #' } #' } #' circos_fruits <- function(p, long_format_HeatdataDeseq, ssgsea_kegg_HeatdataDeseq, gsva_kegg_HeatdataDeseq, gene_colors) { if (!requireNamespace("ggtreeExtra", quietly = TRUE)) { stop("ggtreeExtra is required for using create_base_plot. Please install it.", call. = FALSE) } if (!requireNamespace("ggplot2", quietly = TRUE)) { stop("ggplot2 is required to use geom_tile. Please install it.", call. = FALSE) } # Create the base plot with gene expression data p1 <- create_base_plot(p, long_format_HeatdataDeseq, gene_colors) # Add a boxplot layer to the base plot p2 <- add_boxplot(p1, long_format_HeatdataDeseq) # Add a new tile layer for SSGSEA data p3 <- add_new_tile_layer(p2, ssgsea_kegg_HeatdataDeseq, gene_colors, "Ssgsea Term") # Add another boxplot layer with specific aesthetic adjustments p4 <- add_boxplot(p3, ssgsea_kegg_HeatdataDeseq, fill_color="#f28131", alpha=0.65, offset=0.32) # Add a new tile layer for GSVA data with specific alpha and offset adjustments p5 <- add_new_tile_layer(p4, gsva_kegg_HeatdataDeseq, gene_colors, "Gsva Term", alpha_value=c(0.3, 0.9), offset=0.02) # Return the final plot return(p5) } ================================================ FILE: R/CombatNormal.R ================================================ #' Process and Correct Batch Effects in TCGA's normal tissue and GTEX Data #' #' This function takes a TCGA's normal tissue data set and a pre-saved GTEX data set, asks the user #' for specific TCGA's normal tissue types to retain, then merges the two datasets. The merged dataset #' is then corrected for batch effects using the ComBat_seq function from the 'sva' package. #' #' @description #' The function first extracts histological types from the provided TCGA's normal tissue data set. #' After displaying these types, the user is prompted to input specific types to retain. #' The data is then filtered based on this input. #' The GTEX and TCGA's normal tissue datasets are then combined and batch corrected. #' #' Note: This function assumes that TCGA's normal samples and GTEX samples represent different batches. #' #' @param TCGA_normal_data_path The path to the tumor data stored in an RDS file. #' @param gtex_data_path The path to the GTEX data stored in an RDS file. #' @param CombatNormal_output_path A character string specifying the path where the output RDS file will be saved. #' @param auto_mode Logical. If set to TRUE, the function will not prompt the user for input and #' will instead use the values provided in default_input. Default is FALSE. #' @param default_input Character string. When auto_mode is TRUE, this parameter specifies the default #' TGCA's normal tissue types to be retained. It should be provided as a comma-separated string (e.g., "11,12"). #' #' @return A data.frame with corrected values after the ComBat_seq adjustment. Note that this function also saves the #' combat_count_df data as an RDS file at the specified output path. #' #' @details #' The ComBat_seq function from the 'sva' package is used to correct batch effects. #' The function requires the 'sva' package to be installed and loaded externally. #' #' The example code uses `tempfile()` to generate temporary paths dynamically during execution. #' These paths are valid during the `R CMD check` process, even if no actual files exist, #' because `tempfile()` generates a unique file path that does not depend on the user's file system. #' Using `tempfile()` ensures that the example code does not rely on specific external files and #' avoids errors during `R CMD check`. CRAN review checks for documentation correctness #' and syntax parsing, not the existence of actual files, as long as the example code is syntactically valid. #' #' @examples #' TCGA_normal_file <- system.file("extdata", #' "SKCM_Skin_TCGA_exp_normal_test.rds", #' package = "TransProR") #' gtex_file <- system.file("extdata", "Skin_SKCM_Gtex_test.rds", package = "TransProR") #' output_file <- file.path(tempdir(), "SKCM_Skin_Combat_Normal_TCGA_GTEX_count.rds") #' #' SKCM_Skin_Combat_Normal_TCGA_GTEX_count <- Combat_Normal( #' TCGA_normal_data_path = TCGA_normal_file, #' gtex_data_path = gtex_file, #' CombatNormal_output_path = output_file, #' auto_mode = TRUE, #' default_input = "skip" #' ) #' head(SKCM_Skin_Combat_Normal_TCGA_GTEX_count)[1:5, 1:5] #' #' @seealso \code{\link[sva]{ComBat_seq}} #' @importFrom sva ComBat_seq #' @importFrom tibble column_to_rownames #' @export Combat_Normal <- function(TCGA_normal_data_path, gtex_data_path, CombatNormal_output_path, auto_mode = FALSE, default_input = "11,12") { # Load the TGCA's normal tissue data and GTEX data TCGA_normal_data <- readRDS(TCGA_normal_data_path) gtex_data <- readRDS(gtex_data_path) # Extract histological types for the TGCA's normal tissue data's samples NormalHistologicalTypes <- substring(colnames(TCGA_normal_data), 14, 15) # Filter only the normal samples normal_data <- TCGA_normal_data[, as.numeric(NormalHistologicalTypes) > 10] # Display the table to the user normal_hist_table <- table(NormalHistologicalTypes) #print(normal_hist_table) message(" ") message("NormalHistologicalTypes:") message(paste(names(normal_hist_table), normal_hist_table, sep = ": ", collapse = "\n")) # Add a space after the output for separation message(" ") # Ask the user for input or use default input in auto_mode if(auto_mode) { selected_types <- strsplit(default_input, ",")[[1]] } else { message("Please input the normal tissue types you wish to retain or 'skip' to only use GTEX data: ") selected_types <- strsplit(readline(), ",")[[1]] } # If the user didn't select 'skip' if (!is.element("skip", selected_types)) { # Filter the tumor data based on user's input normal <- normal_data[, NormalHistologicalTypes %in% selected_types] # Combine GTEX and selected TCGA data # Merge the datasets, ensuring both have genes as row names combined_data <- merge(normal, gtex_data, by = "row.names") combined_data <- tibble::column_to_rownames(combined_data, var = "Row.names") # Set the row names # Create group vector (All samples as same group) combined_group <- rep("all_group", ncol(combined_data)) # Create batch vector for selected normal TCGA samples tcga_batches <- match(NormalHistologicalTypes[NormalHistologicalTypes %in% selected_types], selected_types) # Combine the batch vector for TCGA samples with GTEX batch combined_batch <- c(tcga_batches, rep("GTEX", ncol(gtex_data))) # Modify the tumor values combined_data_count <- 2^(combined_data) - 1 combined_data_count <- apply(combined_data_count, 2, as.integer) rownames(combined_data_count) <- rownames(combined_data) # Correct for batch effects using ComBat_seq combat_count <- sva::ComBat_seq(as.matrix(combined_data_count), batch = combined_batch, group = combined_group) # Convert matrix to data frame combat_count_df <- as.data.frame(combat_count) saveRDS(combat_count_df, file = CombatNormal_output_path) return(combat_count_df) } else { combat_count_matrix <- 2^(gtex_data) - 1 combat_count_matrix <- apply(combat_count_matrix, 2, as.integer) rownames(combat_count_matrix) <- rownames(gtex_data) combat_count_df <- as.data.frame(combat_count_matrix) saveRDS(combat_count_df, file = CombatNormal_output_path) return(combat_count_df) } } ================================================ FILE: R/CombatTumor.R ================================================ #' Process and Correct Batch Effects in Tumor Data #' #' This function takes a tumor data set, asks the user for specific tumor types to retain, #' and then corrects for batch effects using the ComBat_seq function from the 'sva' package. #' #' @description #' The function first extracts histological types from the provided tumor data set. #' After displaying these types, the user is prompted to input specific types to retain. #' The data is then filtered based on this input. #' #' Note: This example assumes that different tumor types represent different batches in a general sense. #' Users need to adjust the batch and group vectors based on real-life scenarios. #' #' @param tumor_data_path The path to the tumor data stored in an RDS file. #' @param CombatTumor_output_path A character string specifying the path where the output RDS file will be saved. #' @param auto_mode Logical. If set to TRUE, the function will not prompt the user for input and #' will instead use the values provided in default_input. Default is FALSE. #' @param default_input Character string. When auto_mode is TRUE, this parameter specifies the default #' tumor types to be retained. It should be provided as a comma-separated string (e.g., "01,06"). #' #' @return A data.frame with corrected values after the ComBat_seq adjustment. Note that this function also saves the #' combat_count_df data as an RDS file at the specified output path. #' #' @details #' The ComBat_seq function from the sva package is used to correct batch effects. #' The function requires the 'sva' package to be installed and loaded externally. #' #' @examples #' tumor_file <- system.file("extdata", #' "SKCM_Skin_TCGA_exp_tumor_test.rds", #' package = "TransProR") #' output_file <- file.path(tempdir(), "SKCM_combat_count.rds") #' #' SKCM_combat_count <- combat_tumor( #' tumor_data_path = tumor_file, #' CombatTumor_output_path = output_file, #' auto_mode = TRUE, #' default_input = "01,06" #' ) #' #' head(SKCM_combat_count)[1:5, 1:5] #' #' @seealso \code{\link[sva]{ComBat_seq}} #' @importFrom sva ComBat_seq #' @export combat_tumor <- function(tumor_data_path, CombatTumor_output_path, auto_mode = FALSE, default_input = "01,06") { # Load the tumor data tumor_data <- readRDS(tumor_data_path) # Extract histological types TumorHistologicalTypes <- substring(colnames(tumor_data), 14, 15) tumor_hist_table <- table(TumorHistologicalTypes) # Display the table to the user message(" ") message("TumorHistologicalTypes:") message(paste(names(tumor_hist_table), tumor_hist_table, sep = ": ", collapse = "\n")) # Add a space after the output for separation message(" ") # Ask the user for input or use default input in auto_mode if(auto_mode) { selected_types <- strsplit(default_input, ",")[[1]] } else { message("Please input the tumor types you wish to retain, separated by commas (e.g., 01,06): ") selected_types <- strsplit(readline(), ",")[[1]] } # Filter the tumor data based on user's input tumor <- tumor_data[, TumorHistologicalTypes %in% selected_types] # Modify the tumor values tumor1 <- 2^(tumor) - 1 tumor1 <- apply(tumor1, 2, as.integer) rownames(tumor1) <- rownames(tumor) # If only one sample type is chosen, skip batch correction and return modified tumor data if(length(selected_types) == 1) { combat_count_df <- as.data.frame(tumor1) } else { # Create group vector selected_group = rep("all_group", length(which(TumorHistologicalTypes %in% selected_types))) # Create batch vector based on group vector selected_batch = match(TumorHistologicalTypes[TumorHistologicalTypes %in% selected_types], selected_types) # Correct for batch effects using ComBat_seq combat_count <- sva::ComBat_seq(as.matrix(tumor1), batch = selected_batch, group = selected_group) # Convert matrix to data frame combat_count_df <- as.data.frame(combat_count) } saveRDS(combat_count_df, file = CombatTumor_output_path) return(combat_count_df) } ================================================ FILE: R/CompareMerge.R ================================================ #' Compare and merge specific columns from two DEG data frames #' #' This function takes two DEG data frames, inner joins them by a specified gene column, #' checks if a specified column is identical across both data frames, and merges them if they are. #' The resulting data frame will have a merged column named after the compared column. #' #' @importFrom dplyr inner_join #' @param df1 First data frame. #' @param df2 Second data frame. #' @param by_gene Column name by which to join the data frames, typically "Gene". #' @param compare_col Column to compare for identity, which will also be the name of the merged column. #' @param suffixes Suffixes to use for non-identical column names in the joined data frame. #' @param df_name Name to assign to the resulting data frame for identification. #' @return A data frame with processed columns. #' @examples #' # Create simulated DESeq2 data #' DEG_deseq2 <- data.frame( #' Gene = c("Gene1", "Gene2", "Gene3", "Gene4", "Gene5"), #' change = c("up", "down", "no_change", "up", "down"), #' log2FoldChange = c(2.5, -3.2, 0.1, 1.8, -2.5), #' pvalue = c(0.01, 0.05, 0.9, 0.02, 0.03) #' ) #' #' # Display the first 5 rows of the DESeq2 data #' head(DEG_deseq2, 5) #' #' # Create simulated edgeR data #' DEG_edgeR <- data.frame( #' Gene = c("Gene1", "Gene2", "Gene3", "Gene4", "Gene5"), #' change = c("up", "down", "no_change", "no_change", "up"), #' log2FoldChange = c(2.3, -3.1, 0.2, 0.1, 2.7), #' pvalue = c(0.02, 0.04, 0.8, 0.6, 0.01) #' ) #' #' # Display the first 5 rows of the edgeR data #' head(DEG_edgeR, 5) #' #' # Merge the DESeq2 and edgeR data #' deseq2_edgeR <- compare_merge( #' df1 = DEG_deseq2, #' df2 = DEG_edgeR, #' by_gene = "Gene", #' compare_col = "change", #' suffixes = c("_1", "_2"), #' df_name = "deseq2_edgeR" #' ) #' #' @export compare_merge <- function(df1, df2, by_gene, compare_col, suffixes, df_name) { # Perform an inner join on the 'Gene' column merged_df <- dplyr::inner_join(df1, df2, by = by_gene, suffix = suffixes) # Generate column names for comparison col1 <- paste0(compare_col, suffixes[1]) col2 <- paste0(compare_col, suffixes[2]) # Check if the specified columns are identical if (all(merged_df[[col1]] == merged_df[[col2]])) { # If completely identical, merge these columns into one and rename merged_df[[compare_col]] <- merged_df[[col1]] # Remove original compared columns merged_df[[col1]] <- NULL merged_df[[col2]] <- NULL } else { # Handle non-identical case message("The columns", col1, "and", col2, "are not identical.\n") } # Assign the specified name for identification merged_df$name <- df_name # Return the modified data frame return(merged_df) } ================================================ FILE: R/Contrast_Venn.R ================================================ #' Function to Create a Venn Diagram of DEGs with Custom Colors #' #' This function creates a Venn Diagram using the 'ggVennDiagram' package. #' It allows customization of various aesthetic elements of the diagram, including colors. #' #' @importFrom ggplot2 scale_fill_gradient scale_color_manual scale_x_continuous expansion #' @importFrom ggVennDiagram ggVennDiagram #' @param all_degs_venn A list of DEG sets for Venn Diagram creation. #' @param edge_colors A vector of colors for the edges of the Venn Diagram sets. #' @param name_color A vector of colors for the names of the sets in the Venn Diagram. #' @param fill_colors A vector of two colors for the gradient fill of the Venn Diagram. #' @param label_size The size of the labels showing the number of elements in each set (default is 4). #' @param edge_size The size of the edges of the Venn Diagram sets (default is 3). #' @return A `ggplot` object representing the Venn Diagram. #' @examples #' #' data("all_degs_venn", package = "TransProR") #' #' edge_colors <- c("#1b62bb","#13822e","#332c3a","#9e2d39") #' name_color <- c("#1b64bb","#13828e","#337c3a","#9e9d39") #' fill_colors <- c("#e3f2fa", "#0288d1") #' #' Contrast_degs_venn <- Contrast_Venn(all_degs_venn, edge_colors, name_color, fill_colors) #' @export #' Contrast_Venn <- function(all_degs_venn, edge_colors, name_color, fill_colors, label_size = 4, edge_size = 3) { # Draw Venn Diagram ggVennDiagram::ggVennDiagram(all_degs_venn, set_size = 5, # Font size for set names set_color = name_color, label_alpha = 0, # Transparency of the background box for counts/percentages, default is white label_size = label_size, # Font size for counts/percentages edge_size = edge_size # Thickness of the edges ) + ggplot2::scale_fill_gradient(low = fill_colors[1], high = fill_colors[2]) + # Gradient fill color based on value size ggplot2::scale_color_manual(values = edge_colors) + # Manually set edge colors ggplot2::scale_x_continuous(expand = ggplot2::expansion(mult = .3)) } ================================================ FILE: R/DESeq2Analyze.R ================================================ #' Differential Gene Expression Analysis using 'DESeq2' #' #' 'DESeq2': Differential gene expression analysis based on the negative binomial distribution. #' This function utilizes the 'DESeq2' package to conduct differential gene expression analysis. #' It processes tumor and normal expression data, applies DESeq2 analysis, #' and outputs the results along with information on gene expression changes. #' #' The DESeq2 methodology is based on modeling count data using a negative binomial distribution, #' which allows for handling the variability observed in gene expression data, especially in #' small sample sizes. This approach is well-suited for RNA-Seq data analysis. #' #' @importFrom DESeq2 DESeqDataSetFromMatrix DESeq results #' @importFrom dplyr mutate #' @importFrom tibble column_to_rownames #' @importFrom stats na.omit #' @param tumor_file Path to the tumor data file (RDS format). #' @param normal_file Path to the normal data file (RDS format). #' @param output_file Path to save the output DEG data (RDS format). #' @param logFC Threshold for log fold change. #' @param p_value Threshold for p-value. #' @return A data frame of differential expression results. #' @examples #' # Define file paths for tumor and normal data from the data folder #' tumor_file <- system.file("extdata", #' "removebatch_SKCM_Skin_TCGA_exp_tumor_test.rds", #' package = "TransProR") #' normal_file <- system.file("extdata", #' "removebatch_SKCM_Skin_Normal_TCGA_GTEX_count_test.rds", #' package = "TransProR") #' output_file <- file.path(tempdir(), "DEG_DESeq2.rds") #' #' DEG_DESeq2 <- DESeq2_analyze( #' tumor_file = tumor_file, #' normal_file = normal_file, #' output_file = output_file, #' 2.5, #' 0.01 #' ) #' #' # View the top 5 rows of the result #' head(DEG_DESeq2, 5) #' #' @references #' DESeq2:Differential gene expression analysis based on the negative binomial distribution. #' For more information, visit the page: #' https://docs.gdc.cancer.gov/Data/Bioinformatics_Pipelines/Expression_mRNA_Pipeline/ #' @export DESeq2_analyze <- function(tumor_file, normal_file, output_file, logFC = 2.5, p_value = 0.01) { # Read and merge data tumor <- readRDS(tumor_file) normal <- readRDS(normal_file) all_count_exp <- merge(tumor, normal, by = "row.names") # Merge the datasets, ensuring both have genes as row names all_count_exp <- tibble::column_to_rownames(all_count_exp, var = "Row.names") # Set the row names # Create group factor group <- factor(c(rep('tumor', ncol(tumor)), rep('normal', ncol(normal))), levels = c("normal", "tumor")) group_table <- table(group) message("Group Table:") message(paste(names(group_table), group_table, sep = ": ", collapse = "\n")) # Add a space after the output for separation message(" ") # Prepare DESeq2 dataset colData <- data.frame(row.names = colnames(all_count_exp), group = group) # Create a dataframe to store the grouping information of samples, with the row names as sample names and the column names as group information. dds <- DESeq2::DESeqDataSetFromMatrix(countData = all_count_exp, # Expression matrix, with rows as genes and columns as samples, containing integers derived from the calculation of reads or fragments. colData = colData, # Sample information matrix (dataframe), showing the correspondence between the column names of the expression matrix and the grouping information, with row names as sample names. The first column indicates the treatment status of the sample (control or treatment, tumor or normal, etc.), referred to as the group. design = ~ group) # Differential comparison matrix, which informs the differential analysis function about the variables between which differences are to be analyzed. Simply put, it specifies which are the controls and which are the treatments. The group refers to the group in colData, which is the grouping information. # Perform differential expression analysis. dds <- DESeq2::DESeq(dds) # Perform DESeq2 analysis # Extract the results of differential expression and perform a comparison. Here, the 'contrast' parameter specifies the groups to be compared. # The 'contrast' parameter must be written in a vector format with three elements, and the order cannot be reversed. res <- DESeq2::results(dds, contrast = c("group", "tumor", "normal")) # Sort the differential results according to 'padj' (adjusted p-value). This step is necessary only for DESeq2, as limma and edgeR will automatically sort the results. resOrdered <- res[order(res$padj), ] DEG <- as.data.frame(stats::na.omit(resOrdered)) # Remove missing values. If this step is not taken, some genes with very low expression levels will result in NA values after calculation, causing difficulties in subsequent analysis and plotting. # Add a 'change' column to mark up- or down-regulated genes, with the threshold set according to requirements. DEG <- dplyr::mutate(DEG, change = ifelse(DEG$pvalue < p_value & DEG$log2FoldChange < -logFC, "down", ifelse(DEG$pvalue < p_value & DEG$log2FoldChange > logFC, "up", "stable"))) # Output table of gene expression changes change_table <- table(DEG$change) message(" ") message("Change Table:") message(paste(names(change_table), change_table, sep = ": ", collapse = "\n")) # Add a space after the output for separation message(" ") # Save results #save(DEG, file = output_file) saveRDS(DEG, file = output_file) # Return results return(DEG) } ================================================ FILE: R/EdgeRAnalyze.R ================================================ #' Differential Gene Expression Analysis using 'edgeR' #' #' This function performs differential gene expression analysis using the 'edgeR' package. #' It reads tumor and normal expression data, merges them, filters low-expressed genes, #' normalizes the data, performs edgeR analysis, and outputs the results along with information #' on gene expression changes. #' #' @importFrom tibble column_to_rownames #' @importFrom dplyr mutate #' @importFrom edgeR DGEList cpm calcNormFactors estimateGLMCommonDisp estimateGLMTrendedDisp estimateGLMTagwiseDisp glmFit glmLRT topTags #' @importFrom stats model.matrix #' @param tumor_file Path to the tumor data file (RDS format). #' @param normal_file Path to the normal data file (RDS format). #' @param output_file Path to save the output DEG data (RDS format). #' @param logFC_threshold Threshold for log fold change for marking up/down-regulated genes. #' @param p_value_threshold Threshold for p-value for filtering significant genes. #' @return A data frame of differential expression results. #' @references #' edgeR: Differential analysis of sequence read count data. #' For more information, visit the edgeR Bioconductor page: #' https://www.bioconductor.org/packages/release/bioc/vignettes/edgeR/inst/doc/edgeRUsersGuide.pdf #' @export #' #' @examples #' # Define file paths for tumor and normal data from the data folder #' tumor_file <- system.file("extdata", #' "removebatch_SKCM_Skin_TCGA_exp_tumor_test.rds", #' package = "TransProR") #' normal_file <- system.file("extdata", #' "removebatch_SKCM_Skin_Normal_TCGA_GTEX_count_test.rds", #' package = "TransProR") #' output_file <- file.path(tempdir(), "DEG_edgeR.rds") #' #' DEG_edgeR <- edgeR_analyze( #' tumor_file = tumor_file, #' normal_file = normal_file, #' output_file = output_file, #' 2.5, #' 0.01 #' ) #' #' # View the top 5 rows of the result #' head(DEG_edgeR, 5) #' edgeR_analyze <- function(tumor_file, normal_file, output_file, logFC_threshold = 2.5, p_value_threshold = 0.01) { tumor <- readRDS(tumor_file) normal <- readRDS(normal_file) # Merge the datasets, ensuring both have genes as row names all_count_exp <- merge(tumor, normal, by = "row.names") all_count_exp <- tibble::column_to_rownames(all_count_exp, var = "Row.names") # Define groups for tumor and normal samples group <- c(rep('tumor', ncol(tumor)), rep('normal', ncol(normal))) group <- factor(group, levels = c("normal", "tumor")) group_table <- table(group) message("Group Table:") message(paste(names(group_table), group_table, sep = ": ", collapse = "\n")) # Add a space after the output for separation message(" ") # Create DGEList object for gene expression data and group information d <- edgeR::DGEList(counts = all_count_exp, group = group) # Filter lowly expressed genes based on CPM values keep <- rowSums(edgeR::cpm(d) > 1) >= 2 d <- d[keep, , keep.lib.sizes = FALSE] # Update library size information in the samples d$samples$lib.size <- colSums(d$counts) # Normalize the data using the TMM method d <- edgeR::calcNormFactors(d) # Create design matrix for differential analysis model design <- stats::model.matrix(~0 + factor(group)) rownames(design) <- colnames(d) colnames(design) <- levels(factor(group)) # Estimate dispersions - common dispersion, trended dispersion, tagwise dispersion d <- edgeR::estimateGLMCommonDisp(d, design) d <- edgeR::estimateGLMTrendedDisp(d, design) d <- edgeR::estimateGLMTagwiseDisp(d, design) # Fit the model using Generalized Linear Model (GLM) fit <- edgeR::glmFit(d, design) # Perform differential expression analysis using Likelihood Ratio Test (LRT) lrt <- edgeR::glmLRT(fit, contrast = c(-1, 1)) # Note that the 'contrast' here is different from 'DESeq2'. Here, we only need to input c(-1, 1): -1 corresponds to normal, 1 corresponds to tumor. # Retrieve top differentially expressed genes nrDEG <- edgeR::topTags(lrt, n = nrow(d)) DEG_edgeR <- as.data.frame(nrDEG) # Add 'change' column to mark up/down-regulated genes k1 <- (DEG_edgeR$PValue < p_value_threshold) & (DEG_edgeR$logFC < -logFC_threshold) k2 <- (DEG_edgeR$PValue < p_value_threshold) & (DEG_edgeR$logFC > logFC_threshold) DEG_edgeR <- dplyr::mutate(DEG_edgeR, change = ifelse(k1, "down", ifelse(k2, "up", "stable"))) change_table <- table(DEG_edgeR$change) message("Change Table:") message(paste(names(change_table), change_table, sep = ": ", collapse = "\n")) # Add a space after the output for separation message(" ") # Save results to the specified output file saveRDS(DEG_edgeR, file = output_file) return(DEG_edgeR) } ================================================ FILE: R/EnrichCirclize.R ================================================ #' Adjust and Export Pathway Analysis Results #' #' This function processes a dataframe containing fgsea results. It adjusts pathway names #' by removing underscores, converting to lowercase, then capitalizing the first letter, #' and joining the components with spaces. It selects and merges the top upregulated #' and downregulated pathways based on enrichment score (ES) and p-value. #' #' @param fgseaRes Dataframe containing fgsea results with columns 'pathway', 'ES', and 'pval'. #' @param nTop Integer, number of top pathways to select based on the p-value. #' @return A vector containing combined top upregulated and downregulated pathways. #' @importFrom Hmisc capitalize #' @export #' @examples #' # Create a synthetic fgseaRes dataframe #'fgseaRes <- data.frame( #' pathway = c("KEGG_APOPTOSIS", #' "GO_CELL_CYCLE", #' "REACTOME_DNA_REPAIR", #' "KEGG_METABOLISM", #' "GO_TRANSPORT"), #' ES = c(0.45, -0.22, 0.56, -0.35, 0.33), #' pval = c(0.001, 0.02, 0.0003, 0.05, 0.01) #') #' #' # Run the function to get top pathways #'result <- adjust_export_pathway(fgseaRes = fgseaRes, nTop = 2) #' adjust_export_pathway <- function(fgseaRes, nTop = 10) { # Adjust pathway names fgseaRes$pathway <- as.character(fgseaRes$pathway) for(i in 1:nrow(fgseaRes)){ message("Processing row ", i) term = fgseaRes$pathway[i] ### 1. Split the string term = unlist(strsplit(term, split="_", fixed=TRUE))[-1] ### 2. Convert to lowercase, then capitalize the first letter term = Hmisc::capitalize(tolower(term)) ### 3. Concatenate with spaces term = paste(term, collapse=" ") ### 4. Data export fgseaRes$pathway[i] = term } # Select top upregulated pathways topPathwaysUp <- fgseaRes[fgseaRes$ES > 0,][order(fgseaRes$pval[fgseaRes$ES > 0]), 'pathway'][1:nTop] # Select top downregulated pathways topPathwaysDown <- fgseaRes[fgseaRes$ES < 0,][order(fgseaRes$pval[fgseaRes$ES < 0]), 'pathway'][1:nTop] # Combine top pathways and convert any potential list to a vector combinedPathways <- unlist(c(topPathwaysUp, rev(topPathwaysDown)), use.names = FALSE) return(list(combinedPathways = combinedPathways, fgseaRes = fgseaRes)) } #' Randomly Select Pathways with Limited Word Count #' #' This function randomly selects a specified number of pathways from a given list, ensuring that each selected pathway name does not exceed a specified number of words. It filters out pathways with names longer than the specified word limit before making the selection. #' #' @param pathways Character vector of pathways. #' @param max_words Integer, maximum number of words allowed in the pathway name. #' @param num_select Integer, number of pathways to randomly select. #' @return A character vector of selected pathways. #' @export #' @examples #' pathway_list <- c("pathway_one response to stimulus", #' "pathway_two cell growth and death", #' "pathway_three regulation of cellular process", #' "pathway_four metabolic process") #' selected_pathways <- selectPathways(pathway_list, max_words = 5, num_select = 2) #' selectPathways <- function(pathways, max_words = 10, num_select = 10) { # Check input if (!is.character(pathways)) { stop("Please provide a character vector of pathways.") } # Filter pathways with word count not exceeding max_words filtered_pathways <- pathways[sapply(pathways, function(x) length(strsplit(x, " ")[[1]]) <= max_words)] # Randomly select num_select pathways from the filtered list if (length(filtered_pathways) >= num_select) { selected_pathways <- sample(filtered_pathways, num_select) } else { warning("Not enough pathways with <= ", max_words, " words. Returning as many as possible.") selected_pathways <- sample(filtered_pathways, length(filtered_pathways)) } return(selected_pathways) } #' Draw Dual-Sided Legends on a Plot #' #' This function creates two sets of legends, one on the left and one on the right side of a plot. #' It displays color-coded legends with labels corresponding to different data categories. #' Each legend entry consists of a colored rectangle and a text label. The left side legend has #' text aligned to the right of the color block, while the right side legend has text aligned #' to the left of the color block. #' #' @param labels Vector of labels for the legends. #' @param colors Vector of colors corresponding to the labels. #' @param legend_width The width of each legend viewport expressed in grid units. #' @param x_positions Numeric vector of length 2 specifying the x-positions of the left and right legends. #' @param y_position The y-position common for both legends, expressed as a fraction of the plot height. #' @param just_positions List of two vectors, each specifying the horizontal and vertical justification for the legends. #' @param text_alignments List of two character strings specifying text alignments for the legends ('left' or 'right'). #' @param font_size Numeric value specifying the font size for the legend labels. #' @return Invisible. This function is called for its side effects of drawing legends on a plot. #' @importFrom grid pushViewport viewport grid.roundrect grid.text upViewport unit #' @export #' @examples #' labels <- c("Label1", "Label2", "Label3", "Label4", "Label5", "Label6") #' colors <- c("#ff0000", "#00ff00", "#0000ff", "#ffff00", "#ff00ff", "#00ffff") #' #' # Convert to 'unit' objects for grid #' grid::grid.roundrect( #' x = grid::unit(0.5, "npc"), # "npc" stands for normalized parent coordinates #' y = grid::unit(0.5, "npc"), #' width = grid::unit(0.1, "npc"), #' height = grid::unit(0.05, "npc"), #' gp = grid::gpar(fill = "red"), #' r = grid::unit(0.1, "npc") # rounding radius #' ) #' #' # Example of drawing legends with specific labels and colors #' drawLegends(labels, colors, grid::unit(2, "cm"), c(0.225, 0.75), 0.5, #' list(c("left", "center"), c("right", "center")), #' list("right", "left"), 10) #' drawLegends <- function(labels, colors, legend_width, x_positions, y_position, just_positions, text_alignments, font_size) { half_length <- length(labels) / 2 legend_height <- grid::unit(1, "lines") * half_length # Draw left-side legend grid::pushViewport(grid::viewport( width = legend_width, height = legend_height, x = x_positions[1], y = y_position, just = just_positions[[1]] )) for (i in seq_len(half_length)) { grid::grid.roundrect( x = grid::unit(1, "npc") - grid::unit(0.5, "cm"), y = grid::unit(1, "npc") - grid::unit(i / half_length, "npc") + grid::unit(0.5 / half_length, "npc"), width = grid::unit(0.7, "cm"), height = grid::unit(0.9 / half_length, "npc"), gp = grid::gpar(fill = colors[i], col = NA), r = grid::unit(0.3, "snpc") ) grid::grid.text( labels[i], x = grid::unit(1, "npc") - grid::unit(1, "cm"), y = grid::unit(1, "npc") - grid::unit(i / half_length, "npc") + grid::unit(0.5 / half_length, "npc"), gp = grid::gpar(col = colors[i], fontsize = font_size), just = text_alignments[[1]] ) } grid::upViewport() # Draw right-side legend grid::pushViewport(grid::viewport( width = legend_width, height = legend_height, x = x_positions[2], y = y_position, just = just_positions[[2]] )) for (i in (half_length + 1):length(labels)) { grid::grid.roundrect( x = grid::unit(1, "npc") - grid::unit(0.6, "cm"), y = grid::unit(1, "npc") - grid::unit((i - half_length) / half_length, "npc") + grid::unit(0.5 / half_length, "npc"), width = grid::unit(0.7, "cm"), height = grid::unit(0.9 / half_length, "npc"), gp = grid::gpar(fill = colors[i], col = NA), r = grid::unit(0.3, "snpc") ) grid::grid.text( labels[i], x = grid::unit(1, "npc") - grid::unit(0.1, "cm"), y = grid::unit(1, "npc") - grid::unit((i - half_length) / half_length, "npc") + grid::unit(0.5 / half_length, "npc"), gp = grid::gpar(col = colors[i], fontsize = font_size), just = text_alignments[[2]] ) } grid::upViewport() } #' Draw Chord Diagram with Legends #' #' This function creates a chord diagram from a specified dataframe and draws two sets of legends for it. #' It adjusts the track height of the chord diagram to optimize space and uses specified colors for the grid. #' Legends are drawn at specified positions with configurable text alignments and font sizes. #' #' @param all_combined_df A dataframe containing the matrix for the chord diagram. #' @param original_colors A vector of colors for the grid columns of the chord diagram. #' @param labels A vector of labels for the first legend. #' @param colors A vector of colors corresponding to the first legend's labels. #' @param labels2 A vector of labels for the second legend. #' @param colors2 A vector of colors corresponding to the second legend's labels. #' @param font_size The font size used for legend texts, defaults to 10. #' @return Invisible, primarily used for its side effects of drawing on a graphics device. #' @importFrom circlize chordDiagram #' @importFrom grid unit #' @importFrom graphics strwidth #' @export #' @examples #' # Sample Chord Diagram Matrix #' all_combined_df <- data.frame( #' A = c(10, 20, 30), #' B = c(15, 25, 35), #' C = c(5, 10, 15) #' ) #' rownames(all_combined_df) <- c("A", "B", "C") #' #' # Colors for the grid of the chord diagram (corresponding to columns of the matrix) #' original_colors <- c("red", "green", "blue") #' #' # Name the colors according to the sectors (A, B, C) #' names(original_colors) <- colnames(all_combined_df) #' #' # Labels and Colors for the First Legend #' labels <- c("Label 1", "Label 2", "Label 3") #' colors <- c("yellow", "purple", "cyan") #' #' # Labels and Colors for the Second Legend #' labels2 <- c("Label A", "Label B", "Label C") #' colors2 <- c("orange", "pink", "brown") #' #' # Font size for the legend texts (optional, default is 10) #' font_size <- 10 #' #' # Call the enrichment_circlize function with the sample data #' # This is just an example; the plot will be rendered in an appropriate graphics context #' # such as RStudio's plot pane or an external plotting window. #' plot1 <- enrichment_circlize(all_combined_df, #' original_colors, #' labels, #' colors, #' labels2, #' colors2, #' font_size #' ) #' enrichment_circlize <- function(all_combined_df, original_colors, labels, colors, labels2, colors2, font_size = 10) { # Calculate adjusted height for the chord diagram max_height <- max(graphics::strwidth(unlist(dimnames(all_combined_df)), "inches")) * 1.2 # Draw the chord diagram circlize::chordDiagram(all_combined_df, grid.col = original_colors, annotationTrack = "grid", directional = -1, direction.type = c("diffHeight", "arrows"), link.arr.type = "big.arrow", preAllocateTracks = list(track.height = max_height)) # Draw the first set of legends legend_width <- grid::unit(2, "cm") x_positions <- c(0.225, 0.75) y_position <- 0.5 just_positions <- list(c("left", "center"), c("right", "center")) text_alignments <- list("right", "left") drawLegends(labels, colors, legend_width, x_positions, y_position, just_positions, text_alignments, font_size) # Draw the second set of legends x_positions2 <- c(0.3, 0.68) y_position2 <- 0.7 drawLegends(labels2, colors2, legend_width, x_positions2, y_position2, just_positions, text_alignments, font_size) } ================================================ FILE: R/EnrichCircoBar.R ================================================ #' Extract and Count Descriptions with Specified Color #' #' This function filters a data frame for specified descriptions, selects the 'Description' and 'Count' columns, #' and adds a new column with a specified color. #' #' @param df A data frame containing at least 'Description' and 'Count' columns. #' @param descriptions A vector of descriptions to filter in the data frame. #' @param color A character string specifying the color to be added as a new column. #' @return A data frame filtered by descriptions, containing 'Description', 'Count', and a new 'color' column. #' @export #' #' @examples #' # Generate Sample Input Data for extract_descriptions_counts Function #' #' # Create a sample data frame with 'Description' and 'Count' columns #' data <- data.frame( #' Description = c( #' "immunoglobulin production", #' "B cell mediated immunity", #' "T cell activation", #' "antigen processing and presentation", #' "cytokine signaling", #' "natural killer cell activity", #' "phagocytosis", #' "complement activation", #' "antibody-dependent cellular cytotoxicity", #' "regulatory T cell function" #' ), #' Count = c( #' 150, # immunoglobulin production #' 200, # B cell mediated immunity #' 175, # T cell activation #' 125, # antigen processing and presentation #' 190, # cytokine signaling #' 160, # natural killer cell activity #' 140, # phagocytosis #' 180, # complement activation #' 130, # antibody-dependent cellular cytotoxicity #' 170 # regulatory T cell function #' ), #' stringsAsFactors = FALSE # Ensure that strings are not converted to factors #' ) #' #' #' #' descriptions_to_filter <- c("immunoglobulin production", "B cell mediated immunity") #' specified_color <- "red" # You can specify any color you desire #' filtered_data_with_color <- extract_descriptions_counts( #' data, descriptions_to_filter, #' specified_color) #' print(filtered_data_with_color) #' extract_descriptions_counts <- function(df, descriptions, color) { # Filter rows where the Description column values are in the descriptions vector result_df <- df[df$Description %in% descriptions, ] # Select Description and Count columns result_df <- result_df[, c("Description", "Count")] # Add a new column 'color' with the specified color value result_df$color <- color return(result_df) } #' Combine and Visualize Data with Circular Bar Chart #' #' This function combines multiple data frames, arranges them, and visualizes the combined data #' in a Circular Bar Chart using the 'ggplot2' and 'ggalluvial' packages. #' #' @importFrom dplyr bind_rows arrange desc row_number mutate #' @importFrom ggplot2 ggplot geom_bar geom_text scale_fill_manual scale_y_continuous scale_x_continuous coord_polar labs theme_minimal theme element_rect element_blank #' @importFrom rlang .data #' @param data_list A list of data frames to be combined. #' @return A `ggplot` object representing the Circular Bar Chart. #' @export #' #' @examples #' # Create sample data frames for each enrichment category #' #' # 1. Biological Process (BP) #' filtered_data_BP <- data.frame( #' Description = c( #' "immune response", #' "cell proliferation", #' "signal transduction", #' "apoptotic process", #' "metabolic process" #' ), #' Count = c(120, 85, 150, 60, 95), #' color = c( #' "#1f77b4", # blue #' "#ff7f0e", # orange #' "#2ca02c", # green #' "#d62728", # red #' "#9467bd" # purple #' ), #' stringsAsFactors = FALSE #' ) #' #' # 2. Cellular Component (CC) #' filtered_data_CC <- data.frame( #' Description = c( #' "nucleus", #' "cytoplasm", #' "membrane", #' "mitochondrion", #' "extracellular space" #' ), #' Count = c(90, 110, 75, 65, 80), #' color = c( #' "#1f77b4", #' "#ff7f0e", #' "#2ca02c", #' "#d62728", #' "#9467bd" #' ), #' stringsAsFactors = FALSE #' ) #' #' # 3. Molecular Function (MF) #' filtered_data_MF <- data.frame( #' Description = c( #' "protein binding", #' "DNA binding", #' "enzyme activity", #' "transporter activity", #' "receptor activity" #' ), #' Count = c(140, 130, 100, 70, 90), #' color = c( #' "#1f77b4", #' "#ff7f0e", #' "#2ca02c", #' "#d62728", #' "#9467bd" #' ), #' stringsAsFactors = FALSE #' ) #' #' # 4. Disease Ontology (DO) #' filtered_data_DO <- data.frame( #' Description = c( #' "cancer", #' "cardiovascular disease", #' "neurological disorder", #' "metabolic disease", #' "infectious disease" #' ), #' Count = c(200, 150, 120, 90, 160), #' color = c( #' "#1f77b4", #' "#ff7f0e", #' "#2ca02c", #' "#d62728", #' "#9467bd" #' ), #' stringsAsFactors = FALSE #' ) #' #' # 5. Reactome Pathways #' filtered_data_Reactome <- data.frame( #' Description = c( #' "Cell Cycle", #' "Apoptosis", #' "DNA Repair", #' "Signal Transduction", #' "Metabolism of Proteins" #' ), #' Count = c(110, 95, 80, 130, 85), #' color = c( #' "#1f77b4", #' "#ff7f0e", #' "#2ca02c", #' "#d62728", #' "#9467bd" #' ), #' stringsAsFactors = FALSE #' ) #' #' # 6. KEGG Pathways #' filtered_data_kegg <- data.frame( #' Description = c( #' "PI3K-Akt signaling pathway", #' "MAPK signaling pathway", #' "NF-kappa B signaling pathway", #' "JAK-STAT signaling pathway", #' "Toll-like receptor signaling pathway" #' ), #' Count = c(175, 160, 145, 130, 155), #' color = c( #' "#1f77b4", #' "#ff7f0e", #' "#2ca02c", #' "#d62728", #' "#9467bd" #' ), #' stringsAsFactors = FALSE #' ) #' #' # Combine all filtered data frames into a list #' data_list <- list( #' BP = filtered_data_BP, #' CC = filtered_data_CC, #' MF = filtered_data_MF, #' DO = filtered_data_DO, #' Reactome = filtered_data_Reactome, #' KEGG = filtered_data_kegg #' ) #' #' # Create the Circular Bar Chart #' combined_and_visualized_data <- enrich_circo_bar(data_list) #' enrich_circo_bar <- function(data_list) { # Combine data frames combined_data <- dplyr::bind_rows(data_list) # Sort by 'Count' column in descending order and add an 'id' column combined_data <- combined_data %>% dplyr::arrange(.data$Count) %>% dplyr::mutate(id = dplyr::row_number()) # Ensure 'Description' is a factor with correct level order combined_data <- combined_data %>% dplyr::mutate(Description = factor(.data$Description, levels = unique(.data$Description))) # Extract fill colors, ensuring colors match 'Description' levels fill_colors <- combined_data$color[match(levels(combined_data$Description), combined_data$Description)] # Calculate the expanded max values for Count and id max_count <- max(combined_data$Count) + (max(combined_data$Count) / 5) max_id <- max(combined_data$id) + 1.5 # Create the plot p <- ggplot2::ggplot(combined_data, ggplot2::aes(x = .data$id, y = .data$Count, fill = .data$Description)) + ggplot2::geom_bar(stat = 'identity', width = 0.7) + ggplot2::geom_text(ggplot2::aes(x = .data$id, y = 0, label = .data$Description), hjust = 1.03, size = 3.5, color = fill_colors) + ggplot2::scale_fill_manual(values = fill_colors, guide = "none") + ggplot2::scale_y_continuous(expand = c(0, 0), limits = c(0, max_count), position = 'right') + ggplot2::scale_x_continuous(expand = c(0, 0), limits = c(-1, max_id)) + ggplot2::coord_polar(theta = 'y') + ggplot2::labs(title = 'Enrichment CircularBar Chart', subtitle = "Including: BP/MF/CC/DO/KEGG/Reactome") + ggplot2::theme_minimal() + ggplot2::theme(plot.background = ggplot2::element_rect(fill = 'white', color = 'white'), axis.title = ggplot2::element_blank(), axis.text = ggplot2::element_blank()) return(p) } ================================================ FILE: R/EnrichPolarBubble.R ================================================ #' Enrichment Polar Bubble Plot #' #' This function creates a polar bubble plot using 'ggplot2'. It is designed to visually represent data with methods and positional metrics integrated, highlighting specific IDs if necessary. #' #' @param final_combined_df_with_id_and_position A data frame containing 'id', 'Count', 'method', 'Description', 'point_position', 'test_color'. #' @param pal A named vector of colors corresponding to the 'method' values. #' @param highlight_ids A vector of IDs to highlight. #' @importFrom ggplot2 ggplot aes geom_point geom_hline geom_segment scale_fill_manual scale_size coord_polar theme_void scale_color_manual scale_x_continuous scale_y_continuous annotate theme scale_fill_identity #' @importFrom dplyr filter #' @importFrom stringr str_c #' @importFrom tibble tibble #' @importFrom geomtextpath geom_textpath #' @importFrom ggalt stat_xspline #' @importFrom ggnewscale new_scale_fill #' @return A `ggplot` object representing the enriched polar bubble plot. #' @examples #' final_df <- data.frame(id = 1:10, Count = c(10, 20, 30, 40, 50, 60, 70, 80, 90, 100), #' method = rep("Method1", 10), #' Description = LETTERS[1:10], #' point_position = seq(10, 100, 10), #' test_color = sample(c("red", "blue"), 10, replace = TRUE)) #' pal <- c("Method1" = "blue") #' highlight_ids <- c(1, 5, 9) #' enrich_polar_bubble(final_df, pal, highlight_ids) #' @export enrich_polar_bubble <- function(final_combined_df_with_id_and_position, pal, highlight_ids) { # Extract unique levels of point_position and prepend 0 levels <- c(0, sort(unique(final_combined_df_with_id_and_position$point_position))) max_level_plus_five <- max(levels) + 5 max_id_plus_one <- max(final_combined_df_with_id_and_position$id) + 1 gg <- ggplot2::ggplot(data = final_combined_df_with_id_and_position, ggplot2::aes(x = .data$id, y = .data$Count, group = .data$method, fill = .data$method, color = .data$method)) + ggplot2::geom_hline(yintercept = levels, color = "grey85") + ggplot2::geom_hline(yintercept = max_level_plus_five, color = "grey15") + ggplot2::geom_segment(data = tibble::tibble(x = 1:max_id_plus_one, y = 0, yend = max_level_plus_five), ggplot2::aes(x = .data$x, xend = .data$x, y = .data$y, yend = .data$yend), inherit.aes = FALSE, color = "grey85") + ggplot2::geom_segment(data = tibble::tibble(x = 1:max_id_plus_one, y = max(levels), yend = max_level_plus_five), ggplot2::aes(x = .data$x, xend = .data$x, y = .data$y, yend = .data$yend), inherit.aes = FALSE, color = "grey15") + geomtextpath::geom_textpath(ggplot2::aes(x = final_combined_df_with_id_and_position$id, y = max_level_plus_five + 5, label = final_combined_df_with_id_and_position$Description, angle = 55), inherit.aes = FALSE, hjust = 0, size = 5.5, color = final_combined_df_with_id_and_position$test_color) + ggplot2::geom_point(ggplot2::aes(x = .data$id, y = .data$point_position, size = .data$Count), shape = 21, alpha = 0.6) + ggalt::stat_xspline(geom = "line", spline_shape = 0.25, linewidth = 0.75, alpha = 0.4) + ggalt::stat_xspline(geom = "area", alpha = 0.25, spline_shape = 0.25, outline.type = "upper") + ggplot2::scale_size(range = c(0, 14), breaks = levels, guide = ggplot2::guide_legend(title = "Count")) + ggplot2::scale_fill_manual(values = pal) + ggplot2::scale_color_manual(values = pal) + ggplot2::scale_x_continuous(expand = c(0, 0)) + ggplot2::scale_y_continuous(limits = c(-50, max_level_plus_five + 15), expand = c(0, 0)) + ggplot2::coord_polar() + ggplot2::annotate("text", x = 1, y = levels, label = "-", hjust = 1, size = 4) + ggplot2::annotate("text", x = 1.1, y = levels, label = levels, hjust = 0, size = 4) + ggplot2::annotate("text", x = 1, y = -50, label = stringr::str_c("BP/CC/MF/KEGG/DO/REACTOME"), size = 4) + ggplot2::theme_void() + ggplot2::theme(plot.background = ggplot2::element_rect(fill = "white", color = NA)) + ggnewscale::new_scale_fill() + ggplot2::geom_rect(data = dplyr::filter(final_combined_df_with_id_and_position, .data$id %in% highlight_ids), ggplot2::aes(xmin = .data$id - 0.5, xmax = .data$id + 0.5, ymin = 0, ymax = max_level_plus_five, fill = .data$test_color), alpha = 0.1, inherit.aes = FALSE) + ggplot2::scale_fill_identity() # Use colors specified in 'test_color' return(gg) } ================================================ FILE: R/EnrichmentSpiralize.R ================================================ #' Extract and Store Top Pathways for Each Sample #' #' This function processes a dataframe containing SSGSEA KEGG results. It allows specifying the number #' of top pathways to extract for each sample based on their scores, and stores these in a new dataframe #' with sample names and pathway scores. #' #' @param ssgsea_kegg Dataframe containing SSGSEA KEGG results with samples as columns and pathways as rows. #' @param nTop Integer, number of top pathways to select for each sample. #' @return A dataframe with columns 'Pathway', 'Sample', and 'Value' representing the top pathways for each sample. #' @importFrom utils head #' @export #' @examples #' # Example: Generating input data for the extract_ntop_pathways function #' #' # Define example pathways #' pathways <- c("Pathway_A", "Pathway_B", "Pathway_C", "Pathway_D", "Pathway_E", #' "Pathway_F", "Pathway_G", "Pathway_H", "Pathway_I", "Pathway_J") #' #' # Define example samples #' samples <- c("Sample_1", "Sample_2", "Sample_3") #' #' # Generate random SSGSEA KEGG scores between 0 and 1 #' set.seed(123) # For reproducibility #' ssgsea_scores <- matrix(runif(length(pathways) * length(samples), min = 0, max = 1), #' nrow = length(pathways), ncol = length(samples), #' dimnames = list(pathways, samples)) #' #' # Convert to a data frame #' ssgsea_kegg <- as.data.frame(ssgsea_scores) #' #' # Extract the top 3 pathways for each sample #' top_pathways <- extract_ntop_pathways(ssgsea_kegg, nTop = 3) #' extract_ntop_pathways <- function(ssgsea_kegg, nTop = 5) { # Initialize an empty data frame to store the results results <- data.frame(Pathway = character(), Sample = character(), Value = numeric(), stringsAsFactors = FALSE) # Iterate through each sample, starting from the first column for (i in 1:ncol(ssgsea_kegg)) { sample_name <- colnames(ssgsea_kegg)[i] # To avoid factor type errors, ensure the data is numeric column_data <- as.numeric(ssgsea_kegg[[i]]) # Create a new data frame with numeric data for sorting and extracting pathway_data <- data.frame(Pathway = rownames(ssgsea_kegg), Value = column_data, stringsAsFactors = FALSE) # Sort by value in descending order and take the top nTop entries top_paths <- utils::head(pathway_data[order(-pathway_data$Value),], nTop) # Bind to the results data frame results <- rbind(results, data.frame(Pathway = top_paths$Pathway, Sample = sample_name, Value = top_paths$Value)) } return(results) } #' Extract Positive Pathways from SSGSEA Results and Select Random Samples #' #' This function processes the results of SSGSEA, specifically focusing on KEGG pathways. #' It extracts pathways with positive values from each sample and randomly selects a subset of them. #' #' @param ssgsea_kegg A matrix or data frame with pathways as rows and samples as columns. #' @param max_paths_per_sample Integer, maximum number of pathways to select per sample. #' @return A data frame with selected pathways, samples, and their corresponding values. #' @export #' @examples #' # Example: Generating input data for the extract_positive_pathways function #' #' # Define example pathways #' pathways <- c("Pathway_1", "Pathway_2", "Pathway_3", "Pathway_4", "Pathway_5", #' "Pathway_6", "Pathway_7", "Pathway_8", "Pathway_9", "Pathway_10") #' #' # Define example samples #' samples <- c("Sample_A", "Sample_B", "Sample_C") #' #' # Generate random SSGSEA KEGG scores including both positive and negative values #' set.seed(456) # For reproducibility #' ssgsea_scores <- matrix(rnorm(length(pathways) * length(samples), mean = 0, sd = 1), #' nrow = length(pathways), ncol = length(samples), #' dimnames = list(pathways, samples)) #' #' # Convert to a data frame #' ssgsea_kegg <- as.data.frame(ssgsea_scores) #' #' # Use the extract_positive_pathways function to extract up to 3 positive pathways per sample #' selected_positive_pathways <- extract_positive_pathways(ssgsea_kegg, max_paths_per_sample = 3) #' extract_positive_pathways <- function(ssgsea_kegg, max_paths_per_sample = 5) { # Initialize an empty data frame to store the results results <- data.frame(Pathway = character(), Sample = character(), Value = numeric(), stringsAsFactors = FALSE) # Iterate over each sample for (i in 1:ncol(ssgsea_kegg)) { sample_name <- colnames(ssgsea_kegg)[i] # Ensure the data is numeric column_data <- as.numeric(ssgsea_kegg[[i]]) # Create a new data frame with pathway names and values pathway_data <- data.frame(Pathway = rownames(ssgsea_kegg), Value = column_data, stringsAsFactors = FALSE) # Filter for positive values positive_paths <- pathway_data[pathway_data$Value > 0,] # If there are positive values, randomly select a few pathways if (nrow(positive_paths) > 0) { selected_paths <- positive_paths[sample(nrow(positive_paths), min(max_paths_per_sample, nrow(positive_paths))),] # Bind to the results data frame results <- rbind(results, data.frame(Pathway = selected_paths$Pathway, Sample = sample_name, Value = selected_paths$Value)) } } return(results) } #' Adjust Color Tone by Modifying Saturation and Luminance #' #' This function adjusts the saturation and luminance of a given color. It works by converting #' the color from RGB to Luv color space, applying the scaling factors to the saturation and luminance, #' and then converting it back to RGB. #' #' @param color A color in hexadecimal format (e.g., "#FF0000") or a valid R color name. #' @param saturation_scale Numeric, the scaling factor for saturation (values < 1 decrease saturation, values > 1 increase saturation). #' @param luminance_scale Numeric, the scaling factor for luminance (values < 1 darken the color, values > 1 lighten the color). #' @return Returns a color in hexadecimal format adjusted according to the provided scales. #' @importFrom grDevices convertColor col2rgb rgb #' @export #' @examples #' adjusted_color <- adjust_color_tone("#FF0000", saturation_scale = 0.8, luminance_scale = 1.2) #' print(adjusted_color) #' adjust_color_tone <- function(color, saturation_scale, luminance_scale) { # Convert the input color to RGB, then to Luv color space rgb <- t(grDevices::col2rgb(color) / 255) luv <- grDevices::convertColor(rgb, from = "sRGB", to = "Luv") # Apply scaling factors to saturation and luminance luv[, 2:3] <- luv[, 2:3] * saturation_scale # Adjust saturation luv[, 1] <- luv[, 1] * luminance_scale # Adjust luminance # Convert back to RGB and correct color values to stay within the valid range rgb_new <- grDevices::convertColor(luv, from = "Luv", to = "sRGB") rgb_new <- rgb_new * 255 rgb_new[rgb_new > 255] <- 255 # Prevent color values from exceeding the maximum # Convert adjusted RGB values back to hexadecimal format apply(rgb_new, 1, function(x) grDevices::rgb(x[1], x[2], x[3], maxColorValue = 255)) } #' Render a Spiral Plot Using Run-Length Encoding #' #' This function creates a spiral plot for visualizing sequential data in a compact and visually appealing way. #' It uses run-length encoding to represent the lengths and colors of sequences in the spiral. #' #' @param x A vector representing categories or segments. #' @param samples A vector indicating the sample each segment belongs to. #' @param values Numeric vector indicating the lengths of each segment. #' @param colors Character vector specifying the colors for each segment. #' @param labels Logical, whether to add labels to each segment. #' @importFrom grid gpar unit #' @importFrom spiralize spiral_rect spiral_text spiral_initialize spiral_track #' @export #' @return No return value, called for side effects. This function generates a spiral plot and optionally adds labels. #' @examples #' # Example: Creating a spiral plot using the spiral_newrle function #' #' # Define example data #' x <- c("A", "A", "B", "C") #' samples <- c("Sample1", "Sample1", "Sample2", "Sample2") #' values <- c(20, 30, 15, 35) #' colors <- c("red", "blue", "green", "purple") #' labels <- TRUE #' #' # Initialize the spiral plot, setting the x-axis range and scaling #' spiralize::spiral_initialize(xlim = c(0, sum(values)), scale_by = "curve_length", #' vp_param = list(x = grid::unit(0, "npc"), just = "left")) #' #' # Create a track for the spiral plot #' spiralize::spiral_track(height = 0.5) #' #' # Add segments to the spiral plot using run-length encoding #' spiral_newrle(x, samples, values, colors, labels) #' spiral_newrle <- function(x, samples, values, colors, labels = FALSE) { x <- as.vector(x) # Ensure x is a vector samples <- as.vector(samples) # Ensure samples is a vector values <- as.numeric(values) # Ensure values are numeric position_start <- 0 # Initialize starting position current_sample <- samples[1] # Start with the first sample cumulative_start <- position_start # Initialize cumulative start for labels # Loop through each value for (i in seq_along(values)) { position_end <- position_start + values[i] # Calculate end position # Use the specified color, defaulting to red if missing color <- if (!is.na(colors[i])) colors[i] else "red" # Draw the segment in the spiral spiralize::spiral_rect(position_start, 0, position_end, 1, gp = grid::gpar(fill = color, col = NA)) # Check for sample change or last element if (i == length(values) || samples[i + 1] != current_sample) { if (labels) { label_position <- (cumulative_start + position_end) / 2 spiralize::spiral_text(label_position, 0.5, current_sample, facing = "curved_inside", nice_facing = TRUE) } cumulative_start <- position_end # Reset for next sample if (i < length(values)) { current_sample <- samples[i + 1] } } position_start <- position_end # Move to next start position } } #' Create Spiral Plots with Legends Using 'spiralize' and 'ComplexHeatmap' #' #' This function initializes a spiral plot, adds tracks for pathways and samples, #' and generates legends based on the sample and pathway information in the provided data frame. #' It uses 'spiralize' for the spiral plot and 'ComplexHeatmap' for handling legends. #' #' @param results A data frame containing 'Pathway', 'Sample', 'Value', 'PathwayColor', and 'SampleColor' columns. #' @importFrom grid gpar #' @importFrom spiralize spiral_initialize spiral_track #' @importFrom ComplexHeatmap packLegend Legend draw #' @importFrom ggplot2 unit #' @export #' @return No return value, called for side effects. This function generates spiral plots and adds legends based on sample and pathway information. #' @examples #' # Example: Creating enrichment spiral plots with legends #' #' # Define the results data frame #' results <- data.frame( #' Pathway = c("Pathway1", "Pathway1", "Pathway2", "Pathway2", "Pathway3"), #' Sample = c("Sample1", "Sample1", "Sample2", "Sample2", "Sample3"), #' Value = c(20, 30, 15, 35, 25), #' PathwayColor = c("red", "red", "blue", "blue", "orange"), #' SampleColor = c("green", "green", "purple", "purple", "cyan"), #' stringsAsFactors = FALSE #' ) #' #' # Create the enrichment spiral plots with legends #' enrichment_spiral_plots(results) #' enrichment_spiral_plots <- function(results) { if (!requireNamespace("systemfonts", quietly = TRUE)) { stop("ggplot2 is required to use the function. Please install it.", call. = FALSE) } # Calculate the total value for setting the x-axis range n <- sum(results$Value) # Initialize the spiral plot spiralize::spiral_initialize(xlim = c(0, n), scale_by = "curve_length", vp_param = list(x = ggplot2::unit(0, "npc"), just = "left")) # Add a track for pathways spiralize::spiral_track(height = 0.4) spiral_newrle(results$Pathway, results$Sample, results$Value, results$PathwayColor, labels = FALSE) # Add a track for samples spiralize::spiral_track(height = 0.4) spiral_newrle(results$Sample, results$Sample, results$Value, results$SampleColor, labels = TRUE) # Generate legends based on sample, using unique pathway and color information lgd_list <- tapply(1:nrow(results), results$Sample, function(ind) { ComplexHeatmap::Legend(title = results$Sample[ind][1], at = unique(results$Pathway[ind]), legend_gp = grid::gpar(fill = unique(results$PathwayColor[ind]))) }) # Set the maximum height for the legends and draw them lgd <- ComplexHeatmap::packLegend(list = lgd_list, max_height = ggplot2::unit(7, "inch")) ComplexHeatmap::draw(lgd, x = ggplot2::unit(1, "npc") + ggplot2::unit(1, "mm"), just = "left") } ================================================ FILE: R/FacetDensityFoldchange.R ================================================ #' Create faceted high-density region plots with optional points and density contours #' #' This function creates faceted high-density region plots using ggdensity for #' adding optional density rug and density contours, and scatter points. It also adds a regression line #' and Pearson correlation label. The plot is faceted by a grouping variable. #' #' @param data Data frame containing variables for plotting. #' @param x_var Name of the x-axis variable as a string. #' @param y_var Name of the y-axis variable as a string. #' @param group_var Name of the grouping variable for color mapping as a string. #' @param facet_var Name of the faceting variable. #' @param palette Color palette for the plot as a character vector. #' @param show_points Logical, if TRUE adds scatter points to the plot. #' @param show_density Logical, if TRUE adds filled density contours to the plot. #' @param point_size Size of the points, relevant if show_points is TRUE. #' @param point_alpha Transparency level of the points, relevant if show_points is TRUE. #' @param line_size Size of the regression line. #' @param cor_method Method to calculate correlation ("pearson" or "spearman"). #' @param cor_label_pos Vector of length 2 indicating the position of the correlation label (x and y). #' @param cor_vjust Vertical justification for correlation label, default is NULL. #' @return A `ggplot` object representing the high-density region plot. #' @importFrom ggplot2 ggplot aes_string geom_point geom_smooth scale_fill_manual scale_color_manual facet_wrap theme margin #' @importFrom ggdensity geom_hdr geom_hdr_rug #' @importFrom ggpubr stat_cor #' @importFrom hrbrthemes theme_ipsum #' @importFrom grid unit #' @importFrom stats as.formula #' @examples #' combined_df_file <- system.file("extdata", "combined_df.rds", package = "TransProR") #' combined_df <- readRDS(combined_df_file) #' pal2 = c("#2787e0","#1a9ae0","#1dabbf","#00897b","#43a047","#7cb342") #' all_facet_density_foldchange_name1 <- facet_density_foldchange( #' data = combined_df, #' x_var = "log2FoldChange_1", #' y_var = "log2FoldChange_2", #' group_var = "name", #' facet_var = "name", #' palette = pal2, #' show_points = TRUE, #' show_density = FALSE, #' point_size = 2, #' point_alpha = 0.1, #' line_size = 1.6, #' cor_method = "pearson", #' cor_label_pos = c("left", "top"), #' cor_vjust = 1 #' ) #' @export facet_density_foldchange <- function(data, x_var, y_var, group_var, facet_var, palette, show_points = FALSE, show_density = TRUE, point_size = 2.5, point_alpha = 0.1, line_size = 1.6, cor_method = "pearson", cor_label_pos = c("left", 0.97), cor_vjust = NULL) { # Begin constructing the ggplot plot <- ggplot2::ggplot(data, ggplot2::aes_string(x = x_var, y = y_var, fill = group_var)) # Optionally add density rug plot <- plot + ggdensity::geom_hdr_rug() # Optionally add density contours if (show_density) { plot <- plot + ggdensity::geom_hdr() } # Optionally add points if (show_points) { plot <- plot + ggplot2::geom_point(ggplot2::aes_string(color = group_var), shape = 21, size = point_size, alpha = point_alpha) } # Add regression line and correlation label plot <- plot + ggplot2::geom_smooth(ggplot2::aes_string(x = x_var, y = y_var, color = group_var), method = 'lm', level = 0.95, size = line_size) # Add regression line and correlation label if (is.null(cor_vjust)) { plot <- plot + ggpubr::stat_cor(ggplot2::aes_string(color = group_var), method = cor_method, label.x.npc = cor_label_pos[1], label.y.npc = cor_label_pos[2]) } else { plot <- plot + ggpubr::stat_cor(ggplot2::aes_string(color = group_var), method = cor_method, label.x.npc = cor_label_pos[1], label.y.npc = cor_label_pos[2], vjust = cor_vjust) } # Customize scales and facet wrapping plot <- plot + ggplot2::scale_fill_manual(values = palette) + ggplot2::scale_color_manual(values = palette) + ggplot2::facet_wrap(stats::as.formula(paste0("~ ", facet_var)), scales = "free_x") + hrbrthemes::theme_ipsum() + ggplot2::theme(plot.margin = ggplot2::margin(10, 10, 10, 10), plot.background = ggplot2::element_rect(fill = "white", color = "white"), panel.spacing = grid::unit(2, "mm")) # Return the `ggplot` object return(plot) } ================================================ FILE: R/FilterDiffGenes.R ================================================ #' Filter Differentially Expressed Genes #' #' This function filters a data frame to identify genes with significant differential expression #' based on specified thresholds for p-values and log fold change. It allows for flexible #' input of column names for p-values and log fold change. #' #' @importFrom dplyr filter #' @importFrom rlang sym #' @param data A data frame containing gene expression data. #' @param p_val_col Character string indicating the column name for p-values. Default is "adj.P.Val". #' @param log_fc_col Character string indicating the column name for log fold change. Default is "logFC". #' @param p_val_threshold Numeric threshold for filtering p-values. Default is 0.05. #' @param log_fc_threshold Numeric threshold for filtering log fold change. Default is 1.0. #' @return A data frame with genes filtered by the specified criteria. #' @export #' #' @examples #' # Create a sample data frame with p-values and log fold changes #' sample_data <- data.frame( #' adj.P.Val = c(0.03, 0.06, 0.02, 0.07), #' logFC = c(1.5, 0.8, -1.2, 1.1), #' gene = c("Gene1", "Gene2", "Gene3", "Gene4") #' ) #' #' # Use the filter_diff_genes function to filter significant genes #' filtered_genes <- filter_diff_genes(sample_data) #' print(filtered_genes) filter_diff_genes <- function(data, p_val_col = "adj.P.Val", log_fc_col = "logFC", p_val_threshold = 0.05, log_fc_threshold = 1.0) { # Check for the specified columns in the data frame if (!(p_val_col %in% names(data))) { stop(paste("Column", p_val_col, "not found in the data frame.")) } if (!(log_fc_col %in% names(data))) { stop(paste("Column", log_fc_col, "not found in the data frame.")) } # Filter the data based on the specified thresholds for p-values and log fold change filtered_data <- data %>% dplyr::filter(!!rlang::sym(p_val_col) < p_val_threshold) %>% dplyr::filter(abs(!!rlang::sym(log_fc_col)) > log_fc_threshold) # Return the filtered data frame return(filtered_data) } ================================================ FILE: R/FourDegsVenn.R ================================================ #' Function to Filter Differentially Expressed Genes (DEGs) #' #' This function filters out genes based on their expression change status. #' It returns the names of genes which are not "stable". #' #' @param df A data frame containing gene expression data. #' @return A vector of gene names that are differentially expressed. #' @examples #' DEG_deseq2_file <- system.file("extdata", "DEG_deseq2.rds", package = "TransProR") #' DEG_deseq2 <- readRDS(DEG_deseq2_file) #' DEG_deseq2_test <- deg_filter(DEG_deseq2) #' @export deg_filter <- function(df){ # Selecting gene names where change is not "stable" rownames(df)[df$change != "stable"] } #' Function to Create a Venn Diagram of DEGs #' #' This function creates a Venn Diagram using the ggVennDiagram package. #' It allows customization of various aesthetic elements of the diagram. #' @importFrom ggplot2 alpha scale_fill_gradient scale_color_manual scale_x_continuous expansion #' @importFrom ggVennDiagram ggVennDiagram #' @param degs_list A list of DEG sets for Venn Diagram creation. #' @return A ggplot object representing the Venn Diagram. #' @examples #' data("all_degs_venn", package = "TransProR") #' four_degs_venn <- four_degs_venn(all_degs_venn) #' @export four_degs_venn <- function(degs_list){ # Defining edge colors and alpha transparency for the Venn Diagram edge_colors <- c(ggplot2::alpha("#1b64bb", 0.5), ggplot2::alpha("#13828e", 0.5), ggplot2::alpha("#337c3a", 0.5), ggplot2::alpha("#9e9d39", 0.5)) edge_color <- ggplot2::alpha(c("#1b64bb","#13828e","#337c3a","#9e9d39"), 0.8) # Creating a Venn Diagram using 'ggVennDiagram' ggVennDiagram::ggVennDiagram( degs_list, set_size = 5, # Font size for group names set_color = edge_color, # Color for group names label_alpha= 0, # Transparency of background box for labels label_size = 4, # Font size for labels edge_size = 3 # Thickness of edges ) + ggplot2::scale_fill_gradient(low="#e1f2f1", high = "#11786b") + # Gradient fill based on values ggplot2::scale_color_manual(values = edge_colors) + # Manually set edge colors ggplot2::scale_x_continuous(expand = ggplot2::expansion(mult = .3)) # Adjusting x-axis scaling } ================================================ FILE: R/GatherGraphEdge.R ================================================ #' Gather graph edge from data frame #' Please note that this function is from the 'ggraph' package and has not been altered in functionality, #' but it has been optimized and iterated. #' It is not original content of 'TransProR'. #' However, since 'ggraph' caused frequent GitHub Action errors during the creation of 'TransProR', #' the author directly referenced the involved functions in 'TransProR'. #' This is not the author's original creation. All users please be aware! #' @param df A data frame #' @param index A vector of column names to group by #' @param root Root name for the root node connections, optional #' @return A tibble of graph edges #' @export #' @importFrom dplyr mutate select group_by summarise bind_rows all_of across #' @importFrom tidyr unite #' @importFrom tibble as_tibble #' @name gather_graph_edge gather_graph_edge <- function(df, index = NULL, root = NULL) { if (length(index) < 2) { stop("Please specify at least two index columns.") } prepare_edge <- function(data, from, to, sep = "/") { data %>% tidyr::unite("from", dplyr::all_of(from), sep = sep, remove = FALSE) %>% tidyr::unite("to", dplyr::all_of(to), sep = sep) %>% dplyr::select(.data$from, .data$to) %>% dplyr::mutate(dplyr::across(c("from", "to"), as.character)) } edges <- lapply(seq_along(index)[-1], function(i) { prepare_edge(df, index[1:(i - 1)], index[1:i]) }) edges <- dplyr::bind_rows(edges) edges <- tibble::as_tibble(edges) if (!is.null(root)) { root_edges <- df %>% dplyr::group_by(.data[[index[1]]]) %>% dplyr::summarise(count = dplyr::n(), .groups = 'drop') %>% dplyr::mutate(from = root, to = as.character(.data[[index[1]]])) %>% dplyr::select(.data$from, .data$to) edges <- dplyr::bind_rows(root_edges, edges) } return(edges) } ================================================ FILE: R/GatherGraphNode.R ================================================ #' Gather graph nodes from a data frame #' Please note that this function is from the 'ggraph' package and has not been altered in functionality, #' but it has been optimized and iterated. #' It is not original content of 'TransProR'. #' However, since 'ggraph' caused frequent GitHub Action errors during the creation of 'TransProR', #' the author directly referenced the involved functions in 'TransProR'. #' This is not the author's original creation. All users please be aware! #' @inheritParams gather_graph_edge #' @param value Column name used for summarizing node size, defaults to the last column #' @return a tibble of graph nodes #' @export #' @importFrom dplyr group_by summarise mutate bind_rows n all_of across #' @importFrom tidyr unite #' @importFrom tibble as_tibble #' @importFrom utils tail gather_graph_node <- function(df, index = NULL, value = utils::tail(colnames(df), 1), root = NULL) { if (length(index) < 2) { stop("Please specify at least two index columns.") } else { nodes_list <- lapply(seq_along(index), function(i) { dots <- index[1:i] df %>% dplyr::group_by(dplyr::across(dplyr::all_of(dots))) %>% dplyr::summarise(node.size = sum(.data[[value]], na.rm = TRUE), node.level = index[i], node.count = dplyr::n(), .groups = 'drop') %>% dplyr::mutate(node.short_name = as.character(.data[[dots[length(dots)]]]), node.branch = as.character(.data[[dots[1]]])) %>% tidyr::unite(col = "node.name", all_of(dots), sep = "/") }) nodes <- dplyr::bind_rows(nodes_list) %>% tibble::as_tibble() nodes$node.level <- factor(nodes$node.level, levels = index) if (!is.null(root)) { root_data <- data.frame( node.name = root, node.size = sum(df[[value]], na.rm = TRUE), node.level = root, node.count = 1, node.short_name = root, node.branch = root, stringsAsFactors = FALSE ) nodes <- dplyr::bind_rows(root_data, nodes) nodes$node.level <- factor(nodes$node.level, levels = c(root, index)) } return(nodes) } } ================================================ FILE: R/GeneColor.R ================================================ #' Merge Genes with Color Information Based on Up/Down Regulation #' #' This function merges selected genes with differential expression data and adds a color column based on up/down regulation. #' #' @param selected_genes A data frame containing selected genes with a column named "Symble". #' @param DEG_deseq2 A data frame containing differential expression data with a column named "Symble" and a column named "change" indicating up/down regulation. #' @param up_color The color to assign to genes with up-regulated expression. #' @param down_color The color to assign to genes with down-regulated expression. #' @return A data frame containing merged genes with an additional color column. #' @export #' #' @examples #' selected_genes_deseq2_file <- system.file("extdata", #' "selected_genes_deseq2.rds", #' package = "TransProR") #' selected_genes_deseq2 <- readRDS(selected_genes_deseq2_file) #' Diff_deseq2_file <- system.file("extdata", "Diff_deseq2.rds", package = "TransProR") #' Diff_deseq2 <- readRDS(Diff_deseq2_file) #' #' result_deseq2 <- gene_color(selected_genes_deseq2, Diff_deseq2, "#0000EE", "#fc4746") gene_color <- function(selected_genes, DEG_deseq2, up_color, down_color) { # Ensure that selected_genes has a column named "Symble" if (!"Symble" %in% colnames(selected_genes)) { stop("selected_genes data frame must have a 'Symble' column.") } # Ensure that the row names column of DEG_deseq2 is correctly set to "Symble" DEG_deseq2$Symble <- rownames(DEG_deseq2) # Merge data frames: add the 'change' column from DEG_deseq2 to the selected_genes data frame merged_genes <- merge(selected_genes, DEG_deseq2[, c("Symble", "change")], by = "Symble", all.x = TRUE) # Add color column based on the 'change' column values merged_genes$color <- ifelse(merged_genes$change == "up", up_color, ifelse(merged_genes$change == "down", down_color, NA)) # Ensure that the length of the color column matches the number of rows in merged_genes if (length(merged_genes$color) != nrow(merged_genes)) { stop("Color assignment failed due to unexpected values in 'change' column.") } return(merged_genes) } ================================================ FILE: R/GeneHighlights.R ================================================ #' Add gene highlights to a ggtree object #' #' This function enhances a `ggtree` plot by adding highlights for specific genes. It adds both a semi-transparent fan-shaped #' highlight and a point at the node corresponding to each gene. Colors for each gene can be customized. #' #' @param ggtree_obj A ggtree object to which the highlights will be added. #' @param genes_to_highlight A data frame containing genes and their corresponding colors. #' @param hilight_extend Integer, the extension of the highlight fan in degrees. #' @return A ggtree object with added gene highlights. #' @importFrom ggtree geom_hilight geom_point2 #' @importFrom dplyr filter select pull #' @examples #' data("gtree", package = "TransProR") #' #' # Define genes and their colors #' genes_df <- data.frame(Symble = c("t5", "t9"), #' color = c("#FF0000", "#0000FF")) #' #' # Add highlights #' gtree <- gene_highlights(gtree, genes_to_highlight = genes_df) #' #' @export gene_highlights <- function(ggtree_obj, genes_to_highlight, hilight_extend = 18) { # Ensure the input is a `ggtree` object if (!inherits(ggtree_obj, "ggtree")) { stop("The first argument must be a ggtree object.") } # Ensure the second argument is a data frame if (!("data.frame" %in% class(genes_to_highlight))) { stop("The second argument must be a data frame.") } if (!requireNamespace("systemfonts", quietly = TRUE)) { stop("ggplot2 is required to use the function. Please install it.", call. = FALSE) } # Extract tree data and ensure it is in a data frame format tree_data <- as.data.frame(ggtree_obj$data) # Map gene names and colors to the tree nodes and create geom_hilight and geom_point2 layers for each node highlight_commands <- lapply(1:nrow(genes_to_highlight), function(i) { gene <- genes_to_highlight$Symble[i] color <- genes_to_highlight$color[i] node <- dplyr::filter(tree_data, .data$label == gene) %>% dplyr::select(node) %>% dplyr::pull() if (!is.na(node)) { list( ggtree::geom_hilight(node=node, fill=color, alpha = .3, extend = hilight_extend), ggtree::geom_point2(ggtree::aes(subset = (.data$label == gene)), color=color, size=2, alpha=0.6) ) } else { warning(paste("Gene", gene, "not found in the ggtree object.")) NULL } }) # Remove NULL elements from the list of commands highlight_commands <- Filter(Negate(is.null), highlight_commands) # Flatten the list of commands and apply them to the `ggtree` object ggtree_obj <- ggtree_obj + do.call(c, highlight_commands) return(ggtree_obj) } ================================================ FILE: R/GeneMapPathway.R ================================================ #' Create Pathway-Gene Mapping Data Frame #' #' This function takes multiple data frames and pathway IDs, merging them into a new data frame. #' Each data frame represents a type of analysis (e.g., BP, KEGG, MF, etc.). #' @param BP_dataframe Data frame for Biological Process analysis #' @param BP_ids Selected pathway IDs for Biological Process analysis #' @param KEGG_dataframe Data frame for KEGG analysis #' @param KEGG_ids Selected pathway IDs for KEGG analysis #' @param MF_dataframe Data frame for Molecular Function analysis #' @param MF_ids Selected pathway IDs for Molecular Function analysis #' @param REACTOME_dataframe Data frame for REACTOME analysis #' @param REACTOME_ids Selected pathway IDs for REACTOME analysis #' @param CC_dataframe Data frame for Cellular Component analysis #' @param CC_ids Selected pathway IDs for Cellular Component analysis #' @param DO_dataframe Data frame for Disease Ontology analysis #' @param DO_ids Selected pathway IDs for Disease Ontology analysis #' @return A new data frame that includes pathways, gene, type, and value columns #' @export #' @examples #' # Simulating data for different analysis types #' #' # Simulate Biological Process (BP) data frame #' BP_df <- data.frame( #' ID = c("GO:0002376", "GO:0019724"), #' geneID = c("GENE1/GENE2", "GENE3/GENE4"), #' Description = c("Immune response", "Glycosylation process") #' ) #' #' # Simulate KEGG data frame #' KEGG_df <- data.frame( #' ID = c("12345", "67890"), #' geneID = c("GENE5/GENE6", "GENE7/GENE8"), #' Description = c("Pathway 1", "Pathway 2") #' ) #' #' # Simulate Molecular Function (MF) data frame #' MF_df <- data.frame( #' ID = c("ABC123", "DEF456"), #' geneID = c("GENE9/GENE10", "GENE11/GENE12"), #' Description = c("Molecular function A", "Molecular function B") #' ) #' #' # Simulate REACTOME data frame #' REACTOME_df <- data.frame( #' ID = c("R-HSA-12345", "R-HSA-67890"), #' geneID = c("GENE13/GENE14", "GENE15/GENE16"), #' Description = c("Pathway in Reactome 1", "Pathway in Reactome 2") #' ) #' #' # Simulate Cellular Component (CC) data frame #' CC_df <- data.frame( #' ID = c("GO:0005575", "GO:0005634"), #' geneID = c("GENE17/GENE18", "GENE19/GENE20"), #' Description = c("Cellular component A", "Cellular component B") #' ) #' #' # Simulate Disease Ontology (DO) data frame #' DO_df <- data.frame( #' ID = c("DOID:123", "DOID:456"), #' geneID = c("GENE21/GENE22", "GENE23/GENE24"), #' Description = c("Disease A", "Disease B") #' ) #' #' # Example pathway IDs for each analysis #' BP_ids <- c("GO:0002376", "GO:0019724") #' KEGG_ids <- c("12345", "67890") #' MF_ids <- c("ABC123", "DEF456") #' REACTOME_ids <- c("R-HSA-12345", "R-HSA-67890") #' CC_ids <- c("GO:0005575", "GO:0005634") #' DO_ids <- c("DOID:123", "DOID:456") #' #' # Generate the pathway-gene map using the gene_map_pathway function #' pathway_gene_map <- gene_map_pathway( #' BP_dataframe = BP_df, BP_ids = BP_ids, #' KEGG_dataframe = KEGG_df, KEGG_ids = KEGG_ids, #' MF_dataframe = MF_df, MF_ids = MF_ids, #' REACTOME_dataframe = REACTOME_df, REACTOME_ids = REACTOME_ids, #' CC_dataframe = CC_df, CC_ids = CC_ids, #' DO_dataframe = DO_df, DO_ids = DO_ids #' ) #' #' # Display the resulting pathway-gene mapping data frame #' print(pathway_gene_map) #' gene_map_pathway <- function(BP_dataframe, BP_ids, KEGG_dataframe, KEGG_ids, MF_dataframe, MF_ids, REACTOME_dataframe, REACTOME_ids, CC_dataframe, CC_ids, DO_dataframe, DO_ids) { # Create an empty data frame pathway_gene_map <- data.frame( pathway_description = character(), gene4 = character(), type = character(), value = integer() ) # Helper function to extract information from a data frame and add it to the new data frame add_to_map <- function(df, ids, type) { if (is.null(df) || is.null(ids)) return() selected_rows <- df[df$ID %in% ids, ] for (row in seq(nrow(selected_rows))) { genes <- strsplit(as.character(selected_rows$geneID[row]), "/")[[1]] # Here, instead of the ID, we use the Description column description <- as.character(selected_rows$Description[row]) for (gene in genes) { pathway_gene_map <<- rbind(pathway_gene_map, data.frame( pathway = description, gene = gene, type = type, value = 1 )) } } } # Apply the helper function to add data for each type of analysis add_to_map(BP_dataframe, BP_ids, "BP") add_to_map(KEGG_dataframe, KEGG_ids, "KEGG") add_to_map(MF_dataframe, MF_ids, "MF") add_to_map(REACTOME_dataframe, REACTOME_ids, "REACTOME") add_to_map(CC_dataframe, CC_ids, "CC") add_to_map(DO_dataframe, DO_ids, "DO") return(pathway_gene_map) } ================================================ FILE: R/GetGtexExp.R ================================================ #' Get GTEx Expression Data for Specific Organ #' #' This function retrieves gene expression data from the GTEx project that is specific to a certain organ. #' It performs various checks and processing steps to ensure that the data is consistent and relevant to the #' specified organ. The filtered and cleaned data is saved as an RDS file for further analysis. #' #' @param organ_specific A character string specifying the organ to filter the gene expression data by. #' @param file_path A character string specifying the path to the GTEx gene expression data file. #' @param probe_map_path A character string specifying the path to the gtex_probeMap_gencode data file. #' @param pheno_path A character string specifying the path to the GTEx phenotype data file. #' @param output_path A character string specifying the path where the output RDS file will be saved. #' #' @details The function begins by checking if the gene expression and phenotype data files exist at #' the specified paths. It then loads these data files and processes them by setting appropriate row names, #' modifying column names for clarity, and filtering samples based on the specified organ. The function ensures #' that only samples present in both datasets are retained for consistency. It also removes any duplicate gene #' entries to prevent redundancy. Finally, the processed data is saved as an RDS file. #' #' @return A data frame containing gene expression data for the specified organ. #' Rows represent genes, and columns represent samples. Note that this function also saves the #' organ-specific GTEx data as an RDS file at the specified output path. #' #' @note The function will stop and throw an error if the input files do not exist, or if no samples are found #' for the specified organ. #' #' @note CRITICAL: The 'output_path' parameter must end with '.rds' to be properly recognized by the function. It is also highly recommended #' that the path includes specific identifiers related to the target samples. Please structure the 'output_path' following this pattern: './your_directory/your_sample_type.gtex.rds'. #' #' @importFrom utils read.table #' @importFrom dplyr distinct filter #' @importFrom rlang .data #' @export get_gtex_exp <- function(organ_specific, file_path, probe_map_path, pheno_path, output_path) { # Check for the existence of the file paths if (!file.exists(file_path) | !file.exists(pheno_path) | !file.exists(probe_map_path)) { stop("One or more of the input files do not exist.") } # Load the gene expression, probe map, and phenotype data files from the provided paths # gtex.exp <- data.table::fread(file_path, header = TRUE, sep = '\t', data.table = FALSE) # gtex.pro <- data.table::fread(probe_map_path, header = TRUE, sep = '\t', data.table = FALSE) # gtex.phe <- data.table::fread(pheno_path, header = TRUE, sep = '\t', data.table = FALSE) # Load the gene expression, probe map, and phenotype data files gtex.exp <- utils::read.table(file_path, header = TRUE, sep = '\t', stringsAsFactors = FALSE, check.names = FALSE) gtex.pro <- utils::read.table(probe_map_path, header = TRUE, sep = '\t', stringsAsFactors = FALSE, check.names = FALSE) gtex.phe <- utils::read.table(pheno_path, header = TRUE, sep = '\t', stringsAsFactors = FALSE, check.names = FALSE) # Merge the probe map with the expression data gtex.pro <- gtex.pro[, c(1,2)] # Assuming the columns of interest are the first two gtex.count.pro <- merge(gtex.pro, gtex.exp, by.x = "id", by.y = "sample") # Set the row names for the samples, facilitating subsequent operations rownames(gtex.phe) <- gtex.phe$Sample # Modify column names to be more intuitive colnames(gtex.phe) <- c("Sample", "body_site_detail (SMTSD)", "primary_site", "gender", "patient", "cohort") # Filter samples based on the specified organ specific_samples <- dplyr::filter(gtex.phe, .data$primary_site == organ_specific) # If no corresponding samples are found, halt the function with an error message if (nrow(specific_samples) == 0) { stop("No samples found for the specified organ.") } # Print the number of samples found for the specified organ message("Number of samples for", organ_specific, ":", nrow(specific_samples), "\n") # Ensure processing only for samples present in both expression and phenotype data through intersection valid_sample_names <- intersect(rownames(specific_samples), colnames(gtex.count.pro)) # merge_phe_count_gtex gtex_data <- gtex.count.pro[, c("gene", valid_sample_names)] # Extract data for relevant samples # Remove duplicate gene entries and set row names as gene names gtex_data <- dplyr::distinct(gtex_data, .data$gene, .keep_all = TRUE) rownames(gtex_data) <- gtex_data$gene gtex_data <- gtex_data[, -1] # Remove the 'gene' column, keeping only expression data # Save the results as an RDS file for future data analysis tasks saveRDS(gtex_data, output_path) return(gtex_data) } ================================================ FILE: R/GetTcgaExp.R ================================================ #' TCGA Expression Data Processing #' #' This function processes expression data and phenotype information, separates tumor and normal samples, #' and saves the results into different files. It's specifically designed for data obtained from TCGA. #' #' @param counts_file_path File path to the counts data (usually in the form of a large matrix with gene expression data). #' @param gene_probes_file_path File path containing the gene probes data. #' @param phenotype_file_path File path to the phenotype data, which includes various sample attributes. #' @param output_file_path Path where the output files, distinguished between tumor and normal, will be saved. #' #' @return A list containing matrices for tumor and normal expression data. #' #' @note IMPORTANT: This function assumes that the input files follow a specific format and structure, typically found in TCGA data releases. #' Users should verify their data's compatibility. Additionally, the function does not perform error checking on the data's content, #' which users should handle through proper preprocessing. #' #' @note CRITICAL: The 'output_file_path' parameter must end with '.rds' to be properly recognized by the function. It is also highly recommended #' that the path includes specific identifiers related to the target samples, as the function will create further subdivisions in the specified #' path for tumor or normal tissues. Please structure the 'output_file_path' following this pattern: './your_directory/your_sample_type.exp.rds'. #' #' @importFrom dplyr distinct filter #' @importFrom utils read.table #' @importFrom rlang .data #' @export #' @author Dongyue Yu #' #' @examples #' counts_file <- system.file("extdata", "TCGA-SKCM.htseq_counts_test.tsv", package = "TransProR") #' gene_probes_file <- system.file("extdata", #' "TCGA_gencode.v22.annotation.gene.probeMap_test", #' package = "TransProR") #' phenotype_file <- system.file("extdata", "TCGA-SKCM.GDC_phenotype_test.tsv", package = "TransProR") #' ouput_file <- file.path(tempdir(), "SKCM_Skin_TCGA_exp_test.rds") #' #' SKCM_exp <- get_tcga_exp( #' counts_file_path = counts_file, #' gene_probes_file_path = gene_probes_file, #' phenotype_file_path = phenotype_file, #' output_file_path = ouput_file #' ) #' head(SKCM_exp[["tumor_tcga_data"]])[1:5, 1:5] #' head(SKCM_exp[["normal_tcga_data"]], n = 10) # Because there is only one column. get_tcga_exp <- function(counts_file_path, gene_probes_file_path, phenotype_file_path, output_file_path) { # Load expression matrix # count_data <- data.table::fread(counts_file_path, header = TRUE, sep = '\t', data.table = FALSE) count_data <- utils::read.table(counts_file_path, header = TRUE, sep = '\t', stringsAsFactors = FALSE, check.names = FALSE) # Load gene ID conversion information # gene_probes <- data.table::fread(gene_probes_file_path, header = TRUE, sep = '\t', data.table = FALSE) gene_probes <- utils::read.table(gene_probes_file_path, header = TRUE, sep = '\t', stringsAsFactors = FALSE, check.names = FALSE) # Keep only necessary columns gene_probes <- gene_probes[, c(1, 2)] # Merge gene ID information with expression matrix count_probes_merged <- merge(gene_probes, count_data, by.x = "id", by.y = "Ensembl_ID") # Remove duplicates count_data_unique <- dplyr::distinct(count_probes_merged, .data$gene, .keep_all = TRUE) # Set gene names as row names rownames(count_data_unique) <- count_data_unique$gene count_data_final <- count_data_unique[, -c(1,2)] # Remove extra columns # Load clinical information # phenotype_data <- data.table::fread(phenotype_file_path, header = TRUE, sep = '\t', data.table = FALSE) # Load clinical information with proper column types phenotype_data <- utils::read.table(phenotype_file_path, header = TRUE, sep = '\t', stringsAsFactors = FALSE, check.names = FALSE, colClasses = list( withdrawn = "logical", releasable.project = "logical", is_ffpe.samples = "logical", oct_embedded.samples = "logical" )) rownames(phenotype_data) <- phenotype_data$submitter_id.samples # Set sample names as row names # Check first if there are any "Metastatic", "Primary Tumor", or "normal" samples in your data table(phenotype_data$sample_type.samples) # Create a data frame for tumor samples tumor_samples <- phenotype_data %>% dplyr::filter(grepl("Metastatic|Primary Tumor", .data$sample_type.samples, ignore.case = TRUE)) # Check for 'Primary Tumor' or 'Metastatic' samples if (nrow(tumor_samples) == 0) { message("No 'Primary Tumor' or 'Metastatic' samples found.\n") } else { message("Number of 'Primary Tumor' or 'Metastatic' samples: ", nrow(tumor_samples), "\n") } # Create a data frame for normal samples normal_samples <- phenotype_data %>% dplyr::filter(grepl("normal", .data$sample_type.samples, ignore.case = TRUE)) if (nrow(normal_samples) == 0) { message("No 'normal' samples found.\n") } else { message("Number of 'normal' samples:", nrow(normal_samples), "\n") } # Get the intersection of clinical information and expression matrix tumor_common_samples <- intersect(rownames(tumor_samples), colnames(count_data_final)) # Extract corresponding expression matrix tumor_expression_data <- count_data_final[, tumor_common_samples] # Get the intersection of clinical information and expression matrix normal_common_samples <- intersect(rownames(normal_samples), colnames(count_data_final)) # Extract corresponding expression matrix normal_expression_data <- count_data_final[, normal_common_samples, drop = FALSE] # Save results tumor_output_path <- gsub("\\.rds$", "_tumor.rds", output_file_path) normal_output_path <- gsub("\\.rds$", "_normal.rds", output_file_path) saveRDS(tumor_expression_data, file = tumor_output_path) saveRDS(normal_expression_data, file = normal_output_path) result <- list( tumor_tcga_data = tumor_expression_data, normal_tcga_data = normal_expression_data ) return(result) } ================================================ FILE: R/HighlightByNode.R ================================================ #' Highlight Nodes in a Phylogenetic Tree with Custom Fill Colors and Transparency #' #' This function adds highlights to specific nodes in a phylogenetic tree represented by a `ggtree` object. #' Users can specify the nodes to highlight along with custom fill colors, transparency, and extension options. #' #' @importFrom ggtree geom_hilight #' @param ggtree_object A `ggtree` object representing the phylogenetic tree. #' @param nodes A character vector specifying the nodes to highlight. #' @param fill_colors A character vector specifying the fill colors for the highlighted nodes. #' @param alpha_values A numeric vector specifying the transparency values for the highlighted nodes (between 0 and 1). #' @param extend_values A logical vector specifying whether to extend the highlight to the whole clade below each node. #' @return A modified `ggtree` object with the specified nodes highlighted. #' @export #' #' @examples #' plot_file <- system.file("extdata", "tree_plot.rds", package = "TransProR") #' p2_plot <- readRDS(plot_file) #' #' # Please replace the following vectors with your specific values #' nodes <- c(117, 129, 125, 127, 119, #' 123, 139, 166, 124, 131, 217) # x-values of the nodes you want to highlight #' fill_colors <- c("#CD6600", "#CD6600", "#CD6600", #' "#CD6600", "#009933", "#009933", #' "#009933", "#009933", "#9B30FF", #' "#9B30FF", "#9B30FF") # Fill colors #' alpha_values <- c(0.3, 0.3, 0.3, 0.3, 0.2, 0.3, #' 0.3, 0.3, 0.3, 0.3, 0.3) # Transparency values #' extend_values <- c(25, 24, 24, 25, 25, 25, #' 24, 24, 25, 24, 24) # Values for the 'extend' parameter #' #' p2 <- highlight_by_node( #' p2_plot, #' nodes, #' fill_colors, #' alpha_values, #' extend_values #' ) highlight_by_node <- function(ggtree_object, nodes, fill_colors, alpha_values, extend_values) { # Ensure that the lengths of `nodes`, `fill_colors`, `alpha_values`, and `extend_values` are consistent if (!(length(nodes) == length(fill_colors) && length(nodes) == length(alpha_values) && length(nodes) == length(extend_values))) { stop("Length of nodes, fill_colors, alpha_values, and extend_values must be the same.") } if (!requireNamespace("systemfonts", quietly = TRUE)) { stop("ggplot2 is required to use the function. Please install it.", call. = FALSE) } # For each node, add the corresponding geom_hilight layer layers <- lapply(seq_along(nodes), function(i) { node <- nodes[i] fill_color <- fill_colors[i] alpha_val <- alpha_values[i] extend_val <- extend_values[i] # Create a geom_hilight layer ggtree::geom_hilight(node = node, fill = fill_color, alpha = alpha_val, extend = extend_val) }) # Add all layers to the `ggtree` object for (layer in layers) { ggtree_object <- ggtree_object + layer } return(ggtree_object) } ================================================ FILE: R/HighlightGenes.R ================================================ #' Add Highlights for Genes on a Phylogenetic Tree #' #' This function adds highlights for specified genes on a phylogenetic tree object. #' #' @importFrom ggtree geom_point2 geom_hilight aes #' @importFrom dplyr filter select pull #' @importFrom rlang .data #' @param ggtree_obj A ggtree object representing the phylogenetic tree. #' @param genes_to_highlight A data frame containing gene names and corresponding colors to highlight. #' @param hilight_extend Numeric value indicating the extension length for highlights. #' @return A `ggtree` object with added highlights for specified genes. #' @export #' #' @examples #' plot_file <- system.file("extdata", "tree_plot.rds", package = "TransProR") #' p2_plot <- readRDS(plot_file) #' #' selected_genes_deseq2_file <- system.file("extdata", #' "selected_genes_deseq2.rds", #' package = "TransProR") #' selected_genes_deseq2 <- readRDS(selected_genes_deseq2_file) #' #' Diff_deseq2_file <- system.file("extdata", "Diff_deseq2.rds", package = "TransProR") #' Diff_deseq2 <- readRDS(Diff_deseq2_file) #' #' result_deseq2 <- gene_color(selected_genes_deseq2, Diff_deseq2, "#0000EE", "#fc4746") #' #' add_gene_highlights_p3 <- highlight_genes(p2_plot, result_deseq2, hilight_extend = 26) highlight_genes <- function(ggtree_obj, genes_to_highlight, hilight_extend = 18) { # Ensure that the first argument is a `ggtree` object if (!inherits(ggtree_obj, "ggtree")) { stop("The first argument must be a ggtree object.") } # Ensure that the second argument is a data frame if (!("data.frame" %in% class(genes_to_highlight))) { stop("The second argument must be a data frame.") } if (!requireNamespace("systemfonts", quietly = TRUE)) { stop("ggplot2 is required to use the function. Please install it.", call. = FALSE) } # Extract the data from the tree object and ensure it is a data frame tree_data <- as.data.frame(ggtree_obj$data) # Map gene names and colors to nodes in the tree and create geom_hilight and geom_point2 layers for each node highlight_commands <- lapply(1:nrow(genes_to_highlight), function(i) { gene <- genes_to_highlight$Symble[i] color <- genes_to_highlight$color[i] node <- dplyr::filter(tree_data, .data$label == gene) %>% dplyr::select(node) %>% dplyr::pull() if (!is.na(node)) { list( ggtree::geom_hilight(node = node, fill = color, alpha = 0.3, extend = hilight_extend), ggtree::geom_point2(ggtree::aes(subset = (.data$label == gene)), color = color, size = 2, alpha = 0.6) ) } else { warning(paste("Gene", gene, "not found in the ggtree object.")) NULL } }) # Remove NULL elements from `highlight_commands` since they may exist highlight_commands <- Filter(Negate(is.null), highlight_commands) # Apply the commands to the `ggtree object` ggtree_obj <- ggtree_obj + do.call(c, highlight_commands) return(ggtree_obj) } ================================================ FILE: R/LimmaAnalyze.R ================================================ #' Differential Gene Expression Analysis using limma and voom #' #' This function performs differential gene expression analysis using the 'limma' package with voom normalization. #' It reads tumor and normal expression data, merges them, filters low-expressed genes, #' normalizes the data, performs limma analysis, and outputs the results along with information #' on gene expression changes. #' #' @importFrom limma lmFit contrasts.fit eBayes topTable #' @importFrom edgeR DGEList filterByExpr calcNormFactors #' @importFrom dplyr mutate #' @importFrom stats na.omit #' @param tumor_file Path to the tumor data file (RDS format). #' @param normal_file Path to the normal data file (RDS format). #' @param output_file Path to save the output DEG data (RDS format). #' @param logFC_threshold Threshold for log fold change for marking up/down-regulated genes. #' @param p_value_threshold Threshold for p-value for filtering significant genes. #' @return A data frame of differential expression results. #' @references #' limma:Linear Models for Microarray and RNA-Seq Data User’s Guide. #' For more information, visit the page: #' https://www.bioconductor.org/packages/release/bioc/vignettes/limma/inst/doc/usersguide.pdf #' @export #' #' @examples #' # Define file paths for tumor and normal data from the data folder #' tumor_file <- system.file("extdata", #' "removebatch_SKCM_Skin_TCGA_exp_tumor_test.rds", #' package = "TransProR") #' normal_file <- system.file("extdata", #' "removebatch_SKCM_Skin_Normal_TCGA_GTEX_count_test.rds", #' package = "TransProR") #' output_file <- file.path(tempdir(), "DEG_limma_voom.rds") #' #' DEG_limma_voom <- limma_analyze( #' tumor_file = tumor_file, #' normal_file = normal_file, #' output_file = output_file, #' logFC_threshold = 2.5, #' p_value_threshold = 0.01 #' ) #' #' # View the top 5 rows of the result #' head(DEG_limma_voom, 5) limma_analyze <- function(tumor_file, normal_file, output_file, logFC_threshold = 2.5, p_value_threshold = 0.01) { tumor <- readRDS(tumor_file) normal <- readRDS(normal_file) # Merge the datasets, ensuring both have genes as row names all_count_exp <- merge(tumor, normal, by = "row.names") all_count_exp <- tibble::column_to_rownames(all_count_exp, var = "Row.names") # Define groups for tumor and normal samples group <- c(rep('tumor', ncol(tumor)), rep('normal', ncol(normal))) group <- factor(group, levels = c("normal", "tumor")) group_table <- table(group) message("Group Table:") message(paste(names(group_table), group_table, sep = ": ", collapse = "\n")) # Add a space after the output for separation message(" ") # Create matrix design <- model.matrix(~0 + factor(group)) colnames(design) <- levels(factor(group)) rownames(design) <- colnames(all_count_exp) # Create DGEList object for gene expression data and group information dge <- edgeR::DGEList(counts = all_count_exp, group = group) # Filter lowly expressed genes keep <- edgeR::filterByExpr(dge) dge <- dge[keep, , keep.lib.sizes = FALSE] # The first step (TMM) scales the raw counts to adjust for library size differences, while the second step (quantile normalization in voom) ensures that the overall distribution of gene expression values is consistent across samples. # Normalize the data using the TMM method dge <- edgeR::calcNormFactors(dge) # Use voom method for normalization:Quantile Normalization v <- limma::voom(dge, design, plot = FALSE, normalize = "quantile") # Fit the linear model fit <- limma::lmFit(v, design) # Specify contrast con <- paste(rev(levels(group)), collapse = "-") # Create contrast matrix cont.matrix <- limma::makeContrasts(contrasts = c(con), levels = design) fit2 <- limma::contrasts.fit(fit, cont.matrix) fit2 <- limma::eBayes(fit2) # Get differential expression results tempOutput <- limma::topTable(fit2, coef = con, n = Inf) DEG_limma_voom <- stats::na.omit(tempOutput) # Add 'change' column to mark up/down-regulated genes k1 <- (DEG_limma_voom$P.Value < p_value_threshold) & (DEG_limma_voom$logFC < -logFC_threshold) k2 <- (DEG_limma_voom$P.Value < p_value_threshold) & (DEG_limma_voom$logFC > logFC_threshold) DEG_limma_voom <- dplyr::mutate(DEG_limma_voom, change = ifelse(k1, "down", ifelse(k2, "up", "stable"))) change_table <- table(DEG_limma_voom$change) message("Change Table:") message(paste(names(change_table), change_table, sep = ": ", collapse = "\n")) # Add a space after the output for separation message(" ") # Save results to the specified output file #save(DEG_limma_voom, file = output_file) saveRDS(DEG_limma_voom, file = output_file) return(DEG_limma_voom) } ================================================ FILE: R/LogTransform.R ================================================ #' Log transformation decision and application on data #' #' This function evaluates the need for a log transformation based on a set of criteria #' and applies a log2 transformation if necessary. #' #' @author Dongyue Yu #' @param data A numeric matrix or data frame. #' @return The original data or the data transformed with log2. #' @importFrom stats quantile #' @export #' @examples #' file_path <- system.file("extdata", #' "all_count_exp_test.csv", #' package = "TransProR") #' your_data <- read.csv(file_path, #' row.names = 1) # Assuming first column is row names (e.g., gene names) #' #' TransformedData <- log_transform(data = your_data) #' log_transform <- function(data) { # Calculate quantiles qx <- as.numeric(quantile(data, c(0., 0.25, 0.5, 0.75, 0.99, 1.0), na.rm=TRUE)) # Define conditions for log transformation LogC <- (qx[5] > 100) || (qx[6]-qx[1] > 50 && qx[2] > 0) || (qx[2] > 0 && qx[2] < 1 && qx[4] > 1 && qx[4] < 2) # Apply log transformation based on conditions if (LogC) { # Apply +1 to all values before log2 transformation result <- log2(data + 1) message("log2 transform finished") } else { result <- data message("log2 transform not needed") } return(result) } ================================================ FILE: R/MergeDensityFoldchange.R ================================================ #' Create high-density region plot with optional points, density rugs, and contours #' #' This function creates a high-density region plot using hdr methods to #' add density rug and filled contours. It also adds a regression line #' and Pearson correlation label. Points can be added to the plot optionally. #' #' @param data Data frame containing variables for plotting. #' @param x_var Name of the x-axis variable as a string. #' @param y_var Name of the y-axis variable as a string. #' @param group_var Name of the grouping variable for color mapping as a string. #' @param palette Color palette for the plot as a character vector. #' @param show_points Logical, if TRUE adds points to the plot. #' @param point_size Size of the points, relevant if show_points is TRUE. #' @param point_alpha Transparency level of the points, relevant if show_points is TRUE. #' @param x_lim Numeric vector of length 2, giving the x-axis limits. #' @param y_lim Numeric vector of length 2, giving the y-axis limits. #' @param cor_method Method to calculate correlation ("pearson" or "spearman"). #' @param line_size Size of the smoothing line. #' @param cor_label_pos Vector of length 2 indicating the position of the correlation label (x and y). #' @return A ggplot object representing the high-density region plot. #' @importFrom ggplot2 ggplot aes_string geom_point geom_smooth scale_fill_manual scale_color_manual scale_x_continuous scale_y_continuous theme element_rect margin #' @importFrom hrbrthemes theme_ipsum #' @importFrom grid unit #' @importFrom ggdensity geom_hdr geom_hdr_rug #' @importFrom ggpubr stat_cor #' @examples #' combined_df_file <- system.file("extdata", "combined_df.rds", package = "TransProR") #' combined_df <- readRDS(combined_df_file) #' pal1 = c("#3949ab","#1e88e5","#039be5","#00897b","#43a047","#7cb342") #' #' all_density_foldchange_name1 <- merge_density_foldchange( #' data = combined_df, #' x_var = "log2FoldChange_1", #' y_var = "log2FoldChange_2", #' group_var = "name", #' palette = pal1, #' show_points = FALSE, #' point_size = 2.5, #' point_alpha = 0.1, #' x_lim = c(0, 20), #' y_lim = c(0, 20), #' cor_method = "pearson", #' line_size = 1.6, #' cor_label_pos = c("left", "top") #' ) #' #' @export merge_density_foldchange <- function(data, x_var, y_var, group_var, palette = c("#3949ab","#1e88e5","#039be5","#00897b","#43a047","#7cb342"), show_points = FALSE, point_size = 2.5, point_alpha = 0.2, x_lim = c(0, 20), y_lim = c(0, 20), cor_method = "pearson", line_size = 1.6, cor_label_pos = c("left", 0.97)) { # Begin constructing the ggplot plot <- ggplot2::ggplot(data, ggplot2::aes_string(x = x_var, y = y_var, fill = group_var)) # Optionally add points if (show_points) { plot <- plot + ggplot2::geom_point(ggplot2::aes_string(color = group_var), shape = 21, size = point_size, alpha = point_alpha) } # Add density rug and contours plot <- plot + ggdensity::geom_hdr_rug() + ggdensity::geom_hdr() # Add regression line and correlation label plot <- plot + ggplot2::geom_smooth(ggplot2::aes_string(x = x_var, y = y_var, color = group_var), method = 'lm', level = 0.95, size = line_size) + ggpubr::stat_cor(ggplot2::aes_string(color = group_var), method = cor_method, label.x.npc = cor_label_pos[1], label.y.npc = cor_label_pos[2]) # Customize scales and theme plot <- plot + ggplot2::scale_fill_manual(values = palette) + ggplot2::scale_color_manual(values = palette) + ggplot2::scale_x_continuous(limits = x_lim, expand = c(0, 0)) + ggplot2::scale_y_continuous(limits = y_lim, expand = c(0, 0)) + hrbrthemes::theme_ipsum() + ggplot2::theme(plot.margin = ggplot2::margin(10, 10, 10, 10), plot.background = ggplot2::element_rect(fill = "white", color = "white"), panel.spacing = grid::unit(2, "mm")) # Return the ggplot object return(plot) } ================================================ FILE: R/MergeGtexTcga.R ================================================ #' Merge gene expression data from GTEx and TCGA datasets #' #' This function merges gene expression data obtained from the GTEx (Genotype-Tissue Expression) and TCGA (The Cancer Genome Atlas) datasets. #' It is assumed that both datasets are in '.rds' format and have genes as row names. The merged dataset is saved as an RDS file at the specified output path. #' #' @param gtex_data_path A string that specifies the file path to the GTEx data saved in RDS format. #' @param tcga_exp_path A string that specifies the file path to the TCGA expression data saved in RDS format. #' This should be a data.frame with rows as genes and columns as samples. #' @param output_path A string that specifies the path where the merged dataset should be saved. #' The file is saved in '.rds' format. The default path is "./merged_gtex_tcga_data.rds". #' #' @details It is assumed that both datasets are in '.rds' format and have genes as row names. #' #' @return A data frame where rows represent genes and columns represent samples. #' The data frame contains expression values from both GTEx and TCGA datasets. #' It saves the merged dataset to the path specified by 'output_path'. #' #' @examples #' tumor_file <- system.file("extdata", #' "removebatch_SKCM_Skin_TCGA_exp_tumor_test.rds", #' package = "TransProR") #' Normal_file <- system.file("extdata", #' "removebatch_SKCM_Skin_Normal_TCGA_GTEX_count_test.rds", #' package = "TransProR") #' ouput_file <- file.path(tempdir(), "all_data.rds") #' #' all_data <- merge_gtex_tcga(gtex_data_path = tumor_file, #' tcga_exp_path = Normal_file, #' output_path = ouput_file) #' #' @note CRITICAL: The 'output_path' parameter must end with '.rds' to be properly recognized by the function. It is also highly recommended #' that the path includes specific identifiers related to the target samples. Please structure the 'output_path' following this pattern: './your_directory/merged.your_sample_type.gtex.tcga.data.rds'. #' #' @importFrom tibble column_to_rownames #' @export merge_gtex_tcga <- function(gtex_data_path, tcga_exp_path, output_path = "./merged_gtex_tcga_data.rds") { # Load the GTEx data gtex_data <- readRDS(gtex_data_path) message("Number of GTEx samples:", ncol(gtex_data), "\n") # Load the TCGA data tcga.exp <- readRDS(tcga_exp_path) message("Number of TCGA samples:", ncol(tcga.exp), "\n") # Merge the datasets, ensuring both have genes as row names all_data <- merge(gtex_data, tcga.exp, by = "row.names") all_data <- tibble::column_to_rownames(all_data, var = "Row.names") # Set the row names message("Number of samples after merging:", ncol(all_data), "\n") # Save the merged dataset saveRDS(all_data, file = output_path) return(all_data) } ================================================ FILE: R/MergeIDPosition.R ================================================ #' Merge Data Frames by Common Row Names with Additional Columns #' #' This function merges a list of data frames based on common row names. It adds an 'id' column to track the row order and a 'point_position' column calculated based on the maximum 'Count' value across all data frames. It filters data frames to include only common rows, sorts rows by the length of the 'Description' in descending order, and then merges them by rows. #' #' @param df_list A list of data frames, each with a 'Description' and 'Count' column and set row names. #' @return A single data frame merged from the list, with additional 'id' and 'point_position' columns. #' @importFrom dplyr arrange #' @examples #' df1 <- data.frame(Description = c("DataA", "DataB"), Count = c(10, 20), row.names = c("R1", "R2")) #' df2 <- data.frame(Description = c("DataC", "DataD"), Count = c(30, 40), row.names = c("R1", "R3")) #' df_list <- list(df1, df2) #' combined_df_test <- merge_id_position(df_list) #' #' @export merge_id_position <- function(df_list) { # Find common row names across all data frames common_row_names <- Reduce(intersect, lapply(df_list, row.names)) # Get the maximum value of the 'Count' column across all data frames max_count <- max(sapply(df_list, function(df) max(as.numeric(df$Count), na.rm = TRUE))) # Calculate the smallest multiple of 10 greater than the maximum count ceiling_max_count <- ceiling(max_count / 10) * 10 # Initialize a list to store processed data frames processed_dfs <- list() number_of_dfs <- length(df_list) # Process each data frame for (i in seq_along(df_list)) { # Filter for common rows filtered_df <- df_list[[i]][common_row_names, , drop = FALSE] # Sort 'Description' column by character length in descending order filtered_df <- filtered_df %>% dplyr::arrange(desc(nchar(.data$Description))) # Add 'id' column filtered_df$id <- seq_len(nrow(filtered_df)) # Calculate 'point_position' value point_position_value <- ceiling_max_count * i / number_of_dfs # Add 'point_position' column filtered_df$point_position <- point_position_value # Append processed data frame to the list processed_dfs[[i]] <- filtered_df } # Check if any data frames are empty after filtering if (any(sapply(processed_dfs, nrow) == 0)) { stop("One or more dataframes have no rows after filtering for common row names.") } # Merge data frames by rows combined_df <- do.call(rbind, processed_dfs) # Remove original row names and set new row names as NULL rownames(combined_df) <- NULL return(combined_df) } ================================================ FILE: R/MergeMethodColor.R ================================================ #' Merge Data Frames with Specific Method and Color Columns #' #' This function takes a list of data frames, a method name, and a list of colors. #' It adds a 'method' column and a 'test_color' column to each data frame, then merges all data frames by rows. #' It ensures that the color list length matches the list of data frames. #' #' @param df_list A list of data frames, each containing at least 'Description' and 'Count' columns. #' @param method_name A string representing the method name to be added to each data frame. #' @param color_list A list of colors corresponding to each data frame for the 'test_color' column. #' @return A single data frame merged from the list, with each originally provided data frame now having a 'method' and a 'test_color' column. #' @importFrom dplyr bind_rows #' @examples #' df1 <- data.frame(Description = c("A", "B"), Count = c(10, 20)) #' df2 <- data.frame(Description = c("C", "D"), Count = c(30, 40)) #' df_list <- list(df1, df2) #' method_name <- "Method1" #' color_list <- c("Red", "Blue") #' combined_df_test <- merge_method_color(df_list, method_name, color_list) #' #' @export merge_method_color <- function(df_list, method_name, color_list) { # Validate the length of color list matches the length of data frame list if (length(color_list) != length(df_list)) { stop("The length of the color list must match the length of the data frame list") } # Initialize a list to store processed data frames processed_dfs <- list() # Iterate over all data frames for (i in seq_along(df_list)) { # Extract 'Description' and 'Count' columns temp_df <- df_list[[i]][, c("Description", "Count"), drop = FALSE] # Add 'method' column temp_df$method <- method_name # Add 'test_color' column using corresponding color temp_df$test_color <- color_list[i] # Append the processed data frame to the list processed_dfs[[i]] <- temp_df } # Combine all data frames by rows using bind_rows from dplyr combined_df <- dplyr::bind_rows(processed_dfs) return(combined_df) } ================================================ FILE: R/NewGgraph.R ================================================ #' Generate a graphical representation of pathway gene maps #' #' This function merges multiple gene-pathway related dataframes, processes them #' for graph creation, and visualizes the relationships in a dendrogram layout using #' the provided node and edge gathering functions from the 'ggraph' package. #' #' @param BP_dataframe Dataframe for Biological Process. #' @param BP_ids IDs for Biological Process. #' @param KEGG_dataframe Dataframe for KEGG pathways. #' @param KEGG_ids IDs for KEGG pathways. #' @param MF_dataframe Dataframe for Molecular Function. #' @param MF_ids IDs for Molecular Function. #' @param REACTOME_dataframe Dataframe for REACTOME pathways. #' @param REACTOME_ids IDs for REACTOME pathways. #' @param CC_dataframe Dataframe for Cellular Component. #' @param CC_ids IDs for Cellular Component. #' @param DO_dataframe Dataframe for Disease Ontology. #' @param DO_ids IDs for Disease Ontology. #' @importFrom tidygraph tbl_graph #' @importFrom ggraph ggraph geom_edge_diagonal geom_node_point geom_node_text scale_edge_colour_brewer node_angle #' @importFrom ggplot2 theme element_rect scale_size scale_color_brewer coord_cartesian #' @return A 'ggraph' object representing the pathway gene map visualization. #' @export #' new_ggraph <- function(BP_dataframe, BP_ids, KEGG_dataframe, KEGG_ids, MF_dataframe, MF_ids, REACTOME_dataframe, REACTOME_ids, CC_dataframe, CC_ids, DO_dataframe, DO_ids) { new_dataframe <- gene_map_pathway(BP_dataframe, BP_ids, KEGG_dataframe, KEGG_ids, MF_dataframe, MF_ids, REACTOME_dataframe, REACTOME_ids, CC_dataframe, CC_ids, DO_dataframe, DO_ids) # Prepare the data for graph creation using 'ggraph' index_ggraph <- c("type", "pathway", "gene") # columns other than the lowest level nodes_ggraph <- gather_graph_node(new_dataframe, index = index_ggraph, root = "combination") edges_ggraph <- gather_graph_edge(new_dataframe, index = index_ggraph, root = "combination") # Create and plot the graph using 'tidygraph' and 'ggraph' graph_ggraph <- tidygraph::tbl_graph(nodes = nodes_ggraph, edges = edges_ggraph) plot <- ggraph::ggraph(graph_ggraph, layout = 'dendrogram', circular = TRUE) + ggraph::geom_edge_diagonal(aes(color = .data$node1.node.branch, filter = .data$node1.node.level != "combination", alpha = .data$node1.node.level), edge_width = 1) + ggraph::geom_node_point(aes(size = .data$node.size, color = .data$node.branch, filter = .data$node.level != "combination"), alpha = 0.45) + ggplot2::scale_size(range = c(15, 90)) + ggplot2::theme(legend.position = "none") + ggraph::scale_edge_colour_brewer(palette= "Dark2") + ggplot2::scale_color_brewer(palette = "Dark2") + ggraph::geom_node_text(aes(x = 1.058 * .data$x, y = 1.058 * .data$y, label = .data$node.short_name, angle = -((-ggraph::node_angle(.data$x, .data$y) + 90) %% 180) + 60, filter = .data$leaf, color = .data$node.branch), size = 4, hjust = 'outward') + ggraph::geom_node_text(aes(label = .data$node.short_name, filter = !.data$leaf & (.data$node.level == "type"), color = .data$node.branch), fontface = "bold", size = 8, family = "sans") + ggraph::geom_node_text(aes(label = .data$node.short_name, filter = !.data$leaf & (.data$node.level == "pathway"), color = .data$node.branch, angle = -((-ggraph::node_angle(.data$x, .data$y) + 90) %% 180) + 36), fontface = "bold", size = 4.5, family = "sans") + ggplot2::theme(panel.background = ggplot2::element_rect(fill = NA)) + ggplot2::coord_cartesian(xlim = c(-1.3, 1.3), ylim = c(-1.3, 1.3)) return(plot) } ================================================ FILE: R/PathwayCount.R ================================================ #' Count Genes Present in Pathways Above a Threshold #' #' This function filters pathways that meet a count threshold and then counts the presence of specified genes in those pathways. #' #' @importFrom dplyr filter #' @importFrom rlang .data #' @param GO A character vector of gene symbols. #' @param count_threshold An integer specifying the count threshold for selecting pathways. #' @param enrich_data A data frame containing pathway enrichment analysis results. #' @return A data frame with columns "Symble" (gene symbol), "Description" (pathway description), and "Exists" (1 if gene is present, 0 otherwise). #' @export #' #' @examples #' # Simulated gene list #' GO <- c("Gene1", "Gene2", "Gene3", "Gene4", "Gene5") #' # Simulated enrichment analysis data #' enrich_data <- data.frame( #' ID = c("GO:0001", "GO:0002", "GO:0003"), #' Description = c("Pathway A", "Pathway B", "Pathway C"), #' Count = c(10, 4, 6), #' geneID = c("Gene1/Gene2/Gene3", "Gene4/Gene5", "Gene2/Gene6/Gene7") #' ) #' #' # Example usage #' count_threshold <- 5 #' result_df <- pathway_count(GO, count_threshold, enrich_data) #' pathway_count <- function(GO, count_threshold, enrich_data) { # Filter pathways meeting the count threshold selected_pathways <- enrich_data %>% dplyr::filter(.data$Count > count_threshold) final_df <- data.frame(Symble = character(), Description = character(), Exists = integer()) # Iterate through each selected pathway for (i in 1:nrow(selected_pathways)) { pathway_info <- selected_pathways[i, ] genes_in_pathway <- unlist(strsplit(as.character(pathway_info$geneID), "/")) # Create a record for each gene in the current pathway for (gene in GO) { final_df <- rbind(final_df, data.frame( Symble = gene, Description = pathway_info$Description, Exists = as.integer(gene %in% genes_in_pathway) )) } } return(final_df) } ================================================ FILE: R/PathwayDescription.R ================================================ #' Describe Genes Present in Selected Pathways #' #' This function identifies genes present in selected pathways based on gene enrichment analysis results. #' #' @importFrom dplyr filter #' @importFrom rlang .data #' @param GO A character vector of gene symbols. #' @param selected_pathways_names A character vector specifying the names of selected pathways. #' @param enrich_data A data frame containing pathway enrichment analysis results. #' @return A data frame with columns "Symble" (gene symbol), "Description" (pathway description), and "Exists" (1 if gene is present, 0 otherwise). #' @export #' #' @examples #' GO <- c("Gene1", "Gene2", "Gene3", "Gene4", "Gene5") #' # Simulated enrichment analysis data #' enrich_data <- data.frame( #' ID = c("Pathway1", "Pathway2", "Pathway3", "Pathway4"), #' Description = c("Apoptosis", "Cell Cycle", "Signal Transduction", "Metabolism"), #' geneID = c("Gene1/Gene3", "Gene2/Gene4", "Gene1/Gene2/Gene3", "Gene5"), #' Count = c(2, 2, 3, 1), #' stringsAsFactors = FALSE #' ) #' #' # Example usage #' result <- pathway_description(GO, #' selected_pathways_names="Apoptosis", #' enrich_data) #' pathway_description <- function(GO, selected_pathways_names, enrich_data) { # Filter selected pathways selected_pathways <- dplyr::filter(enrich_data, .data$Description %in% selected_pathways_names) final_df <- data.frame(Symble = character(), Description = character(), Exists = integer()) # Iterate through each selected pathway for (i in 1:nrow(selected_pathways)) { pathway_info <- selected_pathways[i, ] genes_in_pathway <- unlist(strsplit(as.character(pathway_info$geneID), "/")) # Create a record for each gene in the current pathway for (gene in GO) { final_df <- rbind(final_df, data.frame( Symble = gene, Description = pathway_info$Description, Exists = as.integer(gene %in% genes_in_pathway) )) } } return(final_df) } ================================================ FILE: R/PrepDeseq2.R ================================================ #' Prepare DESeq2 data for plotting #' #' This function reads a DESeq2 DEG data frame from an RDS file, filters it, #' adjusts the log2FoldChange to absolute values, adds a pseudo-count to pvalues, #' and transforms pvalues for plotting. The final data frame is returned and #' optionally saved to a new RDS file. #' #' @param input_path Path to the RDS file containing the DESeq2 DEG data frame. #' @param output_name Name for the processed data frame, also used as the RDS file name. #' @return A data frame with processed DESeq2 DEG data. #' @export #' @examples #' deseq2_file <- system.file("extdata", #' "DEG_deseq2_test.rds", #' package = "TransProR") #' deseq2 <- prep_deseq2(deseq2_file) #' prep_deseq2 <- function(input_path, output_name = NULL) { # Read the DESeq2 DEG data frame from an RDS file DEG_deseq2 <- readRDS(input_path) # Filter DEG data using the deg_filter function from the same package DESeq2 <- deg_filter(DEG_deseq2) DEG_deseq2 <- DEG_deseq2[rownames(DEG_deseq2) %in% DESeq2, ] # Extract the Gene column as a regular column DEG_deseq2$Gene <- rownames(DEG_deseq2) # Select columns of interest DEG_deseq2 <- DEG_deseq2[, c('log2FoldChange', 'pvalue', "change", 'Gene')] # Adjust log2FoldChange values to absolute values DEG_deseq2$log2FoldChange <- abs(DEG_deseq2$log2FoldChange) # Add a small pseudo-count to pvalue to avoid log of zero DEG_deseq2$pvalue <- DEG_deseq2$pvalue + .Machine$double.eps # Transform p-value for plotting DEG_deseq2$pvalue <- -log10(DEG_deseq2$pvalue) # Rename columns names(DEG_deseq2) <- c('logFC', 'Pvalue', "change", 'Gene') # Optionally save the processed data frame as an RDS file if (!is.null(output_name)) { saveRDS(DEG_deseq2, paste0(output_name, ".Rdata")) } # Return the processed data frame return(DEG_deseq2) } ================================================ FILE: R/PrepEdgeR.R ================================================ #' Prepare edgeR DEG data for plotting #' #' This function reads an edgeR DEG data frame from an RDS file, filters it using #' \code{\link{deg_filter}} function, adjusts the logFC to absolute values, adds a pseudo-count to PValue, #' and transforms PValue for plotting. The final data frame is returned and #' optionally saved to a new RDS file. #' #' @param input_path Path to the RDS file containing the edgeR DEG data frame. #' @param output_name Name for the processed data frame, also used as the RDS file name. #' @return A data frame with processed edgeR DEG data. #' @export #' @examples #' edgeR_file <- system.file("extdata", #' "DEG_edgeR_test.rds", #' package = "TransProR") #' edgeR <- prep_edgeR(edgeR_file) #' prep_edgeR <- function(input_path, output_name = NULL) { # Read the edgeR DEG data frame from an RDS file DEG_edgeR <- readRDS(input_path) # Filter DEG data using the deg_filter function from the same package edgeR <- deg_filter(DEG_edgeR) DEG_edgeR <- DEG_edgeR[rownames(DEG_edgeR) %in% edgeR, ] # Select columns of interest and adjust logFC values to absolute values DEG_edgeR <- DEG_edgeR[, c('logFC', "PValue", "change")] DEG_edgeR$logFC <- abs(DEG_edgeR$logFC) # Add a small pseudo-count to PValue to avoid log of zero and transform PValue for plotting DEG_edgeR$PValue <- DEG_edgeR$PValue + .Machine$double.eps DEG_edgeR$PValue <- -log10(DEG_edgeR$PValue) # Extract the Gene column from row names DEG_edgeR$Gene <- rownames(DEG_edgeR) # Rename columns names(DEG_edgeR) <- c('logFC', 'Pvalue', "change", 'Gene') # Optionally save the processed data frame as an RDS file if (!is.null(output_name)) { saveRDS(DEG_edgeR, paste0(output_name, ".Rdata")) } # Return the processed data frame return(DEG_edgeR) } ================================================ FILE: R/PrepLimma.R ================================================ #' Prepare limma-voom DEG data for plotting #' #' This function reads a limma-voom DEG data frame from an RDS file, filters it using #' \code{\link{deg_filter}} function, adjusts the logFC to absolute values, adds a pseudo-count to P.Value, #' and transforms P.Value for plotting. The final data frame is returned and #' optionally saved to a new RDS file. #' #' @param input_path Path to the RDS file containing the limma-voom DEG data frame. #' @param output_name Name for the processed data frame, also used as the RDS file name. #' @return A data frame with processed limma-voom DEG data. #' @export #' @examples #' limma_file <- system.file("extdata", #' "DEG_limma_voom_test.rds", #' package = "TransProR") #' limma <- prep_limma(limma_file) #' prep_limma <- function(input_path, output_name = NULL) { # Read the limma-voom DEG data frame from an RDS file limma <- readRDS(input_path) # Filter DEG data using the deg_filter function from the same package limma_filter <- deg_filter(limma) limma <- limma[rownames(limma) %in% limma_filter, ] # Select columns of interest and adjust logFC values to absolute values limma <- limma[, c('logFC', "P.Value", "change")] limma$logFC <- abs(limma$logFC) # Add a small pseudo-count to P.Value to avoid log of zero and transform P.Value for plotting limma$P.Value <- limma$P.Value + .Machine$double.eps limma$P.Value <- -log10(limma$P.Value) # Extract the Gene column from row names limma$Gene <- rownames(limma) # Rename columns names(limma) <- c('logFC', 'Pvalue', "change", 'Gene') # Optionally save the processed data frame as an RDS file if (!is.null(output_name)) { saveRDS(limma, paste0(output_name, ".Rdata")) } # Return the processed data frame return(limma) } ================================================ FILE: R/PrepWilcoxon.R ================================================ #' Prepare Wilcoxon DEG data for plotting #' #' This function reads a Wilcoxon DEG data frame from an RDS file, filters it using #' \code{\link{deg_filter}} function, adjusts the log2foldChange to absolute values, adds a pseudo-count to pValues, #' and transforms pValues for plotting. The final data frame is returned and #' optionally saved to a new RDS file. #' #' @param input_path Path to the RDS file containing the Wilcoxon DEG data frame. #' @param output_name Optional; name for the processed data frame, also used as the RDS file name. #' If not provided, the data frame will not be saved to file. #' @return A data frame with processed Wilcoxon DEG data. #' @export #' @examples #' wilcoxon_file <- system.file("extdata", #' "Wilcoxon_rank_sum_testoutRst_test.rds", #' package = "TransProR") #' Wilcoxon <- prep_wilcoxon(wilcoxon_file) #' prep_wilcoxon <- function(input_path, output_name = NULL) { # Read the Wilcoxon DEG data frame from an RDS file Wilcoxon <- readRDS(input_path) # Filter DEG data using the deg_filter function from the same package Wilcoxon_filter <- deg_filter(Wilcoxon) Wilcoxon <- Wilcoxon[rownames(Wilcoxon) %in% Wilcoxon_filter, ] # Select columns of interest and adjust log2foldChange values to absolute values Wilcoxon <- Wilcoxon[, c('log2foldChange', "pValues", "change")] Wilcoxon$log2foldChange <- abs(Wilcoxon$log2foldChange) # Add a small pseudo-count to pValues to avoid log of zero and transform pValues for plotting Wilcoxon$pValues <- Wilcoxon$pValues + .Machine$double.eps Wilcoxon$pValues <- -log10(Wilcoxon$pValues) # Extract the Gene column from row names Wilcoxon$Gene <- rownames(Wilcoxon) # Rename columns names(Wilcoxon) <- c('logFC', 'Pvalue', "change", 'Gene') # Optionally save the processed data frame as an RDS file if (!is.null(output_name) && nzchar(output_name)) { saveRDS(Wilcoxon, paste0(output_name, ".Rdata")) } # Return the processed data frame return(Wilcoxon) } ================================================ FILE: R/ProcessHeatdata.R ================================================ #' Process Heatmap Data with Various Selection Options #' #' This function processes heatmap data (`heatdata`) based on a given selection option. #' It allows customization of column names, selection of specific columns per group, #' or averaging columns based on a common prefix. #' #' @param heatdata A data frame containing the heatmap data. #' @param selection An integer specifying the processing method: #' - 1: Use custom names for columns. #' - 2: Select a given number of columns per group based on a prefix. #' - 3: Calculate the average of columns per group based on a prefix. #' @param custom_names A character vector of custom names for columns (used when `selection = 1`). #' The length of this vector must match the number of columns in `heatdata`. #' @param num_names_per_group An integer specifying the number of columns to select per group (used when `selection = 2`). #' @param prefix_length An integer specifying the length of the prefix for grouping columns (used when `selection = 2` or `selection = 3`). #' Default is 4. #' @return A processed data frame based on the specified selection option. #' @export #' #' @examples #' # Example heatmap data frame #' heatdata <- data.frame( #' groupA_1 = c(1, 2, 3), #' groupA_2 = c(4, 5, 6), #' groupB_1 = c(7, 8, 9), #' groupB_2 = c(10, 11, 12) #' ) #' #' # Selection 1: Use custom names for columns #' custom_names <- c("Sample1", "Sample2", "Sample3", "Sample4") #' processed_data1 <- process_heatdata(heatdata, selection = 1, custom_names = custom_names) #' #' # Selection 2: Select a given number of columns per group based on a prefix #' processed_data2 <- process_heatdata(heatdata, selection = 2, num_names_per_group = 1) #' #' # Selection 3: Calculate the average of columns per group based on a prefix #' processed_data3 <- process_heatdata(heatdata, selection = 3, prefix_length = 6) process_heatdata <- function(heatdata, selection = 1, custom_names = NULL, num_names_per_group = NULL, prefix_length = 4) { if (selection == 1) { # Option 1: Use custom names for columns if (length(custom_names) != ncol(heatdata)) { stop("Length of custom_names must match number of columns in heatdata") } names(heatdata) <- custom_names } else if (selection == 2) { # Option 2: Select a given number of columns per group based on a prefix group_names <- unique(substr(names(heatdata), 1, prefix_length)) # Get unique group names based on prefix selected_columns <- integer(0) new_names <- character(0) for (group in group_names) { group_cols <- grep(group, names(heatdata)) # Find columns for each group num_selected <- min(length(group_cols), num_names_per_group) selected_columns <- c(selected_columns, sample(group_cols, num_selected)) # Generate new names for selected columns new_group_names <- paste(group, seq_len(num_selected), sep = "_") new_names <- c(new_names, new_group_names) } heatdata <- heatdata[, selected_columns, drop = FALSE] # Keep only selected columns names(heatdata) <- new_names } else if (selection == 3) { # Option 3: Calculate the average of columns per group based on a prefix group_names <- unique(substr(names(heatdata), 1, prefix_length)) # Create a list to collect mean values for each group mean_list <- list() # Calculate mean values for each group and store them in the list for (group in group_names) { group_cols <- grep(group, names(heatdata), value = TRUE) mean_list[[paste(group, "mean", sep = "_")]] <- rowMeans(heatdata[, group_cols], na.rm = TRUE) } # Convert list to data frame and set row names heatdata <- as.data.frame(do.call(cbind, mean_list)) rownames(heatdata) <- rownames(heatdata) } else { stop("Invalid selection parameter") } return(heatdata) } ================================================ FILE: R/SeekGtexOrgan.R ================================================ #' Load and Process GTEX Phenotype Data to Retrieve Primary Site Counts #' #' This function reads the GTEX phenotype data from a specified path, renames its columns for better readability, #' and then returns a table of primary site counts. #' #' @param path The path to the GTEX phenotype data file. Default is "./download_data/GTEX_phenotype". #' #' @return A table representing the count of samples per primary site. #' @importFrom utils read.table #' @examples #' # Get the file path to the example data in the package #' path <- system.file("extdata", "GTEX_phenotype_test", package = "TransProR") #' # Call the `seek_gtex_organ` function with the path and print the result #' SeekGtexOrgan <- seek_gtex_organ(path = path) #' #' @export seek_gtex_organ <- function(path = "./download_data/GTEX_phenotype") { # Read GTEX phenotype data # gtex.phe <- data.table::fread(path, header = TRUE, sep = '\t', data.table = FALSE) gtex.phe <- utils::read.table(path, header = TRUE, sep = '\t', stringsAsFactors = FALSE, check.names = FALSE) rownames(gtex.phe) <- gtex.phe$Sample # Rename columns colnames(gtex.phe) <- c("Sample", "body_site_detail (SMTSD)", "primary_site", "gender", "patient", "cohort") # Create table of primary sites primary_site_counts <- table(gtex.phe$primary_site) return(primary_site_counts) } ================================================ FILE: R/WilcoxonAnalyze.R ================================================ #' Differential Gene Expression Analysis Using Wilcoxon Rank-Sum Test #' #' This function performs differential gene expression analysis using Wilcoxon rank-sum tests. #' It reads tumor and normal expression data, performs TMM normalization using 'edgeR', and uses Wilcoxon rank-sum tests to identify differentially expressed genes. #' #' @importFrom tibble column_to_rownames #' @importFrom edgeR DGEList filterByExpr calcNormFactors cpm #' @importFrom dplyr mutate #' @importFrom stats wilcox.test p.adjust #' @param tumor_file Path to the tumor data file (RDS format). #' @param normal_file Path to the normal data file (RDS format). #' @param output_file Path to save the output DEG data (RDS format). #' @param logFC_threshold Threshold for log fold change for marking up/down-regulated genes. #' @param fdr_threshold Threshold for FDR for filtering significant genes. #' @return A data frame of differential expression results. #' @references #' Li, Y., Ge, X., Peng, F., Li, W., & Li, J. J. (2022). Exaggerated False Positives by Popular #' Differential Expression Methods When Analyzing Human Population Samples. Genome Biology, 23(1), 79. #' DOI: https://doi.org/10.1186/s13059-022-02648-4. #' @export #' #' @examples #' # Define file paths for tumor and normal data from the data folder #' tumor_file <- system.file("extdata", #' "removebatch_SKCM_Skin_TCGA_exp_tumor_test.rds", #' package = "TransProR") #' normal_file <- system.file("extdata", #' "removebatch_SKCM_Skin_Normal_TCGA_GTEX_count_test.rds", #' package = "TransProR") #' output_file <- file.path(tempdir(), "Wilcoxon_rank_sum_testoutRst.rds") #' #' # Run the Wilcoxon rank sum test #' outRst <- Wilcoxon_analyze( #' tumor_file = tumor_file, #' normal_file = normal_file, #' output_file = output_file, #' logFC_threshold = 2.5, #' fdr_threshold = 0.01 #' ) #' #' # View the top 5 rows of the result #' head(outRst, 5) Wilcoxon_analyze <- function(tumor_file, normal_file, output_file, logFC_threshold = 2.5, fdr_threshold = 0.05) { # Read data tumor <- readRDS(tumor_file) normal <- readRDS(normal_file) # Merge the datasets and set row names all_count_exp <- merge(tumor, normal, by = "row.names") all_count_exp <- tibble::column_to_rownames(all_count_exp, var = "Row.names") # Define groups group <- c(rep('tumor', ncol(tumor)), rep('normal', ncol(normal))) group <- factor(group, levels = c("normal", "tumor")) group_table <- table(group) message("Group Table:") message(paste(names(group_table), group_table, sep = ": ", collapse = "\n")) # Add a space after the output for separation message(" ") # EdgeR TMM normalization y <- edgeR::DGEList(counts = all_count_exp, group = group) keep <- edgeR::filterByExpr(y) y <- y[keep, keep.lib.sizes = FALSE] # Perform TMM normalization and transfer to CPM (Counts Per Million) y <- edgeR::calcNormFactors(y, method = "TMM") count_norm <- edgeR::cpm(y) count_norm <- as.data.frame(count_norm) # Wilcoxon rank-sum test for each gene pvalues <- sapply(1:nrow(count_norm), function(i) { data <- cbind.data.frame(gene = as.numeric(t(count_norm[i, ])), group) stats::wilcox.test(gene ~ group, data)$p.value }) fdr <- stats::p.adjust(pvalues, method = "fdr") # Calculate fold-change for each gene conditionsLevel <- levels(group) dataCon1 <- count_norm[, which(group == conditionsLevel[1])] dataCon2 <- count_norm[, which(group == conditionsLevel[2])] # The addition of a pseudo-count allows for robust statistical analysis of genes with low expression levels, while mitigating computational issues caused by zero expression values. # It prevents the occurrence of negative infinity (-Inf) when the numerator is zero, and positive infinity (Inf) when the denominator is zero. foldChanges <- log2((rowMeans(dataCon2) + 0.005) / (rowMeans(dataCon1) + 0.005)) #foldChanges <- log2(rowMeans(dataCon2) / rowMeans(dataCon1)) # Output results based on FDR threshold outRst <- data.frame(log2foldChange = foldChanges, pValues = pvalues, FDR = fdr) rownames(outRst) <- rownames(count_norm) outRst <- na.omit(outRst) # Mark up/down-regulated genes k1 <- (outRst$FDR < fdr_threshold) & (outRst$log2foldChange < -logFC_threshold) k2 <- (outRst$FDR < fdr_threshold) & (outRst$log2foldChange > logFC_threshold) outRst <- dplyr::mutate(outRst, change = ifelse(k1, "down", ifelse(k2, "up", "stable"))) change_table <- table(outRst$change) message("Change Table:") message(paste(names(change_table), change_table, sep = ": ", collapse = "\n")) # Add a space after the output for separation message(" ") # Save results saveRDS(outRst, file = output_file) return(outRst) } ================================================ FILE: R/data.R ================================================ # The annotation file for the DATA in the data directory can all be commented in this file. Although LazyData: true is marked in the DESCRIPTION, # it ensures that the data is not read initially but is automatically read when it is actually used. This automatic process requires this part of the file to ensure it. #' All DEGs Venn Diagram Data #' #' A dataset containing the differentially expressed genes (DEGs) from four different statistical analysis methods: DESeq2, edgeR, limma, and Wilcoxon test. #' This dataset is used for generating Venn diagrams to compare the overlap of DEGs identified by different methods. #' #' @format A list with the following components: #' \describe{ #' \item{DESeq2}{A vector of gene IDs or gene symbols identified as DEGs by the DESeq2 method.} #' \item{edgeR}{A vector of gene IDs or gene symbols identified as DEGs by the edgeR method.} #' \item{limma}{A vector of gene IDs or gene symbols identified as DEGs by the limma method. } #' \item{Wilcoxon_test}{A vector of gene IDs or gene symbols identified as DEGs by the Wilcoxon test method. } #' } #' #' @source The data was derived from differential expression analyses performed on a gene expression dataset using four commonly used statistical methods (DESeq2, edgeR, limma, and Wilcoxon test). #' #' @usage data(all_degs_venn) #' #' @examples #' data(all_degs_venn) #' # Example of plotting a Venn diagram using the dataset #' #' edge_colors <- c("#1b62bb","#13822e","#332c3a","#9e2d39") #' name_color <- c("#1b64bb","#13828e","#337c3a","#9e9d39") #' fill_colors <- c("#e3f2fa", "#0288d1") #' #' Contrast_degs_venn <- Contrast_Venn(all_degs_venn, edge_colors, name_color, fill_colors) #' #' @keywords datasets "all_degs_venn" #' Phylogenetic Tree Object #' #' A dataset containing a phylogenetic tree object created using the `ggtree` package. #' This tree represents the evolutionary relationships among a set of species or genes. #' #' @format A `ggtree` object. #' #' @source The phylogenetic tree was constructed based on sequence alignment data obtained from [Data Source, e.g., NCBI database, specific study, etc.]. #' #' @usage data(gtree) #' #' @keywords datasets phylogenetics "gtree" ================================================ FILE: R/utils-pipe.R ================================================ #' Pipe operator #' #' See \code{magrittr::\link[magrittr:pipe]{\%>\%}} for details. #' #' @name %>% #' @rdname pipe #' @keywords internal #' @export #' @importFrom magrittr %>% #' @usage lhs \%>\% rhs #' @param lhs A value or the magrittr placeholder. #' @param rhs A function call using the magrittr semantics. #' @return The result of calling `rhs(lhs)`. NULL ================================================ FILE: R/zzz.R ================================================ .onAttach <- function(libname, pkgname) { # Display ASCII art ascii_art_path <- system.file("extdata", "ascii_art.txt", package = "TransProR") if (file.exists(ascii_art_path)) { ascii_art_lines <- readLines(ascii_art_path) ascii_art <- paste(ascii_art_lines, collapse = "\n") packageStartupMessage(ascii_art) } else { packageStartupMessage("Welcome to TransProR!") } } ================================================ FILE: README.md ================================================ # TransProR [![CRAN status](https://www.r-pkg.org/badges/version/TransProR)](https://cran.r-project.org/package=TransProR) TransProR Logo Analysis and visualization of transcriptomic data are currently in progress. Future directions include multi-modal fusion, sparse learning, and the investigation of spatio-temporal effects. ## Installation You can install the development version of TransProR like so: ``` r install.packages("devtools") devtools::install_github("SSSYDYSSS/TransProR", build_vignettes = TRUE) install.packages("remotes") remotes::install_github("SSSYDYSSS/TransProR", build_vignettes = TRUE) ``` ## More examples see TransProR Manual:https://sssydysss.github.io/TransProRBook/ ## System Requirements - R (>= 4.3.0) ## Example This is a basic example which shows you how to solve a common problem: ``` r library(TransProR) ## basic example code ``` ## Citation If you use TransPro in your research, please cite: Dongyue Yu; Chen Li; Shuo Yan; Lujiale Guo; Jingyu Liang; Shengquan Chen*; Wenjun Bu* (2026). Comparative Evaluation of Differential Gene Selection Methods in Transcriptomics: Bias Correction and Visualization with TransPro. Manuscript in preparation. **Correspondence:** Shengquan Chen — School of Mathematical Sciences and LPMC, Nankai University, Tianjin 300071, China. Wenjun Bu — Institute of Entomology, College of Life Sciences, Nankai University, Tianjin 300071, China. ## Code of Conduct Please note that the TransProR project is released with a [Contributor Code of Conduct](https://contributor-covenant.org/version/2/1/CODE_OF_CONDUCT.html). By contributing to this project, you agree to abide by its terms. "\# TransProR" ================================================ FILE: TransProR.Rproj ================================================ Version: 1.0 RestoreWorkspace: Default SaveWorkspace: Default AlwaysSaveHistory: Default EnableCodeIndexing: Yes UseSpacesForTab: Yes NumSpacesForTab: 2 Encoding: UTF-8 RnwWeave: Sweave LaTeX: pdfLaTeX AutoAppendNewline: Yes StripTrailingWhitespace: Yes BuildType: Package PackageUseDevtools: Yes PackageInstallArgs: --no-multiarch --with-keep.source ================================================ FILE: data-raw/MAKEDATA.R ================================================ # Data that the package will use, and is explorable by users: usethis::use_data(x) # This will create a file at data/x.Rda # Data that the package will use, and is not explorable by users, internal data: usethis::use_data(y, internal = TRUE) # This will create a file at R/sysdata.rda. Note, this data does not require documentation, nor does it need to be exported, it is not visible to users. ================================================ FILE: dev/build.R ================================================ # pipe usethis::use_pipe(export = TRUE) ## code to prepare MAKEDATA.R usethis::use_data_raw("MAKEDATA") devtools::load_all() devtools::document() devtools::check() #BiocManager::install("BiocCheck") #BiocCheck::BiocCheck() # Ensure that all dependencies are correctly installed, and generate the pak lock file. pak::pak() pak::pak("jokergoo/ComplexHeatmap")# 单独安装 pak::lockfile_create()# for github action file.rename("pkg.lock", ".github/pkg.lock") # NEWS.md usethis::use_news_md() #生成一个标准模板。 ================================================ FILE: dev/dev.R ================================================ # dependency package usethis::use_package("stats") usethis::use_package("utils") usethis::use_package("DESeq2") usethis::use_package("BiocGenerics") usethis::use_package("ggplot2") usethis::use_package("ggpubr") usethis::use_package("tibble") # license usethis::use_mit_license("Dongyue Yu") # readme usethis::use_readme_md() # adds a Code of Conduct usethis::use_code_of_conduct(contact = "yudongyue@mail.nankai.edu.cn") # vignette usethis::use_vignette("a_example_workflow") # optional devtools::install(build_vignettes = TRUE) # optional ## a website # Run once to configure your package to use pkgdown usethis::use_pkgdown() # optional pkgdown::build_site() # optional ## add git usethis::use_git() usethis::use_github() # CI usethis::use_github_action_check_standard() # CRAN # Spell check devtools::spell_check() # Regular local tests devtools::check() # rhub cross-platform tests rhub::check_for_cran() # Windows platform-only test devtools::check_win_devel() # optional # rhub Windows platform-only test rhub::check_for_cran( platform="windows-x86_64-devel", env_vars=c(R_COMPILE_AND_INSTALL_PACKAGES = "always") ) # optional # Check before release devtools::release() ================================================ FILE: inst/extdata/GTEX_phenotype_test ================================================ Sample body_site_detail (SMTSD) _primary_site _gender _patient _cohort GTEX-1117F-0226-SM-5GZZ7 Adipose - Subcutaneous Adipose Tissue female GTEX-1117F GTEX GTEX-1117F-0426-SM-5EGHI Muscle - Skeletal Muscle female GTEX-1117F GTEX GTEX-1117F-0526-SM-5EGHJ Artery - Tibial Blood Vessel female GTEX-1117F GTEX GTEX-1117F-0626-SM-5N9CS Artery - Coronary Blood Vessel female GTEX-1117F GTEX GTEX-1117F-0726-SM-5GIEN Heart - Atrial Appendage Heart female GTEX-1117F GTEX GTEX-1117F-1326-SM-5EGHH Adipose - Visceral (Omentum) Adipose Tissue female GTEX-1117F GTEX GTEX-1117F-2226-SM-5N9CH Ovary Ovary female GTEX-1117F GTEX GTEX-1117F-2426-SM-5EGGH Uterus Uterus female GTEX-1117F GTEX GTEX-1117F-2526-SM-5GZY6 Vagina Vagina female GTEX-1117F GTEX GTEX-1117F-2826-SM-5GZXL Breast - Mammary Tissue Breast female GTEX-1117F GTEX GTEX-1117F-2926-SM-5GZYI Skin - Not Sun Exposed (Suprapubic) Skin female GTEX-1117F GTEX GTEX-1117F-3026-SM-5GZYU Minor Salivary Gland Salivary Gland female GTEX-1117F GTEX GTEX-1117F-3226-SM-5N9CT Brain - Cortex Brain female GTEX-1117F GTEX GTEX-111CU-0126-SM-5GZWZ Adrenal Gland Adrenal Gland male GTEX-111CU GTEX GTEX-111CU-0226-SM-5GZXC Thyroid Thyroid male GTEX-111CU GTEX GTEX-111CU-0326-SM-5GZXO Lung Lung male GTEX-111CU GTEX GTEX-111CU-0426-SM-5GZY1 Spleen Spleen male GTEX-111CU GTEX GTEX-111CU-0526-SM-5EGHK Pancreas Pancreas male GTEX-111CU GTEX GTEX-111CU-0626-SM-5EGHL Esophagus - Muscularis Esophagus male GTEX-111CU GTEX GTEX-111CU-0726-SM-5GZYD Esophagus - Mucosa Esophagus male GTEX-111CU GTEX GTEX-111CU-0826-SM-5EGIJ Esophagus - Gastroesophageal Junction Esophagus male GTEX-111CU GTEX GTEX-111CU-0926-SM-5EGIK Stomach Stomach male GTEX-111CU GTEX GTEX-111CU-1026-SM-5EGIL Adipose - Visceral (Omentum) Adipose Tissue male GTEX-111CU GTEX GTEX-111CU-1126-SM-5EGIM Skin - Not Sun Exposed (Suprapubic) Skin male GTEX-111CU GTEX GTEX-111CU-1226-SM-5EGIN Colon - Sigmoid Colon male GTEX-111CU GTEX GTEX-111CU-1326-SM-5NQ8L Small Intestine - Terminal Ileum Small Intestine male GTEX-111CU GTEX GTEX-111CU-1426-SM-5GZYP Colon - Transverse Colon male GTEX-111CU GTEX GTEX-111CU-1526-SM-5N9FS Prostate Prostate male GTEX-111CU GTEX GTEX-111CU-1726-SM-5EGHM Testis Testis male GTEX-111CU GTEX GTEX-111CU-1826-SM-5GZYN Adipose - Subcutaneous Adipose Tissue male GTEX-111CU GTEX GTEX-111CU-1926-SM-5GZYZ Skin - Sun Exposed (Lower leg) Skin male GTEX-111CU GTEX GTEX-111CU-2026-SM-5GZZC Muscle - Skeletal Muscle male GTEX-111CU GTEX GTEX-111CU-2226-SM-5N9G5 Nerve - Tibial Nerve male GTEX-111CU GTEX GTEX-111FC-0126-SM-5N9DL Skin - Sun Exposed (Lower leg) Skin male GTEX-111FC GTEX GTEX-111FC-0226-SM-5N9B8 Adipose - Subcutaneous Adipose Tissue male GTEX-111FC GTEX GTEX-111FC-0326-SM-5GZZ1 Muscle - Skeletal Muscle male GTEX-111FC GTEX GTEX-111FC-0426-SM-5N9CV Artery - Tibial Blood Vessel male GTEX-111FC GTEX GTEX-111FC-0526-SM-5GZZ8 Nerve - Tibial Nerve male GTEX-111FC GTEX GTEX-111FC-0626-SM-5N9CU Heart - Atrial Appendage Heart male GTEX-111FC GTEX GTEX-111FC-0826-SM-5GZWO Heart - Left Ventricle Heart male GTEX-111FC GTEX GTEX-111FC-1026-SM-5GZX1 Thyroid Thyroid male GTEX-111FC GTEX GTEX-111FC-1126-SM-5GZWU Lung Lung male GTEX-111FC GTEX GTEX-111FC-1326-SM-5N9D9 Spleen Spleen male GTEX-111FC GTEX GTEX-111FC-1426-SM-5N9C7 Adipose - Subcutaneous Adipose Tissue male GTEX-111FC GTEX ================================================ FILE: inst/extdata/TCGA-SKCM.GDC_phenotype_test.tsv ================================================ submitter_id.samples age_at_initial_pathologic_diagnosis batch_number bcr bcr_followup_barcode bcr_followup_uuid submitter_id breslow_depth_value day_of_dcc_upload day_of_form_completion days_to_initial_pathologic_diagnosis days_to_submitted_specimen_dx distant_metastasis_anatomic_site file_uuid followup_case_report_form_submission_reason history_of_neoadjuvant_treatment informed_consent_verified interferon_90_day_prior_excision_admin_indicator lactate_dehydrogenase_result lost_follow_up malignant_neoplasm_mitotic_count_rate melanoma_clark_level_value melanoma_origin_skin_anatomic_site melanoma_ulceration_indicator month_of_dcc_upload month_of_form_completion new_tumor_dx_prior_submitted_specimen_dx other_dx pathologic_M pathologic_N pathologic_T patient_id person_neoplasm_cancer_status postoperative_rx_tx primary_melanoma_at_diagnosis_count primary_neoplasm_melanoma_dx primary_tumor_multiple_present_ind prior_radiation_therapy prior_systemic_therapy prior_systemic_therapy_type radiation_therapy radiation_therapy_to_primary submitted_tumor_location subsequent_primary_melanoma_during_followup system_version tissue_prospective_collection_indicator tissue_retrospective_collection_indicator tissue_source_site weight withdrawn year_of_dcc_upload year_of_form_completion year_of_initial_pathologic_diagnosis days_to_index dbgap_registration_code disease_code pathology_report_file_name program project_code vial_number age_at_index.demographic days_to_birth.demographic days_to_death.demographic ethnicity.demographic gender.demographic race.demographic vital_status.demographic year_of_birth.demographic year_of_death.demographic age_at_diagnosis.diagnoses classification_of_tumor.diagnoses days_to_diagnosis.diagnoses days_to_last_follow_up.diagnoses icd_10_code.diagnoses last_known_disease_status.diagnoses morphology.diagnoses primary_diagnosis.diagnoses prior_malignancy.diagnoses prior_treatment.diagnoses progression_or_recurrence.diagnoses site_of_resection_or_biopsy.diagnoses synchronous_malignancy.diagnoses tissue_or_organ_of_origin.diagnoses tumor_grade.diagnoses tumor_stage.diagnoses year_of_diagnosis.diagnoses disease_type alcohol_history.exposures bmi.exposures height.exposures weight.exposures primary_site name.project project_id.project releasable.project bcr_id.tissue_source_site code.tissue_source_site name.tissue_source_site project.tissue_source_site days_to_collection.samples days_to_sample_procurement.samples initial_weight.samples is_ffpe.samples oct_embedded.samples preservation_method.samples sample_type.samples sample_type_id.samples state.samples tissue_type.samples TCGA-D9-A4Z2-01A 50 262.74.0 Nationwide Children's Hospital TCGA-D9-A4Z2-F57868 AB5F6B14-DAAE-4D19-B227-EC6E2D5ED0D0 TCGA-D9-A4Z2 25 14 28 0 7 8FC5ACEA-E493-4C8D-A3AC-5A68B1B8FC26 No YES NO 10 IV Non-glabrous skin YES 3 3 NO No M0 N3 T4b A4Z2 WITH TUMOR NO 2 YES YES NO NO NO NO Primary Tumor NO 7th YES NO D9 54 false 2017 2014 2012 0 SKCM TCGA-D9-A4Z2.FEA752ED-7670-4D44-8402-009CF8356C44.pdf TCGA A 50.0 -18462.0 190.0 not hispanic or latino male white Dead 1962.0 18462.0 not reported 0.0 93.0 C44.5 not reported 8721/3 Nodular melanoma no No not reported Skin of trunk No Skin, NOS not reported stage iiic 2012.0 Nevi and Melanomas Not Reported 20.07733491969066 164.0 54.0 Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH D9 Greater Poland Cancer Center Skin Cutaneous Melanoma 66.0 160.0 False false Primary Tumor 01 released Not Reported TCGA-ER-A2NH-06A 49 180.87.0 Nationwide Children's Hospital TCGA-ER-A2NH-F69370 CF52E6AD-959C-446F-B88F-E7E73B83E405 TCGA-ER-A2NH 4 14 7 0 618 7E2595AA-7EF7-4E83-AC3C-44179A594F47 No YES NO 1 IV Non-glabrous skin NO 3 1 No M0 N3 T3a A2NH WITH TUMOR NO YES NO NO NO NO NO Regional Lymph Node 6th YES NO ER false 2017 2015 2009 0 SKCM TCGA-ER-A2NH.875D53B1-DFAE-4DA3-84B0-70B14B280EA1.pdf TCGA A 49.0 -18220.0 not hispanic or latino male white Alive 1960.0 18220.0 not reported 0.0 1264.0 C77.3 not reported 8720/3 Malignant melanoma, NOS no No not reported Lymph nodes of axilla or arm No Skin, NOS not reported stage iiic 2009.0 Nevi and Melanomas Not Reported Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH ER University of Pittsburgh Skin Cutaneous Melanoma 744.0 False true Metastatic 06 released Not Reported TCGA-BF-A5EO-01A 65 291.69.0 Nationwide Children's Hospital TCGA-BF-A5EO-F68880 9993CEA1-92A4-48E7-904E-542F5079A3C6 TCGA-BF-A5EO 8 14 23 0 0 480492D8-82C9-4211-8D4B-FBBAB0A8459B No YES NO III Non-glabrous skin YES 3 12 No M0 N0 T4b A5EO TUMOR FREE NO 1 YES NO NO NO NO NO Primary Tumor 7th YES NO BF 110 false 2017 2014 2012 0 SKCM TCGA-BF-A5EO.FD5F5903-7586-4388-970A-36FBE8AE473D.pdf TCGA A 65.0 -23940.0 not hispanic or latino male white Alive 1947.0 23940.0 not reported 0.0 703.0 C44.5 not reported 8720/3 Malignant melanoma, NOS no No not reported Skin of trunk No Skin, NOS not reported stage iic 2012.0 Nevi and Melanomas Not Reported 33.20854969206617 182.0 110.0 Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH BF Cureline Skin Cutaneous Melanoma 134.0 14.0 False true Primary Tumor 01 released Not Reported TCGA-D9-A6EA-06A 70 316.66.0 Nationwide Children's Hospital TCGA-D9-A6EA-F57860 C0168BC0-E336-4944-86D9-C332EA962EC0 TCGA-D9-A6EA 6 14 28 0 422 A6210DB2-5211-43B3-9FB8-177784EAC4B2 No YES Normal NO IV Non-glabrous skin NO 3 3 No M0 N3 T4a A6EA TUMOR FREE NO 1 YES NO NO NO NO NO NO 7th YES NO D9 58 false 2017 2014 2012 0 000178 SKCM TCGA-D9-A6EA.78D2592F-845C-4A33-AC8B-48C109E4D50B.pdf TCGA TCGA A 70.0 -25582.0 not hispanic or latino male white Alive 1942.0 25582.0 not reported 0.0 766.0 C77.3 not reported 8720/3 Malignant melanoma, NOS no No not reported Lymph nodes of axilla or arm No Skin, NOS not reported stage iiic 2012.0 Nevi and Melanomas Not Reported 21.048047612135285 166.0 58.0 Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH D9 Greater Poland Cancer Center Skin Cutaneous Melanoma 478.0 270.0 False true Metastatic 06 released Not Reported TCGA-D9-A4Z3-01A 73 277.76.0 Nationwide Children's Hospital TCGA-D9-A4Z3-F58483 54923FD3-981A-4649-BEDD-860A06350154 TCGA-D9-A4Z3 75 14 11 0 0 ACF6C126-DFBA-431C-B768-7C5F0CD7E36E No YES NO 10 V Non-glabrous skin YES 3 4 No M0 N1b T4b A4Z3 TUMOR FREE NO 1 YES NO NO NO NO NO Primary Tumor NO 7th YES NO D9 70 false 2017 2014 2012 0 SKCM TCGA-D9-A4Z3.9B96B7FD-D3BA-42C8-A0C6-1C93C48F4BB2.pdf TCGA A 73.0 -26812.0 not hispanic or latino female white Alive 1939.0 26812.0 not reported 0.0 505.0 C44.6 not reported 8721/3 Nodular melanoma no No not reported Skin of upper limb and shoulder No Skin, NOS not reported stage iiic 2012.0 Nevi and Melanomas Not Reported 24.22145328719723 170.0 70.0 Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH D9 Greater Poland Cancer Center Skin Cutaneous Melanoma 16.0 170.0 False false Primary Tumor 01 released Not Reported TCGA-GN-A26A-06A 63 180.87.0 Nationwide Children's Hospital TCGA-GN-A26A 2.3 14 0 618 0663AA03-5F7F-4537-B1A3-E5576F7A327A No YES 11 IV Non-glabrous skin NO 3 NO No M0 N1a T3a A26A 1 YES NO NO NO NO Regional Cutaneous or Subcutaneous Tissue (includes satellite and in-transit metastasis) 6th NO YES GN 66 false 2017 2006 0 SKCM TCGA-GN-A26A.5F794422-0A58-4224-8108-E0E4DE11D4C6.pdf TCGA A 63.0 -23288.0 988.0 not hispanic or latino female white Dead 1943.0 2008.0 23288.0 not reported 0.0 C44.5 not reported 8720/3 Malignant melanoma, NOS no No not reported Skin of trunk No Skin, NOS not reported stage iiia 2006.0 Nevi and Melanomas Not Reported 24.242424242424242 165.0 66.0 Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH GN Roswell Skin Cutaneous Melanoma 1766.0 270.0 False true Metastatic 06 released Not Reported TCGA-D3-A3BZ-06A 63 180.87.0 Nationwide Children's Hospital TCGA-D3-A3BZ-F45520 E3E4F520-07D7-42C1-B74D-A30F7A4708DE TCGA-D3-A3BZ 4.6 14 16 0 488 BF045C42-5822-46B0-B7C4-4441E5472CFB No YES NO 1 V Non-glabrous skin NO 3 7 NO No M0 N0 T4a A3BZ TUMOR FREE NO YES NO NO NO YES NO Regional Lymph Node NO 7th NO YES D3 99 false 2017 2013 2002 0 SKCM TCGA-D3-A3BZ.968FCFF6-6D7A-48F2-BC66-F9F7E61B095D.pdf TCGA A 63.0 -23286.0 hispanic or latino male white Alive 1939.0 23286.0 not reported 0.0 3976.0 C77.0 not reported 8720/3 Malignant melanoma, NOS no No not reported Lymph nodes of head, face and neck No Skin, NOS not reported stage iib 2002.0 Nevi and Melanomas Not Reported 34.2560553633218 170.0 99.0 Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH D3 MD Anderson Skin Cutaneous Melanoma 3332.0 80.0 False true Metastatic 06 released Not Reported TCGA-D3-A51G-06A 277.76.0 Nationwide Children's Hospital TCGA-D3-A51G-F60911 390FFB4F-D2AB-4D2A-B42D-883652921A7F TCGA-D3-A51G 0 14 18 50E32A14-9C29-4994-AC7E-2BA337500C31 No YES NO I Non-glabrous skin 3 6 YES Yes M0 N0 Tis A51G TUMOR FREE YES YES NO NO NO NO NO Regional Cutaneous or Subcutaneous Tissue (includes satellite and in-transit metastasis) NO 7th NO YES D3 112 false 2017 2014 1990 SKCM TCGA-D3-A51G.27A8D7FA-6317-4B5E-9CE6-D65790474BDF.pdf TCGA A not hispanic or latino male white Alive not reported C49.2 not reported 8720/3 Malignant melanoma, NOS yes No not reported Connective, subcutaneous and other soft tissues of lower limb and hip Not Reported Skin, NOS not reported stage 0 1990.0 Nevi and Melanomas Not Reported 31.024930747922436 190.0 112.0 Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH D3 MD Anderson Skin Cutaneous Melanoma 70.0 False true Metastatic 06 released Not Reported TCGA-EE-A29R-06A 48 180.87.0 Nationwide Children's Hospital TCGA-EE-A29R-F59763 3DAB4A16-5952-460C-9B59-DC23C644B2C4 TCGA-EE-A29R 3.5 14 20 0 171 F3442500-209D-45C7-997C-187B53CE576A No YES YES 6 V Non-glabrous skin YES 3 5 NO No M0 N1b T3b A29R YES NO NO NO NO Regional Lymph Node 7th YES NO EE false 2017 2014 2010 0 SKCM TCGA-EE-A29R.8DEEF9EA-3585-4047-A2BD-E7AB4DD1306F.pdf TCGA A 48.0 -17857.0 not hispanic or latino female white Alive 1962.0 17857.0 not reported 0.0 440.0 C49.0 not reported 8720/3 Malignant melanoma, NOS no No not reported Lymph nodes of head, face and neck No Skin, NOS not reported stage iiic 2010.0 Nevi and Melanomas Not Reported Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH EE University of Sydney Skin Cutaneous Melanoma 359.0 520.0 False true Metastatic 06 released Not Reported TCGA-D3-A2JE-06A 75 388.48.0 Nationwide Children's Hospital TCGA-D3-A2JE 14 0 140 B1B3D3F4-4A48-4614-8D98-DBA8B33C14EA No YES Non-glabrous skin 3 NO Yes M0 N3 TX A2JE YES NO NO NO NO Regional Lymph Node 6th NO YES D3 81 false 2017 2009 0 SKCM TCGA-D3-A2JE.B07C0D10-3397-4F61-A119-F1D7CDB9E792.pdf TCGA A 75.0 -27604.0 841.0 not hispanic or latino female white Dead 1934.0 2011.0 27604.0 not reported 0.0 C77.3 not reported 8720/3 Malignant melanoma, NOS yes No not reported Lymph nodes of axilla or arm Not Reported Skin, NOS not reported stage iiic 2009.0 Nevi and Melanomas Not Reported 31.640625 160.0 81.0 Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH D3 MD Anderson Skin Cutaneous Melanoma 890.0 170.0 False true Metastatic 06 released Not Reported TCGA-W3-AA1V-06B 63 416.38.0 Nationwide Children's Hospital TCGA-W3-AA1V 1.3 14 0 946 4769724A-5993-4103-B31E-EDB352D182B4 No YES IV Non-glabrous skin NO 3 NO No M0 N0 T3 AA1V YES NO NO NO NO Regional Lymph Node 4th NO YES W3 91 false 2017 1994 0 SKCM TCGA-W3-AA1V.11DF82C1-C746-4D00-9119-1FEBE3FBC0A2.pdf TCGA B 63.0 -23314.0 1280.0 not hispanic or latino male white Dead 1931.0 1997.0 23314.0 not reported 0.0 C77.3 not reported 8720/3 Malignant melanoma, NOS no No not reported Lymph nodes of axilla or arm No Skin, NOS not reported stage ii 1994.0 Nevi and Melanomas Not Reported 28.086419753086417 180.0 91.0 Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH W3 John Wayne Cancer Center Skin Cutaneous Melanoma 7097.0 60.0 False true Metastatic 06 released Not Reported TCGA-DA-A1IA-06A 32 180.87.0 Nationwide Children's Hospital TCGA-DA-A1IA-F70089 FC51240A-2001-4FE9-97CF-CD55C0B430B7 TCGA-DA-A1IA 1.3 14 27 0 1855 brain 4E62D848-9309-4819-8DF7-8DF15CCD865D No YES NO IV Non-glabrous skin NO 3 1 No M0 N1b T2a A1IA WITH TUMOR NO 1 YES NO NO NO NO NO Distant Metastasis NO 6th NO YES DA false 2017 2015 2005 0 SKCM TCGA-DA-A1IA.A8C5B4DF-C8BD-43FF-9613-04942F68DCAB.pdf TCGA A 32.0 -11744.0 2005.0 not hispanic or latino female white Dead 1973.0 11744.0 not reported 0.0 1887.0 C71.1 not reported 8720/3 Malignant melanoma, NOS no No not reported Frontal lobe No Skin, NOS not reported stage iiib 2005.0 Nevi and Melanomas Not Reported Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH DA Yale Skin Cutaneous Melanoma 2074.0 280.0 False true Metastatic 06 released Not Reported TCGA-EE-A29T-06A 51 180.87.0 Nationwide Children's Hospital TCGA-EE-A29T-F55117 96B388B2-BFA4-4033-BA80-177C7061EC5D TCGA-EE-A29T 14 29 0 10326 43BA748D-707E-4752-BBFD-527E41F9BDBD No YES NO Non-glabrous skin 3 12 YES No M0 NX TX A29T TUMOR FREE NO YES NO NO NO NO NO Regional Lymph Node NO 1st NO YES EE false 2017 2013 1982 0 SKCM TCGA-EE-A29T.4F109FA0-76B1-46AA-B90C-AB1CA81C387B.pdf TCGA A 51.0 -18779.0 not hispanic or latino female white Alive 1931.0 18779.0 not reported 0.0 11252.0 C77.9 not reported 8720/3 Malignant melanoma, NOS no No not reported Lymph node, NOS No Skin, NOS not reported not reported 1982.0 Nevi and Melanomas Not Reported Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH EE University of Sydney Skin Cutaneous Melanoma 10559.0 200.0 False true Metastatic 06 released Not Reported TCGA-EB-A3XB-01A 63 240.79.0 Nationwide Children's Hospital TCGA-EB-A3XB-F41213 6592ABBE-555B-4782-92AD-AFE3D1F8EB3F TCGA-EB-A3XB 14 13 0 0 DE01D624-A389-4BD4-BD6D-CE09E2DD1902 No YES NO IV Non-glabrous skin 3 3 No M0 NX T4 A3XB TUMOR FREE NO YES NO NO NO NO Primary Tumor NO 7th YES NO EB 80 false 2017 2013 2011 0 SKCM TCGA-EB-A3XB.73D45CD8-5E91-4A51-B3E2-BE6B071F1A04.pdf TCGA A 63.0 -23091.0 not hispanic or latino male white Alive 1948.0 23091.0 not reported 0.0 796.0 C44.9 not reported 8720/3 Malignant melanoma, NOS no No not reported Skin, NOS No Skin, NOS not reported stage ii 2011.0 Nevi and Melanomas Not Reported 29.7441998810232 164.0 80.0 Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH EB Asterand Skin Cutaneous Melanoma 225.0 540.0 False true Primary Tumor 01 released Not Reported TCGA-FS-A1ZQ-06A 31 180.87.0 Nationwide Children's Hospital TCGA-FS-A1ZQ 14 0 3799 lung 81048A54-134D-47F8-8C6B-DC9E5F390BF7 No YES Non-glabrous skin 3 No M0 N0 TX A1ZQ 1 YES NO NO NO YES Distant Metastasis 6th NO YES FS false 2017 1997 0 SKCM TCGA-FS-A1ZQ.A1E704CD-0D4D-4CCC-82B2-19289EEE84EB.pdf TCGA A 31.0 -11599.0 4062.0 not hispanic or latino male white Dead 1966.0 2008.0 11599.0 not reported 0.0 C34.9 not reported 8720/3 Malignant melanoma, NOS no No not reported Lung, NOS No Skin, NOS not reported i/ii nos 1997.0 Nevi and Melanomas Not Reported Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH FS Essen Skin Cutaneous Melanoma 4897.0 300.0 False false Metastatic 06 released Not Reported TCGA-EB-A85I-01A 66 358.51.0 Nationwide Children's Hospital TCGA-EB-A85I-F61877 74E78246-6218-4314-B8A7-AF5043FB42EA TCGA-EB-A85I 10 14 9 0 0 1CD3B59D-00C1-4EE5-AD71-A8DCD1D3D6E0 No YES NO Non-glabrous skin YES 3 7 No M0 N0 T4b A85I TUMOR FREE NO 1 YES NO NO NO NO Primary Tumor NO 7th YES NO EB 82 false 2017 2014 2013 0 SKCM TCGA-EB-A85I.D35BCE2A-8132-4CAA-8E22-559B68BDAF07.pdf TCGA A 66.0 -24408.0 not hispanic or latino male white Alive 1947.0 24408.0 not reported 0.0 362.0 C44.7 not reported 8720/3 Malignant melanoma, NOS no No not reported Skin of lower limb and hip No Skin, NOS not reported stage iic 2013.0 Nevi and Melanomas Not Reported 28.37370242214533 170.0 82.0 Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH EB Asterand Skin Cutaneous Melanoma 135.0 370.0 False true Primary Tumor 01 released Not Reported TCGA-D3-A5GO-06A 61 291.69.0 Nationwide Children's Hospital TCGA-D3-A5GO-F60915 9ED5547B-C48F-402B-8211-A8D16CD11034 TCGA-D3-A5GO 4.3 14 18 0 2739 Soft tissue of right upper arm 88AAC1C5-A560-46F0-8A25-A7FE85F4B55B No YES YES V Non-glabrous skin 3 6 YES No M0 N0 T4 A5GO YES NO NO NO NO Distant Metastasis 7th NO YES D3 83 false 2017 2014 2001 0 SKCM TCGA-D3-A5GO.FFFA2FD5-C008-4583-99C9-EE71B0F21F07.pdf TCGA A 61.0 -22287.0 not hispanic or latino male white Alive 1940.0 22287.0 not reported 0.0 4195.0 C44.6 not reported 8720/3 Malignant melanoma, NOS no No not reported Skin of upper limb and shoulder No Skin, NOS not reported stage ii 2001.0 Nevi and Melanomas Not Reported 29.060607121599382 169.0 83.0 Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH D3 MD Anderson Skin Cutaneous Melanoma 4259.0 50.0 False true Metastatic 06 released Not Reported TCGA-FR-A728-01A 54 332.57.0 Nationwide Children's Hospital TCGA-FR-A728-F66624 F878CF96-2289-4593-8E4A-5741242A96AB TCGA-FR-A728 12.00 14 21 0 16 8AA7655C-0D37-407F-96F0-DE8112D92BDA No YES NO 6 IV Non-glabrous skin YES 3 10 NO No M0 N2a T4b A728 TUMOR FREE YES YES NO NO NO NO NO Primary Tumor NO 7th YES NO FR 87 false 2017 2014 2013 0 SKCM TCGA-FR-A728.F3C14D17-8681-4925-BDC5-CFE56F68342E.pdf TCGA A 54.0 -19936.0 not hispanic or latino female white Alive 1959.0 19936.0 not reported 0.0 583.0 C44.6 not reported 8743/3 Superficial spreading melanoma no No not reported Skin of upper limb and shoulder No Skin, NOS not reported stage iiib 2013.0 Nevi and Melanomas Not Reported 31.955922865013772 165.0 87.0 Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH FR University of North Carolina Skin Cutaneous Melanoma 136.0 170.0 False false Primary Tumor 01 released Not Reported TCGA-EB-A85J-01A 66 358.51.0 Nationwide Children's Hospital TCGA-EB-A85J-F61878 ED3B4C1F-767C-45E0-8E9B-C36248D3EDD4 TCGA-EB-A85J 5.5 14 9 0 0 52641746-173A-4430-BC34-D858B64E1915 No YES NO Non-glabrous skin NO 3 7 No M0 N0 T4a A85J TUMOR FREE YES 1 YES NO NO NO NO Primary Tumor NO 7th YES NO EB 128 false 2017 2014 2013 0 SKCM TCGA-EB-A85J.AD298262-1D6D-4023-9DBA-A38A8ED1E3EB.pdf TCGA A 66.0 -24263.0 not hispanic or latino female white Alive 1947.0 24263.0 not reported 0.0 360.0 C44.7 not reported 8720/3 Malignant melanoma, NOS no No not reported Skin of lower limb and hip No Skin, NOS not reported stage iib 2013.0 Nevi and Melanomas Not Reported 46.45086369574684 166.0 128.0 Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH EB Asterand Skin Cutaneous Melanoma 133.0 220.0 False true Primary Tumor 01 released Not Reported TCGA-D3-A2JA-06A 68 180.87.0 Nationwide Children's Hospital TCGA-D3-A2JA-F40740 1504323B-9883-4CF4-B02D-E44197CB64BA TCGA-D3-A2JA 1.2 14 7 0 822 4386D921-85F8-4A4F-8674-08FBE0C798BE No YES NO 0 III Non-glabrous skin NO 3 3 YES No M0 N1a T2a A2JA TUMOR FREE NO YES NO NO NO NO YES Regional Cutaneous or Subcutaneous Tissue (includes satellite and in-transit metastasis) NO 7th NO YES D3 113 false 2017 2013 2003 0 SKCM TCGA-D3-A2JA.75ADE88D-F7C8-4450-8B93-5706A25A13EA.pdf TCGA A 68.0 -25085.0 not hispanic or latino male white Alive 1935.0 25085.0 not reported 0.0 3514.0 C49.6 not reported 8720/3 Malignant melanoma, NOS no No not reported Connective, subcutaneous and other soft tissues of trunk, NOS No Skin, NOS not reported stage iiia 2003.0 Nevi and Melanomas Not Reported 36.89795918367347 175.0 113.0 Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH D3 MD Anderson Skin Cutaneous Melanoma 2945.0 80.0 False true Metastatic 06 released Not Reported TCGA-YG-AA3O-06A 62 393.46.0 Nationwide Children's Hospital TCGA-YG-AA3O-F67869 48BA783C-56D0-4AAB-9F7F-16184D748565 TCGA-YG-AA3O 14 13 0 908 61B97687-4FB4-4631-BED7-D5F5F8E97B0E No YES NO Non-glabrous skin 3 11 No AA3O WITH TUMOR YES YES NO NO NO NO NO Regional Lymph Node YES YES NO YG 92 false 2017 2014 2011 0 SKCM TCGA-YG-AA3O.4C358082-E41F-491D-8F0D-39B2B698995A.pdf TCGA A 62.0 -22999.0 1154.0 hispanic or latino male not reported Dead 1949.0 22999.0 not reported 0.0 1096.0 C77.3 not reported 8720/3 Malignant melanoma, NOS no No not reported Lymph nodes of axilla or arm No Skin, NOS not reported not reported 2011.0 Nevi and Melanomas Not Reported 30.73941661933242 173.0 92.0 Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH YG University of Puerto Rico Skin Cutaneous Melanoma 956.0 170.0 False false Metastatic 06 released Not Reported TCGA-EE-A3AB-06A 30 180.87.0 Nationwide Children's Hospital TCGA-EE-A3AB-F59751 1FD5BD7A-75C7-4FFD-BB97-36E6A641D315 TCGA-EE-A3AB 14 20 0 0 46D5759D-A919-4E67-AC58-A0C09E5E0F58 No YES YES Non-glabrous skin 3 5 No M0 N2a T0 A3AB NO NO NO Regional Lymph Node 5th NO YES EE false 2017 2014 2001 0 SKCM TCGA-EE-A3AB.0782D02E-4CD6-4031-B62B-41E1C408E4BC.pdf TCGA A 30.0 -11054.0 not hispanic or latino male white Alive 1971.0 11054.0 not reported 0.0 3733.0 C77.3 not reported 8720/3 Malignant melanoma, NOS no No not reported Lymph nodes of axilla or arm No Skin, NOS not reported stage iii 2001.0 Nevi and Melanomas Not Reported Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH EE University of Sydney Skin Cutaneous Melanoma 3725.0 160.0 False true Metastatic 06 released Not Reported TCGA-D3-A1QB-06A 75 180.87.0 Nationwide Children's Hospital TCGA-D3-A1QB-F45519 DC07AAD2-679E-4F92-BD3B-282B3DAAB030 TCGA-D3-A1QB 14 16 0 441 FFF48EB4-5011-44D6-A958-C98ACFD2CBB2 No YES NO Non-glabrous skin 3 7 YES No M0 N2c T0 A1QB TUMOR FREE NO NO NO NO NO Regional Lymph Node NO 7th NO YES D3 86 false 2017 2013 2005 0 SKCM TCGA-D3-A1QB.EA89AFF8-7133-4B7F-89E4-9AF1901C300D.pdf TCGA A 75.0 -27566.0 not hispanic or latino female white Alive 1930.0 27566.0 not reported 0.0 2912.0 C77.9 not reported 8720/3 Malignant melanoma, NOS no No not reported Lymph node, NOS No Skin, NOS not reported stage iii 2005.0 Nevi and Melanomas Not Reported 39.79823221805729 147.0 86.0 Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH D3 MD Anderson Skin Cutaneous Melanoma 2135.0 100.0 False true Metastatic 06 released Not Reported TCGA-GN-A4U9-06A 71 332.57.0 Nationwide Children's Hospital TCGA-GN-A4U9-F61269 26A50AA3-CD8D-4044-A0D5-52F338BCFA50 TCGA-GN-A4U9 1.7 14 26 0 60 EE40F343-4E34-4182-940F-320CDB780B4B No YES NO 5 IV Non-glabrous skin YES 3 6 NO No M0 N3 T2b A4U9 WITH TUMOR YES 1 YES NO NO NO NO NO Regional Lymph Node NO 7th NO YES GN 104 false 2017 2014 2012 0 SKCM TCGA-GN-A4U9.13096A76-D4DF-412C-B713-B2BB538B23DA.pdf TCGA A 71.0 -26118.0 673.0 not hispanic or latino male white Dead 1941.0 26118.0 not reported 0.0 384.0 C77.4 not reported 8720/3 Malignant melanoma, NOS no No not reported Lymph nodes of inguinal region or leg No Skin, NOS not reported stage iiic 2012.0 Nevi and Melanomas Not Reported 33.574380165289256 176.0 104.0 Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH GN Roswell Skin Cutaneous Melanoma 167.0 170.0 False false Metastatic 06 released Not Reported TCGA-ER-A3ET-06A 64 198.83.0 Nationwide Children's Hospital TCGA-ER-A3ET-F69372 BCB8141F-EE7F-4047-993A-32F4D2F80315 TCGA-ER-A3ET 3.55 14 7 0 2243 BA70B15C-01ED-448D-9EED-CBAAE4A7C9B3 No YES NO IV Non-glabrous skin 3 1 NO No M0 N1a T3a A3ET WITH TUMOR NO YES NO NO NO YES NO Regional Cutaneous or Subcutaneous Tissue (includes satellite and in-transit metastasis) 6th YES NO ER false 2017 2015 2005 0 SKCM TCGA-ER-A3ET.49CF1653-1EE3-4C4C-B79D-1DEC59490210.pdf TCGA A 64.0 -23650.0 2829.0 not hispanic or latino female white Dead 1941.0 23650.0 not reported 0.0 2443.0 C49.9 not reported 8720/3 Malignant melanoma, NOS no No not reported Connective, subcutaneous and other soft tissues, NOS No Skin, NOS not reported stage iiia 2005.0 Nevi and Melanomas Not Reported Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH ER University of Pittsburgh Skin Cutaneous Melanoma 2362.0 150.0 False true Metastatic 06 released Not Reported TCGA-HR-A5NC-01A 90 291.69.0 Nationwide Children's Hospital TCGA-HR-A5NC-F70729 FD13F733-A6FD-4F02-AB1C-A67967D369F2 TCGA-HR-A5NC 8 14 2 0 0 C9C15001-C075-4639-8E67-5C7BBBE2FE1C No YES YES V Non-glabrous skin 3 3 NO No M0 NX T4 A5NC 1 YES NO NO NO NO Primary Tumor 6th NO YES HR false 2017 2015 SKCM TCGA-HR-A5NC.B8892054-09BB-4E2F-90FC-E84EBA310C7D.pdf TCGA A 90.0 -32872.0 not reported female not reported Alive 32872.0 not reported 0.0 0.0 C44.5 not reported 8720/3 Malignant melanoma, NOS no No not reported Skin of trunk No Skin, NOS not reported not reported Nevi and Melanomas Not Reported 152.0 Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH HR Ontario Institute for Cancer Research (OICR) Skin Cutaneous Melanoma 150.0 False false Primary Tumor 01 released Not Reported TCGA-FR-A729-06A 38 358.51.0 Nationwide Children's Hospital TCGA-FR-A729-F66634 A152F2A2-94BF-461A-9985-B6DFD58F7CAF TCGA-FR-A729 0.25 14 21 0 6186 8AEF3E1F-D069-4289-9823-DC1B39D14BDD No YES NO II NO 3 10 No M0 N0 T1 A729 WITH TUMOR YES YES NO NO NO NO NO Regional Lymph Node NO 4th YES NO FR 83 false 2017 2014 1996 0 SKCM TCGA-FR-A729.E1B37296-5114-47F3-A48E-2046B7939823.pdf TCGA A 38.0 -14043.0 not hispanic or latino female white Alive 1958.0 14043.0 not reported 0.0 6716.0 C77.4 not reported 8720/3 Malignant melanoma, NOS no No not reported Lymph nodes of inguinal region or leg No Skin, NOS not reported stage i 1996.0 Nevi and Melanomas Not Reported 27.414453692693883 174.0 83.0 Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH FR University of North Carolina Skin Cutaneous Melanoma 6307.0 400.0 False false Metastatic 06 released Not Reported TCGA-BF-A1PZ-01A 71 180.87.0 Nationwide Children's Hospital TCGA-BF-A1PZ-F68909 4B1D5ACA-C24D-4E0A-A8A9-A843108AE1CD TCGA-BF-A1PZ 8 14 23 0 0 DB0F34CD-3594-4DE7-9F20-D6BE76122271 No YES NO III Non-glabrous skin NO 3 12 No M0 N0 T4a A1PZ TUMOR FREE NO 1 YES NO NO NO NO NO Primary Tumor 7th YES NO BF 56 false 2017 2014 2010 0 SKCM TCGA-BF-A1PZ.1FAA6F42-BEE4-47B5-9D6A-87D310719766.pdf TCGA A 71.0 -26240.0 not hispanic or latino female white Alive 1939.0 26240.0 not reported 0.0 853.0 C44.9 not reported 8720/3 Malignant melanoma, NOS no No not reported Skin, NOS No Skin, NOS not reported stage iib 2010.0 Nevi and Melanomas Not Reported 21.077195227520793 163.0 56.0 Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH BF Cureline Skin Cutaneous Melanoma 97.0 130.0 False true Primary Tumor 01 released Not Reported TCGA-WE-AAA0-06A 47 393.46.0 Nationwide Children's Hospital TCGA-WE-AAA0-F67339 826AB2CF-0860-4D9E-B61C-9B084E997C2D TCGA-WE-AAA0 0.8 14 4 0 311 27E82066-0F36-481D-A837-1F4ADDEE802F No YES NO 0 Non-glabrous skin NO 3 11 No M0 N0 T1a AAA0 WITH TUMOR NO 1 YES NO NO NO YES NO Regional Lymph Node NO 7th NO YES WE false 2017 2014 2011 0 SKCM TCGA-WE-AAA0.7C5BE93A-F3F3-4DE3-84EC-5BC54C644E18.pdf TCGA A 47.0 -17261.0 not hispanic or latino male white Alive 1964.0 17261.0 not reported 0.0 1229.0 C77.9 not reported 8720/3 Malignant melanoma, NOS no No not reported Lymph node, NOS No Skin, NOS not reported stage ia 2011.0 Nevi and Melanomas Not Reported Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH WE Norfolk and Norwich Hospital Skin Cutaneous Melanoma 819.0 60.0 False false Metastatic 06 released Not Reported TCGA-EB-A430-01A 83 262.74.0 Nationwide Children's Hospital TCGA-EB-A430-F57899 FBB7092B-338C-40FB-B72A-7B1FF6B34BE4 TCGA-EB-A430 18 14 21 0 0 F978C499-243C-42F0-9B93-5405CF1AE2B8 No YES YES IV Non-glabrous skin YES 3 4 No M0 N0 T4b A430 YES NO NO NO NO Primary Tumor 7th YES NO EB 85 false 2017 2014 2012 0 SKCM TCGA-EB-A430.CAF377CF-8A98-4334-B6A7-831024B5A5A6.pdf TCGA A 83.0 -30344.0 not hispanic or latino male white Alive 1929.0 30344.0 not reported 0.0 -2.0 C44.5 not reported 8721/3 Nodular melanoma no No not reported Skin of trunk No Skin, NOS not reported stage iic 2012.0 Nevi and Melanomas Not Reported 30.116213151927436 168.0 85.0 Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH EB Asterand Skin Cutaneous Melanoma 125.0 1800.0 False true Primary Tumor 01 released Not Reported TCGA-EE-A3J5-06A 71 198.83.0 Nationwide Children's Hospital TCGA-EE-A3J5 4.80 14 0 467 80D2316D-82AF-47CA-A4CA-E14BD5055385 No YES 8 V Non-glabrous skin NO 3 NO No M0 N1 T4a A3J5 1 YES NO NO NO NO Regional Cutaneous or Subcutaneous Tissue (includes satellite and in-transit metastasis) 5th NO YES EE false 2017 2000 0 SKCM TCGA-EE-A3J5.86A187C5-2FAC-4DEA-9431-020F323E6E5D.pdf TCGA A 71.0 -26226.0 1124.0 not hispanic or latino male white Dead 1929.0 2003.0 26226.0 not reported 0.0 C44.5 not reported 8720/3 Malignant melanoma, NOS no No not reported Skin of trunk No Skin, NOS not reported stage iii 2000.0 Nevi and Melanomas Not Reported Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH EE University of Sydney Skin Cutaneous Melanoma 4025.0 40.0 False true Metastatic 06 released Not Reported TCGA-WE-A8K4-01A 85 388.48.0 Nationwide Children's Hospital TCGA-WE-A8K4-F67276 DBDCB180-0011-41E1-B16A-4A2AA7417124 TCGA-WE-A8K4 12 14 3 0 0 AAD4D726-4E81-4F9B-8433-F1CA0F0CC8A5 No YES NO 4 Non-glabrous skin 3 11 Yes M0 NX T4a A8K4 TUMOR FREE NO 1 YES NO NO NO NO NO Primary Tumor NO 7th YES NO WE false 2017 2014 2013 0 SKCM TCGA-WE-A8K4.1B421DA3-59DD-4246-8D3B-58F4AE13F36B.pdf TCGA A 85.0 -31308.0 not hispanic or latino male white Alive 1928.0 31308.0 not reported 0.0 614.0 C44.6 not reported 8721/3 Nodular melanoma yes No not reported Skin of upper limb and shoulder Not Reported Skin, NOS not reported stage iib 2013.0 Nevi and Melanomas Not Reported Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH WE Norfolk and Norwich Hospital Skin Cutaneous Melanoma 203.0 220.0 False true Primary Tumor 01 released Not Reported TCGA-D3-A5GR-06A 23 291.69.0 Nationwide Children's Hospital TCGA-D3-A5GR-F55314 FE2E3CF3-E00B-4BB5-AD4A-A471B05F7CC1 TCGA-D3-A5GR .98 14 3 0 5008 9EAEF1C7-C789-4A36-927B-DB444B867387 Yes YES YES NO 1 III Non-glabrous skin 3 1 YES No M0 N1 T1b A5GR WITH TUMOR NO YES NO NO YES Interferon NO NO Regional Lymph Node NO 7th NO YES D3 114 false 2017 2014 1998 0 SKCM TCGA-D3-A5GR.2055FAF3-FB7C-4E13-8A17-FF4B9964F49F.pdf TCGA A 23.0 -8637.0 not hispanic or latino female white Alive 1975.0 8637.0 not reported 0.0 5424.0 C77.4 not reported 8720/3 Malignant melanoma, NOS no Yes not reported Lymph nodes of inguinal region or leg No Skin, NOS not reported stage iii 1998.0 Nevi and Melanomas Not Reported 43.43850022862368 162.0 114.0 Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH D3 MD Anderson Skin Cutaneous Melanoma 5119.0 40.0 False true Metastatic 06 released Not Reported TCGA-EE-A2GS-06A 28 180.87.0 Nationwide Children's Hospital TCGA-EE-A2GS-F59674 B4D6FD51-2575-4523-9F4D-79EDC5B690D9 TCGA-EE-A2GS 1.8 14 20 0 1295 B20AB398-5E86-4811-BA49-EAAD22C127EA No YES NO 6 IV Non-glabrous skin NO 3 5 NO No M0 N0 T2a A2GS WITH TUMOR YES YES NO NO NO NO NO Regional Cutaneous or Subcutaneous Tissue (includes satellite and in-transit metastasis) NO 6th NO YES EE false 2017 2014 2006 0 SKCM TCGA-EE-A2GS.57868CFE-20D2-4893-BF42-8E94E290D42F.pdf TCGA A 28.0 -10421.0 2470.0 not hispanic or latino female white Dead 1978.0 10421.0 not reported 0.0 1691.0 C49.2 not reported 8730/3 Amelanotic melanoma no No not reported Connective, subcutaneous and other soft tissues of lower limb and hip No Skin, NOS not reported stage ib 2006.0 Nevi and Melanomas Not Reported Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH EE University of Sydney Skin Cutaneous Melanoma 1804.0 110.0 False true Metastatic 06 released Not Reported TCGA-EE-A29Q-06A 70 180.87.0 Nationwide Children's Hospital TCGA-EE-A29Q-F55045 EEF32021-01AE-4851-8408-2D2AEDA944D2 TCGA-EE-A29Q 2.3 14 27 0 890 FF6EF291-7764-4725-A355-848442D49F6D No YES NO 8 IV Non-glabrous skin YES 3 12 No M0 N0 T3b A29Q WITH TUMOR NO YES NO NO NO NO NO Regional Cutaneous or Subcutaneous Tissue (includes satellite and in-transit metastasis) NO 6th NO YES EE false 2017 2013 2007 0 SKCM TCGA-EE-A29Q.4ED10518-B475-433F-945A-1A97C8B6041C.pdf TCGA A 70.0 -25847.0 2030.0 not hispanic or latino female white Dead 1937.0 25847.0 not reported 0.0 1136.0 C49.1 not reported 8720/3 Malignant melanoma, NOS no No not reported Connective, subcutaneous and other soft tissues of upper limb and shoulder No Skin, NOS not reported stage iib 2007.0 Nevi and Melanomas Not Reported Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH EE University of Sydney Skin Cutaneous Melanoma 1263.0 60.0 False true Metastatic 06 released Not Reported TCGA-EE-A3J7-06A 43 198.83.0 Nationwide Children's Hospital TCGA-EE-A3J7-F59752 744C4C44-2DE1-4A70-87E1-D6BFCB5CC54B TCGA-EE-A3J7 1.12 14 20 0 1292 E6EB26AF-C93F-4031-9336-BC91F5A64728 No YES YES II Non-glabrous skin YES 3 5 YES No M0 N0 T2 A3J7 1 YES NO NO NO NO Regional Cutaneous or Subcutaneous Tissue (includes satellite and in-transit metastasis) 5th NO YES EE false 2017 2014 1998 0 SKCM TCGA-EE-A3J7.F2479711-8EEC-44A5-877C-7804A631FCBD.pdf TCGA A 43.0 -15896.0 not hispanic or latino male white Alive 1955.0 15896.0 not reported 0.0 1949.0 C49.1 not reported 8720/3 Malignant melanoma, NOS no No not reported Connective, subcutaneous and other soft tissues of upper limb and shoulder No Skin, NOS not reported stage i 1998.0 Nevi and Melanomas Not Reported Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH EE University of Sydney Skin Cutaneous Melanoma 4744.0 100.0 False true Metastatic 06 released Not Reported TCGA-EB-A3XE-01A 77 240.79.0 Nationwide Children's Hospital TCGA-EB-A3XE-F42007 9F87F66F-2863-44D4-BEDC-5EBCFF5195EF TCGA-EB-A3XE 3 14 9 0 0 EE78DF3D-A074-404D-8287-BF218737BC7C No YES YES Non-glabrous skin NO 3 4 No M0 N0 T3a A3XE TUMOR FREE NO 1 YES NO NO NO NO Primary Tumor NO 7th YES NO EB 62 false 2017 2013 2012 0 SKCM TCGA-EB-A3XE.0495197B-B5CD-484A-8531-34ADE693294B.pdf TCGA A 77.0 -28148.0 not hispanic or latino female white Alive 1935.0 28148.0 not reported 0.0 180.0 C44.9 not reported 8720/3 Malignant melanoma, NOS no No not reported Skin, NOS No Skin, NOS not reported stage iia 2012.0 Nevi and Melanomas Not Reported 24.835763499439192 158.0 62.0 Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH EB Asterand Skin Cutaneous Melanoma 113.0 590.0 False true Primary Tumor 01 released Not Reported TCGA-W3-A824-06A 63 358.51.0 Nationwide Children's Hospital TCGA-W3-A824-F64489 FC6C70DC-2DF1-43AF-8043-E8B542A2FA84 TCGA-W3-A824 1.5 14 26 0 1461 6A841BC6-BF69-4121-B5AB-5B87F9CBD9E1 No YES NO Non-glabrous skin 3 9 NO No M0 N0 T2 A824 WITH TUMOR YES YES NO NO NO NO Regional Lymph Node YES 4th NO YES W3 79 false 2017 2014 1995 0 SKCM TCGA-W3-A824.E8E86625-8D7E-419F-A4BB-86499B9E4E88.pdf TCGA A 63.0 -23131.0 not hispanic or latino male white Alive 1932.0 23131.0 not reported 0.0 6940.0 C77.3 not reported 8720/3 Malignant melanoma, NOS no No not reported Lymph nodes of axilla or arm No Skin, NOS not reported stage i 1995.0 Nevi and Melanomas Not Reported 27.335640138408305 170.0 79.0 Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH W3 John Wayne Cancer Center Skin Cutaneous Melanoma 6686.0 80.0 False true Metastatic 06 released Not Reported TCGA-FS-A4FD-06A 39 277.76.0 Nationwide Children's Hospital TCGA-FS-A4FD-F62033 EB67D0C9-E4BA-45E1-BE59-6F48AF9F31C4 TCGA-FS-A4FD 2 14 11 0 2300 085DACD4-0C14-4FB7-90BD-8D152BD2D199 Yes YES YES NO IV 3 7 No M0 N3 T2 A4FD WITH TUMOR NO 1 YES YES NO YES Interferon NO NO Regional Lymph Node NO 6th NO YES FS false 2017 2014 2004 0 SKCM TCGA-FS-A4FD.6412A296-EDCB-4C6F-B2A7-BC3D4643B843.pdf TCGA A 39.0 -14426.0 2454.0 not hispanic or latino male white Dead 1965.0 14426.0 not reported 0.0 2369.0 C77.9 not reported 8720/3 Malignant melanoma, NOS no Yes not reported Lymph node, NOS No Skin, NOS not reported stage iiic 2004.0 Nevi and Melanomas Not Reported Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH FS Essen Skin Cutaneous Melanoma 3065.0 80.0 False false Metastatic 06 released Not Reported TCGA-ER-A19H-06A 40 180.87.0 Nationwide Children's Hospital TCGA-ER-A19H 0.4 14 0 3573 29E1FFF6-033F-4261-9CFC-F5AAD3E1820C No YES II Non-glabrous skin 3 No M0 N0 A19H 1 YES NO NO NO NO Regional Cutaneous or Subcutaneous Tissue (includes satellite and in-transit metastasis) 4th YES NO ER false 2017 1995 0 SKCM TCGA-ER-A19H.8C9DBA9E-E8F5-4080-938D-B58F675461ED.pdf TCGA A 40.0 -14935.0 4634.0 not hispanic or latino male white Dead 1955.0 2007.0 14935.0 not reported 0.0 C49.3 not reported 8720/3 Malignant melanoma, NOS no No not reported Connective, subcutaneous and other soft tissues of thorax No Skin, NOS not reported not reported 1995.0 Nevi and Melanomas Not Reported Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH ER University of Pittsburgh Skin Cutaneous Melanoma 5757.0 620.0 False true Metastatic 06 released Not Reported TCGA-EB-A4OY-01A 65 277.76.0 Nationwide Children's Hospital TCGA-EB-A4OY-F57676 56E5C92C-0D28-4EEE-9145-DDAFF18DCA7A TCGA-EB-A4OY 10 14 19 0 -2 D6A3C15D-F713-43FB-B5B9-344465482132 No YES NO V Non-glabrous skin 3 3 No M0 N1a T4b A4OY TUMOR FREE YES YES NO NO NO NO Primary Tumor NO 7th YES NO EB 87 false 2017 2014 2012 0 SKCM TCGA-EB-A4OY.F5BCA762-3B92-4B86-96D9-A88C7D06967A.pdf TCGA A 65.0 -23773.0 not hispanic or latino female white Alive 1947.0 23773.0 not reported 0.0 977.0 C44.7 not reported 8720/3 Malignant melanoma, NOS no No not reported Skin of lower limb and hip No Skin, NOS not reported stage iiib 2012.0 Nevi and Melanomas Not Reported 29.407787993510006 172.0 87.0 Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH EB Asterand Skin Cutaneous Melanoma 186.0 670.0 False true Primary Tumor 01 released Not Reported TCGA-ER-A3PL-06A 30 240.79.0 Nationwide Children's Hospital TCGA-ER-A3PL-F69342 4940156A-6D72-42F6-A95E-AD17C919F121 TCGA-ER-A3PL 2.2 14 6 0 958 6A29BE6F-4360-406A-B2F9-9C4B2DE80E86 No YES NO V Non-glabrous skin YES 3 1 NO No M1a N0 T3b A3PL WITH TUMOR NO YES NO NO NO NO NO Regional Cutaneous or Subcutaneous Tissue (includes satellite and in-transit metastasis) 6th YES NO ER false 2017 2015 2009 0 SKCM TCGA-ER-A3PL.249C231D-FD24-4E23-87D3-11D844B41EBF.pdf TCGA A 30.0 -11032.0 not hispanic or latino male white Alive 1979.0 11032.0 not reported 0.0 1010.0 C49.1 not reported 8720/3 Malignant melanoma, NOS no No not reported Connective, subcutaneous and other soft tissues of upper limb and shoulder No Skin, NOS not reported stage iv 2009.0 Nevi and Melanomas Not Reported Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH ER University of Pittsburgh Skin Cutaneous Melanoma 1017.0 440.0 False true Metastatic 06 released Not Reported TCGA-ER-A19A-06A 79 180.87.0 Nationwide Children's Hospital TCGA-ER-A19A-F48977 C163BEA8-E3BA-437C-9B9F-791B7DBFC78A TCGA-ER-A19A 14 24 0 41 109A9BB6-4D6A-436C-919E-5F05220E029E No YES NO Non-glabrous skin 3 9 NO No M1 N0 TX A19A TUMOR FREE NO NO NO NO NO NO Regional Cutaneous or Subcutaneous Tissue (includes satellite and in-transit metastasis) 6th YES NO ER false 2017 2013 2006 0 SKCM TCGA-ER-A19A.B48FFC2C-4D9A-4451-B237-3B004D773260.pdf TCGA A 79.0 -29167.0 not hispanic or latino male white Alive 1927.0 29167.0 not reported 0.0 2365.0 C49.6 not reported 8720/3 Malignant melanoma, NOS no No not reported Connective, subcutaneous and other soft tissues of trunk, NOS No Skin, NOS not reported stage iv 2006.0 Nevi and Melanomas Not Reported Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH ER University of Pittsburgh Skin Cutaneous Melanoma 1672.0 110.0 False true Metastatic 06 released Not Reported TCGA-FS-A1ZR-06A 36 180.87.0 Nationwide Children's Hospital TCGA-FS-A1ZR 2 14 0 79 AB1AE23C-0421-46C1-8675-C7FAC33E4738 No YES IV Non-glabrous skin 3 No M0 N0 T2 A1ZR 1 YES NO NO NO NO Regional Cutaneous or Subcutaneous Tissue (includes satellite and in-transit metastasis) 4th NO YES FS false 2017 1995 0 SKCM TCGA-FS-A1ZR.CBE0DB60-637C-4D5D-85EA-C112E308F476.pdf TCGA A 36.0 -13325.0 347.0 not hispanic or latino male white Dead 1959.0 1995.0 13325.0 not reported 0.0 C77.9 not reported 8720/3 Malignant melanoma, NOS no No not reported Lymph node, NOS No Skin, NOS not reported stage ii 1995.0 Nevi and Melanomas Not Reported Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH FS Essen Skin Cutaneous Melanoma 5645.0 100.0 False false Metastatic 06 released Not Reported TCGA-DA-A3F3-06A 52 198.83.0 Nationwide Children's Hospital TCGA-DA-A3F3-F70096 F284EA79-1E79-4396-800D-C2AB6AB6BC03 TCGA-DA-A3F3 14 27 0 106 1D1C4D82-3FFB-4F8D-A403-A53CE1299278 No YES NO Non-glabrous skin 3 1 No M0 N2b T0 A3F3 WITH TUMOR NO NO NO NO NO Regional Lymph Node NO 7th NO YES DA false 2017 2015 2010 0 SKCM TCGA-DA-A3F3.66035FA9-7600-46C5-A5F5-CBD1CC1C1AD4.pdf TCGA A 52.0 -19330.0 319.0 not hispanic or latino male white Dead 1958.0 19330.0 not reported 0.0 151.0 C77.0 not reported 8720/3 Malignant melanoma, NOS no No not reported Lymph nodes of head, face and neck No Skin, NOS not reported stage iiib 2010.0 Nevi and Melanomas Not Reported Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH DA Yale Skin Cutaneous Melanoma 353.0 250.0 False true Metastatic 06 released Not Reported TCGA-FS-A4F4-06A 64 277.76.0 Nationwide Children's Hospital TCGA-FS-A4F4 2.0 14 0 1804 E30CDB48-A1C6-494D-B81E-6CAE7B71D583 No YES IV Non-glabrous skin YES 3 No M0 N0 T3a A4F4 1 YES NO NO NO NO Regional Cutaneous or Subcutaneous Tissue (includes satellite and in-transit metastasis) 5th NO YES FS false 2017 2001 0 SKCM TCGA-FS-A4F4.8F51786F-405B-495A-B662-D0C17B68DC33.pdf TCGA A 64.0 -23663.0 2028.0 not reported male white Dead 1937.0 2006.0 23663.0 not reported 0.0 C49.9 not reported 8720/3 Malignant melanoma, NOS no No not reported Connective, subcutaneous and other soft tissues, NOS No Skin, NOS not reported stage ii 2001.0 Nevi and Melanomas Not Reported Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH FS Essen Skin Cutaneous Melanoma 4103.0 60.0 False false Metastatic 06 released Not Reported TCGA-FR-A2OS-01A 49 206.84.0 Nationwide Children's Hospital TCGA-FR-A2OS-F31116 29630931-6C4E-45CC-892C-EABCD517BB01 TCGA-FR-A2OS 14 24 0 0 84C055E7-16FF-45A2-BA60-D6548B84A70F No YES Elevated NO V Non-glabrous skin YES 3 4 NO No M0 N0 T4b A2OS WITH TUMOR NO 1 YES NO NO NO NO NO Primary Tumor NO 6th NO YES FR 84 false 2017 2012 2008 0 SKCM TCGA-FR-A2OS.518D48F1-6A74-4376-85CB-E1F2C8C46011.pdf TCGA A 49.0 -18122.0 368.0 not reported female white Dead 1959.0 2009.0 18122.0 not reported 0.0 C44.7 not reported 8720/3 Malignant melanoma, NOS no No not reported Skin of lower limb and hip No Skin, NOS not reported stage iic 2008.0 Nevi and Melanomas Not Reported 31.23140987507436 164.0 84.0 Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH FR University of North Carolina Skin Cutaneous Melanoma 1257.0 70.0 False false Primary Tumor 01 released Not Reported TCGA-Z2-AA3S-06A 58 408.40.0 Nationwide Children's Hospital TCGA-Z2-AA3S-F68278 D473B9CF-0187-46F0-93F3-02DEEBB567EE TCGA-Z2-AA3S 0.5 14 14 0 2628 ECEAAEB1-B2C0-4C6E-B99C-59A00836E1EE No YES NO II Non-glabrous skin NO 3 11 NO No M0 N0 T1a AA3S WITH TUMOR NO YES NO NO NO YES NO Regional Lymph Node NO 6th YES NO Z2 78 false 2017 2014 2006 0 SKCM TCGA-Z2-AA3S.48FB1191-7102-4E62-8A56-A3991807AB6D.pdf TCGA A 58.0 -21318.0 not hispanic or latino male white Alive 1948.0 21318.0 not reported 0.0 2950.0 C77.3 not reported 8720/3 Malignant melanoma, NOS no No not reported Lymph nodes of axilla or arm No Skin, NOS not reported stage ia 2006.0 Nevi and Melanomas Not Reported 26.365603028664143 172.0 78.0 Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH Z2 IDI-IRCCS Skin Cutaneous Melanoma 2646.0 270.0 False true Metastatic 06 released Not Reported TCGA-ER-A42H-01A 76 262.74.0 Nationwide Children's Hospital TCGA-ER-A42H 14 0 114 14798F61-224E-4BD0-A01A-588823CD7CAF No YES Non-glabrous skin 3 NO No A42H YES YES NO NO Primary Tumor YES NO ER false 2017 2010 0 SKCM TCGA-ER-A42H.A0ED997A-DE1F-4339-B149-9B0C2A8FF8EB.pdf TCGA A 76.0 -28110.0 426.0 not hispanic or latino male white Dead 1934.0 2011.0 28110.0 not reported 0.0 C43.51 not reported 8720/3 Malignant melanoma, NOS no No not reported Overlapping lesion of rectum, anus and anal canal No Skin, NOS not reported not reported 2010.0 Nevi and Melanomas Not Reported Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH ER University of Pittsburgh Skin Cutaneous Melanoma 736.0 220.0 False true Primary Tumor 01 released Not Reported TCGA-FS-A1YY-06A 55 180.87.0 Nationwide Children's Hospital TCGA-FS-A1YY 2.7 14 0 6618 abdomen B29E5CCD-665D-4CF4-B010-501A66151BF8 No YES IV Non-glabrous skin NO 3 No M0 N0 T3a A1YY 1 YES NO NO NO NO Distant Metastasis 2nd NO YES FS false 2017 1987 0 SKCM TCGA-FS-A1YY.A91D1EF0-6010-4536-8071-39A935247466.pdf TCGA A 55.0 -20396.0 6953.0 not hispanic or latino female white Dead 1932.0 2006.0 20396.0 not reported 0.0 C76.2 not reported 8720/3 Malignant melanoma, NOS no No not reported Abdomen, NOS No Skin, NOS not reported stage iia 1987.0 Nevi and Melanomas Not Reported Skin Skin Cutaneous Melanoma TCGA-SKCM False NCH FS Essen Skin Cutaneous Melanoma 8800.0 60.0 False false Metastatic 06 released Not Reported ================================================ FILE: inst/extdata/TCGA-SKCM.htseq_counts_test.tsv ================================================ Ensembl_ID TCGA-EE-A2GJ-06A TCGA-EE-A2GI-06A TCGA-WE-A8ZM-06A TCGA-DA-A1IA-06A TCGA-D3-A51H-06A TCGA-XV-A9VZ-01A TCGA-FS-A1ZE-06A TCGA-D3-A51F-06A TCGA-D3-A8GL-06A TCGA-BF-A5EP-01A TCGA-FS-A1ZS-06A TCGA-D3-A2J6-06A TCGA-EE-A3AF-06A TCGA-BF-AAP6-01A TCGA-D3-A8GM-06A TCGA-D9-A3Z3-06A TCGA-FS-A1ZR-06A TCGA-EE-A2GC-06A TCGA-WE-A8K5-06A TCGA-ER-A198-06A TCGA-FS-A1ZG-06A TCGA-XV-A9W5-01A TCGA-ER-A42H-01A TCGA-EB-A44P-01A TCGA-D3-A3MU-06A TCGA-FS-A1ZT-06A TCGA-GN-A8LK-06A TCGA-FR-A729-06A TCGA-D3-A51J-06A TCGA-D3-A5GR-06A TCGA-WE-A8ZN-06A TCGA-FS-A4FC-06A TCGA-RP-A6K9-06A TCGA-EB-A82B-01A TCGA-FS-A4FB-06A TCGA-EE-A3J8-06A TCGA-D3-A1Q7-06A TCGA-GN-A267-06A TCGA-D3-A3ML-06A TCGA-D3-A8GC-06A TCGA-BF-AAOX-01A TCGA-D3-A5GS-06A TCGA-EB-A42Z-01A TCGA-Z2-AA3S-06A TCGA-ER-A3EV-06A TCGA-3N-A9WB-06A TCGA-FW-A3TU-06A TCGA-FS-A4FD-06A TCGA-EE-A2GE-06A TCGA-FS-A4F9-06A TCGA-FR-A3R1-01A TCGA-EB-A3XF-01A TCGA-WE-A8K4-01A TCGA-YD-A9TA-06A TCGA-EB-A5SG-06A TCGA-DA-A95V-06A TCGA-FS-A1YX-06A TCGA-YD-A9TB-06A TCGA-EB-A3XE-01A TCGA-D9-A4Z5-01A TCGA-D3-A2JN-06A TCGA-WE-A8ZQ-06A TCGA-EB-A1NK-01A TCGA-ER-A19F-06A TCGA-EB-A3HV-01A TCGA-BF-AAP2-01A TCGA-EB-A6QZ-01A TCGA-D9-A3Z1-06A TCGA-FS-A1ZC-06A TCGA-Z2-AA3V-06A TCGA-D3-A2JH-06A TCGA-DA-A960-01A TCGA-D3-A8GD-06A TCGA-BF-A1PZ-01A TCGA-FS-A1Z4-06A TCGA-BF-A5ES-01A TCGA-GN-A4U7-06A TCGA-EE-A2GD-06A TCGA-ER-A195-06A TCGA-DA-A1I5-06A TCGA-BF-A1PV-01A TCGA-EE-A29Q-06A TCGA-FR-A2OS-01A TCGA-ER-A2NG-06A TCGA-W3-AA1O-06A TCGA-WE-A8K1-06A TCGA-EE-A2GU-06A TCGA-EE-A29L-06A TCGA-D3-A2JL-06A TCGA-EE-A2MM-06A TCGA-FR-A3YN-06A TCGA-LH-A9QB-06A TCGA-EB-A5SE-01A TCGA-WE-A8ZR-06A TCGA-FS-A1ZJ-06A TCGA-XV-AAZW-01A TCGA-D3-A8GE-06A TCGA-EE-A2M8-06A TCGA-EE-A29B-06A TCGA-FR-A7U9-06A TCGA-EB-A3Y7-01A TCGA-D3-A2JF-06A TCGA-EE-A29N-06A TCGA-EE-A2MQ-06A TCGA-FS-A1ZD-06A TCGA-D3-A2JD-06A TCGA-EE-A182-06A TCGA-D3-A2JE-06A TCGA-ER-A2NE-06A TCGA-YG-AA3N-01A TCGA-GN-A9SD-06A TCGA-XV-AAZY-01A TCGA-ER-A19T-01A TCGA-WE-A8ZT-06A TCGA-D9-A4Z6-06A TCGA-EE-A2M5-06A TCGA-FW-A3I3-06A TCGA-EB-A4OY-01A TCGA-EB-A5VV-06A TCGA-EB-A5KH-06A TCGA-EB-A85J-01A TCGA-D3-A1QA-07A TCGA-EE-A29V-06A TCGA-EE-A2GT-06A TCGA-GN-A268-06A TCGA-W3-AA1R-06A TCGA-EB-A6L9-06A TCGA-D3-A1Q3-06A TCGA-D3-A2JA-06A TCGA-D9-A1JW-06A TCGA-EE-A2MC-06A TCGA-FS-A1Z7-06A TCGA-BF-A3DL-01A TCGA-EE-A29A-06A TCGA-D3-A51T-06A TCGA-FR-A728-01A TCGA-D3-A2JG-06A TCGA-W3-AA1W-06A TCGA-FS-A1Z0-06A TCGA-EB-A6QY-01A TCGA-BF-A3DN-01A TCGA-D3-A2JC-06A TCGA-QB-A6FS-06A TCGA-EE-A2A5-06A TCGA-DA-A1I8-06A TCGA-D3-A3C1-06A TCGA-D3-A3CB-06A TCGA-D9-A4Z2-01A TCGA-WE-AA9Y-06A TCGA-BF-A1Q0-01A TCGA-DA-A1HV-06A TCGA-D3-A8GB-06A TCGA-ER-A19Q-06A TCGA-FR-A8YE-06A TCGA-EB-A57M-01A TCGA-BF-AAP4-01A TCGA-W3-AA1Q-06A TCGA-EB-A5FP-01A TCGA-D9-A6EG-06A TCGA-EE-A2MJ-06A TCGA-D3-A8GK-06A TCGA-BF-A3DM-01A TCGA-EE-A2MR-06A TCGA-FS-A1ZQ-06A TCGA-D9-A148-06A TCGA-RP-A693-06A TCGA-EE-A3JE-06A TCGA-W3-AA1V-06B TCGA-EB-A3XC-01A TCGA-FR-A7UA-06A TCGA-FS-A1ZK-06A TCGA-EE-A2MD-06A TCGA-EE-A2GL-06A TCGA-DA-A1I1-06A TCGA-EE-A20H-06A TCGA-WE-AAA4-06A TCGA-W3-A828-06A TCGA-D3-A3C6-06A TCGA-D3-A2JP-06A TCGA-D3-A1Q4-06A TCGA-FS-A1ZN-01A TCGA-RP-A694-06A TCGA-W3-A825-06A TCGA-FS-A4F2-06A TCGA-FS-A1YW-06A TCGA-DA-A3F8-06A TCGA-DA-A95Z-06A TCGA-FS-A1Z3-06A TCGA-ER-A19E-06A TCGA-DA-A1I7-06A TCGA-EE-A3J7-06A TCGA-FS-A1ZW-06A TCGA-GF-A2C7-01A TCGA-YG-AA3P-06A TCGA-D3-A8GO-06A TCGA-EE-A2GK-06A TCGA-FS-A1YY-06A TCGA-DA-A3F3-06A TCGA-ER-A19P-06A TCGA-DA-A1IB-06A TCGA-EE-A2GH-06A TCGA-EE-A20C-06A TCGA-ER-A19B-06A TCGA-WE-AAA0-06A TCGA-YD-A89C-06A TCGA-EE-A29C-06A TCGA-DA-A1I2-06A TCGA-EE-A29E-06A TCGA-BF-A5EO-01A TCGA-FS-A1ZA-06A TCGA-ER-A19M-06A TCGA-EB-A5UM-01A TCGA-EE-A180-06A TCGA-D9-A149-06A TCGA-Z2-A8RT-06A TCGA-EE-A2MT-06A TCGA-HR-A2OH-06A TCGA-EE-A3JI-06A TCGA-BF-A1PU-01A TCGA-EE-A2A1-06A TCGA-BF-AAP1-01A TCGA-ER-A3ES-06A TCGA-QB-AA9O-06A TCGA-ER-A19L-06A TCGA-D3-A1QB-06A TCGA-DA-A1IC-06A TCGA-BF-AAP8-01A TCGA-D3-A3MR-06A TCGA-D3-A2JO-06A TCGA-D3-A51N-06A TCGA-GF-A4EO-06A TCGA-D3-A3MV-06A TCGA-RP-A690-06A TCGA-GN-A26C-01A TCGA-D3-A8GS-06A TCGA-FW-A3R5-06A TCGA-FS-A4F5-06A TCGA-ER-A19T-06A TCGA-EE-A3AD-06A TCGA-FR-A8YD-06A TCGA-DA-A1I0-06A TCGA-EE-A2GB-06A TCGA-EB-A3XD-01A TCGA-FS-A1ZZ-06A TCGA-EE-A3AG-06A TCGA-EB-A24D-01A TCGA-DA-A95W-06A TCGA-D3-A8GJ-06A TCGA-D9-A6E9-06A TCGA-EE-A29M-06A TCGA-FS-A1ZM-06A TCGA-3N-A9WD-06A TCGA-EE-A2ME-06A TCGA-ER-A2NF-06A TCGA-EB-A42Y-01A TCGA-EB-A3XB-01A TCGA-EE-A2GR-06A TCGA-EB-A550-01A TCGA-ER-A19W-06A TCGA-GN-A4U8-06A TCGA-D3-A5GL-06A TCGA-D3-A3BZ-06A TCGA-D3-A1QA-06A TCGA-ER-A197-06A TCGA-D3-A1Q9-06A TCGA-EE-A20I-06A TCGA-D3-A8GQ-06A TCGA-EE-A181-06A TCGA-GN-A4U3-06A TCGA-EE-A29D-06A TCGA-GN-A4U8-11A TCGA-GF-A6C8-06A TCGA-FS-A1ZY-06A TCGA-W3-A824-06A TCGA-3N-A9WC-06A TCGA-DA-A3F5-06A TCGA-ER-A3ET-06A TCGA-D3-A3MO-06A TCGA-EB-A24C-01A TCGA-GN-A8LN-01A TCGA-FW-A5DX-01A TCGA-EB-A5UN-06A TCGA-EE-A29R-06A TCGA-D3-A2J7-06A TCGA-GN-A262-06A TCGA-D3-A1Q5-06A TCGA-WE-AAA3-06A TCGA-D3-A5GO-06A TCGA-EB-A6R0-01A TCGA-RP-A695-06A TCGA-FS-A1ZB-06A TCGA-D3-A8GI-06A TCGA-EE-A2A0-06A TCGA-EB-A5SF-01A TCGA-EE-A184-06A TCGA-EE-A17Y-06A TCGA-ER-A42K-06A TCGA-D3-A1Q6-06A TCGA-GN-A265-06A TCGA-GN-A26D-06A TCGA-ER-A2NF-01A TCGA-ER-A2ND-06A TCGA-EE-A185-06A TCGA-BF-AAP0-06A TCGA-ER-A19J-06A TCGA-EB-A4P0-01A TCGA-D3-A5GN-06A TCGA-FW-A3TV-06A TCGA-BF-A5ER-01A TCGA-GF-A3OT-06A TCGA-EE-A2MK-06A TCGA-EE-A2MH-06A TCGA-EE-A29G-06A TCGA-EE-A20F-06A TCGA-EB-A5VU-01A TCGA-EB-A85I-01A TCGA-DA-A1HW-06A TCGA-ER-A42L-06A TCGA-GN-A266-06A TCGA-DA-A3F2-06A TCGA-D3-A51K-06A TCGA-FR-A44A-06A TCGA-DA-A1I4-06A TCGA-GN-A4U4-06A TCGA-EE-A29S-06A TCGA-WE-A8ZX-06A TCGA-D3-A3C8-06A TCGA-HR-A5NC-01A TCGA-ER-A19D-06A TCGA-WE-A8ZO-06A TCGA-EB-A44Q-06A TCGA-EE-A3AH-06A TCGA-EB-A430-01A TCGA-EE-A2A6-06A TCGA-D9-A3Z4-01A TCGA-DA-A1HY-06A TCGA-GN-A4U5-01A TCGA-WE-A8K6-06A TCGA-DA-A95Y-06A TCGA-EE-A2MG-06A TCGA-EB-A4OZ-01A TCGA-EE-A2MS-06A TCGA-EE-A2GS-06A TCGA-D3-A1Q8-06A TCGA-BF-A3DJ-01A TCGA-ER-A19N-06A TCGA-FR-A7U8-06A TCGA-EE-A3J5-06A TCGA-D3-A3C7-06A TCGA-BF-AAP7-01A TCGA-EE-A2MU-06A TCGA-D3-A3CC-06A TCGA-ER-A1A1-06A TCGA-ER-A2NH-06A TCGA-ER-A19O-06A TCGA-D3-A51E-06A TCGA-EE-A2M7-06A TCGA-XV-A9W2-01A TCGA-HR-A2OG-06A TCGA-ER-A19H-06A TCGA-ER-A19S-06A TCGA-ER-A3PL-06A TCGA-ER-A19C-06A TCGA-EE-A3JB-06A TCGA-BF-A9VF-01A TCGA-IH-A3EA-01A TCGA-FR-A69P-06A TCGA-EB-A5SH-06A TCGA-EE-A17Z-06A TCGA-D3-A2JB-06A TCGA-ER-A193-06A TCGA-FS-A1ZH-06A TCGA-EB-A82C-01A TCGA-D9-A1JX-06A TCGA-EE-A2MF-06A TCGA-D3-A3CE-06A TCGA-EE-A2GO-06A TCGA-XV-AB01-06A TCGA-D3-A3C3-06A TCGA-D9-A6EA-06A TCGA-ER-A19K-01A TCGA-D3-A8GR-06A TCGA-EE-A3AB-06A TCGA-ER-A199-06A TCGA-EB-A4IS-01A TCGA-EE-A3JH-06A TCGA-EB-A4IQ-01A TCGA-EE-A20B-06A TCGA-DA-A95X-06A TCGA-EB-A51B-01A TCGA-ER-A19G-06A TCGA-EB-A3Y6-01A TCGA-ER-A2NB-01A TCGA-EB-A299-01A TCGA-EE-A3JD-06A TCGA-ER-A19A-06A TCGA-W3-AA21-06A TCGA-EE-A3JA-06A TCGA-EE-A2ML-06A TCGA-FS-A1ZU-06A TCGA-EE-A29P-06A TCGA-ER-A196-01A TCGA-YG-AA3O-06A TCGA-EE-A29W-06A TCGA-D3-A2J8-06A TCGA-FR-A726-01A TCGA-EE-A2MP-06A TCGA-GN-A8LL-06A TCGA-BF-AAOU-01A TCGA-BF-A1PX-01A TCGA-EB-A5UL-06A TCGA-D3-A2JK-06A TCGA-EE-A3J3-06A TCGA-EE-A17X-06A TCGA-EB-A431-01A TCGA-GN-A263-01A TCGA-EE-A29T-06A TCGA-FR-A3YO-06A TCGA-GN-A264-06A TCGA-EB-A44N-01A TCGA-FW-A5DY-06A TCGA-EE-A2GN-06A TCGA-D3-A5GT-01A TCGA-ER-A194-01A TCGA-GN-A26A-06A TCGA-EB-A44R-06A TCGA-XV-AAZV-01A TCGA-D3-A2J9-06A TCGA-OD-A75X-06A TCGA-GF-A769-01A TCGA-EE-A29H-06A TCGA-D9-A1X3-06A TCGA-EE-A183-06A TCGA-D3-A51R-06A TCGA-EB-A41A-01A TCGA-EE-A2MN-06A TCGA-EB-A44O-01A TCGA-EE-A2A2-06A TCGA-GF-A6C9-06A TCGA-FS-A4F8-06A TCGA-EE-A2MI-06A TCGA-WE-A8ZY-06A TCGA-EE-A29X-06A TCGA-WE-A8JZ-06A TCGA-GN-A4U9-06A TCGA-D3-A8GV-06A TCGA-FS-A4F4-06A TCGA-D9-A4Z3-01A TCGA-ER-A2NC-06A TCGA-EB-A97M-01A TCGA-EB-A41B-01A TCGA-FS-A1ZP-06A TCGA-D3-A3CF-06A TCGA-D3-A8GP-06A TCGA-FS-A4F0-06A TCGA-D3-A51G-06A TCGA-EB-A553-01A TCGA-EE-A2GM-06B TCGA-D3-A8GN-06A TCGA-D3-A1Q1-06A TCGA-BF-A5EQ-01A TCGA-D3-A5GU-06A TCGA-EE-A2GP-06A TCGA-EE-A2M6-06A TCGA-EE-A3AA-06A TCGA-FS-A1ZF-06A TCGA-D9-A6EC-06A TCGA-FR-A8YC-06A TCGA-EB-A4XL-01A TCGA-EB-A551-01A TCGA-EE-A3J4-06A TCGA-EE-A3AC-06A ENSG00000000005.5 0.0 1.584962500721156 5.614709844115208 0.0 2.321928094887362 4.459431618637297 4.169925001442312 1.0 2.0 1.0 4.807354922057604 0.0 0.0 0.0 0.0 1.0 4.321928094887363 0.0 1.584962500721156 1.0 0.0 0.0 2.0 0.0 0.0 2.0 1.584962500721156 0.0 1.584962500721156 0.0 4.459431618637297 3.321928094887362 1.0 1.0 3.0 1.0 4.321928094887363 1.0 0.0 0.0 0.0 0.0 1.0 3.584962500721156 0.0 1.0 1.0 1.584962500721156 1.0 2.807354922057604 1.584962500721156 1.0 0.0 11.935165049603695 0.0 0.0 2.584962500721156 1.0 1.584962500721156 2.584962500721156 1.0 0.0 0.0 1.584962500721156 0.0 1.0 0.0 1.0 1.0 0.0 2.584962500721156 3.169925001442312 1.584962500721156 0.0 1.0 1.0 0.0 1.0 1.584962500721156 1.0 0.0 2.584962500721156 1.0 0.0 1.0 1.0 1.0 1.584962500721156 0.0 1.584962500721156 1.0 3.0 0.0 1.0 0.0 1.584962500721156 7.845490050944375 1.584962500721156 1.0 3.169925001442312 1.584962500721156 3.4594316186372973 1.0 0.0 1.0 3.0 0.0 0.0 2.0 0.0 2.584962500721156 2.321928094887362 0.0 0.0 0.0 1.0 0.0 0.0 4.321928094887363 0.0 0.0 1.584962500721156 0.0 0.0 1.584962500721156 1.584962500721156 1.0 2.321928094887362 0.0 0.0 0.0 3.169925001442312 0.0 1.584962500721156 0.0 1.584962500721156 0.0 2.0 5.392317422778761 1.0 1.0 1.0 0.0 3.807354922057604 0.0 0.0 1.0 0.0 2.321928094887362 1.0 0.0 4.392317422778761 0.0 1.584962500721156 3.169925001442312 1.0 0.0 0.0 0.0 5.357552004618084 0.0 0.0 1.0 0.0 0.0 0.0 3.0 0.0 0.0 1.0 2.584962500721156 0.0 2.0 0.0 0.0 0.0 15.208005679760456 2.807354922057604 1.584962500721156 6.129283016944966 0.0 1.584962500721156 6.20945336562895 2.321928094887362 3.321928094887362 0.0 1.0 1.584962500721156 1.584962500721156 0.0 0.0 2.584962500721156 1.0 1.584962500721156 1.584962500721156 0.0 3.169925001442312 3.0 1.584962500721156 0.0 1.0 1.0 0.0 0.0 0.0 4.523561956057013 0.0 0.0 0.0 2.584962500721156 0.0 0.0 3.0 1.0 2.321928094887362 0.0 1.0 1.584962500721156 2.0 5.672425341971495 1.0 2.321928094887362 0.0 1.584962500721156 2.321928094887362 0.0 0.0 2.0 1.584962500721156 0.0 2.584962500721156 0.0 0.0 1.584962500721156 1.584962500721156 1.0 3.0 1.0 1.584962500721156 1.0 0.0 2.321928094887362 7.321928094887363 1.0 0.0 1.584962500721156 3.169925001442312 0.0 0.0 1.0 0.0 3.807354922057604 2.584962500721156 3.169925001442312 2.321928094887362 0.0 0.0 0.0 3.0 0.0 1.584962500721156 3.321928094887362 0.0 0.0 0.0 2.584962500721156 0.0 2.0 0.0 1.0 1.0 2.0 2.321928094887362 1.0 1.584962500721156 0.0 1.0 1.0 0.0 0.0 1.584962500721156 1.584962500721156 3.0 0.0 0.0 2.321928094887362 3.0 0.0 0.0 1.0 3.321928094887362 1.0 2.0 0.0 0.0 0.0 0.0 0.0 2.321928094887362 1.584962500721156 2.0 0.0 0.0 0.0 2.321928094887362 0.0 0.0 0.0 0.0 1.0 1.0 0.0 6.149747119504682 2.0 1.0 0.0 0.0 2.807354922057604 1.0 1.0 1.0 0.0 0.0 2.584962500721156 0.0 0.0 3.0 0.0 9.876516946565 0.0 0.0 0.0 0.0 2.0 2.321928094887362 0.0 0.0 0.0 0.0 3.584962500721156 0.0 4.087462841250339 1.0 3.169925001442312 0.0 1.584962500721156 2.321928094887362 0.0 0.0 1.0 0.0 2.0 2.321928094887362 1.584962500721156 0.0 0.0 3.0 0.0 1.0 4.392317422778761 1.584962500721156 1.0 1.0 1.584962500721156 0.0 0.0 4.321928094887363 0.0 0.0 2.321928094887362 5.700439718141092 3.0 0.0 1.0 1.0 4.392317422778761 2.0 0.0 0.0 1.584962500721156 1.0 0.0 1.584962500721156 1.0 3.0 3.4594316186372973 0.0 4.807354922057604 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.700439718141092 1.0 0.0 0.0 3.700439718141092 0.0 0.0 1.584962500721156 3.807354922057604 0.0 1.584962500721156 0.0 0.0 0.0 0.0 1.584962500721156 2.321928094887362 4.169925001442312 1.584962500721156 0.0 0.0 0.0 0.0 1.0 2.321928094887362 0.0 3.169925001442312 0.0 0.0 0.0 1.584962500721156 0.0 1.584962500721156 0.0 0.0 1.0 1.0 2.321928094887362 5.614709844115208 0.0 0.0 0.0 1.584962500721156 0.0 2.0 0.0 1.584962500721156 0.0 0.0 1.584962500721156 1.0 2.0 0.0 1.584962500721156 0.0 0.0 4.700439718141092 1.584962500721156 0.0 4.392317422778761 1.584962500721156 0.0 0.0 0.0 4.0 1.0 3.169925001442312 3.0 2.584962500721156 1.0 2.321928094887362 0.0 2.321928094887362 0.0 0.0 0.0 0.0 ENSG00000000457.12 10.345405246717796 10.783816759320182 10.004220466318195 9.355351096424812 9.499845887083206 9.926295994781112 10.400879436282183 9.729620743553038 10.075479149488016 9.071462362556623 9.074141462752506 8.936637939002571 9.121533517340032 10.848622940429339 9.791162888555018 9.693486957499324 10.553629293916364 8.78135971352466 10.086136225027309 9.948367231584678 10.192292814470767 8.741466986401146 10.140829770773001 9.829722735086058 9.571752643503546 10.69261550169458 8.800899899920305 10.098032082960527 9.546894459887637 9.396604781181859 7.159871336778389 9.605479518061669 9.377210530388552 9.014020470314934 8.867278739709661 9.152284842306582 10.871905237659186 9.29232163280204 10.760719947465624 9.59245703726808 8.98299357469431 9.30149619498255 9.566054038171092 10.615629636968098 9.346513733165635 9.960001932068081 7.531381460516312 10.27029532647204 10.051208940914766 9.749869427396844 9.850186837645774 9.686500527183219 9.221587121264806 10.230020435705635 8.81698362325538 7.622051819456376 10.474719946526482 9.505811553919594 8.527477006060396 9.0 8.707359132080883 9.952741247186488 9.060695931687555 10.029287226968245 9.002815015607053 9.972979786066292 9.154818109052105 8.854868383260236 10.734709620225837 6.807354922057604 10.46454575033394 7.321928094887363 9.733015321685963 10.375039431346925 10.257387842692651 8.45532722030456 8.951284714966972 10.4231159101471 10.309476353841106 9.791162888555018 9.702172685365548 10.895575282380685 10.034798962577268 9.321928094887362 10.233619676759702 9.967226258835993 10.731319031025064 10.572700226487292 9.583082767502933 10.14338321398982 10.861862340059151 9.717676423066395 10.386940245324311 9.845490050944376 9.971543553950772 9.044394119358454 9.527477006060396 9.857980995127573 9.917372079476841 8.179909090014934 7.672425341971495 9.276124405274238 9.741466986401146 9.912889336229961 10.449148645375436 9.581200581924957 6.20945336562895 9.722807531169547 9.76487159073609 8.092757140919852 9.842350343413807 7.491853096329675 9.240791332161956 9.89026427702111 9.398743691938193 8.611024797307353 9.457380879072534 7.599912842187128 9.794415866350105 8.011227255423254 9.847057346091336 9.535275376620802 9.247927513443585 9.055282435501189 10.178664851006472 10.339850002884624 9.266786540694902 10.96289600533726 9.605479518061669 9.884170519108435 9.428360172704291 9.544964432789238 8.194756854422248 9.187352073200497 9.679480099505446 8.96289600533726 9.164906926675688 9.977279923499916 10.467605550082997 8.900866807980748 10.215532999745657 9.667111542075027 8.507794640198696 10.147204924942228 8.954196310386875 8.754887502163468 9.417852514885897 10.12670447284319 8.873444112515376 8.59245703726808 9.567956075415466 8.539158811108031 10.094077685671905 10.070120944476823 8.968666793195208 9.588714635582264 9.116343961237469 9.965784284662087 11.225809940623543 9.991521846075695 9.214319120800766 9.840777923595054 10.57553924683453 9.129283016944967 10.03342300153745 9.189824558880018 8.73809225962049 8.73809225962049 8.577428828035748 9.81698362325538 9.839203788096944 9.978710459106358 10.439830883981392 10.118941072723507 10.01262453886506 8.442943495848729 9.111135670234708 10.068778277985412 9.025139562278508 9.649256177517314 10.63390340934852 10.24198314969433 9.350939181546432 9.679480099505446 10.066089190457772 10.080817527608327 8.562242424221072 10.674192268145683 9.65284497300198 9.60917873814198 9.954196310386875 9.992938336165814 10.198445041452363 9.911391987843459 8.751544059089099 10.62844554013718 10.007027266893969 11.084144010615145 10.153552031708111 9.893301530860564 9.357552004618084 9.355351096424812 8.965784284662087 9.710806433699352 9.485829308701904 8.199672344836364 10.498849206531725 9.820178962415188 7.930737337562887 10.510764167917891 9.432541900388259 9.027905996569885 10.632086412835182 9.994353436858859 9.77313920671969 9.794415866350105 10.112439506781552 10.586839787961827 9.577428828035748 10.939579214314692 10.118941072723507 8.88264304936184 7.339850002884624 9.426264754702098 10.73809225962049 9.92184093707449 9.20945336562895 9.285402218862249 9.303780748177102 8.96289600533726 8.918863237274595 10.497851836951117 9.684748620421626 9.303780748177102 7.894817763307944 9.62935662007961 9.850186837645774 9.379378367071261 10.850968150982439 9.240791332161956 8.092757140919852 10.403012023574997 8.569855608330947 10.965784284662087 9.74819284958946 10.473705749619416 9.18239435340453 9.813781191217037 9.052568050804153 10.252665432450248 9.751544059089099 8.945443836377912 9.81698362325538 10.298062567719017 9.951284714966972 9.845490050944376 9.832890014164741 9.436711542137214 9.774787059601174 10.12670447284319 8.577428828035748 9.172427508645482 10.309476353841106 9.691743519171276 9.252665432450248 10.139551352398794 9.978710459106358 10.249113452713729 9.862637357558794 10.321928094887362 10.159871336778389 9.233619676759702 10.263269200372662 8.96289600533726 10.147204924942228 8.876516946565 9.556506054671928 10.347621368568134 10.491853096329674 9.88264304936184 9.881113960675096 9.577428828035748 10.139551352398794 8.842350343413807 9.813781191217037 9.207014320177532 9.52552080909507 9.537218400538595 10.498849206531725 8.717676423066395 9.405141463136344 6.321928094887363 9.276124405274238 6.768184324776926 10.207014320177532 9.564149489985732 9.477758266443889 9.273795599214264 9.214319120800766 9.899356922923111 10.222794902868111 8.531381460516313 8.581200581924957 9.116343961237469 9.815383295813538 10.192292814470767 10.092757140919852 10.134426320220927 7.636624620543649 9.294620748891628 9.887220615468385 9.280770770130603 10.080817527608327 9.139551352398794 9.584962500721156 8.491853096329674 10.208234358339789 9.436711542137214 10.144658242831882 7.022367813028454 8.049848549450562 10.27029532647204 9.581200581924957 10.433585441150495 10.023754353299417 8.78135971352466 9.290018846932618 8.870364719583405 9.929258408636972 9.805743872151618 9.461479447286155 9.7714894695006 9.72451385311995 10.211888294546004 10.846273911349906 10.34318571544788 10.022367813028454 8.679480099505446 8.794415866350105 9.909893083770042 7.820178962415188 10.519636252843213 10.265615046484458 9.978710459106358 9.661778097771988 9.194756854422248 8.744833837499545 9.677719641641009 9.285402218862249 8.475733430966399 9.54882190845875 9.612868497291041 10.447083226209653 9.121533517340032 8.214319120800766 9.505811553919594 10.365228849251544 9.005624549193879 10.014020470314934 10.443979542601253 9.923327485419192 9.874981347653774 9.092757140919852 9.971543553950772 8.422064766172813 6.599912842187128 10.321928094887362 8.721099188707186 9.67595703294175 9.870364719583405 9.451211111832329 10.597121428789569 9.558420713268664 10.44086916761087 10.306061689428342 10.199672344836364 9.98299357469431 7.098032082960526 8.693486957499324 9.562242424221072 9.266786540694902 8.78135971352466 9.74819284958946 9.586839787961827 10.368506461507693 9.509775004326936 9.30149619498255 10.068778277985412 9.493855449240822 9.828136484194108 10.14338321398982 10.405141463136344 7.2384047393250786 9.791162888555018 8.89178370321831 10.004220466318195 9.139551352398794 8.92481250360578 10.040289721025717 9.820178962415188 9.792790294301064 8.087462841250339 10.124121311829187 9.813781191217037 10.005624549193879 10.457380879072534 10.256208688527387 7.011227255423254 9.066089190457772 9.473705749619416 9.957102041562287 4.807354922057604 9.72451385311995 8.791162888555018 9.868822554774999 8.693486957499324 9.828136484194108 8.071462362556623 10.194756854422248 9.546894459887637 10.086136225027309 10.30149619498255 9.240791332161956 8.238404739325079 10.29920801838728 10.7632123668144 8.011227255423254 11.383704292474052 10.191059214531656 8.86418614465428 9.025139562278508 9.815383295813538 9.377210530388552 10.283088353024002 10.3151495622563 10.980139577639157 9.543031820255237 10.745674324002135 8.870364719583405 9.686500527183219 9.543031820255237 10.129283016944967 8.885696373339394 9.60733031374961 10.533329732305834 9.3151495622563 8.357552004618084 8.754887502163468 9.113742166049189 8.804131021183318 9.20945336562895 10.60733031374961 9.884170519108435 9.960001932068081 10.702172685365548 10.437752072323603 8.312882955284355 10.593391122791736 9.41574176829009 10.208234358339789 9.926295994781112 10.192292814470767 9.296916206879288 9.35974956032233 8.948367231584678 10.536247215688128 9.226412192788786 9.726218159332198 9.419960177847889 9.49585502688717 9.884170519108435 10.641148597411233 ENSG00000000460.15 10.066089190457772 10.536247215688128 8.784634845557521 9.984418458801137 8.774787059601174 8.471675214392045 9.475733430966399 9.108524456778168 9.853309555403674 8.483815777264256 8.62935662007961 10.20945336562895 9.654636028527968 10.414685235807214 9.517669388133811 9.674192268145683 9.758223214726724 8.294620748891628 9.967226258835993 10.336506559810255 8.974414589805527 8.584962500721156 9.794415866350105 8.758223214726724 9.194756854422248 9.977279923499916 9.30149619498255 9.262094845370179 9.20945336562895 9.152284842306582 6.870364719583405 8.451211111832329 7.22881869049588 9.113742166049189 9.100662339005199 8.707359132080883 10.758223214726724 8.79766152585376 9.346513733165635 9.828136484194108 9.08214904135387 8.400879436282183 9.310612781659529 9.840777923595054 10.032045726930809 9.86418614465428 7.312882955284356 9.515699838284043 9.245552706255681 9.79766152585376 9.41574176829009 8.710806433699352 9.103287808412022 10.397674632948268 8.562242424221072 6.794415866350106 9.884170519108435 8.744833837499545 7.257387842692652 7.562242424221073 7.807354922057604 9.649256177517314 8.413627929024173 9.481799431665753 8.60733031374961 8.861086905995395 9.174925682500678 9.108524456778168 10.851749041416058 7.05528243550119 10.00842862207058 5.807354922057604 9.52943055414615 9.843921051289035 10.668884984266247 8.339850002884624 9.111135670234708 8.948367231584678 9.025139562278508 9.558420713268664 9.312882955284355 9.73809225962049 9.535275376620802 9.430452551665532 10.577428828035748 9.899356922923111 10.624795455860237 10.456354415108288 8.643856189774725 10.349834091457247 9.867278739709661 9.219168520462162 9.579315937580015 9.939579214314692 10.127994320976393 8.243173983472952 8.022367813028454 8.939579214314692 10.044394119358454 8.179909090014934 7.971543553950772 7.734709620225838 9.432541900388259 10.853309555403674 10.116343961237469 9.46352437327118 6.94251450533924 9.569855608330947 10.12670447284319 8.72451385311995 8.939579214314692 7.577428828035749 9.169925001442312 9.310612781659529 9.535275376620802 9.677719641641009 9.319672120946995 7.139551352398794 7.787902559391432 7.539158811108031 9.665335917185176 9.899356922923111 9.038918989292302 8.761551232444479 9.94982671075911 10.611024797307353 9.457380879072534 10.107217075591382 9.792790294301064 9.888743248898258 9.479780264029099 9.35974956032233 8.129283016944967 8.507794640198696 9.071462362556623 8.72451385311995 9.057991722759176 8.741466986401146 10.44190670454224 9.471675214392045 9.85642552862553 9.447083226209653 9.192292814470767 10.163649676015824 8.383704292474052 6.6865005271832185 8.290018846932618 9.861086905995395 8.599912842187127 9.564149489985732 8.73809225962049 7.6293566200796095 9.932214751968385 8.72451385311995 8.426264754702098 9.51175265376738 8.243173983472952 10.585901449690772 10.646558710154547 9.586839787961827 9.726218159332198 10.20212382383046 9.955649907528374 9.668884984266247 9.611024797307353 8.144658242831882 8.011227255423254 9.159871336778389 9.531381460516313 8.388017285345136 10.943247395901553 10.245552706255681 9.111135670234708 9.124121311829187 10.699572453287269 8.08214904135387 8.326429487122303 10.512740462803498 8.566054038171092 9.60917873814198 9.679480099505446 9.612868497291041 8.96289600533726 9.430452551665532 8.658211482751796 8.625708843064466 8.471675214392045 10.022367813028454 10.59898297103609 8.696967526234287 9.72451385311995 9.469641817239516 10.3409627642517 8.965784284662087 7.734709620225838 9.016808287686555 9.187352073200497 10.304921669581672 9.030667136246942 8.614709844115207 8.266786540694902 9.164906926675688 9.361943773735241 9.405141463136344 9.41574176829009 9.273795599214264 9.90839262077375 10.252665432450248 7.918863237274595 10.43879185257826 9.7632123668144 8.396604781181859 10.62296694479051 9.960001932068081 9.226412192788786 9.622051819456376 9.661778097771988 9.499845887083206 9.78953364497036 10.153552031708111 9.517669388133811 7.066089190457772 6.714245517666122 7.9886846867721655 9.379378367071261 9.344295907915816 7.247927513443585 8.894817763307943 9.970105890612182 7.475733430966398 7.918863237274595 9.897845456005511 7.357552004618084 8.894817763307943 7.451211111832329 10.477758266443889 8.682994583681683 9.625708843064466 9.714245517666123 9.252665432450248 8.442943495848729 9.975847968006784 7.366322214245816 10.245552706255681 10.274960472140602 9.705632387361415 8.515699838284043 8.632995197142957 8.741466986401146 10.14210705730255 9.052568050804153 7.622051819456376 8.59245703726808 8.562242424221072 10.094077685671905 9.326429487122303 8.820178962415188 8.308339030139408 10.129283016944967 9.328674927327947 9.245552706255681 9.084808387804362 10.29232163280204 9.346513733165635 8.754887502163468 10.052568050804153 9.5980525001616 9.86418614465428 9.614709844115207 10.360847084179664 9.250298417906333 9.881113960675096 9.353146825498083 8.31741261376487 9.366322214245816 9.845490050944376 9.08214904135387 9.96289600533726 9.430452551665532 9.03342300153745 10.533329732305834 9.036173612553485 9.350939181546432 8.071462362556623 9.214319120800766 8.507794640198696 9.076815597050832 9.290018846932618 10.252665432450248 9.60917873814198 9.154818109052105 7.219168520462161 8.62935662007961 6.475733430966398 9.45532722030456 9.485829308701904 8.851749041416058 8.787902559391432 9.774787059601174 10.026523442519766 9.041659151637214 7.954196310386875 8.50382573799575 9.238404739325079 8.651051691178928 8.447083226209653 10.023754353299417 9.442943495848729 7.807354922057604 9.052568050804153 7.936637939002571 9.06339508128851 9.108524456778168 9.88264304936184 9.948367231584678 7.734709620225838 9.86573327085176 9.005624549193879 9.828136484194108 5.643856189774724 7.924812503605781 9.211888294546004 9.52552080909507 9.430452551665532 9.50382573799575 9.672425341971495 9.011227255423254 8.46352437327118 9.715961990255144 9.342074667999139 9.567956075415466 9.238404739325079 9.280770770130603 9.577428828035748 9.995767150877802 10.13699111208023 8.98299357469431 7.94251450533924 9.172427508645482 9.368506461507693 6.584962500721156 10.430452551665532 10.586839787961827 9.681238411777805 8.804131021183318 8.658211482751796 8.531381460516313 9.715961990255144 8.129283016944967 8.038918989292302 10.071462362556623 8.894817763307943 9.854868383260236 8.62935662007961 6.169925001442312 9.515699838284043 9.219168520462162 8.945443836377912 8.90388184573618 9.932214751968385 8.409390936137703 9.071462362556623 9.187352073200497 10.550746785383243 8.519636252843213 7.285402218862249 10.074141462752506 8.413627929024173 10.10459875356437 9.85642552862553 8.948367231584678 10.140829770773001 8.888743248898258 9.840777923595054 9.829722735086058 9.453270634010623 9.266786540694902 5.554588851677638 9.509775004326936 9.221587121264806 9.839203788096944 7.483815777264256 8.654636028527968 9.54882190845875 9.794415866350105 8.714245517666123 8.76487159073609 8.915879378835774 9.449148645375436 9.038918989292302 10.234817431117325 10.018200178813226 6.658211482751795 7.9886846867721655 8.487840033823051 9.588714635582264 8.426264754702098 8.543031820255237 8.90388184573618 10.052568050804153 8.957102041562287 7.0 10.479780264029099 9.794415866350105 10.057991722759176 9.586839787961827 9.519636252843213 6.672425341971495 8.174925682500678 9.13699111208023 10.187352073200497 4.807354922057604 10.06339508128851 9.63117705570398 10.133142212400601 8.64745842645492 9.014020470314934 8.224001674198105 9.756556322524087 8.854868383260236 8.721099188707186 10.095397022792557 8.20945336562895 6.768184324776926 10.088788238716907 10.466586337719244 7.820178962415188 9.761551232444479 10.330916878114618 9.337621901992508 8.734709620225837 9.134426320220927 9.854868383260236 11.136350341454156 9.487840033823051 9.527477006060396 9.906890595608518 11.250890535723341 8.721099188707186 8.751544059089099 8.823367240046235 9.927777962082342 8.73809225962049 9.473705749619416 11.323054760341646 10.290018846932618 7.693486957499325 8.854868383260236 9.505811553919594 9.074141462752506 8.845490050944376 9.095397022792557 9.370687406807217 8.515699838284043 10.393390457443987 10.650154213675094 8.303780748177102 9.972979786066292 8.189824558880018 9.618385502258606 9.632995197142957 9.54882190845875 9.264442600226602 10.091435386323607 9.57553924683453 10.938844457466171 9.366322214245816 7.930737337562887 8.344295907915816 8.422064766172813 9.228818690495881 10.426264754702098 ================================================ FILE: inst/extdata/TCGA_gencode.v22.annotation.gene.probeMap_test ================================================ id gene chrom chromStart chromEnd strand ENSG00000000005.5 TNMD chrX 100584802 100599885 + ENSG00000000457.12 SCYL3 chr1 169849631 169894267 - ENSG00000000460.15 C1orf112 chr1 169662007 169854080 + ================================================ FILE: inst/extdata/all_count_exp_test.csv ================================================ ,TCGA-D9-A4Z2-01A,TCGA-ER-A2NH-06A,TCGA-BF-A5EO-01A,TCGA-D9-A6EA-06A,TCGA-D9-A4Z3-01A,TCGA-GN-A26A-06A,TCGA-D3-A3BZ-06A,TCGA-D3-A51G-06A,TCGA-EE-A29R-06A,TCGA-D3-A2JE-06A,TCGA-W3-AA1V-06B,TCGA-DA-A1IA-06A,TCGA-EE-A29T-06A,TCGA-EB-A3XB-01A,TCGA-FS-A1ZQ-06A,TCGA-EB-A85I-01A,TCGA-D3-A5GO-06A,TCGA-FR-A728-01A,TCGA-EB-A85J-01A,TCGA-D3-A2JA-06A,TCGA-YG-AA3O-06A,TCGA-EE-A3AB-06A,TCGA-D3-A1QB-06A,TCGA-GN-A4U9-06A,TCGA-ER-A3ET-06A,TCGA-HR-A5NC-01A,TCGA-FR-A729-06A,TCGA-BF-A1PZ-01A,TCGA-WE-AAA0-06A,TCGA-EB-A430-01A,TCGA-EE-A3J5-06A,TCGA-WE-A8K4-01A,TCGA-D3-A5GR-06A,TCGA-EE-A2GS-06A,TCGA-EE-A29Q-06A,TCGA-EE-A3J7-06A,TCGA-EB-A3XE-01A,TCGA-W3-A824-06A,TCGA-FS-A4FD-06A,TCGA-ER-A19H-06A,TCGA-EB-A4OY-01A,TCGA-ER-A3PL-06A,TCGA-ER-A19A-06A,TCGA-FS-A1ZR-06A,TCGA-DA-A3F3-06A,TCGA-FS-A4F4-06A,TCGA-FR-A2OS-01A,TCGA-Z2-AA3S-06A,TCGA-ER-A42H-01A,TCGA-FS-A1YY-06A,TCGA-EE-A3AF-06A,TCGA-EB-A5VV-06A,TCGA-GF-A4EO-06A,TCGA-EB-A82C-01A,TCGA-ER-A19C-06A,TCGA-BF-AAOU-01A,TCGA-ER-A19T-01A,TCGA-ER-A19T-06A,TCGA-EE-A2MH-06A,TCGA-RP-A690-06A,TCGA-HR-A2OG-06A,TCGA-GN-A4U7-06A,TCGA-D3-A2J9-06A,TCGA-GN-A8LL-06A,TCGA-D9-A1JX-06A,TCGA-D3-A3C7-06A,TCGA-EB-A3XC-01A,TCGA-EE-A29P-06A,TCGA-EB-A5FP-01A,TCGA-EE-A3JD-06A,TCGA-ER-A19D-06A,TCGA-BF-AAP1-01A,TCGA-EB-A551-01A,TCGA-Z2-A8RT-06A,TCGA-ER-A19W-06A,TCGA-EB-A41A-01A,TCGA-XV-AAZY-01A,TCGA-ER-A19S-06A,TCGA-XV-A9W2-01A,TCGA-DA-A1I7-06A,TCGA-DA-A1IB-06A,TCGA-EE-A3AG-06A,TCGA-GN-A26C-01A,TCGA-D3-A1Q7-06A,TCGA-EE-A2MU-06A,TCGA-FS-A1Z3-06A,TCGA-D3-A8GP-06A,TCGA-EE-A3AC-06A,TCGA-EB-A57M-01A,TCGA-EE-A2MD-06A,TCGA-D3-A51K-06A,TCGA-ER-A2NE-06A,TCGA-EE-A20H-06A,TCGA-ER-A19Q-06A,TCGA-ER-A197-06A,TCGA-EE-A183-06A,TCGA-GN-A4U8-06A,TCGA-FS-A1YW-06A,TCGA-WE-A8K1-06A,TCGA-D3-A3C6-06A,TCGA-DA-A960-01A,TCGA-EB-A5UM-01A,TCGA-D3-A5GL-06A,TCGA-D3-A8GR-06A,TCGA-ER-A199-06A,TCGA-EE-A2MK-06A,TCGA-D3-A3CB-06A,TCGA-QB-AA9O-06A,TCGA-DA-A1IC-06A,TCGA-FS-A4FB-06A,TCGA-EE-A2MS-06A,TCGA-D3-A2J7-06A,TCGA-EB-A5UL-06A,TCGA-FS-A1ZY-06A,TCGA-D3-A5GT-01A,TCGA-EE-A2MT-06A,TCGA-WE-AAA3-06A,TCGA-FS-A1ZG-06A,TCGA-EB-A41B-01A,TCGA-EE-A2ME-06A,TCGA-FS-A1ZF-06A,TCGA-D3-A3CE-06A,TCGA-EE-A184-06A,TCGA-FR-A726-01A,TCGA-BF-A1Q0-01A,TCGA-FS-A1ZA-06A,TCGA-ER-A19K-01A,TCGA-EE-A29G-06A,TCGA-OD-A75X-06A,TCGA-D3-A3MO-06A,TCGA-EE-A2MJ-06A,TCGA-DA-A1I0-06A,TCGA-DA-A1HY-06A,TCGA-WE-AA9Y-06A,TCGA-XV-A9VZ-01A,TCGA-D9-A1X3-06A,TCGA-D3-A8GV-06A,TCGA-D3-A3C8-06A,TCGA-EE-A29V-06A,TCGA-WE-A8ZX-06A,TCGA-EE-A2M8-06A,TCGA-D3-A2JD-06A,TCGA-EE-A2MM-06A,TCGA-ER-A42L-06A,TCGA-EE-A2GD-06A,TCGA-EE-A29S-06A,TCGA-FS-A1ZH-06A,TCGA-GN-A8LN-01A,TCGA-D9-A6EG-06A,TCGA-FS-A1ZD-06A,TCGA-ER-A195-06A,TCGA-D3-A8GD-06A,TCGA-EE-A20B-06A,TCGA-EE-A3J4-06A,TCGA-W3-AA1R-06A,TCGA-EE-A29H-06A,TCGA-FR-A8YE-06A,TCGA-D3-A51R-06A,TCGA-3N-A9WD-06A,TCGA-FR-A7U9-06A,TCGA-EE-A2ML-06A,TCGA-D3-A2JO-06A,TCGA-EE-A2MG-06A,TCGA-W3-AA1O-06A,TCGA-D3-A51N-06A,TCGA-EE-A20F-06A,TCGA-DA-A95X-06A,TCGA-DA-A1HV-06A,TCGA-D3-A2JH-06A,TCGA-BF-A3DJ-01A,TCGA-D3-A2JB-06A,TCGA-EB-A6QY-01A,TCGA-DA-A95V-06A,TCGA-BF-AAP8-01A,TCGA-EB-A6QZ-01A,TCGA-EB-A4XL-01A,TCGA-RP-A693-06A,TCGA-BF-A5EP-01A,TCGA-EB-A299-01A,TCGA-EE-A3AH-06A,TCGA-WE-A8ZR-06A,TCGA-EB-A44P-01A,TCGA-EE-A17Y-06A,TCGA-WE-A8JZ-06A,TCGA-EB-A3Y7-01A,TCGA-FS-A1ZT-06A,TCGA-BF-A5ER-01A,TCGA-EE-A2MQ-06A,TCGA-W3-A825-06A,TCGA-D3-A8GM-06A,TCGA-FS-A1ZC-06A,TCGA-EB-A24D-01A,TCGA-GF-A6C9-06A,TCGA-EB-A431-01A,TCGA-EE-A2GN-06A,TCGA-EB-A3XF-01A,TCGA-BF-A3DL-01A,TCGA-GF-A2C7-01A,TCGA-BF-A1PX-01A,TCGA-ER-A19M-06A,TCGA-FW-A3I3-06A,TCGA-FW-A3TV-06A,TCGA-FS-A4F5-06A,TCGA-ER-A19P-06A,TCGA-D3-A1Q1-06A,TCGA-ER-A3EV-06A,TCGA-D3-A3ML-06A,TCGA-EB-A550-01A,TCGA-EE-A185-06A,TCGA-YD-A9TB-06A,TCGA-XV-AB01-06A,TCGA-EE-A2GP-06A,TCGA-FR-A8YC-06A,TCGA-BF-A3DM-01A,TCGA-FS-A1ZB-06A,TCGA-D3-A2JK-06A,TCGA-GN-A263-01A,TCGA-EE-A2GJ-06A,TCGA-WE-A8ZO-06A,TCGA-D3-A3MR-06A,TCGA-D3-A8GB-06A,TCGA-D3-A2JN-06A,TCGA-EB-A4OZ-01A,TCGA-FR-A3YN-06A,TCGA-DA-A1I1-06A,TCGA-EE-A182-06A,TCGA-FW-A3R5-06A,TCGA-GN-A9SD-06A,TCGA-EB-A553-01A,TCGA-BF-AAP0-06A,TCGA-EB-A3Y6-01A,TCGA-ER-A19L-06A,TCGA-EB-A44N-01A,TCGA-DA-A95W-06A,TCGA-ER-A196-01A,TCGA-EE-A2GO-06A,TCGA-ER-A3ES-06A,TCGA-EE-A3J8-06A,TCGA-EE-A2A6-06A,TCGA-D3-A3MU-06A,TCGA-DA-A3F8-06A,TCGA-D9-A4Z5-01A,TCGA-D3-A8GJ-06A,TCGA-D3-A8GL-06A,TCGA-EE-A2GC-06A,TCGA-EE-A2A5-06A,TCGA-D3-A51T-06A,TCGA-D3-A8GI-06A,TCGA-D3-A2J8-06A,TCGA-EB-A3XD-01A,TCGA-EB-A6L9-06A,TCGA-EE-A2MP-06A,TCGA-D9-A3Z3-06A,TCGA-FW-A5DY-06A,TCGA-D3-A3CF-06A,TCGA-FR-A44A-06A,TCGA-FS-A1ZE-06A,TCGA-GN-A4U4-06A,TCGA-D9-A3Z4-01A,TCGA-EE-A3J3-06A,TCGA-EE-A2MI-06A,TCGA-EB-A44Q-06A,TCGA-DA-A1HW-06A,TCGA-EB-A5SF-01A,TCGA-EB-A4IQ-01A,TCGA-GN-A266-06A,TCGA-EB-A6R0-01A,TCGA-GN-A8LK-06A,TCGA-ER-A1A1-06A,TCGA-ER-A198-06A,TCGA-EE-A3JB-06A,TCGA-QB-A6FS-06A,TCGA-D3-A1Q6-06A,TCGA-DA-A95Y-06A,TCGA-RP-A6K9-06A,TCGA-EE-A2GL-06A,TCGA-EE-A2MF-06A,TCGA-BF-A5EQ-01A,TCGA-DA-A1I2-06A,TCGA-EE-A29W-06A,TCGA-GF-A769-01A,TCGA-D3-A1Q5-06A,TCGA-FR-A3YO-06A,TCGA-ER-A194-01A,TCGA-D3-A3C3-06A,TCGA-BF-AAOX-01A,TCGA-FW-A5DX-01A,TCGA-EB-A24C-01A,TCGA-ER-A2NB-01A,TCGA-YD-A89C-06A,TCGA-GN-A264-06A,TCGA-W3-AA1W-06A,TCGA-RP-A694-06A,TCGA-IH-A3EA-01A,TCGA-D3-A51H-06A,TCGA-D3-A8GE-06A,TCGA-D3-A8GK-06A,TCGA-EE-A2A0-06A,TCGA-EE-A2GE-06A,TCGA-EB-A97M-01A,TCGA-EE-A29B-06A,TCGA-D9-A149-06A,TCGA-EE-A2GR-06A,TCGA-D3-A1Q4-06A,TCGA-FS-A1ZU-06A,TCGA-EB-A5SG-06A,TCGA-D3-A2JL-06A,TCGA-D9-A4Z6-06A,TCGA-GF-A6C8-06A,TCGA-ER-A19N-06A,TCGA-FS-A4F0-06A,TCGA-WE-A8ZT-06A,TCGA-FR-A69P-06A,TCGA-D3-A51F-06A,TCGA-DA-A3F2-06A,TCGA-D3-A3CC-06A,TCGA-EE-A2GI-06A,TCGA-EE-A29X-06A,TCGA-EE-A29E-06A,TCGA-BF-A5ES-01A,TCGA-GN-A268-06A,TCGA-D9-A148-06A,TCGA-FW-A3TU-06A,TCGA-EE-A2M5-06A,TCGA-EB-A4IS-01A,TCGA-EE-A2A2-06A,TCGA-EE-A2MR-06A,TCGA-D9-A1JW-06A,TCGA-GN-A267-06A,TCGA-FS-A1Z4-06A,TCGA-ER-A19O-06A,TCGA-EB-A5VU-01A,TCGA-HR-A2OH-06A,TCGA-FS-A1ZN-01A,TCGA-ER-A19B-06A,TCGA-EB-A5KH-06A,TCGA-FS-A4FC-06A,TCGA-D3-A8GN-06A,TCGA-D9-A6EC-06A,TCGA-EE-A29A-06A,TCGA-EB-A42Z-01A,TCGA-FS-A1ZS-06A,TCGA-EE-A3AA-06A,TCGA-ER-A19J-06A,TCGA-ER-A42K-06A,TCGA-GN-A4U5-01A,TCGA-YD-A9TA-06A,TCGA-BF-AAP2-01A,TCGA-YG-AA3P-06A,TCGA-XV-AAZV-01A,TCGA-D3-A8GS-06A,TCGA-EE-A29D-06A,TCGA-DA-A1I5-06A,TCGA-EE-A3AD-06A,TCGA-D3-A3C1-06A,TCGA-D3-A5GS-06A,TCGA-D3-A2J6-06A,TCGA-FR-A7UA-06A,TCGA-D9-A6E9-06A,TCGA-EE-A2GM-06B,TCGA-WE-A8K5-06A,TCGA-EE-A2MN-06A,TCGA-EE-A3JH-06A,TCGA-EE-A3JA-06A,TCGA-FS-A4F2-06A,TCGA-D3-A1QA-06A,TCGA-BF-AAP7-01A,TCGA-EE-A29M-06A,TCGA-ER-A2ND-06A,TCGA-WE-A8K6-06A,TCGA-FR-A7U8-06A,TCGA-D9-A3Z1-06A,TCGA-WE-A8ZM-06A,TCGA-WE-AAA4-06A,TCGA-3N-A9WC-06A,TCGA-EB-A1NK-01A,TCGA-DA-A95Z-06A,TCGA-GN-A265-06A,TCGA-FS-A1Z7-06A,TCGA-W3-A828-06A,TCGA-FS-A1Z0-06A,TCGA-D3-A2JC-06A,TCGA-EE-A2M6-06A,TCGA-FS-A1ZJ-06A,TCGA-EE-A17X-06A,TCGA-WE-A8ZQ-06A,TCGA-EB-A5SE-01A,TCGA-ER-A2NG-06A,TCGA-EB-A51B-01A,TCGA-RP-A695-06A,TCGA-D3-A3MV-06A,TCGA-FS-A1YX-06A,TCGA-FS-A1ZZ-06A,TCGA-D3-A5GN-06A,TCGA-FS-A1ZW-06A,TCGA-D3-A2JF-06A,TCGA-FS-A1ZK-06A,TCGA-ER-A2NC-06A,TCGA-FR-A8YD-06A,TCGA-ER-A19G-06A,TCGA-EB-A4P0-01A,TCGA-EE-A29N-06A,TCGA-W3-AA21-06A,TCGA-ER-A19E-06A,TCGA-BF-A1PU-01A,TCGA-BF-A9VF-01A,TCGA-D3-A1Q8-06A,TCGA-EE-A2MC-06A,TCGA-D3-A8GQ-06A,TCGA-GN-A26D-06A,TCGA-FS-A4F9-06A,TCGA-EE-A3JI-06A,TCGA-EE-A2GT-06A,TCGA-D3-A8GC-06A,TCGA-WE-A8ZN-06A,TCGA-3N-A9WB-06A,TCGA-EB-A44R-06A,TCGA-FS-A1ZM-06A,TCGA-EB-A5SH-06A,TCGA-DA-A3F5-06A,TCGA-ER-A193-06A,TCGA-EE-A2GU-06A,TCGA-FS-A4F8-06A,TCGA-EB-A44O-01A,TCGA-EE-A180-06A,TCGA-GN-A4U3-06A,TCGA-EE-A29L-06A,TCGA-EB-A3HV-01A,TCGA-EE-A2GB-06A,TCGA-EE-A2GK-06A,TCGA-EE-A181-06A,TCGA-DA-A1I8-06A,TCGA-D3-A8GO-06A,TCGA-EE-A2M7-06A,TCGA-EE-A2GH-06A,TCGA-D3-A51J-06A,TCGA-EE-A17Z-06A,TCGA-EB-A82B-01A,TCGA-Z2-AA3V-06A,TCGA-XV-A9W5-01A,TCGA-YG-AA3N-01A,TCGA-BF-AAP6-01A,TCGA-FR-A3R1-01A,TCGA-D3-A5GU-06A,TCGA-W3-AA1Q-06A,TCGA-BF-A1PV-01A,TCGA-EE-A29C-06A,TCGA-GF-A3OT-06A,TCGA-DA-A1I4-06A,TCGA-BF-A3DN-01A,TCGA-BF-AAP4-01A,TCGA-EE-A20I-06A,TCGA-LH-A9QB-06A,TCGA-GN-A262-06A,TCGA-ER-A2NF-01A,TCGA-ER-A2NF-06A,TCGA-EE-A2A1-06A,TCGA-EB-A5UN-06A,TCGA-D3-A2JG-06A,TCGA-EE-A3JE-06A,TCGA-XV-AAZW-01A,TCGA-D3-A2JP-06A,TCGA-D3-A1Q3-06A,TCGA-ER-A19F-06A,TCGA-D3-A51E-06A,TCGA-D3-A1Q9-06A,TCGA-FS-A1ZP-06A,TCGA-EB-A42Y-01A,TCGA-WE-A8ZY-06A,TCGA-EE-A20C-06A,GTEX-111CU-1126-SM-5EGIM,GTEX-111CU-1926-SM-5GZYZ,GTEX-111FC-0126-SM-5N9DL,GTEX-111FC-2526-SM-5GZXU,GTEX-111VG-0008-SM-5Q5BG,GTEX-111VG-1626-SM-5EGIO,GTEX-111VG-2426-SM-5GZXD,GTEX-111YS-0008-SM-5Q5BH,GTEX-111YS-1526-SM-5GZYW,GTEX-1122O-0008-SM-5QGR2,GTEX-1122O-2126-SM-5EGIR,GTEX-1128S-2326-SM-5GZZY,GTEX-113IC-0008-SM-5QGRF,GTEX-113IC-0126-SM-5HL6T,GTEX-113JC-0008-SM-5QGR6,GTEX-113JC-2326-SM-5EQ4E,GTEX-117XS-2726-SM-5N9BL,GTEX-117YW-0008-SM-5QGRD,GTEX-117YW-2626-SM-5GZZH,GTEX-117YX-1926-SM-5GIEC,GTEX-117YX-2326-SM-5H12W,GTEX-1192W-0008-SM-5QGRE,GTEX-1192X-0008-SM-5Q5B7,GTEX-1192X-0226-SM-5H12D,GTEX-1192X-2726-SM-5N9DN,GTEX-11DXW-0226-SM-5H122,GTEX-11DXW-0826-SM-5H118,GTEX-11DXX-0008-SM-5Q5B8,GTEX-11DXX-2126-SM-5PNYR,GTEX-11DXX-2426-SM-5GZZW,GTEX-11DXY-0008-SM-5QGR4,GTEX-11DXY-0126-SM-5H11Q,GTEX-11DXY-2626-SM-5GIE7,GTEX-11DXZ-2026-SM-5987S,GTEX-11DXZ-2326-SM-5EGGV,GTEX-11DYG-0008-SM-5QGR5,GTEX-11DYG-0126-SM-59883,GTEX-11DYG-1526-SM-5A5JS,GTEX-11DZ1-0008-SM-5QGR3,GTEX-11DZ1-0126-SM-5985Q,GTEX-11DZ1-2426-SM-5GZZX,GTEX-11EI6-0008-SM-5QGR7,GTEX-11EI6-0126-SM-5985R,GTEX-11EI6-2826-SM-5H11D,GTEX-11EM3-1226-SM-5N9DD,GTEX-11EM3-2426-SM-59861,GTEX-11EMC-0008-SM-5Q5DR,GTEX-11EMC-2926-SM-5EQ4F,GTEX-11EQ8-0008-SM-5Q5DJ,GTEX-11EQ8-0126-SM-5EQ54,GTEX-11EQ8-0926-SM-5H12V,GTEX-11EQ9-0008-SM-5Q5DK,GTEX-11EQ9-1626-SM-5PNY8,GTEX-11EQ9-2426-SM-5HL5T,GTEX-11GS4-0008-SM-5QGRA,GTEX-11GS4-2726-SM-5A5LE,GTEX-11GSO-2426-SM-5A5LY,GTEX-11GSP-0008-SM-5Q5DM,GTEX-11H98-0126-SM-5EGHG,GTEX-11I78-0008-SM-5Q5DI,GTEX-11ILO-0008-SM-5QGR9,GTEX-11ILO-0126-SM-5A5LN,GTEX-11ILO-0626-SM-5A5LO,GTEX-11LCK-0008-SM-5Q5BB,GTEX-11LCK-1026-SM-5A5KB,GTEX-11LCK-2226-SM-5HL4Q,GTEX-11NSD-2226-SM-5986V,GTEX-11NUK-0126-SM-5A5L3,GTEX-11NUK-2726-SM-5A5MC,GTEX-11NV4-0008-SM-5Q5BA,GTEX-11O72-0008-SM-5Q5DN,GTEX-11O72-0126-SM-59887,GTEX-11O72-0626-SM-5PNYE,GTEX-11OC5-0126-SM-5HL6A,GTEX-11OF3-0008-SM-5S2NH,GTEX-11OF3-0126-SM-5PNYF,GTEX-11OF3-2626-SM-5GU7F,GTEX-11ONC-0008-SM-5S2MG,GTEX-11P7K-1126-SM-5HL4L,GTEX-11P7K-2126-SM-5GU7G,GTEX-11P81-0008-SM-5S2OT,GTEX-11P81-2226-SM-5PNYI,GTEX-11P81-2326-SM-59875,GTEX-11P82-0008-SM-5S2MS,GTEX-11P82-1626-SM-59879,GTEX-11PRG-0008-SM-5S2N5,GTEX-11TT1-1826-SM-5EQLV,GTEX-11TT1-2526-SM-5EGIB,GTEX-11TTK-0008-SM-5S2RU,GTEX-11TTK-0126-SM-5987B,GTEX-11TUW-0008-SM-5SI6S,GTEX-11TUW-0626-SM-5LU9M,GTEX-11TUW-2726-SM-5EQLC,GTEX-11UD1-0008-SM-5S2P6,GTEX-11UD1-0126-SM-5PNYG,GTEX-11VI4-1126-SM-5EQMD,GTEX-11VI4-1726-SM-5CVLH,GTEX-11WQC-0008-SM-5SI6R,GTEX-11WQC-1826-SM-5GU59,GTEX-11WQC-2526-SM-5CVLE,GTEX-11WQK-0008-SM-5SI6T,GTEX-11WQK-1026-SM-5EQLX,GTEX-11XUK-0008-SM-5S2WD,GTEX-11XUK-2026-SM-5EQLF,GTEX-11ZTS-0008-SM-5S2VC,GTEX-11ZTS-0126-SM-5EQ6M,GTEX-11ZTT-0008-SM-5S2TZ,GTEX-11ZTT-2126-SM-5CVLO,GTEX-11ZTT-2426-SM-5EQLS,GTEX-11ZU8-0008-SM-5S2VO,GTEX-11ZU8-0126-SM-5EQ58,GTEX-11ZU8-2526-SM-5EQKI,GTEX-11ZUS-0008-SM-5S2UO,GTEX-11ZUS-2626-SM-5FQUR,GTEX-11ZVC-2526-SM-5FQTE,GTEX-1211K-1526-SM-5FQU4,GTEX-1211K-2026-SM-5EQ4Z,GTEX-12126-0008-SM-5S2UC,GTEX-12126-0326-SM-5PNW3,GTEX-12126-0826-SM-5FQTZ,GTEX-1212Z-0126-SM-59HK4,GTEX-1212Z-2526-SM-5EGKP,GTEX-12584-0126-SM-5EGKQ,GTEX-12584-0726-SM-5FQTK,GTEX-12696-0126-SM-5EQ4L,GTEX-12696-2426-SM-5EQ6H,GTEX-1269C-2526-SM-5EGJ3,GTEX-12C56-1526-SM-5FQUQ,GTEX-12C56-1726-SM-5EQ61,GTEX-12KS4-0326-SM-5EQ41,GTEX-12KS4-2126-SM-5FQUT,GTEX-12WS9-0126-SM-5EGL7,GTEX-12WS9-0326-SM-59HJV,GTEX-12WSA-0226-SM-5BC5V,GTEX-12WSB-0126-SM-59HJN,GTEX-12WSB-2926-SM-59HKL,GTEX-12WSC-0126-SM-5EQ4P,GTEX-12WSC-2826-SM-5BC5Y,GTEX-12WSD-0126-SM-59HKN,GTEX-12WSD-0626-SM-5GCMW,GTEX-12WSH-0008-SM-5S2V1,GTEX-12WSH-1526-SM-5BC5W,GTEX-12WSJ-1126-SM-5LZVJ,GTEX-12WSJ-1826-SM-5GCNY,GTEX-12WSK-2126-SM-5CVNC,GTEX-12WSK-2326-SM-5GCOH,GTEX-12WSL-2026-SM-5GCML,GTEX-12WSL-2526-SM-5GCNJ,GTEX-12WSM-0008-SM-5S2VD,GTEX-12WSN-1426-SM-5GCO6,GTEX-12WSN-2326-SM-5DUVG,GTEX-12ZZX-0126-SM-5EGK9,GTEX-12ZZX-2426-SM-5GCOE,GTEX-12ZZY-0226-SM-5LZVE,GTEX-12ZZY-0726-SM-5EQ66,GTEX-12ZZZ-0626-SM-5DUXI,GTEX-13111-1626-SM-5EGJY,GTEX-13111-1826-SM-5GCP1,GTEX-13112-0126-SM-5P9IU,GTEX-13112-2826-SM-5DUWH,GTEX-13113-1626-SM-5EQ4I,GTEX-13113-1926-SM-5LZWG,GTEX-1313W-0126-SM-5LZUN,GTEX-1313W-0626-SM-5EQ4H,GTEX-1314G-1326-SM-5BC6E,GTEX-131XF-2126-SM-5DUWS,GTEX-131XF-2626-SM-5EQ6K,GTEX-131XH-0126-SM-5LZUY,GTEX-131XH-2226-SM-5DUXJ,GTEX-131XW-0626-SM-5PNVD,GTEX-131YS-0126-SM-5KM1M,GTEX-131YS-2826-SM-5EQ47,GTEX-132AR-0326-SM-5KM2C,GTEX-132NY-0326-SM-5IJBL,GTEX-133LE-1826-SM-5J1MV,GTEX-133LE-2326-SM-5K7W3,GTEX-1399Q-2326-SM-5KM2X,GTEX-1399R-1326-SM-5PNYS,GTEX-1399R-2726-SM-5IJBA,GTEX-1399S-0126-SM-5IJCF,GTEX-1399T-2826-SM-5KLYZ,GTEX-1399U-0008-SM-5S2VE,GTEX-1399U-1126-SM-5L3DB,GTEX-139D8-0226-SM-5KLZO,GTEX-139D8-1126-SM-5LU8W,GTEX-139T4-0008-SM-5S2WF,GTEX-139T4-0226-SM-5HL5S,GTEX-139T8-0126-SM-5K7XZ,GTEX-139T8-0626-SM-5KLZX,GTEX-139TS-2126-SM-5K7XC,GTEX-139TS-2826-SM-5J1OO,GTEX-139TT-0126-SM-5K7Y5,GTEX-139TT-2126-SM-5LZWC,GTEX-139TU-0126-SM-5K7WH,GTEX-139TU-0726-SM-5L3EK,GTEX-139UW-0326-SM-5J1ML,GTEX-139UW-2826-SM-5L3E7,GTEX-139YR-1026-SM-5LZYN,GTEX-13CF3-2426-SM-5IFGX,GTEX-13D11-0926-SM-5J2NC,GTEX-13FH7-1126-SM-5K7UG,GTEX-13FH7-2026-SM-5IJCR,GTEX-13FHO-0426-SM-5L3F5,GTEX-13FHP-0126-SM-5IJBG,GTEX-13FLV-0126-SM-5K7WT,GTEX-13FTW-0326-SM-5K7UW,GTEX-13FTW-2626-SM-5K7WL,GTEX-13FTX-1526-SM-5K7VJ,GTEX-13FTY-0526-SM-5L3EV,GTEX-13FTY-2126-SM-5IFFB,GTEX-13FXS-0226-SM-5IJCK,GTEX-13G51-1826-SM-5KLZH,GTEX-13G51-2526-SM-5LZYK,GTEX-13IVO-0126-SM-5J1NG,GTEX-13IVO-0726-SM-5LZYV,GTEX-13JUV-2026-SM-5K7UA,GTEX-13JVG-0726-SM-5KM16,GTEX-13N11-2326-SM-5IJBF,GTEX-13N11-2526-SM-5K7UE,GTEX-13N1W-0126-SM-5K7VT,GTEX-13N2G-0226-SM-5K7VF,GTEX-13N2G-2626-SM-5J1OT,GTEX-13NYB-0126-SM-5J1MD,GTEX-13NYB-2526-SM-5K7Z6,GTEX-13NYC-0326-SM-5K7WP,GTEX-13NYS-0626-SM-5L3F1,GTEX-13NZ8-0826-SM-5MR3I,GTEX-13NZ9-2626-SM-5L3FK,GTEX-13NZB-2526-SM-5J1OM,GTEX-13O1R-0126-SM-5L3EH,GTEX-13O21-1426-SM-5K7XI,GTEX-13O3O-2326-SM-5IJD6,GTEX-13O3P-0126-SM-5KM4S,GTEX-13O3Q-2426-SM-5IJBR,GTEX-13OVG-1626-SM-5J1NF,GTEX-13OVH-0126-SM-5MR4B,GTEX-13OVH-0526-SM-5L3E6,GTEX-13OVI-1426-SM-5L3EY,GTEX-13OVI-2726-SM-5KM56,GTEX-13OVJ-0126-SM-5KM36,GTEX-13OVJ-0826-SM-5J1OK,GTEX-13OVL-0126-SM-5L3GJ,GTEX-13OVL-0226-SM-5L3E9,GTEX-13OW5-0126-SM-5MR3A,GTEX-13OW5-2326-SM-5L3HO,GTEX-13OW6-0426-SM-5L3HM,GTEX-13OW6-2726-SM-5J2OE,GTEX-13OW7-0126-SM-5MR3B,GTEX-13OW7-0426-SM-5K7VK,GTEX-13OW8-1026-SM-5J1NQ,GTEX-13OW8-1326-SM-5J1OW,GTEX-13PDP-0126-SM-5L3HD,GTEX-13PDP-0726-SM-5L3HP,GTEX-13PVQ-0126-SM-5SIB4,GTEX-13PVQ-0626-SM-5LU47,GTEX-13PVR-0426-SM-5RQK2,GTEX-13PVR-2326-SM-5QGR1,GTEX-13RTJ-2426-SM-5S2Q2,GTEX-13S7M-0126-SM-5SI6A,GTEX-13SLW-0126-SM-5SI6C,GTEX-13SLW-0626-SM-5Q5ER,GTEX-13SLX-0526-SM-5S2ON,GTEX-13U4I-0126-SM-5LU38,GTEX-13U4I-2226-SM-5LU5H,GTEX-13VXT-0126-SM-5LU4I,GTEX-13VXT-1926-SM-5K7UO,GTEX-13VXU-0126-SM-5SI9F,GTEX-13VXU-0626-SM-5L3F9,GTEX-13W3W-0726-SM-5IJDQ,GTEX-13W3W-2426-SM-5LU5B,GTEX-13W46-0226-SM-5SIAG,GTEX-13X6I-0626-SM-5QGP9,GTEX-13X6I-1826-SM-5SIAO,GTEX-13X6J-0126-SM-5QGOU,GTEX-13X6J-0626-SM-5LU5F,GTEX-13X6K-0626-SM-5LU5D,GTEX-13YAN-0326-SM-5O9DF,GTEX-144FL-0626-SM-5LU43,GTEX-144GN-2326-SM-5LU4F,GTEX-144GO-2026-SM-5O99P,GTEX-145LS-0126-SM-5QGP1,GTEX-145LT-1726-SM-5QGP3,GTEX-145LV-2126-SM-5LU8N,GTEX-145ME-1726-SM-5Q5EU,GTEX-145ME-1826-SM-5SI9G,GTEX-145MF-0626-SM-5LUAI,GTEX-145MG-1526-SM-5Q5EM,GTEX-145MH-2826-SM-5RQJF,GTEX-145MI-0526-SM-5O9A8,GTEX-145MI-0626-SM-5SI8S,GTEX-145MN-1526-SM-5SI9T,GTEX-145MN-2226-SM-5SIAU,GTEX-145MO-2826-SM-5LU96,GTEX-146FH-0126-SM-5QGPP,GTEX-146FQ-0126-SM-5NQA9,GTEX-146FQ-2126-SM-5RQHU,GTEX-146FR-1326-SM-5SIAJ,GTEX-14753-0426-SM-5NQAM,GTEX-14753-0726-SM-5QGQO,GTEX-147F3-0526-SM-5SI98,GTEX-147F3-1726-SM-5SIAW,GTEX-147F4-0226-SM-5QGPW,GTEX-147GR-0526-SM-5S2MY,GTEX-148VI-1626-SM-5SI6E,GTEX-148VJ-0626-SM-5LUAW,GTEX-1497J-0226-SM-5QGPU,GTEX-14A5H-0426-SM-5QGQF,GTEX-14A5H-0826-SM-5QGPJ,GTEX-14A6H-0126-SM-5QGPK,GTEX-14A6H-2026-SM-5Q5DD,GTEX-14AS3-1526-SM-5Q5ED,GTEX-14B4R-1326-SM-5Q5EZ,GTEX-14BIN-1126-SM-5RQJZ,GTEX-14BMU-1226-SM-5S2OR,GTEX-14BMV-0126-SM-5S2PO,GTEX-14C38-0726-SM-5SI6M,GTEX-14C39-1726-SM-5RQIL,GTEX-14C5O-0126-SM-5SI6N,GTEX-14DAQ-0126-SM-5S2MQ,GTEX-14DAR-2026-SM-5S2O3,GTEX-14E6C-0126-SM-5RQIP,GTEX-14E6E-1826-SM-5S2R7,GTEX-N7MS-0008-SM-4E3JI,GTEX-N7MS-0225-SM-4E3HO,GTEX-NFK9-0008-SM-4E3JE,GTEX-NFK9-0226-SM-2HMKQ,GTEX-NL3G-0008-SM-4E3JX,GTEX-NL4W-0008-SM-4E3I2,GTEX-NPJ7-0008-SM-4E3JS,GTEX-NPJ8-0126-SM-2YUNR,GTEX-O5YT-0008-SM-4E3IQ,GTEX-O5YT-0126-SM-48TBW,GTEX-O5YU-0008-SM-4E3I7,GTEX-O5YW-0008-SM-4E3IE,GTEX-O5YW-0126-SM-3LK6D,GTEX-OHPJ-0008-SM-4E3JG,GTEX-OHPK-0008-SM-4E3JL,GTEX-OHPL-0008-SM-4E3I9,GTEX-OHPL-0126-SM-2HMJ7,GTEX-OHPM-0008-SM-4E3IP,GTEX-OHPM-0126-SM-2YUN9,GTEX-OIZG-0008-SM-4E3J2,GTEX-OIZG-0726-SM-33HBL,GTEX-OIZH-0126-SM-2HMIS,GTEX-OIZI-0008-SM-2XCFD,GTEX-OOBJ-0008-SM-3NB26,GTEX-OOBK-0008-SM-3NB27,GTEX-OOBK-0126-SM-2YUND,GTEX-OXRK-0008-SM-3NB28,GTEX-OXRK-0226-SM-2YUN1,GTEX-OXRK-0226-SM-3NB2G,GTEX-OXRL-0008-SM-3NB29,GTEX-OXRL-0126-SM-2YUMP,GTEX-OXRN-0126-SM-48TDM,GTEX-OXRO-0126-SM-2YUN4,GTEX-OXRP-0126-SM-3NB32,GTEX-OXRP-0126-SM-48TDI,GTEX-P44H-0008-SM-48TDW,GTEX-P4PP-0008-SM-48TDV,GTEX-P4PP-0126-SM-3LK69,GTEX-P4PQ-0008-SM-48TDX,GTEX-P4PQ-0126-SM-2S1NM,GTEX-P4QR-0008-SM-48TE2,GTEX-P4QR-0326-SM-5SI8P,GTEX-P4QS-0008-SM-48TDY,GTEX-P4QT-0008-SM-48TDZ,GTEX-P4QT-0126-SM-2I3FL,GTEX-P78B-0008-SM-48TE1,GTEX-PLZ4-0008-SM-48TE6,GTEX-PLZ4-0126-SM-2S1OG,GTEX-PLZ4-0126-SM-5SI8O,GTEX-PLZ5-2026-SM-2S1O4,GTEX-PLZ6-0008-SM-48TD5,GTEX-PLZ6-1426-SM-2S1OQ,GTEX-PLZ6-1426-SM-5S2TR,GTEX-POYW-0008-SM-48TE4,GTEX-PSDG-0008-SM-48TE5,GTEX-PSDG-0226-SM-33HC1,GTEX-PVOW-0008-SM-48TE8,GTEX-PVOW-0126-SM-2XCFA,GTEX-PW2O-0008-SM-48TEB,GTEX-PWCY-0008-SM-48TE9,GTEX-PWCY-1826-SM-2S1OK,GTEX-PWCY-1826-SM-5SI7U,GTEX-PWN1-0008-SM-48TEA,GTEX-PWN1-0126-SM-2I3FK,GTEX-PWO3-1526-SM-48TCM,GTEX-PWOO-0008-SM-48TDU,GTEX-PX3G-0008-SM-48U2L,GTEX-Q2AH-0008-SM-48U2J,GTEX-Q2AI-0008-SM-48U2H,GTEX-Q2AI-1326-SM-2S1PL,GTEX-Q734-0008-SM-48U2I,GTEX-QCQG-0008-SM-48U2G,GTEX-QCQG-1726-SM-3GIJ9,GTEX-QDT8-0008-SM-48U2F,GTEX-QDT8-0126-SM-48TZ1,GTEX-QDVJ-0008-SM-48U2E,GTEX-QDVN-2026-SM-3GAEP,GTEX-QEG4-0008-SM-48TYZ,GTEX-QEG4-0226-SM-2S1PY,GTEX-QEG5-0008-SM-4R1KL,GTEX-QEL4-0008-SM-447AZ,GTEX-QESD-0008-SM-447B2,GTEX-QESD-1426-SM-2S1R9,GTEX-QLQ7-0008-SM-447AW,GTEX-QLQ7-1626-SM-2S1R8,GTEX-QLQW-1126-SM-2S1Q8,GTEX-QMR6-0008-SM-447AV,GTEX-QMRM-0008-SM-447B1,GTEX-QV31-0008-SM-447AT,GTEX-QV44-0008-SM-447AX,GTEX-QV44-1926-SM-2S1RF,GTEX-QVJO-0008-SM-447AU,GTEX-QVJO-1626-SM-2S1QW,GTEX-QXCU-0008-SM-48FCH,GTEX-R3RS-0008-SM-48FF1,GTEX-R3RS-0126-SM-3GIJL,GTEX-R45C-0008-SM-48FF2,GTEX-R53T-0008-SM-48FEW,GTEX-R55D-0008-SM-48FEV,GTEX-R55E-0008-SM-48FCG,GTEX-R55E-0126-SM-2TC5Y,GTEX-R55F-0008-SM-48FE6,GTEX-R55F-0126-SM-48FCK,GTEX-R55G-0008-SM-48FEX,GTEX-R55G-2526-SM-2TC6D,GTEX-RM2N-1426-SM-2TF4H,GTEX-RN64-0008-SM-48FEZ,GTEX-RN64-0126-SM-2TC68,GTEX-RNOR-0008-SM-48FEY,GTEX-RNOR-0126-SM-2TF57,GTEX-RTLS-0008-SM-48FET,GTEX-RU72-0008-SM-46MV8,GTEX-RU72-0926-SM-2TF6B,GTEX-RUSQ-1526-SM-2TF62,GTEX-RVPU-0008-SM-3NM8B,GTEX-RVPU-2226-SM-2XCAQ,GTEX-RVPV-0008-SM-47JYW,GTEX-RWS6-0008-SM-47JYV,GTEX-RWSA-0008-SM-47JYX,GTEX-RWSA-0126-SM-2XCBB,GTEX-S33H-0008-SM-4AD6C,GTEX-S341-0008-SM-4AD6D,GTEX-S3XE-0008-SM-3NM8O,GTEX-S3XE-1726-SM-3K2AM,GTEX-S4P3-0008-SM-3NM8R,GTEX-S4Q7-0008-SM-3NM8A,GTEX-S4UY-0008-SM-3NM8H,GTEX-S7PM-0008-SM-3NM9Q,GTEX-S7PM-0126-SM-4AD6S,GTEX-S7SF-1626-SM-3K2AY,GTEX-S95S-0008-SM-4AT5M,GTEX-SE5C-0008-SM-4B64J,GTEX-SIU7-1726-SM-2XCDZ,GTEX-SIU8-0008-SM-4BRUC,GTEX-SIU8-0126-SM-2XCDT,GTEX-SJXC-0008-SM-4DM7G,GTEX-SJXC-0126-SM-2XCFF,GTEX-SN8G-0008-SM-4DM4X,GTEX-SNMC-0008-SM-4DM5A,GTEX-SNOS-0008-SM-4DM6I,GTEX-SSA3-0008-SM-47JWJ,GTEX-SUCS-0008-SM-4DM53,GTEX-SUCS-1926-SM-32PM3,GTEX-T2IS-0008-SM-4DM75,GTEX-T2IS-0126-SM-4DM6O,GTEX-T2YK-0008-SM-4DM6M,GTEX-T5JC-0426-SM-32PLO,GTEX-T5JW-0008-SM-4DM5X,GTEX-T6MN-0008-SM-4DM7H,GTEX-T6MN-0126-SM-32PLP,GTEX-T6MO-1626-SM-32QOM,GTEX-T8EM-1026-SM-3DB7M,GTEX-TKQ2-0008-SM-4DM5L,GTEX-TMKS-0126-SM-3DB7S,GTEX-TML8-0008-SM-4DXUI,GTEX-TML8-1926-SM-32QOS,GTEX-TMMY-0226-SM-33HBA,GTEX-TMZS-0008-SM-47JWM,GTEX-TMZS-0126-SM-3DB9Q,GTEX-TSE9-0008-SM-4DXT8,GTEX-TSE9-0126-SM-3DB83,GTEX-U3ZG-0008-SM-47JWL,GTEX-U3ZH-0008-SM-4DXT2,GTEX-U3ZM-1526-SM-3DB9D,GTEX-U3ZN-0008-SM-4DXTL,GTEX-U4B1-0008-SM-4DXUW,GTEX-U4B1-1826-SM-4DXSU,GTEX-U8T8-0008-SM-4DXSP,GTEX-U8T8-0126-SM-3DB94,GTEX-U8XE-0008-SM-4E3K4,GTEX-U8XE-0226-SM-4E3J3,GTEX-U8XE-0326-SM-3DB8P,GTEX-UJHI-0008-SM-4IHL1,GTEX-UJHI-1526-SM-3DB99,GTEX-UJMC-0008-SM-4IHKK,GTEX-UPJH-0226-SM-3GADV,GTEX-UPK5-0008-SM-4IHJD,GTEX-UPK5-0726-SM-4IHL7,GTEX-UTHO-0008-SM-4JBID,GTEX-V1D1-0008-SM-4JBIJ,GTEX-V1D1-2026-SM-3GAF4,GTEX-V1D1-2226-SM-3NMAX,GTEX-VJYA-1526-SM-3GIJV,GTEX-VUSG-0008-SM-4KL24,GTEX-VUSG-2326-SM-4KL1U,GTEX-VUSG-2526-SM-4KL1V,GTEX-VUSH-0008-SM-47JWK,GTEX-W5WG-0008-SM-4KL25,GTEX-W5WG-1826-SM-4KL2Y,GTEX-W5X1-0008-SM-4LMKA,GTEX-W5X1-2526-SM-3GILC,GTEX-WCDI-0008-SM-47JYE,GTEX-WEY5-0008-SM-4LMKC,GTEX-WEY5-2326-SM-3GIKK,GTEX-WFG7-0008-SM-4LMKB,GTEX-WFG7-2026-SM-5SI7P,GTEX-WFJO-0008-SM-4LVN7,GTEX-WFON-1926-SM-3LK7L,GTEX-WFON-2126-SM-3LK7O,GTEX-WH7G-0008-SM-4LVNM,GTEX-WH7G-2026-SM-3NMBL,GTEX-WH7G-2326-SM-3NMBC,GTEX-WHPG-2626-SM-3NMBR,GTEX-WHSB-0008-SM-4M1ZP,GTEX-WHSB-1326-SM-3LK6W,GTEX-WHSE-0008-SM-4M1ZO,GTEX-WHSE-0126-SM-3NMBT,GTEX-WHWD-0008-SM-4OOSU,GTEX-WHWD-1826-SM-3LK6I,GTEX-WI4N-0008-SM-4OOSV,GTEX-WI4N-1026-SM-3LK7N,GTEX-WI4N-2726-SM-3LK7Y,GTEX-WK11-0008-SM-4OOSX,GTEX-WK11-2726-SM-3NMAQ,GTEX-WL46-0008-SM-4OOSW,GTEX-WOFL-0008-SM-4OOSZ,GTEX-WOFL-0126-SM-3MJG2,GTEX-WQUQ-0008-SM-4OOT1,GTEX-WQUQ-0426-SM-3MJFU,GTEX-WRHK-0008-SM-4MVPA,GTEX-WRHK-1426-SM-3MJF9,GTEX-WRHU-0008-SM-4MVPB,GTEX-WRHU-2826-SM-3MJG8,GTEX-WVJS-0008-SM-4MVPC,GTEX-WVJS-0126-SM-4MVOT,GTEX-WVLH-0008-SM-4MVPD,GTEX-WWTW-0008-SM-4MVPE,GTEX-WWYW-0008-SM-4MVPF,GTEX-WXYG-0008-SM-4ONDU,GTEX-WXYG-2026-SM-4E3IY,GTEX-WXYG-2326-SM-4E3I6,GTEX-WY7C-0008-SM-4ONDW,GTEX-WY7C-2126-SM-3NB2R,GTEX-WY7C-2326-SM-3NB2U,GTEX-WYBS-0008-SM-4ONDX,GTEX-WYBS-0626-SM-3NMAS,GTEX-WYJK-0008-SM-4ONDV,GTEX-WYJK-0126-SM-3NMAB,GTEX-WYJK-0526-SM-3NM8Z,GTEX-WYVS-0008-SM-4ONDY,GTEX-WYVS-1626-SM-3NM9R,GTEX-WYVS-2126-SM-3NMA3,GTEX-WZTO-0008-SM-4PQZZ,GTEX-WZTO-0126-SM-3NM95,GTEX-X261-0008-SM-4PR11,GTEX-X261-0126-SM-3NMD6,GTEX-X3Y1-0008-SM-4PR12,GTEX-X3Y1-2026-SM-3P5YM,GTEX-X4EO-0008-SM-4QASS,GTEX-X4EO-0326-SM-3P5YO,GTEX-X4EO-2926-SM-4E3JH,GTEX-X4EP-0008-SM-4PQYO,GTEX-X4EP-0126-SM-3P5YV,GTEX-X4EP-0626-SM-3P621,GTEX-X4LF-0008-SM-4QAST,GTEX-X4XX-0126-SM-3NMC2,GTEX-X4XY-0008-SM-46MVL,GTEX-X4XY-0226-SM-4E3IZ,GTEX-X585-0008-SM-46MU4,GTEX-X585-0226-SM-4QAS2,GTEX-X585-2426-SM-46MW2,GTEX-X5EB-0008-SM-46MU3,GTEX-X5EB-2226-SM-46MW4,GTEX-X62O-0126-SM-4E3JN,GTEX-X638-0008-SM-47JZ7,GTEX-X638-0126-SM-47JZ8,GTEX-X88G-0008-SM-47JWN,GTEX-X8HC-0008-SM-46MU6,GTEX-X8HC-0126-SM-4E3JW,GTEX-X8HC-0626-SM-4E3HQ,GTEX-XAJ8-0008-SM-46MU7,GTEX-XAJ8-0826-SM-47JY6,GTEX-XAJ8-1426-SM-47JYM,GTEX-XBEC-0726-SM-4QARZ,GTEX-XBED-1926-SM-47JYP,GTEX-XBED-2226-SM-47JYQ,GTEX-XBEW-0008-SM-4AT3Y,GTEX-XBEW-0626-SM-4QASP,GTEX-XBEW-1126-SM-4QARW,GTEX-XGQ4-0008-SM-4AT3Z,GTEX-XK95-0008-SM-4AT5G,GTEX-XK95-0226-SM-4AT58,GTEX-XLM4-0008-SM-4AT4W,GTEX-XMD1-0008-SM-4AT41,GTEX-XMD2-0008-SM-4WWE7,GTEX-XMD3-0008-SM-4AT4V,GTEX-XOT4-0008-SM-4B664,GTEX-XOT4-0626-SM-4B66L,GTEX-XOTO-0126-SM-4B66N,GTEX-XOTO-0726-SM-4B659,GTEX-XPT6-0008-SM-4B64Q,GTEX-XPVG-2126-SM-4B667,GTEX-XPVG-2626-SM-4B669,GTEX-XQ3S-1426-SM-4BOPR,GTEX-XQ3S-1526-SM-4BOOC,GTEX-XQ8I-0008-SM-4WAWM,GTEX-XQ8I-0426-SM-4BOPO,GTEX-XQ8I-0926-SM-4BOOF,GTEX-XUJ4-0008-SM-4BOQI,GTEX-XUJ4-1826-SM-4BOOU,GTEX-XUW1-0008-SM-4BOQH,GTEX-XUW1-0426-SM-4BOOT,GTEX-XUW1-0926-SM-4BONX,GTEX-XUYS-0008-SM-47JYZ,GTEX-XUYS-0126-SM-47JWZ,GTEX-XUZC-0008-SM-4BOQG,GTEX-XUZC-1726-SM-4BRWS,GTEX-XV7Q-0008-SM-4BRWL,GTEX-XV7Q-1826-SM-4BRUV,GTEX-XV7Q-2526-SM-4BRV9,GTEX-XXEK-1626-SM-4BRUZ,GTEX-XXEK-2226-SM-4BRUM,GTEX-XYKS-0008-SM-4BRW6,GTEX-XYKS-2126-SM-4E3IB,GTEX-Y111-0008-SM-4SOJ3,GTEX-Y111-0126-SM-4SOIV,GTEX-Y111-0626-SM-4SOIT,GTEX-Y114-0008-SM-4TT8X,GTEX-Y114-2126-SM-4TT8B,GTEX-Y114-2426-SM-4TT8A,GTEX-Y3I4-0008-SM-4TT21,GTEX-Y3I4-1726-SM-4TT89,GTEX-Y3I4-2126-SM-4TT7C,GTEX-Y3IK-0008-SM-4WWDZ,GTEX-Y3IK-1626-SM-4YCF5,GTEX-Y3IK-2426-SM-4WWDU,GTEX-Y5LM-1926-SM-5RQJH,GTEX-Y5V5-0126-SM-5S2NW,GTEX-Y5V5-2326-SM-4V6GA,GTEX-Y5V6-0008-SM-4V6FV,GTEX-Y5V6-2326-SM-4VDSA,GTEX-Y5V6-2426-SM-4VDSB,GTEX-Y8DK-0008-SM-4RGM2,GTEX-Y8DK-0126-SM-4TT3L,GTEX-Y8E4-0008-SM-4V6FW,GTEX-Y8E4-0626-SM-4WWDL,GTEX-Y8E4-2026-SM-5IFJB,GTEX-Y8E5-0008-SM-57WBA,GTEX-Y8LW-0008-SM-4V6G5,GTEX-Y8LW-1526-SM-5IFHL,GTEX-Y8LW-1826-SM-5S2MV,GTEX-Y9LG-0008-SM-4VBRJ,GTEX-Y9LG-1126-SM-4VBQ7,GTEX-YB5E-0008-SM-4VDT7,GTEX-YB5K-0008-SM-4VDT8,GTEX-YB5K-2026-SM-4VDT3,GTEX-YB5K-2126-SM-4WWDJ,GTEX-YBZK-0008-SM-59HL6,GTEX-YEC3-1326-SM-4WWEL,GTEX-YEC3-1326-SM-5PNXV,GTEX-YEC4-0008-SM-4W1YR,GTEX-YEC4-1826-SM-4W1YP,GTEX-YEC4-2126-SM-5IFJH,GTEX-YECK-0008-SM-4W1ZG,GTEX-YECK-0326-SM-4W1YS,GTEX-YF7O-0008-SM-4W1ZS,GTEX-YF7O-1526-SM-5IFI6,GTEX-YFC4-0008-SM-4RGM3,GTEX-YFC4-0126-SM-5CVLY,GTEX-YFCO-1226-SM-5LUAT,GTEX-YJ89-0008-SM-4RGM4,GTEX-YJ89-0126-SM-4TT3X,GTEX-YJ8A-0426-SM-5IFID,GTEX-YJ8O-2526-SM-5HL85,GTEX-Z93S-0008-SM-4RGM5,GTEX-Z93S-0126-SM-5HL7M,GTEX-Z93S-1626-SM-5CVMB,GTEX-Z93T-0126-SM-5HL5N,GTEX-Z9EW-1626-SM-5CVMN,GTEX-ZA64-1026-SM-5HL8R,GTEX-ZAB4-0008-SM-4RGM6,GTEX-ZAB4-2126-SM-5HL8U,GTEX-ZAB5-1826-SM-5HL7C,GTEX-ZAB5-2626-SM-5KM3Y,GTEX-ZAJG-0126-SM-5HL94,GTEX-ZAK1-0126-SM-5IJD3,GTEX-ZAK1-0626-SM-5HL8E,GTEX-ZC5H-0008-SM-4WAX8,GTEX-ZC5H-0226-SM-4WAY9,GTEX-ZC5H-1526-SM-5HL9Y,GTEX-ZDTS-0008-SM-4E3I8,GTEX-ZDTS-0126-SM-4WAY5,GTEX-ZDTS-0826-SM-4WKHL,GTEX-ZDTT-0008-SM-4E3K5,GTEX-ZDTT-0426-SM-4WKFL,GTEX-ZDTT-2726-SM-4WKF8,GTEX-ZDXO-0008-SM-4E3HR,GTEX-ZDXO-3026-SM-5J1N5,GTEX-ZDXO-3126-SM-5IJDF,GTEX-ZDYS-0008-SM-4E3IX,GTEX-ZDYS-2026-SM-5HL5L,GTEX-ZDYS-2426-SM-4WKGI,GTEX-ZE7O-0126-SM-57WC1,GTEX-ZE7O-2726-SM-51MT5,GTEX-ZE9C-0008-SM-4E3K6,GTEX-ZE9C-2526-SM-5IJDR,GTEX-ZE9C-2726-SM-57WB5,GTEX-ZEX8-0008-SM-4E3JU,GTEX-ZEX8-2426-SM-4WKG4,GTEX-ZF28-0126-SM-4WKGK,GTEX-ZF29-0926-SM-4WKFZ,GTEX-ZF2S-0008-SM-4E3IK,GTEX-ZF2S-2326-SM-4WWCE,GTEX-ZGAY-0526-SM-4WWBB,GTEX-ZLFU-1826-SM-4WWBV,GTEX-ZLV1-1526-SM-4WWBC,GTEX-ZLWG-0008-SM-4E3J4,GTEX-ZLWG-0826-SM-59888,GTEX-ZP4G-0008-SM-4E3I4,GTEX-ZP4G-1426-SM-4WWCL,GTEX-ZP4G-2426-SM-57WEY,GTEX-ZPCL-0008-SM-4WWAU,GTEX-ZPCL-1126-SM-4WWFE,GTEX-ZPIC-0008-SM-4E3JF,GTEX-ZPIC-1726-SM-57WF2,GTEX-ZPU1-0008-SM-4E3IR,GTEX-ZPU1-1126-SM-4YCF3,GTEX-ZQG8-0008-SM-4YCE7,GTEX-ZQG8-1626-SM-5HL6H,GTEX-ZQUD-0008-SM-4YCCU,GTEX-ZQUD-1426-SM-57WER,GTEX-ZT9W-0008-SM-4YCDJ,GTEX-ZT9W-1126-SM-57WDR,GTEX-ZT9W-2426-SM-57WFJ,GTEX-ZT9X-0008-SM-4YCD7,GTEX-ZT9X-1526-SM-5DUXD,GTEX-ZTPG-0008-SM-4YCEK,GTEX-ZTPG-0326-SM-5O9AX,GTEX-ZTSS-0008-SM-4YCE8,GTEX-ZTSS-1426-SM-5985P,GTEX-ZTSS-1926-SM-57WEW,GTEX-ZTTD-0008-SM-51MQV,GTEX-ZTTD-2826-SM-4YCFA,GTEX-ZTX8-0008-SM-4YCDV,GTEX-ZTX8-1326-SM-4YCEL,GTEX-ZTX8-1426-SM-5DUVO,GTEX-ZU9S-0226-SM-5E441,GTEX-ZU9S-1826-SM-5NQ9E,GTEX-ZUA1-0008-SM-4YCEW,GTEX-ZUA1-2626-SM-5NQ92,GTEX-ZV68-0008-SM-4YCCV,GTEX-ZV68-0126-SM-59HKS,GTEX-ZV6S-0008-SM-4YCF9,GTEX-ZV7C-0008-SM-57WCL,GTEX-ZV7C-0926-SM-59HL1,GTEX-ZVE1-0008-SM-51MS9,GTEX-ZVE1-0726-SM-51MRN,GTEX-ZVE2-0226-SM-59HJB,GTEX-ZVE2-2826-SM-5GU51,GTEX-ZVP2-0008-SM-51MSL,GTEX-ZVP2-0326-SM-57WBP,GTEX-ZVT2-0126-SM-5GIDQ,GTEX-ZVT2-2526-SM-51MT1,GTEX-ZVT3-0008-SM-51MRI,GTEX-ZVT3-0126-SM-5GU6I,GTEX-ZVT4-0008-SM-57WCA,GTEX-ZVT4-0126-SM-51MS1,GTEX-ZVTK-0008-SM-57WDA,GTEX-ZVTK-0226-SM-51MRG,GTEX-ZVTK-0426-SM-51MRS,GTEX-ZVZO-0126-SM-5A5L9,GTEX-ZVZP-0008-SM-51MSX,GTEX-ZVZP-1226-SM-5GID7,GTEX-ZVZP-2426-SM-59HKJ,GTEX-ZVZQ-0008-SM-51MSK,GTEX-ZVZQ-0326-SM-59HLL,GTEX-ZWKS-0126-SM-5SIAA,GTEX-ZWKS-0626-SM-5GIDV,GTEX-ZXES-0008-SM-57WCX,GTEX-ZXG5-0008-SM-57WDB,GTEX-ZXG5-0126-SM-5GIEU,GTEX-ZXG5-2126-SM-59HKD,GTEX-ZY6K-1426-SM-5GZX2,GTEX-ZY6K-1826-SM-5GZXK,GTEX-ZYFC-0426-SM-5GICQ,GTEX-ZYFD-0126-SM-5GIDL,GTEX-ZYFD-0626-SM-5E44E,GTEX-ZYFG-1526-SM-5GZYM,GTEX-ZYFG-2326-SM-5E44B,GTEX-ZYT6-0226-SM-5NQ6T,GTEX-ZYT6-2326-SM-5GZY3,GTEX-ZYVF-0926-SM-5E44J,GTEX-ZYW4-0126-SM-5E44A,GTEX-ZYW4-0626-SM-59HJR,GTEX-ZYWO-2226-SM-5GZXR,GTEX-ZYY3-2926-SM-5GIEB,GTEX-ZZ64-1026-SM-5GZXG,GTEX-ZZ64-1726-SM-5GZYB,GTEX-ZZPT-0226-SM-5E43X A1BG,6.754887502,4,5.044394119,5.247927513,5.977279923,5.044394119,5.491853096,5.754887502,6.357552005,6.22881869,5.392317423,5.807354922,4.807354922,5.129283017,5.285402219,4.857980995,5.169925001,6.129283017,4.95419631,5.700439718,6.475733431,4.95419631,5.087462841,5.554588852,5.491853096,5.672425342,5.930737338,5.95419631,6.189824559,6.22881869,4.584962501,5.614709844,6.022367813,6.392317423,7.108524457,5.930737338,4.95419631,5.459431619,5.169925001,6.087462841,5.554588852,6.266786541,5.727920455,6.807354922,5.129283017,4.523561956,5.392317423,6.087462841,6.781359714,5.584962501,4.754887502,5.491853096,5.807354922,5.977279923,5.044394119,5.459431619,4.247927513,4.459431619,6.741466986,6.087462841,6.686500527,5.700439718,6.108524457,4.087462841,6.569855608,6,4.523561956,5.426264755,6,3.807354922,4.459431619,6.727920455,5.285402219,5.727920455,5.357552005,6.686500527,6.14974712,5.044394119,4.247927513,4.392317423,5.087462841,6.108524457,5.977279923,5.584962501,5.523561956,5.857980995,5.392317423,6.022367813,4.64385619,4.857980995,4.807354922,5.977279923,6.044394119,5.285402219,6.491853096,6.044394119,5.459431619,6.339850003,6.022367813,5.64385619,5.321928095,6.442943496,4.857980995,6.409390936,4.95419631,5.584962501,4.95419631,5.169925001,5.247927513,6.321928095,5.930737338,5.044394119,6.022367813,5.832890014,5.614709844,5.247927513,5.672425342,6.22881869,7.199672345,5.044394119,6.569855608,4.087462841,5.459431619,6.247927513,6.087462841,5.781359714,5.129283017,5.554588852,5.614709844,6.129283017,4.459431619,7.06608919,6.50779464,3.584962501,6.044394119,6.442943496,5.906890596,4.64385619,5.584962501,6.22881869,5.426264755,5.832890014,5.614709844,4.95419631,6.62935662,5.554588852,6.169925001,5.930737338,6.794415866,5.857980995,5.247927513,6.087462841,6.14974712,2.807354922,6.50779464,4,6.06608919,5.554588852,5.087462841,5.491853096,5.491853096,5.087462841,5.700439718,6.06608919,6.62935662,5.977279923,6.06608919,6.22881869,5.754887502,5.523561956,5.357552005,5.426264755,5.426264755,6.375039431,4.64385619,5.209453366,5.930737338,5.584962501,5.523561956,6.539158811,7.14974712,6.087462841,5.95419631,6.942514505,5.584962501,5.727920455,3.584962501,4.64385619,6.087462841,6.129283017,6.599912842,6.845490051,5.64385619,5.044394119,5.523561956,5.491853096,4.64385619,5.614709844,5.285402219,3.807354922,6.22881869,5.781359714,7.303780748,6.62935662,6.64385619,3.321928095,5.209453366,4.857980995,5.087462841,5.392317423,4.459431619,5.857980995,5.857980995,5.209453366,4.700439718,3,4.459431619,6.22881869,5.64385619,6.442943496,6.700439718,4.459431619,4.392317423,5.754887502,6.584962501,5.832890014,4.64385619,6.044394119,5.044394119,6.426264755,5.906890596,5.087462841,4.584962501,2.807354922,4.247927513,4.459431619,4.087462841,4.087462841,6.768184325,4.087462841,4.95419631,5.832890014,5.087462841,6.426264755,4.247927513,5.459431619,6.22881869,6.209453366,5.64385619,2.807354922,5.491853096,5.672425342,5.087462841,6.14974712,5.672425342,4.584962501,5.584962501,5.426264755,5.64385619,5.523561956,4.95419631,4.169925001,5,4.392317423,6.044394119,5.672425342,6.22881869,8.113742166,5.247927513,5.554588852,5.459431619,4.95419631,4.754887502,5.930737338,5.459431619,6.189824559,6.64385619,5.044394119,6.50779464,5.64385619,4.087462841,6.442943496,4.392317423,4.754887502,5.832890014,5.459431619,5.392317423,4.906890596,4,4.95419631,6.64385619,5.807354922,6.442943496,4,5.169925001,5.392317423,5.247927513,3.700439718,5.977279923,5.64385619,4.087462841,6.491853096,5.554588852,5.727920455,4.95419631,5.930737338,5.247927513,5.906890596,4.754887502,5.044394119,6.539158811,6.022367813,5.754887502,5.044394119,4.857980995,5.930737338,5.209453366,5.247927513,5.781359714,4.523561956,3.321928095,5.977279923,4.857980995,4.64385619,6.285402219,5.357552005,5.209453366,5.523561956,5.247927513,4.64385619,5.247927513,7.247927513,6.14974712,6.169925001,5.64385619,2,5.857980995,5.247927513,4.857980995,4.584962501,5.129283017,5.321928095,4.95419631,5.426264755,4.95419631,4.95419631,4.807354922,6.459431619,2.321928095,5.321928095,5.672425342,5.832890014,5.832890014,6.614709844,5.087462841,4.64385619,5.832890014,5.169925001,6.22881869,6.108524457,5.832890014,5.832890014,5.247927513,3.321928095,6.22881869,5.64385619,4.700439718,4.807354922,4.754887502,5.169925001,5.044394119,4.64385619,6.375039431,5.044394119,5.087462841,5.426264755,4,4.64385619,5.882643049,4.523561956,5.087462841,6.321928095,4.523561956,6.845490051,5.357552005,6.442943496,5.64385619,5.584962501,5.044394119,5.727920455,5.672425342,6.491853096,6.988684687,4.95419631,3.584962501,5.357552005,7.189824559,5.169925001,5.491853096,5.247927513,5.727920455,5.209453366,5.95419631,5.584962501,5.459431619,6.339850003,6.247927513,5.087462841,5.169925001,5.700439718,6.321928095,6.658211483,4.95419631,5.754887502,4.64385619,6.129283017,6.50779464,6.584962501,5.906890596,5.95419631,6.357552005,5.832890014,5.554588852,5.584962501,5.977279923,6.209453366,5.857980995,5.321928095,6.64385619,4.95419631,5.64385619,5.727920455,6.918863237,5.554588852,4.807354922,5.491853096,5.169925001,5.247927513,5.523561956,4.584962501,5.977279923,6.832890014,5.129283017,5.832890014,5.672425342,6.209453366,4.64385619,4.64385619,4.64385619,5.754887502,6,6.894817763,5.584962501,6.266786541,4.95419631,5.169925001,5.700439718,5.727920455,5.700439718,4.523561956,6.554588852,6.50779464,6.459431619,5.584962501,5.087462841,5.614709844,3.906890596,5.554588852,6.087462841,4.392317423,5.64385619,7.285402219,6.375039431,7.409390936,8.033423002,4.700439718,6.554588852,8.495855027,5.727920455,7.807354922,5.727920455,6.357552005,8.321928095,7.033423002,7.864186145,5.584962501,5.64385619,8.266786541,6.392317423,6.087462841,5.285402219,7.95419631,8.531381461,6.426264755,6.62935662,6.906890596,7.276124405,8.463524373,5.906890596,6.50779464,8.672425342,5.584962501,5.672425342,5.807354922,5.700439718,8.388017285,5.459431619,6.189824559,7.577428828,6.129283017,6.918863237,7.651051691,5.95419631,6.882643049,6.87036472,6.714245518,8.388017285,6.303780748,8.599912842,6.857980995,5.169925001,10.08347933,6.965784285,5.700439718,8.092757141,6.50779464,5.807354922,8.50779464,6.189824559,8.891783703,8.103287808,6.087462841,6,8.622051819,5.491853096,6.339850003,6,6.686500527,5.930737338,8.184875343,8.82336724,7,6.491853096,6.14974712,8.405141463,7.169925001,6.475733431,8.707359132,5.169925001,5.672425342,8.092757141,6.599912842,5.930737338,8.558420713,7.139551352,8.675957033,7.73470962,6.044394119,8.675957033,6.459431619,9.247927513,5.700439718,6.285402219,8.092757141,7.257387843,6.599912842,6.64385619,8.603626345,5.426264755,5.614709844,8.562242424,6.918863237,8.17990909,5.584962501,8.370687407,5.584962501,8.836050355,5.882643049,6.247927513,8.527477006,4.087462841,5.727920455,8.438791853,5.584962501,6.169925001,5.930737338,5.700439718,8.77148947,6.14974712,6.209453366,6.285402219,4.523561956,5.754887502,6.22881869,6.523561956,6.087462841,6.303780748,6.169925001,6.169925001,5.672425342,6.22881869,5.754887502,5.977279923,5.169925001,6.62935662,7.17990909,5.672425342,6.357552005,5.906890596,5.554588852,8.909893084,5.584962501,6.614709844,6.087462841,5.727920455,4.807354922,6.832890014,4.754887502,8.383704292,6,6.108524457,5.491853096,5.209453366,5.169925001,5,5.584962501,5.087462841,6.686500527,7.169925001,5.392317423,6.321928095,6.087462841,6.523561956,5.491853096,6.442943496,6,5.882643049,6.87036472,6.285402219,5.781359714,5.357552005,6.209453366,7.339850003,6.426264755,5.832890014,7.022367813,5.285402219,9.108524457,5.491853096,4.321928095,5.523561956,8.204571144,6.22881869,6.375039431,6.700439718,8.87036472,6.554588852,6.64385619,6.882643049,5.857980995,6.129283017,6.357552005,6.714245518,6.672425342,5.977279923,5.754887502,4.584962501,5.426264755,6,6.339850003,6.475733431,6.06608919,5.044394119,5.523561956,5.781359714,5.977279923,5.321928095,5.614709844,6.129283017,5.857980995,4.857980995,4.64385619,6.375039431,6.475733431,6.044394119,7.426264755,5.044394119,6.62935662,6.539158811,6.491853096,7.044394119,6.189824559,6.475733431,5.209453366,6.832890014,6.459431619,6.584962501,6.539158811,6.658211483,5.357552005,6.409390936,6.523561956,6.22881869,6.392317423,7.294620749,5.832890014,6.044394119,5.700439718,7.900866808,7.276124405,6.918863237,6.442943496,6.375039431,5.426264755,5.882643049,5.523561956,6.266786541,7.303780748,5.930737338,6.426264755,6.209453366,4.807354922,4.087462841,7.918863237,6.189824559,6.339850003,5.459431619,5.700439718,5.807354922,5.357552005,6.06608919,5.554588852,6.339850003,7.055282436,6.714245518,5.977279923,6.169925001,5.95419631,5.754887502,6.741466986,6.459431619,5.977279923,6.392317423,5.832890014,6.189824559,6.614709844,6.375039431,5.857980995,6.523561956,6.539158811,5.129283017,7.033423002,6.209453366,6.727920455,5.857980995,5.906890596,6.977279923,5.321928095,4.754887502,5.523561956,6.906890596,6.459431619,6.62935662,5.614709844,6.857980995,6.209453366,6.14974712,7.209453366,5.977279923,6.614709844,6.87036472,6.977279923,6.108524457,5.857980995,5.491853096,5.321928095,5.285402219,6.247927513,6.442943496,5.857980995,5.906890596,6.988684687,6.266786541,7.118941073,5.426264755,5.754887502,5.906890596,6.189824559,5.857980995,5.832890014,6.918863237,5.044394119,8.392317423,6.321928095,8.21916852,5.807354922,8.640244936,8.77807713,8.700439718,6,8.238404739,6.087462841,8.290018847,8.618385502,7.614709844,8.224001674,8.54303182,9.06608919,4.857980995,8.417852515,6.409390936,7.912889336,6.62935662,6.409390936,8.299208018,7.426264755,8.247927513,5.781359714,8.566054038,6.209453366,6.857980995,7.686500527,6.285402219,6.459431619,6.321928095,6.475733431,5.247927513,7.6794801,8.317412614,7.189824559,8.344295908,5.357552005,7.864186145,6.491853096,8.271463028,8.299208018,5.321928095,7.714245518,8.194756854,4.64385619,6.832890014,5,7.011227255,4.754887502,6.022367813,7.209453366,7.74819285,4.807354922,7,4.857980995,8.682994584,7.139551352,3,6.754887502,6.930737338,5.523561956,6.523561956,7.169925001,7.781359714,8.238404739,6.169925001,3.906890596,8.784634846,8.06608919,3,8.912889336,7.14974712,7.159871337,7.321928095,6.339850003,5.906890596,7.794415866,8.370687407,8.28077077,4.64385619,7.882643049,5.523561956,5.930737338,7.577428828,8.159871337,7.451211112,7.900866808,5.554588852,7.257387843,4.392317423,7.977279923,8.434628228,4.459431619,8.483815777,8.84862294,9.025139562,8.921840937,6.584962501,7.442943496,6.794415866,8.668884984,5.672425342,5.754887502,8.836050355,6.768184325,8.927777962,5.977279923,6.95419631,9.324180547,4.523561956,5.459431619,9.079484784,5.857980995,7.247927513,9.157346935,8.016808288,3.584962501,8.744833837,7.199672345,8.144658243,5.584962501,8.022367813,8.169925001,7.64385619,7.129283017,4.906890596,6.022367813,7.894817763,8.535275377,6.22881869,7.622051819,6.64385619,8.348728154,4.321928095,6.930737338,6.820178962,7.129283017,6.882643049,7.864186145,6.569855608,8.668884984,6.339850003,8.113742166,4.700439718,7.098032083,7.098032083,5.781359714,4.95419631,6.169925001,7.348728154,7.339850003,7.73470962,5.906890596,4.459431619,8.082149041,5.781359714,8.703903573,4.087462841,7.761551232,7.491853096,7.055282436,7.826548487,8.326429487,6.339850003,7.383704292,5.672425342,9.299208018,5.64385619,6.475733431,8.980139578,5.857980995,8.442943496,5,7.977279923,2,8.693486957,8.761551232,5.754887502,7.011227255,6.569855608,7.813781191,5.832890014,5.95419631,8.741466986,7.417852515,6.700439718,8.924812504,5.700439718,7.832890014,7.523561956,4.523561956,7.592457037,6.62935662,6.942514505,7.209453366,5.906890596,8.689997971,7.209453366,7.011227255,6.209453366,7.700439718,5.672425342,6.599912842,6.727920455,8.62935662,6.442943496,8.294620749,6.459431619,6.95419631,7.209453366,7.022367813,8.82336724,8.164906927,6.87036472,7.622051819,6.209453366,8.87036472,6.882643049,9.226412193,7,8.636624621,7.033423002,8.592457037,9.030667136,9.167418146,8.164906927,6.857980995,6.714245518,8.603626345,6.247927513,7.118941073,8.400879436,6.781359714,8.426264755,6.781359714,7.294620749,8.554588852,7.46760555,7.303780748,7.876516947,7.294620749,7.977279923,6.22881869,8.312882955,7.022367813,8.607330314,6.672425342,6.918863237,7.994353437,7.459431619,7.17990909,8.857980995,6.64385619,8.294620749,6.807354922,8.271463028,6.988684687,7.06608919,7.577428828,6.906890596,7.189824559,8.447083226,7.129283017,8.661778098,6.794415866,6.845490051,7.312882955,10.63662462,6.700439718,6,6.87036472,5.832890014,6.475733431,7.348728154,6.169925001,5.807354922,7.409390936,7.108524457,6.918863237,8.727920455,8.262094845,8.962896005,8.857980995,9.079484784,5.95419631,5.700439718,6.06608919,8.781359714,6.845490051,6.209453366,6.50779464,6.266786541,9.204571144,6.266786541,6.266786541,7.531381461,5.977279923,7.491853096,6.459431619,6.22881869,8.483815777,5.807354922,8.422064766,5.044394119,8.353146825,6.491853096,6.569855608,6.375039431,6.392317423,7.977279923,6.189824559,7.813781191,6.599912842,6,8.383704292,6.169925001,5.807354922,9.084808388,5.882643049,5.807354922,8.511752654,7.247927513,7.159871337,6.14974712,6.06608919,5.491853096,8.438791853,6.965784285,6.599912842,8.584962501,6.882643049,9.379378367,6.658211483,6.189824559,7.876516947,8.569855608,7.108524457,6.906890596,9.850186838,5.832890014,9.016808288,9.033423002,7.451211112,6.285402219,8.092757141,6.894817763,6.50779464,10.14338321,7.95419631,6.321928095,9.609178738,6.64385619,9.415741768,6.491853096,7.330916878,6.169925001,5.491853096,8.471675214,5.614709844,6.392317423,6.409390936,8.442943496,6.14974712,6.845490051,5.857980995,5.807354922,6.820178962,8.294620749,7.011227255,6.686500527,6.700439718,5.727920455,5.857980995,6.409390936,8.939579214,6.087462841,6.266786541,9.339850003,6,6.14974712,8.894817763,6.459431619,6.266786541,9.353146825,7.129283017,6.820178962,8.422064766,6.044394119,5.807354922,6.554588852,6.266786541,8.829722735,5,6.857980995,9.184875343,6.475733431,7.17990909,5.754887502,9.581200582,5.209453366,6.022367813,6.022367813,5.906890596,9.189824559,6.189824559,9.084808388,6.554588852,6.087462841,8.754887502,6.442943496,8.055282436,6.044394119,8.50779464,6.523561956,8.139551352,6.426264755,8.118941073,6.569855608,8.495855027,7.06608919,6.781359714,8.6794801,6.14974712,8.442943496,6.491853096,8.14974712,6.807354922,5.044394119,8.539158811,6.50779464,8.566054038,5.781359714,5.087462841,6.169925001,7.672425342,8.714245518,7.033423002,8.807354922,5,8.640244936,8.417852515,5.807354922,8.761551232,7.312882955,6.599912842,7.129283017,8.592457037,5.554588852,5.321928095,6.044394119,9.022367813,5.700439718,8.74819285,6.266786541,9.451211112,7.693486957,5.807354922,4.64385619,8.977279923,5.321928095,5.64385619,8.87958325,7.400879436,5,6.658211483,8.447083226,8.584962501,5.700439718,5.857980995,5.727920455,6.285402219,5.459431619,6.491853096,7.189824559,7.044394119,6.599912842,5.700439718,6.539158811,6.491853096,6.539158811,7.06608919,6.988684687,5.392317423,6.523561956,5.857980995,7.46760555 A2M,16.80849918,16.50618359,17.14343304,17.76073944,14.76683944,16.263691,16.0352072,18.35511447,16.9593794,13.25665098,13.52918651,15.56388146,17.92413979,18.834937,14.31592789,16.30805456,15.40184616,15.04916787,15.21101371,16.39595245,16.72548609,18.02426855,17.989145,12.69805348,18.10955013,14.05375622,16.20588868,13.92814822,17.00848333,16.84963722,16.31765992,14.50661751,17.24158288,15.76673594,16.00116626,15.17391132,15.66952178,15.29702372,15.74850736,15.44824539,14.48526329,16.48838935,17.54894229,15.29881437,17.54130084,14.77458118,17.71537889,13.56498304,16.99439764,15.90305805,18.49857266,13.49047486,16.74082165,12.44656641,17.64438442,16.59410587,17.4487616,17.26237935,17.79082574,16.92280505,16.66087335,15.96036401,17.85033947,15.50683442,15.41511455,19.37958355,15.58134772,15.74380883,15.70349808,16.22926946,15.60837034,14.12557491,18.60181793,15.74228312,15.92770853,17.68108739,15.31921344,18.04150943,15.70376842,17.40701875,16.12765182,14.63837935,15.28745989,18.39234677,16.13201768,14.56116859,11.75070699,14.89652162,16.36522885,15.69897591,13.10148331,16.2998877,14.99757645,18.43842233,20.86674843,16.4256257,14.50183718,18.24140133,15.13530848,16.16733974,12.39794197,13.31755394,15.89142773,14.72003045,16.8215747,16.76426257,17.65996803,16.06050596,17.00330928,14.19614103,14.47933819,15.25801388,13.36959735,14.12686577,15.99090169,15.79052668,14.90421123,13.02080636,14.61183171,16.10402536,14.69588075,16.68915171,14.98486345,17.35273315,14.67513007,17.77584816,15.72927553,15.85287083,14.28496865,16.43871065,15.6558102,16.16441594,17.25813353,15.00123225,13.76030413,13.23616372,15.94468919,15.69721194,12.80976813,15.5977907,16.5815831,15.49626085,14.26803021,15.94676923,16.94747714,17.8774519,17.78774317,17.28007296,15.14449893,15.96474697,16.66720858,14.81252831,17.28630507,16.65819753,16.38564337,15.04225787,19.06850802,12.49310489,14.58049413,13.55230886,16.85207835,14.39446269,16.29392062,14.87709238,16.87928409,15.99118965,17.82393317,16.70371436,14.70103566,20.16083654,14.46263007,14.35672706,16.19210013,16.10987145,16.10844278,17.61627602,16.28048081,14.55074679,16.14696636,18.09587087,14.53156422,16.41534566,12.54037024,15.23907637,13.8494051,16.4128179,15.42528148,15.76549331,15.38926161,12.99329224,14.64981752,13.74556929,14.72003045,16.7999772,15.98143349,16.75338652,14.57843166,16.81774566,16.90294032,16.96134795,13.33231633,13.92156204,13.91867693,16.26271884,15.95333254,13.43775207,15.07552093,15.75183169,12.87113518,15.49594869,13.51422091,16.82092685,14.88893347,14.26084604,16.24436384,11.39446269,18.03852252,16.94856115,17.06384796,16.22058616,15.12064289,16.96128011,13.75988818,16.48601793,16.63992004,14.35878854,14.77179894,16.62986885,13.34401844,15.74528041,16.63455583,17.80167679,15.14823823,12.58002297,15.24414081,20.8973499,16.03301426,15.82102654,17.99847474,17.83674692,18.32899479,18.70489992,13.99408821,15.76087585,16.60864467,15.46817854,14.67286728,13.47952767,14.58284763,15.50127741,15.96199223,16.78842522,15.42167039,16.00647949,16.74055817,18.47291688,14.20731943,15.45359217,17.35178469,16.98329425,16.2191307,13.74104558,18.78470832,13.90792341,14.05095397,15.96316703,13.69501074,14.53034537,14.27568804,16.40027908,16.81435715,16.3684212,11.57127862,14.41018632,16.46371594,15.80697749,17.39018575,16.96372021,15.53667219,16.80518966,16.62863065,16.13925156,17.14753288,14.43736196,16.4833277,17.90222789,17.3305493,14.75154406,13.84411727,15.48009595,17.73507337,13.56140729,13.80100098,17.73253844,15.47059533,17.80783914,15.86853322,15.5700039,17.95820718,16.46362016,14.35892587,14.35273315,13.12605912,16.03428313,18.48287884,17.42494537,15.18091924,14.19467992,16.09127008,16.23720996,16.44284633,11.8419574,15.25996389,16.5580021,15.604698,16.55827122,17.5092415,19.80198301,13.93691394,15.56209333,13.9127958,19.01918619,17.00936939,13.32418055,16.36702222,15.60550846,15.91305301,16.02093655,14.46492858,14.68819566,15.58713289,16.48718057,17.10808539,16.69638349,16.91107594,15.08352088,14.74199358,14.33021664,17.37334948,16.1761147,19.1915629,16.73660012,18.19394881,17.69909117,18.89012472,16.26125019,15.07343031,15.39003457,13.77293309,15.61505484,17.05620374,15.55512832,16.45455634,18.92805855,17.91359653,16.09850506,13.80926571,14.42580598,15.16101375,16.47665129,15.54043079,17.75677782,16.55199358,16.19687103,16.76950213,14.85447883,14.95805421,17.14990586,11.65642486,18.22810938,15.18947712,16.596015,18.12539833,17.60376397,18.72447722,17.38849665,12.59058705,16.67645298,16.81699612,17.35620263,15.8857202,16.22001927,16.72406081,13.94434603,15.80392929,16.06741335,14.86553997,19.16757005,16.7341142,15.12823604,14.70255149,17.06480591,13.03376711,16.77766628,17.74474188,15.56346443,17.73780188,16.60237991,15.25517614,15.20151134,13.7438877,15.09160067,12.666224,14.17469166,14.85929212,13.86089298,17.37542131,15.32962118,12.46275787,18.35541993,15.50031284,13.84637186,14.19506456,15.95685256,14.36693687,12.17305246,13.93626986,20.28675853,13.32544601,12.31599862,16.87837428,16.34217887,16.19898212,15.56504256,14.67617748,18.55429281,11.88340699,18.07660164,16.04127413,14.65631313,17.25996389,16.93894781,15.86474233,16.15216599,15.69152544,18.40842926,13.85165145,16.90876788,16.05883733,16.96163056,14.66894037,16.08152505,15.6103328,14.6630577,17.12587756,13.21158415,15.28572731,14.16804527,17.46577364,15.97971546,15.82374041,16.89155826,17.52222903,13.16097437,19.11147702,17.20521097,18.18428456,17.11315204,13.22204016,16.2583636,13.7822816,16.65476188,15.14621066,15.26040503,17.43492952,14.58560809,15.99245157,14.94045125,13.57542107,18.77143788,10.97584797,13.66378045,11.60316268,13.2477792,8.370687407,10.06743436,13.16757495,8.45532722,11.56081047,7.087462841,11.50531536,12.40593919,9.638435914,14.5244805,12.24733418,13.2295699,11.21249639,10.59058705,13.77334529,13.57258181,13.36809717,10.23361968,7.912889336,13.91167286,13.08198267,13.09901899,13.18472041,6.977279923,12.04336911,12.94049713,10.39767463,12.3984765,12.57151565,11.45532722,11.40886044,12.53964351,11.55458885,13.03497087,8.409390936,13.23556552,13.69326914,12.17741954,12.52625469,13.52147776,12.70325473,12.06137119,7.554588852,12.64678369,10.92925841,14.90308159,11.63072216,9.157346935,12.93369065,11.11569395,10.85018684,13.966956,12.15069929,7.285402219,13.34748296,7.6794801,7.721099189,13.23032072,12.42180186,11.46811489,12.59339112,11.67286728,12.87344411,13.02513956,12.09308739,9.231221181,12.26678654,13.67297774,13.18518517,12.25236977,9.932214752,12.28193003,13.40952353,11.16490693,12.62113611,13.03083953,6.988684687,11.31458324,12.45172627,12.66511381,13.86920825,10.96289601,12.59058705,12.46658634,7.918863237,12.57860856,9.909893084,10.04575966,13.77375737,9.957102042,13.96578428,11.99258434,12.75968017,11.97441459,12.62342429,13.3047791,11.8004955,11.37558251,10.68474862,12.05799172,8.184875343,12.84018782,13.64509547,11.70822173,12.72877085,10.51175265,10.80170836,12.63639805,12.84352853,11.78012962,13.51187617,13.65060302,13.08048446,13.89282738,12.37286506,12.42574042,12.29347165,11.1234748,13.24049322,13.35466262,12.46275787,11.64520808,12.80916521,13.29102677,13.20074538,12.94927958,12.24733418,11.73893668,11.93847694,11.58072965,13.95637616,12.50258321,12.30492167,12.26766454,13.5112585,12.96108789,10.45738088,11.6343573,10.97369737,12.30435132,12.96397979,12.87229011,14.31677649,13.0768156,10.52258153,14.57618907,13.027906,13.09885455,11.96614491,12.12250448,11.81578354,11.65687173,9.726218159,14.09193119,12.30549179,11.93184554,13.5012152,13.07179752,13.01976445,9.8008999,12.73788108,13.51187617,12.46403515,12.54689446,12.47269084,12.03823313,12.38478375,12.94214792,13.64689617,13.37653241,12.10819772,12.53988579,11.13442632,14.44824539,12.09407769,10.27029533,12.01680829,7.375039431,11.26795708,12.8247599,12.26121345,9.558420713,13.57258181,13.15908294,12.38478375,13.080651,12.34734454,12.82276997,12.02548566,14.10033382,11.92629599,11.16239133,11.40407714,13.38599718,12.19506456,11.26033152,14.37754947,12.99258434,11.21977355,12.53089398,11.92629599,12.74294095,12.25236977,12.05866825,12.34872815,11.84117119,12.24495839,11.8622499,13.23346989,12.90237511,11.61700823,13.95601308,9.837627933,13.09589146,13.07380685,13.65720678,13.51162913,11.61516981,12.73174329,11.58261245,14.28843355,11.78545247,13.5643877,12.93884446,12.24168529,13.1027959,12.61079417,12.26209485,12.43671154,12.67705892,12.70584834,11.58261245,11.52894242,13.23676166,15.45407434,13.77756355,13.87699649,12.53186878,12.98156728,12.22550872,12.18084157,11.92666663,11.88417052,13.67419227,11.67595703,12.43488881,12.50828999,11.95201316,11.37937837,12.37883671,12.02756048,12.25059451,12.08679969,13.05646837,12.77148947,11.88455213,10.73978061,12.21765483,13.37937837,12.41917017,13.16851543,12.17492568,13.45955969,12.29777606,11.99717948,13.48984796,13.72344764,13.30078153,12.50655553,12.52772134,13.01052811,13.23197114,12.71938882,12.10033382,14.29777606,11.81698362,10.72792045,13.3877481,13.34858985,13.00334222,12.52307183,11.56843119,13.21644274,11.47522678,12.47395937,11.41732512,12.58941708,11.74986943,12.84077792,13.51496056,13.34346334,13.30762775,13.11488103,12.24763088,11.29576893,13.0513789,12.25266543,13.27306708,12.85467362,12.85992297,11.27146303,12.75530489,11.36029843,12.40567333,13.77982193,11.56271943,12.04131692,10.95346896,11.63934071,14.26348929,11.62753388,11.8637991,10.07815081,12.8027183,13.3858624,12.1864238,12.85018684,12.25768248,9.766528909,14.3081968,10.7903485,12.00982862,9.192292814,7.77478706,9.312882955,12.68759439,8.607330314,12.00562455,8.882643049,13.57825474,12.81878187,8.103287808,12.03617361,13.4221962,13.25399517,9.172427509,12.8591465,10.28424575,13.85233443,11.63617144,15.21108979,8.965784285,10.83762793,13.75467876,8.169925001,13.47775827,14.02704206,10.52943055,12.98299357,12.62684976,13.95019135,13.86872611,12.79095933,8.994353437,6.209453366,11.89216331,10.84705735,12.43540982,8.951284715,13.92962828,9.625708843,9.330916878,11.63843591,8.888743249,8.86727874,11.55554777,13.96289601,11.36029843,8.588714636,11.0409746,12.25000227,5.426264755,6.209453366,12.00597536,11.17804233,13.43892177,13.40447635,10.10721708,10.06608919,12.67838007,9.324180547,11.96434087,12.66333572,12.02859678,7.77478706,8.523561956,7.569855608,11.90425828,10.83526092,8.055282436,12.48959712,7.607330314,13.75081165,8.495855027,14.62319564,7.912889336,12.70173964,11.93957921,14.29418994,11.88912366,11.19844504,11.16804527,13.16459272,12.94562672,10.00562455,9.06608919,10.27496047,11.80534083,13.0891194,8.199672345,11.80251637,8.851749041,6.584962501,11.48884435,9.192292814,12.47218312,9.394462695,7.475733431,13.79329848,6.06608919,13.92814822,12.14210706,12.64565843,13.91615938,11.56938096,13.41534566,8.647458426,13.48368984,8.77807713,9.729620744,11.64295422,13.60952505,10.35204343,13.28077077,6.209453366,13.50171281,7,11.6188443,12.54109662,8.164906927,11.75238065,12.23182118,8.194756854,12.25827158,7.434628228,8.438791853,13.77807713,12.42678889,9.21916852,8.942514505,15.06196179,7.707359132,12.91026796,9.813781191,12.68233627,9.28077077,7.651051691,7.17990909,7.348728154,8.189824559,14.0313566,6.820178962,12.25532369,8.924812504,12.31259938,10.06608919,10.38694025,11.57553925,13.28598011,13.48683502,10.71166697,14.97517625,9.539158811,12.82813648,11.70649602,9.791162889,12.93479659,10.41362793,10.90086681,6,11.56795608,12.98868469,9.816983623,10.09803208,13.51988192,9.131856961,12.69609817,9.719388821,13.033423,12.99665002,8.339850003,11.01192607,8.957102042,12.46735081,11.50133962,9.479780264,7.087462841,9.465566405,11.68079903,14.14577297,13.60663654,10.57648435,12.69348696,12.85525783,13.54713553,10.86263736,13.45917544,11.34207467,12.11699368,8,8.569855608,11.94544384,9.118941073,11.14720492,7.761551232,13.59688857,10.88722062,9.797661526,13.45378506,14.45808615,13.37381675,12.00667672,9.970105891,10.215533,13.42377249,9.552669098,12.35727707,8.044394119,12.89462832,12.29059489,11.88874325,13.53709704,11.2366122,9.8008999,14.41508153,9.640244936,13.52368446,8.144658243,13.37272905,10.45224124,13.51088777,9.789533645,13.28294361,7.539158811,11.38316426,11.91363743,7.622051819,12.65731845,13.08164987,9.002815016,12.88111396,12.90444646,7.87036472,13.29447716,11.3392933,13.10082657,13.40421022,10.85642553,13.51348088,13.12944402,11.29404631,13.40487546,12.65865779,13.78258876,9.736401931,13.53089398,12.63934071,13.09967655,12.33566949,6.339850003,13.4282293,12.69740201,11.67109873,12.71102162,10.63843591,13.48809118,10.49085088,13.3278333,12.51643873,8.357552005,12.2273151,14.4274438,10.92629599,13.44953558,10.70735913,10.3586512,13.16474983,12.92239857,11.80654962,13.12992693,11.39285404,12.06944977,12.04712391,12.77930897,10.25620869,12.08081753,10.78953364,7.700439718,12.83150519,12.91475884,9.324180547,9.177419538,7.139551352,8.344295908,11.93295289,13.03806162,12.68233627,12.30035256,8.994353437,11.6794801,12.06137119,11.40992124,11.72067179,12.0101784,13.08364553,11.90839262,10.01541505,12.88302507,9.625708843,13.39553414,11.96974625,8.252665432,13.09093942,11.39660478,10.4419067,8.523561956,11.94141447,13.05629901,12.49235395,12.36495538,9.853309555,13.2875681,11.31628153,12.88626815,10.34872815,7.409390936,10.83683936,11.4812949,9.209453366,11.67904019,14.36639052,8.290018847,13.23646272,12.97674311,12.88722062,12.08646799,12.00386923,10.06877828,12.62502386,12.67771964,7.864186145,12.84705735,14.39647099,13.16851543,12.4604559,9.052568051,13.18456545,12.39981196,12.16302064,8.939579214,11.08214904,10.96000193,7.607330314,15.10427113,12.61930296,7.129283017,12.74315139,12.15545073,9.204571144,12.57317378,13.197831,7.554588852,11.79156991,7.459431619,13.31231575,10.28077077,12.46275787,12.24376903,10.50779464,11.57222651,12.89765641,13.04405253,11.88531506,12.09077405,12.02375435,12.6851868,11.70000615,11.51963625,7.199672345,11.71424552,12.60316268,14.85306584,11.37937837,12.64903158,12.42888355,9.194756854,12.6209071,11.94982671,9.832890014,12.98797452,12.42705089,9.686500527,12.07045642,12.88187871,9.01402047,13.12992693,12.71831881,11.23361968,12.44501485,12.39151212,14.02124027,11.50581155,7.820178962,12.21219237,14.25303493,10.9076418,13.89784546,13.1221809,11.4046094,5.754887502,10.4325419,12.88206983,13.53308634,10.78381676,10.64745843,13.1176431,8.717676423,11.61700823,10.97369737,9.428360173,11.1382718,8.807354922,12.36166968,10.44708323,12.70908381,9.541096615,12.16679075,10.76652891,12.84274318,10.60917874,14.06693007,15.28218349,12.24584977,10.169925,13.3459596,14.22603581,12.25384748,11.52405192,11.08148344,11.82615121,12.54689446,12.17492568,10.43358544,9.871905238,12.47040468,13.45378506,13.58801185,13.27743271,7.761551232,10.60084211,10.6617781,6.700439718,14.10476254,8.164906927,12.75154406,12.78463485,13.04967841,8.199672345,12.86205613,11.40726776,12.38478375,9.95419631,12.3426303,8.876516947,12.03376711,12.84176089,13.59245704,11.20640391,11.24911345,7.787902559,10.40514146,11.78422586,8.344295908,9.625708843,10.30492167,11.74315139,10.12928302,12.17804233,12.04746477,11.65105169,10.87036472,11.91363743,12.56629193,13.57139714,12.99435344,13.21735191,11.02997735,11.64520808,10.99788513,11.57931594,13.31415836,13.55961609,12.76009617,10.37068741,12.40859511,11.86108691,14.38255648 A2ML1,1.584962501,9.517669388,7.434628228,2.584962501,1.584962501,2.584962501,5.285402219,2.584962501,3.584962501,2,2,4.700439718,4.64385619,4.906890596,5.857980995,1,0,1.584962501,1,6.285402219,5.357552005,3.584962501,2.584962501,4.392317423,2.584962501,8.357552005,3.584962501,4.321928095,3.169925001,1.584962501,3.169925001,1,3.584962501,3.459431619,2.584962501,3.459431619,8.299208018,2,5.64385619,3.584962501,2.321928095,4.459431619,11.7232343,8.098032083,8.654636029,2,2,4.64385619,1.584962501,3.169925001,2.584962501,2,3.459431619,6.918863237,7.033423002,3.700439718,3.584962501,2.584962501,6.022367813,3.584962501,0,6.442943496,6.285402219,6.108524457,5.169925001,2.584962501,7.515699838,3.459431619,7.348728154,0,4.584962501,3.906890596,1.584962501,3.584962501,2.584962501,3.584962501,1.584962501,2.584962501,9.611024797,5.357552005,11.88264305,5.459431619,1.584962501,3.807354922,3.459431619,5.169925001,4.169925001,6.930737338,8.882643049,4.321928095,0,8.562242424,10.09539702,3.584962501,10.99081308,5.169925001,1,7.033423002,2.584962501,4.392317423,0,3.321928095,2.584962501,1,4.392317423,5.044394119,2,3.807354922,8.696967526,5.321928095,4.754887502,0,3.459431619,3.584962501,1.584962501,4.700439718,3.584962501,6.392317423,2.321928095,3.807354922,4.459431619,4.857980995,4.584962501,4.857980995,3,10.05256805,8.06608919,14.41996018,4.754887502,4.247927513,5.321928095,3.459431619,3.584962501,5.882643049,3.459431619,5,2.584962501,10.92851838,11.28655776,4.807354922,4.392317423,3.169925001,3.584962501,3.459431619,2,3.459431619,2.584962501,1,3.169925001,3.584962501,8.271463028,2,2.584962501,2.584962501,3.807354922,8.303780748,2.584962501,3.169925001,2,0,4.247927513,3.459431619,2.584962501,4.754887502,1,4.64385619,3.807354922,10.29691621,3.584962501,8.581200582,2.584962501,10.2632692,7.50779464,2,3.584962501,9.022367813,3.169925001,1,10.68562484,4.754887502,3.584962501,2.321928095,1,3.169925001,2.321928095,5.169925001,4.64385619,3.807354922,3.169925001,3.169925001,5.523561956,4.459431619,2,2.807354922,4.700439718,6.50779464,1.584962501,8.17990909,10.2467406,3.459431619,11.98903964,3.459431619,3.807354922,4.857980995,4.247927513,4.523561956,4.321928095,11.28135051,9.63481105,2.584962501,0,4.087462841,3.807354922,1,11.87881728,3.700439718,2,2,2.584962501,5.426264755,3.807354922,6.087462841,7.321928095,2.584962501,3.459431619,12.66688971,2,6.108524457,2.584962501,4.392317423,3.169925001,8.209453366,10.12023788,5.357552005,9.769837844,3.584962501,3.169925001,7.276124405,4.247927513,3.169925001,4.754887502,1.584962501,4.247927513,3.584962501,2.584962501,4.64385619,2.584962501,3.169925001,2,9.388017285,3.584962501,5.781359714,5.459431619,3.169925001,3.459431619,2.584962501,5.781359714,2.584962501,1.584962501,3.807354922,3.584962501,4.247927513,5.087462841,10.58871464,11.07881795,2,3.169925001,3.584962501,2.584962501,2.584962501,2.584962501,3.169925001,3.169925001,3.807354922,5.087462841,4.754887502,2,2.321928095,6.686500527,2.584962501,1,2.584962501,1,2,4.700439718,6.584962501,2,8.22881869,11.48532619,3.459431619,5.857980995,4.857980995,4.087462841,1,3.459431619,3.169925001,2,4.247927513,2.584962501,1.584962501,3.584962501,4.64385619,4.754887502,5.285402219,8.276124405,2,4.700439718,5.247927513,2.584962501,10.70217269,3.584962501,3.459431619,2,4.459431619,2,12.25679839,4.857980995,3.807354922,3.584962501,1,4.857980995,4.584962501,2.584962501,8.479780264,2.807354922,2.584962501,4.584962501,8.103287808,5.044394119,3.169925001,4.700439718,8.076815597,2,9.008428622,5.087462841,3.584962501,9.162391329,2.584962501,5.491853096,3.169925001,1.584962501,2,8.888743249,10.03891899,4.247927513,8.724513853,1,6.459431619,2.584962501,8.463524373,2.584962501,3.169925001,4.700439718,10.13570929,4.321928095,4.247927513,4.754887502,3.584962501,5.64385619,5.087462841,2.584962501,5,3.169925001,4.523561956,3.584962501,4.64385619,7.813781191,3.584962501,6.321928095,2.584962501,3.584962501,2,5.247927513,3.169925001,2.584962501,8.820178962,2.584962501,2.584962501,4.700439718,0,2.584962501,8.13442632,3.807354922,7.098032083,5.087462841,3.169925001,6.426264755,10.01402047,2.584962501,1,0,7.266786541,10.51076417,2.584962501,3.169925001,4.392317423,3.807354922,3.169925001,2,2.584962501,1.584962501,3.169925001,6.189824559,10.08613623,3.459431619,6.87036472,3.169925001,3.584962501,0,4.247927513,4.700439718,3.584962501,3.169925001,4.700439718,1,5.882643049,3.459431619,10.85953479,5.044394119,3.459431619,3.459431619,5.857980995,4.754887502,4.321928095,4.087462841,1,8.344295908,10.64835758,2,3.584962501,5.169925001,6.357552005,1,4.459431619,4.392317423,2.584962501,10.68825031,2,1,6.50779464,8.625708843,1,1.584962501,3.459431619,2.584962501,1.584962501,4.392317423,1,1,2.321928095,1,5.087462841,3.584962501,3.584962501,4.95419631,4.392317423,5,4.807354922,3.807354922,3.700439718,9.994353437,6.491853096,4.459431619,4.754887502,2.584962501,7.960001932,2,1.584962501,4.392317423,4.087462841,12.78361217,11.2997804,13.79887677,9.344295908,5.209453366,12.2261111,12.56176526,0,13.63310875,2,14.26627413,13.94672355,3.584962501,10.34762137,2,11.2848241,11.09605624,2.584962501,11.29806257,11.8494051,13.00807841,5.700439718,5.906890596,12.43488881,12.59525748,11.71896091,11.268542,3,14.07263508,13.83999107,5.285402219,12.9867309,12.31316648,12.33455263,13.19537221,5.357552005,11.61746747,11.73809226,5.554588852,14.03083953,13.29605584,2.584962501,12.63367641,12.09737377,13.12137163,13.31288296,3,10.56414949,3,7.754887502,12.01367161,1.584962501,12.79644526,12.19813805,2,12.00105627,12.51249357,2,12.04916787,5.700439718,2,12.80493767,12.75697323,3.906890596,12.81918118,13.42337858,12.21097568,10.54206454,10.77561028,2,1.584962501,12.55458885,12.22339841,11.2911707,1.584962501,12.84097457,11.68825031,2,12.98013958,12.72302093,4.321928095,13.27990072,12.53357308,2.807354922,14.16152558,3,12.92165501,12.357552,5.554588852,12.00667672,3.807354922,11.31797782,11.09275714,3.169925001,12.55386924,12.99665002,13.77930897,4.754887502,12.29806257,12.87132774,4.087462841,12.93994645,4.754887502,12.78135971,4.807354922,12.19105921,5.129283017,13.33399388,12.72109919,4.087462841,12.16616308,11.86805085,2,11.97835296,11.90388185,12.41204051,13.06608919,5.906890596,11.65999589,12.72877085,12.23391921,12.05460432,13.26385602,13.04183024,12.27612441,13.04507705,11.44397954,13.62605121,13.21629116,12.68079903,12.46147945,12.83110928,13.64779568,12.28048081,12.77540452,13.66188941,12.26707927,11.60408986,11.90425828,13.48809118,3.807354922,12.3459596,12.54809942,14.15774166,13.67727919,13.6740819,12.44346161,12.93939556,4.087462841,5.64385619,12.81678368,11.53235593,13.33845784,11.91886324,11.30378075,12.23989682,12.6329952,8.092757141,12.45609768,12.00807841,12.53988579,12.17242751,12.38208359,12.72302093,12.75593074,12.80493767,12.85116341,11.35038674,12.08978149,11.07547915,12.06069593,11.23182118,12.38559281,11.93147623,14.09589146,13.97477307,11.93774162,9.675957033,13.37707493,13.20135818,11.91886324,2.584962501,12.92685191,12.52918651,12.21674586,3.169925001,11.04575966,11.59898297,11.67286728,10.82097669,11.95855272,11.65418847,11.89822347,12.20853921,12.82177398,12.84979602,11.76321237,12.04575966,12.81718354,13.37951375,12.25207404,13.28106067,13.01906943,11.8181827,11.40087944,12.80574387,14.192524,13.52759918,12.04507705,12.12992693,12.65239686,12.91849059,11.43775207,12.52429684,12.32867493,12.75028827,11.10328781,13.06558443,13.08148344,12.17648485,12.59128858,13.23795681,12.26385602,11.77725532,12.02859678,13.24049322,12.31146452,10.87728413,13.24257869,11.35700209,12.52649924,14.20747196,13.14194746,12.76901132,12.01959073,13.90839262,13.70800613,13.44268437,7.820178962,13.32108252,12.71209705,11.63617144,11.6851868,12.41336348,11.27146303,11.84431346,12.54037024,10.49485558,11.80332392,10.66088727,10,12.0409746,13.04507705,12.34429591,12.18766137,12.25532369,12.82952455,12.13538865,11.91214086,13.64835758,13.65127597,12.13538865,12.21036695,11.64069684,13.83387836,13.39887727,12.36084708,12.0877943,13.62798978,13.25369978,12.03066714,11.85992297,12.94927958,12.04028972,11.89405985,11.71810471,13.00807841,14.13258006,12.07547915,13.94626664,13.27815903,12.57790084,12.85856386,12.29174628,13.17305246,11.54689446,11.66578003,11.97978243,12.90989308,13.40061264,12.72280753,13.712527,10.8273427,10.8864587,14.11113567,12.06137119,11.59479112,12.43879185,12.34706766,13.18456545,13.32277318,9.523561956,13.46658634,12.00737773,13.21097568,11.90388185,11.29634268,11.33594857,11.08347933,12.10689005,12.74399286,12.75238065,12.20426546,12.66999228,11.67507492,12.98903964,13.16569215,11.94617524,12.16333519,12.183015,11.47421294,12.95219522,2,9.893301531,0,13.35107726,2,3.169925001,2.584962501,10.95346896,2,11.76487159,3,2,12.92165501,1.584962501,2.807354922,0,12.49835061,1.584962501,10.80332392,2,12.75822321,13.35300895,3.169925001,3.906890596,5.672425342,12.50878516,5.209453366,13.08447624,13.73851453,4,11.71338651,12.29605584,10.82892983,12.40806432,11.31628153,4.087462841,7.554588852,13.37558251,3.807354922,10.42206477,6.442943496,10.80413102,3.584962501,7.199672345,12.74672424,6.50779464,4.087462841,9.605479518,12.09638573,11.42101286,4.087462841,12.24881706,13.71799765,5.285402219,7.17990909,14.2229458,6.209453366,13.77262387,3.584962501,6.169925001,9.339850003,12.06440596,4.392317423,13.61090949,12.74188827,4.523561956,5.857980995,4.754887502,4.857980995,12.54496443,4.087462841,6.50779464,12.00807841,6.169925001,11.99647349,5.129283017,12.97297979,4.087462841,11.5574637,5.209453366,3.169925001,3.584962501,11.19660213,3.584962501,12.95383268,12.39713981,3.169925001,5.357552005,7.721099189,3,11.64835758,5.584962501,11.64835758,3.584962501,7,11.72451385,5.209453366,3.169925001,4.087462841,4.64385619,10.74819285,3.584962501,11.77066389,3.906890596,11.95963976,12.27961058,2.807354922,10.56319627,3.906890596,11.5674808,6.930737338,3.169925001,10.7548875,10.44397954,3.169925001,13.3579643,3.807354922,3,5.209453366,10.32755264,5.857980995,5.426264755,4.64385619,12.61125539,4.392317423,6.554588852,4.523561956,8.159871337,12.55626654,11.8181827,4.247927513,5.044394119,2.807354922,6.375039431,12.10558118,4.321928095,11.31628153,5.357552005,4.64385619,7.409390936,6.339850003,6.409390936,13.90407008,7.531381461,11.40779885,5.64385619,10.86418614,4.523561956,5.247927513,12.64069684,12.73089465,15.52698821,3.807354922,13.49597991,7.95419631,13.45519877,11.26678654,7.417852515,11.23062093,4,10.99435344,3.906890596,5.129283017,12.35974956,4.95419631,4.906890596,8.951284715,4.807354922,12.50655553,6.266786541,10.70043972,11.2708793,2.807354922,12.37964912,3,13.13217838,4.087462841,5.95419631,3.906890596,6.491853096,12.5643877,12.19752388,12.25679839,3,11.41679753,11.59665567,6.375039431,2.584962501,14.78366332,5.209453366,12.39339046,3,4.087462841,12.02756048,5.857980995,13.40686932,4.523561956,12.08347933,13.14545456,3.584962501,13.03083953,12.42127591,13.42979901,3,12.22037833,3.584962501,11.45789384,4.392317423,12.76217438,3.169925001,12.669328,12.55218876,2,13.1083611,3.584962501,2,13.60269887,3,12.09077405,5.95419631,13.00158412,4.087462841,12.29548197,4.754887502,11.83683936,6.375039431,3.584962501,3,5.209453366,13.87152026,14.19036485,5.906890596,13.84323408,13.53685428,2.807354922,13.36536557,3.906890596,13.47889599,12.16050175,3.169925001,11.30149619,11.07614753,2,12.03686045,3.584962501,14.19867524,2.584962501,11.66044165,2.584962501,11.88722062,12.38478375,4.523561956,13.39887727,12.60871685,3,13.08314687,3,10.64205169,2.807354922,13.83308774,13.85204177,3.584962501,10.8153833,11.13635034,4.169925001,11.22821744,4.807354922,2.807354922,11.57978733,11.54834029,4.247927513,12.98334993,12.66155544,12.14146856,12.71145189,12.71403081,4.087462841,13.45417075,12.73492127,5.906890596,4.64385619,11.89254282,2.584962501,2.807354922,7.54689446,2.584962501,3,11.95237725,11.53673289,12.0344551,1,12.12638183,13.67386113,11.01611184,11.13185696,3.321928095,12.06709819,11.945078,3.169925001,12.12896095,4.857980995,12.31967212,13.14545456,4.523561956,12.51175265,5.209453366,12.50457074,5.426264755,12.8061468,12.53259944,11.69827058,11.73597904,6.303780748,13.99814966,0,11.67639789,10.8587581,7.924812504,12.97297979,12.63049466,3.321928095,13.57175264,12.9695664,4.64385619,12.13378441,12.6617781,13.57837269,12.51988192,14.66294647,3.321928095,12.69348696,13.59968043,2.584962501,12.08978149,4.584962501,12.81077244,11.85252951,1,3.321928095,13.19444908,12.94434603,3.906890596,12.4322809,5,5.087462841,12.48959712,13.78902413,3,13.28019079,12.95619463,4.087462841,12.9881521,12.93590168,1,15.54737656,4.321928095,9.224001674,6.930737338,11.47573343,12.78810655,7.832890014,12.8181827,11.04165915,11.91774501,4.95419631,12.28077077,12.3858624,12.15797845,11.82097669,11.97656412,8,12.97459384,12.9813889,11.01402047,12.01506653,11.63707766,11.59339112,4.754887502,13.00825353,13.09457258,5.129283017,10.81378119,10.82575383,4.321928095,13.22188916,13.13217838,3.321928095,11.51274046,11.75530489,3.169925001,11.3858624,11.72451385,12.5533893,12.07179752,6.129283017,13.64835758,14.36946103,4.523561956,12.13891172,12.57459353,13.75049764,3.906890596,13.81097322,14.22678847,13.13346335,13.60709909,3.169925001,12.4395712,5.209453366,13.61459483,14.74415058,5.95419631,11.44138803,5.129283017,11.36686859,6.64385619,12.21431912,6.459431619,14.53119868,5.357552005,13.2286684,5.584962501,10.5137276,4.247927513,8.50779464,13.50915643,5.087462841,11.76652891,7.06608919,11.86573327,12.79522797,5.209453366,13.64700864,5.209453366,13.78769854,13.90529298,12.35397382,12.09077405,4.169925001,8.754887502,5.857980995,14.02418737,6.459431619,5.209453366,2.807354922,4.754887502,12.51865316,12.71681946,12.51545346,5.209453366,12.05426514,12.07848442,13.06844242,8.118941073,10.98299357,8.033423002,11.75905594,2.807354922,9.820178962,12.70800613,12.71553306,6.266786541,14.26143385,13.4807902,4.169925001,4.584962501,13.13586958,12.76756377,3,4.087462841,12.75279876,12.76756377,13.52955256,13.67540578,11.5844928,13.13955135,12.55865987,12.78156463,13.5526691,13.315008,12.42547819,13.46786024,10.20701432,11.97656412,13.78483929,13.93267613,11.17617315,12.34955769,11.3777528 AADAC,4,2.584962501,1.584962501,0,0,0,3.321928095,1,4.584962501,3.321928095,0,0,0,0,0,0,0,1.584962501,4.459431619,1,0,0,0,4.857980995,2.584962501,3.169925001,0,1,0,4.459431619,1,1,0,2.584962501,2.584962501,2.584962501,6.022367813,0,0,6.209453366,0,0,6.266786541,2.321928095,0,0,0,0,1.584962501,1,0,2.584962501,0,0,2.584962501,0,0,0,2.584962501,0,2.321928095,0,0,0,0,2.321928095,6.714245518,0,0,0,4.459431619,0,1,2.321928095,3.807354922,0,0,1,6.044394119,0,3.321928095,2.321928095,4.459431619,5.977279923,0,2.321928095,0,1,0,2.321928095,0,2.321928095,2.584962501,0,3,0,1,0,0,4.247927513,0,4.087462841,0,0,2,0,0,0,4.523561956,0,1,2.584962501,0,0,0,0,4.169925001,0,1,0,1,0,2.321928095,0,1,3.906890596,6.022367813,6.845490051,4,1,1,0,0,0,1.584962501,0,0,3.321928095,0,5.832890014,2.321928095,4.754887502,0,12.94727165,0,0,0,0,0,0,0,0,2,0,0,1,5.491853096,0,0,2,0,0,2.584962501,2.321928095,1,0,0,3,0,0,1,6.339850003,6.044394119,8.262094845,0,6.672425342,1,0,7.159871337,0,0,1,2.584962501,1,0,0,0,1,4.321928095,5.584962501,0,1,3.807354922,0,0,0,0,2,5.087462841,0,3,0,0,0,1,0,3.169925001,7.076815597,0,1,0,3.807354922,2,0,5.285402219,0,0,0,2.321928095,0,5.977279923,0,3.459431619,0,0,1,0,1,0,1,0,2,7.475733431,0,1,0,0,2,0,0,0,0,3,1,0,3.906890596,1,4.459431619,10.25620869,8.636624621,0,0,0,3,0,0,4.906890596,0,2,3.321928095,0,0,1,4.754887502,3.321928095,2.321928095,1,0,0,0,2.584962501,0,2,0,2.321928095,1,0,0,1,4.247927513,0,3.807354922,1,0,0,2.807354922,2,3.169925001,3.321928095,2.321928095,0,0,2.584962501,0,0,2.321928095,0,1,5.781359714,0,0,1,2.584962501,2.584962501,1,0,0,0,3.321928095,2.321928095,0,0,4.247927513,2.321928095,0,1,2.584962501,2.321928095,0,0,0,0,4.700439718,7.06608919,1,2.321928095,0,0,3.321928095,3,0,6.459431619,2.321928095,1,2.321928095,0,3.807354922,2.584962501,3.459431619,4.321928095,0,4.523561956,2.584962501,2.584962501,0,4.247927513,5.64385619,1,0,2.807354922,0,0,0,2.584962501,0,2,0,3.906890596,0,0,0,0,1,1,0,0,1,1,2.584962501,1,0,0,6.442943496,0,2.321928095,2,4.584962501,2.584962501,0,6.781359714,2.584962501,0,6.64385619,0,0,1,4,1,0,0,0,2.584962501,2.584962501,1,0,2.584962501,2.584962501,0,5.044394119,2.321928095,0,1,1,0,0,0,0,1,0,0,0,2.321928095,0,2.584962501,5.285402219,0,2.584962501,2.321928095,0,2.584962501,0,0,1,1.584962501,2.584962501,0,1,5.857980995,6.845490051,1,1,1,1,0,0,1,1,0,0,1.584962501,0,2,0,0,0,0,3,0,0,0,1,0,6.266786541,2.584962501,2.807354922,0,0,2,1,0,1.584962501,0,0,0,0,0,3,0,2.321928095,2.321928095,7.741466986,6.129283017,9.245552706,4.087462841,1,6.539158811,6.988684687,1.584962501,7.459431619,0,9.768184325,6.741466986,1,5.584962501,0,7.651051691,8.055282436,1,6.303780748,5.044394119,5.64385619,0,1.584962501,6.599912842,6.339850003,7.651051691,7.426264755,0,8.45532722,8.271463028,1,7.312882955,7.129283017,7.339850003,7.108524457,1,7.554588852,7.64385619,1,7.515699838,8.087462841,0,7.900866808,6.741466986,6.584962501,6.087462841,3,6.988684687,0,5.044394119,7.491853096,0,7.169925001,8.243173983,0,7.554588852,5.129283017,0,6.807354922,0,0,6.845490051,6.442943496,1,6.303780748,7.95419631,5.95419631,4.95419631,5.857980995,1,0,6.906890596,6.409390936,5.64385619,2,8.515699838,8.797661526,0,5.781359714,5.491853096,1,6.658211483,5.95419631,2,6.426264755,0,3.584962501,3.584962501,0,5.129283017,0,5.209453366,4.807354922,2,6.768184325,5.426264755,6.845490051,2,8.754887502,8.400879436,0,7.159871337,0,7.266786541,0,7.554588852,1,5.906890596,5.857980995,0,5.672425342,5.554588852,0,6.686500527,4.807354922,5.523561956,6.87036472,0,7.426264755,8.603626345,5.95419631,6.426264755,6.409390936,6.491853096,5.700439718,6.442943496,8.055282436,8.266786541,6.95419631,8.857980995,8.554588852,7.21916852,5.781359714,6.906890596,9.252665432,9.461479447,7.6794801,8.022367813,6.918863237,8.290018847,0,7.209453366,5.857980995,6.965784285,7.8008999,6.599912842,8.243173983,6.64385619,2,8.471675214,4.95419631,8.118941073,7.912889336,8.204571144,6.266786541,6.169925001,7,6.087462841,9.103287808,7.426264755,5.64385619,6.930737338,7.531381461,8.515699838,6.977279923,7.8008999,7.159871337,7.761551232,7.918863237,6.781359714,8.184875343,7.46760555,4.087462841,5.584962501,8.962896005,8.592457037,7.936637939,7.199672345,7.707359132,8.233619677,7.77478706,4,7.813781191,6.64385619,5.64385619,2,3,5.491853096,6.339850003,6.375039431,7.199672345,6.491853096,6.022367813,7,7.21916852,7.139551352,7.055282436,4.906890596,8.144658243,8.044394119,5.672425342,6.714245518,6.62935662,7.285402219,7.257387843,6.303780748,6.832890014,8.159871337,7.266786541,8.092757141,9.087462841,7.882643049,8.566054038,8.511752654,7.044394119,6.357552005,7.22881869,8.139551352,8.204571144,6.266786541,7.022367813,7.569855608,8.668884984,8.50779464,7.721099189,4.64385619,6.832890014,6.845490051,7.813781191,6.62935662,6.965784285,9.01402047,6.22881869,6.882643049,6.303780748,7.50779464,5.781359714,5.554588852,6.781359714,8.797661526,7.554588852,6.554588852,6.266786541,8,6.857980995,8.836050355,8.335390355,5.754887502,7.754887502,6.768184325,6.022367813,6.658211483,7.813781191,7.238404739,6.658211483,6.266786541,6.569855608,4.584962501,7.599912842,6.044394119,6.022367813,7.592457037,8.618385502,7.21916852,6.569855608,6.129283017,7.022367813,6.781359714,5.523561956,5.209453366,6.781359714,7.539158811,7.994353437,6.426264755,7.554588852,5.906890596,8.060695932,6.303780748,4.169925001,7.523561956,7.199672345,7.721099189,6.357552005,8.675957033,8.344295908,6.22881869,7.539158811,7.906890596,7.62935662,8.271463028,6.087462841,7.754887502,5.357552005,6.459431619,7.400879436,5.491853096,6.64385619,8.159871337,6.64385619,8.781359714,8.618385502,4.64385619,6.357552005,8.400879436,9.21916852,5.832890014,7.339850003,5.906890596,5.754887502,7.924812504,7.303780748,7.417852515,6.781359714,7.400879436,7.357552005,4.523561956,4.523561956,8.348728154,6.539158811,6.426264755,6.22881869,5.906890596,1,1.584962501,0,8.651051691,6.044394119,5.209453366,1,6.087462841,1.584962501,6.768184325,1,0,5.807354922,1,1,1,6.14974712,0,6.357552005,1,9.152284842,8.603626345,8.071462363,2.807354922,0,6.22881869,2,7.607330314,8.438791853,4.169925001,4.087462841,8.184875343,4.95419631,8.383704292,6.95419631,1,1,5.906890596,3.169925001,5.523561956,1,1.584962501,0,1,6.539158811,2,0,4.64385619,7.569855608,5.491853096,3,5.754887502,7.62935662,1.584962501,0,8.857980995,1,8.682994584,2,1,3,6.64385619,1,8.459431619,8.379378367,0,2,0,3,5.044394119,3.321928095,2,6.686500527,3.584962501,5.754887502,2,6.672425342,2,6.658211483,2,6.14974712,1.584962501,5.129283017,1.584962501,6.303780748,6.266786541,1,1,1.584962501,1.584962501,5.426264755,1.584962501,5.426264755,1.584962501,1.584962501,8.836050355,1,2,3.321928095,1,6.087462841,2.807354922,5.807354922,1,4.087462841,7.339850003,3,6.087462841,3,6.459431619,0,0,4.169925001,2,3.321928095,6.022367813,2,4,0,6.022367813,1.584962501,1.584962501,4.807354922,7.924812504,0,3.584962501,2,2.584962501,7.199672345,4.584962501,2.807354922,4.857980995,2,1,5.247927513,2.584962501,8.060695932,1,2,0,1.584962501,1.584962501,8.204571144,3,6.64385619,1,5.807354922,1,1.584962501,8.577428828,6.554588852,8.912889336,3.169925001,9.461479447,3,8.535275377,8.144658243,2,6.62935662,2,6.266786541,0,2.584962501,5,2.584962501,4.392317423,4.087462841,1,4.087462841,1,7.813781191,8.426264755,5.044394119,6.700439718,1,7.876516947,1,4.087462841,1.584962501,5.044394119,8.257387843,7.417852515,8.357552005,1.584962501,6.426264755,6.754887502,1.584962501,2,7.238404739,0,7.022367813,1,1.584962501,5.129283017,1.584962501,6.906890596,0,4.807354922,4.857980995,1,7.312882955,7.864186145,7.857980995,4.807354922,7.948367232,2.807354922,8.033423002,0,5.857980995,1,5.64385619,3.169925001,1,8.982993575,1.584962501,0,5.832890014,1,6.64385619,2.584962501,7.820178962,2.807354922,7.607330314,2.584962501,7.139551352,3.584962501,3.169925001,2.807354922,0,7.607330314,7.62935662,2,6.06608919,5.247927513,0,7.321928095,1,9.631177056,8.339850003,1,7.768184325,7.845490051,2,6.209453366,0,6.857980995,1.584962501,7.832890014,0,7.6794801,7.6794801,0,5.700439718,5.584962501,2.807354922,6.64385619,0,4.584962501,1,7.108524457,7.523561956,1,5.491853096,5.672425342,1.584962501,7.357552005,1.584962501,1.584962501,6.64385619,6.06608919,3,8.044394119,7.727920455,7.592457037,5.754887502,7.21916852,2,7.930737338,5.807354922,2.584962501,0,4.857980995,0,0,0,6.022367813,1.584962501,7,7.813781191,8,2,6.491853096,5.857980995,5.672425342,5.977279923,0,4.754887502,4.906890596,1,6.599912842,1,7.658211483,6.459431619,1,8.409390936,0,6.584962501,1,5.087462841,5.426264755,6.169925001,5.285402219,1.584962501,4.584962501,0,5.426264755,5.584962501,2,7.098032083,7.339850003,3.807354922,7.965784285,6.918863237,0,6.357552005,7.491853096,8.108524457,6.741466986,7.882643049,1.584962501,6.64385619,7.044394119,2,8.459431619,2.584962501,8.611024797,6.781359714,1,5.672425342,7.400879436,7.592457037,1.584962501,7.238404739,0,1,6.714245518,7.54689446,1.584962501,6.426264755,5.906890596,1,7.864186145,6.50779464,0,10.66088727,1.584962501,3.584962501,2,6.882643049,7.707359132,2.584962501,8.87036472,5.129283017,8.317412614,1,8.294620749,6.807354922,7.64385619,6.129283017,6.64385619,3,5.129283017,7.62935662,8.693486957,7.199672345,8.243173983,7.339850003,0,5.807354922,6.169925001,0,6.64385619,6.303780748,0,8.511752654,8.710806434,1.584962501,6.754887502,6.523561956,0,6.426264755,6.807354922,6.209453366,7.366322214,0,7.554588852,7.965784285,0,8.400879436,6.442943496,8.129283017,1,9.943979914,8.060695932,8.77148947,7.845490051,0,7.62935662,0,8.599912842,9.214319121,1.584962501,9.826548487,0,5.807354922,1,7.044394119,0,8.271463028,2,5.977279923,1.584962501,7.303780748,6.266786541,3,8.471675214,2,5.209453366,1,6.209453366,7.139551352,0,9.535275377,2,7.276124405,6.857980995,6.584962501,7.930737338,3,3.321928095,2.807354922,7.64385619,1,1,7.607330314,0,6.087462841,7.622051819,5.977279923,1,7.285402219,5.209453366,7.832890014,0,6.599912842,0,6.906890596,1.584962501,2.807354922,8.515699838,6.930737338,1,7.21916852,7.554588852,2.807354922,1.584962501,6.832890014,7.459431619,0,1,7.918863237,8.257387843,8.139551352,7.721099189,7.651051691,6.807354922,5.426264755,5.357552005,6.672425342,8.764871591,8.632995197,7.06608919,3.584962501,6.209453366,5.64385619,4.64385619,7.06608919,8.409390936,4.247927513 AADACL2,1,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4.754887502,0,0,2.584962501,0,0,0,0,0,3.169925001,0,4.807354922,0,0,0,0,0,8.77478706,4.087462841,0,0,0,0,0,2.584962501,0,0,0,0,0,0,1,0,3.906890596,0,0,0,3.169925001,0,0,0,4.247927513,1,1.584962501,1,0,1,1,0,3,0,1,0,5.754887502,0,1,3.169925001,0,3.169925001,0,1,0,1,0,0,0,0,2.584962501,0,0,0,0,0,0,1,0,1.584962501,0,0,3,0,0,0,6.768184325,0,0,0,0,0,0,0,1,0,0,0,1,1,3,0,1,1,5.584962501,9.691743519,0,0,3,0,0,0,2.321928095,2.584962501,0,2.584962501,3.906890596,0,3,0,0,3.169925001,0,0,0,0,0,0,3,1,0,0,0,0,0,0,1,0,0,0,1,0,2.584962501,1,0,2.584962501,1,1,0,5.209453366,0,0,1,5.700439718,0,0,5.930737338,1,0,1,0,0,0,1,0,0,1,0,0,1.584962501,0,1,0,1,0,2.584962501,2.807354922,0,1,0,0,0,0,0,3.700439718,6.539158811,1,0,1,2.584962501,1,0,8.262094845,0,1,0,0,0,1,0,4.087462841,1,1,2.584962501,0,0,0,0,1,3,6.882643049,0,1.584962501,0,0,0,0,0,0,1,0,0,0,0,0,0,2.584962501,5.727920455,0,0,1,0,0,0,1,0,1,0,0,0,0,3.700439718,3.700439718,0,1,0,0,0,5.523561956,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,3.459431619,3.321928095,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0,1,3.169925001,0,0,0,0,0,6.044394119,3.169925001,0,0,0,0,0,0,1,0,0,0,2.584962501,0,3.169925001,0,4.523561956,0,2.321928095,0,0,7.303780748,2.584962501,3.700439718,0,0,0,1,0,3.700439718,4.087462841,1,2.321928095,0,1.584962501,0,1,0,3.700439718,0,0,0,0,0,3.169925001,0,0,0,2.584962501,0,0,0,0,2.584962501,0,1,0,3.584962501,0,2.584962501,3,1,0,0,3.807354922,0,0,1,0,0,0,1,2.584962501,1,0,1,0,2.584962501,0,0,1,0,1,0,0,0,0,3.807354922,1,1,1,0,0,0,0,1,5.614709844,0,1,0,4.700439718,0,2.584962501,2.584962501,0,2.584962501,0,1,1.584962501,0,1,0,4.807354922,1,0,1,1,1,1,0,0,1,1,0,1,3,0,0,0,1,0,0,0,0,1,0,0,3.700439718,0,2.321928095,0,0,5.129283017,0,1,4.087462841,0,0,0,0,0,0,0,2.584962501,0,10.16113188,9.152284842,11.73386272,5.754887502,2,10.93590168,10.77807713,0,10.72280753,0,11.57931594,10.35424938,0,8.781359714,0,10.4604559,10.79360331,0,9.278449458,9.4325419,10.12153352,0,0,10.12541347,10.09671515,10.14465824,9.982993575,0,10.78299821,10.88722062,1,10.84784036,11.12799432,9.905387005,9.856425529,1,10.07414146,9.047123912,0,10.06608919,10.45943162,0,11.36084708,10.45635442,9.789533645,10.22761594,0,8.982993575,1,7.375039431,11.0202855,0,10.72195361,11.25266543,0,9.917372079,10.22400167,0,9.392317423,0,0,10.22037833,10.76818432,0,10.53040634,10.8494051,11.30947635,9.905387005,10.11634396,0,0,10.62296694,9.353146825,9.911391988,0,11.3858624,11.04575966,1,9.306061689,9.303780748,0,11.31118066,10.70130646,0,9.970105891,0,8.262094845,7.727920455,0,8.885696373,1,9.647458426,9.337621902,0,9.773139207,10.84156435,11.24555271,0,10.09671515,10.24911345,1.584962501,9.764871591,0,10.74483384,0,10.86263736,0,10.16364968,10.09671515,0,9.50779464,9.554588852,0,10.2227949,10.38694025,9.324180547,9.411510988,1,10.09934781,10.37395266,11.33259606,11.42153891,9.419960178,10.08347933,9.733015322,10.02236781,10.60362634,10.42101286,10.54882191,10.65821148,10.27844946,9.724513853,9.082149041,10.23720996,11.05934446,11.35424938,11.50332886,10.79441587,9.753216749,10.14338321,0,10.47876962,9.409390936,9.663558104,10.67771964,9.73978061,10.15101654,10.05392588,0,5.584962501,9.710806434,10.20823436,10.22761594,11.169925,10.027906,10.31288296,10.24198315,6.584962501,10.92109709,10.24198315,10.22158712,9.531381461,10.74567432,11.31231575,10.90388185,10.30035256,9.794415866,10.02375435,10.48984796,10.47065887,10.69696753,10.04575966,9.741466986,9.847057346,11.94836723,10.5137276,11.3553511,8.829722735,10.73724734,10.69696753,11.24911345,0,10.78299821,11.52160044,11.23302043,0,8.366322214,9.781359714,10.45840661,10.04439412,10.79522797,10.19721669,9.890264277,10.89254282,10.10852446,10.3376219,9.605479518,10.28424575,10.59991284,10.78708632,9.693486957,10.54496443,10.27029533,11.10590851,11.12153352,11.23242093,10.56890615,10.79522797,10.92777796,11.31061278,10.70908381,10.41256985,10.20579325,10.9432474,10.70217269,9.707359132,9.483815777,10.11634396,10.68299458,10.51175265,11.21188829,12.17305246,11.23840474,11.16050175,9.816983623,10.29806257,9.194756854,9.471675214,10.91587938,9.20701432,9.560332834,10.71853288,10.33091688,10.71166697,9.887220615,9.73809226,9.409390936,9.366322214,3.169925001,9.599912842,10.14210706,10.49485558,10.33539035,11.21916852,10.00562455,11.13121391,10.86882255,9.971543554,10.94982671,11.15418521,10.97154355,10.70217269,11.56652978,10.76155123,10.18115226,10.23959853,10.13699111,9.556506055,11.10721708,10.98299357,11.04644195,11.10525378,10.60455323,9.594324604,10.43671154,9.936637939,10.74651432,10.17367714,10.30606169,10.82177398,10.58965115,10.11243951,10.34540525,9.957102042,10.74062404,10.45738088,9.693486957,10.23242093,8.74819285,9.786269628,11.32249154,10.75655632,10.23361968,10.46658634,11.25384748,9.837627933,10.86882255,10.61378946,11.00842862,11.50481899,10.42836017,10.91288934,9.366322214,8.882643049,10.72024426,10.37177664,11.01471793,10.67595703,10.36850646,11.4325419,10.78217919,9.403012024,10.83999107,10.08214904,9.871905238,9.357552005,10.32530546,9.47370575,9.417852515,11.42836017,10.98868469,11.20212382,10.79197682,10.57364719,11.50729912,10.14974712,10.15101654,11.29806257,11.08945048,9.882643049,8.915879379,10.31061278,1,5.129283017,0,10.98156728,0,0,1,8.584962501,0,10.29806257,0,1.584962501,10.14974712,0,1,0,9.912889336,0,10.14210706,0,11.71338651,11.56700537,2,0,0,10.81778312,1,10.45018025,11.3777528,1,8.430452552,10.52061868,8.794415866,11.41204051,10.16867212,0,0,11.00070427,0,8,0,8.611024797,1,1,10.50878516,1,0,7.21916852,10.18858885,9.33315535,0,8.95419631,10.62479546,0,2,11.35204343,1,11.8181827,0,0,6.686500527,9.837627933,1,10.15734694,10.91886324,1,0,1,0,7.807354922,1,0,10.01262454,0,9.652844973,0,11.28655776,1,9.06608919,0,0,1.584962501,9.216745858,1,10.34318572,10.29232163,0,0,2,0,10.07547915,1,9.355351096,1,0,10.94617524,0,0,1,1,9.753216749,0,9.813781191,0,9.310612782,10.55362929,0,9.831307244,0,10.20089861,0,0,8.257387843,7.139551352,1,10.54978467,0,0,1,9.303780748,1,1,2.584962501,9.758223215,1.584962501,0,0,1,8.781359714,9.68474862,1.584962501,0,1,1,10,0,10.84784036,1.584962501,1,0,0,1,11.38370429,0,10.22400167,0,9.079484784,1.584962501,0,10.33539035,10.47370575,11.4655664,0,11.50729912,0,10.10459875,10.49485558,0,9.93516505,0,9.776433032,1,1,9.479780264,0,0,4.087462841,1,9.550746785,0,10.52356196,10.78463485,3.321928095,10.54109662,0,10.72962074,0,3.169925001,0,0,10.906139,10.95782756,10.30263892,1,11.17180229,10.92629599,0,0,11.12799432,1,9.815383296,0,1,8.098032083,1,10.03066714,0,9.659995892,11.27903014,1.584962501,10.32642949,9.859534786,10.80976813,1,11.32023645,1.584962501,8.885696373,0,9.951284715,2,8.632995197,7.95419631,1,11.2911707,1.584962501,1,10.52649924,0,11.28366717,1,10.75739001,1,11.07481046,0,10.84862294,0,1.584962501,2.807354922,0,10.5943246,10.60547952,0,11.0768156,10.87267488,0,11.13378441,0,11.60455323,10.20945337,0,11.0721326,11.00351791,1,10.86805085,0,11.70217269,1,10.51963625,0,10.53624722,11.02997735,1,10.67330908,10.96938652,1,10.69174352,0,8.668884984,0,9.719388821,9.569855608,0,9.87958325,8.483815777,1,10.60640521,0,1,9.063395081,9.28077077,0,10.89481776,10.98868469,10.9225844,11.02721489,9.887220615,0,11.10590851,9.535275377,0,0,8.876516947,2.584962501,0,1,3.906890596,0,10.5137276,9.868822555,10.2227949,1,10.35424938,11.16239133,9.184875343,9.449148645,0,9.479780264,10.42416629,1,9.77478706,1,10.36194377,10.43567026,0,10.72366094,0,10.11894107,1,10.44604941,10.15860969,9.882643049,10.02375435,0,10.37395266,0,9.717676423,9.887220615,3.807354922,9.049848549,9.588714636,0,10.47978026,9.457380879,1,10.37937837,9.861086906,9.784634846,11.07815081,11.47421294,0,10.88340699,11.35590164,1.584962501,10.63843591,0,11.82217246,9.461479447,1.584962501,1,9.618385502,10.60640521,1,11.0721326,1,0,10.11504365,10.87036472,1.584962501,10.05528244,9.6794801,0,11.16113188,10.31628153,1,12.55842071,2.321928095,6.599912842,0,10.69522829,10.68299458,0,11.1382718,9.335390355,10.37177664,1.584962501,10.68123841,9.980139578,10.92109709,11.33259606,9.804131021,1.584962501,10.3376219,11.50878516,9.453270634,9.965784285,11.11374217,10.90538701,0,10.6329952,10.6183855,2.584962501,9.652844973,8.968666793,0,11.08878824,11.3586512,0,9.663558104,9.35974956,0,9.93516505,10.74315139,9.764871591,10.22158712,0,11.97513146,12.28713519,1.584962501,11.26150731,9.812177306,10.92925841,0,11.59572369,10.83841608,10.52943055,11.02997735,0,10.63571812,0,11.4604559,11.40087944,1,12.21947107,1.584962501,10.5372184,0,10.24079133,0,11.10328781,1.584962501,10.36303963,1,8.317412614,1.584962501,0,10.54978467,1,9.339850003,0,10.33650656,10.95637616,1.584962501,10.93369065,0,9.355351096,10.79928162,10.25502857,10.05120894,1.584962501,5.64385619,2,10.65284497,1,0,3.807354922,0,10.60455323,10.89860139,10.8494051,1.584962501,10.11243951,11.13057056,10.68825031,1,10.67860014,1,10.83526092,0,6.22881869,10.60177079,10.07547915,0,11.06676193,10.83999107,1.584962501,1,10.67860014,10.99717948,0,0,11.22037833,10.6329952,9.62935662,11.05188866,10.41045135,9.002815016,8.744833837,10.23601419,11.36522885,12.13987106,11.03960452,9.560332834,8.768184325,9.152284842,9.177419538,10.25029842,9.856425529,10.85720347,9.33315535 AADACL3,0,0,0,0,1,0,0,4.169925001,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.584962501,0,0,0,1,0,2.807354922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,10.64295422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3.906890596,0,0,13.93590168,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4.169925001,0,0,0,1,0,0,0,0,0,0,1.584962501,1,0,0,0,0,1.584962501,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7.434628228,0,0,0,0,0,0,4.459431619,0,0,0,1,0,0,0,0,0,0,1.584962501,0,0,0,0,0,0,0,0,0,0,0,0,2.807354922,0,0,0,9.505811554,0,2.807354922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2.807354922,0,0,1,0,0,0,0,0,0,2,1,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,3.321928095,0,2.807354922,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5.672425342,0,0,1,0,10.39553414,0,0,0,0,0,0,0,1,0,3,0,7.139551352,1,0,2.807354922,3.584962501,0,6.129283017,1,12.16050175,7.845490051,0,1,3.321928095,6.50779464,0,0,2,3,0,5.129283017,2,0,0,7.257387843,0,8.632995197,0,1,0,0,0,0,9.693486957,4.087462841,0,0,0,0,0,0,0,1,5.781359714,0,7.912889336,1,5.426264755,9.573647187,3.169925001,0,0,7.400879436,0,4.087462841,0,1.584962501,0,0,10.39124359,0,0,1,1,0,6.409390936,0,7.491853096,8.011227255,0,0,0,1.584962501,0,0,1.584962501,10.18858885,4.321928095,0,3.169925001,0,0,1.584962501,0,8.144658243,0,0,0,6.988684687,0,0,0,2.584962501,0,3,6.357552005,8.087462841,4,0,0,0,0,0,0,5.491853096,8.370687407,8.243173983,0,2,0,1,9.164906927,0,0,6.14974712,0,0,0,4.584962501,0,9.523561956,0,5.523561956,0,0,0,4.807354922,1,0,0,0,1.584962501,5.129283017,3.807354922,7.383704292,3.906890596,0,0,11.32249154,3.169925001,1,0,5.672425342,0,0,8.463524373,0,0,1.584962501,0,4.321928095,1,6.768184325,9.968666793,3.584962501,1,5.523561956,8.033423002,7.426264755,0,0,5.554588852,0,2.807354922,1.584962501,5.584962501,0,1.584962501,2.807354922,1.584962501,6.781359714,0,7.87036472,5.247927513,4.087462841,6.64385619,7.982993575,1,0,2.584962501,6.832890014,1.584962501,0,0,0,7.658211483,0,1.584962501,1,1,7.044394119,0,3.906890596,5.247927513,0,4.584962501,3,3.584962501,7.965784285,1,4.087462841,0,4.906890596,1,0,7.087462841,2,0,5.357552005,2,0,0,7.882643049,2,1.584962501,11.06676193,0,5.491853096,0,0,2.584962501,0,0,9.250298418,5.247927513,3.584962501,5.087462841,5.832890014,0,0,0,0,0,5.64385619,2,7.807354922,11.79238361,0,3,0,6.426264755,1.584962501,1,5.754887502,9.601770788,0,0,1,5.357552005,7.159871337,3.906890596,8.388017285,1.584962501,0,0,4.087462841,9.426264755,2,2,1.584962501,5.357552005,0,10.05256805,3.321928095,0,0,2,0,3,0,0,11.83091128,0,5.523561956,0,1.584962501,4.087462841,0,6.022367813,4.247927513,1.584962501,9.152284842,2,0,0,0,0,4.087462841,7.022367813,0,3.906890596,8.54689446,11.82057788,4.754887502,0,0,0,0,6.087462841,0,9.252665432,0,4.392317423,0,7.21916852,0,1.584962501,0,0,0,3,0,3,0,0,5.285402219,0,1,0,0,0,0,0,8.144658243,8.968666793,0,0,0,0,0,2,1.584962501,0,0,6.491853096,0,0,0,0,0,5.129283017,0,0,0,0,0,0,5.64385619,0,0,0,0,5.857980995,0,5.554588852,7.46760555,0,0,5.906890596,0,3,0,0,7.357552005,9.95419631,0,2.584962501,0,0,0,0,0,0,0,0,4.754887502,0,0,1,1.584962501,0,5.357552005,0,0,0,0,0,7.129283017,9.434628228,0,0,0,0,0,0,0,0,0,1,0,0,0,0,6.357552005,0,0,0,7.651051691,8.303780748,0,0,0,3.169925001,0,0,1,0,0,0,0,0,0,5.672425342,2,0,1,0,0,0,0,0,8.326429487,7.383704292,0,1,0,0,6.087462841,0,9.605479518,0,0,0,0,0,0,0,0,0,0,0,0,1,5.426264755,11.06676193,0,0,0,0,0,0,3.906890596,0,0,1.584962501,0,0,0,0,0,0,0,0,0,5.285402219,0,2.584962501,0,9.631177056,1,0,1,0,10.05799172,5.491853096,9.764871591,0,6.375039431,0,0,0,1,1,1,0,0,10.25856603,1,6.64385619,1,8.044394119,8.224001674,0,5.754887502,2,1.584962501,1.584962501,0,0,5,1,9.605479518,0,0,1,1,9.596189756,0,0,0,0,0,0,1,0,9.095397023,0,0,0,0,0,0,4.247927513,0,1.584962501,7.807354922,9.461479447,0,6.64385619,0,9.344295908,8.661778098,0,0,2,0,9.025139562,0,5.64385619,1,10.31628153,1.584962501,4.247927513,4.321928095,1,1,3.807354922,1.584962501,0,0,5.209453366,0,0,1,0,8.103287808,4.169925001,0,0,0,0,0,6.303780748,0,7.727920455,4.906890596,3.906890596,0,0,0,5.285402219,0,0,0,6.584962501,0,0,1,0,0,0,0,1.584962501,0,8.754887502,0,5.554588852,6.087462841,0,8.388017285,0,1,0,1,7.845490051,3.584962501,0,0,0,5.754887502,1,0,0,8.87958325,0,1,4.754887502,0,1,0,1,5.906890596,0,0,0,1,0,1,2,2.807354922,0,0,0,10.72109919,9.917372079,0,0,1,8.495855027,9.764871591,0,0,0,0,2,3.584962501,0,0,0,0,0,12.74167764,7.06608919,1,13.10066234,3.584962501,1,5.209453366,0,0,1,0,0,0,0,6.768184325,9.409390936,0,0,3.169925001,0,0,8.807354922,1,0,4.087462841,2,0,0,4.087462841,0,0,0,0,6.491853096,7.022367813,0,11.22460468,1.584962501,0,1.584962501,4.392317423,0,7.434628228,5.247927513,4.247927513,2.807354922,0,1,1,0,1,0,3,0,1,0,0,2,0,0,0,0,1,0,1.584962501,0,1,0,12.12412131,0,6.14974712,0,0,0,0,1,0,7.900866808,1,1.584962501,0,6.672425342,0,0,8.159871337,0,1,6.584962501,7.06608919,2,0,6.523561956,0,0,0,0,1.584962501,0,1.584962501,1.584962501,7.569855608,0,0,0,0,0,6.523561956,0,4.523561956,0,4.807354922,2,0,0,1,0,0,0,2,4.584962501,0,0,1.584962501,7.22881869,5.247927513,0,0,5.044394119,0,4.906890596,0,1,3,0,0,4.584962501,4.754887502,0,12.53016245,6.807354922,2 AADACL4,0,0,0,0,0,0,0,0,0,0,0,0,1.584962501,0,1,0,0,0,1,1,0,0,0,4.087462841,0,0,1,0,1,0,0,0,0,0,0,0,2.321928095,0,0,0,1,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2.321928095,0,2.321928095,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1.584962501,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1.584962501,1,1.584962501,0,0,3,0,0,6.209453366,1,1.584962501,0,0,0,0,0,1.584962501,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1.584962501,0,2,0,1.584962501,0,1,1,0,0,2,3,0,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,1.584962501,0,0,0,1.584962501,0,0,0,0,0,0,0,0,1,0,2.807354922,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,2,0,0,0,1,0,0,0,1.584962501,0,0,0,0,1,0,0,0,0,0,0,1,1.584962501,0,0,0,0,1,0,0,0,3,2,1.584962501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3.169925001,0,0,0,0,0,1,0,0,0,0,0,0,0,2.584962501,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1.584962501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1.584962501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.614709844,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1.584962501,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.584962501,0,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1.584962501,1.584962501,0,1.584962501,2,2,0,0,0,1.584962501,3.169925001,2.584962501,0,0,1.584962501,0,0,1,2.584962501,2.584962501,0,1,0,1.584962501,1.584962501,3,0,1.584962501,0,0,0,0,2.807354922,1,0,2,1,1,2,0,3.584962501,0,2,2,0,2,0,0,3.321928095,1,0,0,1.584962501,0,1,1,1,1.584962501,0,1,1.584962501,1,0,0,2.584962501,0,2,0,2.584962501,0,0,0,0,0,1,3.906890596,0,0,0,0,3,1,3.321928095,1,0,5.209453366,0,3,0,1.584962501,2,0,3,0,1.584962501,0,1,2,0,2,1,0,0,1.584962501,1,0,1.584962501,0,1.584962501,2,0,0,1,0,2.584962501,0,1,0,0,0,1,2,2,0,2,0,0,1,0,0,0,0,0,0,0,0,2,1.584962501,0,1,0,0,1,0,0,2.807354922,0,0,0,0,0,0,0,0,3.169925001,0,0,0,2.584962501,0,0,1,0,0,0,0,2,0,1.584962501,1.584962501,1.584962501,0,0,0,2,0,0,0,0,0,1,2,0,0,0,0,1.584962501,0,0,1,0,0,1,0,0,2.584962501,1,0,0,0,0,1.584962501,0,0,0,0,2,0,0,0,0,0,0,0,1,0,2,0,1.584962501,0,0,1.584962501,0,0,1,0,1.584962501,0,2,0,0,3.584962501,0,0,0,1.584962501,1,0,0,1.584962501,1,0,0,0,0,0,0,0,0,1,0,1,3,1,0,0,2,0,0,0,3,0,0,0,1,1.584962501,0,1,0,2,0,1.584962501,2,0,0,0,3.169925001,0,2.584962501,0,0,0,0,0,1,0,0,3.584962501,0,0,0,0,0,0,1,0,0,3,0,0,0,0,1.584962501,0,0,0,1,2,1.584962501,1.584962501,0,1,0,0,0,0,0,1,0,0,0,1,1,2,0,3.169925001,0,0,0,0,1.584962501,0,0,3.169925001,3.807354922,0,0,0,1,0,2,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,1.584962501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1.584962501,0,1,2.584962501,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,1.584962501,2,0,0,0,0,1.584962501,1,1.584962501,2,1,0,0,2,0,0,0,0,0,1,1.584962501,0,0,1.584962501,1,0,2.807354922,1,1.584962501,0,0,0,0,0,1,0,0,0,0,0,3,2,1.584962501,0,0,0,0,1.584962501,1.584962501,1,1,1,2.584962501,0,0,2,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3.321928095,2,1.584962501,1.584962501,0,0,1,0,1,0,2,0,0,2,3,1.584962501,1.584962501,0,4.087462841,0,0,0,0,0,0,1,0,3.584962501,0,0,1.584962501,5,1.584962501,1.584962501,0,3,0,0,1.584962501,0,0,2.584962501,1.584962501,2,0,1,1,0,4.807354922,0,0,0,3,0,0,0,3.584962501,0,4.523561956,0,0,1.584962501,3.807354922,4.64385619,2.584962501,3.584962501,2,1.584962501,0,0,1,2,0,0,0,1,2,2,0,0,0,0,0,2,4.807354922,3,1,2,0,2.584962501,1,1,1.584962501,1,0,2.584962501,4,2,1.584962501,1,2,0,0,0,0,0,0,0,0,0,1.584962501,0,1.584962501,2,0,2.807354922,0,0,3.584962501,1.584962501,1.584962501,0,1,0,0,1.584962501,0,0,1.584962501,0,0,2,1,1.584962501,2.807354922,2,0,0,1,3.584962501,3,0,1,0,3.584962501,0,0,2,0,1,0,0,2.584962501,0,2,1.584962501,3,0,0,0,0,2.807354922,1.584962501,2,0,0,4,0,0,0,0,0,1,0,0,0,0,0,0,3.169925001,3,2,0,2,1,1,1.584962501,1,0,2,1,0,3.321928095,1,1,1,0,4.392317423,2.807354922,0,4.321928095,0,1,0,1,0,3,0,0,2.807354922,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,1.584962501,2.807354922,0,1.584962501,0,0,2,0,0,1,1,2,0,0,3,0,3.584962501,0,0,0,0,0,3,2.584962501,0,2.807354922,0,0,1.584962501,0,3,0,2,3.584962501,3,2.807354922,2,0,1,0,1,4.321928095,0,2,0,2.807354922,0,0,2,0,3.584962501,0,0,0,1,2,1,1,0,2.584962501,0,1,3,0,1,3,1,0,0,0,3.584962501,2.807354922,2.584962501,1,2,0,0,0,0,0,0,0,0,1,0,2.807354922,2,0,1,2,0,0,0,0,0,0,0,0,0,0,2.807354922,0,0,3.321928095,1,1.584962501 AB019440.50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2.321928095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1.584962501,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1.584962501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.392317423,0,0,0,0,0,1.584962501,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1.584962501,1.584962501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.807354922,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.169925001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.584962501,0,0,0,2.321928095,0,0,0,0,0,0,0,0,2.321928095,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1.584962501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1.584962501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.22881869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.584962501,0,6.321928095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 AB019441.29,6.392317423,4.95419631,6.62935662,6.988684687,8.625708843,6.614709844,6.845490051,7.845490051,6.50779464,7.303780748,6,6.894817763,7.839203788,6.491853096,5.044394119,6.614709844,6.930737338,6.247927513,7.665335917,6.14974712,7.515699838,6.807354922,5.491853096,7.900866808,6.169925001,4.95419631,7.434628228,6.672425342,7.73470962,8.285402219,7.700439718,5.459431619,7.055282436,7.813781191,9.082149041,8,7.965784285,6.977279923,8.049848549,7.417852515,7.087462841,6.942514505,6.426264755,7.189824559,8.204571144,6.781359714,7.14974712,7.54689446,8.033423002,7.62935662,5.906890596,7.918863237,6.714245518,7.21916852,6.672425342,6.754887502,7.523561956,8.413627929,7.8008999,8.434628228,6.614709844,7.6794801,7.523561956,6.95419631,6.569855608,6.523561956,6.845490051,4.321928095,6.491853096,5.882643049,6.169925001,7.022367813,5.459431619,7.882643049,6.169925001,7.942514505,6.820178962,7.312882955,6.614709844,6.285402219,7.888743249,7.523561956,7.06608919,5.781359714,6.727920455,6.988684687,6.599912842,7.599912842,6.781359714,7.584962501,8.392317423,7.312882955,5.392317423,6.129283017,7.247927513,6.50779464,8.159871337,7.321928095,7.409390936,6.303780748,7.499845887,7.839203788,6.686500527,7.577428828,7.426264755,5.491853096,6.459431619,6.942514505,6.95419631,6.741466986,5.857980995,6.22881869,6.781359714,7.554588852,8.971543554,6.14974712,5.523561956,7.276124405,8.199672345,5.857980995,6.768184325,6.672425342,6.459431619,6.832890014,7.139551352,7.768184325,6.584962501,6.845490051,6.832890014,7.434628228,6.62935662,6.95419631,7.434628228,6.584962501,8.243173983,7.06608919,7.54689446,6.741466986,6.658211483,7.8008999,6.392317423,7.044394119,8.392317423,7.14974712,6.169925001,7.14974712,7,6.599912842,5.672425342,6.392317423,6.658211483,7.159871337,7.383704292,8.927777962,7.442943496,7.366322214,6.714245518,8.303780748,7.266786541,6.768184325,6.266786541,6.614709844,7.383704292,7.098032083,7.768184325,7.721099189,7,6.794415866,6.754887502,6.209453366,7.409390936,5.930737338,6,7.599912842,6.672425342,8.022367813,7.247927513,7.276124405,7.459431619,7.189824559,6.554588852,7.794415866,6.426264755,7.076815597,5.754887502,7.22881869,5.672425342,7.707359132,7.515699838,5.357552005,7.721099189,6.857980995,8.038918989,7.781359714,7.087462841,6.523561956,6.741466986,7.409390936,6.727920455,6.977279923,8.209453366,5.857980995,7.707359132,7.321928095,8.262094845,5.614709844,8.710806434,6.426264755,5.882643049,5.584962501,5.209453366,6.169925001,7.614709844,6.189824559,6.392317423,3.459431619,7.118941073,6.266786541,6.285402219,7.693486957,8.005624549,8.339850003,7.906890596,7.417852515,6.672425342,5.584962501,7.098032083,6.794415866,7.22881869,7.266786541,6.209453366,6.409390936,7.339850003,7.876516947,6.044394119,7.285402219,8.189824559,7.658211483,5.727920455,6.539158811,6.727920455,6.807354922,6.442943496,6.942514505,5.087462841,8.13442632,7.807354922,5.754887502,7.636624621,5.169925001,7.357552005,6.584962501,5.95419631,7.076815597,7.129283017,7.700439718,7.636624621,8.184875343,6.768184325,7.607330314,6.686500527,6.392317423,7.826548487,6.129283017,6.554588852,6.768184325,6.06608919,6.62935662,7.392317423,7.044394119,7.076815597,6.614709844,7.076815597,6.894817763,6.942514505,8.977279923,6.95419631,6.882643049,6.539158811,8.321928095,7.539158811,6.686500527,6.87036472,7.22881869,9.346513733,7.129283017,5.807354922,6.426264755,7.442943496,8.588714636,7.330916878,7.087462841,7.54689446,7.554588852,8.082149041,5.977279923,6.426264755,6.129283017,6.108524457,6.321928095,6.988684687,6.247927513,6.554588852,6.832890014,8.50779464,7.584962501,8.154818109,6.832890014,7.499845887,7.022367813,7.033423002,6.129283017,7.169925001,7.055282436,6.539158811,7.707359132,7.651051691,6.044394119,6.614709844,5.807354922,7.044394119,7.74819285,7.199672345,7.366322214,6.285402219,7.6794801,7.209453366,6.22881869,8.033423002,7.238404739,4.754887502,6.727920455,6.832890014,7.022367813,6.584962501,6.189824559,7.055282436,6.50779464,8.103287808,7.607330314,6.781359714,5.807354922,5.882643049,7.348728154,6.584962501,6.672425342,6.303780748,7.912889336,7.375039431,6.672425342,7.209453366,5,7.888743249,6.95419631,7.562242424,5.285402219,6.569855608,5.554588852,6.50779464,7.721099189,7.375039431,6.857980995,6.832890014,6.807354922,8.77148947,7.46760555,5.64385619,7.044394119,8.092757141,6.554588852,8.475733431,5.64385619,6.599912842,5.584962501,5.977279923,6.754887502,6.658211483,7.129283017,6.539158811,6,6.672425342,6.658211483,7.900866808,7.312882955,5.392317423,6.523561956,7.857980995,5.247927513,6.906890596,6.672425342,7.87036472,6.942514505,7.312882955,6.189824559,6.303780748,6.539158811,6.108524457,6.375039431,6.50779464,7.400879436,8.87958325,6.894817763,8.491853096,7.607330314,6.044394119,7.108524457,6.584962501,7.076815597,7.366322214,6.339850003,8.463524373,8.672425342,6.189824559,7.820178962,7.74819285,7.033423002,6.672425342,5.832890014,6.930737338,7.011227255,7.044394119,6.794415866,7.912889336,7.375039431,6.14974712,8.055282436,7.531381461,7.475733431,6.409390936,8.243173983,5.807354922,6.409390936,8.144658243,7.06608919,7.21916852,7.06608919,7.312882955,7.459431619,5.64385619,6.807354922,5.781359714,5.95419631,6.459431619,6.569855608,8.164906927,7.159871337,4.64385619,6.820178962,6.686500527,7.303780748,5.727920455,7.539158811,7.714245518,9.262094845,7.475733431,7.392317423,7.011227255,6.539158811,7.942514505,5.614709844,7.366322214,8.442943496,5.781359714,6.930737338,8.022367813,6.14974712,6.303780748,7.330916878,6.491853096,8.400879436,4.087462841,3.459431619,4.700439718,3.584962501,4,4.95419631,3.700439718,3.584962501,4,3,5.426264755,3.906890596,4.247927513,3.584962501,3.459431619,4,4,3.321928095,3.807354922,4.247927513,3.169925001,3.459431619,4.169925001,3.169925001,3.459431619,4,4.169925001,4.169925001,4.857980995,4.857980995,4.459431619,5,4.247927513,4.754887502,4.321928095,3.906890596,4.523561956,3.807354922,3.321928095,5.64385619,4.392317423,1.584962501,4.807354922,4,3.906890596,5.491853096,4.906890596,2.584962501,4.754887502,3.584962501,2.584962501,7.17990909,4.584962501,3.321928095,2.321928095,4.64385619,4.459431619,4.584962501,5.044394119,5.357552005,3.169925001,4.321928095,4.321928095,4,4.321928095,4,5.459431619,5,4.807354922,3.906890596,4.321928095,5.64385619,4,3,3.584962501,5.247927513,3.169925001,3.906890596,3.584962501,2.321928095,3.584962501,4.523561956,5.285402219,3.906890596,5.700439718,4.321928095,3.906890596,4.754887502,3.321928095,5.614709844,5.169925001,3.906890596,4,3.321928095,4.247927513,4.584962501,5.491853096,4.247927513,2.584962501,5.247927513,4.321928095,3.807354922,3.321928095,3.584962501,3.807354922,3,4.64385619,5.459431619,4.087462841,3.584962501,3.169925001,4.584962501,4.392317423,4.523561956,4,4.584962501,3.700439718,3.906890596,3.321928095,4.459431619,5.95419631,4.584962501,4,4.64385619,4.523561956,3.906890596,4.087462841,4.392317423,4.169925001,3.459431619,3.906890596,4,5.392317423,5.700439718,5.247927513,6.768184325,4.459431619,5.321928095,4.087462841,3.700439718,4.807354922,5.169925001,2.807354922,2.584962501,6,3.169925001,3.906890596,2.584962501,4.087462841,2.807354922,2.584962501,4,3.459431619,3.906890596,3.584962501,4.169925001,1.584962501,4.321928095,5.169925001,3.169925001,3.807354922,3.459431619,3.906890596,4.523561956,5.209453366,4.087462841,2.584962501,3.584962501,4.087462841,3.807354922,3.807354922,4.321928095,4.459431619,3,4.64385619,4.857980995,4.700439718,5.392317423,3.459431619,4.392317423,4.321928095,4.523561956,4.523561956,4.584962501,3.321928095,4.523561956,2.807354922,3.807354922,4,3.906890596,4.169925001,3.459431619,3.459431619,4.392317423,4.584962501,4,3.459431619,3.169925001,4.459431619,5.672425342,4.64385619,4,4.087462841,3.807354922,4.169925001,4.087462841,3.906890596,4.64385619,2.807354922,5.044394119,3,3.700439718,3.321928095,5.087462841,4.321928095,4.392317423,3.169925001,4.087462841,4.523561956,4.321928095,4.392317423,4.64385619,4.906890596,4.754887502,4.087462841,4.807354922,3.459431619,3.459431619,4.392317423,3,4.906890596,4.700439718,3.459431619,4.95419631,4.392317423,4.247927513,4.64385619,4.321928095,4.64385619,3.700439718,4.321928095,3.700439718,4,3.700439718,3.584962501,3.169925001,4.64385619,4,5,4.169925001,4.392317423,4.247927513,3.584962501,6.087462841,3.906890596,4.087462841,4,3.321928095,4.459431619,2.807354922,4.584962501,2.807354922,4.700439718,4.169925001,3.906890596,4.169925001,4.169925001,3.169925001,4.523561956,4.247927513,4.321928095,4.459431619,4.247927513,3.459431619,3.700439718,4.64385619,4.087462841,3.807354922,2.321928095,4.906890596,3.169925001,4.087462841,4,5,4.700439718,4.247927513,5.087462841,4,4.584962501,4,4.392317423,3.700439718,4.321928095,3.459431619,4.584962501,3.906890596,3.906890596,5.321928095,4.392317423,3.584962501,4.459431619,3.906890596,3,4.523561956,4.523561956,3.584962501,3.807354922,2.807354922,2.807354922,5.087462841,3.906890596,5.247927513,3.906890596,3.169925001,3.906890596,4.523561956,3.169925001,4.247927513,4,3,2.584962501,2.584962501,3.906890596,3.906890596,4.169925001,4.754887502,4.700439718,3.906890596,4,2.584962501,4.459431619,3.906890596,4.523561956,4.169925001,4,4.321928095,4.392317423,5.169925001,5,4,2.321928095,3.906890596,4.523561956,5.781359714,5.807354922,5.169925001,5.169925001,3.321928095,3.584962501,2.584962501,4.754887502,5.044394119,2,3.169925001,2.807354922,4.700439718,2.584962501,3.169925001,3,4.087462841,3.807354922,3.807354922,1.584962501,2.584962501,3.459431619,2.807354922,3.807354922,2,3.584962501,2.584962501,4.087462841,2.321928095,2.321928095,3.459431619,3.584962501,2.584962501,3,3.700439718,1.584962501,5.087462841,4.247927513,1,2.584962501,3.700439718,2.584962501,5.781359714,3.321928095,0,3.906890596,3.906890596,2,4,3,3.906890596,2,4.247927513,3.321928095,1,6.189824559,1.584962501,5.491853096,2.584962501,3,3.321928095,4.392317423,3.807354922,5.087462841,5.129283017,3.700439718,3.584962501,2.584962501,3,5.087462841,2.321928095,3.700439718,3.459431619,4.247927513,3.807354922,3.321928095,4.523561956,4.523561956,4.459431619,5.727920455,3.459431619,4.321928095,3.807354922,4.754887502,2,3,4.754887502,4.087462841,4.087462841,2.807354922,4.247927513,3,3.584962501,5.459431619,5.882643049,3.459431619,4.64385619,3.459431619,4.321928095,3.906890596,3,3.459431619,4.700439718,3.321928095,4.087462841,4.247927513,3,2.321928095,6.741466986,2,4.807354922,5.087462841,2.807354922,5.672425342,4.321928095,4.321928095,2.584962501,1.584962501,3,2,4.64385619,5.247927513,4.247927513,4.321928095,4.807354922,3.459431619,3.169925001,2.807354922,4.857980995,3.321928095,5.169925001,3.807354922,5.285402219,2.584962501,5.087462841,3.700439718,3.700439718,3.906890596,4.169925001,3.807354922,3.321928095,3.807354922,3.169925001,3.700439718,3.700439718,3.169925001,3,4.321928095,4.459431619,4,4.169925001,4.169925001,3.321928095,2.321928095,4.700439718,1.584962501,1,4.169925001,3.807354922,4.95419631,5,3.321928095,2.321928095,4.087462841,3.321928095,4.392317423,2.584962501,3.700439718,4.392317423,4.700439718,3.700439718,3.169925001,4,3,2.807354922,2.807354922,3.700439718,3.459431619,4.247927513,5,4.754887502,3.169925001,2,3.584962501,0,3.459431619,3.906890596,2.321928095,3,3.906890596,4,1.584962501,5.044394119,3,3.321928095,5.285402219,3.700439718,5,3.700439718,4.857980995,4.169925001,5.491853096,4.459431619,4,3,4.247927513,4,3,4.392317423,4.247927513,3.584962501,4.392317423,4.807354922,3.584962501,4.584962501,3.459431619,5.321928095,4.95419631,2.807354922,5,4.584962501,2.807354922,5,1.584962501,4.584962501,2.584962501,4.459431619,3.459431619,5.087462841,4.64385619,2.584962501,5.285402219,4.584962501,4,4.459431619,4,4.459431619,2.807354922,3.169925001,3.584962501,3,3.459431619,3.807354922,3.584962501,3.807354922,3.906890596,1,4.523561956,4.584962501,5.044394119,3,3.807354922,3.584962501,3.906890596,2.807354922,2.584962501,3.459431619,2.321928095,2.321928095,1.584962501,3.807354922,3.584962501,4.459431619,5.129283017,2.584962501,4.523561956,4.321928095,3.169925001,3.169925001,4.247927513,4.321928095,4.584962501,3.459431619,2.807354922,4.64385619,3.321928095,4,4,3,3,3.321928095,3.459431619,4.321928095,4.584962501,3.700439718,2.321928095,3.700439718,4.64385619,3.169925001,3.321928095,3.906890596,3.584962501,3.321928095,3,2.321928095,2.807354922,4.523561956,2.321928095,2.321928095,4.321928095,4.392317423,3.700439718,4,4.087462841,4.247927513,3.169925001,3,3,3.700439718,4.754887502,4.523561956,3.906890596,3.321928095,4.807354922,4.857980995,3.584962501,4.321928095,4.247927513,3.584962501,3.584962501,5.906890596,4.857980995,4.087462841,4.169925001,4.64385619,4,5,4,4.169925001,6.727920455,5.523561956,3,6.087462841,5.930737338,6.022367813,4.169925001,3.321928095,5.491853096,4.247927513,4.459431619,3.321928095,3.807354922,4.087462841,3.906890596,4.523561956,6,4.087462841,4.700439718,3.459431619,3.807354922,4.087462841,2.321928095,3.321928095,3.807354922,2,3.807354922,3.906890596,3.321928095,3.700439718,5.247927513,2.321928095,3.169925001,4.906890596,4.087462841,3.700439718,5,3.321928095,3.906890596,4.169925001,3.584962501,4.087462841,4.523561956,4.906890596,4.857980995,4.857980995,5.672425342,4.807354922,3.906890596,2.584962501,4.700439718,4.857980995,3.459431619,3,3.169925001,4,4.321928095,4.523561956,5.044394119,3.584962501,5.209453366,4.321928095,5.392317423,4.321928095,5.321928095,4.392317423,4.700439718,4.321928095,3.584962501,4.95419631,4.95419631,4.247927513,4.321928095,4.321928095,4.857980995,3.584962501,4.857980995,3.321928095,4.700439718,4.906890596,3.321928095,5.247927513,5.64385619,5.044394119,3.807354922,3.169925001,5.426264755,5.247927513,4.754887502,3.169925001,5.044394119,4.584962501,5,4.321928095,4.807354922,5.169925001,6.14974712,5.64385619,3.459431619,5.044394119,3.459431619,4.247927513,4.754887502,5.882643049,2.321928095,5.459431619,5.357552005,5.247927513,5.087462841,4.392317423,4.906890596,5.754887502,4.807354922,5.285402219,4.087462841,2,4.321928095,4.584962501,4.754887502,3.807354922,3.700439718,5.357552005,4,4.321928095,3.169925001,3.459431619,6.022367813,4,5.459431619,3.459431619,4.087462841,5.357552005,5.129283017,6.108524457,3.584962501,4.169925001,3.807354922,4.169925001,4.64385619 ================================================ FILE: inst/extdata/ascii_art.txt ================================================ _______ _____ _ _ _____ _____ _____ ____ _____ |__ __| __ \ /\ | \ | |/ ____| __ \| __ \ / __ \| __ \ | | | |__) | / \ | \| | (___ | |__) | |__) | | | | |__) | | | | _ / / /\ \ | . ` |\___ \| ___/| _ /| | | | _ / | | | | \ \ / ____ \| |\ |____) | | | | \ \| |__| | | \ \ |_| |_| \_\/_/ \_\_| \_|_____/|_| |_| \_\\____/|_| \_\ _ _ _______ _____ _____ _______ _________ _______ _____ _____ /\ | | | |__ __| / ____/ ____/ ____\ \ / / __ \ \ / / ____/ ____/ ____| / \ | | | | | | | (___| (___| (___ \ \_/ /| | | \ \_/ / (___| (___| (___ / /\ \| | | | | | \___ \\___ \\___ \ \ / | | | |\ / \___ \\___ \\___ \ / ____ \ |__| | | | ____) |___) |___) | | | | |__| | | | ____) |___) |___) | /_/ \_\____/ |_| |_____/_____/_____/ |_| |_____/ |_| |_____/_____/_____/ ================================================ FILE: inst/extdata/gtex_gene_expected_count_test ================================================ sample GTEX-S4Q7-0003-SM-3NM8M GTEX-QV31-1626-SM-2S1QC GTEX-13QIC-0011-R1a-SM-5O9CJ GTEX-ZPCL-0126-SM-4WWC8 GTEX-S33H-1226-SM-4AD69 GTEX-X88G-0426-SM-47JZ5 GTEX-ZAKK-0326-SM-5EGHA GTEX-1399S-1726-SM-5L3DI GTEX-ZF29-0926-SM-4WKFZ GTEX-13W3W-2626-SM-5SIA2 GTEX-WQUQ-2526-SM-4MVNO GTEX-P44H-0526-SM-2XCF1 GTEX-11ONC-2326-SM-5HL6P GTEX-TSE9-0126-SM-3DB83 GTEX-R55F-0226-SM-48FCI GTEX-13O3P-0226-SM-5KM3Z GTEX-VJYA-0005-SM-3P5ZD GTEX-PWCY-1326-SM-48TCU GTEX-POMQ-0006-SM-5SI7D GTEX-Y9LG-0426-SM-4VBRT GTEX-147F4-1226-SM-5NQAY GTEX-QXCU-0626-SM-2TC69 GTEX-1269C-2626-SM-5EQ5C GTEX-12WSK-2326-SM-5GCOH GTEX-P4PQ-0126-SM-2S1NM GTEX-ZA64-1526-SM-5CVMD GTEX-1122O-0426-SM-5H12G GTEX-1399Q-0005-SM-5NQAG GTEX-11EI6-0826-SM-5985V GTEX-11EI6-3126-SM-5H111 GTEX-QV44-1726-SM-4R1KG GTEX-14E7W-0526-SM-5S2W8 GTEX-S341-0326-SM-2XCAU GTEX-N7MS-2625-SM-3LK77 GTEX-OHPJ-0926-SM-2HMJ1 GTEX-13O61-0326-SM-5KM2O GTEX-REY6-0126-SM-48FDT GTEX-13PL7-2726-SM-5L3GB GTEX-QV44-0526-SM-2S1RE GTEX-WY7C-0426-SM-3NB3C GTEX-ZPCL-0004-SM-4WWD6 GTEX-X5EB-0326-SM-4QASF GTEX-11DXY-1526-SM-5H129 GTEX-ZPIC-0005-SM-4WWEB GTEX-13G51-2126-SM-5IJD9 GTEX-Y5V6-2826-SM-4VDSF GTEX-Y111-1826-SM-4SOIR GTEX-TMZS-0001-SM-3P61Q GTEX-11XUK-1426-SM-5EQMG GTEX-WOFM-0526-SM-4OOS2 GTEX-N7MS-2526-SM-26GMA GTEX-WHPG-0226-SM-3NMB9 GTEX-13FTZ-2226-SM-5LZXI GTEX-14AS3-1326-SM-5RQJE GTEX-QEG4-0426-SM-5S2VQ GTEX-1339X-0326-SM-5K7Z8 GTEX-PLZ6-0126-SM-48TC6 GTEX-11ONC-2826-SM-5P9GQ GTEX-N7MS-2526-SM-26GMR GTEX-1122O-1526-SM-5N9CL GTEX-1497J-1226-SM-5Q5BL GTEX-13OW7-2726-SM-5L3HN GTEX-QLQ7-0826-SM-447B3 GTEX-XPVG-1026-SM-4B64Y GTEX-WYBS-1026-SM-4ONCY GTEX-ZPCL-1426-SM-57WEC GTEX-Y114-2626-SM-4TT8Y GTEX-ZZPU-0326-SM-5N9BJ GTEX-VJYA-0826-SM-4KL1M GTEX-ZPU1-2126-SM-57WED GTEX-X585-0008-SM-46MU4 GTEX-S4UY-0426-SM-3K2AF GTEX-12WSD-2826-SM-59HKT GTEX-NPJ7-0011-R6a-SM-2I3G7 GTEX-UPIC-1726-SM-4IHKG GTEX-WZTO-0626-SM-4PQYY GTEX-WHSB-0005-SM-3LK7C GTEX-Y9LG-0226-SM-4VBS4 GTEX-13PVQ-0726-SM-5L3GI GTEX-OHPL-1626-SM-2HMIR GTEX-POYW-0006-SM-2XCF4 GTEX-12WSN-2726-SM-5LZUK GTEX-12584-0926-SM-5FQTN GTEX-132AR-2426-SM-5IFFD GTEX-132Q8-3026-SM-5PNVG GTEX-RM2N-0626-SM-48FD6 GTEX-ZYW4-1426-SM-5SIAX GTEX-ZT9X-1826-SM-57WDU GTEX-UJMC-0526-SM-3GAE3 GTEX-RU1J-0006-SM-2TF6M GTEX-Y114-1926-SM-4TT8J GTEX-ZF3C-2026-SM-4WWB5 GTEX-X4EP-2926-SM-3P5YQ GTEX-NPJ7-2726-SM-2I3FT GTEX-13OVJ-0011-R9b-SM-5L3GD GTEX-ZA64-2226-SM-5Q5A9 GTEX-XUW1-1726-SM-4BOOZ GTEX-12BJ1-1426-SM-5BC5Q GTEX-131XE-2026-SM-5LZW1 GTEX-111FC-0326-SM-5GZZ1 GTEX-XAJ8-1026-SM-47JY9 GTEX-XLM4-0011-R10A-SM-4AT5P GTEX-XMD2-0006-SM-4WWEG GTEX-13SLW-0226-SM-5S2NA GTEX-YBZK-0005-SM-59HKG GTEX-1399R-0126-SM-5IFEV GTEX-13FHP-0226-SM-5K7WD GTEX-R55G-0126-SM-48FDS GTEX-Y5V5-2526-SM-4VBQ4 GTEX-S32W-0004-SM-2XCE9 GTEX-W5WG-1626-SM-4LMKG GTEX-12ZZZ-0011-R10a-SM-5P9HC GTEX-X4XY-0011-R8A-SM-46MVC GTEX-13QJC-0011-R6a-SM-5S2VI GTEX-N7MT-1426-SM-3LK5M GTEX-ZUA1-0011-R8b-SM-51MST GTEX-139TU-0226-SM-5J1NM GTEX-146FH-2426-SM-5Q5EW GTEX-ZTSS-1126-SM-5985O GTEX-X5EB-0626-SM-46MVQ GTEX-13NYB-0726-SM-5MR4J GTEX-ZYVF-2526-SM-5E45C GTEX-13FHP-0011-R7b-SM-5LZYI GTEX-ZE7O-1526-SM-5J1NH K-562-SM-5P9EQ GTEX-ZYVF-0526-SM-5E43E GTEX-13X6I-1526-SM-5SIAC GTEX-U3ZH-0126-SM-4DXUK GTEX-13N2G-2226-SM-5IJCU GTEX-ZDXO-0426-SM-4WKF6 GTEX-13112-0011-R7b-SM-5DUVW GTEX-13N11-0526-SM-5IJFI GTEX-12WSA-0011-R5b-SM-5GU5I GTEX-145LV-0226-SM-5S2QG GTEX-S7SE-0826-SM-4AT4D GTEX-XXEK-1026-SM-4BRUW GTEX-132NY-0326-SM-5IJBL GTEX-ZT9X-0008-SM-4YCD7 GTEX-POMQ-0626-SM-3P61E GTEX-ZF28-3026-SM-4WKHP GTEX-OOBJ-1026-SM-3NB2L GTEX-P78B-1626-SM-2S1O1 GTEX-ZUA1-0011-R7b-SM-4YCDP GTEX-11ZVC-0011-R9a-SM-57WC5 GTEX-1399U-1526-SM-5J2N7 GTEX-13FH7-2126-SM-5L3DJ K-562-SM-32PMP GTEX-SUCS-0226-SM-32PLQ GTEX-11DXX-0008-SM-5Q5B8 GTEX-SIU7-1326-SM-4BRWW GTEX-WZTO-0011-R4A-SM-3NMC7 GTEX-XAJ8-1126-SM-47JYA GTEX-11O72-0626-SM-5PNYE GTEX-13PVQ-1926-SM-5L3GN GTEX-OIZH-1326-SM-3NB1H GTEX-13NZ9-0826-SM-5J1NI GTEX-13FLV-1226-SM-5IJBZ GTEX-ZDYS-0626-SM-5J2N5 GTEX-14DAQ-2526-SM-5RQIO GTEX-Y8LW-1526-SM-5IFHL GTEX-13PL6-0526-SM-5L3G6 GTEX-QV44-2226-SM-447A3 GTEX-ZF2S-1526-SM-5S2OO GTEX-RUSQ-0926-SM-47JWU GTEX-WHSE-0426-SM-4M1XO GTEX-117YX-1126-SM-5H128 GTEX-OHPK-1626-SM-2YUN3 GTEX-Q734-1626-SM-48U1B GTEX-WWYW-2726-SM-4MVOP GTEX-12696-1126-SM-5FQTI GTEX-13O61-0126-SM-5KM4P GTEX-13PVR-2326-SM-5QGR1 GTEX-139YR-2426-SM-5J1OB GTEX-1211K-0426-SM-5FQTP GTEX-PWCY-0726-SM-48TCS GTEX-13FH7-1226-SM-5IJFK GTEX-ZXG5-0326-SM-5GICH GTEX-111VG-1926-SM-5GIDO GTEX-Q2AG-0005-SM-5SI7F GTEX-XMK1-2626-SM-4B65R GTEX-NPJ7-0011-R11A-SM-2I3E8 GTEX-13FH7-0226-SM-5IFGG GTEX-13OVL-0011-R6a-SM-5L3G4 GTEX-POYW-1226-SM-5LU5O GTEX-13OW6-0526-SM-5L3HY GTEX-11DZ1-2026-SM-5A5KG GTEX-T6MO-1626-SM-32QOM GTEX-13NYB-0011-R1b-SM-5KM4F GTEX-PX3G-0726-SM-48TZT GTEX-YB5E-1026-SM-5IFI2 GTEX-ZVZP-2426-SM-59HKJ GTEX-ZYFC-2626-SM-5NQ6S GTEX-117YW-0526-SM-5H11C GTEX-WHSE-0011-R8A-SM-3P5Z1 GTEX-U4B1-1826-SM-4DXSU GTEX-ZVZO-0126-SM-5A5L9 GTEX-13FTY-2126-SM-5IFFB GTEX-11ZUS-2726-SM-5FQUA GTEX-T5JC-0626-SM-3NMA6 GTEX-T6MN-0011-R4A-SM-32QPG GTEX-ZTTD-1426-SM-4YCEX GTEX-132AR-0006-SM-5NQ7N GTEX-139TU-0526-SM-5J2M8 GTEX-T6MO-0426-SM-32QOI GTEX-QLQ7-1326-SM-4R1JY GTEX-13OVK-0006-SM-5O9B7 GTEX-WFG8-1026-SM-4LVMZ GTEX-11NUK-2026-SM-5PNVZ GTEX-PWN1-0226-SM-5SI7O GTEX-ZT9W-1626-SM-4YCDQ GTEX-WK11-0626-SM-3NMAV GTEX-R55G-0726-SM-2TC6J GTEX-11EQ9-1226-SM-5987E GTEX-13NYB-0226-SM-5N9G4 GTEX-RWS6-0926-SM-47JXE GTEX-13111-0326-SM-5DUXF GTEX-139YR-2726-SM-5K7VV GTEX-OXRP-0126-SM-3NB32 GTEX-O5YT-1826-SM-32PK9 GTEX-W5X1-1426-SM-3GIKH GTEX-13X6H-1626-SM-5Q5CT GTEX-146FR-0926-SM-5QGPE GTEX-X4LF-0006-SM-3NMCO GTEX-YFC4-0008-SM-4RGM3 GTEX-1399U-0426-SM-5K7UU GTEX-13FH7-1126-SM-5K7UG GTEX-XGQ4-0004-SM-4AT5S GTEX-131XF-0426-SM-5HL7U GTEX-14BIM-2226-SM-5SI8Y GTEX-147GR-0526-SM-5S2MY GTEX-Y8LW-1826-SM-5S2MV GTEX-OXRL-0005-SM-3LK6A GTEX-13OVL-1526-SM-5K7WA GTEX-11P82-0126-SM-5HL72 GTEX-WRHU-0626-SM-3MJFI K-562-SM-4WAWH GTEX-ZLFU-0726-SM-57WF6 GTEX-11TUW-1226-SM-5GU7C GTEX-X4EP-0726-SM-3P5YJ GTEX-S33H-1126-SM-2XCB6 GTEX-O5YU-0008-SM-4E3I7 GTEX-ZDXO-0011-R1a-SM-4WKF4 GTEX-ZDYS-2326-SM-4WKG6 GTEX-145LU-2026-SM-5Q5E8 GTEX-146FR-1426-SM-5SIAV GTEX-132NY-1026-SM-5P9IY GTEX-13N1W-0826-SM-5MR5J GTEX-ZTX8-0426-SM-59HLG GTEX-146FH-2026-SM-5SI9I GTEX-ZWKS-0326-SM-5NQ7G GTEX-12WSK-2626-SM-5GCOT GTEX-12WSL-1326-SM-5LZVW GTEX-X8HC-0126-SM-4E3JW GTEX-11I78-1526-SM-5A5K7 GTEX-X15G-1426-SM-4PQZK GTEX-11DXY-3226-SM-5GIDE GTEX-ZDTS-0226-SM-5HL7Q GTEX-12WSM-0726-SM-5GCOW GTEX-ZC5H-2726-SM-5KLZW GTEX-WYJK-0326-SM-3NMA8 GTEX-PWCY-2026-SM-5QGQ9 GTEX-13NYB-2926-SM-5K7VH GTEX-ZYFG-0126-SM-5GIDH GTEX-WOFM-0426-SM-4OOSG GTEX-ZAB5-1426-SM-5HL9D GTEX-11EQ9-1126-SM-5987I GTEX-ZV68-0011-R5a-SM-4YCDW GTEX-11ZTT-0426-SM-5EQLK GTEX-11EM3-1026-SM-5A5KL GTEX-111YS-1726-SM-5GIED GTEX-1497J-0005-SM-5NQBD GTEX-WFG7-0326-SM-5SI7L GTEX-QCQG-1926-SM-2S1PI GTEX-12WSG-2426-SM-5EQLZ GTEX-WYJK-0826-SM-3NM8Y GTEX-XGQ4-1526-SM-4AT6H GTEX-11GSP-0011-R6b-SM-57WBQ GTEX-Y5V6-1026-SM-4VBS2 GTEX-111FC-0226-SM-5N9B8 GTEX-146FR-1526-SM-5SIB8 GTEX-WHPG-2326-SM-3NMBP GTEX-YEC4-2126-SM-5IFJH GTEX-OOBJ-0426-SM-3NB1S GTEX-ZZPT-0626-SM-5GZXT GTEX-ZE7O-0226-SM-5S2N1 GTEX-11ZVC-2926-SM-5986H GTEX-12BJ1-0126-SM-5LU9P GTEX-ZVT3-1426-SM-59HLP GTEX-XYKS-0002-SM-4BRWN GTEX-SIU8-0126-SM-2XCDT GTEX-Y111-0126-SM-4SOIV GTEX-11GS4-0008-SM-5QGRA GTEX-V955-0426-SM-3GAEL GTEX-13O61-2326-SM-5J1NJ GTEX-YJ8O-2526-SM-5HL85 GTEX-13NZB-2026-SM-5MR4M GTEX-11I78-0826-SM-5A5K4 GTEX-13U4I-2026-SM-5LU3L GTEX-WI4N-1026-SM-3LK7N GTEX-13OVI-0826-SM-5KLZ8 GTEX-1399T-1326-SM-5PNVH GTEX-13OVL-0011-R3b-SM-5L3I8 GTEX-Q2AI-0006-SM-2I3FG GTEX-ZTSS-1226-SM-51MSZ GTEX-P4PP-0005-SM-2HMKX GTEX-11DYG-2526-SM-5N9BB GTEX-S3XE-1026-SM-4AD4O GTEX-QLQ7-1626-SM-2S1R8 GTEX-13PVR-1426-SM-5S2PW GTEX-WQUQ-2426-SM-4MVNW GTEX-XBED-0006-SM-47JXO GTEX-111CU-0226-SM-5GZXC GTEX-ZF29-0326-SM-4WKFB K-562-SM-47JYY GTEX-13OW7-0011-R5b-SM-5O9DM GTEX-13OW6-0326-SM-5L3H9 GTEX-WHPG-0926-SM-4M1XY GTEX-RN64-0826-SM-2TC62 GTEX-13X6I-2726-SM-5Q5ET GTEX-S7SE-0526-SM-2XCD8 GTEX-QCQG-1926-SM-5SI7Q GTEX-QEL4-1326-SM-447AD GTEX-14A6H-2726-SM-5QGPL GTEX-ZP4G-0526-SM-4YCED GTEX-ZVT3-0826-SM-5GIC8 GTEX-11WQK-3126-SM-5EGI2 GTEX-ZE9C-0011-R11a-SM-4WKGG GTEX-1122O-0126-SM-5GICA GTEX-ZUA1-2126-SM-57YRB GTEX-13G51-0926-SM-5IFFU GTEX-ZAB4-1126-SM-5HL86 GTEX-11EQ8-0008-SM-5Q5DJ GTEX-13NYC-2426-SM-5MR3K GTEX-ZAB5-0626-SM-5PNVB GTEX-X5EB-2526-SM-4E3HY GTEX-12WSI-0226-SM-5GCNA GTEX-13JVG-0526-SM-5IJBN GTEX-ZT9W-1326-SM-51MTB GTEX-XMD1-0826-SM-4AT52 GTEX-ZZPT-2926-SM-5EQ5S GTEX-11GSO-2426-SM-5A5LY GTEX-12696-0826-SM-5EGGE GTEX-OXRL-0126-SM-2YUMP GTEX-11DXX-0926-SM-5H112 GTEX-12ZZY-3026-SM-5GCOU GTEX-WHSE-2926-SM-3NMBG GTEX-XV7Q-0008-SM-4BRWL GTEX-12584-0226-SM-5EQL5 GTEX-11ZUS-3026-SM-5EGI4 GTEX-11P81-0926-SM-59874 GTEX-U4B1-0126-SM-4DXSN GTEX-13QBU-1626-SM-5LU4S GTEX-OHPL-0426-SM-3TW8X GTEX-VJYA-1726-SM-3NMDQ GTEX-ZAB4-1726-SM-5HL8C GTEX-ZYY3-1726-SM-5EGH3 GTEX-X4EP-0326-SM-3P5Z6 GTEX-ZPIC-0002-SM-4WWEC GTEX-13O1R-0226-SM-5K7U5 GTEX-12ZZW-2926-SM-5LZUP GTEX-Y3IK-0726-SM-4WWE5 GTEX-ZE7O-0826-SM-57WCP GTEX-ZYT6-1226-SM-5E44Q GTEX-133LE-0326-SM-5P9G4 GTEX-145ME-0326-SM-5S2QO GTEX-U3ZN-0002-SM-3NMDF GTEX-YB5E-0526-SM-4VDSD GTEX-12584-3126-SM-5EGKR GTEX-131XG-0826-SM-5LZVS GTEX-ZAB5-0726-SM-5P9JG GTEX-N7MT-0726-SM-3TW8S GTEX-12WSD-0011-R9a-SM-5GU6W GTEX-R45C-1226-SM-48FEE GTEX-ZLV1-1926-SM-5FQSF GTEX-PWCY-0826-SM-48TCR GTEX-12WSB-0126-SM-59HJN GTEX-YFC4-0011-R11a-SM-4SOK6 GTEX-ZXG5-0926-SM-5NQ8H GTEX-13N2G-2326-SM-5J1ON GTEX-11P81-1926-SM-5BC53 GTEX-X261-0011-R5A-SM-3NMB4 GTEX-12126-0726-SM-5FQTX GTEX-13OVG-0005-SM-5P9HA K-562-SM-3LK7S GTEX-NPJ8-1926-SM-3MJGB GTEX-ZUA1-2726-SM-59HLJ GTEX-12WSG-1026-SM-5EGII GTEX-11OC5-0626-SM-5HL6M GTEX-14C39-2526-SM-5S2UH GTEX-ZPU1-1026-SM-4YCEQ GTEX-X585-2526-SM-4QAS1 GTEX-1128S-2526-SM-5H11N GTEX-1399R-0526-SM-5IJEF GTEX-144GL-1026-SM-5O99R GTEX-ZVZQ-0011-R7b-SM-57WBB GTEX-QEG4-0926-SM-4R1JO GTEX-SNMC-0008-SM-4DM5A GTEX-P4PQ-2126-SM-3NMCV GTEX-QVJO-0008-SM-447AU GTEX-13D11-1226-SM-5IFGA GTEX-12WSB-0726-SM-5N9GD GTEX-XV7Q-0826-SM-4BRV7 GTEX-Y5V6-2426-SM-4VDSB GTEX-1211K-0726-SM-5FQUW GTEX-N7MT-0326-SM-48TDP GTEX-T5JW-0426-SM-4DM7M GTEX-11P81-2726-SM-59876 GTEX-11I78-1926-SM-59878 GTEX-Y5V5-0826-SM-4VBQD GTEX-11EQ8-0006-SM-5P9HJ GTEX-Z93S-0008-SM-4RGM5 GTEX-12ZZX-0011-R8a-SM-5DUW8 GTEX-13OVH-0126-SM-5MR4B GTEX-XQ8I-1826-SM-4BOOJ GTEX-13PDP-0011-R1a-SM-5PNX5 GTEX-Y111-2226-SM-4SOJB GTEX-1212Z-0226-SM-59HLF GTEX-XUYS-0326-SM-47JX2 GTEX-ZV7C-0726-SM-59HKH GTEX-XBED-2626-SM-4E3J5 GTEX-1211K-0826-SM-5FQUP GTEX-U8XE-0926-SM-3DB8V GTEX-XUW1-0926-SM-4BONX GTEX-133LE-1226-SM-5IFGC GTEX-14C5O-0126-SM-5SI6N GTEX-YECK-0526-SM-4W1ZD GTEX-145MG-1526-SM-5Q5EM GTEX-XLM4-0008-SM-4AT4W GTEX-11TTK-2926-SM-5PNYP GTEX-YF7O-0226-SM-5IFJ4 GTEX-R55G-0526-SM-2TC5O GTEX-13N2G-1826-SM-5KM1I GTEX-ZEX8-0726-SM-4WKH8 GTEX-13G51-2926-SM-5IJDL GTEX-11DZ1-0226-SM-5A5KF GTEX-WYVS-2126-SM-3NMA3 GTEX-ZGAY-1526-SM-4WWEO GTEX-YJ8O-0126-SM-5QGRG GTEX-ZV7C-0003-SM-4YCF6 GTEX-13N11-1526-SM-5L3FL GTEX-131XH-0006-SM-5O98V GTEX-14753-0426-SM-5NQAM GTEX-WZTO-3026-SM-3NMA2 GTEX-1211K-0926-SM-5FQTL GTEX-11WQC-2426-SM-5EQKQ GTEX-12WSJ-0126-SM-5GCOM GTEX-Y5LM-2326-SM-5S2NK GTEX-PW2O-0526-SM-2I3DX GTEX-11NV4-2326-SM-5BC4X GTEX-14BIL-0006-SM-5N9F2 GTEX-XV7Q-0626-SM-4BRV5 GTEX-PLZ6-0426-SM-5IFK2 GTEX-12WSG-2726-SM-5EQ5M GTEX-NPJ8-0007-SM-26GMF GTEX-ZQG8-2226-SM-5DUWD GTEX-WFG8-1726-SM-5CHTE GTEX-N7MS-0826-SM-2HML4 GTEX-ZYFC-1826-SM-5GZZA GTEX-R55E-1326-SM-48FCR GTEX-13OW8-1026-SM-5J1NQ GTEX-113JC-2326-SM-5EQ4E GTEX-13PL7-2326-SM-5L3FY GTEX-Z9EW-0526-SM-5HL8S GTEX-13X6J-0826-SM-5LU32 GTEX-11DXX-0005-SM-5NQ8B GTEX-12WSB-3226-SM-59HJP GTEX-U412-0526-SM-3DB9I GTEX-N7MS-0011-R3a-SM-5SI8H GTEX-11DXZ-2526-SM-5N9BG GTEX-ZLV1-0926-SM-5S2MR GTEX-WHSB-2026-SM-3LK6H GTEX-13QIC-1826-SM-5J1MY GTEX-XV7Q-0126-SM-4BRVK GTEX-Z9EW-1626-SM-5CVMN GTEX-13QJ3-0426-SM-5RQHP GTEX-W5WG-1326-SM-4LMI9 GTEX-T6MN-2626-SM-32PMQ GTEX-13X6K-0626-SM-5LU5D GTEX-11OF3-0008-SM-5S2NH GTEX-111CU-2026-SM-5GZZC GTEX-PW2O-1726-SM-2S1OO GTEX-TMMY-0926-SM-4VBQZ GTEX-ZPU1-1126-SM-4YCF3 GTEX-13OW5-2626-SM-5MR3M GTEX-XV7Q-1026-SM-4BRVR GTEX-11EMC-0226-SM-5EGLP GTEX-12WS9-0011-R5b-SM-5P9EV GTEX-12ZZX-1326-SM-5DUWI GTEX-S3XE-1326-SM-4AD4H GTEX-111FC-2026-SM-5GZYO GTEX-12C56-1426-SM-5FQSW GTEX-13112-2626-SM-5BC66 GTEX-XMK1-0226-SM-4B65D GTEX-T2IS-1126-SM-4DM6Z GTEX-OIZG-1026-SM-3LK5X GTEX-Y8E4-0726-SM-4WWFN GTEX-U3ZM-0002-SM-3NMDM GTEX-OXRK-0926-SM-2HMKP GTEX-Y3I4-1026-SM-4TT2C GTEX-NL4W-0011-R9a-SM-2I3G1 GTEX-YB5E-0626-SM-4VDSE GTEX-111YS-1126-SM-5GZYQ GTEX-OIZH-2626-SM-2HMJM GTEX-ZV7C-0526-SM-51MRB GTEX-139YR-1926-SM-5LZXM GTEX-QDVN-0526-SM-48TZ4 GTEX-WY7C-2426-SM-3NB2V GTEX-13X6J-3026-SM-5Q5CU GTEX-13CF3-2226-SM-5J2MX GTEX-V1D1-0726-SM-4JBH7 GTEX-REY6-0626-SM-2TF4G GTEX-P4QS-0726-SM-3NMCZ GTEX-13G51-2426-SM-5LZY8 GTEX-144GN-2526-SM-5LU54 GTEX-145LS-0011-R10a-SM-5PNUQ GTEX-ZE7O-0326-SM-51MTH GTEX-13VXT-0926-SM-5LU5K GTEX-11EQ9-0226-SM-5A5JX GTEX-13OVL-0011-R10a-SM-5L3GS GTEX-13QJ3-0726-SM-5SI68 GTEX-13FTY-2226-SM-5J1ND GTEX-TKQ2-0426-SM-4DXUO GTEX-U3ZH-0526-SM-3DB75 GTEX-139T4-0426-SM-5J1OQ GTEX-145LV-1426-SM-5Q5BV GTEX-146FR-0226-SM-5Q5F6 GTEX-14BIL-0011-R10a-SM-5SI75 GTEX-11O72-0006-SM-5O9DB GTEX-13QJ3-1826-SM-5S2PT GTEX-139TT-0226-SM-5K7YH GTEX-RWS6-1126-SM-47JXC GTEX-XUZC-1826-SM-4BRVO GTEX-T5JC-0526-SM-32PM7 GTEX-ZYWO-0626-SM-5E45K GTEX-13FLV-0011-R10b-SM-5LZZ2 GTEX-S33H-0526-SM-2XCBK GTEX-13FLW-0011-R6b-SM-5L3EN GTEX-147JS-0126-SM-5S2TW GTEX-11ZTS-1926-SM-5CVLA GTEX-Y5V5-0001-SM-4V6FZ GTEX-Y5V6-2126-SM-4WWFX K-562-SM-33HC7 GTEX-OHPM-0326-SM-33HCA GTEX-NL4W-0011-R10A-SM-2I3DY GTEX-S7SE-0011-R7A-SM-2XCDI GTEX-11LCK-0126-SM-5A5M5 GTEX-POMQ-2026-SM-2S1OD GTEX-133LE-0726-SM-5P9IZ GTEX-QVJO-1726-SM-2S1R3 GTEX-12WS9-0426-SM-59HJW GTEX-RN64-0008-SM-48FEZ GTEX-11P81-2626-SM-5GU6T GTEX-11I78-2126-SM-5A5K8 GTEX-13FH7-0626-SM-5KLZD GTEX-ZVT4-0006-SM-57WB8 GTEX-ZVT2-0426-SM-5E44S GTEX-13OVL-2726-SM-5J2MP GTEX-ZPCL-0326-SM-5FQSG GTEX-139UC-0011-R7a-SM-5IJCV GTEX-OHPM-0006-SM-2HMKU GTEX-ZYT6-0626-SM-5E45V GTEX-WH7G-1426-SM-4LVMU GTEX-147F3-1526-SM-5SIAK GTEX-ZXES-0005-SM-57WCB GTEX-S7SE-0326-SM-4AT5Q GTEX-RNOR-0011-R4A-SM-3GAD3 GTEX-13FHO-2926-SM-5L3ES GTEX-ZE7O-0011-R1a-SM-57WDM GTEX-QDVJ-1926-SM-2S1PJ GTEX-QLQW-1126-SM-2S1Q8 GTEX-P4PQ-0005-SM-2HMKJ GTEX-13N1W-0426-SM-5MR46 GTEX-12ZZY-0526-SM-5EQ5H GTEX-145MO-2126-SM-5Q5CZ GTEX-X3Y1-1226-SM-4PQZ8 GTEX-X261-0626-SM-3NMD9 GTEX-1211K-0006-SM-5MR53 GTEX-ZZ64-1526-SM-5E43K GTEX-11ZUS-2826-SM-5EQKW GTEX-S32W-2026-SM-4AD6E GTEX-WVLH-0011-R11A-SM-3MJFO GTEX-11UD2-1526-SM-5EQLQ GTEX-Y8E4-1726-SM-5LU9G GTEX-Y111-0626-SM-4SOIT GTEX-13IVO-0011-R5a-SM-5L3CY GTEX-11UD1-0008-SM-5S2P6 GTEX-X3Y1-0001-SM-4PQYP GTEX-117YW-0126-SM-5EGGN GTEX-11WQC-0011-R5a-SM-5BC74 GTEX-WHSB-2326-SM-4M1XK GTEX-11P81-0126-SM-5HL5Y GTEX-145MF-1726-SM-5LU9H GTEX-R55F-1326-SM-5S2V4 GTEX-145ME-1226-SM-5SIB6 GTEX-11UD2-1226-SM-5EQMI GTEX-13W3W-1026-SM-5IFG4 GTEX-ZF29-0426-SM-4WKFN GTEX-P4PQ-0008-SM-48TDX GTEX-WHWD-1226-SM-4OOS1 GTEX-PLZ6-1326-SM-3NB24 GTEX-T5JW-0008-SM-4DM5X GTEX-ZC5H-0326-SM-5HL9F GTEX-13NZ9-2026-SM-5KM1U GTEX-12BJ1-2526-SM-5FQUE GTEX-139D8-1226-SM-5L3ED GTEX-ZP4G-1126-SM-4WWCI GTEX-ZT9W-0226-SM-4YCCZ GTEX-12WSK-0526-SM-5CVNA GTEX-139YR-0626-SM-5IJBT GTEX-13OVJ-0126-SM-5KM36 GTEX-WXYG-1126-SM-4ONCH GTEX-T6MN-0011-R7A-SM-5CHSP GTEX-XYKS-1826-SM-4E3JV GTEX-11ONC-2026-SM-5HL61 GTEX-RNOR-0011-R3A-SM-5SI8E GTEX-13QIC-0011-R10a-SM-5O9C7 GTEX-ZVE2-1226-SM-5NQ8R GTEX-13QJC-0011-R7b-SM-5PNUM GTEX-UTHO-0426-SM-3GAED GTEX-T6MN-2726-SM-4DM77 GTEX-12WSD-3126-SM-5HL7P GTEX-ZE7O-2626-SM-51MSS GTEX-S4Z8-0426-SM-3K2AH GTEX-XV7Q-1626-SM-4BRWC GTEX-13OVL-0011-R4b-SM-5L3HV GTEX-RNOR-0426-SM-2TF4U GTEX-13PVR-2526-SM-5RQIT GTEX-YEC4-0126-SM-4W21T GTEX-XYKS-0426-SM-4BRW4 GTEX-PWCY-1826-SM-2S1OK GTEX-11WQC-1726-SM-5GU4W GTEX-13X6I-0011-R2b-SM-5PNWQ GTEX-Q2AI-1526-SM-3GIJ3 GTEX-1313W-0011-R8a-SM-5DUVM GTEX-ZF28-0526-SM-4WKGW GTEX-WHSE-1126-SM-3NMBU GTEX-X638-0426-SM-47JY2 GTEX-12ZZX-0011-R2a-SM-5EGLG GTEX-13OVI-2726-SM-5KM56 GTEX-12696-0126-SM-5EQ4L GTEX-V955-1226-SM-4JBI9 GTEX-ZQG8-0626-SM-57WF3 GTEX-N7MT-1626-SM-3LK71 GTEX-ZQG8-1126-SM-51MRL GTEX-X4XX-1026-SM-4QARO GTEX-T5JC-0826-SM-32PMC GTEX-XQ8I-1726-SM-4BOQB GTEX-UJHI-0126-SM-4IHLP GTEX-X261-0011-R11A-SM-4E3JY GTEX-P44H-1026-SM-3NM96 GTEX-13O3O-0826-SM-5K7WE GTEX-YFC4-1126-SM-5RQJN GTEX-OOBK-0008-SM-3NB27 GTEX-111YS-1426-SM-5GID8 GTEX-11LCK-0826-SM-5PNYD GTEX-14AS3-0726-SM-5S2NY GTEX-13X6J-0011-R8b-SM-5PNUA GTEX-11TUW-2226-SM-5EQL9 GTEX-144FL-0226-SM-5Q5D4 GTEX-ZZ64-0226-SM-5E44X GTEX-13QIC-2326-SM-5LU5N GTEX-132AR-0326-SM-5KM2C GTEX-131XG-1426-SM-5GCMO GTEX-14A5I-0005-SM-5N9FU GTEX-ZF28-0011-R11a-SM-4WWEI GTEX-OXRK-0526-SM-3NB2F GTEX-131XF-2426-SM-5BC6C GTEX-13OW5-0126-SM-5MR3A GTEX-ZV7C-1326-SM-5BC7G GTEX-13111-0426-SM-5DUXR GTEX-146FQ-0226-SM-5NQAL GTEX-132QS-0226-SM-5IFFZ GTEX-11P82-1226-SM-5HL5P GTEX-ZYW4-0326-SM-5E44Y GTEX-139T8-0526-SM-5KLZL GTEX-QDVJ-2126-SM-5S2U2 GTEX-P44G-0006-SM-2TC6A GTEX-P4QT-0008-SM-48TDZ GTEX-145LT-0326-SM-5LUAD GTEX-OHPK-1526-SM-3MJGM GTEX-Y3I4-1326-SM-4TT8Z GTEX-ZF28-2926-SM-4WKG1 GTEX-Y5V6-1926-SM-5IFIL GTEX-11ONC-0126-SM-5PNW6 GTEX-13G51-1826-SM-5KLZH GTEX-ZPCL-2126-SM-57WFZ GTEX-WK11-0926-SM-3NMAU GTEX-1314G-0126-SM-5LZUL GTEX-XXEK-0826-SM-4BRWG GTEX-145MO-0726-SM-5NQB9 GTEX-REY6-0426-SM-2TF5G GTEX-P78B-0626-SM-2S1O5 GTEX-13OVJ-0011-R3b-SM-5P9H6 GTEX-13D11-1526-SM-5J2NA GTEX-XQ8I-0008-SM-4WAWM GTEX-XQ8I-0626-SM-4BOPT GTEX-145MO-2226-SM-5Q5BN GTEX-11TT1-2126-SM-5GU5Y GTEX-XOTO-0011-R11B-SM-4B64O GTEX-QDVJ-0005-SM-2TC5X GTEX-ZVZQ-0011-R9a-SM-51MRH GTEX-X261-0011-R7A-SM-4E3JJ GTEX-XPT6-0008-SM-4B64Q GTEX-1399T-0526-SM-5J1NC GTEX-13O3O-1626-SM-5KM1O GTEX-11P82-0626-SM-5PNYK GTEX-RU72-0726-SM-46MUW GTEX-13QBU-2426-SM-5LU4L GTEX-ZVZP-0126-SM-5NQ6Q GTEX-ZYY3-3026-SM-5GIEJ GTEX-QV31-1026-SM-4R1K3 GTEX-T6MO-0006-SM-32QOU GTEX-11XUK-0626-SM-5N9ES GTEX-OXRL-0326-SM-2I3F2 GTEX-11EMC-0126-SM-5EGKV GTEX-12WSM-0011-R1a-SM-5LZW6 GTEX-Y8E4-1526-SM-4WWDI GTEX-WWYW-2826-SM-4MVOQ GTEX-11DXX-2526-SM-5H119 GTEX-13IVO-0011-R3b-SM-5IJBJ GTEX-Y3I4-1426-SM-4TT9C GTEX-Y8E5-0326-SM-57WBM GTEX-QLQW-0326-SM-447A8 GTEX-12ZZZ-1226-SM-59HK1 GTEX-1399T-0426-SM-5PNVJ GTEX-14A5H-3026-SM-5RQHV GTEX-WRHU-0826-SM-3MJFN GTEX-13CZV-0011-R10b-SM-5LZYD GTEX-12ZZY-0326-SM-5LZVQ GTEX-145MI-0011-R7b-SM-5Q5AZ GTEX-N7MT-0126-SM-2D7VT K-562-SM-5LZWR GTEX-13OW7-0011-R3a-SM-5O9DA GTEX-11H98-0326-SM-5HL4S GTEX-11TUW-2526-SM-5EQKN GTEX-R55G-1226-SM-48FDC GTEX-ZTPG-1626-SM-5DUX2 GTEX-117XS-2926-SM-5N9BX GTEX-QVJO-0011-R7A-SM-2S1QO GTEX-WHWD-2326-SM-3LK6Q GTEX-11UD2-0005-SM-5NQ9B GTEX-RN64-0526-SM-2TC5P GTEX-Y5V5-1826-SM-4VDS5 GTEX-1211K-1726-SM-5FQUJ GTEX-RNOR-0011-R1A-SM-5SI8F GTEX-13JVG-0011-R11a-SM-5KM53 GTEX-ZV7C-1826-SM-5NQ83 GTEX-13112-0326-SM-5P9IW GTEX-TMZS-0006-SM-3DB8G GTEX-13QBU-2326-SM-5LU49 GTEX-14E6D-0926-SM-5S2QV GTEX-11TT1-0926-SM-5GU5M GTEX-Y114-1726-SM-4TT7U GTEX-11WQC-0011-R6a-SM-5BC77 GTEX-13PL7-0526-SM-5J2MQ GTEX-WI4N-2526-SM-4OOSE GTEX-13X6K-1826-SM-5O9CR GTEX-13VXT-0626-SM-5SIA1 GTEX-XUZC-0008-SM-4BOQG GTEX-13JUV-0011-R9a-SM-5LZX3 GTEX-T6MN-1226-SM-3NMA5 GTEX-RU72-1226-SM-2TF6N GTEX-Y114-0008-SM-4TT8X GTEX-T8EM-0826-SM-4DM76 GTEX-12ZZY-2726-SM-5EQ45 GTEX-131YS-2826-SM-5EQ47 GTEX-X88G-0006-SM-47JX5 GTEX-ZVE1-0526-SM-5NQ71 GTEX-11TUW-0626-SM-5LU9M GTEX-Y5V6-1626-SM-4VDT2 GTEX-QV31-1126-SM-4R1K4 GTEX-13PVQ-0426-SM-5J1OG GTEX-13NYB-2726-SM-5J2MT GTEX-WEY5-0526-SM-3GIKZ GTEX-WZTO-1326-SM-3NM8X GTEX-13NYS-2926-SM-5IFGH GTEX-11DXZ-0326-SM-5EGH1 GTEX-13PVQ-2726-SM-5L3H7 GTEX-WL46-0011-R7A-SM-3LK7X GTEX-11GSP-0006-SM-5N9EL GTEX-1399U-2526-SM-5L3DL GTEX-ZTTD-0326-SM-57WFW GTEX-146FR-0426-SM-5SI97 GTEX-14DAR-0006-SM-5N9GC GTEX-XGQ4-2226-SM-4AT4Y GTEX-13113-1026-SM-5LZWM GTEX-ZVE2-1326-SM-5NQ94 GTEX-13S7M-0326-SM-5S2PH GTEX-PLZ5-0426-SM-3P612 GTEX-R55C-1626-SM-48FEG GTEX-UPIC-1026-SM-4IHLT GTEX-13FTZ-0011-R10b-SM-5KLZS GTEX-13FTY-0126-SM-5J2NZ GTEX-11P82-0526-SM-5986P GTEX-13QBU-0226-SM-5LU48 GTEX-PX3G-1426-SM-48U1J GTEX-12WSE-0826-SM-5S2VL GTEX-XUJ4-1826-SM-4BOOU GTEX-XQ8I-0326-SM-4BOPN GTEX-XYKS-2626-SM-4BRUT GTEX-UJHI-1626-SM-3DB9A GTEX-XPVG-1726-SM-4B65W GTEX-13X6I-0526-SM-5QGP8 GTEX-WFON-1426-SM-5CHT1 GTEX-RTLS-0626-SM-5SI7Z GTEX-12WSJ-1126-SM-5LZVJ GTEX-13X6K-0726-SM-5LU2Z GTEX-ZUA1-0226-SM-5NQ9Q GTEX-11O72-2226-SM-5PNW2 GTEX-145MH-0011-R10b-SM-5PNUK GTEX-ZYVF-2726-SM-5GID4 GTEX-11GS4-0426-SM-5N9CD GTEX-131XF-1826-SM-5EGKG GTEX-13SLX-0526-SM-5S2ON GTEX-139T8-0326-SM-5IJCM GTEX-117XS-1926-SM-5GICO GTEX-12WSF-0011-R6b-SM-5HL8W GTEX-XAJ8-1326-SM-47JYT GTEX-13QBU-2526-SM-5LU4X GTEX-Y8LW-0002-SM-4V6G2 GTEX-ZT9X-1426-SM-5DUX1 GTEX-VJWN-0726-SM-3GIJ8 GTEX-ZYWO-2726-SM-5NQ6N GTEX-11DXX-2026-SM-5EGJL GTEX-13FXS-0011-R2b-SM-5K7XX GTEX-13NZA-2526-SM-5IJFX GTEX-RWS6-1026-SM-47JXD GTEX-SJXC-1126-SM-4DM6Y GTEX-1192W-0826-SM-5EGHE GTEX-13X6J-0126-SM-5QGOU GTEX-XMD1-0008-SM-4AT41 GTEX-SUCS-0226-SM-5CHQG GTEX-ZLWG-2226-SM-5DUWO GTEX-ZVT2-1526-SM-51MQZ GTEX-ZV6S-1526-SM-5NQ7O K-562-SM-2TF4E GTEX-1212Z-2426-SM-5EQ5D GTEX-ZVZP-1126-SM-5GICU GTEX-P4PQ-1726-SM-3NB15 GTEX-WYJK-2526-SM-4ONDF GTEX-RNOR-0011-R5A-SM-2TF4J GTEX-11P82-0726-SM-5PNYL GTEX-11I78-2426-SM-5A5K9 GTEX-Y111-0006-SM-4SOIO GTEX-145MO-1426-SM-5Q5BS K-562-SM-5J1MB GTEX-XMK1-2426-SM-4B66I GTEX-QMR6-0005-SM-32PKY GTEX-X638-0005-SM-47JX6 GTEX-14753-0626-SM-5Q5CY GTEX-OXRL-0326-SM-447BG GTEX-1314G-0005-SM-5NQ9O GTEX-QEL4-0626-SM-3GIJM GTEX-WVLH-0008-SM-4MVPD GTEX-TKQ2-0826-SM-33HB6 GTEX-TSE9-0011-R9A-SM-3DB7Q GTEX-RVPU-0011-R11A-SM-2XCAF GTEX-X4EP-0011-R6A-SM-3P629 GTEX-QVJO-2526-SM-4R1KB GTEX-WYVS-0004-SM-4ONDT GTEX-ZZPU-0726-SM-5N9C8 GTEX-12WSB-0326-SM-5GCP4 GTEX-Y8DK-0011-R3A-SM-4RTW5 GTEX-13IVO-2926-SM-5L3CZ GTEX-11PRG-0326-SM-5GU53 GTEX-YB5K-0008-SM-4VDT8 GTEX-XGQ4-2426-SM-4AT55 GTEX-Z9EW-1926-SM-5CVMP GTEX-ZA64-0626-SM-5HL9O GTEX-13FTW-0826-SM-5K7XR GTEX-Y3IK-2626-SM-4WWDK GTEX-N7MT-0007-SM-3GACQ GTEX-OHPM-0426-SM-3TW8V GTEX-ZVT3-0011-R11b-SM-57WBI GTEX-U3ZN-1826-SM-4DXUY GTEX-13O1R-0126-SM-5L3EH GTEX-13U4I-0226-SM-5SIB1 GTEX-1399R-0726-SM-5KM2A GTEX-13OVL-3026-SM-5IJF1 GTEX-ZZPU-1826-SM-5E43L GTEX-1445S-0011-R5a-SM-5PNUS GTEX-Y3IK-1226-SM-4WWEK GTEX-11DXZ-0126-SM-5EGGY GTEX-QV31-0326-SM-447BM GTEX-117YX-2126-SM-5GIEL GTEX-13O21-0826-SM-5J2NU GTEX-ZPU1-2426-SM-4WWFM GTEX-131XE-2626-SM-5PNYY GTEX-139YR-1026-SM-5LZYN GTEX-XGQ4-0526-SM-4AT6C GTEX-12WSL-0626-SM-5GCOY GTEX-U4B1-0326-SM-3DB8K GTEX-13OVJ-0011-R7a-SM-5L3G1 GTEX-111CU-1326-SM-5NQ8L GTEX-13OVH-0011-R11b-SM-5KM4X GTEX-11WQC-0011-R10a-SM-57WCT GTEX-ZVT3-0426-SM-5GIDW GTEX-11NV4-2126-SM-5N9DS GTEX-ZLWG-0326-SM-4WWC7 GTEX-XQ8I-0526-SM-4BOPS GTEX-11EQ8-0126-SM-5EQ54 GTEX-13X6I-0011-R3b-SM-5P9HM GTEX-11DXY-1426-SM-5N9CN GTEX-QDT8-0526-SM-3NMD8 GTEX-ZYWO-1126-SM-5U3SH GTEX-U3ZH-0326-SM-51MS7 GTEX-1212Z-0126-SM-59HK4 GTEX-Y111-2826-SM-4TT3O GTEX-13O3O-0011-R3b-SM-5KM3R GTEX-13VXU-1926-SM-5LU5J GTEX-ZE9C-0011-R9a-SM-4WWCY GTEX-13QIC-1526-SM-5IJFL GTEX-11WQK-1226-SM-5GU5Z GTEX-13X6K-0011-R11a-SM-5P9F5 GTEX-OIZI-1426-SM-3NB1T GTEX-OHPJ-0726-SM-2YUNM GTEX-ZZ64-1026-SM-5GZXG GTEX-13PVR-0826-SM-5S2PV GTEX-WHPG-1326-SM-4M1ZJ GTEX-ZYFC-1726-SM-5GZYX GTEX-13X6J-0626-SM-5LU5F GTEX-132QS-1226-SM-5P9GD GTEX-11WQK-0726-SM-5GU71 GTEX-144GM-0126-SM-5Q5AX GTEX-WFG7-1726-SM-4LVME GTEX-PLZ4-0008-SM-48TE6 GTEX-R55E-0526-SM-2TC6B GTEX-12584-0005-SM-5N9GM GTEX-WY7C-0226-SM-3NB37 GTEX-RVPV-0526-SM-47JYL GTEX-N7MS-0007-SM-2D7W1 GTEX-13OVL-0326-SM-5IJCS GTEX-QLQ7-1026-SM-447BB GTEX-Y3IK-2726-SM-4WWDV GTEX-11P7K-1426-SM-5EGKY GTEX-YEC3-1126-SM-5IFIH GTEX-Y8LW-0726-SM-5IFI1 GTEX-ZUA1-1026-SM-4YCEA GTEX-WYJK-0526-SM-3NM8Z GTEX-11DXX-0426-SM-5EQ5F GTEX-U3ZM-1226-SM-3DB9G GTEX-Y3IK-0005-SM-4WWDE GTEX-Y5V5-0726-SM-4VBPY GTEX-Y3IK-0426-SM-4WWE2 K-562-SM-4VBPT GTEX-ZVT2-0126-SM-5GIDQ GTEX-XLM4-2326-SM-4TT2D GTEX-13PL7-1726-SM-5J2NX GTEX-WRHU-0006-SM-3MJF6 GTEX-WXYG-2326-SM-4E3I6 GTEX-13FHP-0726-SM-5K7YI GTEX-11ZTS-2726-SM-5EQLU GTEX-ZDTS-0008-SM-4E3I8 GTEX-OIZG-0926-SM-3LK5Y GTEX-ZQG8-1626-SM-5HL6H GTEX-ZF3C-1026-SM-5S2OC GTEX-ZYW4-1226-SM-5E45B GTEX-12ZZX-0011-R10b-SM-5DUWK GTEX-ZAJG-0226-SM-5HL81 GTEX-YEC4-0008-SM-4W1YR GTEX-13NZA-0126-SM-5K7UH GTEX-ZV6S-1126-SM-57WE9 GTEX-1211K-1826-SM-5EGJ2 GTEX-XK95-0008-SM-4AT5G GTEX-T6MO-0126-SM-4DM6X GTEX-QDVJ-0726-SM-48U1W GTEX-ZTTD-2826-SM-4YCFA GTEX-12WSA-0011-R8a-SM-5P9EX GTEX-145LU-1226-SM-5LU9B K-562-SM-5LZU1 GTEX-11ZU8-2626-SM-5EQLL GTEX-V1D1-0003-SM-3NMDP GTEX-11O72-0008-SM-5Q5DN GTEX-144GM-1626-SM-5O9AG GTEX-X4XX-0011-R1B-SM-3P622 GTEX-WYVS-2026-SM-4RGNS GTEX-13JVG-0011-R3b-SM-5LZXF GTEX-ZAB4-0011-R6a-SM-4SOKD GTEX-VUSG-2726-SM-4KKZJ GTEX-YB5K-1726-SM-5IFIZ GTEX-117XS-2026-SM-5GID1 GTEX-11NSD-1626-SM-5986U GTEX-S3XE-0226-SM-4AD6I GTEX-N7MT-0011-R2a-SM-2I3GI GTEX-12WS9-1426-SM-5FQT3 GTEX-X4EP-1626-SM-4QAS6 K-562-SM-5Q59U GTEX-13O21-0426-SM-5K7VR GTEX-S4Z8-0826-SM-4AD4J GTEX-13OW6-2926-SM-5KM29 GTEX-131XF-2226-SM-5EQKG GTEX-V955-0126-SM-4JBH5 GTEX-ZC5H-1726-SM-5HL7X GTEX-R53T-0005-SM-3GADK GTEX-YEC3-0626-SM-4YCFE GTEX-QV44-1926-SM-2S1RF GTEX-Y3IK-0626-SM-4WWE4 GTEX-117YW-0326-SM-5N9CY GTEX-XUW1-0008-SM-4BOQH GTEX-11UD2-1626-SM-5EQM3 GTEX-ZF2S-1326-SM-4WWAZ GTEX-YFC4-2726-SM-5IFJW GTEX-14AS3-2326-SM-5S2NZ GTEX-P44H-0726-SM-48TBT GTEX-12ZZW-0011-R5a-SM-5DUVN GTEX-139T8-0426-SM-5K7VC GTEX-S7SE-0011-R4A-SM-2XCDB GTEX-ZXG5-0011-R10a-SM-57WDD GTEX-ZVE2-0426-SM-59HJ7 GTEX-11EM3-0126-SM-5985K GTEX-ZYVF-2326-SM-5E44Z GTEX-11EQ9-0126-SM-5986I GTEX-Y3I4-0426-SM-4TT29 GTEX-13N11-0226-SM-5KM3C GTEX-13FLV-0011-R6a-SM-5KLZ4 GTEX-ZAB4-0011-R7a-SM-4SOKE GTEX-R55D-0826-SM-48FEA GTEX-13NZ8-0826-SM-5MR3I GTEX-OHPN-0011-R10A-SM-33HBU GTEX-S7SF-1826-SM-3K2AD GTEX-117XS-0526-SM-5987Q GTEX-13RTJ-0011-R7b-SM-5P9JS GTEX-12WSC-2926-SM-5BC5Z GTEX-12126-0006-SM-5O9B8 GTEX-ZUA1-2826-SM-59HLE GTEX-XMK1-1726-SM-4B64Z GTEX-13U4I-1326-SM-5KM25 GTEX-QXCU-1126-SM-48FE5 GTEX-13OVJ-0011-R10b-SM-5L3HT GTEX-11EI6-2426-SM-5PNVS GTEX-13D11-0626-SM-5LZYY GTEX-QEG5-0326-SM-2S1PB GTEX-U4B1-1626-SM-3DB8N GTEX-WQUQ-0426-SM-3MJFU GTEX-XUW1-0326-SM-4BOOR GTEX-R55C-1826-SM-3GADI GTEX-12ZZX-1926-SM-5EGKC GTEX-ZXG5-2826-SM-5NQ8T GTEX-11TT1-0004-SM-5S2NT GTEX-111VG-0726-SM-5GIDC GTEX-147F4-1426-SM-5LUA8 GTEX-S4Q7-0126-SM-4AD5P GTEX-13RTJ-1126-SM-5S2UJ GTEX-NFK9-0926-SM-2HMJU GTEX-Q2AG-0526-SM-2S1PW GTEX-ZAB5-1026-SM-5HL91 GTEX-145MH-1426-SM-5QGPO GTEX-13FTY-0626-SM-5L3F8 GTEX-144GM-2126-SM-5LU3P K-562-SM-4OOR8 GTEX-ZYY3-0226-SM-5E45M GTEX-RUSQ-1526-SM-2TF62 GTEX-11ZUS-0008-SM-5S2UO GTEX-13IVO-0926-SM-5KLZP GTEX-WQUQ-0008-SM-4OOT1 GTEX-13FHO-0726-SM-5IJDG GTEX-YFCO-1726-SM-4W21S GTEX-11I78-1326-SM-5PNY9 GTEX-14BMV-0526-SM-5S2NE GTEX-ZLFU-1326-SM-4WWET GTEX-UPK5-1226-SM-4IHL8 GTEX-131YS-0626-SM-5EGKL GTEX-ZG7Y-1426-SM-4WWBM GTEX-S33H-0626-SM-2XCBJ GTEX-PWCY-0005-SM-2I3E2 GTEX-ZTPG-0002-SM-4YCEI GTEX-1339X-2626-SM-5K7YX GTEX-WH7G-1926-SM-4LVMM GTEX-13QBU-1126-SM-5LU44 GTEX-13U4I-2626-SM-5SI9C GTEX-12ZZX-0011-R5a-SM-5HL89 GTEX-ZEX8-0008-SM-4E3JU GTEX-ZY6K-1226-SM-5GZYL GTEX-13SLW-2926-SM-5Q5BQ GTEX-13CF3-0006-SM-5N9ED GTEX-14C38-0726-SM-5SI6M GTEX-145LS-0011-R7a-SM-5PNWM GTEX-11GS4-3026-SM-5A5LG GTEX-11P7K-0326-SM-59871 GTEX-ZYWO-0526-SM-5E45I GTEX-XUJ4-2826-SM-4BOQ2 GTEX-14ASI-0526-SM-5QGQP GTEX-Y8DK-0526-SM-4TT3R GTEX-PW2O-0006-SM-2I3DV GTEX-T5JC-0001-SM-3NMAK GTEX-YB5K-2326-SM-5IFHD GTEX-ZLV1-1326-SM-4WWER GTEX-13112-1126-SM-5GCMY GTEX-ZV6S-0926-SM-57WGB GTEX-P4PQ-0726-SM-3NMCR GTEX-N7MT-1226-SM-2TC6K GTEX-ZDTS-0126-SM-4WAY5 GTEX-13FTW-0005-SM-5LZVZ GTEX-TML8-0001-SM-3NMAF GTEX-13OW6-1526-SM-5L3HX GTEX-11NSD-1226-SM-5986Q GTEX-1399U-0008-SM-5S2VE GTEX-144GM-1326-SM-5LU5E GTEX-X261-0011-R6B-SM-4E3J8 GTEX-13S86-1226-SM-5S2OA GTEX-ZYWO-1726-SM-5E44T GTEX-13JVG-1426-SM-5MR4W GTEX-XXEK-1326-SM-4BRV1 GTEX-12584-1426-SM-5EGJ9 GTEX-13X6K-0011-R4b-SM-5P9HO GTEX-14E6E-1326-SM-5S2NR GTEX-PLZ6-0006-SM-33HBZ GTEX-12WSH-0126-SM-5GCO3 GTEX-11ZTT-0006-SM-5N9FX GTEX-11P81-1326-SM-5GU5S GTEX-1445S-0011-R8a-SM-5PNWX GTEX-147JS-2526-SM-5S2Q8 K-562-SM-5KM2I GTEX-1128S-2826-SM-5N9DI GTEX-WWYW-0011-R6A-SM-3NB3G GTEX-Y9LG-1126-SM-4VBQ7 GTEX-13CF3-0426-SM-5IJEU GTEX-147GR-0011-R4a-SM-5S2V2 GTEX-12WSB-0011-R6b-SM-5GU6J GTEX-PLZ6-0226-SM-3P61I GTEX-11DXY-0426-SM-5H12R GTEX-ZAK1-3026-SM-5S2MJ GTEX-13S7M-0011-R7a-SM-5O9DK GTEX-11XUK-0426-SM-5EQML GTEX-P4QT-0526-SM-2I3EX GTEX-ZVT3-0011-R10b-SM-57WB6 GTEX-11NV4-1126-SM-5HL6J GTEX-WY7C-2726-SM-3NB3P GTEX-ZVE2-1826-SM-51MRZ GTEX-ZLV1-0005-SM-4WWAP GTEX-QDT8-0011-R6A-SM-32PKI GTEX-148VJ-0826-SM-5LU8V GTEX-ZPIC-0626-SM-57WDY GTEX-1192X-1826-SM-5GIE2 GTEX-P78B-0226-SM-3NB1Z GTEX-11PRG-2826-SM-5BC54 GTEX-X638-0126-SM-47JZ8 GTEX-ZE7O-0011-R6a-SM-57WCI GTEX-ZDTT-2126-SM-5S2OJ GTEX-131XW-3226-SM-5LZUO GTEX-13N11-2326-SM-5IJBF GTEX-147F3-0526-SM-5SI98 GTEX-139UC-2926-SM-5J1N6 GTEX-ZYWO-0426-SM-5SI9A GTEX-Y114-2326-SM-4TT7X GTEX-144GL-0226-SM-5QGOX GTEX-1339X-0426-SM-5KLZY GTEX-ZVP2-0005-SM-51MRK GTEX-12WSM-0011-R8a-SM-5DUWJ GTEX-13N11-0926-SM-5IJG2 GTEX-QDT8-0526-SM-32PL5 GTEX-ZPCL-1226-SM-4WWFF GTEX-ZQG8-2426-SM-57WEE GTEX-111FC-0826-SM-5GZWO GTEX-T6MO-0326-SM-32QOK GTEX-13PDP-0011-R8b-SM-5O9CS GTEX-13U4I-1826-SM-5IJD2 GTEX-XQ3S-2726-SM-4BOP2 GTEX-111YS-1326-SM-5EGGK GTEX-11EQ9-1626-SM-5PNY8 GTEX-11I78-0726-SM-5A5M1 GTEX-13NYB-0011-R8a-SM-5KM4R GTEX-1313W-0726-SM-5EGK1 GTEX-1212Z-0426-SM-5FQT6 GTEX-13111-2126-SM-5LZU2 GTEX-WHSE-0526-SM-5HL79 GTEX-Q2AG-0226-SM-2S1P4 GTEX-T6MN-1526-SM-4DM5P GTEX-S3XE-0008-SM-3NM8O GTEX-12ZZZ-1326-SM-59HKW GTEX-RNOR-1426-SM-48FDJ GTEX-13OW8-0126-SM-5IJE5 GTEX-11ZUS-2626-SM-5FQUR GTEX-145MN-0326-SM-5QGQI GTEX-132NY-0005-SM-5O9AC GTEX-R55F-1426-SM-2TF53 GTEX-X4LF-0326-SM-4QAS9 GTEX-P4QS-1826-SM-2S1NI GTEX-U3ZH-1926-SM-4DXTR GTEX-P44H-0011-R5A-SM-2XCEX GTEX-V955-1626-SM-4JBHJ GTEX-13SLW-0011-R10a-SM-5S2UI GTEX-13S7M-0226-SM-5S2UG GTEX-12WSH-2926-SM-5GCMR GTEX-146FH-1326-SM-5NQBI GTEX-ZTTD-0626-SM-4YCCY GTEX-V1D1-0826-SM-3P5ZA GTEX-1399R-0326-SM-5KM1X GTEX-T5JC-0426-SM-32PLO GTEX-Q2AG-0011-R9A-SM-2HMJ6 GTEX-14BIM-0011-R6b-SM-5S2VB GTEX-11OF3-1126-SM-5986C GTEX-Y111-2426-SM-4TT23 GTEX-13O3Q-2626-SM-5KM3S GTEX-11ZVC-3226-SM-5FQV1 GTEX-WFON-1126-SM-4LVMA GTEX-12C56-1826-SM-5EQ6D GTEX-ZAB5-0126-SM-5CVMT GTEX-144FL-3026-SM-5O99C GTEX-XLM4-1526-SM-4AT6D GTEX-X4EP-0126-SM-3P5YV GTEX-X4EO-0526-SM-3P5Z3 GTEX-YFCO-0526-SM-4W1ZJ GTEX-R55F-1526-SM-2TF4X GTEX-13FHP-0426-SM-5J1O5 GTEX-13FLV-0011-R8a-SM-5LZZE GTEX-QXCU-1326-SM-48FE2 GTEX-13CF2-0011-R8b-SM-5IJCX GTEX-ZTTD-2626-SM-57WEX GTEX-131YS-3126-SM-5KLYT GTEX-13OW7-3026-SM-5L3GY GTEX-WFON-1726-SM-4LVMQ GTEX-WHPG-0726-SM-4M1XX GTEX-ZVT2-0226-SM-5GIE3 GTEX-R3RS-0526-SM-3GADG GTEX-13OVI-1526-SM-5K7VX GTEX-111YS-0008-SM-5Q5BH GTEX-13SLX-0011-R8b-SM-5PNWZ GTEX-11ILO-2226-SM-5A5L1 GTEX-11PRG-0626-SM-5BC56 GTEX-139T8-0011-R4a-SM-5HL54 GTEX-T6MO-1226-SM-4DM5S GTEX-11ZUS-0126-SM-5EQM5 GTEX-13OVJ-2426-SM-5KM3I GTEX-145LU-0011-R3a-SM-5P9K2 GTEX-WHSE-0011-R2A-SM-3P5ZL GTEX-VUSG-0126-SM-4KL1X GTEX-ZVZP-1226-SM-5GID7 GTEX-OOBJ-1526-SM-3NB1Q GTEX-TMKS-0005-SM-33OV7 GTEX-RN64-1226-SM-2TC6E GTEX-YEC3-0526-SM-5IFHN GTEX-QDT8-0326-SM-32PL1 GTEX-Z93S-0926-SM-5HL8B GTEX-PLZ4-2826-SM-3P617 GTEX-XBED-2226-SM-47JYQ GTEX-148VI-0226-SM-5RQKA GTEX-PLZ6-0008-SM-48TD5 GTEX-POMQ-2326-SM-2S1O8 GTEX-ZEX8-2426-SM-4WKG4 GTEX-Y9LG-0001-SM-4VBRQ GTEX-R55D-1126-SM-48FEB GTEX-14ABY-0926-SM-5Q5DY GTEX-11OF3-2226-SM-5986F GTEX-13NYS-0226-SM-5MR49 GTEX-11EMC-0002-SM-5Q5DO GTEX-13D11-1026-SM-5IJFB GTEX-13O3O-2526-SM-5L3DR GTEX-13FXS-0011-R5b-SM-5LZYE GTEX-ZP4G-1926-SM-57WDZ GTEX-13FTX-2226-SM-5J1OP GTEX-T6MO-0226-SM-32QOL GTEX-145MH-0326-SM-5LU8H GTEX-12BJ1-1726-SM-5HL9B GTEX-YECK-1726-SM-5IFI3 GTEX-Q2AG-0426-SM-2S1PU GTEX-XAJ8-0326-SM-47JYI GTEX-R45C-0006-SM-3GAD6 GTEX-13N2G-0011-R9b-SM-5MR4E GTEX-13O3O-3126-SM-5KM3H GTEX-Y3IK-0526-SM-4WWE3 GTEX-13OVG-2126-SM-5KM1K GTEX-13NZA-0011-R11b-SM-5KM4W GTEX-13FLV-0011-R11a-SM-5LZZ7 GTEX-145ME-1626-SM-5RQI3 GTEX-ZPIC-1926-SM-57WFQ GTEX-Y8LW-1626-SM-5IFHX GTEX-131YS-0926-SM-5IJB9 GTEX-13OW8-0011-R3a-SM-5L3I4 GTEX-REY6-1426-SM-48FDK GTEX-WXYG-1026-SM-4ONCD GTEX-ZYY3-1626-SM-5EGJF GTEX-11DXX-2326-SM-5Q5A2 GTEX-ZE7O-2926-SM-51MSG GTEX-X261-0926-SM-3NMCY GTEX-133LE-1726-SM-5K7VQ GTEX-14A6H-1026-SM-5SIAZ GTEX-131YS-0826-SM-5PNYV GTEX-13NYB-2226-SM-5MR58 GTEX-QDVN-1326-SM-48TZ3 GTEX-OHPK-2026-SM-3MJH7 GTEX-117YW-2026-SM-5N9BH GTEX-ZTSS-0626-SM-59867 GTEX-Q2AH-0126-SM-48U2B GTEX-XPT6-0006-SM-4B66Q GTEX-139YR-0426-SM-5IFFV GTEX-ZYT6-2226-SM-5GIC9 GTEX-P4PQ-2626-SM-33HC9 GTEX-ZDTS-0326-SM-5HL83 GTEX-S7SE-0011-R5A-SM-2XCDA GTEX-WYVS-0526-SM-3NM9W GTEX-145LS-0426-SM-5LU8M GTEX-YEC4-0926-SM-5PNXY GTEX-139D8-0006-SM-5LZX8 GTEX-RNOR-0526-SM-2TF4O GTEX-X4EO-1026-SM-4QARP GTEX-PWOO-0926-SM-2I3EC GTEX-1399R-1726-SM-5K7YJ GTEX-13X6I-0011-R5a-SM-5PNWW GTEX-13NZB-2426-SM-5K7UF GTEX-13JUV-2526-SM-5J1OD GTEX-147GR-0426-SM-5S2OL GTEX-N7MS-0426-SM-2YUN6 GTEX-13FTW-0526-SM-5IFIP GTEX-R55D-0626-SM-3GAD5 GTEX-X62O-1626-SM-46MW9 GTEX-1211K-0326-SM-5FQT1 GTEX-NPJ7-0011-R8a-SM-2I3G2 GTEX-X4XX-0011-R8B-SM-46MWM GTEX-WH7G-0008-SM-4LVNM GTEX-145LS-0226-SM-5O9A5 GTEX-13N11-0426-SM-5KM3O GTEX-WFG8-2326-SM-5S2UE GTEX-13FLV-0126-SM-5K7WT GTEX-11ILO-1526-SM-5A5KZ GTEX-U3ZM-0826-SM-4DXU6 GTEX-XUZC-2026-SM-4BRW9 GTEX-RWS6-0726-SM-47JXI GTEX-13111-0126-SM-5EGHO GTEX-WVLH-0011-R5A-SM-3MJFW GTEX-OHPK-0008-SM-4E3JL GTEX-ZVZQ-0326-SM-59HLL GTEX-ZDTT-1226-SM-4WKG9 GTEX-WVLH-0006-SM-3MJF7 GTEX-ZLWG-0926-SM-4WWC3 GTEX-R53T-1626-SM-3GAEW GTEX-13NYS-0426-SM-5MR4X GTEX-XBED-1226-SM-4AT5V GTEX-T6MO-0726-SM-4DM58 GTEX-11ZUS-2526-SM-59872 GTEX-13FLW-0011-R5a-SM-5LZX6 GTEX-R55E-2526-SM-2TC6H GTEX-11ZTS-3226-SM-5EGID GTEX-13N2G-0011-R4b-SM-5MR54 GTEX-ZYY3-3226-SM-5SI9X GTEX-146FR-0326-SM-5SI8U GTEX-YJ89-0011-R7a-SM-4V6GO GTEX-XGQ4-0005-SM-4AT5U GTEX-RU72-0926-SM-2TF6B GTEX-13FTW-1226-SM-5LZZ1 GTEX-13FTX-0526-SM-5IFGS GTEX-UTHO-0011-R3A-SM-3GIK8 GTEX-S4Q7-1626-SM-3K2AE GTEX-RU1J-0126-SM-2TF6Y GTEX-RM2N-0826-SM-48FD3 GTEX-1122O-0008-SM-5QGR2 GTEX-1117F-0726-SM-5GIEN GTEX-P78B-1126-SM-3P615 GTEX-13U4I-1426-SM-5J2M3 GTEX-1399S-2726-SM-5KM22 GTEX-PVOW-1026-SM-5O9B9 GTEX-YFCO-0126-SM-4W1YT GTEX-13RTK-0226-SM-5RQHR GTEX-WVLH-0226-SM-3MJG6 GTEX-13O3Q-0011-R6a-SM-5KM2V GTEX-QXCU-0226-SM-2TC5W GTEX-14AS3-2126-SM-5S2MK GTEX-11TUW-1026-SM-5GU7D GTEX-11EI6-0726-SM-59866 GTEX-OXRK-0226-SM-2YUN1 GTEX-QVJO-0126-SM-3GIK4 GTEX-U8XE-0326-SM-3DB8P GTEX-PLZ5-0006-SM-5S2W5 GTEX-T6MN-0002-SM-3NMAH GTEX-U3ZH-0426-SM-4DXSE GTEX-U4B1-0526-SM-4DXTK GTEX-OXRN-0126-SM-48TDM GTEX-QEG4-0008-SM-48TYZ GTEX-13X6K-1926-SM-5LU4O GTEX-PWN1-2426-SM-48TDD GTEX-ZQUD-0926-SM-57WE3 GTEX-XYKS-1026-SM-4BRVH GTEX-132AR-1726-SM-5EGHQ GTEX-N7MT-0011-R4a-SM-2I3G9 GTEX-VUSG-0626-SM-4KL1Z GTEX-ZGAY-0526-SM-4WWBB GTEX-131XF-2326-SM-5BC6B GTEX-QDT8-0008-SM-48U2F GTEX-T8EM-1626-SM-3DB7K GTEX-11NUK-0926-SM-5HL57 GTEX-ZGAY-0426-SM-4WWAM GTEX-13PVQ-1726-SM-5IFF3 GTEX-WL46-0626-SM-3LK7R GTEX-13CF3-2426-SM-5IFGX GTEX-1399R-2526-SM-5IFG2 GTEX-NPJ8-0226-SM-48TBN GTEX-ZXG5-0011-R7b-SM-57WCC GTEX-ZG7Y-1626-SM-5S2NO GTEX-145MN-0926-SM-5NQBT GTEX-X88G-0008-SM-47JWN GTEX-148VI-0326-SM-5RQK7 GTEX-ZAB4-0011-R5a-SM-4SOKC GTEX-ZTX8-1526-SM-5N9GI GTEX-11TUW-2126-SM-5GU7B GTEX-12126-0008-SM-5S2UC GTEX-ZPIC-1826-SM-57WFE GTEX-OHPL-1826-SM-2YUN8 GTEX-O5YT-0426-SM-3MJHD GTEX-13PVQ-0226-SM-5SIBG GTEX-ZVTK-0126-SM-57WDG GTEX-QCQG-0626-SM-48U21 GTEX-ZF29-0006-SM-4WKGQ GTEX-T6MO-1526-SM-4DM57 K-562-SM-5CVL5 GTEX-X4EP-0011-R7B-SM-4PQZW GTEX-WYBS-0426-SM-3NM9M GTEX-YECK-0626-SM-4W1ZE GTEX-139UC-0011-R6b-SM-5K7Z1 GTEX-ZVZP-2226-SM-57WBF GTEX-13PVR-1226-SM-5RQJ2 GTEX-13IVO-2426-SM-5K7V9 GTEX-R55C-0326-SM-3GAF1 GTEX-12WSC-0011-R9a-SM-5GU4U GTEX-P44G-0011-R5A-SM-2I3FA GTEX-11WQK-0011-R9b-SM-5BC6N GTEX-X4EP-0011-R2B-SM-3P625 GTEX-13QBU-1926-SM-5IJEW GTEX-13NYB-3226-SM-5J2ND GTEX-111VG-2526-SM-5GZXP GTEX-VJWN-1026-SM-4M1ZN GTEX-R55D-0326-SM-48FES GTEX-145ME-1526-SM-5Q5F2 GTEX-ZAB5-1926-SM-5HL7O GTEX-P4QR-0008-SM-48TE2 GTEX-13FHP-1026-SM-5K7Y2 GTEX-V1D1-0226-SM-4JBHG GTEX-11H98-0011-R8a-SM-5NQ8V GTEX-N7MS-2526-SM-2D7W3 GTEX-11OF3-2326-SM-5GU73 GTEX-S341-0006-SM-3NM8D GTEX-1399S-1326-SM-5P9GH GTEX-PLZ5-0326-SM-3P614 GTEX-13PVQ-0326-SM-5K7YF GTEX-13S7M-0126-SM-5SI6A GTEX-ZYFG-2326-SM-5E44B GTEX-11DXY-0126-SM-5H11Q GTEX-QEG4-1826-SM-4R1JN GTEX-13CF2-2026-SM-5K7VI GTEX-13NZ8-0926-SM-5MR3U GTEX-S95S-1626-SM-2XCDJ GTEX-ZY6K-1426-SM-5GZX2 GTEX-12BJ1-0726-SM-5EGGF GTEX-XMK1-0626-SM-4B65A GTEX-11EMC-0008-SM-5Q5DR GTEX-132QS-0526-SM-5IJC7 GTEX-VUSG-1126-SM-4KKZQ GTEX-RTLS-1126-SM-46MUQ GTEX-13VXT-1326-SM-5LU3Y GTEX-P78B-1026-SM-3NMC4 GTEX-13N1W-0011-R11a-SM-5MR3D GTEX-OOBJ-0526-SM-48TDK GTEX-12WS9-0326-SM-59HJV GTEX-X4EO-1226-SM-4QARR GTEX-WWYW-0526-SM-3NB2W GTEX-12696-0426-SM-5EGL5 GTEX-12ZZY-3126-SM-5DUX3 GTEX-13PLJ-0011-R9b-SM-5O9DV GTEX-12ZZW-1026-SM-5GCMM GTEX-13PLJ-0011-R5a-SM-5O9BG GTEX-ZXG5-0226-SM-59HJI GTEX-14DAQ-0005-SM-5NQ7B GTEX-WYJK-1726-SM-3NM9U GTEX-13O21-2526-SM-5J1OZ GTEX-111VG-0008-SM-5Q5BG GTEX-XYKS-2726-SM-4E3IC GTEX-YB5E-0326-SM-5IFHU GTEX-OHPL-2626-SM-2HMJA GTEX-144GL-2926-SM-5O99F GTEX-14AS3-0526-SM-5QGQQ GTEX-11P7K-1926-SM-5GU6R GTEX-UJHI-0326-SM-4IHJE GTEX-13FTX-0005-SM-5N9F6 GTEX-OIZG-0226-SM-2TC5L GTEX-WRHU-1026-SM-4E3ID GTEX-XAJ8-1426-SM-47JYM GTEX-Y114-0526-SM-4TT8V GTEX-WXYG-2526-SM-3NB3F GTEX-13S7M-1726-SM-5RQK3 GTEX-T2YK-1326-SM-4DM6S GTEX-X5EB-0008-SM-46MU3 GTEX-OHPJ-1026-SM-2HMLE GTEX-XBEW-1526-SM-4AT4K GTEX-OXRL-1426-SM-3NM9E GTEX-XOTO-2926-SM-4B65G GTEX-11NUK-3126-SM-5986M GTEX-S7SE-0011-R10A-SM-2XCDF GTEX-139TT-2626-SM-5LZUB GTEX-ZWKS-2826-SM-5NQ74 GTEX-WI4N-2426-SM-4OOSC GTEX-ZDTS-0426-SM-4WAYH GTEX-P4PQ-0426-SM-3NMCI GTEX-RNOR-0826-SM-2TF5C GTEX-ZZ64-0526-SM-5GZXM GTEX-1192W-0226-SM-5EGGT GTEX-R53T-1326-SM-48FCQ GTEX-T6MN-1826-SM-5CHQB GTEX-X4XX-0011-R2A-SM-3P623 GTEX-T8EM-0426-SM-4DM7E GTEX-YB5E-0008-SM-4VDT7 GTEX-OIZH-1626-SM-2HMKI GTEX-ZTPG-1226-SM-4YCDO GTEX-11P82-1826-SM-5PNYJ GTEX-S4Q7-0526-SM-4AD5N GTEX-RWS6-1726-SM-47JXP GTEX-ZVZP-2026-SM-57WB3 GTEX-13NYS-1926-SM-5IJCB GTEX-Y8E4-0006-SM-4V6EW GTEX-OHPN-0011-R9A-SM-4DXUH GTEX-ZT9X-2026-SM-57WEJ GTEX-X4EO-1726-SM-4QARN GTEX-Y8LW-0926-SM-4VBQ8 GTEX-11ONC-1026-SM-5GU64 GTEX-WFON-0001-SM-3P61W GTEX-WL46-1226-SM-4OOS4 GTEX-UPJH-0226-SM-3GADV GTEX-ZVT3-0008-SM-51MRI GTEX-132QS-0426-SM-5KLZ6 GTEX-XUJ4-0008-SM-4BOQI GTEX-QLQW-0226-SM-447BJ GTEX-Z93S-1626-SM-5CVMB GTEX-ZVZQ-0011-R11a-SM-51MS6 GTEX-T5JW-0003-SM-3NMAD GTEX-147F4-2526-SM-5NQBB GTEX-S4P3-0726-SM-4AD57 GTEX-XXEK-0526-SM-4BRWD GTEX-12WSJ-1726-SM-5LZVV GTEX-13CF2-0011-R7b-SM-5K7UV GTEX-UTHO-1226-SM-3GAEE GTEX-13PL6-0011-R6a-SM-5O9C5 GTEX-13CF3-1926-SM-5K7WF GTEX-ZC5H-1026-SM-5CVN1 GTEX-QLQW-0426-SM-447A7 GTEX-ZAB5-2326-SM-5IJFR GTEX-13YAN-0426-SM-5O9DR GTEX-13PVR-1826-SM-5Q5CC GTEX-Y5V6-2526-SM-5IFJV GTEX-11NSD-0826-SM-5986S GTEX-Y111-2026-SM-4SOJA GTEX-P4QT-1426-SM-3NMCX GTEX-ZZPT-1326-SM-5E43H GTEX-YJ8A-0426-SM-5IFID GTEX-14ABY-0005-SM-5O99U GTEX-13W3W-0526-SM-5LU3X GTEX-11NSD-2026-SM-5HL5U GTEX-ZQUD-0626-SM-51MR2 GTEX-113JC-2226-SM-5EGJG GTEX-139UW-0226-SM-5K7WU GTEX-13X6I-1826-SM-5SIAO K-562-SM-5IJDX GTEX-1269C-2726-SM-5EGJ4 GTEX-Q2AG-0826-SM-2HMKF GTEX-13111-1426-SM-5DUW3 GTEX-14753-2926-SM-5LU9J GTEX-11EI6-2826-SM-5H11D GTEX-XUZC-0526-SM-4BOPF GTEX-ZAJG-3226-SM-5HL9V GTEX-Z93T-0426-SM-5HL6G GTEX-XQ8I-1126-SM-4BOO2 GTEX-12WSA-0726-SM-5FQU2 GTEX-12584-1026-SM-59HK3 GTEX-11WQC-1826-SM-5GU59 GTEX-O5YT-0826-SM-3TW8N GTEX-N7MT-1326-SM-2I3FV GTEX-UJHI-1326-SM-4IHJO GTEX-139T6-1826-SM-5KM2E GTEX-R55F-0126-SM-48FCK GTEX-YFC4-0011-R2a-SM-4V6DZ GTEX-QVJO-0011-R2A-SM-2S1QK GTEX-14A6H-0326-SM-5NQAN GTEX-QEG5-0526-SM-2S1PC GTEX-131YS-0011-R9b-SM-5EQLY GTEX-QV31-0426-SM-447C4 GTEX-N7MS-0626-SM-2YUN7 GTEX-139D8-0726-SM-5P9GJ GTEX-ZYW4-0526-SM-5GZZ5 GTEX-13OVL-0826-SM-5L3GV GTEX-P4PQ-0226-SM-2S1NK GTEX-Y9LG-0926-SM-4VDS6 GTEX-145MG-0011-R3b-SM-5SI67 GTEX-11ZTT-0526-SM-5EQLA GTEX-OXRO-0011-R2A-SM-3NB1W GTEX-WFG8-1926-SM-4LVM1 GTEX-OHPK-0006-SM-2HMKH GTEX-P78B-1826-SM-3P5YX GTEX-V955-1326-SM-4JBHR GTEX-131YS-1126-SM-5N9FQ GTEX-QVUS-2826-SM-3GADB GTEX-11GSP-0011-R5a-SM-57WBE GTEX-WYJK-0626-SM-4ONCZ GTEX-1399T-1226-SM-5P9J5 GTEX-RM2N-0526-SM-2TF4N GTEX-ZLV1-0226-SM-4WWC1 GTEX-11GSP-2126-SM-5HL5E GTEX-11O72-2026-SM-5N9G8 GTEX-11DXY-0008-SM-5QGR4 GTEX-YFC4-0126-101855-SM-5CVLZ GTEX-ZVT3-0011-R3b-SM-51MTJ GTEX-X4XX-0926-SM-46MV7 GTEX-12C56-1126-SM-5FQTO GTEX-Z93S-0011-R11a-SM-4RGNN GTEX-11EM3-1326-SM-5N9C6 GTEX-11GS4-3126-SM-5A5LH GTEX-13U4I-1126-SM-5LU3S GTEX-12C56-1326-SM-5FQSV GTEX-OIZH-0126-SM-2HMIS GTEX-13CF3-1826-SM-5J1NK GTEX-11XUK-0008-SM-5S2WD GTEX-1399Q-2826-SM-5IJEZ GTEX-XUW1-0626-SM-4BOP4 GTEX-WZTO-0008-SM-4PQZZ GTEX-ZZ64-0426-SM-5E43F GTEX-YFC4-1226-SM-5LU9R GTEX-1314G-0826-SM-5BC6L GTEX-132Q8-0526-SM-5IJBQ GTEX-13FHO-0011-R7b-SM-5LZXD GTEX-WWTW-1326-SM-4MVNT GTEX-146FQ-2126-SM-5RQHU GTEX-X4EP-0008-SM-4PQYO GTEX-11TUW-1726-SM-5BC5C GTEX-ZXES-2026-SM-5NQ6R GTEX-12696-2526-SM-5EQLN GTEX-SUCS-1026-SM-5CHTC GTEX-13FHO-3026-SM-5J1O9 GTEX-13FHO-1726-SM-5IFGM GTEX-T6MN-0326-SM-32PMK GTEX-U3ZN-0926-SM-4DXTU GTEX-Y111-1626-SM-57WCY GTEX-XUJ4-1626-SM-4BONV GTEX-W5WG-0008-SM-4KL25 GTEX-1269C-2426-SM-5FQSN GTEX-RVPV-0926-SM-47JXU GTEX-Y3I4-1526-SM-4TT7K GTEX-P44G-0011-R2A-SM-2XCD2 GTEX-WHSE-0926-SM-3NMBS GTEX-13RTL-0011-R1a-SM-5PNZ8 GTEX-ZDTS-1026-SM-4WAXS GTEX-11P7K-1026-SM-5HL6Y GTEX-12WSD-1726-SM-5GCN4 GTEX-QV44-1526-SM-4R1KI GTEX-WFJO-0008-SM-4LVN7 GTEX-11I78-1226-SM-5A5K6 GTEX-11UD2-1126-SM-5EQM6 GTEX-ZAB4-0426-SM-5HL7N GTEX-ZGAY-0326-SM-57WF5 GTEX-ZYFC-0126-SM-5GIEH GTEX-12WSF-0011-R11a-SM-5LZVT GTEX-ZF2S-0626-SM-4WKH2 GTEX-ZV7C-0126-SM-57WDE GTEX-UPIC-1426-SM-4IHLQ GTEX-VUSG-0008-SM-4KL24 GTEX-13IVO-3026-SM-5J2M2 GTEX-1399R-2726-SM-5IJBA GTEX-ZYT6-1726-SM-5E44P GTEX-POMQ-1226-SM-3P61F GTEX-XBEW-0926-SM-4QASR GTEX-ZVTK-0006-SM-57WBK GTEX-11TT1-0326-SM-5LUAY GTEX-117YX-1326-SM-5H125 GTEX-12WSN-0006-SM-5NQAP GTEX-W5WG-0002-SM-3NMDN GTEX-13PL7-0626-SM-5IJCD GTEX-TKQ2-0006-SM-33HBH GTEX-13112-0011-R6b-SM-5DUVK GTEX-13OVL-0011-R11b-SM-5L3G7 GTEX-13VXT-2026-SM-5L3EW GTEX-WYBS-0005-SM-4ONDR GTEX-S4Q7-0826-SM-4AD5E GTEX-ZAJG-3126-SM-5HL9J GTEX-11TUW-0006-SM-5LZW2 GTEX-131XH-2226-SM-5DUXJ GTEX-Y8E4-0008-SM-4V6FW GTEX-OHPK-0226-SM-3MJH6 GTEX-TML8-0008-SM-4DXUI GTEX-13OVI-0526-SM-5IFFQ GTEX-14C5O-1726-SM-5RQI9 GTEX-13N1W-1026-SM-5IJC5 GTEX-11PRG-0826-SM-5EQ6A GTEX-WVJS-0008-SM-4MVPC GTEX-WK11-1026-SM-4OOS8 GTEX-XQ3S-2526-SM-4BOOG GTEX-11XUK-1326-SM-5EQM4 GTEX-13FLV-1326-SM-5L3EJ GTEX-13D11-2126-SM-5IFH2 GTEX-13O3P-0726-SM-5J2OM GTEX-P44G-0011-R1A-SM-2I3FE GTEX-132NY-2826-SM-5P9G2 K-562-SM-5DUV6 GTEX-X585-2426-SM-46MW2 GTEX-1192X-3126-SM-5N9BY GTEX-13N2G-0011-R1b-SM-5MR3G GTEX-11ILO-0006-SM-5LZWE GTEX-11DXX-1526-SM-5H115 GTEX-145MN-1426-SM-5SI9H GTEX-ZV68-0011-R6a-SM-51MSR GTEX-ZGAY-0226-SM-4WWAL GTEX-11DYG-1926-SM-5H12I GTEX-13FXS-0326-SM-5K7TV GTEX-11EQ9-0526-SM-5A5JZ GTEX-QVUS-0011-R3A-SM-3GAFD GTEX-OHPN-0011-R9A-SM-2YUMN GTEX-1128S-0126-SM-5H12S GTEX-U3ZN-0826-SM-4DXSZ GTEX-11ZVC-1426-SM-5EGGA GTEX-OHPL-0526-SM-3NM8U GTEX-WHSE-1526-SM-4M1XH GTEX-13SLW-0011-R1a-SM-5S2W7 GTEX-145MO-1326-SM-5Q5EF GTEX-ZXES-1926-SM-5E445 GTEX-RWS6-0426-SM-47JXH GTEX-ZDXO-0226-SM-4WKH7 GTEX-N7MT-0011-R7a-SM-2I3FZ GTEX-13IVO-0011-R8a-SM-5L3DY GTEX-Q2AG-0011-R11A-SM-2HMKZ GTEX-Y8E5-0008-SM-57WBA GTEX-WOFL-0726-SM-3MJG4 GTEX-144GL-0011-R5b-SM-5PNUJ GTEX-XPVG-0326-SM-4B653 GTEX-UPIC-0926-SM-4IHLV GTEX-144GO-1326-SM-5Q5EL GTEX-ZV6S-2026-SM-5NQ8P GTEX-ZVT4-0626-SM-5E45T GTEX-144GL-0426-SM-5QGOZ GTEX-ZVTK-0826-SM-5GZXI GTEX-14BIM-0426-SM-5SI9N GTEX-ZYT6-0826-SM-5E43I GTEX-1314G-1826-SM-5LZVA GTEX-OIZH-0626-SM-3NB1L GTEX-14E6C-0005-SM-5O98N GTEX-PLZ6-1226-SM-3P5ZS GTEX-13CF2-2426-SM-5LZYL GTEX-T2YK-0008-SM-4DM6M GTEX-11P82-1126-SM-5BC5K GTEX-WYJK-1526-SM-4ONCW GTEX-13X6K-2126-SM-5O9D4 GTEX-WHPG-2626-SM-3NMBR GTEX-ZPU1-0008-SM-4E3IR GTEX-144GN-1626-SM-5Q5BU GTEX-12WSK-0726-SM-5LZUV GTEX-132QS-0126-SM-5IFH9 GTEX-PLZ5-0826-SM-3P5ZW GTEX-WOFM-0726-SM-3MJF8 GTEX-POYW-0426-SM-2XCEV GTEX-144GL-0011-R3a-SM-5P9HP GTEX-XV7Q-1526-SM-4BRWB GTEX-14BIN-0005-SM-5N9FE GTEX-1211K-2426-SM-59HL8 GTEX-R55E-0011-R9A-SM-2TC6C GTEX-13IVO-0426-SM-5LZY7 GTEX-13X6J-0011-R11a-SM-5P9HE GTEX-R55F-1226-SM-2TF59 GTEX-11EQ9-0006-SM-5LUB6 GTEX-QEL4-0526-SM-3GIJ4 GTEX-XOT4-0426-SM-4B66T GTEX-11EI6-0226-SM-5EQ64 GTEX-14C5O-1426-SM-5RQI8 GTEX-REY6-1126-SM-48FDU GTEX-WI4N-1126-SM-3LK7Q GTEX-XYKS-0226-SM-4BRW3 GTEX-X4XY-1726-SM-46MVO GTEX-ZTPG-0326-SM-5O9AX GTEX-ZF2S-0008-SM-4E3IK GTEX-13CZV-0011-R11b-SM-5N9FN GTEX-WQUQ-1626-SM-4OOSH GTEX-144GO-0011-R5a-SM-5PNUR GTEX-11NV4-1726-SM-5N9FC GTEX-N7MT-0011-R3a-SM-2I3GC GTEX-ZVT3-2126-SM-59HL2 GTEX-XYKS-1626-SM-4BRUQ GTEX-SIU7-1426-SM-4BRWT GTEX-132Q8-0011-R10b-SM-5DUWZ GTEX-13PL6-0011-R9b-SM-5O9CH GTEX-ZVP2-1726-SM-5GU5P GTEX-139T6-0526-SM-5IJC9 GTEX-YFC4-2626-SM-5P9FQ GTEX-WYVS-1726-SM-3NMAY GTEX-11NV4-0326-SM-5HL58 GTEX-12WSA-0326-SM-5BC6I GTEX-Y3IK-1626-SM-4YCF5 GTEX-13NZA-0326-SM-5J1MK GTEX-Y3I4-2026-SM-4TT6Z GTEX-ZYVF-1726-SM-5E443 GTEX-WH7G-2626-SM-3NMBE GTEX-S341-0126-SM-4AD64 GTEX-XOT4-0326-SM-4B66S GTEX-WFON-2326-SM-3LK7M GTEX-1192X-0726-SM-5987R GTEX-XPT6-2026-SM-4B64V GTEX-QMR6-0011-R11A-SM-32PKK GTEX-WK11-0006-SM-3NB3J GTEX-ZAK1-2326-SM-5CVMY GTEX-ZVZQ-0826-SM-51MRF GTEX-WY7C-1826-SM-4ONCE GTEX-11P82-0426-SM-5HL5D GTEX-13PL7-2026-SM-5IFGK GTEX-1128S-2126-SM-5H12U GTEX-QV44-1126-SM-4R1KO GTEX-13NZ9-1326-SM-5MR3V GTEX-14C39-2426-SM-5S2U5 GTEX-111YS-1826-SM-5GIEP GTEX-ZDYS-2226-SM-5S2MI GTEX-W5X1-0001-SM-3P61V GTEX-145MH-2826-SM-5RQJF GTEX-PWOO-0526-SM-2S1Q3 GTEX-13W46-0726-SM-5LU3Z GTEX-R53T-0008-SM-48FEW GTEX-XPT6-1626-SM-4B655 GTEX-ZDXO-0011-R8a-SM-4WWD7 GTEX-14B4R-0526-SM-5QGQT GTEX-11EMC-3226-SM-5EGKW GTEX-13OVJ-1426-SM-5K7Z2 GTEX-SIU7-1726-SM-2XCDZ GTEX-ZQG8-1526-SM-5HL65 GTEX-P44G-0011-R3A-SM-2I3FC GTEX-12ZZW-0011-R10b-SM-5HL9X K-562-SM-5IJB7 GTEX-S7SF-0526-SM-3K2BC GTEX-13111-0926-SM-5DUVQ GTEX-12WSE-0011-R6b-SM-5LZV5 GTEX-13D11-0726-SM-5LZZB GTEX-113JC-2726-SM-5EGIS GTEX-ZYFG-1826-SM-5GZWX GTEX-OOBK-0625-SM-3LK5P GTEX-O5YW-0526-SM-2YUMX GTEX-13FHP-0011-R1b-SM-5K7XL GTEX-WOFM-1326-SM-3MJFR GTEX-11EMC-1726-SM-5H11P GTEX-XMD1-0011-R10A-SM-4AT4A GTEX-ZDYS-2526-SM-4WKGU GTEX-146FQ-0926-SM-5LUAV GTEX-X5EB-1126-SM-46MVV GTEX-12WSK-1326-SM-5CVNM GTEX-N7MT-1926-SM-3LK5N GTEX-UJMC-0008-SM-4IHKK GTEX-OIZH-0326-SM-2HMKC GTEX-ZC5H-0005-SM-4WAXM GTEX-ZT9X-1526-SM-5DUXD GTEX-YB5K-0426-SM-5LUA4 GTEX-11TT1-0526-SM-5P9JO GTEX-12WSJ-0526-SM-5GCOZ GTEX-PWN1-0126-SM-2I3FK GTEX-12WSD-0011-R3b-SM-5LZWN GTEX-1445S-1126-SM-5QGOW GTEX-14C38-2126-SM-5RQJO GTEX-WZTO-0011-R8A-SM-4E3II GTEX-145LT-1926-SM-5QGP5 GTEX-11NUK-2926-SM-5A5MD GTEX-XXEK-1726-SM-4BRVB GTEX-ZPU1-0526-SM-4YCDA GTEX-Y3IK-2426-SM-4WWDU GTEX-SNOS-1026-SM-4DM4Y GTEX-ZF29-1726-SM-4WKFV GTEX-YFCO-1926-SM-4W212 GTEX-13CF3-0726-SM-5J2MY GTEX-139UC-1426-SM-5IJGH GTEX-146FQ-1926-SM-5NQBY GTEX-Y8E4-1326-SM-5IFIY GTEX-PLZ5-1626-SM-3NB21 GTEX-ZGAY-0926-SM-4WWBQ GTEX-13FXS-0011-R9a-SM-5K7UI GTEX-12KS4-1326-SM-5LUB3 GTEX-13O3Q-0011-R10b-SM-5KM39 GTEX-131YS-0011-R4a-SM-5DUVL GTEX-13N2G-0011-R10a-SM-5MR34 GTEX-ZYFC-0826-SM-5E44K GTEX-WOFL-0006-SM-3TW8K GTEX-145ME-0426-SM-5S2QP GTEX-S33H-0826-SM-4AD5Y GTEX-14DAQ-1326-SM-5RQIM GTEX-13OW8-0011-R6b-SM-5L3I3 GTEX-13FLV-0011-R4a-SM-5LZYU GTEX-ZVZQ-0011-R10b-SM-51MRT GTEX-11WQK-1826-SM-5EQM2 GTEX-144GN-2126-SM-5O99D GTEX-QMRM-1726-SM-2S1QG GTEX-QMRM-1626-SM-4R1KV GTEX-145ME-0526-SM-5QGQV GTEX-OXRO-0126-SM-2YUN4 GTEX-ZYWO-2526-SM-5GIDM GTEX-13O3P-0826-SM-5L3DH GTEX-U3ZG-0008-SM-47JWL GTEX-11WQK-0226-SM-5EQLI GTEX-131XH-0011-R1a-SM-5DUWA GTEX-1212Z-2026-SM-5N9EA GTEX-ZAB4-1826-SM-5HL8O GTEX-S32W-0626-SM-2XCBG GTEX-ZA64-2026-SM-5PNXT GTEX-WYBS-0626-SM-3NMAS GTEX-N7MS-0008-SM-4E3JI GTEX-P4PP-1526-SM-3P61M GTEX-12696-1726-SM-5EQLH GTEX-145MH-0426-SM-5LU8T GTEX-ZLWG-0126-SM-4WWC5 GTEX-14753-1626-SM-5NQ9L GTEX-P44H-0011-R10A-SM-2XCEK GTEX-11NSD-0326-SM-5A5LS GTEX-XMK1-0001-SM-4B64F GTEX-13OW7-0011-R4b-SM-5O9CX GTEX-146FQ-1726-SM-5QGPX GTEX-YEC3-2126-SM-5CVLR GTEX-14BIL-2426-SM-5QGQR GTEX-13OVH-0011-R6b-SM-5LUAX GTEX-P4QS-0005-SM-2I3EY GTEX-13NYS-0011-R9b-SM-5MR44 GTEX-RU72-0011-R10A-SM-2TF6D GTEX-13OVJ-2826-SM-5L3GW GTEX-13JUV-2426-SM-5J1NS GTEX-11GSO-3026-SM-5Q5AL GTEX-147F3-0826-SM-5NQA7 GTEX-WHSE-0011-R1A-SM-3P5ZK GTEX-13RTJ-2126-SM-5S2PZ GTEX-YJ8O-0326-SM-5RQJW GTEX-WFG7-0008-SM-4LMKB GTEX-REY6-0005-SM-2TF54 GTEX-13OVJ-0426-SM-5L3GX GTEX-OOBK-2025-SM-3LK5S GTEX-T6MN-0011-R4A-SM-5CHSD GTEX-ZG7Y-0126-SM-4WWEX GTEX-QCQG-1426-SM-48U22 GTEX-117YX-0726-SM-5GIET GTEX-11P7K-1326-SM-5BC5G GTEX-ZUA1-3026-SM-59HJC GTEX-ZP4G-0426-SM-4YCER GTEX-147JS-1326-SM-5SI6D GTEX-R55D-0008-SM-48FEV GTEX-RU72-0826-SM-46MUS GTEX-WOFL-0626-SM-3MJG3 GTEX-NL3G-2526-SM-4SOIE GTEX-ZEX8-1626-SM-4WKG7 GTEX-X8HC-1326-SM-46MWB GTEX-11XUK-0926-SM-5EQL3 GTEX-ZQUD-0326-SM-4YCEN GTEX-13OW5-1126-SM-5J1NR GTEX-11GSP-0011-R8b-SM-5NQ79 GTEX-11EQ9-1426-SM-5987G GTEX-13NZ9-0926-SM-5KM12 GTEX-YJ89-0011-R2b-SM-4RGLT GTEX-Q2AH-0008-SM-48U2J GTEX-Q2AG-0011-R10A-SM-2HMLA GTEX-YECK-1226-SM-4W21G GTEX-11WQC-0726-SM-5EQMR GTEX-PWN1-0726-SM-48TDR GTEX-ZVT4-2626-SM-5N9GJ GTEX-13112-2126-SM-5GCO4 GTEX-UPJH-0526-SM-4IHK8 GTEX-OHPK-2526-SM-3MJH9 GTEX-111YS-0126-SM-5987T GTEX-131XE-0426-SM-5IJF4 GTEX-Y8DK-0008-SM-4RGM2 GTEX-12126-0626-SM-5Q5AQ GTEX-WHSB-0726-SM-4M1XQ GTEX-PSDG-1126-SM-2S1ON GTEX-YB5E-1726-SM-5IFJ3 K-562-SM-5GZZE GTEX-RVPV-0226-SM-2TF6W GTEX-WYVS-0126-SM-4ONDH GTEX-U8XE-2526-SM-4E3IT GTEX-12WSJ-0926-SM-5P9JD GTEX-1192W-0008-SM-5QGRE GTEX-ZV6S-0003-SM-4YCCT GTEX-P4PP-0008-SM-48TDV GTEX-SNOS-1126-SM-4DM67 GTEX-WL46-0011-R5A-SM-3LK6V GTEX-ZAB5-0526-SM-5CVMU GTEX-ZA64-0126-SM-5HL8Z GTEX-11VI4-0001-SM-5S2OI GTEX-145LT-0126-SM-5S2QJ GTEX-12WSC-1726-SM-5GCN3 GTEX-YB5K-0626-SM-5LUB5 GTEX-145MG-0011-R7b-SM-5P9JY GTEX-13FHP-1526-SM-5IJGE K-562-SM-5NQ6M GTEX-111FC-1026-SM-5GZX1 GTEX-11NUK-0126-SM-5A5L3 GTEX-RNOR-0126-SM-2TF57 GTEX-11DXY-0326-SM-5H12F GTEX-NFK9-0626-SM-2HMIV GTEX-ZDYS-1026-SM-4WKHC K-562-SM-4IHK7 GTEX-111CU-1526-SM-5N9FS GTEX-145ME-2226-SM-5S2VY GTEX-13113-0126-SM-5LZVX GTEX-ZVZP-1426-SM-5NQ7R GTEX-144GL-2026-SM-5LU3O GTEX-QEL4-0008-SM-447AZ GTEX-OIZI-0008-SM-2XCFD GTEX-X4EP-0011-R9B-SM-4QASI GTEX-13112-2926-SM-5DUWT GTEX-ZV7C-0326-SM-57WB1 GTEX-TSE9-0011-R7A-SM-5CHS2 GTEX-11DXZ-2626-SM-59882 GTEX-VJYA-1526-SM-3GIJV GTEX-11P82-1726-SM-5Q5AT GTEX-145ME-2126-SM-5SIAH GTEX-13111-1226-SM-5GCNC GTEX-13PDP-0326-SM-5K7XP GTEX-13S86-0726-SM-5Q5DH GTEX-13JUV-0626-SM-5J1MQ GTEX-POYW-1226-SM-5LZWQ GTEX-ZTSS-2026-SM-5987K GTEX-WVJS-2726-SM-4MVNU GTEX-11WQC-0011-R7b-SM-5BC7A GTEX-139T4-0126-SM-5HL5G GTEX-T6MO-1026-SM-4DM72 GTEX-QESD-1726-SM-2S1R7 GTEX-ZVT2-2226-SM-5NQ6P GTEX-13D11-2526-SM-5KM28 GTEX-X8HC-2726-SM-46MUA GTEX-139YR-0826-SM-5LZXY GTEX-12ZZZ-0011-R7b-SM-5EGLE GTEX-113JC-0726-SM-5GZZR GTEX-13RTL-0011-R3a-SM-5P9JP GTEX-P4QT-2026-SM-3NMCJ GTEX-13FHO-0011-R11b-SM-5LZYQ GTEX-ZYWO-2326-SM-5GZY4 GTEX-1192X-2526-SM-59868 GTEX-1314G-1726-SM-5LZUX GTEX-RWS6-1326-SM-47JXB GTEX-11VI4-0526-SM-5EQ48 GTEX-139T8-0226-SM-5L3EA GTEX-132NY-2026-SM-5L3FM GTEX-11ZUS-1426-SM-5FQSP GTEX-ZYFC-2226-SM-5NQ96 GTEX-11P7K-0426-SM-5BC5H GTEX-13VXU-3126-SM-5SIA4 GTEX-XV7Q-2426-SM-4BRV8 GTEX-13CF3-1126-SM-5LZXB GTEX-Q2AG-0011-R5A-SM-2HMJH GTEX-U8T8-0008-SM-4DXSP GTEX-WFON-1626-SM-4LVMV GTEX-13FHO-0326-SM-5IJBH GTEX-13OVH-0011-R8b-SM-5MR35 GTEX-147GR-0011-R6b-SM-5S2RO GTEX-ZYY3-2926-SM-5GIEB GTEX-117YX-2526-SM-5EQ4Q GTEX-ZYY3-0526-SM-5E45G GTEX-O5YV-2026-SM-26GMK GTEX-XBEW-1926-SM-4SOJO GTEX-YF7O-1626-SM-5IFII GTEX-ZVTK-0003-SM-51MRV GTEX-R55E-0326-SM-48FD2 GTEX-12WSN-2326-SM-5DUVG GTEX-Q734-2026-SM-3GADA GTEX-132Q8-0011-R5a-SM-5IJDM GTEX-OHPK-2426-SM-3MJGH GTEX-13QBU-0726-SM-5J2OA GTEX-WZTO-0011-R5B-SM-3NMC5 GTEX-11ONC-0011-R1a-SM-57WD4 GTEX-13CF3-1326-SM-5LZXZ GTEX-1399S-2226-SM-5IFEW GTEX-WRHK-0426-SM-4MVOG GTEX-139D8-1126-SM-5LU8W GTEX-14BIN-0011-R10a-SM-5S2UA GTEX-PLZ5-2026-SM-2S1O4 GTEX-13O3P-1326-SM-5K7Y8 GTEX-11I78-0001-SM-5Q5BE GTEX-QV31-0626-SM-447C5 GTEX-X15G-1026-SM-4PQZF GTEX-ZVE2-0526-SM-5GU7E GTEX-T2IS-0011-R6A-SM-32QP2 GTEX-1339X-0526-SM-5KLYW GTEX-11WQK-2226-SM-5CVL7 GTEX-131XF-1026-SM-5BC6A GTEX-131XG-1526-SM-5GCNQ GTEX-144GL-0011-R8a-SM-5Q5B1 GTEX-X8HC-0226-SM-4E3K1 GTEX-13QIC-3026-SM-5LU58 K-562-SM-2I3E7 GTEX-TSE9-2226-SM-4DXUR GTEX-X4EP-0526-SM-3P5YW GTEX-QCQG-2026-SM-2S1PH GTEX-ZGAY-2126-SM-4YCFB GTEX-SNMC-0626-SM-4DM6H GTEX-1313W-0011-R10b-SM-5DUXA GTEX-145MN-0626-SM-5QGRH GTEX-12ZZX-0426-SM-5DUVT GTEX-12WSL-2526-SM-5GCNJ GTEX-XBED-1126-SM-48TCF GTEX-13YAN-1526-SM-5LU3E GTEX-13W46-0926-SM-5LU3T GTEX-RUSQ-0626-SM-2TF5V GTEX-12WSH-0005-SM-5NQ9P GTEX-XUJ4-1926-SM-4BOOV GTEX-146FQ-1526-SM-5Q5CX GTEX-ZZ64-0326-SM-5E45S GTEX-XGQ4-2626-SM-4AT6B GTEX-12WSG-0826-SM-5EQ5A GTEX-11NV4-0005-SM-5N9EX GTEX-YFC4-0011-R9a-SM-4SOK4 GTEX-13O3Q-2926-SM-5KM45 GTEX-YB5E-0001-SM-4VDSV GTEX-13NYC-0626-SM-5K7U8 GTEX-13OVL-1326-SM-5IJCZ GTEX-12WSD-2926-SM-5LZUH GTEX-12WSA-1426-SM-5EGJU GTEX-XMK1-1826-SM-4B66F GTEX-13FTW-0126-SM-5IJED GTEX-S33H-0526-SM-5SI83 GTEX-V955-0326-SM-4JBGV GTEX-11DXW-0326-SM-5H11W GTEX-1399U-0826-SM-5KM1P GTEX-14A6H-0526-SM-5NQAZ GTEX-13N11-1026-SM-5K7XQ GTEX-ZQUD-0426-SM-57WFR GTEX-14BMV-2226-SM-5RQHX GTEX-NPJ8-0626-SM-48TBO GTEX-12126-0011-R9b-SM-5BC6P GTEX-Y5V6-2226-SM-4VDTC GTEX-11NSD-1826-SM-5N9CF GTEX-132Q8-1126-SM-5K7XS GTEX-ZY6K-0626-SM-59HJL GTEX-ZXG5-0011-R5b-SM-57WBN GTEX-13CIG-0006-SM-5P9HF GTEX-11DZ1-0426-SM-5H11A GTEX-13FHO-0426-SM-5L3F5 GTEX-WFG8-0826-SM-5CHQY GTEX-145LT-1626-SM-5O992 GTEX-13PL7-2226-SM-5L3IC GTEX-11P81-2126-SM-5HL6N GTEX-13W3W-0426-SM-5SI9D GTEX-11DYG-0008-SM-5QGR5 GTEX-12WSD-1626-SM-5GCNR GTEX-14C38-1226-SM-5S2UK GTEX-XBED-2426-SM-4AT4O GTEX-OXRL-1626-SM-2YUMU GTEX-13N1W-0626-SM-5MR4U GTEX-OIZG-1526-SM-2YUNG GTEX-R55C-1726-SM-3GADJ GTEX-13OW7-0011-R1b-SM-5L3HF GTEX-11ZTS-2626-SM-5EGIC GTEX-1477Z-2226-SM-5QGPG GTEX-11NSD-1126-SM-5N9BQ GTEX-13JUV-2026-SM-5K7UA GTEX-1313W-0126-SM-5LZUN GTEX-PWN1-0006-SM-2S1NG GTEX-12WSC-3126-SM-5GCNB GTEX-13FHP-1626-SM-5N9FK GTEX-13112-0011-R5b-SM-5DUV8 GTEX-11XUK-1726-SM-5GU61 GTEX-T6MN-0011-R6A-SM-32QP8 GTEX-13X6H-1726-SM-5Q5EH GTEX-14DAR-2126-SM-5RQID GTEX-NFK9-0126-SM-3LK5H GTEX-Y3I4-0926-SM-4TT2B GTEX-12584-0011-R6a-SM-5NQ7C GTEX-WVLH-2626-SM-4MVNV GTEX-ZZPU-2626-SM-5E45Y GTEX-13PDP-2926-SM-5N9E8 GTEX-ZT9W-0726-SM-4YCDC GTEX-11LCK-1426-SM-5HL5R GTEX-ZG7Y-1326-SM-4WWBL GTEX-OXRK-0426-SM-2YUMT GTEX-ZZPT-0226-SM-5E43X GTEX-13O1R-0426-SM-5K7WG GTEX-ZE9C-0011-R5a-SM-5EGLO GTEX-ZVZP-0008-SM-51MSX GTEX-WHSB-1026-SM-4M1XN GTEX-14BIN-2726-SM-5RQIE GTEX-11ZVC-2126-SM-5EGJ1 GTEX-ZTX8-1226-SM-4YCE9 GTEX-139UC-0011-R3b-SM-5K7VZ GTEX-12WSI-0826-SM-5EGKD GTEX-ZAK1-1826-SM-5HL93 GTEX-11P81-0726-SM-5PNYH GTEX-12WSL-1826-SM-5LZW9 GTEX-Y114-0002-SM-4TT78 GTEX-ZDYS-2126-SM-5S2OD GTEX-SE5C-2126-SM-4BRUJ GTEX-OXRO-1226-SM-48TDL GTEX-U412-0326-SM-5BC7E GTEX-111VG-0526-SM-5N9BW GTEX-X4XY-1626-SM-46MVN GTEX-12WSC-0011-R10a-SM-5GU57 GTEX-145ME-1326-SM-5O98Q GTEX-ZGAY-1126-SM-4WWBS GTEX-11DXY-2026-SM-5N9CZ GTEX-ZQUD-1726-SM-51MRQ GTEX-13O21-0326-SM-5J1N9 GTEX-ZAB4-2426-SM-5HL8A GTEX-ZP4G-2426-SM-57WEY GTEX-XBEW-0526-SM-4QASO GTEX-XQ8I-2026-SM-4BOOL GTEX-VJYA-0526-SM-4KL1R GTEX-ZPIC-2626-SM-57WE2 GTEX-YJ8O-2226-SM-5IFHW GTEX-13PVR-0126-SM-5S2PY GTEX-14BMU-1026-SM-5RQJ5 GTEX-OHPN-2826-SM-3LK67 GTEX-1192W-3026-SM-5GZZV GTEX-139T6-2026-SM-5IFFL GTEX-WRHK-0008-SM-4MVPA GTEX-13OW8-0226-SM-5K7UP GTEX-117XS-3126-SM-5GIDP GTEX-1192X-0005-SM-5NQC3 GTEX-139TT-0006-SM-5O9CG GTEX-QCQG-2126-SM-2S1P8 GTEX-14BIL-0326-SM-5SI9Q GTEX-14A5I-0326-SM-5NQ9J GTEX-ZVE2-0006-SM-51MRW GTEX-111YS-0626-SM-5GZXV GTEX-13PDP-0726-SM-5L3HP GTEX-Y114-1526-SM-4TT79 GTEX-X5EB-1026-SM-46MVU GTEX-XOTO-0011-R8A-SM-4B65J GTEX-11P81-0326-SM-5HL6B GTEX-ZA64-0326-SM-5HL8T GTEX-13OVG-1426-SM-5K7VP GTEX-Y3IK-1826-SM-4WWDS GTEX-WH7G-0002-SM-4LVN9 GTEX-11H98-0011-R10b-SM-5NQ98 GTEX-11P81-1126-SM-5GU5G GTEX-S4Z8-1226-SM-4AD6W GTEX-OHPJ-1626-SM-2HMKO GTEX-13O3O-0526-SM-5J1NL GTEX-Y5LM-1926-SM-5RQJH GTEX-ZDXO-0006-SM-4WKGF GTEX-YJ89-1526-SM-5P9IR GTEX-11OF3-0011-R7a-SM-57WCG GTEX-S32W-1226-SM-4AD67 GTEX-13FXS-1126-SM-5IJBB GTEX-14ASI-3026-SM-5S2PN GTEX-WH7G-2226-SM-3NMBN GTEX-Y9LG-0006-SM-4VBRK GTEX-ZVP2-0226-SM-57WBD GTEX-11VI4-2026-SM-5CVLJ GTEX-11TUW-2026-SM-5EQL8 GTEX-131XW-0326-SM-5KM1J GTEX-P4QS-0326-SM-2I3EU GTEX-NPJ8-2626-SM-26GMI GTEX-Y114-2026-SM-4TT7L GTEX-WFG8-0426-SM-3GILD GTEX-13X6I-1426-SM-5SI9Z GTEX-ZC5H-0626-SM-5LU9K GTEX-XOTO-0426-SM-4B66A GTEX-148VJ-2426-SM-5NQ9Y GTEX-11I78-2626-SM-5Q5AI GTEX-13OW8-0426-SM-5J2NR GTEX-13NYB-1826-SM-5J1N3 GTEX-11I78-2026-SM-5987C GTEX-13CIG-0011-R9a-SM-5K7VU GTEX-111FC-0526-SM-5GZZ8 GTEX-X4EO-0426-SM-4QASA GTEX-WWYW-0011-R1A-SM-3TW8G GTEX-X638-0226-SM-47JZ9 GTEX-NL4W-0011-R6a-SM-2I3GA GTEX-NPJ7-0011-R10A-SM-2I3E5 GTEX-13NYB-0011-R7a-SM-5MR5D GTEX-YJ89-1926-SM-5IFJ6 GTEX-RNOR-0326-SM-2TF51 GTEX-139T6-0006-SM-5LU92 GTEX-11DXX-1926-SM-5EGJK GTEX-13FLW-0011-R8b-SM-5J1MZ GTEX-QXCU-0126-SM-2TC5Q GTEX-Q2AG-0011-R8A-SM-2HMK5 GTEX-PW2O-1426-SM-48TCD GTEX-111CU-2226-SM-5N9G5 GTEX-XUW1-0005-SM-4BOQ7 GTEX-13X6K-0011-R3b-SM-5PNUD GTEX-WFON-0005-SM-3NMC9 GTEX-VJYA-1926-SM-3GIJJ GTEX-XAJ8-0826-SM-47JY6 GTEX-ZF29-1026-SM-4WKGC GTEX-ZAB5-2426-SM-5CVMW GTEX-1399U-0626-SM-5J1NZ GTEX-147F4-1326-SM-5LU9V GTEX-ZZ64-0826-SM-5E449 GTEX-111CU-1726-SM-5EGHM GTEX-13U4I-2226-SM-5LU5H GTEX-S7PM-0126-SM-4AD6S GTEX-RN64-1826-SM-48FDV GTEX-13OW6-2426-SM-5K7WO GTEX-144GO-0226-SM-5LUB1 GTEX-P4QS-1626-SM-2S1NH GTEX-O5YT-0226-SM-32PK5 GTEX-1128S-2326-SM-5GZZY GTEX-TMZS-0008-SM-47JWM GTEX-13X6H-0526-SM-5LU4Q GTEX-Y8DK-0005-SM-4RGNR GTEX-13OVH-0726-SM-5N9BU GTEX-U3ZH-1026-SM-4DXUZ GTEX-13FH7-1326-SM-5IFG8 GTEX-11WQK-2826-SM-5EQKH GTEX-14A5I-1026-SM-5Q5E3 GTEX-13PDP-0226-SM-5K7W9 GTEX-YJ8O-1226-SM-5P9JE GTEX-11P7K-2226-SM-5GU56 GTEX-X585-0011-R1B-SM-46MVE GTEX-12696-1426-SM-5EGJ6 GTEX-REY6-0526-SM-2TF5M GTEX-13N2G-0011-R5a-SM-5MR33 GTEX-WEY5-0008-SM-4LMKC GTEX-OXRP-0326-SM-33HBJ GTEX-YEC4-1026-SM-5P9FW GTEX-WWYW-0926-SM-3NB2Z GTEX-12WSK-0226-SM-5BC62 GTEX-14C5O-2826-SM-5RQI6 GTEX-ZP4G-0826-SM-4WWF3 GTEX-12WSI-0005-SM-5O99K GTEX-13NYS-0626-SM-5L3F1 GTEX-13OW8-1626-SM-5L3HW GTEX-13FLV-0326-SM-5N9DJ GTEX-ZYFD-1526-SM-5NQ7T GTEX-13G51-2526-SM-5LZYK GTEX-Y111-2626-SM-4TT24 GTEX-QV44-0826-SM-2S1RG GTEX-RVPU-0011-R6A-SM-2XCAC GTEX-PWN1-1526-SM-48TDA GTEX-111YS-1926-SM-5GICC GTEX-XLM4-2026-SM-4AT4X GTEX-ZAJG-2626-SM-5S2NU GTEX-13112-2826-SM-5DUWH GTEX-XUZC-1026-SM-4BOPY GTEX-XOTO-0006-SM-4B64T GTEX-ZG7Y-1826-SM-4WWD3 GTEX-S33H-1626-SM-4AD68 GTEX-13X6I-0011-R11a-SM-5P9HN GTEX-13S7M-3126-SM-5RQJQ GTEX-ZVT4-0326-SM-51MS5 GTEX-145MI-0826-SM-5SI95 GTEX-ZYFD-0326-SM-5NQ8I GTEX-R55C-1926-SM-2TF4K GTEX-11PRG-0005-SM-5NQ6X GTEX-13113-1726-SM-5GCOO GTEX-Y5LM-1626-SM-4VDTB GTEX-X5EB-2326-SM-46MW5 GTEX-Y8LW-1026-SM-5IFJY K-562-SM-4DM4W GTEX-S341-0526-SM-4AD5U GTEX-ZDXO-0011-R3a-SM-4WKFS GTEX-111FC-2926-SM-5GZY7 GTEX-117YW-0426-SM-5GZZZ GTEX-ZVZP-0006-SM-51MSW GTEX-ZUA1-2626-SM-5NQ92 GTEX-1122O-0826-SM-5GICV GTEX-13RTJ-0011-R3a-SM-5PNX7 GTEX-11EQ9-1726-SM-5HL6U GTEX-PVOW-0126-SM-2XCFA GTEX-139D8-2326-SM-5IFGE GTEX-139UC-0011-R4a-SM-5K7XM GTEX-XQ3S-1126-SM-4BOPK GTEX-1399S-1426-SM-5PNYQ GTEX-11P7K-0126-SM-5986E GTEX-1212Z-2826-SM-59HJ5 GTEX-Y114-1126-SM-4TT7V GTEX-14B4R-0006-SM-5O9A7 GTEX-X5EB-2426-SM-4E3HX GTEX-X261-0011-R8A-SM-4E3I5 GTEX-12126-0926-SM-5FQTW GTEX-11DXX-2126-SM-5PNYR GTEX-11PRG-0926-SM-5EGI8 GTEX-OXRN-1726-SM-3NM9B GTEX-13JUV-2326-SM-5IJCE GTEX-11ONC-1926-SM-5GU75 GTEX-113JC-0006-SM-5O997 GTEX-13X6K-0426-SM-5O9DZ GTEX-13PL7-0726-SM-5KM1S GTEX-13O21-1026-SM-5IJDU GTEX-13QJ3-1926-SM-5QGQM GTEX-ZPU1-0726-SM-5HL6O GTEX-Y8E4-2226-SM-5LU94 GTEX-X4XY-0926-SM-4E3JD GTEX-111YS-2426-SM-5GZZQ GTEX-PLZ6-0526-SM-3P61C GTEX-QCQG-0226-SM-48U28 GTEX-VUSH-0526-SM-3NB2J GTEX-X8HC-0008-SM-46MU6 GTEX-14ASI-0011-R8b-SM-5S2UB GTEX-X4LF-0002-SM-4QASG GTEX-14A5I-2826-SM-5SIBF GTEX-14E7W-1326-SM-5RQIV GTEX-12WSL-2626-SM-5GCNV GTEX-113JC-0126-SM-5EGJW GTEX-147F3-0726-SM-5NQ9U GTEX-12WSA-0011-R2a-SM-57WDK GTEX-U8T8-1126-SM-4DXUE GTEX-V1D1-0926-SM-4JBHQ GTEX-P78B-0826-SM-3NMCA GTEX-WFON-0326-SM-3GIKX GTEX-ZXES-1226-SM-5NQ8G GTEX-XQ3S-1426-SM-4BOPR GTEX-13VXT-1726-SM-5IFF5 GTEX-ZC5H-2626-SM-5J2MG GTEX-14E1K-0426-SM-5S2PF GTEX-POMQ-0126-SM-48TD6 GTEX-QXCU-1926-SM-48FE4 GTEX-12WS9-1526-SM-5FQT4 GTEX-13N2G-0526-SM-5MR5L GTEX-U8XE-2026-SM-3DB8S GTEX-13S86-1626-SM-5Q5C5 GTEX-139TT-0726-SM-5K7XW GTEX-14ICL-0326-SM-5S2OS GTEX-NPJ7-0011-R1a-SM-3GACT GTEX-12WSN-0226-SM-5DUXH GTEX-UPIC-0526-SM-4WWCQ GTEX-14A6H-2826-SM-5QGPM GTEX-13N2G-0011-R6b-SM-5MR3P GTEX-WQUQ-1826-SM-4OOSD GTEX-11TUW-3026-SM-5EGKM GTEX-NPJ8-1826-SM-2YUNC GTEX-1212Z-1026-SM-5EGJ8 GTEX-NPJ7-0011-R4a-SM-2I3GJ GTEX-X261-0526-SM-4PQYS GTEX-12ZZX-2126-SM-5LZVL GTEX-S3XE-2026-SM-3K2B5 GTEX-ZYFG-0226-SM-5GIDT GTEX-XYKS-2526-SM-4BOPX GTEX-NL3H-0011-R6a-SM-2I3G8 GTEX-13N2G-0226-SM-5K7VF GTEX-W5WG-1826-SM-4KL2Y GTEX-XUJ4-2626-SM-4BOQ3 GTEX-UJMC-1926-SM-3GADS GTEX-14753-2526-SM-5LU97 GTEX-11VI4-1226-SM-5EQMP GTEX-ZAB4-0626-SM-5CVN3 GTEX-ZAB4-0011-R10a-SM-4SOKH GTEX-R55E-2726-SM-48FCX GTEX-1192X-2326-SM-5987X GTEX-11GS4-0826-SM-5986J GTEX-QXCU-0008-SM-48FCH GTEX-13SLW-0011-R11a-SM-5SI8Q GTEX-13OW6-0826-SM-5L3GA GTEX-WHSB-0002-SM-4M1ZR GTEX-SNMC-1426-SM-2XCFM GTEX-X3Y1-1926-SM-4PQZO GTEX-XXEK-1626-SM-4BRUZ GTEX-139TS-1726-SM-5IJG5 GTEX-U412-1826-SM-4DXTJ GTEX-11DXY-0526-SM-5EGGQ GTEX-11WQK-3026-SM-5EQL6 GTEX-1399R-0226-SM-5IJGG GTEX-PVOW-0726-SM-2XCF5 GTEX-ZYT6-1426-SM-5E43U GTEX-13QBU-2226-SM-5K7WI GTEX-XUW1-1126-SM-4BONZ GTEX-11TTK-0226-SM-5N9EC GTEX-1117F-2426-SM-5EGGH GTEX-131XW-0011-R6b-SM-5K7XY GTEX-12696-0626-SM-5EGGD GTEX-13113-1326-SM-5GCOI GTEX-1122O-0526-SM-5N9DM GTEX-145LT-1726-SM-5QGP3 GTEX-ZYFD-2226-SM-5E43P GTEX-13X6H-1526-SM-5Q5E2 GTEX-Y3IK-2126-SM-4YCDS GTEX-13X6K-0326-SM-5Q5D6 GTEX-111FC-1426-SM-5N9C7 GTEX-N7MT-1126-SM-2YUNQ GTEX-SNOS-1626-SM-3NMA4 GTEX-WEY5-0626-SM-4LMIA GTEX-WYJK-0926-SM-4ONCF GTEX-1122O-2426-SM-5GIDN GTEX-WHSB-2126-SM-4M1XF GTEX-14E7W-1926-SM-5S2R9 GTEX-1477Z-1626-SM-5SIA8 GTEX-WL46-2926-SM-3LK82 GTEX-12BJ1-0326-SM-5FQUB GTEX-ZTTD-0008-SM-51MQV GTEX-13CF2-3226-SM-5IFF6 GTEX-14AS3-1526-SM-5Q5ED GTEX-1117F-0226-SM-5GZZ7 GTEX-W5X1-2626-SM-4LMI8 GTEX-14B4R-0426-SM-5Q5EI GTEX-V955-1126-SM-4JBH3 GTEX-13OVG-0426-SM-5KM2T GTEX-11LCK-0526-SM-5A5M9 GTEX-ZVT4-0008-SM-57WCA GTEX-YECK-2826-SM-5IFHF GTEX-OIZI-1326-SM-3NB1B GTEX-ZC5H-0008-SM-4WAX8 GTEX-ZDXO-2926-SM-4WKFM GTEX-OXRL-0426-SM-3NM97 GTEX-YEC3-2526-SM-5CVLS GTEX-11P7K-1226-SM-5HL4X GTEX-13112-2726-SM-5DUW5 GTEX-T6MO-0003-SM-3NMAG GTEX-ZTPG-2026-SM-5O999 GTEX-RVPU-0005-SM-2TF6L GTEX-1211K-2326-SM-5FQU7 GTEX-11P81-1026-SM-5GU54 GTEX-ZF28-2526-SM-57WFH GTEX-1399T-0011-R4b-SM-5DUVX GTEX-13S86-0126-SM-5S2PI GTEX-13U4I-1526-SM-5IFFF GTEX-12ZZW-0011-R7a-SM-5DUWC GTEX-13X6K-2726-SM-5O9DG GTEX-1122O-1126-SM-5NQ8X GTEX-QDT8-0626-SM-48TYW GTEX-139T6-1326-SM-5IFFO GTEX-PLZ6-0726-SM-3P619 GTEX-OOBJ-2026-SM-3NB1R GTEX-12BJ1-1926-SM-5HL9Z GTEX-11DXY-0006-SM-5NQ8N GTEX-14BIM-2726-SM-5Q5EG GTEX-RU72-1426-SM-46MUF GTEX-Y9LG-1426-SM-5IFJZ GTEX-13FTW-1626-SM-5KM4N GTEX-XQ8I-2426-SM-4WAXY GTEX-111FC-0426-SM-5N9CV GTEX-XXEK-1926-SM-4BRVD GTEX-13OVI-1326-SM-5IJBO GTEX-13OW8-2426-SM-5L3ID GTEX-1211K-0126-SM-59HJE GTEX-PLZ6-0626-SM-5K7WJ GTEX-R55F-0005-SM-2TF4W GTEX-1445S-0011-R2b-SM-5PNUH GTEX-139T8-0126-SM-5K7XZ GTEX-TMMY-2226-SM-4DXTN GTEX-11DXZ-0426-SM-5987Y GTEX-R55E-0011-R11A-SM-2TC6I GTEX-11DXZ-0006-SM-5LZZH GTEX-QMR6-1326-SM-32PLB GTEX-147F4-0011-R8b-SM-5S2UN GTEX-139TS-0011-R10a-SM-5K7TU GTEX-Y5V6-2326-SM-4VDSA GTEX-12WSB-0011-R7b-SM-5GU6V GTEX-13IVO-0011-R11b-SM-5LZXQ GTEX-13CF3-1026-SM-5LZWY GTEX-ZF28-0005-SM-4WKH3 GTEX-11DYG-1526-SM-5A5JS GTEX-Y3IK-0001-SM-4WWE1 GTEX-131XW-0726-SM-5EGK3 GTEX-1212Z-0011-R1b-SM-5BC72 GTEX-13VXT-0005-SM-5N9F3 GTEX-ZAB5-2626-SM-5KM3Y GTEX-111CU-1426-SM-5GZYP GTEX-Q2AG-0011-R2A-SM-2HMIT GTEX-SE5C-1126-SM-4BRWZ GTEX-YB5K-2426-SM-5IFHP GTEX-VUSG-2526-SM-4KL1V GTEX-QDT8-2526-SM-48TYX GTEX-11H98-0011-R5b-SM-57WCF GTEX-P4QT-0126-SM-2I3FL GTEX-POMQ-0006-SM-33HBY GTEX-1211K-1126-SM-5EGGB GTEX-ZV7C-2426-SM-5NQ7Q GTEX-ZTX8-0008-SM-4YCDV GTEX-SIU7-0001-SM-3NMAW GTEX-1445S-1226-SM-5O9BF GTEX-WFJO-1126-SM-4LVLZ GTEX-WY7C-0626-SM-4ONCT GTEX-11P7K-0826-SM-5BC5F GTEX-11OF3-2526-SM-5P9JL GTEX-11XUK-2226-SM-5CVLL GTEX-145LS-2726-SM-5Q5D8 GTEX-XQ8I-0006-SM-4BOQ5 GTEX-ZV68-0011-R7a-SM-51MT4 GTEX-X4XX-0726-SM-4QARS GTEX-Y8LW-2126-SM-4VBRX GTEX-12ZZY-0011-R10b-SM-5HL7W GTEX-ZZ64-0726-SM-5GZX4 GTEX-13S86-2326-SM-5RQK1 GTEX-14753-0326-SM-5QGQB GTEX-ZDXO-2326-SM-5LU9W GTEX-12WSK-2026-SM-5CVNB GTEX-1313W-0826-SM-5EQ4T GTEX-12WSC-0011-R5b-SM-5CVNS GTEX-OHPL-0526-SM-2HMIX GTEX-11GSO-2926-SM-5HL73 GTEX-117YW-1426-SM-5EGGO GTEX-SIU8-0226-SM-2XCDS GTEX-13O3O-0011-R10a-SM-5LUA9 GTEX-PLZ4-0226-SM-5SI7M GTEX-12WSF-0011-R1a-SM-5DUVI GTEX-QV31-1426-SM-2S1QD GTEX-13PVQ-1326-SM-5LU4J GTEX-132NY-1426-SM-5J1MJ GTEX-146FH-0826-SM-5SI8T GTEX-11ZTS-2326-SM-5EQMY GTEX-13X6J-1326-SM-5QGOV GTEX-139UC-3026-SM-5IJE4 GTEX-13U4I-1926-SM-5LU39 GTEX-N7MS-0007-SM-26GME GTEX-13OVJ-1026-SM-5IFGI GTEX-N7MS-0007-SM-26GMV GTEX-OXRK-1326-SM-3NB1A GTEX-TKQ1-0326-SM-4DXSM GTEX-WHWD-0726-SM-4OORX GTEX-13111-2326-SM-5LZUQ GTEX-Q2AI-1726-SM-2S1PZ GTEX-X4LF-0126-SM-4QAS7 GTEX-139TS-2826-SM-5J1OO GTEX-1497J-0126-SM-5Q5BK GTEX-QCQG-0006-SM-5SI8M GTEX-Q734-0826-SM-48U1G GTEX-12WSM-0011-R7b-SM-5EGLD GTEX-1269C-0826-SM-5N9EM GTEX-PLZ6-1526-SM-2S1OC GTEX-Y5LM-1426-SM-5RQJL GTEX-14E6D-0005-SM-5N9D7 GTEX-1314G-2026-SM-5LZUM GTEX-RNOR-0005-SM-2TF4Z GTEX-R55E-0126-SM-2TC5Y GTEX-139UC-3126-SM-5J1OY GTEX-P44H-0008-SM-48TDW GTEX-11WQC-0626-SM-5EQMF GTEX-ZT9W-1726-SM-51MS3 GTEX-11GSP-0011-R10a-SM-5NQ7J GTEX-YFC4-1426-SM-5IFJG GTEX-ZF28-0011-R8a-SM-4WWFW GTEX-RVPU-0011-R3A-SM-2XCAE GTEX-SUCS-1626-SM-32PLS GTEX-11VI4-1126-SM-5EQMD GTEX-QLQ7-0426-SM-4R1JU GTEX-139TU-1926-SM-5J2OC GTEX-RNOR-0011-R3A-SM-2TF5J GTEX-13OVJ-0011-R2b-SM-5L3GP GTEX-QMR6-0011-R5A-SM-32PKT GTEX-13VXT-0726-SM-5SIAD GTEX-11P82-1926-SM-5Q5AU GTEX-11I78-0626-SM-5A5LZ GTEX-XMD2-1026-SM-4WWE8 GTEX-145MO-1126-SM-5NQBX GTEX-X4EO-0326-SM-3P5YO GTEX-WHWD-0526-SM-4OORW GTEX-12C56-0006-SM-5N9E9 GTEX-T6MO-1426-SM-4DM73 GTEX-13111-1826-SM-5GCP1 GTEX-13113-0426-SM-5GCOD GTEX-S7SF-0426-SM-3K2B7 GTEX-14ABY-0626-SM-5Q5C9 GTEX-13CF3-0226-SM-5J1NW GTEX-O5YT-1726-SM-3NMD7 GTEX-ZVZO-0226-SM-5A5LA GTEX-12WSL-2726-SM-5CVNL GTEX-ZVP2-0426-SM-57WC2 GTEX-145MN-0726-SM-5NQBH GTEX-11WQC-0011-R11b-SM-57WD6 GTEX-11DXX-0326-SM-5PNWC GTEX-X8HC-1626-SM-46MWE GTEX-XXEK-0626-SM-4BRWE GTEX-11DXW-1026-SM-5H11K GTEX-ZE9C-0011-R2a-SM-4WKGH GTEX-13O1R-2326-SM-5IJF9 GTEX-132Q8-1826-SM-5EGIY GTEX-14BMU-2426-SM-5RQIJ GTEX-Y5V5-0006-SM-4V6FE GTEX-146FR-0526-SM-5Q5EX GTEX-14753-0011-R8b-SM-5S2U1 GTEX-ZDXO-0008-SM-4E3HR GTEX-Z93S-0005-SM-4RGLW GTEX-13FHP-3026-SM-5IJBS GTEX-13VXU-0011-R7b-SM-5SI72 GTEX-131XF-1926-SM-5DUW4 GTEX-145MN-1526-SM-5SI9T GTEX-ZU9S-1826-SM-5NQ9E GTEX-13VXU-0526-SM-5K7V1 GTEX-ZLFU-1426-SM-4WWEU GTEX-PWCY-2126-SM-48TEC GTEX-13O3O-1826-SM-5IFGW GTEX-12ZZX-0526-SM-5DUW6 GTEX-14DAR-1926-SM-5S2NQ GTEX-YFCO-1226-SM-5LUAT GTEX-133LE-2326-SM-5K7W3 GTEX-12WSE-0011-R7a-SM-5PNWF GTEX-OHPM-2626-SM-33HC5 GTEX-Q2AI-1426-SM-2S1P5 GTEX-12KS4-0926-SM-5BC5S GTEX-X4XY-0226-SM-4E3IZ GTEX-12WSG-0005-SM-5NQA2 GTEX-12WSM-0326-SM-5LZVI GTEX-ZDYS-0002-SM-4WKGR GTEX-147F4-1026-SM-5Q5F9 GTEX-X585-3026-SM-46MWF GTEX-W5X1-0226-SM-5CHTO GTEX-14C5O-0226-SM-5SI6O GTEX-1497J-2326-SM-5NQBK GTEX-WEY5-1026-SM-4LMK9 GTEX-12WSF-0011-R10a-SM-5LZVH GTEX-QCQG-0526-SM-48U2A GTEX-ZF2S-2526-SM-5CVNT GTEX-11WQK-0008-SM-5SI6T GTEX-131YS-2926-SM-5EGKI GTEX-13FTW-1326-SM-5LZZD GTEX-ZVT2-2026-SM-5NQ8Q GTEX-ZC5H-0526-SM-5HL9E GTEX-11PRG-0008-SM-5S2N5 GTEX-TMMY-0926-SM-4WKH4 GTEX-11TT1-2226-SM-5GU6B GTEX-13O21-1926-SM-5MR39 GTEX-14BMV-0326-SM-5RQHW GTEX-14C39-2626-SM-5S2QD GTEX-WYBS-1926-SM-3NM8N GTEX-WEY5-0726-SM-4LMID GTEX-ZYY3-0826-SM-5E44R GTEX-ZF2S-2326-SM-4WWCE GTEX-ZP4G-0926-SM-4WWF4 GTEX-WOFM-2126-SM-4OOSR GTEX-ZE9C-0011-R4a-SM-4WKH6 GTEX-117YW-1826-SM-5PNY5 GTEX-WFON-1226-SM-3TW8F GTEX-14BIN-0011-R11a-SM-5SI79 GTEX-12ZZX-2926-SM-5GCOQ GTEX-1399S-2126-SM-5J2MH GTEX-117YX-1426-SM-5H12H GTEX-WFJO-0926-SM-4LVM2 GTEX-11ONC-1126-SM-5GU6G GTEX-144GM-2226-SM-5O9B5 GTEX-WVJS-0126-SM-4MVOT GTEX-ZT9X-0526-SM-5GCOP GTEX-ZF29-1926-SM-5S2P1 GTEX-PWN1-1626-SM-2S1OL GTEX-13O3Q-0326-SM-5L3FE GTEX-145LV-2526-SM-5S2VA GTEX-1313W-0226-SM-5LZV7 GTEX-O5YV-0226-SM-48TBY GTEX-12WSD-1826-SM-5GCOA GTEX-13JVG-0226-SM-5J1MW GTEX-13FLV-0426-SM-5KLZA GTEX-113IC-0426-SM-5HL5O GTEX-YEC3-1226-SM-5IFI8 GTEX-11EQ9-1826-SM-5Q5AJ GTEX-Z93S-1326-SM-5CVMR GTEX-117YW-1926-SM-5H121 GTEX-QDVJ-0626-SM-48U1T GTEX-Y8DK-0011-R11A-SM-4SOK2 GTEX-139TT-2226-SM-5LZWO GTEX-144GO-2026-SM-5O99P GTEX-146FQ-1226-SM-5QGQ4 GTEX-12WSH-0226-SM-5GCOG GTEX-PLZ4-2726-SM-3P61A GTEX-ZEX8-2226-SM-57WC6 GTEX-QLQW-1526-SM-2S1QV GTEX-1399Q-2426-SM-5J2MO GTEX-XUZC-1126-SM-4BOPZ GTEX-YFCO-0826-SM-5LUAG GTEX-RNOR-1226-SM-48FDQ GTEX-XUJ4-0226-SM-4BOP8 GTEX-WFON-1026-SM-4LVMD GTEX-SE5C-1026-SM-4BRUG GTEX-1497J-0326-SM-5Q5CN GTEX-QV31-0126-SM-447BP GTEX-14A5H-0726-SM-5Q5DW GTEX-13113-1626-SM-5EQ4I GTEX-WZTO-2926-SM-3NM9I GTEX-11P82-0326-SM-5HL51 GTEX-WWYW-0011-R5A-SM-3NB3E GTEX-VJYA-0226-SM-4KL1Q GTEX-PWCY-1026-SM-48TD4 GTEX-XUZC-1326-SM-4BRV2 GTEX-ZYFC-0726-SM-5E448 GTEX-S32W-1526-SM-4AD6Z GTEX-SNMC-0426-SM-4DM5Y GTEX-WHSB-0326-SM-5GICB GTEX-117YW-0008-SM-5QGRD GTEX-13U4I-0426-SM-5LU4W GTEX-13CF3-0826-SM-5LZYZ GTEX-NPJ8-0007-SM-26GMW GTEX-12WSM-1326-SM-5GCP9 GTEX-13QJC-0011-R2b-SM-5PNUN GTEX-R55G-1026-SM-48FDI GTEX-13SLX-0011-R10a-SM-5P9HV GTEX-11GSP-2226-SM-5HL5Q GTEX-12BJ1-0826-SM-5EQ5P GTEX-147JS-2626-SM-5S2UX GTEX-12WSD-0626-SM-5GCMW GTEX-YFCO-0326-SM-4W1ZP GTEX-ZDYS-2026-SM-5HL5L GTEX-P4PP-0226-SM-2S1NN GTEX-NFK9-0726-SM-2HMJW GTEX-VUSG-2226-SM-4KKZO GTEX-YJ8A-1126-SM-5IFJU GTEX-U3ZM-0426-SM-59HKR GTEX-145MH-3126-SM-5S2QT GTEX-ZVT3-2626-SM-5GU5L GTEX-NPJ8-2026-SM-3TW91 GTEX-ZEX8-1426-SM-4WKHQ GTEX-OHPL-2526-SM-3MJGT GTEX-OHPJ-1326-SM-3MJHG GTEX-117YW-1526-SM-5EGGP GTEX-13W3W-2126-SM-5K7UX GTEX-RVPV-0011-R11A-SM-2TF6F GTEX-13VXT-0226-SM-5LU9Q GTEX-XBED-2026-SM-4AT5D GTEX-ZTTD-0001-SM-4YCD5 GTEX-WHSB-1226-SM-4M1XR GTEX-XBEC-0006-SM-4AT5T GTEX-117XS-0005-SM-5PNU6 GTEX-1211K-1226-SM-5EQ4N GTEX-V1D1-2026-SM-3GAF4 GTEX-ZQUD-1526-SM-51MRE GTEX-12WSH-0326-SM-5GCNH GTEX-ZYWO-0926-SM-5E43J GTEX-OHPL-1026-SM-3MJGI GTEX-WYBS-1626-SM-4ONCA GTEX-14H4A-1626-SM-5SI69 GTEX-ZG7Y-0006-SM-4WWEA GTEX-NFK9-1526-SM-3LK7B GTEX-ZVT3-2826-SM-5GU6A GTEX-12WSA-0011-R7b-SM-5GU5U GTEX-YEC3-1726-SM-5IFIK GTEX-Q734-0126-SM-48U1E GTEX-1269C-3126-SM-5EGI6 GTEX-11WQK-0011-R10a-SM-5BC6R GTEX-11DXW-0826-SM-5H118 GTEX-11LCK-1926-SM-5A5KE GTEX-11VI4-1626-SM-5EQKO GTEX-146FH-1126-SM-5NQAT GTEX-11ZUS-0726-SM-59886 GTEX-144GM-0926-SM-5O994 GTEX-11DXX-1626-SM-5H11H GTEX-11GSO-0226-SM-5A5LV GTEX-13111-0526-SM-5LZVF GTEX-146FR-0126-SM-5Q5F3 GTEX-11EQ9-1026-SM-5H134 GTEX-WOFM-1926-SM-4OOSP GTEX-OIZI-0126-SM-3NB13 GTEX-12BJ1-2626-SM-5FQUF GTEX-N7MS-0225-SM-4E3HO GTEX-ZZPU-0526-SM-5E44U GTEX-11ZVC-0126-SM-5986G GTEX-ZDTS-0001-SM-4WAXW GTEX-13OVJ-0011-R1b-SM-5L3I6 GTEX-13CF3-0626-SM-5J1NO GTEX-132QS-1826-SM-5IFFN GTEX-13FTW-0426-SM-5K7X2 GTEX-13O3P-1026-SM-5N9E7 GTEX-Y9LG-0126-SM-5Q59W GTEX-139TS-0011-R2b-SM-5J1MX GTEX-1192X-1526-SM-5H11I GTEX-PWN1-1426-SM-48TDF GTEX-131XE-1426-SM-5HL7V GTEX-XBEW-0002-SM-4AT5O GTEX-POMQ-2126-SM-2S1OJ GTEX-S4Q7-0226-SM-4AD5O GTEX-144GN-2326-SM-5LU4F GTEX-R55E-0826-SM-2TC5M GTEX-14DAR-1426-SM-5RQIR GTEX-XPVG-0626-SM-4B65B GTEX-1399S-0326-SM-5IFFS GTEX-11ZVC-2526-SM-5FQTE GTEX-WYJK-1626-SM-3NM9J GTEX-13PVR-0426-SM-5RQK2 GTEX-1339X-1126-SM-5J2OI GTEX-13QIC-1426-SM-5LU4V GTEX-RU72-0226-SM-46MUD GTEX-S32W-1326-SM-4AD5Q GTEX-X585-0226-SM-4QAS2 GTEX-ZTSS-0826-SM-5985L GTEX-13JVG-1326-SM-5N9F8 K-562-SM-5K7ZB GTEX-R55D-1026-SM-3GAEQ GTEX-1399S-0926-SM-5PNVQ GTEX-11OF3-0011-R6b-SM-57WBG GTEX-13FHO-0011-R3b-SM-5K7YA GTEX-13S7M-0005-SM-5NQ76 GTEX-RU72-0011-R5A-SM-2TF6U GTEX-14ICL-0006-SM-5SIAB GTEX-PWN1-0626-SM-48TDT GTEX-11P81-2526-SM-5GU6H GTEX-XOTO-0226-SM-4B66H K-562-SM-4YCCQ GTEX-1212Z-2726-SM-5EQ59 GTEX-YJ8O-1826-SM-5HL82 GTEX-132QS-1126-SM-5P9GC GTEX-13OVL-0011-R1a-SM-5L3H5 GTEX-ZVZP-2626-SM-51MR4 GTEX-1192X-2926-SM-5N9BA GTEX-ZQUD-0826-SM-57WDQ GTEX-ZC5H-1626-SM-5HL7L GTEX-U3ZM-0226-SM-4DXTA GTEX-ZYW4-0626-SM-59HJR GTEX-TML8-0005-SM-32QPA GTEX-Y3IK-2326-SM-4WWDT GTEX-X4XX-0011-R11A-SM-46MWQ GTEX-ZF28-0011-R5a-SM-4WWCZ GTEX-ZWKS-0626-SM-5GIDV GTEX-O5YV-0526-SM-26GMJ GTEX-QEG4-0426-SM-33HC3 GTEX-OHPM-2126-SM-3LK75 GTEX-ZAB5-1226-SM-5P9FY GTEX-14753-0726-SM-5QGQO GTEX-S341-1026-SM-4AD71 GTEX-NPJ7-0011-R9a-SM-2TC5R GTEX-NPJ7-0006-SM-3GACR GTEX-TKQ2-1326-SM-4DXT9 GTEX-11NUK-1326-SM-5P9GN GTEX-13OW6-0011-R10a-SM-5L3HE GTEX-XUJ4-2026-SM-4BOOW GTEX-ZYFG-0826-SM-5BC5T GTEX-T6MN-0011-R1A-SM-32QOY GTEX-RVPV-1226-SM-2TF73 GTEX-X4LF-1726-SM-3NMBZ GTEX-Y114-1426-SM-4TT6W GTEX-13PL6-0326-SM-5IJCP GTEX-Y5LM-0726-SM-4VBRP GTEX-14ABY-2126-SM-5QGQZ GTEX-YEC3-2526-SM-4YCDN GTEX-ZAJG-2926-SM-5HL8P GTEX-X4EP-1426-SM-4PQZP GTEX-13111-1326-SM-5GCNO GTEX-XUZC-0726-SM-4BOPH GTEX-S32W-1626-SM-4AD6G GTEX-PX3G-1026-SM-48TZW GTEX-SE5C-1526-SM-4BRWU GTEX-WFON-1926-SM-3LK7L GTEX-QXCU-0926-SM-48FEP GTEX-12KS4-0826-SM-5BC5R GTEX-ZTPG-0006-SM-4YCFG GTEX-RVPU-0011-R7A-SM-2XCAB GTEX-R55C-0226-SM-48FEO GTEX-11GSP-0011-R7b-SM-57WC3 GTEX-11UD2-0826-SM-5EQKS GTEX-12584-0126-SM-5EGKQ GTEX-YBZK-0426-SM-59HLM GTEX-XAJ8-0526-SM-47JYK GTEX-VUSG-2426-SM-4KKZG GTEX-146FH-0426-SM-5QGPS GTEX-UPJH-0626-SM-4IHJN GTEX-ZAJG-0826-SM-5PNVA GTEX-S95S-0002-SM-3NM8K GTEX-PLZ4-0126-SM-5SI8O GTEX-ZDYS-0226-SM-5HL4K GTEX-XBED-2526-SM-47JYD GTEX-12ZZX-0011-R6a-SM-5HL8L GTEX-11ILO-0008-SM-5QGR9 GTEX-ZF29-0626-SM-4WKHD GTEX-13O21-0926-SM-5IFGT GTEX-W5WG-0826-SM-4RGNE GTEX-NPJ7-0008-SM-4E3JS GTEX-QMRM-0126-SM-4R1K9 GTEX-13O61-0626-SM-5L3D1 GTEX-131XW-0011-R10a-SM-5DUVA GTEX-S341-0826-SM-4AD73 GTEX-ZYW4-1626-SM-5GIE6 GTEX-ZU9S-1926-SM-5NQBP GTEX-1192X-2726-SM-5N9DN GTEX-UTHO-0011-R6A-SM-3GIJW GTEX-NFK9-0326-SM-3MJGV GTEX-ZLWG-0726-SM-5S2NG GTEX-OOBK-1026-SM-48TC2 GTEX-WFG8-0826-SM-4LVN5 GTEX-WYVS-1926-SM-4SOIC GTEX-XUZC-0226-SM-4BOO7 GTEX-13VXU-3026-SM-5LU3K GTEX-Y114-2426-SM-4TT8A GTEX-131XF-2126-SM-5DUWS GTEX-13SLX-0326-SM-5Q5E4 GTEX-13W3W-1526-SM-5LU5I GTEX-P4PP-1726-SM-2S1NS GTEX-13113-0726-SM-5LZUF GTEX-ZT9W-1426-SM-4YCD2 GTEX-13CF2-0426-SM-5KM1H GTEX-WY7C-0326-SM-4OND5 GTEX-T2IS-0011-R2A-SM-32QPF GTEX-RWS6-2126-SM-2XCAV GTEX-12ZZZ-0626-SM-5DUXI GTEX-13NZA-1426-SM-5KM4Y GTEX-YB5K-0326-SM-5IFJQ GTEX-11DXW-0226-SM-5H122 GTEX-131XH-2926-SM-5LZU4 GTEX-RU72-0006-SM-2TF65 GTEX-117YX-0326-SM-5GICL GTEX-13VXT-0426-SM-5LU57 GTEX-11DYG-1326-SM-5N9DO GTEX-132QS-0005-SM-5LZXK GTEX-WHSB-0926-SM-4M1XJ GTEX-ZTX8-1126-SM-51MRM GTEX-145ME-0126-SM-5S2QM GTEX-13JUV-0226-SM-5IJCC GTEX-TSE9-1226-SM-4DXTM GTEX-139UC-0011-R5b-SM-5K7VY GTEX-13OW6-2726-SM-5J2OE GTEX-ZDTS-0926-SM-4WAXG GTEX-13113-0626-SM-5GCP2 GTEX-11GS4-2626-SM-5A5LD GTEX-X4EO-0926-SM-3P5Z2 GTEX-YJ89-0126-SM-4TT3X GTEX-QDT8-0011-R5A-SM-32PKN GTEX-13G51-0011-R10b-SM-5LZYF GTEX-111YS-1526-SM-5GZYW GTEX-131XG-1326-SM-5DUX4 GTEX-11EM3-1826-SM-5A5KO GTEX-WHSE-3126-SM-3P5ZI GTEX-11O72-1326-SM-5BC5A GTEX-13N2G-2626-SM-5J1OT GTEX-11NSD-0126-SM-5987F GTEX-11DXW-1126-SM-5H12Q GTEX-145LS-0011-R2a-SM-5PNZI GTEX-11NSD-2226-SM-5986V GTEX-13CF3-0926-SM-5LZZC GTEX-1212Z-2526-SM-5EGKP GTEX-QV44-1226-SM-4R1KE GTEX-UPK5-1626-SM-4JBHI GTEX-WL46-0011-R10A-SM-3MJFQ GTEX-W5WG-0006-SM-3GIJT GTEX-QLQW-0526-SM-4R1KS GTEX-132AR-0526-SM-5J2MJ GTEX-TML8-1526-SM-4DXUX GTEX-13PL6-1026-SM-5L3E5 GTEX-QMRM-0926-SM-447BR GTEX-R55D-1226-SM-48FE9 GTEX-XUJ4-0326-SM-4BOP9 GTEX-12WS9-0011-R6a-SM-5P9EW GTEX-Y8LW-0126-SM-4VBS1 GTEX-12ZZY-0126-SM-5LZV2 GTEX-ZDYS-0526-SM-5L3EE GTEX-ZEX8-0004-SM-4WKFQ GTEX-N7MT-1026-SM-3TW8T GTEX-13O3Q-0526-SM-5KM18 GTEX-13O3P-0626-SM-5L3D5 GTEX-ZLWG-2426-SM-57WG6 GTEX-ZPU1-0826-SM-57WG2 GTEX-13O61-1826-SM-5KM4I GTEX-ZYVF-0626-SM-5E43Q GTEX-ZYFC-0926-SM-5GZWW GTEX-YJ8A-0726-SM-5Q5A6 GTEX-14DAQ-1826-SM-5S2VV GTEX-WZTO-1726-SM-4PQYV GTEX-131XF-2026-SM-5DUWG GTEX-147GR-0011-R7a-SM-5S2RP GTEX-XBED-0226-SM-47JY8 GTEX-13PL6-3126-SM-5LUAR GTEX-12WSH-0011-R11a-SM-5LZVM GTEX-S4Q7-0726-SM-4AD5F GTEX-14BMU-1826-SM-5RQII GTEX-S4P3-1226-SM-4AD4Y GTEX-XBED-1426-SM-4AT4G GTEX-13SLX-0011-R2b-SM-5S2VP GTEX-13NZB-0826-SM-5K7X5 GTEX-WY7C-0526-SM-3NB3D GTEX-OXRL-0226-SM-3NB18 GTEX-13JVG-3026-SM-5IJEV GTEX-UJHI-1226-SM-4IHLR GTEX-S3XE-0526-SM-4AD4G GTEX-WHSE-0011-R4A-SM-3P5ZN GTEX-148VJ-2926-SM-5Q5DA GTEX-111VG-2226-SM-5N9DU GTEX-12C56-1226-SM-5FQSU GTEX-Y3I4-0008-SM-4TT21 GTEX-13QIC-1226-SM-5K7YR GTEX-V1D1-2626-SM-4JBJH GTEX-U8XE-1826-SM-4E3HV GTEX-13IVO-0726-SM-5LZYV GTEX-1212Z-0326-SM-5FQSJ GTEX-11NUK-2426-SM-5BC4U GTEX-145ME-0926-SM-5O9AR GTEX-ZEX8-2326-SM-5S2MN GTEX-13FHO-2726-SM-5K7VG GTEX-11EMC-1926-SM-5A5JU GTEX-XXEK-2026-SM-4BRVE GTEX-OHPM-0126-SM-2YUN9 GTEX-13U4I-0006-SM-5N9CI GTEX-YECK-1426-SM-5IFHE GTEX-YEC3-0002-SM-4W1YI GTEX-SUCS-0326-SM-32PLL GTEX-O5YW-1426-SM-3MJHF GTEX-PWCY-2026-SM-5Q5BF GTEX-Y5V5-0626-SM-4VBPX GTEX-ZVTK-0008-SM-57WDA GTEX-13QJ3-1026-SM-5QGQU GTEX-13SLX-1226-SM-5S2Q6 GTEX-12WSL-1026-SM-5CVNJ GTEX-12ZZW-0011-R3a-SM-5DUWW GTEX-YFC4-0126-SM-5CVLY GTEX-13X6K-0011-R2b-SM-5P9K3 GTEX-ZTPG-1526-SM-51MTF GTEX-ZYFD-0126-SM-5GIDL GTEX-147F4-0626-SM-5LUAK GTEX-YFC4-2926-SM-5IFJ8 GTEX-13X6I-0011-R10a-SM-5PNWI GTEX-ZEX8-0826-SM-4WKHK GTEX-131XF-2826-SM-5EGKH GTEX-14BIM-0011-R11b-SM-5S2RN GTEX-11EMC-2926-SM-5EQ4F GTEX-1122O-0003-SM-5Q5DL GTEX-SIU7-1826-SM-2XCE2 GTEX-RVPU-0008-SM-3NM8B GTEX-11ZTS-0326-SM-5EQKP GTEX-RM2N-0326-SM-48FD8 GTEX-11NSD-0926-SM-5N9DR GTEX-13N1W-0326-SM-5IJDJ GTEX-O5YT-0926-SM-48TDG GTEX-ZGAY-1326-SM-5S2NS GTEX-13VXU-2726-SM-5LU4N GTEX-YEC4-1726-SM-4W21E GTEX-13OW8-2326-SM-5L3I9 GTEX-R55F-0011-R8A-SM-2TF4F GTEX-13D11-0326-SM-5LZXX GTEX-11UD1-0011-R2b-SM-5BC6O GTEX-ZZPU-1226-SM-5N9CK GTEX-131XH-0126-SM-5LZUY GTEX-11DZ1-0926-SM-5EQ5R GTEX-11EM3-0926-SM-5A5KK GTEX-U4B1-0006-SM-3DB8E GTEX-147F4-0011-R6b-SM-5S2UP GTEX-13D11-1326-SM-5IJFY GTEX-12126-1126-SM-5P9GP GTEX-13FTW-1126-SM-5J2NV GTEX-WFG7-0926-SM-4LMK7 GTEX-XUZC-1426-SM-4BRV3 GTEX-WHPG-2426-SM-3NMBQ GTEX-RWS6-0326-SM-2XCAP GTEX-XUZC-0926-SM-4BOQF GTEX-OHPK-1726-SM-48TC4 GTEX-QEG4-0526-SM-48TZD GTEX-13NYB-0926-SM-5IFFA GTEX-12WSL-2126-SM-5GCNG GTEX-113IC-0526-SM-5HL76 GTEX-131XW-0626-SM-5PNVD GTEX-W5X1-0426-SM-3GILB GTEX-11ZTS-0005-SM-5NQ8A GTEX-145MF-1526-SM-5LU95 GTEX-X585-0011-R11B-SM-46MUZ GTEX-Z93S-1726-SM-5HL8G GTEX-OHPM-1426-SM-3TW8Y GTEX-11WQC-2726-SM-5CVLG GTEX-RWS6-0626-SM-2XCAS GTEX-13OVI-1026-SM-5L3EM GTEX-13SLX-3126-SM-5S2Q5 GTEX-13QJC-0726-SM-5RQJK GTEX-11WQK-0005-SM-5O9AV GTEX-YJ8A-1526-SM-5P9FT GTEX-11NV4-0011-R6a-SM-57WD5 GTEX-11DXZ-2226-SM-5EGH2 GTEX-13CZV-0011-R7b-SM-5LZXH GTEX-XYKS-1126-SM-4BRWP GTEX-ZE7O-1126-SM-57WC8 GTEX-YEC3-1326-SM-4WWEL GTEX-13W3W-0005-SM-5SI9Y GTEX-SUCS-0008-SM-4DM53 GTEX-145LU-0011-R10a-SM-5PNWJ GTEX-ZAB4-0011-R2a-SM-4RGNP GTEX-RM2N-0006-SM-2TF5H GTEX-Z93S-2426-SM-5HL8N GTEX-11VI4-0726-SM-5GU5B GTEX-13N2G-0726-SM-5MR38 GTEX-13113-0526-SM-5GCN2 GTEX-XGQ4-1726-SM-4RH4G GTEX-12WSB-2226-SM-5GCOS GTEX-QMRM-1426-SM-4R1K8 GTEX-ZZPU-1326-SM-5GZWS GTEX-12WSM-0226-SM-5LZV6 GTEX-U8XE-1726-SM-4E3IF GTEX-X585-0002-SM-46MVA GTEX-12696-1526-SM-5EGL6 GTEX-11GSP-1826-SM-5N9DQ GTEX-11O72-2926-SM-5BC4V GTEX-P4PQ-0326-SM-2HMJ8 GTEX-12WSH-0011-R10a-SM-5LZUS GTEX-13FXS-0011-R6b-SM-5L3F7 GTEX-1313W-0011-R4b-SM-5KLZV GTEX-1477Z-2826-SM-5SI9J GTEX-13OW7-0826-SM-5L3EL GTEX-Y8DK-0011-R6A-SM-4V6EG GTEX-ZYW4-2126-SM-59HJ9 GTEX-P4PP-1626-SM-2HMJF GTEX-ZU9S-0226-SM-5E441 GTEX-11P7K-1826-SM-5HL5A GTEX-13113-2026-SM-5LZU3 GTEX-X5EB-0526-SM-46MVP GTEX-11DXY-1626-SM-5H12L GTEX-ZF29-1626-SM-4WKFJ GTEX-11O72-2726-SM-5HL6K GTEX-13FTW-1526-SM-5LZXC GTEX-R55E-0011-R7A-SM-2TC5Z GTEX-11O72-0326-SM-5986D GTEX-13VXT-0126-SM-5LU4I GTEX-14C38-0826-SM-5S2U8 GTEX-11P82-0826-SM-5P9GU GTEX-11EMC-0006-SM-5O9DN GTEX-OXRK-0426-SM-3NB2E GTEX-13FTW-0626-SM-5IFEX GTEX-131YS-0011-R1a-SM-5DUXC GTEX-QESD-0826-SM-47J4G GTEX-WFON-2226-SM-3TW8W GTEX-13RTK-1826-SM-5S2P3 GTEX-YF7O-1326-SM-4W1ZR GTEX-OIZI-0005-SM-2XCED GTEX-13OW6-0011-R7b-SM-5L3H4 GTEX-R55E-0006-SM-2TC5G GTEX-V955-1826-SM-4JBIL GTEX-14BMU-1126-SM-5RQJ8 GTEX-13OVG-0326-SM-5KM57 GTEX-ZVT3-3026-SM-5E43N GTEX-ZYW4-2226-SM-5GZYG GTEX-PW2O-1926-SM-2S1OB GTEX-131YS-1426-SM-5IJF7 GTEX-Q2AH-1126-SM-48TZM GTEX-11OC5-0004-SM-5S2O6 GTEX-X4XY-0006-SM-46MV2 GTEX-P4PQ-1526-SM-3NMCK GTEX-11TUW-2726-SM-5EQLC GTEX-13X6J-0011-R10b-SM-5PNWA GTEX-PX3G-1626-SM-2S1PT GTEX-11TTK-0126-SM-5987B GTEX-11I78-0008-SM-5Q5DI GTEX-ZAB4-2126-SM-5HL8U GTEX-R55D-0006-SM-3GIJS GTEX-QMRM-1526-SM-4R1K6 GTEX-11GSP-3126-SM-5A5LL GTEX-13FH7-1526-SM-5J2N6 GTEX-11EM3-0005-SM-5N9DK GTEX-Y8E5-0526-SM-57WBY GTEX-13PL6-0011-R5b-SM-5O9BI GTEX-11WQC-0011-R8b-SM-57WCH GTEX-YB5E-2426-SM-5IFIV GTEX-P4PQ-1626-SM-2HMKK GTEX-13OVJ-0011-R4b-SM-5P9H5 GTEX-XBEC-0626-SM-4QARY GTEX-R55C-0726-SM-48FCN GTEX-14753-0126-SM-5S2TX GTEX-U3ZH-0002-SM-3NMDD GTEX-13PL7-1026-SM-5MR5C GTEX-13RTJ-0011-R2a-SM-5PNW9 GTEX-SE5C-0008-SM-4B64J GTEX-13N11-0726-SM-5L3DP GTEX-OHPM-0226-SM-3LK61 GTEX-11O72-3026-SM-5986R GTEX-X4EP-3226-SM-3P5YR GTEX-13FLW-0011-R7b-SM-5L3EZ GTEX-XMD1-0011-R1A-SM-4AT4C GTEX-TKQ1-0626-SM-4DXTS GTEX-Q734-2226-SM-3GAD9 GTEX-S7PM-0011-R6A-SM-3NM8F GTEX-ZLV1-1426-SM-4WWES GTEX-N7MS-2326-SM-2HMLD GTEX-113IC-0226-SM-5HL5C GTEX-P4PP-0626-SM-3NM9X GTEX-ZTSS-0005-SM-4YCDR GTEX-SSA3-0226-SM-32QPN GTEX-11ZTS-0008-SM-5S2VC GTEX-QDVN-2026-SM-3GAEP GTEX-YECK-0005-SM-4W217 GTEX-139UW-0011-R11a-SM-5IJGN GTEX-RN64-1026-SM-48FDX GTEX-13W46-1226-SM-5SIAS GTEX-13PL6-2926-SM-5L3I2 GTEX-13QBU-0826-SM-5IJBU GTEX-QVJO-0006-SM-2S1RC GTEX-Y3I4-1626-SM-4TT7W GTEX-132Q8-0006-SM-5NQA4 GTEX-139T6-1026-SM-5IJGC GTEX-11ILO-0726-SM-5HL5I GTEX-Q734-1026-SM-48U16 GTEX-Y114-2526-SM-4TT8M GTEX-145LS-1226-SM-5Q5D9 GTEX-ZF2S-2026-SM-5E461 GTEX-1269C-2526-SM-5EGJ3 GTEX-1313W-3026-SM-5LZUZ GTEX-133LE-1426-SM-5IFH1 GTEX-ZDYS-0426-SM-5IJEQ GTEX-139UC-3226-SM-5N9EZ GTEX-WL46-3026-SM-3LK7Z GTEX-13OVH-1026-SM-5J2NP GTEX-11DXY-0826-SM-5EGGR GTEX-YEC4-1226-SM-5CVLX GTEX-X585-1826-SM-4QAS3 GTEX-QDT8-0426-SM-32PKZ GTEX-11ILO-0226-SM-5N9D3 GTEX-ZYW4-0126-SM-5E44A GTEX-13PLJ-0005-SM-5NQ99 GTEX-ZZPU-0126-SM-5E446 GTEX-WXYG-0226-SM-3NB2Y GTEX-X15G-2126-SM-4PQZR GTEX-WL46-0011-R9A-SM-3MJFP GTEX-13FH7-0826-SM-5J2NW GTEX-144GN-1226-SM-5O991 GTEX-11VI4-0326-SM-5EQ6L GTEX-14ICL-0426-SM-5RQJ3 GTEX-11ZU8-0011-R4a-SM-5BC6Y GTEX-NL3H-0011-R3a-SM-2I3GL GTEX-N7MT-0011-R1a-SM-5SI7S GTEX-12WSK-0926-SM-5CVNQ GTEX-131XE-1526-SM-5KM1A GTEX-WHSB-0226-SM-4M1XE GTEX-13X6H-1326-SM-5LU42 GTEX-13N1W-0011-R6a-SM-5MR43 GTEX-13FLV-0011-R3b-SM-5LZYP GTEX-X4XY-0326-SM-46MVZ GTEX-ZDTS-2726-SM-5L3E2 GTEX-T5JC-0011-R6A-SM-5SI89 GTEX-13O21-2926-SM-5J1OU GTEX-NPJ8-0011-R8a-SM-2HMLG GTEX-1445S-0011-R10a-SM-5PNWB GTEX-145ME-0826-SM-5O9AF GTEX-PWO3-1526-SM-48TCM GTEX-UJMC-1226-SM-4IHLI GTEX-WFG8-2426-SM-3GILL GTEX-X4XY-1526-SM-4QASE GTEX-WFJO-0826-SM-4LVM5 GTEX-T2IS-2926-SM-32QPO GTEX-NPJ8-1626-SM-2HMIY GTEX-QESD-1426-SM-2S1R9 GTEX-PLZ6-0826-SM-3P61K GTEX-13FTY-0526-SM-5L3EV GTEX-131XW-0011-R11a-SM-5DUV9 GTEX-RNOR-0008-SM-48FEY GTEX-Y5V6-0226-SM-4V6G7 GTEX-QDVN-1926-SM-48TZ8 GTEX-111YS-2326-SM-5987L GTEX-131XG-2526-SM-5HL7F GTEX-13RTJ-2226-SM-5S2Q1 GTEX-S7PM-0526-SM-3NM92 GTEX-SIU7-1626-SM-4BRUK GTEX-PWOO-1726-SM-48TDC GTEX-TKQ2-0926-SM-4DXU5 GTEX-OOBJ-0826-SM-3NB2K GTEX-11P82-0926-SM-5986X GTEX-R55G-0226-SM-48FEI GTEX-132AR-1826-SM-5EGHR GTEX-ZPU1-0926-SM-57WDO GTEX-WYVS-1326-SM-4ONCQ GTEX-14BIN-0926-SM-5S2OZ GTEX-14E6E-2226-SM-5SI6F GTEX-144GN-0426-SM-5O9AP GTEX-ZP4G-1726-SM-4WWCM GTEX-P78B-1326-SM-3P611 GTEX-XV7Q-1126-SM-4BRVS GTEX-11EMC-0826-SM-59862 GTEX-12WSM-1826-SM-5BC64 GTEX-ZYVF-1626-SM-5N9EH GTEX-YEC3-2426-SM-5IFJR GTEX-QVJO-1325-SM-2S1QX GTEX-XMD1-0011-R3B-SM-4AT5R GTEX-YBZK-0008-SM-59HL6 GTEX-1212Z-0006-SM-5NQ8M GTEX-11ZUS-1326-SM-5FQUC GTEX-13OVI-2126-SM-5KM3U GTEX-ZE7O-0011-R10a-SM-57WAZ GTEX-S4UY-1326-SM-4AD4X GTEX-11LCK-0326-SM-5A5M7 GTEX-PVOW-0426-SM-5N9DW GTEX-Y114-0726-SM-4TT6U GTEX-11P81-2226-SM-5PNYI GTEX-11DXW-0626-SM-5N9ER GTEX-Y111-1926-SM-4SOIS GTEX-11I78-1126-SM-5A5K5 GTEX-U8XE-0826-SM-4E3J1 GTEX-WEY5-0326-SM-4LMI7 GTEX-ZF28-1426-SM-5S2OG GTEX-O5YT-1326-SM-3MJGR GTEX-XV7Q-2226-SM-4BRVY GTEX-OXRL-0526-SM-2I3EZ GTEX-TKQ1-0426-SM-4DXT4 GTEX-13G51-3026-SM-5IJB8 GTEX-WHWD-0008-SM-4OOSU GTEX-W5X1-0008-SM-4LMKA GTEX-ZG7Y-1126-SM-4WWEZ GTEX-13FHP-0011-R11b-SM-5LZXP GTEX-WZTO-0006-SM-3NM9T GTEX-QLQ7-1526-SM-2S1QA GTEX-VUSG-1426-SM-3GIJN GTEX-131XE-1926-SM-5IFER GTEX-13N11-2726-SM-5L3ER GTEX-11LCK-0005-SM-5O98U K-562-SM-4KKZ9 GTEX-WWYW-0011-R11A-SM-3NB38 GTEX-XUJ4-0626-SM-4BOOO GTEX-Q2AI-0426-SM-48U13 GTEX-ZYW4-0226-SM-5E44M GTEX-OOBJ-0006-SM-2I3F4 GTEX-POYW-0008-SM-48TE4 GTEX-14ABY-0011-R5b-SM-5SI7B GTEX-12696-1926-SM-5EGJT GTEX-ZTX8-0002-SM-4YCEU GTEX-13FHO-0826-SM-5L3E8 GTEX-1192X-0326-SM-5H11U GTEX-WY7C-1126-SM-3NB3A GTEX-XPVG-2726-SM-4B66W GTEX-T2IS-2026-SM-4DM6W GTEX-ZTPG-0426-SM-5O98K GTEX-14753-1726-SM-5NQ9X GTEX-ZXG5-0011-R6a-SM-57WBZ GTEX-X4EP-3026-SM-3P5YP GTEX-RU1J-0526-SM-46MUT GTEX-QEG5-1226-SM-447AR GTEX-RN64-0726-SM-48FCV GTEX-WVJS-0226-SM-4MVOU GTEX-139T4-0008-SM-5S2WF GTEX-XUZC-0005-SM-4BOQ8 GTEX-13QJ3-0226-SM-5S2PU GTEX-Y3IK-2526-SM-4WWDM GTEX-RUSQ-1826-SM-2TF6E GTEX-11EM3-1226-SM-5N9DD GTEX-13OW7-0011-R8b-SM-5L3HR GTEX-Q2AG-3026-SM-48U1L GTEX-14A5H-0826-SM-5QGPJ GTEX-TMMY-1926-SM-4DXUU GTEX-11GSO-0005-SM-5O9CA GTEX-OXRO-1726-SM-3LK6C GTEX-13RTJ-0011-R8b-SM-5O9DL GTEX-145MO-0826-SM-5NQBL GTEX-11WQC-2326-SM-5EQKE GTEX-13NZB-0226-SM-5KM1T GTEX-12ZZZ-0011-R4b-SM-5DUV7 GTEX-145LT-1826-SM-5QGP4 GTEX-ZVTK-0526-SM-5GZWT GTEX-13CZV-0011-R3a-SM-5KM27 GTEX-ZAK1-1126-SM-5PNXU GTEX-11ZTS-1026-SM-5LU8O GTEX-Q2AH-0226-SM-48U1I GTEX-11DZ1-2726-SM-5A5KH GTEX-148VJ-1526-SM-5Q5DU GTEX-145MF-2626-SM-5O98S GTEX-OHPK-1826-SM-2YUMR GTEX-QDVN-1226-SM-48TZ5 GTEX-13D11-2326-SM-5IJCY GTEX-XXEK-2426-SM-4BRUS GTEX-N7MS-0011-R11A-SM-2HMJS GTEX-13PVQ-1426-SM-5J1O4 GTEX-Y9LG-0008-SM-4VBRJ GTEX-ZAK1-0726-SM-5HL8Q GTEX-148VJ-1126-SM-5NQBZ GTEX-WK11-0008-SM-4OOSX GTEX-V1D1-0326-SM-4JBIY GTEX-11ZTT-1826-SM-5CVLN GTEX-145MF-0426-SM-5LU9T GTEX-ZE9C-0726-SM-4WKGA GTEX-12WSE-0011-R10b-SM-5P9JV GTEX-OHPM-1826-SM-2YUNF GTEX-QESD-0226-SM-447BH GTEX-ZVT2-2526-SM-51MT1 GTEX-1313W-3226-SM-5LZUU GTEX-12ZZX-3026-SM-5GCP3 GTEX-ZVT2-0826-SM-5GIEO GTEX-12696-0526-SM-5EQ3Z GTEX-Y5V6-2626-SM-5IFIX GTEX-11NSD-1026-SM-5N9BE GTEX-146FR-1026-SM-5NQ9T GTEX-145MN-1926-SM-5SIAI GTEX-T5JW-0326-SM-4DM6J GTEX-13SLW-0011-R5b-SM-5SI6Z K-562-SM-3P61Y GTEX-14753-0011-R10b-SM-5S2WE GTEX-13OVI-1426-SM-5L3EY GTEX-14AS3-0626-SM-5QGQD GTEX-YF7O-2026-SM-4W1YE GTEX-Q2AI-0008-SM-48U2H GTEX-ZV6S-1426-SM-59HKX GTEX-13OW5-0011-R1b-SM-5L3GE GTEX-111VG-2426-SM-5GZXD GTEX-YEC3-1326-SM-5PNXV GTEX-PWOO-0008-SM-48TDU GTEX-QDVN-2126-SM-5SI7X GTEX-Y111-0926-SM-4SOIU GTEX-13OVJ-1326-SM-5K7Z9 GTEX-S95S-0426-SM-4B64I GTEX-1211K-1026-SM-5EQ4B GTEX-Q2AH-2026-SM-2S1PX GTEX-REY6-0326-SM-2TF5A GTEX-132Q8-1426-SM-5EGK7 GTEX-ZVZP-2726-SM-5GZXZ GTEX-12C56-2026-SM-5FQSI GTEX-X8HC-1426-SM-46MWC GTEX-ZYY3-0626-SM-5NQ6W K-562-SM-48U2C GTEX-ZXG5-0005-SM-57WCN GTEX-R3RS-1326-SM-48FE7 GTEX-117YX-1926-SM-5GIEC GTEX-11P82-0008-SM-5S2MS GTEX-14ABY-0011-R4b-SM-5S2VN GTEX-WRHU-0226-SM-3MJFV GTEX-ZEX8-0426-SM-4WWEN GTEX-11NSD-1426-SM-5HL67 GTEX-13W3W-1326-SM-5LU4T GTEX-S341-0626-SM-4AD5T GTEX-14C38-1526-SM-5RQJ7 GTEX-O5YV-0526-SM-26GN1 GTEX-WOFL-0008-SM-4OOSZ GTEX-1211K-1926-SM-5EQLB GTEX-ZXES-0726-SM-5E451 GTEX-WYJK-2326-SM-4ONDN GTEX-OOBJ-0326-SM-5SI84 GTEX-Y3IK-0126-SM-4WWE9 GTEX-13OW5-0011-R8a-SM-5L3GQ GTEX-12ZZY-1126-SM-5DUWQ GTEX-ZYY3-1926-SM-5GZXS GTEX-NL3H-0011-R10A-SM-2I3E9 GTEX-11EQ9-2326-SM-5HL5H GTEX-XGQ4-0626-SM-4AT56 GTEX-X8HC-0726-SM-46MWG GTEX-14E6E-0726-SM-5S2R3 GTEX-WH7G-0826-SM-4LVMR GTEX-14E1K-0926-SM-5S2U4 GTEX-132AR-1526-SM-5KM1L GTEX-131YS-0526-SM-5EGKJ GTEX-X15G-0005-SM-3NMDA GTEX-13OVL-1426-SM-5IJC1 GTEX-111FC-2526-SM-5GZXU GTEX-WY7C-1326-SM-4ONCX GTEX-ZY6K-0226-SM-5SIAY GTEX-ZUA1-0005-SM-4YCEV GTEX-ZC5H-2326-SM-4WAYT GTEX-1399T-2826-SM-5KLYZ GTEX-13O21-1826-SM-5MR5M GTEX-145LU-2626-SM-5LU9Z GTEX-YEC3-0526-SM-4YCF2 GTEX-WH7G-0426-SM-3NMBJ GTEX-Y8E4-1126-SM-5IFIA GTEX-WHSE-0011-R6A-SM-3P5ZP GTEX-145MN-2226-SM-5SIAU GTEX-NPJ8-0011-R5a-SM-2HMJY GTEX-13OW6-0011-R8a-SM-5L3GF GTEX-U4B1-1226-SM-4DXT7 GTEX-O5YW-0008-SM-4E3IE GTEX-QMRM-0008-SM-447B1 GTEX-XXEK-0426-SM-4BRVW GTEX-13D11-1126-SM-5KLYS GTEX-11DYG-0006-SM-5NQB2 GTEX-N7MS-0526-SM-4E3JP GTEX-ZDXO-0011-R7a-SM-4WWCU GTEX-U3ZN-1126-SM-4DXUL GTEX-NPJ8-0011-R11A-SM-2YUMS GTEX-ZF29-1326-SM-4WWB6 GTEX-YB5E-0726-SM-4VDSH GTEX-U8XE-0426-SM-3DB91 GTEX-139TS-0011-R6a-SM-5J2OB GTEX-QESD-1526-SM-2S1QT GTEX-XV7Q-1426-SM-4BRWA GTEX-13NZB-2626-SM-5J2M7 GTEX-RWSA-1326-SM-47JX9 GTEX-ZGAY-1226-SM-4YCF4 GTEX-Y114-0126-SM-4TT8K GTEX-ZV68-0526-SM-59HKI GTEX-13OVL-0226-SM-5L3E9 GTEX-11ZTS-1126-SM-5LU9X GTEX-REY6-2126-SM-48FD9 GTEX-131XW-0011-R9a-SM-5N9EO GTEX-YF7O-2426-SM-5IFJL GTEX-YEC3-2026-SM-4WWFL GTEX-145LU-0011-R1a-SM-5Q5CE GTEX-WYJK-1026-SM-3NM8W GTEX-13QBU-0626-SM-5J2OG GTEX-YEC3-1426-SM-5PNXW GTEX-WFON-0626-SM-4LVLX GTEX-WHSB-0008-SM-4M1ZP GTEX-WYBS-1226-SM-3NM9N GTEX-13OW7-0626-SM-5K7UD GTEX-XQ8I-0826-SM-4BOOE GTEX-145LS-0011-R4b-SM-5S2UT GTEX-XPT6-0326-SM-4B66V GTEX-ZF28-0011-R10a-SM-4WWEH GTEX-PSDG-0826-SM-48TCZ GTEX-XYKS-0926-SM-4BRVG GTEX-132Q8-0626-SM-5L3F3 GTEX-11GS4-2126-SM-5A5KR GTEX-14C38-2626-SM-5RQI4 GTEX-13N2G-0126-SM-5N9DV GTEX-ZDYS-1926-SM-5HL59 GTEX-XXEK-0005-SM-4BRWJ GTEX-TSE9-2726-SM-4DXSQ GTEX-PWCY-0226-SM-48TD8 GTEX-Y3IK-1426-SM-4YCES GTEX-12WSN-0726-SM-5GCMS GTEX-12WSB-0006-SM-5O998 GTEX-139T6-1726-SM-5PNZ3 GTEX-ZVT4-1026-SM-57WC4 GTEX-13NYB-0426-SM-5IJDD GTEX-11NUK-0826-SM-5HL4U GTEX-VUSG-2626-SM-4KKZI GTEX-ZF29-1226-SM-4WKH1 GTEX-WL46-0426-SM-3TW8J GTEX-13N11-2526-SM-5K7UE GTEX-144GO-0011-R1a-SM-5PNWO GTEX-S4Q7-1026-SM-4AD75 GTEX-P44H-1126-SM-48TBU GTEX-ZYT6-2826-SM-5GICX GTEX-ZLFU-0926-SM-5P9F8 GTEX-U412-0006-SM-3DB8J GTEX-QLQ7-0005-SM-2S1QP GTEX-V1D1-2226-SM-3NMAX GTEX-1399Q-2326-SM-5KM2X GTEX-NPJ8-0011-R7a-SM-2HMJV GTEX-146FH-0326-SM-5QGPT GTEX-PLZ5-1826-SM-3NB22 GTEX-ZYFG-2026-SM-5E43Y GTEX-YJ8O-0826-SM-5CVM3 GTEX-13NZ8-0226-SM-5J2OK GTEX-ZYFG-2526-SM-5GIEK GTEX-X4EP-0011-R10B-SM-4QASJ GTEX-ZP4G-2226-SM-57WFB GTEX-NPJ8-0011-R9a-SM-2YUN5 GTEX-ZQUD-1026-SM-4YCEZ GTEX-14ICL-1826-SM-5RQIY GTEX-ZVZQ-2626-SM-59HLB GTEX-11NSD-0005-SM-5LZZ5 GTEX-13W3W-1126-SM-5L3DO K-562-SM-5P9HH GTEX-ZYWO-1326-SM-5SI8X GTEX-ZPU1-1226-SM-5HL71 GTEX-WFJO-0626-SM-4LVMC GTEX-11ILO-0526-SM-5N9DF GTEX-QV31-0226-SM-447BO GTEX-UPK5-2126-SM-4JBJK GTEX-R53T-1226-SM-48FCT GTEX-1212Z-2126-SM-5FQTM GTEX-11ONC-1426-SM-5N9F4 GTEX-SE5C-0626-SM-4IHLJ GTEX-13S86-0005-SM-5NQ7I GTEX-WFG7-1026-SM-4LMK8 GTEX-145MH-0011-R11a-SM-5P9HQ GTEX-ZF29-1526-SM-4WKF7 GTEX-OXRP-0226-SM-3NB14 GTEX-QVUS-0011-R6A-SM-3GACX GTEX-QLQ7-0926-SM-447BC GTEX-139T6-0726-SM-5PNVK GTEX-ZT9W-2126-SM-51MSF GTEX-WVLH-0011-R7A-SM-3MJFB GTEX-VJYA-0126-SM-4KL1P GTEX-144GL-0011-R4a-SM-5PNUI GTEX-1445S-0011-R3a-SM-5P9HY GTEX-T2IS-0426-SM-32QPE GTEX-SE5C-0006-SM-4BRW5 GTEX-PWOO-1026-SM-48TCN GTEX-ZPU1-1726-SM-4WWFV GTEX-SUCS-0526-SM-4DM56 GTEX-14ABY-0011-R11a-SM-5SI7C GTEX-ZC5H-0126-SM-4WAYL GTEX-P78B-0726-SM-2S1O2 GTEX-ZF29-0126-SM-4WKGZ GTEX-ZY6K-1626-SM-5GZWV GTEX-11ZUS-1226-SM-5FQU8 GTEX-13OW6-0011-R4a-SM-5O9DX GTEX-ZVT3-0011-R8b-SM-57WDJ GTEX-S4P3-0626-SM-4AD59 GTEX-ZPIC-1726-SM-57WF2 GTEX-Y5V5-0326-SM-5RQJG GTEX-YB5K-0126-SM-5IFJ2 GTEX-R53T-0226-SM-48FEH GTEX-QVJO-0011-R4A-SM-2S1QL GTEX-113JC-1926-SM-5N9GE GTEX-ZDTS-1826-SM-5S2N6 GTEX-S32W-0926-SM-4AD5X GTEX-1399S-0526-SM-5IJG8 GTEX-TML8-1126-SM-4DXSS GTEX-X4EP-0011-R5A-SM-3P628 GTEX-ZV6S-0008-SM-4YCF9 GTEX-OIZH-0526-SM-2HMKV GTEX-RU72-3126-SM-46MUB GTEX-XAJ8-0426-SM-47JYJ GTEX-131YS-0005-SM-5NQAS GTEX-WVLH-0011-R2A-SM-3MJFJ GTEX-13O3O-0011-R4b-SM-5KM3F GTEX-11DXW-1226-SM-5H133 GTEX-T5JC-0726-SM-4DM55 GTEX-X4LF-0008-SM-4QAST GTEX-QV31-1526-SM-2S1QB GTEX-U8XE-0526-SM-3DB8R GTEX-S33H-2426-SM-2XCB2 GTEX-113JC-0926-SM-5H114 GTEX-11P7K-1626-SM-5GU63 GTEX-11OC5-0126-SM-5HL6A GTEX-QVJO-0226-SM-2S1R2 GTEX-13OVJ-0011-R11a-SM-5P9H8 GTEX-13OVJ-1226-SM-5L3HA GTEX-QDVN-2426-SM-2S1Q4 GTEX-XYKS-2126-SM-4E3IB GTEX-11ONC-2126-SM-5HL6E GTEX-X4XX-0011-R7A-SM-46MWR GTEX-T5JW-1326-SM-4DM5G GTEX-11GS4-2726-SM-5A5LE GTEX-14BMU-0006-SM-5MR3T GTEX-NFK9-1326-SM-3LK5I GTEX-12WSB-0011-R5b-SM-5GU67 GTEX-11ONC-0011-R9b-SM-5NQ8J GTEX-XQ3S-1626-SM-4WAYN GTEX-13O21-1726-SM-5MR5A GTEX-Y3I4-1226-SM-4TT8N GTEX-Y5V6-0526-SM-4VBRV GTEX-YB5E-2226-SM-5IFJ5 GTEX-ZAB4-0826-SM-5LU9D GTEX-12WSL-0226-SM-5CVMJ GTEX-11TUW-1126-SM-5EQKJ GTEX-YJ8A-1726-SM-5P9IQ GTEX-13JUV-0011-R10b-SM-5LZXR GTEX-OIZG-1326-SM-2HMIQ GTEX-13OW6-0011-R1a-SM-5L3HQ GTEX-133LE-1826-SM-5J1MV GTEX-T8EM-0526-SM-4DM64 GTEX-T6MO-1126-SM-4DM5D GTEX-11EMC-0526-SM-5EGJN GTEX-V955-0726-SM-3GAFG GTEX-T6MO-0826-SM-4DM51 GTEX-11DXW-0426-SM-5H12E GTEX-11DYG-3126-SM-5A5L6 GTEX-R55D-0926-SM-3GAEU GTEX-131XF-1126-SM-5HL8J GTEX-1399U-1126-SM-5L3DB GTEX-111CU-0126-SM-5GZWZ GTEX-13OW6-2526-SM-5IJEC GTEX-145MI-0626-SM-5SI8S GTEX-1212Z-0726-SM-5EGI5 GTEX-133LE-0626-SM-5IFFJ GTEX-111CU-0726-SM-5GZYD GTEX-ZTX8-1326-SM-4YCEL GTEX-13OW5-3126-SM-5MR3Y GTEX-RWSA-2426-SM-47JXR GTEX-O5YW-0126-SM-3LK6D GTEX-12WSD-1026-SM-5EQ42 GTEX-PSDG-1426-SM-48TD1 GTEX-XYKS-1726-SM-4E3IO GTEX-12WSE-2926-SM-5RQJ9 GTEX-TSE9-2926-SM-5CHQO GTEX-WYJK-1226-SM-4ONCP GTEX-YF7O-0004-SM-4W1ZT GTEX-14AS3-1726-SM-5RQJV GTEX-13NYB-1326-SM-5K7Y1 GTEX-U8T8-0126-SM-3DB94 GTEX-ZTTD-0526-SM-57WDV GTEX-X4EP-0005-SM-3P5ZE GTEX-WYVS-0926-SM-4SOJV GTEX-OXRO-0226-SM-3LK6F GTEX-14DAQ-0126-SM-5S2MQ GTEX-12WSA-1126-SM-5EGKU GTEX-TKQ2-1526-SM-4DXUN GTEX-ZPCL-0006-SM-4WWAS GTEX-U3ZG-0006-SM-47JWX GTEX-13JUV-3026-SM-5K7WX GTEX-11LCK-0726-SM-5PNYC GTEX-12ZZX-0011-R11a-SM-5DUVJ GTEX-Y8LW-0826-SM-4WWDO GTEX-Y3IK-2026-SM-4YCDG GTEX-ZDYS-0008-SM-4E3IX GTEX-P78B-2226-SM-3P5ZZ GTEX-13NYC-2826-SM-5K7WR GTEX-OXRN-1326-SM-3LK5V GTEX-12WSL-0926-SM-5N9EK GTEX-S3XE-1926-SM-3K2B3 GTEX-X5EB-1726-SM-4E3J7 GTEX-1212Z-0526-SM-5FQSQ GTEX-13D11-0526-SM-5LZYM GTEX-13U4I-1026-SM-5LU3G GTEX-13O3O-0011-R5b-SM-5KM44 GTEX-14A5H-0326-SM-5RQIB GTEX-13PVQ-0126-SM-5SIB4 GTEX-WHSE-0526-SM-4SOJ6 GTEX-13QBU-0126-SM-5LU3V GTEX-PX3G-2026-SM-48U1H GTEX-ZP4G-2126-SM-57WEA GTEX-Y114-1626-SM-4TT7I GTEX-ZUA1-0008-SM-4YCEW GTEX-YEC4-1326-SM-5IFHG GTEX-12ZZX-0126-SM-5EGK9 GTEX-YEC3-0326-SM-5IFJJ GTEX-11GS4-0326-SM-5N9F7 GTEX-13FTW-2626-SM-5K7WL GTEX-13N11-2826-SM-5KM4Z GTEX-1339X-1426-SM-5K7YO GTEX-PW2O-1226-SM-48TCH GTEX-ZDTT-0426-SM-4WKFL GTEX-145LS-0011-R5a-SM-5SI65 GTEX-TKQ1-0003-SM-3NMAE GTEX-S7SF-2026-SM-3K2AS GTEX-PLZ5-0926-SM-4RGM9 GTEX-13JVG-0011-R10b-SM-5KM2P GTEX-ZTX8-1626-SM-51MRY GTEX-12WSD-0826-SM-5GCNE GTEX-131XH-0011-R8a-SM-5EGLL GTEX-ZEX8-1026-SM-4WKHE GTEX-1122O-0926-SM-5N9C9 GTEX-ZDTT-0926-SM-5J2MS GTEX-12BJ1-0003-SM-5SI6V GTEX-13SLX-3026-SM-5RQJU GTEX-NFK9-2026-SM-3LK5K GTEX-1122O-0226-SM-5N9DA GTEX-146FH-1026-SM-5RQIF GTEX-11P7K-0626-SM-5985Z GTEX-13S86-1126-SM-5RQJX GTEX-13113-0006-SM-5NQ7X GTEX-12C56-0626-SM-5EGGC GTEX-139TT-0011-R5b-SM-5K7W8 GTEX-11WQC-0006-SM-5LZVP GTEX-QEG5-1026-SM-4R1KT GTEX-QDVJ-0826-SM-48U1S K-562-SM-5N9DX GTEX-P4QS-2626-SM-2I3EV GTEX-UPIC-0226-SM-3GADO GTEX-YFCO-0005-SM-4W1ZI GTEX-1445S-3026-SM-5O9BR GTEX-ZC5H-0226-SM-4WAY9 GTEX-Y5V5-1326-SM-4V6G9 GTEX-VJYA-1826-SM-4KL1W GTEX-R3RS-0008-SM-48FF1 GTEX-139T4-0226-SM-5HL5S GTEX-ZVP2-1526-SM-5NQ82 GTEX-RU72-3026-SM-5SI7Y GTEX-ZVT2-0926-SM-5GICE GTEX-WOFL-0826-SM-3MJG1 GTEX-N7MS-2425-SM-26GMD GTEX-13U4I-1226-SM-5LU5M GTEX-139YR-0326-SM-5J1MC GTEX-1399R-2626-SM-5KLZ7 GTEX-N7MT-1226-SM-26GMT GTEX-TSE9-0005-SM-4DXUF GTEX-XOT4-1426-SM-4B65T GTEX-ZDXO-2726-SM-4WKFA GTEX-13OW7-0226-SM-5MR3N GTEX-12BJ1-2226-SM-5BC6G GTEX-N7MT-1226-SM-26GMC GTEX-ZUA1-2926-SM-59HL3 GTEX-OOBK-2126-SM-3LK5T GTEX-12WSM-2126-SM-5GCOC GTEX-WK11-2426-SM-3NMAA GTEX-ZAB4-0008-SM-4RGM6 GTEX-131XF-0006-SM-5P9HK GTEX-T5JW-1826-SM-3GAE1 GTEX-1445S-0011-R4a-SM-5PNWN GTEX-145MO-0426-SM-5QGP6 GTEX-P4QS-0008-SM-48TDY GTEX-145MO-2826-SM-5LU96 GTEX-13X6K-0226-SM-5QGPB GTEX-11LCK-1726-SM-5S2OQ GTEX-ZV7C-0426-SM-51MQY GTEX-YEC3-1026-SM-5IFI5 GTEX-ZE9C-0011-R7a-SM-4WWCX GTEX-XQ3S-1726-SM-4BOOD GTEX-QEG5-1326-SM-4R1JS GTEX-13FTY-0726-SM-5J2OH GTEX-1313W-0011-R6a-SM-5K7XO GTEX-13O21-1226-SM-5J2MK GTEX-ZF29-0826-SM-5S2NP GTEX-13FTY-0326-SM-5L3DN GTEX-111FC-0626-SM-5N9CU GTEX-Y9LG-0626-SM-4WWDH GTEX-13PL7-0326-SM-5IJEK GTEX-139T4-0826-SM-5N9GF GTEX-145MH-2326-SM-5O9AW GTEX-11GS4-0526-SM-5A5KQ GTEX-ZXG5-2126-SM-59HKD GTEX-XV7Q-1826-SM-4BRUV GTEX-ZQUD-1426-SM-57WER GTEX-ZTPG-1326-SM-51MSQ GTEX-TSE9-0008-SM-4DXT8 GTEX-13O3P-1226-SM-5J2O8 GTEX-13RTL-0011-R9a-SM-5Q5BR GTEX-12WSC-0326-SM-5EQ5E GTEX-XXEK-0326-SM-4BRVV GTEX-O5YT-0526-SM-32PK8 GTEX-145MF-0626-SM-5LUAI GTEX-ZEX8-0326-SM-4WKGS GTEX-P4PQ-0526-SM-2HMKR K-562-SM-3NMAP GTEX-TMKS-0426-SM-3DB85 GTEX-13U4I-0126-SM-5LU38 GTEX-13PVR-1726-SM-5Q5EC GTEX-13VXT-0326-SM-5LU4U GTEX-O5YT-0007-SM-32PK7 GTEX-13N1W-0926-SM-5MR36 GTEX-146FH-2126-SM-5SI9U GTEX-Q2AH-0005-SM-5SI7G GTEX-13FHO-1626-SM-5IJGB K-562-SM-4AT3W GTEX-12WSD-0326-SM-59HKP GTEX-145LS-0011-R1b-SM-5PNUP GTEX-11DZ1-2426-SM-5GZZX GTEX-13NYB-0011-R5a-SM-5MR45 GTEX-ZPU1-0626-SM-4YCDM GTEX-QVUS-0011-R10A-SM-3GIK3 GTEX-UJHI-0726-SM-3DB92 GTEX-SUCS-1126-SM-4DM61 GTEX-V1D1-2126-SM-4JBH4 GTEX-14ASI-0326-SM-5S2VH GTEX-Q2AG-2926-SM-2HMJ3 GTEX-ZE9C-1126-SM-4WWBD GTEX-XGQ4-0126-SM-4AT4H GTEX-XMK1-1026-SM-4B65H GTEX-13PVR-0226-SM-5RQJI GTEX-11I78-1426-SM-5PNVY GTEX-11DXY-1126-SM-5987W GTEX-13FHP-0926-SM-5L3EC GTEX-ZYFD-2026-SM-5E459 GTEX-ZTX8-1426-SM-5DUVO GTEX-13X6J-0426-SM-5O9D3 GTEX-13X6I-2926-SM-5Q5C3 GTEX-S341-1126-SM-4AD6T GTEX-13PVR-0526-SM-5S2OB GTEX-ZTPG-2326-SM-57WFL GTEX-146FR-2026-SM-5NQAI GTEX-ZYFG-1626-SM-5GZYY GTEX-13NYB-0626-SM-5MR47 GTEX-11DXX-0826-SM-5GZZP GTEX-14BIN-1126-SM-5RQJZ GTEX-13W3W-2526-SM-5SI9P GTEX-T5JW-0926-SM-4DM5K GTEX-11DZ1-0008-SM-5QGR3 GTEX-13FTY-0011-R9b-SM-5KM2U GTEX-ZZ64-1626-SM-5E43W GTEX-S341-0726-SM-4AD5R GTEX-13FTZ-0526-SM-5IJCW GTEX-QDT8-0526-SM-4LMJR GTEX-14BIM-3226-SM-5RQIQ GTEX-11ZVC-0011-R3a-SM-5BC6V GTEX-NPJ8-1726-SM-2YUNB GTEX-13FTW-1726-SM-5KM2B GTEX-RVPV-0006-SM-2TF6Q GTEX-13NYS-3126-SM-5KLYV GTEX-14E1K-0006-SM-5N9DY GTEX-PSDG-1026-SM-48TCV GTEX-S4Q7-0006-SM-3K2AT GTEX-1122O-1726-SM-5GICM GTEX-13OW7-0526-SM-5J1N2 GTEX-1497J-0826-SM-5NQAJ GTEX-RUSQ-1726-SM-2TF68 GTEX-11GSP-1226-SM-5985M GTEX-ZVZQ-0626-SM-59HJU GTEX-T5JW-1126-SM-4DM5V GTEX-12ZZX-1126-SM-5EGKB GTEX-R55G-2326-SM-2TC61 GTEX-13CZV-0011-R4b-SM-5J2NY GTEX-ZVZO-0326-SM-5HL4N GTEX-QEG5-1126-SM-5SI88 GTEX-131YS-0011-R7a-SM-5IJDA GTEX-1477Z-0011-R10b-SM-5S2RF GTEX-NPJ8-0326-SM-2D7VV GTEX-11DXZ-2126-SM-59881 GTEX-ZYWO-2626-SM-5E43V GTEX-13NYS-0011-R4b-SM-5MR3O GTEX-ZYFD-0426-SM-5E45X GTEX-X4XX-2926-SM-3NMB1 GTEX-PWCY-0526-SM-5P9HG GTEX-ZDTT-0326-SM-4WKF9 K-562-SM-5K7TT GTEX-11EM3-1126-SM-5A5KM GTEX-S4Q7-0426-SM-3K2BJ GTEX-NPJ8-1526-SM-2D7VU GTEX-11NUK-2726-SM-5A5MC GTEX-13OVG-0526-SM-5K7YD GTEX-ZA64-0526-SM-5HL9I GTEX-TMZS-0326-SM-3DB9P GTEX-WVLH-0011-R6A-SM-3MJFZ GTEX-QEL4-1126-SM-4R1JJ GTEX-WHWD-1026-SM-4OORZ GTEX-13OW6-2226-SM-5N9FL GTEX-14A5I-2926-SM-5Q5CQ GTEX-QLQW-1026-SM-447A9 GTEX-13111-1626-SM-5EGJY GTEX-144FL-2326-SM-5LUAC GTEX-ZPIC-0826-SM-4WWFJ GTEX-XQ3S-2426-SM-4WAYB GTEX-O5YT-0726-SM-3MJHA GTEX-WFON-2126-SM-3LK7O GTEX-13U4I-2426-SM-5LU34 GTEX-13IVO-0126-SM-5J1NG GTEX-13PLJ-0011-R11b-SM-5O9BS GTEX-111YS-1226-SM-5EGGJ GTEX-PLZ6-0326-SM-3P61J GTEX-P4PP-0726-SM-3NM9S GTEX-11TTK-2826-SM-5GU5K GTEX-PWCY-2026-SM-5SI8R GTEX-11EM3-2426-SM-59861 GTEX-13SLX-0011-R9b-SM-5SI6X GTEX-13OVH-1126-SM-5K7YP GTEX-146FH-1726-SM-5QGQ2 GTEX-1192X-0426-SM-5GIEE GTEX-UPIC-0326-SM-4IHJ9 GTEX-13OVL-0126-SM-5L3GJ GTEX-RM2N-0426-SM-2TF4T GTEX-RN64-0626-SM-2TC5V GTEX-WRHK-0526-SM-4MVOF GTEX-WFG7-0001-SM-3P61S GTEX-11ZVC-2726-SM-5FQSZ GTEX-PWOO-0006-SM-2I3E3 GTEX-XK95-0226-SM-4AT58 GTEX-XMD1-2926-SM-4AT42 GTEX-ZVZO-0426-SM-5HL4Z K-562-SM-32PLC GTEX-WY7C-0726-SM-4ONCB K-562-SM-2HMJ2 GTEX-X585-0011-R5A-SM-46MVI GTEX-X4EP-0626-SM-3P621 GTEX-1399T-0011-R8b-SM-5IJD8 GTEX-ZVT2-0526-SM-5E455 GTEX-SSA3-0326-SM-32QPS GTEX-145LU-0426-SM-5O9AH GTEX-13O1R-0011-R9b-SM-5KM33 GTEX-ZVT3-0326-SM-5GU6U GTEX-WL46-0926-SM-3LK7T GTEX-113IC-0008-SM-5QGRF GTEX-ZV68-0006-SM-4YCEJ GTEX-13JVG-0011-R4a-SM-5MR4C GTEX-XGQ4-0826-SM-4AT4T GTEX-X4EP-0011-R11B-SM-4QASK GTEX-12WSJ-1326-SM-5GCOB GTEX-131XH-0226-SM-5LZVB GTEX-ZYFG-1526-SM-5GZYM GTEX-TSE9-0726-SM-3DB8C GTEX-13OW6-0626-SM-5L3IB GTEX-O5YV-0526-SM-2D7VZ GTEX-117YX-1526-SM-5H12T GTEX-UJHI-1026-SM-4IHJP GTEX-11PRG-2026-SM-5GU5F GTEX-YJ89-0011-R5a-SM-4V6GM GTEX-13JUV-0526-SM-5K7XE GTEX-TML8-1926-SM-32QOS GTEX-14BIM-0011-R4b-SM-5S2RK GTEX-13NZB-2526-SM-5J1OM GTEX-111YS-0726-SM-5GZY8 GTEX-X15G-0926-SM-4PQZE GTEX-11ZTT-0008-SM-5S2TZ GTEX-S341-0226-SM-5S2VG GTEX-13SLW-0011-R8b-SM-5SI64 GTEX-ZDXO-1326-SM-57WBS GTEX-133LE-2026-SM-5K7WM GTEX-11VI4-0226-SM-5GU6C GTEX-X4LF-0526-SM-3NMB6 GTEX-13OVG-0826-SM-5L3D8 GTEX-14E6E-1826-SM-5S2R7 GTEX-13QIC-0011-R8b-SM-5O9CV GTEX-12696-1226-SM-5FQSM GTEX-N7MS-0011-R8a-SM-2YUMK GTEX-ZLWG-0826-SM-59888 GTEX-1117F-0426-SM-5EGHI GTEX-T5JC-1926-SM-4DM6Q GTEX-ZLWG-2526-SM-57WDS GTEX-ZLV1-1826-SM-5FQU5 GTEX-ZTPG-0526-SM-5O98W GTEX-OIZI-0426-SM-2XCEF GTEX-111CU-0326-SM-5GZXO GTEX-13NZ8-2126-SM-5L3EO GTEX-13O1R-1026-SM-5KM2L GTEX-13YAN-0526-SM-5O9BE GTEX-ZAK1-0226-SM-5CVMX GTEX-ZYW4-0826-SM-5GIDG GTEX-11PRG-2226-SM-5GU5R GTEX-R55C-1426-SM-48FED GTEX-13W3W-2426-SM-5LU5B GTEX-ZA64-0226-SM-5HL9C GTEX-14753-2426-SM-5LU8U GTEX-RWSA-0226-SM-2XCBA GTEX-PWCY-0526-SM-5PNU8 GTEX-13NYB-0011-R10a-SM-5KM43 GTEX-14BIN-3326-SM-5Q5E6 GTEX-NPJ8-0011-R10A-SM-2YUMO GTEX-W5WG-0926-SM-4RTX9 GTEX-14DAR-0326-SM-5S2PS GTEX-131YS-2326-SM-5IJFJ GTEX-1313W-0011-R5b-SM-5L3EP GTEX-ZC5H-1326-SM-5HL7E GTEX-ZF3C-1426-SM-4WWCD GTEX-QVJO-0011-R10A-SM-2S1QJ GTEX-PSDG-0626-SM-2S1OE GTEX-ZE9C-0006-SM-4WKG2 GTEX-13YAN-2026-SM-5Q5EY GTEX-XXEK-2526-SM-4BRUR GTEX-Q2AG-0011-R4A-SM-2HMKA GTEX-11TT1-2526-SM-5EGIB GTEX-1477Z-0626-SM-5NQB7 GTEX-ZVZP-1826-SM-5GZXB K-562-SM-2D7VW GTEX-12BJ1-2026-SM-5FQUH GTEX-RVPU-0011-R4A-SM-2TF6X K-562-SM-2D7VY GTEX-XMK1-2226-SM-4B673 GTEX-YB5K-2026-SM-4VDT3 GTEX-QEG5-0008-SM-4R1KL GTEX-11ZU8-1126-SM-5EQ5K GTEX-OOBJ-0008-SM-3NB26 GTEX-XMK1-1126-SM-4IHJ8 GTEX-W5X1-2226-SM-5CHTP GTEX-Q2AH-0726-SM-2I3EA GTEX-YF7O-1726-SM-5IFJ9 GTEX-OHPL-0126-SM-2HMJ7 GTEX-13S86-0926-SM-5SI6I GTEX-WRHK-1026-SM-4MVOD GTEX-ZYVF-0826-SM-5E447 GTEX-11ZUS-0006-SM-5O9AJ GTEX-14E7W-0006-SM-5N9GG GTEX-WHSE-0008-SM-4M1ZO GTEX-13W46-1826-SM-5K7VA GTEX-13NZB-2126-SM-5MR4Y GTEX-146FQ-0326-SM-5NQAX GTEX-ZF29-2226-SM-4WWB9 GTEX-TSE9-3126-SM-4DXSY GTEX-12WSB-0426-SM-5BC6H GTEX-WY7C-1926-SM-4ONCI GTEX-XUJ4-0726-SM-4BOOP GTEX-R3RS-1026-SM-3GADF GTEX-WRHU-0008-SM-4MVPB GTEX-QLQ7-0126-SM-4R1JW GTEX-11EM3-0526-SM-5H12N GTEX-13FTW-0926-SM-5J2NJ GTEX-RWSA-0008-SM-47JYX GTEX-11ZTT-2126-SM-5CVLO GTEX-XV7Q-2926-SM-4BRUL GTEX-139TS-2626-SM-5J1MT GTEX-OOBK-0226-SM-2YUMF GTEX-WY7C-0826-SM-4ONCG GTEX-13112-0426-SM-5PNVC GTEX-145MO-2626-SM-5QGPD GTEX-12BJ1-2126-SM-5BC5O GTEX-WHSE-0011-R7A-SM-3P5YZ GTEX-WYVS-0006-SM-3NMA7 GTEX-UPIC-0826-SM-3GADQ GTEX-11DXX-1426-SM-5GIDU GTEX-1269C-0003-SM-5S2PB GTEX-XGQ4-1826-SM-4AT6F GTEX-P78B-1926-SM-3P616 GTEX-OXRN-1426-SM-3LK5U GTEX-Z9EW-0926-SM-5CVMM GTEX-P44G-0011-R10A-SM-2I3FF GTEX-P4PP-0126-SM-3LK69 GTEX-S341-1526-SM-4AD6K GTEX-13NYS-0326-SM-5MR4L GTEX-13N11-2926-SM-5K7VD GTEX-XUJ4-1726-SM-4BONW GTEX-11ZU8-2526-SM-5EQKI GTEX-11EMC-2826-SM-5PNY6 GTEX-YFC4-0011-R1a-SM-4V6EH GTEX-YECK-1926-SM-4W21H GTEX-ZXES-1426-SM-5NQ8S GTEX-11GS4-2926-SM-5A5LF GTEX-1399S-2426-SM-5K7U3 GTEX-WEY5-2326-SM-3GIKK GTEX-WFON-1526-SM-4LVMP GTEX-1399R-0626-SM-5K7UZ GTEX-131XH-0011-R10a-SM-5EGLJ GTEX-XPVG-2126-SM-4B667 GTEX-RTLS-0526-SM-2TF64 GTEX-Y8E5-0006-SM-47JWQ GTEX-13G51-0526-SM-5IJCQ GTEX-XGQ4-2526-SM-4AT57 GTEX-147JS-1226-SM-5RQK4 GTEX-S4Q7-0626-SM-4AD5M GTEX-13QBU-0926-SM-5K7WQ GTEX-SIU7-0226-SM-4BRX2 GTEX-X638-0008-SM-47JZ7 GTEX-13N2G-0011-R2a-SM-5MR4Q GTEX-ZYWO-2826-SM-5GIDY GTEX-1128S-2726-SM-5H12C GTEX-QEG5-0726-SM-4R1JQ GTEX-YB5E-1826-SM-5IFI4 GTEX-ZZPU-0926-SM-5GZYT GTEX-145LU-1326-SM-5LU9N GTEX-131XF-0726-SM-5GIE5 GTEX-11ZVC-0011-R4a-SM-5BC6Z GTEX-11GSO-0011-R3b-SM-57WB2 GTEX-131XF-1226-SM-5HL8V GTEX-ZDTT-1026-SM-5KM19 GTEX-ZE9C-2526-SM-5IJDR GTEX-139UC-0426-SM-5K7UR GTEX-11TT1-1526-SM-5EQKU GTEX-XBED-0526-SM-47JY3 GTEX-OIZH-1526-SM-3NB1J GTEX-WVLH-2926-SM-3MJG5 GTEX-146FR-1626-SM-5Q5DS GTEX-145MN-1726-SM-5SIA6 GTEX-ZE7O-3026-SM-51MS4 GTEX-13FTZ-0226-SM-5K7X6 K-562-SM-4WWAK GTEX-ZXG5-0008-SM-57WDB GTEX-12WSH-2526-SM-5CVNH GTEX-YEC3-1926-SM-4WWF5 GTEX-RVPU-0011-R8A-SM-5SI8I GTEX-U3ZH-0326-SM-4WWDX GTEX-12ZZX-0011-R3b-SM-5EGLH GTEX-11OF3-0826-SM-5BC51 GTEX-1313W-0011-R2a-SM-5EGLF GTEX-12WSM-0008-SM-5S2VD GTEX-13O3Q-0011-R1b-SM-5KM3L GTEX-11DXZ-2426-SM-5N9DT GTEX-11EI6-2626-SM-5PNVT GTEX-YF7O-1926-SM-4W1YQ GTEX-T5JC-1226-SM-4DM7C GTEX-11OC5-0426-SM-5Q5AR GTEX-W5WG-1526-SM-4LMIG GTEX-12696-2426-SM-5EQ6H GTEX-XLM4-3026-SM-4AT6L GTEX-P4PQ-2626-SM-5SI7K GTEX-ZLFU-0826-SM-4WWBP GTEX-PX3G-3026-SM-48TZR GTEX-ZAJG-0126-SM-5HL94 GTEX-WEY5-2026-SM-3GILE GTEX-ZF2S-1026-SM-4WWB1 GTEX-PLZ6-0426-SM-5IJDW GTEX-131XW-2226-SM-5PNY1 GTEX-14DAQ-1426-SM-5RQJD GTEX-13S86-0226-SM-5S2PJ GTEX-146FR-1826-SM-5QGPF GTEX-12WSI-0011-R11b-SM-5P9EZ GTEX-OXRO-2026-SM-2YUMZ GTEX-N7MS-0011-R4a-SM-2HMKW GTEX-XLM4-0426-SM-4AT54 GTEX-ZTTD-1726-SM-57WEL GTEX-132NY-2726-SM-5PNY2 GTEX-13OW5-2326-SM-5L3HO GTEX-131YS-3026-SM-5EGHY GTEX-WHWD-0426-SM-3LK83 GTEX-11LCK-2226-SM-5HL4Q GTEX-TML8-1326-SM-4DXTO GTEX-139YR-2226-SM-5IFFW GTEX-139TU-1326-SM-5LZXW GTEX-1399S-0006-SM-5NQ7U GTEX-148VJ-2626-SM-5QGPI K-562-SM-5NQ9D GTEX-YF7O-0008-SM-4W1ZS GTEX-12WSN-1826-SM-5LZUT GTEX-Q2AG-1326-SM-43V8K GTEX-OHPK-1326-SM-3MJGN GTEX-PLZ6-1726-SM-2S1O6 GTEX-ZVP2-2226-SM-5GU6Q GTEX-XXEK-1826-SM-4BRVC GTEX-131XW-0526-SM-5PNXZ GTEX-11EM3-0626-SM-5H12Z GTEX-ZPIC-1626-SM-57WEB GTEX-11EMC-3026-SM-5EQ4R GTEX-YB5E-2326-SM-5IFIJ GTEX-147F3-0126-SM-5NQBJ GTEX-RUSQ-0326-SM-47JWS GTEX-11I78-2326-SM-5Q5AH GTEX-WYVS-2326-SM-3NMAI GTEX-PW2O-0126-SM-48TC8 GTEX-U3ZN-0726-SM-4DXT5 GTEX-13O3O-0926-SM-5KM1F GTEX-13113-1826-SM-5LZW4 GTEX-1211K-2026-SM-5EQ4Z GTEX-11P81-0226-SM-5HL5M GTEX-13JUV-0011-R1a-SM-5LZY4 GTEX-131XE-2226-SM-5PNYX GTEX-139UW-2826-SM-5L3E7 GTEX-1399T-0011-R2b-SM-5DUXM GTEX-11ZVC-2626-SM-5FQTA GTEX-ZA64-1026-SM-5HL8R GTEX-ZTX8-0006-SM-4YCE4 GTEX-ZG7Y-0003-SM-4WWEJ GTEX-145LS-1826-SM-5LUAZ GTEX-ZGAY-1026-SM-4WWBR GTEX-ZUA1-0626-SM-4YCCW GTEX-XXEK-1426-SM-4BRW1 GTEX-YB5E-0005-SM-4VDSO GTEX-145ME-0626-SM-5O99Q GTEX-XV7Q-2526-SM-4BRV9 GTEX-YJ8O-2426-SM-5HL7S GTEX-TKQ1-1326-SM-4DXU7 GTEX-YEC4-2426-SM-57WFO GTEX-SIU7-0926-SM-4BRX1 GTEX-X4XY-0826-SM-4E3JM GTEX-12584-0326-SM-59HK2 K-562-SM-59HJ4 GTEX-RUSQ-2126-SM-47JXK GTEX-13O61-2526-SM-5J1O8 GTEX-XOTO-0011-R7B-SM-4B64R GTEX-ZVZP-2526-SM-57WBR GTEX-117XS-2726-SM-5N9BL GTEX-12WSD-0011-R10b-SM-5GU79 GTEX-13X6H-1426-SM-5SI91 GTEX-N7MS-0011-R6a-SM-2HMJ4 GTEX-UPK5-2026-SM-4JBIM GTEX-XK95-0005-SM-4AT4S GTEX-OXRK-0526-SM-2YUMW GTEX-11TT1-2326-SM-5GU6N GTEX-14ICL-1926-SM-5RQIZ GTEX-13NYB-1026-SM-5IFH3 GTEX-ZT9X-0326-SM-51MTE GTEX-T8EM-0126-SM-4DM5R GTEX-Y8LW-2026-SM-4V6G8 GTEX-11TT1-1126-SM-5P9GV GTEX-YJ8O-2626-SM-5HL8H GTEX-X15G-0426-SM-4PQZ6 GTEX-WQUQ-1426-SM-3MJFD GTEX-WY7C-2826-SM-3NB3Q GTEX-WOFM-0005-SM-3MJF3 GTEX-13S7M-0011-R5b-SM-5P9HS GTEX-13OVI-0626-SM-5IJCN GTEX-S3XE-0926-SM-4AD4S GTEX-ZAB5-2126-SM-5K7UN GTEX-ZP4G-0626-SM-4WWF1 GTEX-VUSG-0006-SM-3GIK9 GTEX-P4QT-1726-SM-2S1NQ GTEX-12126-0011-R10b-SM-5BC6T GTEX-14C39-1726-SM-5RQIL GTEX-OIZI-0726-SM-2XCEI GTEX-ZYFD-1026-SM-5E43Z GTEX-QVJO-0011-R1A-SM-2S1QI GTEX-11ZTS-0826-SM-5EQ49 GTEX-UPK5-0008-SM-4IHJD GTEX-11O72-1026-SM-5986B GTEX-13SLX-1726-SM-5Q5E5 K-562-SM-2S1Q5 GTEX-XMD1-0011-R2B-SM-4AT5N GTEX-13FH7-1426-SM-5IFIC GTEX-Y8E4-0226-SM-4VBQ3 GTEX-RU72-0011-R11A-SM-2TF6J GTEX-11UD1-0011-R3a-SM-5BC6S GTEX-11VI4-0006-SM-5N9D8 GTEX-WVJS-0826-SM-4MVNR GTEX-NFK9-0008-SM-4E3JE GTEX-XOTO-0011-R1B-SM-4B65C GTEX-1211K-0226-SM-59HJY GTEX-WL46-0726-SM-3LK5Z GTEX-Q2AI-1126-SM-48U19 GTEX-13O3O-0011-R1b-SM-5KM2K GTEX-ZF2S-1926-SM-4WWAN GTEX-14753-0011-R5a-SM-5S2VW GTEX-VUSG-1026-SM-4KKZN GTEX-12WSN-0926-SM-5GCN1 GTEX-Y9LG-1826-SM-4VBQC GTEX-13S7M-2226-SM-5S2WB GTEX-13RTJ-0626-SM-5S2NB GTEX-QXCU-1726-SM-2TC6L GTEX-132AR-1126-SM-5P9GA GTEX-14A5I-1326-SM-5SIAQ GTEX-13FTX-2026-SM-5L3D6 GTEX-12WS9-2826-SM-5FQU9 GTEX-ZLFU-2026-SM-4WWG2 GTEX-145LS-0011-R3a-SM-5S2VJ GTEX-YJ8O-1026-SM-5CVM5 GTEX-12WSE-0005-SM-5NQAE GTEX-SUCS-0426-SM-5CHT6 GTEX-R55E-0011-R8A-SM-2TC66 GTEX-111FC-1126-SM-5GZWU GTEX-WRHK-1426-SM-3MJF9 GTEX-111FC-0126-SM-5N9DL GTEX-WFG8-0326-SM-4LVN4 GTEX-S4UY-0726-SM-4AD6X GTEX-1399S-1226-SM-5J1O6 GTEX-QMRM-0005-SM-3NB2A GTEX-Z9EW-0326-SM-5CVM8 GTEX-YB5E-2126-SM-5IFI7 GTEX-XYKS-1226-SM-4BRVI GTEX-QCQG-1826-SM-2S1P2 GTEX-OXRK-1726-SM-3NB16 GTEX-QVJO-1826-SM-447C9 GTEX-QV31-1326-SM-2S1QE GTEX-11GS4-2026-SM-5N9CP GTEX-PLZ5-1126-SM-3P613 GTEX-14BIM-0011-R5b-SM-5S2RM GTEX-R55G-0626-SM-48FDB GTEX-14BMU-0126-SM-5S2Q9 GTEX-ZZPU-2226-SM-5EGIV GTEX-ZF28-0011-R7a-SM-4WKF5 GTEX-14A6H-1326-SM-5NQBC GTEX-RVPU-0011-R8A-SM-2TF74 GTEX-X5EB-0004-SM-46MWA GTEX-ZTPG-0826-SM-5DUVC GTEX-12KS4-0005-SM-5SI94 GTEX-Z93S-2626-SM-57WBX GTEX-145MH-2726-SM-5QGQ6 GTEX-XBEW-1426-SM-4AT4J GTEX-13O3O-2726-SM-5KM35 GTEX-13FHP-0126-SM-5IJBG GTEX-11ZTT-0926-SM-5EQMS GTEX-WI4N-0926-SM-3LK7K GTEX-1339X-1726-SM-5P9J9 GTEX-PWOO-2026-SM-48TDE GTEX-UTHO-0008-SM-4JBID GTEX-12WSI-2126-SM-5GCMV GTEX-ZAB5-1526-SM-5HL9P GTEX-WI4N-0008-SM-4OOSV GTEX-11LCK-1026-SM-5A5KB GTEX-RU72-1326-SM-2TF6T GTEX-13OVL-2926-SM-5IFG3 GTEX-N7MS-0126-SM-3TW8O GTEX-X88G-0004-SM-47JZ6 GTEX-R55G-2426-SM-2TC5I GTEX-OHPM-0526-SM-2YUMJ GTEX-ZLWG-0426-SM-4WWFA GTEX-ZDTS-1226-SM-4WKGL GTEX-Y114-2126-SM-4TT8B GTEX-WZTO-0126-SM-3NM95 GTEX-ZA64-1626-SM-5CVME GTEX-ZYFC-1626-SM-5N9EU GTEX-ZDXO-0126-SM-5S2ND GTEX-WQUQ-0006-SM-3MJF4 GTEX-13VXU-0006-SM-5N9FF GTEX-ZTPG-2626-SM-57WFX GTEX-13NZB-2226-SM-5MR5B GTEX-12WSK-0626-SM-5LZUJ GTEX-12ZZY-0011-R5a-SM-5EGL9 GTEX-XPT6-0226-SM-4B65L GTEX-RNOR-0011-R9A-SM-2TF52 GTEX-XV7Q-1726-SM-4BRUU GTEX-NPJ8-1526-SM-26GMH GTEX-Z93S-0126-SM-5HL7M GTEX-145ME-1726-SM-5Q5EU GTEX-Q2AH-1826-SM-2S1Q2 GTEX-12WSK-0006-SM-5NQA1 GTEX-13RTJ-2826-SM-5QGQH GTEX-13VXU-0011-R6a-SM-5SI71 GTEX-SNOS-1726-SM-32PLN GTEX-NPJ8-1526-SM-26GMY GTEX-ZWKS-0126-SM-5SIAA GTEX-145LS-0126-SM-5QGP1 GTEX-144GN-0626-SM-5O9B2 GTEX-11DYG-0426-SM-5987J GTEX-13OW8-1726-SM-5L3GO GTEX-Y8DK-0126-SM-4TT3L GTEX-XBED-0926-SM-48TCE GTEX-11P7K-1526-SM-5EGI7 GTEX-ZP4G-0326-SM-4YCEF GTEX-YFC4-2826-SM-5P9FR GTEX-14H4A-0006-SM-5N9E3 GTEX-12WSD-3226-SM-5HL9G GTEX-13FLV-0926-SM-5L3DZ GTEX-12WSF-0011-R3a-SM-5DUW7 GTEX-R55F-1726-SM-2TF4R GTEX-12WSD-0011-R7b-SM-5PNWE GTEX-12WSM-0626-SM-5GCOK GTEX-ZF3C-0005-SM-4WWAR GTEX-XQ8I-1626-SM-4BOOI GTEX-12WSA-1626-SM-5EGJV GTEX-13111-0005-SM-5NQ7Z GTEX-117YW-0005-SM-5NQ8Z GTEX-11DXZ-1626-SM-5GIDI GTEX-Y9LG-1626-SM-5IFHM GTEX-S4P3-0326-SM-4AD6P GTEX-12WSH-0008-SM-5S2V1 GTEX-146FQ-0426-SM-5NQBA GTEX-14BIM-0011-R3b-SM-5S2RL GTEX-Y5V6-2726-SM-4VDSC GTEX-13G51-0011-R1a-SM-5LZYR GTEX-OXRP-0526-SM-2I3EW GTEX-13FLW-0011-R1b-SM-5LZX2 GTEX-11VI4-0626-SM-5EQLO GTEX-146FR-0626-SM-5RQJ1 GTEX-QEG5-0926-SM-2TC64 GTEX-Y5V6-1126-SM-4VDTD GTEX-13OW6-0011-R11a-SM-5L3H2 GTEX-NPJ8-0011-R6a-SM-2HMKB GTEX-13N2G-2726-SM-5J1MG GTEX-ZDXO-3026-SM-5J1N5 GTEX-13NZ9-2626-SM-5L3FK GTEX-144FL-1526-SM-5Q5CA GTEX-11NV4-1426-SM-5BC4W GTEX-S95S-1326-SM-2XCDK GTEX-11ZVC-0011-R1b-SM-5BC6M GTEX-ZYT6-0526-SM-5GIEA GTEX-WWYW-3026-SM-3NB36 GTEX-QMR6-0011-R8A-SM-32PKJ GTEX-W5WG-1026-SM-4LMIF GTEX-11ZVC-2826-SM-5FQTC GTEX-13FHO-1226-SM-5L3EF GTEX-R53T-0426-SM-48FEM GTEX-146FH-1926-SM-5Q5B2 GTEX-13RTJ-0011-R9a-SM-5Q5AY GTEX-T2IS-0926-SM-4DM5B GTEX-13NYS-0011-R1b-SM-5MR55 GTEX-U3ZH-1126-SM-4DXUG GTEX-OHPN-0011-R8A-SM-33HBT GTEX-Y8LW-1226-SM-4WWDP GTEX-13O3Q-0011-R2b-SM-5KM3K GTEX-R55G-1126-SM-48FDG GTEX-WI4N-1426-SM-3LK7H GTEX-132AR-2026-SM-5IJG4 GTEX-S95S-0226-SM-4B656 GTEX-R55F-0008-SM-48FE6 GTEX-TMMY-1026-SM-4DXTI GTEX-Y111-1726-SM-4SOIQ GTEX-OHPL-2026-SM-3TW8R GTEX-OHPL-0526-SM-4M1XS GTEX-VUSG-0003-SM-3NMDK GTEX-13OVI-2426-SM-5KM4J GTEX-13X6K-0011-R6a-SM-5P9K6 GTEX-12WS9-0726-SM-5FQT7 GTEX-X5EB-0726-SM-46MVR GTEX-13FH7-0426-SM-5KM4M GTEX-O5YV-1026-SM-3LK72 GTEX-RM2N-1926-SM-48FCU GTEX-132QS-0326-SM-5IJFN GTEX-OXRK-0826-SM-2HMK7 GTEX-Y8DK-0011-R1A-SM-4RGLO GTEX-QDVJ-1226-SM-48U1V GTEX-RU72-0626-SM-46MUI GTEX-14BMU-1326-SM-5RQIH GTEX-T6MN-0726-SM-32PML GTEX-13VXT-1126-SM-5LU3A GTEX-ZY6K-1726-SM-5GZX8 GTEX-131YS-0011-R11b-SM-5EGLM GTEX-X4XX-3026-SM-3NMB2 GTEX-111CU-1926-SM-5GZYZ GTEX-11GSP-1126-SM-5A5LM GTEX-RWS6-0008-SM-47JYV GTEX-U3ZM-1626-SM-4DXSK GTEX-11ONC-3026-SM-5985W GTEX-14A5H-0226-SM-5S2VK GTEX-REY6-1726-SM-48FDL GTEX-UPK5-0726-SM-4IHL7 GTEX-ZAJG-0526-SM-5S2MT GTEX-12WSJ-1426-SM-5GCON GTEX-T6MO-0526-SM-4DM6R GTEX-Y3I4-0826-SM-4TT2A GTEX-11DXX-0126-SM-5EGH7 GTEX-13CF3-2326-SM-5IFGL GTEX-X4EO-2726-SM-4E3HS GTEX-X261-1726-SM-4PQYT GTEX-146FR-2426-SM-5NQAU GTEX-11UD1-0126-SM-5PNYG GTEX-12WSK-1526-SM-5CVNO GTEX-O5YT-2126-SM-3MJGD GTEX-13NZA-0011-R9b-SM-5MR5I GTEX-11P81-0006-SM-5NQ7A GTEX-P44H-0326-SM-2XCES GTEX-SIU8-0926-SM-2XCDO GTEX-ZVZQ-0011-R3a-SM-57WC7 GTEX-12696-0005-SM-5LZYS GTEX-QDVJ-2026-SM-2S1PD GTEX-14BIN-0011-R9a-SM-5SI76 GTEX-QEG5-1426-SM-447AS GTEX-13RTJ-2526-SM-5S2Q3 GTEX-Q734-0526-SM-2I3EH GTEX-Y8DK-0426-SM-4TT3Q GTEX-QLQW-0626-SM-447A6 GTEX-XYKS-0008-SM-4BRW6 GTEX-144GL-0726-SM-5LU4P GTEX-XGQ4-1626-SM-4AT6J GTEX-145ME-1826-SM-5SI9G GTEX-139T6-0426-SM-5IJEM GTEX-ZT9W-0003-SM-4YCE6 GTEX-XQ8I-2126-SM-4BOOM GTEX-W5X1-1126-SM-5CHTH K-562-SM-2S1RI GTEX-Y5LM-0326-SM-4VBRN GTEX-139TT-0011-R7b-SM-5J2MN GTEX-14BMU-2126-SM-5S2TS GTEX-14BMU-1226-SM-5S2OR GTEX-WZTO-0326-SM-4PQYZ GTEX-WH7G-0726-SM-5EGIX GTEX-TMMY-0926-SM-4TT1Z GTEX-11OF3-0011-R11a-SM-57WCR GTEX-11OF3-1326-SM-5N9FJ GTEX-SE5C-1326-SM-4BRUH GTEX-11I78-0126-SM-5HL6F GTEX-11P81-2326-SM-59875 GTEX-ZQUD-0005-SM-4YCE5 GTEX-1314G-1626-SM-5EQ67 GTEX-PX3G-0008-SM-48U2L GTEX-YF7O-0726-SM-4W213 GTEX-132AR-1026-SM-5PNVL GTEX-Y9LG-0726-SM-4VDS3 GTEX-145MF-2726-SM-5O995 GTEX-WL46-2026-SM-3LK7U GTEX-T6MO-2026-SM-33HB4 GTEX-11EQ9-0426-SM-5A5JY GTEX-U8XE-1126-SM-3DB8W GTEX-11O72-0526-SM-5Q5AO GTEX-13G51-0011-R11b-SM-5J2NE GTEX-X4EP-1026-SM-4QAS5 GTEX-ZXG5-0426-SM-5GICT GTEX-11OF3-0726-SM-5BC4Z GTEX-13O3Q-0011-R5b-SM-5P9H4 GTEX-X4XY-0011-R10B-SM-46MWS GTEX-1313W-3126-SM-5LZUI GTEX-13FXS-0011-R11a-SM-5L3DM GTEX-WEY5-2026-SM-5SI8D GTEX-13FHO-0011-R5b-SM-5LZZ3 GTEX-Y8E4-1926-SM-4VBPW GTEX-11EQ9-0926-SM-5HL6I GTEX-WH7G-0726-SM-3NMBM GTEX-11TT1-1726-SM-5EQLJ GTEX-147JS-1126-SM-5RQIW GTEX-YEC3-0926-SM-5Q5AC GTEX-12ZZX-1726-SM-5BC63 GTEX-11I78-1726-SM-5A5M3 GTEX-U412-0226-SM-3NMC8 GTEX-11ZUS-0926-SM-5FQSY GTEX-WY7C-1626-SM-4ONC8 GTEX-1445S-0011-R7b-SM-5PNUG GTEX-XLM4-0726-SM-4AT64 GTEX-SSA3-0326-SM-47JWY GTEX-S4Q7-0326-SM-3K2B1 GTEX-WHSB-1326-SM-3LK6W GTEX-139YR-0226-SM-5IFEM GTEX-RU72-0011-R6A-SM-2TF71 GTEX-NFK9-0426-SM-2YUNK GTEX-UTHO-0011-R10A-SM-3GIJQ GTEX-VJYA-2026-SM-4KL1K GTEX-WOFM-0001-SM-4OOT2 GTEX-U8XE-2126-SM-5CHRC GTEX-1399U-1326-SM-5IJET GTEX-13OW7-3126-SM-5L3HB GTEX-11ZTS-1326-SM-5EQMA GTEX-NPJ7-2926-SM-3MJGQ GTEX-WY7C-2626-SM-3NB2P GTEX-ZTX8-1026-SM-5EGHD GTEX-QEL4-0926-SM-3GAD1 GTEX-139TS-0126-SM-5K7XJ GTEX-145MH-1026-SM-5Q5CI GTEX-13O3O-0726-SM-5J1N7 GTEX-NFK9-1226-SM-3LK79 GTEX-14A5H-0426-SM-5QGQF GTEX-WH7G-0526-SM-3NMBI GTEX-XXEK-2226-SM-4BRUM GTEX-13OVI-1226-SM-5J2ME GTEX-RUSQ-0526-SM-2TF72 GTEX-T5JW-1426-SM-4DM5Q GTEX-12WSC-0005-SM-5MR3H GTEX-NPJ8-1226-SM-3MJHM GTEX-13G51-0426-SM-5K7Z5 GTEX-ZYT6-2126-SM-5GZZ4 GTEX-117YW-0826-SM-5H11O GTEX-ZAB5-1826-SM-5HL7C K-562-SM-46MWI GTEX-ZV6S-2126-SM-4YCEM GTEX-ZF2S-1726-SM-57WFT GTEX-ZVZQ-1526-SM-5N9G6 GTEX-11ZTT-2426-SM-5EQLS GTEX-1399U-0526-SM-5K7YM GTEX-X15G-0526-SM-3NMB7 GTEX-S7SF-0626-SM-4AD4V GTEX-S341-1326-SM-4AD72 GTEX-13OW8-1526-SM-5K7V2 GTEX-11ZTS-0126-SM-5EQ6M K-562-SM-5HL7A GTEX-12ZZW-1726-SM-5DUVD GTEX-ZF3C-1126-SM-57WEG GTEX-ZVT2-1226-SM-5GU5H GTEX-T6MN-2026-SM-4DM7L GTEX-T5JW-0126-SM-4DM6K GTEX-QLQ7-1926-SM-2S1R6 GTEX-Q2AH-0926-SM-48TZK GTEX-145MH-0011-R8a-SM-5PNUL GTEX-13113-1426-SM-5EGHU GTEX-ZPU1-1926-SM-57WDT GTEX-145LS-0526-SM-5LU8Y GTEX-12WSJ-0326-SM-5GCMT GTEX-SE5C-0426-SM-4BRUI GTEX-R55G-0326-SM-48FDM GTEX-S341-1426-SM-4AD6U GTEX-WHSE-0826-SM-4SOJU GTEX-NPJ8-0011-R4a-SM-2HML3 GTEX-XBEW-0008-SM-4AT3Y GTEX-12C56-1726-SM-5EQ61 GTEX-ZYY3-3126-SM-5SI9L GTEX-139UW-0326-SM-5J1ML GTEX-ZT9W-2726-SM-57WG8 K-562-SM-5N9B7 GTEX-WWYW-0005-SM-3NB3K GTEX-WYJK-1126-SM-3NM9Z K-562-SM-3NB3I GTEX-XAJ8-0006-SM-46MVM GTEX-UJMC-1826-SM-3GADT GTEX-14AS3-2226-SM-5S2OX GTEX-13OVL-3226-SM-5L3H8 GTEX-V1D1-0008-SM-4JBIJ GTEX-11XUK-0005-SM-5LU9F GTEX-XBEW-0626-SM-4QASP GTEX-139T8-0726-SM-5L3D2 GTEX-ZLV1-0126-SM-4WWBZ GTEX-13O3O-0326-SM-5K7W2 GTEX-T5JC-1526-SM-4DM68 GTEX-XBED-0826-SM-47JYC GTEX-XMD2-0326-SM-4YCD6 K-562-SM-3MJHH GTEX-11ONC-0526-SM-5BC57 GTEX-QV44-0008-SM-447AX GTEX-139TT-0011-R11b-SM-5LZV1 GTEX-ZDTS-1326-SM-4WKGX GTEX-13FLV-1426-SM-5J1N4 GTEX-11EMC-0926-SM-59863 GTEX-14ICL-0926-SM-5S2TU GTEX-147F3-0226-SM-5NQBV GTEX-PVOW-0426-SM-2XCF8 GTEX-OXRK-0126-SM-3NB1E GTEX-ZTX8-1826-SM-5N9E5 GTEX-145ME-1126-SM-5SIAT GTEX-ZF29-2126-SM-4WWB8 GTEX-ZF28-0726-SM-4WKFU GTEX-14A6H-0126-SM-5QGPK GTEX-12C56-0426-SM-5FQU1 GTEX-Y3I4-0126-SM-4TT26 GTEX-117YX-1626-SM-5GZZG K-562-SM-2TF5R GTEX-SN8G-0926-SM-4DM5I GTEX-XMD2-0008-SM-4WWE7 GTEX-111YS-1626-SM-5GZZ9 GTEX-ZYFC-0426-SM-5GICQ GTEX-WFG8-1326-SM-4LVN3 GTEX-1399U-0926-SM-5IFHA GTEX-11NV4-0526-SM-5N9BF GTEX-145LU-0011-R11b-SM-5P9JX GTEX-139TU-1226-SM-5J2NL GTEX-XGQ4-2326-SM-4AT53 GTEX-RWSA-0126-SM-2XCBB GTEX-14C39-1626-SM-5S2P4 K-562-SM-4QAR5 GTEX-RM2N-0926-SM-48FD1 GTEX-ZV6S-0826-SM-5NQ6Z GTEX-13N11-1126-SM-5KM41 GTEX-R53T-1126-SM-48FD4 GTEX-117YX-0826-SM-5H11J GTEX-RM2N-1726-SM-2TF55 GTEX-YEC3-0426-SM-4YCEP GTEX-S4P3-0008-SM-3NM8R GTEX-OHPN-0005-SM-2YUML GTEX-WRHK-0226-SM-4MVOH GTEX-OHPK-2626-SM-2HMK9 GTEX-Y5LM-1726-SM-4VDSX GTEX-13OW7-2926-SM-5MR3Z GTEX-R55G-1626-SM-48FF4 GTEX-12WSA-2926-SM-5EQ4D GTEX-11DXZ-1726-SM-5H12M GTEX-OHPJ-0626-SM-2YUMY GTEX-Y111-0226-SM-4SOIW GTEX-111YS-0926-SM-5EGGI GTEX-13FHP-0826-SM-5K7V5 GTEX-X5EB-2026-SM-4E3KA GTEX-WXYG-1426-SM-4ONCK GTEX-12WSK-0826-SM-5CVNP GTEX-11GSP-0226-SM-5A5KV GTEX-ZUA1-0426-SM-5NQAF GTEX-OXRO-1926-SM-2S1O3 GTEX-131YS-2426-SM-5J2OD GTEX-POYW-1326-SM-48TCG GTEX-Y5V5-0926-SM-4VBPZ GTEX-148VI-1726-SM-5S2W9 GTEX-11LCK-0226-SM-5A5M6 GTEX-WEY5-0001-SM-3P61Z GTEX-ZXES-0008-SM-57WCX GTEX-SJXC-0008-SM-4DM7G GTEX-12WSG-1426-SM-5FQUK GTEX-XV7Q-2626-SM-4BRVA GTEX-XUJ4-0926-SM-4BOPA GTEX-13FLV-2326-SM-5K7UK GTEX-12WSD-0011-R4b-SM-5LZUA GTEX-12WSD-2326-SM-59HKQ GTEX-13S7M-0011-R9a-SM-5O9DW GTEX-XUZC-1726-SM-4BRWS GTEX-XYKS-1326-SM-4BRUN GTEX-13W3W-1726-SM-5LU4A GTEX-14ASI-0011-R6a-SM-5S2UZ GTEX-13OW8-1426-SM-5IJDT GTEX-X4EO-2426-SM-4QASD GTEX-13OVL-0011-R5b-SM-5L3FU GTEX-PWCY-2026-SM-2S1NF GTEX-ZLFU-1826-SM-4WWBV GTEX-12WSK-1926-SM-5LZVK GTEX-SNMC-0526-SM-4DM69 GTEX-13FHP-3126-SM-5KLYX GTEX-YFC4-0226-SM-57WD2 GTEX-12WSL-2026-SM-5GCML GTEX-1313W-0011-R7b-SM-5DUWL GTEX-T5JC-1826-SM-4DM6E GTEX-YF7O-0826-SM-4W21F GTEX-144GL-0011-R6a-SM-5P9HW GTEX-OHPL-0626-SM-3MJGJ GTEX-OXRP-2326-SM-2S1NL GTEX-11OF3-2626-SM-5GU7F GTEX-YF7O-1526-SM-5IFI6 GTEX-11DXZ-1826-SM-5H12Y GTEX-PX3G-0526-SM-2I3EM GTEX-1313W-1426-SM-5KLZU GTEX-ZAB4-1526-SM-5CVN7 GTEX-PWN1-2526-SM-48TDS GTEX-WHSB-0326-SM-5FQSD GTEX-ZAB5-0426-SM-5CVMI GTEX-R55F-1326-SM-2TF5F GTEX-ZP4G-0008-SM-4E3I4 GTEX-13RTK-0426-SM-5RQHT GTEX-1477Z-0011-R3b-SM-5PNX9 GTEX-12ZZX-1026-SM-5LZUW GTEX-13X6I-0011-R8a-SM-5PNZF GTEX-ZYFG-0326-SM-5E45Z GTEX-12C56-1926-SM-5FQUG GTEX-XYKS-0826-SM-4BRVF GTEX-12WSK-1026-SM-5CVNR GTEX-QCQG-0726-SM-48U1Z GTEX-WEY5-2226-SM-3GILQ GTEX-11ZVC-0526-SM-5N9G1 GTEX-XYKS-0526-SM-4BRW2 GTEX-ZF3C-1626-SM-4WWB4 GTEX-WH7G-0726-SM-5EQ6C GTEX-YEC3-0726-SM-4YCD1 GTEX-131XE-0326-SM-5LZVO GTEX-ZF2S-0006-SM-4WKHF GTEX-ZEX8-0526-SM-4WKH5 GTEX-117YX-0226-SM-5EGH6 K-562-SM-2YUNN GTEX-X15G-0726-SM-4PQZ5 GTEX-146FH-2626-SM-5Q5E1 GTEX-14E6C-1026-SM-5SI6P GTEX-ZDTS-0526-SM-4WKH9 GTEX-144GN-0826-SM-5LU5G GTEX-13IVO-0626-SM-5LZYJ GTEX-OIZH-1826-SM-2YUNP GTEX-12ZZX-2826-SM-5BC6K GTEX-12WSK-1126-SM-5LZV8 GTEX-1497J-0726-SM-5Q5D1 GTEX-PVOW-0008-SM-48TE8 GTEX-11NUK-0005-SM-5MR5F GTEX-111CU-0926-SM-5EGIK GTEX-1128S-0326-SM-5GZZF GTEX-1192W-2326-SM-5N9BS GTEX-11WQK-2926-SM-5EQKT GTEX-ZDTT-0226-SM-4WKHM GTEX-UPJH-0826-SM-4WKFD GTEX-11WQC-2826-SM-5GU7A GTEX-132QS-0826-SM-5K7WV GTEX-ZDYS-0126-SM-5HL6X GTEX-11ZUS-0226-SM-5FQT8 GTEX-11TTK-0426-SM-5EQLT GTEX-QDT8-1326-SM-48TYY GTEX-14BMU-1926-SM-5S2QC GTEX-ZAB4-3126-SM-57WCJ GTEX-OHPM-1026-SM-3LK74 GTEX-131YS-0426-SM-5EQ4J GTEX-S4Z8-2126-SM-4AD5H GTEX-11EM3-0226-SM-5985Y GTEX-13OVI-0726-SM-5L3DD GTEX-13VXU-0126-SM-5SI9F GTEX-WY7C-1726-SM-4ONCC GTEX-12WSB-0226-SM-5GCOR GTEX-13G51-0826-SM-5K7VB GTEX-QEG5-0626-SM-2S1PP GTEX-145MN-0126-SM-5RQHY GTEX-145MF-1026-SM-5Q5EQ GTEX-RU1J-0826-SM-46MUU GTEX-13X6J-0011-R5b-SM-5PNWT GTEX-NPJ8-0011-R1a-SM-5SI8B GTEX-ZUA1-0826-SM-4YCDL GTEX-YJ89-0008-SM-4RGM4 GTEX-13CZU-0005-SM-5LU8K GTEX-T6MO-0626-SM-4DM6P GTEX-PLZ4-0006-SM-2S1NY GTEX-XYKS-2426-SM-4AT43 GTEX-Q734-1126-SM-48TZY GTEX-XLM4-0011-R8A-SM-4AT44 GTEX-RVPU-1526-SM-47JXQ GTEX-ZYWO-0126-SM-5GZWQ GTEX-PW2O-0826-SM-48TC5 GTEX-X3Y1-2026-SM-3P5YM GTEX-TMMY-0005-SM-33HBN GTEX-131XF-0126-SM-5DUVF GTEX-Y5LM-0226-SM-4VBRM GTEX-139UW-0011-R9b-SM-5LZYT K-562-SM-2TC5E GTEX-117YX-1226-SM-5H11S GTEX-ZVTK-0626-SM-5GU6Y GTEX-13RTJ-0011-R1a-SM-5O9D9 GTEX-111VG-0326-SM-5GZX7 GTEX-QDVJ-1326-SM-48U1X GTEX-TMKS-0126-SM-3DB7S GTEX-12WSA-0226-SM-5BC5V GTEX-T6MN-1126-SM-4DM71 GTEX-WRHU-1326-SM-4E3K7 GTEX-14A6H-2626-SM-5NQBO GTEX-S95S-1026-SM-4B64M GTEX-145MN-1026-SM-5NQ9G GTEX-148VJ-0426-SM-5S2V8 GTEX-11WQK-3226-SM-5EGI3 GTEX-YEC4-0726-SM-5CVLV GTEX-ZUA1-0011-R5b-SM-51MTG GTEX-13FHO-0526-SM-5K7VS GTEX-ZT9W-1226-SM-57WE4 GTEX-139TS-0005-SM-5NQC1 GTEX-WZTO-0001-SM-4PQZY GTEX-X15G-0826-SM-4PQZD GTEX-13N1W-1926-SM-5IJCH GTEX-1269C-0926-SM-5FQSR GTEX-145MG-0826-SM-5Q5C2 GTEX-144GM-0826-SM-5O98R GTEX-11LCK-0926-SM-5A5KA GTEX-11GSO-2826-SM-5HL6Q GTEX-SNOS-0003-SM-3NMAO GTEX-145LT-0926-SM-5LU9C GTEX-11ZUS-2926-SM-5FQSL GTEX-1313W-2826-SM-5P9G1 GTEX-RTLS-1326-SM-46MUN GTEX-S33H-0008-SM-4AD6C GTEX-13O3Q-0626-SM-5IJG1 GTEX-117YW-2626-SM-5GZZH GTEX-11EQ9-1926-SM-5PNVV GTEX-11EI6-0426-SM-5EQ43 GTEX-117XS-3026-SM-5N9CA GTEX-13NYS-0011-R5a-SM-5MR4D GTEX-14E6C-0926-SM-5S2V9 GTEX-11TTK-2726-SM-5GU58 GTEX-ZVZP-0004-SM-51MS8 GTEX-13OVJ-2726-SM-5IJG6 GTEX-Z93S-0011-R5b-SM-4RGNI GTEX-ZDTS-0006-SM-4WAYZ GTEX-OHPM-0008-SM-4E3IP GTEX-QDT8-3026-SM-32PKB GTEX-WWYW-0426-SM-3NB31 GTEX-ZT9W-2226-SM-57WFU GTEX-Q2AH-1926-SM-2S1PN GTEX-NPJ8-0011-R3a-SM-2HMIW GTEX-13IVO-0226-SM-5LZXU GTEX-YB5E-1526-SM-5IFIE GTEX-ZT9W-2026-SM-51MRA GTEX-WFJO-2026-SM-4LVM3 GTEX-13OVH-0011-R4a-SM-5KM3W GTEX-QV44-0426-SM-4R1KF GTEX-XMK1-2026-SM-4B65K GTEX-UPK5-1526-SM-4JBJA GTEX-131YS-1226-SM-5K7VE GTEX-OOBJ-1826-SM-3NB1C K-562-SM-5QGOR GTEX-11ONC-2926-SM-5P9JM GTEX-13VXU-0626-SM-5L3F9 GTEX-1399R-1226-SM-5P9GF GTEX-13O61-1226-SM-5KM21 GTEX-WWYW-0011-R7A-SM-3NB3H GTEX-RNOR-2226-SM-2TF5O GTEX-PSDG-1326-SM-48TD2 GTEX-OIZH-1426-SM-3NB1O GTEX-WHSE-0011-R3A-SM-3P5ZM GTEX-P4QT-1626-SM-2S1NP GTEX-13OVL-0426-SM-5IFG6 GTEX-131XG-0926-SM-5LZW5 GTEX-14E6C-0126-SM-5RQIP GTEX-SNMC-0926-SM-4DM5U GTEX-ZV6S-1826-SM-5NQ8D GTEX-131XH-0011-R6a-SM-5KM2G GTEX-145LT-1226-SM-5Q5BZ GTEX-UPK5-2326-SM-3P5Z8 GTEX-12WS9-0011-R10a-SM-57WBV GTEX-XBED-1926-SM-47JYP GTEX-SIU8-0326-SM-2XCDR GTEX-ZVT3-0126-SM-5GU6I GTEX-QXCU-0006-SM-2TC5K GTEX-131YS-0011-R10b-SM-5EQ5N GTEX-QDVN-0726-SM-4B64L GTEX-ZF2S-3026-SM-4WWCH GTEX-WL46-0526-SM-3LK7W GTEX-V955-2026-SM-3GAFA GTEX-XV7Q-2126-SM-4BRVX GTEX-ZE7O-0126-SM-57WC1 GTEX-13PVQ-1526-SM-5IFEQ GTEX-R53T-1026-SM-48FCO GTEX-ZYT6-1626-SM-5E45R GTEX-1122O-0326-SM-5H124 GTEX-ZXG5-1626-SM-59HJK GTEX-13VXU-0011-R3b-SM-5O9CU GTEX-11I78-2226-SM-5PNYA GTEX-11ZUS-0526-SM-59884 GTEX-11P81-1426-SM-5P9JN GTEX-WEY5-1426-SM-4LMJ3 GTEX-W5WG-2426-SM-4LMI6 GTEX-Y3IK-2826-SM-4WWDW GTEX-11ZTT-1726-SM-5EQL4 GTEX-XBEC-1026-SM-4QASM GTEX-11EQ9-0008-SM-5Q5DK GTEX-139YR-0526-SM-5L3DG GTEX-111YS-0006-SM-5NQBE GTEX-TML8-0926-SM-4DXSJ GTEX-ZQG8-0008-SM-4YCE7 GTEX-12ZZX-1226-SM-5EGHS GTEX-Q2AH-0326-SM-48U1K GTEX-Y3IK-1126-SM-51MSV GTEX-11NUK-2626-SM-5A5MB GTEX-OHPM-2626-SM-5SI7I GTEX-ZP4G-2326-SM-57WEM GTEX-1445S-0626-SM-5LU3C GTEX-RU72-0326-SM-2TF5T GTEX-ZYWO-0226-SM-5GZX3 GTEX-ZAB5-0926-SM-5CVMV GTEX-14753-0926-SM-5Q5BI GTEX-12BJ1-0006-SM-5SIB5 GTEX-14ABY-0726-SM-5Q5DF GTEX-POMQ-2326-SM-5S2VS GTEX-13OVJ-1826-SM-5KM2D GTEX-PLZ5-0006-SM-2S1NZ GTEX-RU1J-1326-SM-46MUL GTEX-OXRO-0011-R9A-SM-5S2W3 GTEX-13111-1526-SM-5EGJX GTEX-P4PP-3026-SM-3P61O GTEX-13X6J-0011-R3b-SM-5P9K5 GTEX-PLZ4-1626-SM-3P618 GTEX-WHSB-0626-SM-4M1XP GTEX-OIZI-1026-SM-3NB1K GTEX-PWN1-2626-SM-2I3FH GTEX-147F4-0006-SM-5O99T GTEX-13RTK-0326-SM-5RQHS GTEX-1399U-1026-SM-5J1OC GTEX-YJ8O-0226-SM-5S2NL GTEX-Y3I4-0726-SM-4TT7M GTEX-13O1R-0726-SM-5IJEI GTEX-RWSA-1726-SM-47JX7 GTEX-Q2AG-0626-SM-2S1PV GTEX-11O72-2326-SM-5BC7H GTEX-ZG7Y-0926-SM-5EQ6O GTEX-11ONC-0011-R8b-SM-5NQ87 GTEX-12126-0011-R11a-SM-5BC6X GTEX-WOFM-0126-SM-3MJFE GTEX-13X6K-0526-SM-5LU51 GTEX-X261-3226-SM-3NMC3 GTEX-TMZS-0126-SM-3DB9Q GTEX-RU72-0011-R7A-SM-2TF5U GTEX-ZV7C-2026-SM-5NQ8F GTEX-131YS-0326-SM-5PNYW GTEX-PLZ6-1426-SM-5S2TR GTEX-WXYG-1226-SM-4ONCJ GTEX-11H98-0011-R11b-SM-5NQ6U GTEX-ZV6S-1626-SM-5NQ81 GTEX-SN8G-0001-SM-3NM8L GTEX-P4PP-1026-SM-3NM9O GTEX-U3ZH-0926-SM-4DXU4 GTEX-ZTSS-0726-SM-51MSN GTEX-OXRN-2626-SM-48TBX GTEX-11LCK-1126-SM-5A5KC GTEX-WH7G-0626-SM-4LVMO GTEX-R55D-1826-SM-48FEF GTEX-146FR-1326-SM-5SIAJ GTEX-131XE-0126-SM-5LZVC GTEX-WZTO-0011-R11A-SM-4E3K9 GTEX-YB5E-0226-SM-5IFHI GTEX-14BIM-3126-SM-5Q5C7 GTEX-QCQG-0426-SM-48U29 GTEX-11TUW-0926-SM-5EQMW GTEX-X3Y1-1726-SM-4PQZL GTEX-R55G-0006-SM-2TC6O GTEX-WWYW-0826-SM-3NB2X GTEX-YEC3-2526-101809-SM-5CVLT GTEX-X261-0005-SM-4PQYX GTEX-ZAB4-0011-R3a-SM-4RGNQ GTEX-ZYFG-1226-SM-5GIC7 GTEX-PVOW-1626-SM-48TC9 GTEX-P4QR-0326-SM-5SI8P GTEX-13OVL-0011-R8a-SM-5L3HH GTEX-14ABY-0011-R9a-SM-5PNZK GTEX-RM2N-1826-SM-2TF5B GTEX-11P82-1326-SM-5HL62 GTEX-ZYFG-1726-SM-5GZZB GTEX-ZPIC-0926-SM-4WWFK GTEX-YEC4-1826-SM-4W1YP GTEX-XUJ4-0005-SM-4BOQ6 GTEX-11EQ9-2426-SM-5HL5T GTEX-UPIC-0002-SM-3NMDC GTEX-YFC4-1526-SM-5IFJS GTEX-WYVS-1426-SM-4ONCV GTEX-14E6E-1526-SM-5RQIG GTEX-139UW-0426-SM-5K7V4 GTEX-11OF3-3026-SM-5GU52 GTEX-RN64-0326-SM-2TC5J GTEX-NL4W-0011-R8a-SM-2I3G4 GTEX-P78B-1626-SM-5SI85 GTEX-W5WG-1426-SM-4KKZP GTEX-13OW8-1826-SM-5L3H1 GTEX-TKQ2-1226-SM-4DXSV GTEX-WYBS-0926-SM-3NM94 GTEX-X15G-1526-SM-4PQZM GTEX-S32W-2326-SM-2XCAW GTEX-13112-0226-SM-5P9IV GTEX-13N1W-3126-SM-5IFHB GTEX-11GSO-0011-R2a-SM-57WDF GTEX-13CF2-2626-SM-5LZZA GTEX-PWOO-1326-SM-48TCJ GTEX-NL3H-0011-R1a-SM-48TDJ GTEX-11OF3-1826-SM-5987N GTEX-WFG8-0126-SM-5CHTB GTEX-X62O-2226-SM-46MW3 GTEX-13CF2-2726-SM-5LZWW GTEX-111CU-0626-SM-5EGHL GTEX-QCQG-1726-SM-3GIJ9 GTEX-OOBJ-2626-SM-2I3F6 GTEX-S95S-1426-SM-2XCDM GTEX-SIU7-1126-SM-2XCDW GTEX-139TU-0626-SM-5KM3X GTEX-12BJ1-0226-SM-5LUA2 GTEX-12WSC-0826-SM-5EQ5Q GTEX-S95S-0326-SM-4B66U GTEX-XPT6-2126-SM-4B66P GTEX-145LV-0326-SM-5Q5BW GTEX-X585-0426-SM-4E3JZ GTEX-X261-0011-R10B-SM-4E3JT GTEX-RVPU-2226-SM-2XCAQ GTEX-QEG4-1126-SM-2S1P7 GTEX-QVUS-0626-SM-447CC GTEX-139T8-0626-SM-5KLZX GTEX-P4QS-1326-SM-3NMCD GTEX-ZVE2-2826-SM-5GU51 GTEX-ZT9W-0926-SM-57WFS GTEX-ZYT6-0126-SM-5E45J GTEX-ZVT3-0926-SM-5GICK GTEX-ZT9W-1126-SM-57WDR GTEX-13O1R-2526-SM-5N9FW GTEX-117XS-0426-SM-5GZZN GTEX-X585-1226-SM-46MW7 K-562-SM-5O98J GTEX-RVPU-2426-SM-2XCAR GTEX-145MH-0626-SM-5NQAK GTEX-ZP4G-1226-SM-4WWCJ GTEX-WHWD-0226-SM-4OORT GTEX-ZP4G-1626-SM-57WGD GTEX-11ZTS-0011-R3a-SM-5BC78 GTEX-VUSG-2826-SM-4KKZM GTEX-XLM4-0011-R6A-SM-4AT4B GTEX-12WSB-0011-R11b-SM-57WBJ GTEX-Y5LM-0626-SM-4V6G4 GTEX-P78B-0008-SM-48TE1 GTEX-P4QS-2126-SM-3NMCF GTEX-13OVG-2226-SM-5K7V8 GTEX-1477Z-1526-SM-5SI9V GTEX-Y8E4-2026-SM-5IFJB GTEX-14BMV-1426-SM-5S2WA GTEX-XV7Q-2326-SM-4BRVZ GTEX-PX3G-0426-SM-48U1C GTEX-N7MT-0011-R6a-SM-2I3G3 GTEX-139TT-0126-SM-5K7Y5 GTEX-T5JC-2326-SM-32PMR GTEX-13O1R-1326-SM-5IJF5 GTEX-13FH7-1626-SM-5J2O9 GTEX-131XG-2126-SM-5DUXG GTEX-ZVT2-1726-SM-51MRO GTEX-ZTPG-0726-SM-5DUXP GTEX-R45C-0008-SM-48FF2 GTEX-1192X-1026-SM-5H12P GTEX-13QBU-1826-SM-5IJG3 GTEX-13O3Q-2826-SM-5KM2N GTEX-YFC4-1026-SM-5RQJM GTEX-11GSP-1326-SM-5A5KY GTEX-QDVN-0006-SM-48U1R GTEX-13O21-3026-SM-5J2NI GTEX-SE5C-1226-SM-4BRWV GTEX-OXRK-1826-SM-2HMJE GTEX-WOFM-1626-SM-3MJFX GTEX-WYVS-1526-SM-4OND4 GTEX-11DXZ-1926-SM-5GZZL GTEX-1192X-3026-SM-5N9BM GTEX-13NYB-0126-SM-5J1MD GTEX-144FL-0626-SM-5LU43 GTEX-1269C-1826-SM-5N9E1 GTEX-OIZH-2026-SM-3NB1M GTEX-13N1W-0726-SM-5MR57 GTEX-13NZ8-3026-SM-5L3D4 GTEX-13PL7-2626-SM-5IFH4 GTEX-SUCS-0626-SM-5CHQE GTEX-OOBJ-2126-SM-3NB1N GTEX-QEL4-1926-SM-4R1JI GTEX-13O3O-0426-SM-5KM2Y GTEX-12WS9-0126-SM-5EGL7 GTEX-ZYVF-2226-SM-5GIDD GTEX-13OVH-3026-SM-5MR4N GTEX-WFJO-0326-SM-3GIL3 K-562-SM-5Q5CL GTEX-YJ89-0011-R11a-SM-4SOKA GTEX-13N1W-0011-R10b-SM-5MR4H GTEX-PVOW-0006-SM-3NMB8 GTEX-U8XE-0008-SM-4E3K4 GTEX-11VI4-0426-SM-5EGHZ GTEX-XQ3S-0926-SM-4BOPI GTEX-145MI-3126-SM-5Q5CF GTEX-WXYG-0005-SM-3NB3M GTEX-Y5V5-1026-SM-5LUAH GTEX-WYVS-2426-SM-3NMA9 GTEX-13OW8-0011-R10a-SM-5L3H6 GTEX-11LCK-2326-SM-5HL53 GTEX-ZYFD-0526-SM-5E442 GTEX-12ZZY-0226-SM-5LZVE GTEX-13113-1226-SM-5EGHT GTEX-S4UY-1626-SM-4AD55 GTEX-13OW8-0011-R8a-SM-5L3G5 GTEX-QLQW-1626-SM-4R1K1 GTEX-11LCK-0426-SM-5A5M8 GTEX-13OW5-0926-SM-5L3GZ GTEX-WYJK-0426-SM-3NM9G GTEX-N7MS-1126-SM-3LK5E GTEX-ZVP2-1426-SM-5NQ7P GTEX-ZV68-0226-SM-59HJF GTEX-NFK9-0226-SM-2HMKQ K-562-SM-5J2LX GTEX-Y114-0426-SM-4TT6V GTEX-QV31-0008-SM-447AT GTEX-ZLFU-1026-SM-5EQMZ GTEX-11EQ8-1326-SM-5EGJQ GTEX-13PVR-0926-SM-5S2RB GTEX-QDVJ-1426-SM-48U1Y GTEX-QVUS-0011-R8A-SM-3GAD7 GTEX-P4PP-0226-SM-5S2VR GTEX-WL46-0008-SM-4OOSW GTEX-PWCY-1826-SM-5SI7U GTEX-UTHO-1026-SM-3GAF7 GTEX-P44H-0011-R4A-SM-2XCEW GTEX-11ONC-2226-SM-5HL6D GTEX-P78B-1726-SM-3P5ZV GTEX-13CF2-0006-SM-5O99L GTEX-14A5H-1626-SM-5SIAN GTEX-11GS4-1026-SM-5N9DE GTEX-UPJH-0926-SM-4IHKA GTEX-Y8DK-0326-SM-4TT3P GTEX-X3Y1-0926-SM-3P5YT GTEX-RU72-0011-R2A-SM-2TF6O GTEX-S4Q7-1326-SM-4AD74 GTEX-X585-0011-R8A-SM-46MUX GTEX-ZPIC-2426-SM-5DUW1 GTEX-ZYFD-3126-SM-5E44O GTEX-148VJ-0006-SM-5NQB1 GTEX-13O1R-0826-SM-5J2MB GTEX-X15G-1726-SM-4PQZN GTEX-145MH-0011-R3b-SM-5P9JQ GTEX-11GS4-2526-SM-5A5KT GTEX-12ZZZ-1726-SM-59HK5 GTEX-1399U-1826-SM-5PNZ1 GTEX-139TS-1426-SM-5IFJD GTEX-144FL-2726-SM-5O98Z GTEX-U4B1-1426-SM-4DXTX GTEX-Y8LW-0326-SM-4VBQ9 GTEX-XUZC-0126-SM-4BOO6 GTEX-11ZUS-0011-R8a-SM-5BC73 GTEX-14753-1926-SM-5NQAA GTEX-NPJ7-1326-SM-3MJHO GTEX-13FTX-0326-SM-5J2NG GTEX-146FH-2526-SM-5Q5BP GTEX-1117F-1326-SM-5EGHH GTEX-148VJ-0726-SM-5LU8J GTEX-ZPIC-1026-SM-59HKZ GTEX-WQUQ-0126-SM-4OOSS GTEX-XUYS-0426-SM-47JX3 GTEX-Y5LM-0005-SM-4V6EJ GTEX-11EI6-0008-SM-5QGR7 GTEX-ZYFC-0626-SM-5GIDR GTEX-OHPN-2926-SM-3LK65 GTEX-NPJ8-2626-SM-2D7W2 GTEX-Y8E5-0226-SM-57WCM GTEX-YFC4-0011-R4a-SM-4RGLQ GTEX-R53T-0826-SM-48FCP GTEX-ZPCL-2026-SM-57WFD GTEX-11WQC-2626-SM-5CVLF GTEX-XV7Q-0326-SM-4BRVM GTEX-ZT9X-0004-SM-4YCDT GTEX-13NZA-0011-R8b-SM-5KM2Q GTEX-11GS4-1426-SM-5N9D2 GTEX-Y8DK-0011-R5B-SM-4RTW6 GTEX-14B4R-1426-SM-5Q5CG GTEX-ZDXO-0326-SM-4WKHJ GTEX-Y9LG-2326-SM-4VDS1 GTEX-T2IS-0826-SM-4DM6L GTEX-11ZTS-0011-R1a-SM-5BC71 GTEX-VUSG-0326-SM-3GIJ7 GTEX-UJHI-1126-SM-4IHLN GTEX-11DXZ-1426-SM-5H12A GTEX-SNMC-1026-SM-4DM7K GTEX-12WS9-3026-SM-5EGIE GTEX-PLZ6-0626-SM-3P61B GTEX-YF7O-2226-SM-5CVN8 GTEX-13FH7-1926-SM-5J2OL GTEX-ZLFU-0626-SM-4WWBO GTEX-12696-0926-SM-5FQTV GTEX-13VXT-0526-SM-5SI9O GTEX-QEG4-1226-SM-2S1P6 GTEX-YJ89-0011-R9a-SM-4SOK7 GTEX-12ZZW-2326-SM-5DUW2 GTEX-139T6-0626-SM-5IFF9 GTEX-139TU-0726-SM-5L3EK GTEX-139TU-0011-R5b-SM-5L3E1 GTEX-RTLS-0726-SM-46MV4 GTEX-13O21-1126-SM-5N9EV GTEX-XQ3S-1326-SM-4BOPQ GTEX-PX3G-0226-SM-2S1OU GTEX-SSA3-0002-SM-3P61R GTEX-WXYG-1626-SM-4ONCR GTEX-NL3H-0011-R11A-SM-2I3E6 GTEX-N7MS-0011-R2a-SM-2HML6 GTEX-QMRM-1126-SM-447BN GTEX-139D8-0226-SM-5KLZO GTEX-13OVJ-0726-SM-5KM1W GTEX-13FTY-0011-R1a-SM-5LZXE GTEX-S95S-0726-SM-4B64H GTEX-13O61-1526-SM-5KM3P GTEX-ZTPG-2226-SM-57WF9 GTEX-13FXS-0226-SM-5IJCK GTEX-PLZ4-0726-SM-2TC6Q GTEX-OHPL-0326-SM-33HC8 GTEX-S7SE-0005-SM-2XCEA GTEX-12WSF-0011-R4b-SM-5HL88 GTEX-12ZZY-0426-SM-5LZW3 GTEX-RVPV-0008-SM-47JYW GTEX-PWCY-2226-SM-2S1OP GTEX-11DXX-1126-SM-5GZZK GTEX-S4Z8-2026-SM-3K2A9 GTEX-O5YW-1526-SM-3MJGL GTEX-11ZTS-0011-R2b-SM-5BC75 GTEX-T5JC-0011-R11A-SM-32PMB GTEX-PWCY-1726-SM-48TD3 GTEX-13OVI-1926-SM-5IJCG GTEX-13VXT-1426-SM-5LU4B GTEX-1399R-1926-SM-5K7X8 GTEX-1399T-3026-SM-5KLZC GTEX-P44G-0526-SM-2XCD1 GTEX-14BIM-0006-SM-5O9AA GTEX-12WS9-0011-R2a-SM-5CVNE GTEX-P4QR-0426-SM-2S1NV GTEX-Y3I4-2226-SM-4TT7O GTEX-PWOO-0726-SM-2I3EB GTEX-139T8-0011-R1a-SM-5HL75 GTEX-WYJK-2426-SM-4ONDQ GTEX-ZV7C-0008-SM-57WCL GTEX-X4XX-0011-R4B-SM-46MWL GTEX-RWS6-0001-SM-3NMAL GTEX-13O1R-1226-SM-5J1NU GTEX-145MH-1226-SM-5RQJT GTEX-ZLWG-0226-SM-4WWC6 GTEX-13X6I-0926-SM-5LUAB GTEX-ZE7O-2726-SM-51MT5 GTEX-NPJ8-2626-SM-26GMZ GTEX-T5JC-2426-SM-3NMDB GTEX-XXEK-0004-SM-4BRWO GTEX-11ZUS-0011-R11b-SM-5BC7B GTEX-Y5V5-2126-SM-4WWFO GTEX-OXRK-0626-SM-2HMJ5 GTEX-13RTJ-3126-SM-5S2Q4 GTEX-11OF3-0006-SM-5O9CM GTEX-TMMY-1226-SM-4DXT6 GTEX-YECK-1326-SM-4W1ZF GTEX-XBED-1526-SM-4AT5W GTEX-QLQ7-1826-SM-2S1R5 GTEX-UJMC-1326-SM-4IHLS GTEX-U412-2026-SM-4DXSI GTEX-ZVE1-0008-SM-51MS9 GTEX-13S86-0626-SM-5Q5E7 GTEX-Y111-0326-SM-4SOIX GTEX-WFG7-0005-SM-3GIKM GTEX-11TUW-2326-SM-5EQMO GTEX-139YR-2126-SM-5KM11 GTEX-WFON-0126-SM-4LVM9 GTEX-ZAJG-2826-SM-5HL8D GTEX-13CZV-0011-R9a-SM-5LZXT GTEX-11EM3-0426-SM-5N9BZ GTEX-13G51-3226-SM-5IFG7 GTEX-XGQ4-1026-SM-4AT4L GTEX-14DAR-2226-SM-5S2VT GTEX-NPJ8-0007-SM-2D7VX GTEX-POYW-0526-SM-2XCEY GTEX-1497J-0226-SM-5QGPU GTEX-YEC4-1426-SM-5IFHS GTEX-Y8E4-0826-SM-4VBRS GTEX-P44H-2626-SM-2XCET GTEX-13OW8-0326-SM-5L3FB GTEX-1399S-2326-SM-5K7YV GTEX-RTLS-0626-SM-2TF6G GTEX-T8EM-1826-SM-4DM7F GTEX-ZDYS-1126-SM-5K7UB GTEX-Y8E4-2426-SM-4WWDN GTEX-WFON-0126-SM-5CHTF GTEX-POMQ-1426-SM-3P61D GTEX-XMK1-1326-SM-4B65Q GTEX-X4XX-0626-SM-3NMC1 GTEX-ZDXO-2426-SM-5S2NJ GTEX-132AR-0426-SM-5IFH8 GTEX-1269C-1026-SM-5N9EY GTEX-XMK1-0126-SM-4B65F GTEX-YJ8A-0526-SM-5IFHT GTEX-RUSQ-0226-SM-47JWT GTEX-ZF28-0126-SM-4WKGK GTEX-T5JW-1726-SM-3GADN GTEX-ZDTT-2726-SM-4WKF8 GTEX-13CZV-0011-R5a-SM-5K7XA GTEX-131XF-2526-SM-5EQ68 GTEX-ZLFU-1726-SM-4WWBU GTEX-T8EM-1026-SM-3DB7M GTEX-13OW6-0011-R5a-SM-5O9BK GTEX-Q2AH-1226-SM-48TZL GTEX-WQUQ-2626-SM-4MVNP GTEX-U8XE-2026-SM-5CHQF GTEX-U3ZN-1026-SM-4DXTC GTEX-12696-3126-SM-5FQUX GTEX-13OW6-2626-SM-5IFF2 GTEX-WHSE-0526-SM-5GZZD GTEX-13NZA-0826-SM-5K7WS GTEX-WVLH-1426-SM-4MVNX GTEX-13VXU-1026-SM-5KLZE GTEX-12WSM-0011-R6b-SM-5EQ6N GTEX-ZAKK-0426-SM-5EGHB GTEX-WFG8-0926-SM-3GIKJ GTEX-XYKS-1526-SM-4BRUP GTEX-ZE9C-0008-SM-4E3K6 GTEX-WHSB-1626-SM-3LK6J GTEX-X3Y1-0006-SM-3P5ZG GTEX-12KS4-0126-SM-5Q5A5 GTEX-ZTTD-0006-SM-51MSJ GTEX-ZT9X-0926-SM-5O9C4 GTEX-13N1W-0011-R5b-SM-5MR5Q GTEX-13O21-0626-SM-5IJDI GTEX-131XG-1726-SM-5LZUR GTEX-P4PP-2426-SM-3P61L GTEX-14A5H-0006-SM-5O9AI GTEX-13PVR-0326-SM-5RQJY GTEX-ZZPT-3026-SM-5GZXH GTEX-13YAN-2126-SM-5Q5C4 GTEX-VJYA-1026-SM-4KL21 GTEX-12ZZY-0011-R6b-SM-5EGLA GTEX-W5WG-2726-SM-4LMIC GTEX-12ZZX-2726-SM-5N9FT GTEX-ZA64-1226-SM-5HL7B GTEX-WFG8-2526-SM-3GILR GTEX-139YR-0126-SM-5IJEY GTEX-145MI-0011-R4b-SM-5PNZH GTEX-XMD2-0226-SM-4WWEE GTEX-ZUA1-0002-SM-4YCF7 GTEX-1399R-0006-SM-5N9FR GTEX-13QIC-0011-R11b-SM-5O9BU GTEX-X62O-0826-SM-46MW8 GTEX-ZY6K-1526-SM-5GZXE GTEX-11XUK-0126-SM-5CVLK GTEX-XLM4-3126-SM-4AT6M GTEX-1192W-0005-SM-5NQBQ GTEX-12BJ1-1526-SM-5LUAQ GTEX-Y8E5-0002-SM-57WD9 GTEX-ZVZP-1726-SM-5GZWY GTEX-WVLH-0011-R1A-SM-4MVOK GTEX-13OVI-0326-SM-5K7X1 GTEX-ZQUD-0526-SM-57WG4 GTEX-13NZ9-0526-SM-5J1OX GTEX-13OVJ-0011-R5a-SM-5P9H7 GTEX-14DAQ-2326-SM-5S2QX GTEX-11GSP-3226-SM-5986O GTEX-13NYS-0011-R8a-SM-5MR5H GTEX-Y3IK-0226-SM-51MRJ GTEX-WHSB-0426-SM-4M1XI GTEX-ZPIC-2326-SM-57WDW GTEX-PX3G-0226-SM-3NB2C GTEX-13OW6-3026-SM-5J2MI GTEX-11EI6-0126-SM-5985R GTEX-ZE7O-0011-R7a-SM-57WCU GTEX-11ZTT-1626-SM-5EQKR GTEX-14BIL-0226-SM-5SI9E GTEX-111YS-0826-SM-5GZYK GTEX-ZTPG-1426-SM-51MT3 GTEX-13O3O-2326-SM-5IJD6 GTEX-1313W-0926-SM-5EQ56 GTEX-12WSJ-0726-SM-5GCN6 GTEX-12WSC-0526-SM-5BC5X GTEX-UTHO-3126-SM-3P5ZB GTEX-13NYB-0826-SM-5MR4V GTEX-SNMC-0826-SM-4DM66 GTEX-Y3IK-0008-SM-4WWDZ GTEX-1211K-2226-SM-5FQU6 GTEX-ZUA1-0011-R3a-SM-4YCEE GTEX-Y3I4-0626-SM-4TT7A GTEX-ZYFC-1026-SM-5GZX9 GTEX-12584-0726-SM-5FQTK GTEX-ZC5H-1526-SM-5HL9Y GTEX-13FTW-1926-SM-5K7Y4 GTEX-147F4-2826-SM-5NQBN GTEX-11DXX-1726-SM-5H11T GTEX-14BMV-0005-SM-5NQ6Y GTEX-111YS-1026-SM-5GZYE GTEX-XMD1-0011-R6A-SM-4AT5K GTEX-ZVTK-0326-SM-51MRR GTEX-11UD2-0926-SM-5CVL6 GTEX-11WQC-2526-SM-5CVLE GTEX-13VXT-1026-SM-5LU37 GTEX-12WSL-2826-SM-5LZWL GTEX-11EI6-0326-SM-5EQ6G GTEX-T6MN-0008-SM-4DM7H GTEX-XAJ8-0926-SM-47JXZ GTEX-XUW1-0426-SM-4BOOT GTEX-13X6K-0011-R10a-SM-5P9JR GTEX-WEY5-0926-SM-4LMI4 GTEX-11GSO-1926-SM-5A5K3 GTEX-13VXT-1226-SM-5LU3M GTEX-14DAQ-1626-SM-5S2R1 GTEX-Y5V6-0326-SM-4VBRW GTEX-13PVQ-1826-SM-5L3GU GTEX-13NYS-0726-SM-5J1OR GTEX-OIZG-0426-SM-3LK5W GTEX-X4LF-0826-SM-4QASC GTEX-139TU-1126-SM-5J1NY GTEX-11EQ9-2126-SM-5PNVW GTEX-RU72-0526-SM-2TF5Z GTEX-ZF28-0011-R1a-SM-4WWD1 GTEX-14A6H-2326-SM-5Q5B5 GTEX-S32W-0826-SM-4AD5Z GTEX-11EQ8-0926-SM-5H12V GTEX-ZF28-0011-R6a-SM-4WKHI GTEX-ZZPU-2126-SM-5EGIU GTEX-S32W-1926-SM-4AD63 GTEX-Y114-1226-SM-4TT88 GTEX-SNOS-0826-SM-4DM5N GTEX-131XH-0011-R2b-SM-5DUVY GTEX-13RTJ-0011-R11a-SM-5O9CK GTEX-Y114-0226-SM-4TT8W GTEX-13SLW-0126-SM-5SI6C GTEX-O5YV-0426-SM-3LK66 GTEX-X3Y1-1126-SM-4PQZ9 GTEX-Y3IK-2226-SM-4YCD4 GTEX-Q2AG-0326-SM-48U1O GTEX-V955-0926-SM-4JBJ8 GTEX-1313W-0006-SM-5O9B1 GTEX-13OW5-0011-R4b-SM-5L3HS GTEX-13OW6-0226-SM-5J1NB GTEX-W5X1-2526-SM-3GILC GTEX-1313W-0626-SM-5EQ4H GTEX-RVPV-0011-R5A-SM-2TF69 GTEX-YEC3-2026-SM-5CVLQ GTEX-Y114-1326-SM-4TT9A GTEX-11ZTS-1526-SM-5N9G7 GTEX-XUW1-1926-SM-4BOP1 GTEX-12WSF-0011-R7b-SM-5HL99 GTEX-148VJ-2226-SM-5NQ9M GTEX-WZTO-1626-SM-4PQYR GTEX-ZVT2-0001-SM-57WCK GTEX-U3ZN-0426-SM-4DXSH GTEX-QMRM-0226-SM-4R1K7 GTEX-12696-0326-SM-5EGL4 K-562-SM-57WAW GTEX-RU72-2626-SM-4TT75 GTEX-WY7C-2126-SM-3NB2R GTEX-WXYG-0004-SM-4MVOS GTEX-OXRK-0008-SM-3NB28 GTEX-1117F-2226-SM-5N9CH GTEX-12BJ1-0426-SM-5FQSO GTEX-NPJ8-0426-SM-2HMK6 GTEX-WZTO-0011-R1B-SM-3NMAR GTEX-QDVN-0826-SM-48TZ2 GTEX-WL46-0011-R1A-SM-3LK6M GTEX-11DXX-2626-SM-5Q5A3 GTEX-13RTJ-2426-SM-5S2Q2 GTEX-11TUW-2626-SM-5EQKZ GTEX-14BMU-0226-SM-5S2QA GTEX-13PL6-0826-SM-5IJBI GTEX-13O3P-0526-SM-5K7UT GTEX-YEC3-0826-SM-5P9JF GTEX-XUJ4-1526-SM-4BONU GTEX-11O72-1126-SM-5N9E2 GTEX-UTHO-2926-SM-3P5Z9 GTEX-XUW1-0826-SM-4BOP6 GTEX-ZG7Y-0326-SM-4WWEY GTEX-11TUW-1926-SM-5BC58 GTEX-YB5K-1826-SM-5IFJC GTEX-12WSL-0005-SM-5NQAD GTEX-YEC3-2326-SM-5IFJF GTEX-QMRM-1226-SM-447C6 GTEX-ZYFG-0626-SM-5GZYA GTEX-QESD-0326-SM-47J4F GTEX-WFG7-1526-SM-4LVMG GTEX-YF7O-0626-SM-4W21R GTEX-QVJO-3126-SM-4R1KC GTEX-ZP4G-1026-SM-4YCE1 GTEX-12WSE-0011-R1b-SM-5GU4V GTEX-ZE9C-0011-R6a-SM-4WWCW GTEX-132NY-1726-SM-5EGKK GTEX-S341-1626-SM-3K2B8 GTEX-13FH7-2026-SM-5IJCR GTEX-13O61-1326-SM-5KM31 GTEX-144GL-0011-R1a-SM-5PNZ5 GTEX-Q2AH-1526-SM-48TZG GTEX-WXYG-1326-SM-4ONCN GTEX-13O3Q-0011-R8b-SM-5KM2J GTEX-ZVZP-1026-SM-5GICI GTEX-13O1R-1526-SM-5J1O7 GTEX-WH7G-1326-SM-4LVMS GTEX-ZVZP-0226-SM-5NQ73 GTEX-PWO3-0011-R2A-SM-2S1OX GTEX-ZP4G-1326-SM-5EGIW GTEX-XMK1-0005-SM-4B665 GTEX-QVUS-0426-SM-48FE3 GTEX-11LCK-1326-SM-5Q5AN GTEX-11LCK-1626-SM-5PNYB GTEX-U4B1-0008-SM-4DXUW GTEX-144FL-0426-SM-5O9A1 GTEX-13O3P-0126-SM-5KM4S GTEX-WYJK-1426-SM-3NM8V GTEX-TSE9-2826-SM-4DXTF GTEX-Y3IK-1326-SM-4YCD8 GTEX-Y3I4-1126-SM-4TT7Y GTEX-12WS9-0226-SM-5EQ4X GTEX-12C56-1526-SM-5FQUQ GTEX-NFK9-2226-SM-3MJGP GTEX-12ZZY-2926-SM-5DUXO GTEX-11OF3-3126-SM-5GU5E GTEX-WI4N-0726-SM-3TW93 GTEX-146FH-0926-SM-5SI96 GTEX-XV7Q-0526-SM-4BRWR GTEX-WHPG-0006-SM-3NMBV GTEX-RWS6-0005-SM-2XCAN GTEX-R55G-0008-SM-48FEX GTEX-144GM-2026-SM-5LU3D GTEX-Z93S-0011-R6b-SM-4RGNJ K-562-SM-48FEU GTEX-12WSL-1626-SM-5GCMU GTEX-Y5LM-0426-SM-4VBRO GTEX-YECK-0226-SM-4W215 GTEX-145ME-2026-SM-5SIA5 GTEX-ZTX8-0526-SM-59HLD GTEX-W5WG-2026-SM-4LMIB GTEX-11DYG-0126-SM-59883 GTEX-11ZUS-0326-SM-5EQ4W GTEX-ZLFU-0126-SM-5EQMN GTEX-11EI6-2226-SM-5EGJM GTEX-OOBK-0726-SM-3LK5Q GTEX-139UC-0011-R11a-SM-5KM3J GTEX-13OVH-1826-SM-5K7YW GTEX-V955-1926-SM-4KL1L GTEX-PLZ5-0826-SM-4E3JR GTEX-PWCY-0326-SM-43IRU GTEX-QXCU-0326-SM-2TC63 GTEX-X4EO-2926-SM-4E3JH GTEX-SIU7-1526-SM-4BRWQ GTEX-QDVN-2326-SM-2S1PF GTEX-TKQ1-0526-SM-4DXTG GTEX-13G51-0011-R2b-SM-5LZXS GTEX-OIZI-0226-SM-2XCEE GTEX-RU1J-1926-SM-2TF6S GTEX-QESD-1626-SM-2S1RB GTEX-ZYVF-0926-SM-5E44J GTEX-XPVG-0826-SM-4B654 GTEX-OOBK-1626-SM-2HMKG GTEX-131XF-0826-SM-5GICG GTEX-ZF3C-0326-SM-4WWBF GTEX-T2IS-0008-SM-4DM75 GTEX-O5YV-2026-SM-26GN2 GTEX-YJ89-0011-R6a-SM-4V6GN GTEX-145LV-1026-SM-5O9AE GTEX-XUZC-0426-SM-4BOPE GTEX-ZDXO-0011-R11a-SM-4WWD9 GTEX-111CU-0526-SM-5EGHK GTEX-11DXX-1226-SM-5GICD GTEX-Q2AI-0226-SM-48U1D GTEX-QEG4-0226-SM-2S1PY GTEX-WH7G-2326-SM-3NMBC GTEX-T5JC-0005-SM-4DM7B GTEX-SNOS-0726-SM-4DM5Z GTEX-WZTO-0426-SM-3NM99 GTEX-13O61-2126-SM-5IJEO GTEX-13RTK-0726-SM-5Q5EN GTEX-YB5E-0826-SM-4VDRZ GTEX-14BIL-0011-R9a-SM-5SI7A GTEX-WHWD-0005-SM-3LK7D GTEX-13FTX-1126-SM-5N9EN GTEX-13W3W-2726-SM-5SIAE GTEX-Z93S-0011-R2a-SM-4RGNG GTEX-YEC3-1926-SM-5IFIT GTEX-WHPG-1526-SM-4M1ZK GTEX-UJMC-0326-SM-3GAE2 GTEX-O5YW-0006-SM-3LK6E GTEX-12696-1326-SM-5FQTJ GTEX-S4P3-0426-SM-4AD56 GTEX-V1D1-1726-SM-4JBHB GTEX-12ZZZ-0011-R5a-SM-5EQ4M GTEX-XUZC-1626-SM-4BRVP GTEX-RNOR-2426-SM-48FDY GTEX-Y8E4-0626-SM-4WWDL GTEX-14ICL-1126-SM-5S2RE GTEX-13OW8-0011-R7a-SM-5L3FP GTEX-XUYS-0226-SM-47JX1 GTEX-11OF3-1926-SM-59889 GTEX-1399R-0826-SM-5IJEL GTEX-13FHP-0011-R6b-SM-5LZY6 GTEX-WYVS-0326-SM-3NM9V GTEX-ZT9W-0008-SM-4YCDJ GTEX-13S7M-0011-R11b-SM-5P9HU GTEX-ZAK1-2526-SM-5S2N7 GTEX-TSE9-3026-SM-3DB76 GTEX-XOTO-0126-SM-4B66N GTEX-WZTO-1026-SM-3NM9P GTEX-RNOR-0726-SM-2TF5I GTEX-QLQW-0005-SM-2S1RA GTEX-OHPK-0326-SM-2HMJO GTEX-WI4N-2726-SM-3LK7Y GTEX-12WSC-3026-SM-5GCNF GTEX-139YR-1826-SM-5LZXA GTEX-13N1W-0226-SM-5K7W6 GTEX-11UD1-0226-SM-5EQKL GTEX-XAJ8-1226-SM-47JYS GTEX-145LV-2126-SM-5LU8N GTEX-ZYT6-0426-SM-5GID3 GTEX-12WSL-2426-SM-5GCN7 GTEX-ZQG8-0001-SM-4YCDH GTEX-1117F-3026-SM-5GZYU GTEX-QVUS-0011-R4A-SM-3GAE7 GTEX-11P82-1626-SM-59879 GTEX-S4Q7-0926-SM-4AD5D GTEX-11UD1-0011-R5b-SM-5P9FP GTEX-11ZU8-0126-SM-5EQ58 GTEX-V955-2526-SM-4JBJG GTEX-13FLW-1426-SM-5K7YE GTEX-11OF3-1726-SM-5GU5Q GTEX-12WSL-0426-SM-5GCNX GTEX-WCDI-0002-SM-3P61U GTEX-SN8G-1526-SM-4DM79 GTEX-13JVG-0011-R7b-SM-5MR3Q GTEX-ZF2S-1126-SM-4WKHH GTEX-145MH-0011-R7a-SM-5PNWH GTEX-13O3P-0926-SM-5IFFI GTEX-13QBU-1726-SM-5IJFQ GTEX-13FXS-2826-SM-5LZYC GTEX-139TS-0011-R7a-SM-5K7X7 GTEX-X585-0005-SM-46MV3 GTEX-13U4I-0626-SM-5LU5L GTEX-WFG8-1826-SM-4LVM4 GTEX-11WQK-2626-SM-5EQ4K GTEX-ZF29-0226-SM-4WKHO GTEX-11LCK-0008-SM-5Q5BB GTEX-147F3-1926-SM-5SIB9 GTEX-S32W-1026-SM-4AD5W GTEX-13OW6-0426-SM-5L3HM GTEX-ZPU1-0426-SM-4WWCA GTEX-WVLH-0626-SM-3MJG7 GTEX-11EQ8-2626-SM-5N9BO GTEX-117YW-2826-SM-5H116 GTEX-13X6I-1026-SM-5LU4C GTEX-131YS-1626-SM-5HL6C GTEX-X15G-2526-SM-4PQZT GTEX-11GSO-2626-SM-5Q5AK GTEX-111CU-1226-SM-5EGIN GTEX-ZVP2-1626-SM-5GU5D GTEX-11EQ9-0726-SM-5A5K2 GTEX-S341-0426-SM-4AD5L GTEX-11VI4-0826-SM-5GU5N GTEX-13OW5-2926-SM-5IJF2 GTEX-ZVZQ-0011-R1a-SM-57WBU GTEX-XOT4-0626-SM-4B66L GTEX-WK11-0326-SM-4OOS6 GTEX-WHSE-0006-SM-3NMBW GTEX-14C5O-1326-SM-5S2UW GTEX-14A6H-2026-SM-5Q5DD GTEX-QMR6-0011-R10A-SM-32PKO GTEX-RUSQ-0006-SM-2TF6P GTEX-11P81-2026-SM-5P9GT GTEX-13YAN-0926-SM-5O9C3 GTEX-X4XX-0126-SM-3NMC2 GTEX-WL46-0011-R11A-SM-3MJFT GTEX-13D11-0426-SM-5LZYA GTEX-14AS3-0326-SM-5Q5DB GTEX-113IC-0126-SM-5HL6T GTEX-11P7K-2126-SM-5GU7G GTEX-11I78-0005-SM-5N9GB GTEX-11EQ9-0002-SM-5QGQ1 GTEX-WRHK-1626-SM-3MJFH GTEX-PWCY-0526-SM-2I3ER GTEX-13OW8-1226-SM-5K7XD GTEX-VUSG-1226-SM-4KKZF GTEX-12ZZY-0926-SM-5EQ6I GTEX-12WSD-0011-R6b-SM-5P9JU GTEX-ZV7C-1526-SM-5NQ72 GTEX-14ASI-0826-SM-5Q5EB GTEX-13OW6-1826-SM-5N9F9 GTEX-WFG7-0326-SM-3GILI GTEX-144GO-2726-SM-5O9A2 GTEX-1399T-0826-SM-5IFES GTEX-XQ8I-0926-SM-4BOOF GTEX-XV7Q-1326-SM-4BRWM GTEX-YEC4-1026-101814-SM-5P9FX GTEX-117YX-2626-SM-5EQ53 GTEX-Y5V5-1626-SM-4VDSG GTEX-12WSC-1126-SM-5EQ4G GTEX-X15G-1126-SM-4PQZG GTEX-131XE-2726-SM-5P9G7 K-562-SM-4M1XD GTEX-VUSH-0008-SM-47JWK GTEX-13NZ9-1226-SM-5MR3J GTEX-ZPCL-0008-SM-4WWAU GTEX-13X6J-0011-R4b-SM-5P9K4 GTEX-Y3I4-0326-SM-4TT28 GTEX-13PDP-1226-SM-5K7TW GTEX-1399R-1126-SM-5IFIO GTEX-SNOS-0326-SM-4DM6C GTEX-11GSP-0011-R11b-SM-5NQ7V GTEX-146FQ-0526-SM-5LU9I GTEX-11GS4-0626-SM-5A5LC GTEX-RTLS-1226-SM-46MUP GTEX-YECK-0926-SM-4W214 GTEX-XUYS-0008-SM-47JYZ GTEX-X4EP-0011-R4B-SM-3P627 GTEX-XQ8I-1526-SM-4BOOH GTEX-11TTK-2426-SM-5PNYO GTEX-Y111-0008-SM-4SOJ3 GTEX-ZY6K-1326-SM-5GZWP GTEX-XAJ8-0126-SM-47JYG GTEX-131XH-0426-SM-5DUWU GTEX-12WSE-0926-SM-5S2VX GTEX-Y5V6-0426-SM-4VBRZ GTEX-132QS-0926-SM-5P9GB GTEX-ZF3C-2326-SM-5S2MZ GTEX-QV44-2026-SM-2S1RD GTEX-11DXZ-0226-SM-5EGGZ GTEX-WK11-2726-SM-3NMAQ GTEX-WWYW-3226-SM-3NB3B GTEX-QMR6-0008-SM-447AV GTEX-XQ3S-0426-SM-4BOOA GTEX-WYBS-1126-SM-3NMAM GTEX-P4QS-0626-SM-3NMD1 GTEX-X4EP-0826-SM-3P5YK GTEX-13N2G-0826-SM-5IJE6 GTEX-X15G-2326-SM-4PQZS GTEX-ZAB4-0726-SM-5HL8I GTEX-XGQ4-0426-SM-4AT4I GTEX-RM2N-1126-SM-48FCY GTEX-S7SF-1426-SM-4AT5A GTEX-Q734-1826-SM-2I3EL GTEX-WVLH-0011-R10A-SM-3MJFM GTEX-12WSN-2526-SM-5LZU8 GTEX-PW2O-0008-SM-48TEB GTEX-117XS-0726-SM-5H131 GTEX-147F4-0126-SM-5QGPV GTEX-XMD1-0526-SM-4AT4Z GTEX-QDVN-0426-SM-48TZ6 GTEX-S3XE-1726-SM-3K2AM GTEX-1399S-0226-SM-5IFFG GTEX-ZVTK-0426-SM-51MRS GTEX-Q2AG-0011-R1A-SM-2HMJI GTEX-11WQK-0326-SM-5EQL1 GTEX-13FTZ-0126-SM-5K7V3 GTEX-144GL-0526-SM-5LU41 GTEX-SJXC-0005-SM-2XCE7 GTEX-ZDYS-0826-SM-4WWCR GTEX-X15G-1926-SM-4PQZQ GTEX-U3ZN-1926-SM-4DXSG GTEX-13CF2-1826-SM-5N9GK GTEX-131XE-0626-SM-5HL98 GTEX-13D11-2226-SM-5IFEO GTEX-QDVN-1026-SM-48TZA GTEX-R55G-2526-SM-2TC6D GTEX-X261-3126-SM-4PQZC GTEX-X3Y1-0426-SM-3P5Z4 GTEX-Z93S-2926-SM-57WB9 GTEX-14AS3-0226-SM-5Q5B6 GTEX-YECK-0326-SM-4W1YS GTEX-13OVI-1726-SM-5L3DW GTEX-WHPG-0004-SM-3NMDO GTEX-13PL7-2526-SM-5IFGR GTEX-13OVJ-0011-R6b-SM-5L3GH GTEX-UPJH-0726-SM-4IHJW GTEX-14H4A-0226-SM-5SI6Q GTEX-1399T-2626-SM-5L3E4 GTEX-13O21-2226-SM-5MR3L GTEX-11TT1-2426-SM-5EQMK GTEX-RU72-2226-SM-46MUE GTEX-13IVO-0011-R10a-SM-5LZY3 GTEX-11DZ1-2926-SM-5A5KI GTEX-WRHU-1226-SM-4E3IJ GTEX-P4QR-0226-SM-3NMCH GTEX-T5JC-1726-SM-4DM6U GTEX-SE5C-0726-SM-4BRWY GTEX-13QJC-0626-SM-5S2O9 GTEX-13VXT-1526-SM-5LU3J GTEX-1339X-2426-SM-5KLYU GTEX-WHSE-0726-SM-4RTXA GTEX-S95S-0008-SM-4AT5M GTEX-S95S-1126-SM-4B64E GTEX-Y3IK-0826-SM-51MT8 GTEX-Q734-0626-SM-2I3EF GTEX-QEL4-1026-SM-4R1JK GTEX-SIU8-0008-SM-4BRUC GTEX-Y5V5-2326-SM-4V6GA GTEX-14E6C-0226-SM-5S2N3 GTEX-13X6I-0011-R7b-SM-5PNWP GTEX-111YS-2126-SM-5EGGM GTEX-117YX-2226-SM-5EGJJ GTEX-OOBK-0126-SM-2YUND GTEX-13D11-1426-SM-5K7Y9 GTEX-RVPU-0011-R9A-SM-3NM8E GTEX-11UD2-0626-SM-5GU6L GTEX-ZYFD-0226-SM-5NQ86 GTEX-ZVTK-0226-SM-51MRG GTEX-TMMY-0226-SM-33HBA GTEX-WVLH-3126-SM-3MJGA GTEX-XBED-0003-SM-47JWP GTEX-13NZA-0011-R1b-SM-5LUAF GTEX-13W46-0526-SM-5IJBD GTEX-13NZA-0011-R5b-SM-5KM4K GTEX-11GSP-1726-SM-5A5LI GTEX-11EM3-2126-SM-5H11M GTEX-11TUW-0008-SM-5SI6S GTEX-12WSC-0226-SM-5EQ52 GTEX-14BMU-0926-SM-5S2QB GTEX-132NY-0626-SM-5L3D9 GTEX-13O3P-0326-SM-5K7VM GTEX-ZDTT-1126-SM-4WKFW GTEX-OHPL-1326-SM-3MJGG GTEX-13OVH-2926-SM-5IJFH GTEX-ZZPT-1426-SM-5N9C5 GTEX-XBEC-0326-SM-4AT4M GTEX-ZAB4-0926-SM-5CVN4 GTEX-PLZ5-0926-SM-3TW8L GTEX-13NZA-3126-SM-5IJFU GTEX-1399R-1326-SM-5PNYS GTEX-Q2AH-1726-SM-2S1OT GTEX-133LE-1526-SM-5IFEN GTEX-PSDG-1526-SM-48TCY GTEX-YF7O-0126-SM-5IFIR GTEX-ZVP2-0008-SM-51MSL GTEX-R55G-2126-SM-2TC67 GTEX-13O3Q-2426-SM-5IJBR GTEX-P44H-0011-R1A-SM-3NM8J GTEX-12C56-0226-SM-5N9FB GTEX-QLQ7-0326-SM-4R1JV GTEX-1399S-1526-SM-5P9JC GTEX-11DXY-2726-SM-5GID2 GTEX-T5JC-0226-SM-32PMA GTEX-12ZZX-0626-SM-5EQ46 GTEX-SJXC-2026-SM-4DM6N GTEX-13CIG-0011-R5b-SM-5L3F2 GTEX-Q2AI-0326-SM-2I3EK GTEX-147F3-1726-SM-5SIAW GTEX-139UW-0126-SM-5KM1B GTEX-QESD-0726-SM-4R1KQ GTEX-OXRK-1626-SM-3NB17 GTEX-13OW5-0011-R11b-SM-5L3GG GTEX-139YR-1626-SM-5IJGK GTEX-13JVG-0011-R6a-SM-5MR3E GTEX-11ZU8-0011-R3a-SM-5BC6U GTEX-132Q8-0011-R2b-SM-5EQ5Z GTEX-Q2AI-0826-SM-48TZO GTEX-12584-2126-SM-5FQUM GTEX-13CF3-1226-SM-5LZXN GTEX-XLM4-0005-SM-4AT4P GTEX-13W3W-0726-SM-5IJDQ GTEX-WHWD-0126-SM-4OORS GTEX-S4Z8-0626-SM-4AD6J GTEX-PWCY-0008-SM-48TE9 GTEX-R53T-0726-SM-48FCS GTEX-12WSC-2826-SM-5BC5Y GTEX-YFC4-3026-SM-5IFJK GTEX-WEY5-0006-SM-3GIKG GTEX-X3Y1-1326-SM-4PQZB GTEX-145MH-2926-SM-5Q5D2 GTEX-13D11-2626-SM-5IJDB GTEX-13JUV-0011-R6b-SM-5LZYG GTEX-YFC4-3226-SM-5CVM2 GTEX-13NZA-1726-SM-5J1NA GTEX-1211K-2126-SM-59HJZ GTEX-Y5V5-2726-SM-4VDS2 GTEX-13OW7-1926-SM-5LUB4 GTEX-ZTPG-0226-SM-5O99I GTEX-147F4-0226-SM-5QGPW GTEX-11ZTS-0526-SM-5CVL9 GTEX-RM2N-0726-SM-48FD5 GTEX-UJMC-0626-SM-4IHJQ GTEX-W5X1-2826-SM-3GILM GTEX-139T8-0006-SM-5NQ6V GTEX-13G51-2326-SM-5LZXV GTEX-UPK5-0326-SM-3GAF3 GTEX-13NYB-2526-SM-5K7Z6 GTEX-1399R-2226-SM-5P9JB GTEX-139D8-2426-SM-5KM3A GTEX-X261-2426-SM-4PQZU GTEX-139TU-0126-SM-5K7WH GTEX-RUSQ-0426-SM-47JWR GTEX-X261-0126-SM-3NMD6 GTEX-XPVG-0006-SM-4B65Z GTEX-T6MN-0011-R5A-SM-32QPD GTEX-12WSK-0126-SM-5GCO7 GTEX-139TT-0011-R3b-SM-5K7VL GTEX-WHSE-0626-SM-4RGNF GTEX-13FH7-0526-SM-5IJF8 GTEX-QEG5-0126-SM-4R1JR GTEX-WHWD-0826-SM-3LK6R GTEX-X3Y1-2626-SM-4PQZI GTEX-146FH-1226-SM-5NQB6 GTEX-WY7C-2026-SM-4ONCM GTEX-ZVT3-0726-SM-5GICN GTEX-13CF2-0011-R11b-SM-5LZXO GTEX-14C39-0005-SM-5NQBR GTEX-YBZK-0326-SM-59HLN GTEX-WHWD-0003-SM-4M1ZS GTEX-144GL-3026-SM-5Q5CW GTEX-RU72-0126-SM-2TF6Z GTEX-QDVJ-0008-SM-48U2E GTEX-SNMC-1526-SM-2XCFN GTEX-OXRP-0006-SM-2I3FN GTEX-13JVG-0426-SM-5MR59 GTEX-R55D-0126-SM-48FEL GTEX-XPVG-0926-SM-4B651 GTEX-N7MS-1225-SM-3LK5G GTEX-12WSM-1726-SM-5BC6J GTEX-Y3IK-0926-SM-51MQU GTEX-ZA64-0926-SM-5HL7H GTEX-11O72-0126-SM-59887 GTEX-ZDXO-1926-SM-5E45Q GTEX-X4EO-0004-SM-4QARM GTEX-QDT8-2926-SM-32PKC GTEX-13NZ9-0626-SM-5IJCO GTEX-XBEC-0726-SM-4QARZ GTEX-11GSP-2726-SM-5A5LJ GTEX-PWCY-0426-SM-48TCW GTEX-13W46-0226-SM-5SIAG GTEX-11NV4-0011-R7a-SM-57WDH GTEX-S7SF-1626-SM-3K2AY GTEX-Y5LM-1526-SM-4VDTA GTEX-YF7O-0926-SM-5IFIF GTEX-Q734-0006-SM-2I3FJ GTEX-WFG8-1526-SM-5CHSI GTEX-139YR-2526-SM-5IJC6 GTEX-ZTPG-1026-SM-5DUWP GTEX-14ASI-0011-R1b-SM-5S2TY GTEX-14E7W-1226-SM-5RQIU GTEX-Y5V6-1326-SM-4VDTF GTEX-ZAB4-0011-R11a-SM-4SOKI GTEX-WFJO-0002-SM-3P61X GTEX-139UW-1126-SM-5IJEJ GTEX-11EM3-1926-SM-5987U GTEX-1212Z-1826-SM-5FQSH GTEX-WZTO-2826-SM-3NM8P GTEX-ZTX8-1726-SM-51MSB GTEX-13O3O-1426-SM-5KM2S GTEX-RTLS-0008-SM-48FET GTEX-XQ8I-1326-SM-4BOPV GTEX-T5JW-0005-SM-3GADE GTEX-13PVQ-2226-SM-5L3G9 GTEX-131XG-0526-SM-5DUWF GTEX-145MO-0126-SM-5S2QU GTEX-12WSJ-0226-SM-5GCP7 GTEX-W5X1-0826-SM-3GILN GTEX-ZF2S-0126-SM-4WKFO GTEX-ZF29-1126-SM-4WKGO GTEX-111FC-1326-SM-5N9D9 GTEX-ZXES-1626-SM-5NQ7L GTEX-13FTY-0426-SM-5IJC2 GTEX-13111-2226-SM-5LZUE GTEX-V1D1-1926-SM-4JBGX GTEX-XLM4-0011-R2B-SM-4AT5Z GTEX-UJHI-0226-SM-4IHJL GTEX-13OVH-3126-SM-5MR4Z GTEX-U3ZH-0008-SM-4DXT2 GTEX-WWTW-0626-SM-4MVNS GTEX-13111-0726-SM-5DUVE GTEX-ZPU1-2726-SM-4WWFT GTEX-Q2AI-1226-SM-48U14 GTEX-131XE-1026-SM-5EGKE GTEX-QDT8-0011-R9A-SM-32PKH GTEX-ZEX8-1926-SM-4WKFR GTEX-WFON-0426-SM-3GIL4 K-562-SM-5L3FO GTEX-11EMC-2626-SM-59864 GTEX-12WSH-2826-SM-5GCP5 GTEX-ZYFD-2926-SM-5GID9 GTEX-QCQG-1326-SM-48U24 GTEX-X585-0011-R4B-SM-46MVH GTEX-QV44-1825-SM-447CF GTEX-QMR6-0011-R6A-SM-32PKP GTEX-U4B1-0826-SM-4DXTW GTEX-Y3IK-1726-SM-4YCCR GTEX-13112-0011-R1b-SM-5HL7K GTEX-Z93S-0011-R3b-SM-4RGNH GTEX-OXRP-0326-SM-5SI7J GTEX-13PL7-2126-SM-5L3HZ GTEX-13OW8-2726-SM-5L3FZ GTEX-Z93T-0126-SM-5HL5N GTEX-PSDG-0005-SM-3GADC K-562-SM-5PNWU GTEX-PVOW-1026-SM-5NQ7M GTEX-O5YT-1626-SM-32PK6 GTEX-13OW6-0005-SM-5NQ9Z GTEX-ZXES-0926-SM-5E43O GTEX-V1D1-0006-SM-3NMCE GTEX-13O21-0126-SM-5IJE8 GTEX-11EQ9-1326-SM-5985X GTEX-13PVQ-2126-SM-5L3FW GTEX-13NZ9-0726-SM-5J1ME GTEX-13D11-1926-SM-5IFGB GTEX-11I78-0526-SM-5986A GTEX-147JS-0726-SM-5S2UL GTEX-T5JC-0011-R10A-SM-32PM2 GTEX-11EQ9-0626-SM-5A5K1 GTEX-13PVR-1126-SM-5S2NX GTEX-11GSP-0326-SM-5A5KW GTEX-S33H-2226-SM-5S2UF GTEX-POYW-0526-SM-5KM2H GTEX-X585-0011-R2B-SM-46MVF GTEX-PWCY-2326-SM-2I3EQ GTEX-13NZ8-0326-SM-5L3DF GTEX-13OW7-0326-SM-5J1MP GTEX-11DXX-0226-SM-5P9HL GTEX-13O21-1426-SM-5K7XI GTEX-WEY5-1526-SM-4LMJF GTEX-SUCS-0926-SM-4DM4Z GTEX-S4UY-1226-SM-4AD51 GTEX-ZA64-0426-SM-5HL96 GTEX-WEY5-0426-SM-3GIKT GTEX-ZPU1-0006-SM-4WWAT GTEX-WL46-0011-R3A-SM-3TW8E GTEX-11ILO-2026-SM-5N9CQ GTEX-XBEW-1126-SM-4QARW GTEX-WHSE-0126-SM-3NMBT GTEX-13NYC-0326-SM-5K7WP GTEX-ZY6K-1926-SM-5GZXW GTEX-11P7K-0526-SM-5BC5I GTEX-11ZTT-2626-SM-5EQKK GTEX-13X6I-0011-R1b-SM-5PNZC GTEX-14B4R-1326-SM-5Q5EZ GTEX-NPJ8-0126-SM-2YUNR GTEX-R55E-0011-R5A-SM-2TC5N GTEX-WFG7-1226-SM-4LMK2 GTEX-YEC4-0626-SM-5CVLU GTEX-YEC3-0426-SM-5IFK1 GTEX-13111-0626-SM-5LZVR GTEX-12126-0326-SM-5PNW3 GTEX-WVLH-3026-SM-3MJG9 GTEX-145LS-2926-SM-5O99G GTEX-145MO-2426-SM-5NQ9W GTEX-12WSG-0726-SM-5EGIG GTEX-13OW5-0011-R5b-SM-5L3FR GTEX-148VJ-1026-SM-5LU98 GTEX-S7PM-0008-SM-3NM9Q GTEX-OXRK-0226-SM-3NB2G GTEX-Y8DK-0826-SM-4TT3T GTEX-1192X-0226-SM-5H12D GTEX-ZE9C-1426-SM-4WKGM GTEX-1313W-1026-SM-5EQ5I GTEX-ZUA1-0011-R11b-SM-51MTI GTEX-11NUK-1726-SM-5A5L2 GTEX-RTLS-0926-SM-2TF5X GTEX-ZE9C-2826-SM-5S2MO GTEX-T6MO-1726-SM-33HB8 GTEX-13CF2-0011-R1a-SM-5LZY1 GTEX-WH7G-1726-SM-4LVKY GTEX-ZVZP-0626-SM-59HL5 GTEX-146FH-1826-SM-5QGQ7 GTEX-145LT-0426-SM-5LUAP GTEX-14BIM-0326-SM-5SI9B GTEX-12WSH-3126-SM-5LZW8 GTEX-XOT4-0526-SM-4B66O GTEX-ZYFD-2126-SM-5E43D GTEX-X8HC-0626-SM-4E3HQ GTEX-11DXY-2626-SM-5GIE7 GTEX-XBEC-1326-SM-4AT69 GTEX-ZYT6-0926-SM-5GIEM GTEX-PLZ4-0226-SM-2S1NW GTEX-13FHP-2426-SM-5KLZ5 GTEX-13O21-2426-SM-5MR4A GTEX-XMK1-0326-SM-4B652 GTEX-ZV7C-0926-SM-59HL1 GTEX-12696-3026-SM-5FQTU GTEX-Y3I4-0226-SM-4TT27 GTEX-ZAB4-1426-SM-5CVN6 GTEX-YEC4-0326-SM-4W216 GTEX-P4QT-2426-SM-3NMCL GTEX-131XG-0126-SM-5K7UJ GTEX-11DYG-1226-SM-5N9DC GTEX-13SLX-0126-SM-5S2MM GTEX-131XG-0006-SM-5O9CE GTEX-13FTY-0226-SM-5IJBW GTEX-132AR-2726-SM-5PNVN GTEX-12WSD-2126-SM-5LZWK GTEX-Y3I4-0526-SM-4TT6X GTEX-WFG8-1126-SM-4LVN1 GTEX-13FTW-1026-SM-5L3E3 GTEX-QMRM-0626-SM-447BQ GTEX-WL46-0011-R6A-SM-3LK6X GTEX-139UC-0011-R9a-SM-5K7W7 GTEX-N7MS-0011-R10A-SM-2HMJK GTEX-XK95-0426-SM-4AT4R GTEX-WK11-2526-SM-3NM9Y GTEX-11DYG-1026-SM-5A5JQ GTEX-ZLV1-0526-SM-4WWD4 GTEX-S4Z8-1826-SM-3K2BH GTEX-X88G-0326-SM-47JZ4 GTEX-OOBJ-1626-SM-2I3F7 GTEX-13OW6-0726-SM-5L3FX GTEX-QDT8-0226-SM-32PL4 GTEX-ZAK1-1226-SM-5Q5AA GTEX-U8T8-0326-SM-3DB93 GTEX-13SLX-0011-R11b-SM-5O9C8 GTEX-147GR-0011-R2b-SM-5S2RQ GTEX-145MG-3026-SM-5RQJA GTEX-13O3O-0011-R11b-SM-5KM4G GTEX-WXYG-0926-SM-3NB2O GTEX-YFC4-0011-R5a-SM-4RGLR GTEX-VJYA-1226-SM-3GIJ6 GTEX-WRHK-0826-SM-3MJFG GTEX-NL3G-0008-SM-4E3JX GTEX-QV31-0526-SM-447C3 GTEX-13PVQ-0011-R9b-SM-5LU3B GTEX-12WSD-0011-R2a-SM-5LZWB GTEX-13FTX-1226-SM-5IFGN GTEX-11ZTT-1026-SM-5EQKF GTEX-13CF3-2126-SM-5IFJP GTEX-WFG7-1826-SM-3GIL1 GTEX-12WSB-0011-R1b-SM-5P9EY GTEX-ZDXO-1426-SM-4WKHG GTEX-XAJ8-0726-SM-47JY5 GTEX-ZYWO-1626-SM-5E44H GTEX-ZQUD-0226-SM-4YCEB GTEX-XBEW-0006-SM-4AT4E GTEX-XGQ4-0926-SM-4AT4U GTEX-P4QS-0426-SM-3NMCQ GTEX-12ZZW-0011-R4a-SM-5DUX9 GTEX-P44G-2326-SM-2XCCZ GTEX-11DXY-1026-SM-5987V GTEX-ZZ64-0626-SM-5GZWR GTEX-13OVJ-2326-SM-5IJGA GTEX-147GR-2826-SM-5RQK8 GTEX-QEG5-1126-SM-33HC2 GTEX-132AR-2226-SM-5J2NT GTEX-PWCY-1426-SM-48TCT GTEX-WQUQ-1526-SM-4OOSM GTEX-11EMC-3126-SM-5EGJP GTEX-U4B1-0626-SM-3DB8L GTEX-1269C-2826-SM-5EQ5O GTEX-PWN1-1826-SM-2S1PE GTEX-Q2AI-0626-SM-48TZU GTEX-XUW1-1826-SM-4BOQD GTEX-131XH-0626-SM-5LZWH GTEX-QVJO-1626-SM-2S1QW GTEX-131XF-0926-SM-5BC69 GTEX-Z93S-0226-SM-5HL7R GTEX-1399T-1526-SM-5P9J6 GTEX-ZE7O-0011-R5a-SM-57WBO GTEX-ZDTT-0008-SM-4E3K5 GTEX-13FTW-0326-SM-5K7UW GTEX-139TS-2126-SM-5K7XC GTEX-ZF2S-0004-SM-4WKFE GTEX-11ZTS-1226-SM-5EQMQ GTEX-WZTO-0011-R3B-SM-3NMC6 GTEX-ZXES-0626-SM-5E45P GTEX-13VXU-0011-R4b-SM-5O9CI GTEX-WOFM-0626-SM-4OOS3 GTEX-1313W-0526-SM-5P9FZ GTEX-11DXX-0726-SM-5H12X GTEX-Q734-0008-SM-48U2I GTEX-ZTSS-0008-SM-4YCE8 GTEX-WY7C-0006-SM-3NB3L GTEX-111YS-2226-SM-5987P GTEX-ZUA1-0326-SM-5NQA3 GTEX-13FTX-0226-SM-5K7TX GTEX-11EQ8-2826-SM-5N9C1 GTEX-ZP4G-2026-SM-57WEH GTEX-ZYFG-0526-SM-5GZXX GTEX-PLZ4-0006-SM-5SI8L GTEX-12WSB-2926-SM-59HKL GTEX-11P7K-1126-SM-5HL4L GTEX-ZLV1-2126-SM-4WWD2 GTEX-11DXX-2726-SM-5PNXO GTEX-QVUS-2926-SM-3GIJB GTEX-YEC4-0426-SM-4W1ZH GTEX-1128S-2626-SM-5H11Z GTEX-13JVG-0926-SM-5IJE1 GTEX-1339X-0726-SM-5L3FF GTEX-11DYG-1426-SM-5A5JR GTEX-X5EB-1826-SM-4E3K8 GTEX-OHPJ-0008-SM-4E3JG GTEX-11P81-0826-SM-5P9GR GTEX-ZF3C-0001-SM-4WWAW GTEX-Y3I4-1926-SM-4TT8L GTEX-WFG8-1226-SM-5CHTQ GTEX-139T4-0326-SM-5K7XN GTEX-ZDYS-1226-SM-5IJF3 GTEX-147F4-0926-SM-5Q5EO GTEX-X3Y1-0226-SM-3P5Z5 GTEX-11DXX-1826-SM-5H126 GTEX-ZP4G-1426-SM-4WWCL GTEX-T5JW-0726-SM-4DM6D GTEX-P44H-0011-R3A-SM-2XCEQ GTEX-XOTO-0726-SM-4B659 GTEX-WVLH-0011-R4A-SM-3MJFS GTEX-XOTO-3026-SM-4B65M GTEX-P4QS-2026-SM-3NMCG GTEX-13FHO-1026-SM-5KM1Q GTEX-OHPL-2426-SM-48TDN GTEX-13SLW-0011-R3b-SM-5SI6Y GTEX-RWSA-2026-SM-47JX8 GTEX-12WSG-2126-SM-5EGJ7 GTEX-144GN-0326-SM-5O9AD GTEX-QDVN-0626-SM-2I3FP GTEX-11GSP-0008-SM-5Q5DM GTEX-13JVG-0011-R5a-SM-5MR4O GTEX-14753-0526-SM-5QGPR GTEX-111FC-3126-SM-5GZZ2 K-562-SM-5O9BA GTEX-X4XY-0008-SM-46MVL GTEX-11DYG-0926-SM-5EGGW GTEX-OHPM-0726-SM-3LK7A GTEX-1117F-3226-SM-5N9CT GTEX-13FTY-2826-SM-5J2ML K-562-SM-4JBIQ GTEX-XBEC-1526-SM-4AT68 GTEX-TMMY-1326-SM-4DXU9 GTEX-11XUK-2426-SM-5GU72 GTEX-ZYT6-2726-SM-5GICP GTEX-13OVG-0226-SM-5LU93 GTEX-131XH-2726-SM-5GCO2 GTEX-11ONC-2726-SM-5N9DZ K-562-SM-5IFEL GTEX-RM2N-1326-SM-48FCW GTEX-13JUV-0011-R7b-SM-5LZZG GTEX-OIZG-1126-SM-2HMIU GTEX-Y114-0006-SM-4TT76 GTEX-13OVG-0926-SM-5J2OJ GTEX-145MI-0011-R5a-SM-5Q5B4 GTEX-13JVG-3226-SM-5IJGJ K-562-SM-5PNU4 GTEX-WHSE-0011-R11A-SM-3P5YY GTEX-13JVG-0011-R8a-SM-5KM3E GTEX-WHWD-0926-SM-4OORY GTEX-1339X-0626-SM-5IJER GTEX-13W3W-1226-SM-5LU4H GTEX-13OVG-1326-SM-5K7Y3 GTEX-13FLW-2126-SM-5N9FD GTEX-QDT8-0011-R9A-SM-5SI8J GTEX-ZLV1-2026-SM-5EQMB GTEX-WY7C-2526-SM-3NB2N GTEX-WL46-0126-SM-3TW8I GTEX-13OW5-0011-R6b-SM-5O9BW GTEX-11NUK-0726-SM-5A5ME GTEX-XBEC-0426-SM-4QART GTEX-111CU-1126-SM-5EGIM GTEX-ZQUD-2126-SM-51MSY GTEX-Q734-0726-SM-48TZP GTEX-OXRO-0011-R9A-SM-3NB1X GTEX-14BIL-0426-SM-5SIA3 GTEX-UPIC-0626-SM-4IHK2 GTEX-1122O-1426-SM-5H11R GTEX-U8XE-0126-SM-4E3I3 GTEX-13PL6-0926-SM-5KLYY GTEX-RU1J-0626-SM-4WAWY GTEX-RNOR-2326-SM-2TF4I GTEX-WL46-2826-SM-3LK81 GTEX-S4UY-1426-SM-4AD6Y GTEX-YJ89-0011-R1a-SM-4RGLS GTEX-XUW1-0226-SM-4BOOS GTEX-12KS4-1526-SM-5EQ6E GTEX-13NYB-0011-R6b-SM-5MR51 GTEX-11WQK-0011-R8a-SM-5BC7C GTEX-W5WG-2226-SM-4LMI3 GTEX-ZAB4-2226-SM-5HL97 GTEX-OIZH-3026-SM-3NB1G GTEX-PX3G-0326-SM-2I3EO GTEX-ZPIC-1126-SM-5BC7F GTEX-14DAR-2026-SM-5S2O3 GTEX-WL46-0011-R2A-SM-3LK6O GTEX-RU72-0011-R8A-SM-2TF61 GTEX-12WSN-0826-SM-5GCOF GTEX-OXRP-0126-SM-48TDI GTEX-SNOS-0526-SM-4DM54 GTEX-13O3P-1126-SM-5L3FG GTEX-11P81-0008-SM-5S2OT GTEX-139D8-2526-SM-5N9G3 GTEX-13N2G-0011-R11a-SM-5MR3F GTEX-ZAK1-0626-SM-5HL8E GTEX-12WSM-1426-SM-5GCPA GTEX-13OW6-3126-SM-5L3IA GTEX-ZVZQ-0011-R6b-SM-57WAY GTEX-148VJ-0326-SM-5QGQE GTEX-12WS9-0826-SM-59HJX GTEX-ZVT3-0011-R5a-SM-51MSI GTEX-ZPCL-1726-SM-57WEO GTEX-REY6-0726-SM-2TF4M GTEX-XPVG-2026-SM-4B65E GTEX-U3ZM-0526-SM-4DXTB GTEX-13112-3126-SM-5IFGP GTEX-WRHU-2826-SM-3MJG8 GTEX-11NUK-1226-SM-5P9GM GTEX-11ZVC-0326-SM-5CVLC GTEX-12ZZZ-3126-SM-5LZU6 GTEX-145LT-1026-SM-5LU9O GTEX-OOBK-0005-SM-2YUMG GTEX-13PLJ-0126-SM-5L3HU GTEX-YFC4-0926-SM-5S2U7 GTEX-WH7G-1526-SM-4LVMX GTEX-PLZ5-1526-SM-3P5ZX GTEX-ZDTS-0826-SM-4WKHL GTEX-W5WG-1726-SM-4LMI5 GTEX-RVPU-0011-R4A-SM-5SI8K GTEX-WXYG-1726-SM-4ONCU GTEX-SNMC-1626-SM-4DM52 GTEX-13NZA-0011-R10b-SM-5KM54 GTEX-N7MT-0226-SM-48TC3 GTEX-117YX-2326-SM-5H12W GTEX-14BIL-2926-SM-5SIAF GTEX-12WSJ-1226-SM-5LU91 GTEX-144FL-0326-SM-5O99O GTEX-ZAB4-1026-SM-5HL7T GTEX-XMD1-0011-R5A-SM-4AT47 GTEX-14ABY-0011-R6a-SM-5PNWR GTEX-145ME-0726-SM-5O9A3 GTEX-YF7O-0426-SM-5P9FS GTEX-YEC4-0226-SM-4W1YG GTEX-12ZZY-0726-SM-5EQ66 GTEX-WOFM-1126-SM-4OOSB GTEX-WWYW-0011-R10A-SM-3NB35 GTEX-R55E-0426-SM-2TC65 GTEX-Y5V6-0008-SM-4V6FV GTEX-14BMV-0126-SM-5S2PO GTEX-REY6-0826-SM-2TF4S GTEX-RWSA-1426-SM-47JXA GTEX-PVOW-0426-SM-5MR5R GTEX-T6MN-0011-R2A-SM-32QOW GTEX-P78B-0626-SM-5S2W4 GTEX-WHSB-0526-SM-4M1XM GTEX-QCQG-0008-SM-48U2G GTEX-NL4W-0011-R11A-SM-2I3DW GTEX-X3Y1-0008-SM-4PR12 GTEX-13O21-0726-SM-5L3EG GTEX-UPIC-1526-SM-4IHLU GTEX-ZV68-0326-SM-59HJG GTEX-11EMC-1426-SM-5N9E4 GTEX-13SLW-0326-SM-5RQK5 GTEX-ZZ64-1326-SM-5E444 GTEX-13O61-2026-SM-5J2M6 GTEX-11ZTS-3026-SM-5EQM7 GTEX-1313W-0011-R3a-SM-5EGLI GTEX-RU1J-1726-SM-2TF5S GTEX-11EQ9-2026-SM-5P9JI GTEX-ZYT6-1326-SM-5E453 GTEX-11WQK-2326-SM-5GU4Z GTEX-139TT-0326-SM-5IJC3 GTEX-12WSD-0126-SM-59HKN GTEX-13VXU-0011-R5a-SM-5O9D7 GTEX-146FH-1626-SM-5NQ9H GTEX-WH7G-1626-SM-4LVMY GTEX-WYVS-0726-SM-4ONDO GTEX-XXEK-0126-SM-4BRVU GTEX-S4UY-0008-SM-3NM8H GTEX-N7MT-0126-SM-26GMS GTEX-X4XY-0526-SM-46MW1 GTEX-WWTW-0008-SM-4MVPE GTEX-TSE9-0226-SM-3DB84 GTEX-N7MT-0126-SM-26GMB GTEX-12WSD-0011-R1b-SM-5LZVY GTEX-P4QT-0226-SM-3LK68 GTEX-P44H-0011-R3A-SM-5SI8A GTEX-13JVG-0726-SM-5KM16 GTEX-Y5V5-2626-SM-5IFJM GTEX-P4PP-2026-SM-3P61N GTEX-XLM4-0226-SM-4AT4N GTEX-OHPL-0726-SM-3TW8U GTEX-XBEW-0226-SM-4AT6A GTEX-TSE9-0011-R10A-SM-3DB7O GTEX-X638-0003-SM-47JZ1 GTEX-S341-0008-SM-4AD6D GTEX-U8XE-0226-SM-4E3J3 GTEX-U3ZM-1126-SM-4DXUB GTEX-1445S-0011-R6b-SM-5PNUF GTEX-13OW7-0426-SM-5K7VK GTEX-QCQG-1226-SM-48U23 GTEX-WXYG-2226-SM-4E3IM GTEX-OOBJ-0926-SM-48TDO GTEX-11WQC-0008-SM-5SI6R GTEX-SIU7-0526-SM-3NM8I GTEX-13G51-1026-SM-5K7YQ GTEX-ZV68-0011-R2a-SM-4YCDK GTEX-11DXX-1026-SM-5H11E GTEX-XLM4-0011-R9A-SM-4AT45 GTEX-13113-1926-SM-5LZWG GTEX-13JUV-0011-R11a-SM-5LZYH GTEX-13OVL-0626-SM-5KM13 GTEX-UTHO-0006-SM-3NMCC GTEX-ZYW4-0926-SM-59HJS GTEX-139D8-1626-SM-5IJFZ GTEX-131YS-3226-SM-5IFGV GTEX-S7PM-0426-SM-3NM91 GTEX-QEL4-0326-SM-3GAE5 GTEX-1339X-2726-SM-5PNYU GTEX-ZPCL-1126-SM-4WWFE GTEX-XXEK-1126-SM-4BRUX GTEX-NFK9-1726-SM-3TW8P GTEX-ZDYS-2426-SM-4WKGI GTEX-131XE-2526-SM-5EQ57 GTEX-S7PM-0011-R5A-SM-3NM8G GTEX-W5WG-2526-SM-4SOJ2 GTEX-XQ3S-0526-SM-4BOQA GTEX-ZVT4-1326-SM-5NQ8E GTEX-146FH-0226-SM-5QGPQ GTEX-13OVG-0626-SM-5IFEP GTEX-ZDYS-1726-SM-5HL4Y GTEX-13OVJ-0326-SM-5L3GL GTEX-WWYW-1326-SM-3NB2S GTEX-13FXS-0011-R1a-SM-5K7U6 GTEX-13QBU-0326-SM-5LU3F GTEX-144GL-0011-R11b-SM-5P9F6 GTEX-146FH-0126-SM-5QGPP GTEX-ZP4G-0006-SM-4WWE6 GTEX-WHPG-1026-SM-3NMBA GTEX-P4QS-0926-SM-48TBS GTEX-ZTSS-1926-SM-57WEW GTEX-11NSD-1726-SM-5N9C3 GTEX-RTLS-0326-SM-2TF6A GTEX-T2YK-2226-SM-32QPT GTEX-X4XX-0011-R5A-SM-46MWN GTEX-YBZK-0226-SM-59HLO GTEX-XUZC-2126-SM-4BRW8 GTEX-YB5K-0003-SM-4VDSN GTEX-148VI-1226-SM-5RQJR GTEX-XQ3S-0006-SM-4BOQ4 GTEX-X5EB-0826-SM-46MVS GTEX-133LE-2226-SM-5IFGU GTEX-ZVT2-0626-SM-5GICR K-562-SM-4AD4F GTEX-QESD-0008-SM-447B2 GTEX-145LU-0011-R9b-SM-5SI66 GTEX-U412-0326-SM-5DUVP GTEX-13OW6-0011-R2a-SM-5L3HG GTEX-14DAQ-3026-SM-5S2QZ GTEX-1399U-2426-SM-5K7XB GTEX-ZT9W-2426-SM-57WFJ GTEX-1399R-0926-SM-5J2N8 GTEX-WHWD-1426-SM-4OORU GTEX-13FHO-0011-R1b-SM-5KLZG GTEX-131XE-0826-SM-5HL9W GTEX-13N1W-0011-R4a-SM-5MR52 GTEX-ZTX8-0726-SM-59HL9 GTEX-ZVT3-0006-SM-51MT9 GTEX-X4EP-0011-R1A-SM-3P624 GTEX-111CU-1026-SM-5EGIL K-562-SM-4BRWK GTEX-R55E-1026-SM-2TC5S GTEX-12WS9-0011-R4b-SM-5P9EU GTEX-13RTJ-0011-R10b-SM-5O9CW GTEX-13S7M-0011-R6b-SM-5O9D8 GTEX-13NYS-1626-SM-5J2MU GTEX-TKQ2-0004-SM-3NMAC GTEX-RUSQ-0003-SM-2XCEB GTEX-XQ3S-1026-SM-4BOPJ GTEX-S32W-0126-SM-4AD61 GTEX-ZTSS-0926-SM-59865 GTEX-X4EO-0126-SM-3P5YN GTEX-13O3O-0011-R6b-SM-5P9GY GTEX-Q2AI-1326-SM-2S1PL GTEX-12WSH-0011-R9b-SM-5LZUG GTEX-ZVE2-0326-SM-57WFC GTEX-S32W-0326-SM-2XCBI GTEX-ZF2S-0326-SM-4WKGD GTEX-UTHO-2426-SM-4JBHD GTEX-WYBS-0008-SM-4ONDX GTEX-Y5LM-1826-SM-4VDT9 GTEX-11NUK-1026-SM-5HL5J GTEX-YJ8O-2826-SM-5CVM4 GTEX-ZA64-1426-SM-5CVMC GTEX-12126-1026-SM-5P9JJ GTEX-WZTO-1126-SM-3NM93 GTEX-WHSE-1626-SM-4M1XL GTEX-X5EB-0426-SM-46MVY GTEX-ZVT2-1326-SM-5E45H GTEX-147JS-1026-SM-5S2MP GTEX-ZVE1-0726-SM-51MRN GTEX-WXYG-0126-SM-4OND7 GTEX-QEL4-2126-SM-447AE GTEX-145MO-3126-SM-5S2RT GTEX-WWYW-3126-SM-3NB39 GTEX-11LCK-1226-SM-5Q5AM GTEX-XBED-1626-SM-47JYN GTEX-13CF2-0011-R5a-SM-5LZWS GTEX-13O3P-1426-SM-5L3DT GTEX-ZV68-0008-SM-4YCCV GTEX-VUSG-0426-SM-3GIKD GTEX-14BMV-2326-SM-5RQJ4 GTEX-11TT1-0005-SM-5NQ8Y GTEX-12WSG-0326-SM-5FQU3 GTEX-QEG4-0626-SM-2S1OY GTEX-13VXU-2926-SM-5LU5C GTEX-145LU-0526-SM-5O9AT GTEX-131XE-2426-SM-5EQ5V GTEX-ZAB4-0011-R8b-SM-4SOKF GTEX-13OVJ-0926-SM-5K7U1 GTEX-XQ3S-0126-SM-4BOO9 GTEX-11DXZ-0726-SM-5N9C4 GTEX-13NYB-3026-SM-5IJD7 GTEX-131XE-1226-SM-5EGKF GTEX-WEY5-2126-SM-3GILK GTEX-ZDTT-0006-SM-4WKFP GTEX-113JC-0008-SM-5QGR6 GTEX-13111-1926-SM-5GCOL GTEX-ZV6S-0226-SM-59HJT GTEX-11NSD-0426-SM-5N9CR GTEX-13PVQ-1026-SM-5KM3M GTEX-QCQG-0126-SM-48U27 GTEX-132NY-0726-SM-5KLZM GTEX-11ZTS-1426-SM-5EQMM GTEX-ZVZQ-0008-SM-51MSK GTEX-11DXZ-0526-SM-5GU7J GTEX-OHPN-0226-SM-48TBV GTEX-Y114-2726-SM-4TT9B GTEX-12WSG-0226-SM-5EGIF GTEX-ZZPU-1426-SM-5GZZ6 GTEX-SNOS-0008-SM-4DM6I GTEX-13CIG-0011-R8b-SM-5LZX5 GTEX-YJ8A-0826-SM-5Q5A7 GTEX-UTHO-0011-R5A-SM-3GIJD GTEX-ZF2S-1426-SM-57WET GTEX-13O3O-0011-R8b-SM-5LUAL GTEX-S4P3-1626-SM-3K2AZ GTEX-XMD1-0006-SM-4AT4Q GTEX-VJWN-0626-SM-3NMAN GTEX-11NV4-2026-SM-5N9DG GTEX-11DZ1-0126-SM-5985Q GTEX-W5WG-2326-SM-3GIJH GTEX-QV44-0926-SM-2S1RH GTEX-X4XX-0011-R3B-SM-46MWK GTEX-NPJ7-0011-R2a-SM-2I3GF GTEX-YB5K-2226-SM-4WWG1 GTEX-ZY6K-0826-SM-5A5L7 GTEX-13W3W-2226-SM-5LU4M GTEX-ZVT2-1826-SM-5NQ8W GTEX-ZYWO-2226-SM-5GZXR GTEX-ZE9C-0011-R3a-SM-4WKGT GTEX-WQUQ-1926-SM-4OOSA GTEX-13OVG-0726-SM-5IJBY GTEX-ZYWO-2026-SM-5GIDA GTEX-U8T8-0426-SM-3DB8X GTEX-13OW5-0626-SM-5J2N2 GTEX-132NY-0526-SM-5EQ4V GTEX-UJMC-0426-SM-4IHJF GTEX-13QJC-0011-R8b-SM-5S2U6 GTEX-12WS9-0011-R3a-SM-5CVNF GTEX-11DXX-1326-SM-5GIDZ GTEX-XV7Q-0226-SM-4BRVL GTEX-QLQW-1326-SM-2S1QS GTEX-13SLW-2826-SM-5Q5ES GTEX-TSE9-1326-SM-5CHR5 GTEX-ZUA1-0011-R6b-SM-4YCDD GTEX-1128S-1626-SM-5H12O GTEX-OHPK-0426-SM-3MJH3 GTEX-ZDTS-1426-SM-5K7WC GTEX-UJHI-1426-SM-3DB9C GTEX-11NV4-1326-SM-5HL6V GTEX-14AS3-1126-SM-5Q5CR GTEX-132QS-0726-SM-5IJE9 GTEX-13OW6-1626-SM-5IJD5 GTEX-P4QS-1726-SM-3NB1V GTEX-YB5E-0426-SM-5IFHR GTEX-ZLFU-0526-SM-4WWBN GTEX-11P81-2426-SM-5GU65 GTEX-Q2AI-0926-SM-48U1F GTEX-ZLWG-0008-SM-4E3J4 GTEX-ZE9C-1326-SM-5S2OW GTEX-WHPG-2226-SM-3NMBO GTEX-Y9LG-1926-SM-5IFHY GTEX-WWTW-0002-SM-4MVNH GTEX-SNOS-1226-SM-4DM5H GTEX-13PVQ-0011-R7a-SM-5L3G3 GTEX-13NYS-0011-R3b-SM-5MR41 GTEX-T8EM-1226-SM-4DM5J GTEX-U8XE-1526-SM-4E3HT GTEX-13OW5-0826-SM-5J1NE GTEX-ZYT6-1126-SM-5GZYR GTEX-XOTO-0526-SM-4B662 GTEX-WXYG-0826-SM-4ONC7 GTEX-PWOO-1226-SM-48TCO GTEX-111VG-1626-SM-5EGIO GTEX-RM2N-1426-SM-2TF4H GTEX-14E6C-2626-SM-5RQJP GTEX-145MI-0326-SM-5Q5EV GTEX-YFCO-0926-SM-5LUA5 GTEX-13X6K-0011-R7b-SM-5P9K7 GTEX-11DXZ-2026-SM-5987S GTEX-113IC-0006-SM-5NQ9C GTEX-SSA3-0008-SM-47JWJ GTEX-ZPCL-2426-SM-57WFP GTEX-13G51-2626-SM-5LZYW GTEX-13RTJ-0726-SM-5QGQN GTEX-1399T-0011-R5b-SM-5IJDK GTEX-XYKS-2926-SM-4E3IA GTEX-UPK5-0003-SM-3NMDI GTEX-YB5E-1626-SM-5IFIQ GTEX-SIU8-0626-SM-2XCDN GTEX-11NSD-0526-SM-5A5LT GTEX-11DXW-0726-SM-5H12J GTEX-11ZU8-1526-SM-5EGHX GTEX-145MH-3026-SM-5Q5DZ GTEX-REY6-1026-SM-2TF4Y GTEX-ZQG8-1326-SM-51MQW GTEX-12WSB-2426-SM-5EGJC GTEX-Y8DK-0011-R10A-SM-4SOK1 GTEX-R45C-0926-SM-3GAD4 GTEX-117YW-0226-SM-5N9CM GTEX-WFG8-0006-SM-3GIKS GTEX-14A5I-2726-SM-5SIB3 GTEX-13OW8-0011-R1a-SM-5L3HI GTEX-14753-0011-R6b-SM-5S2UD GTEX-13QJC-0526-SM-5RQKB GTEX-13X6K-0011-R5b-SM-5PNUE GTEX-PX3G-1826-SM-2S1PK GTEX-WOFL-0126-SM-3MJG2 GTEX-11VI4-0126-SM-5GU6Z GTEX-ZGAY-2226-SM-4YCCX GTEX-NL3H-0011-R7a-SM-2I3G5 GTEX-ZDTT-0126-SM-4WKHA GTEX-12126-0526-SM-5PNW4 GTEX-NFK9-0526-SM-2YUNL GTEX-ZDXO-0011-R5a-SM-4WKG5 GTEX-X4EP-0011-R3A-SM-3P626 GTEX-RN64-0126-SM-2TC68 GTEX-131XG-0226-SM-5IFG1 GTEX-11I78-0226-SM-5HL6R GTEX-O5YV-1826-SM-2YUNI GTEX-111YS-2026-SM-5EGGL GTEX-13N2G-0011-R3b-SM-5MR5G GTEX-T2IS-3026-SM-32QPM GTEX-13N1W-0526-SM-5MR4I GTEX-14BIN-0011-R6a-SM-5S2RH GTEX-13OVH-0426-SM-5K7UC GTEX-13OVH-0011-R3a-SM-5KM49 GTEX-Q2AH-1726-SM-3NB2B GTEX-P44G-0011-R4A-SM-2I3FB GTEX-13D11-0226-SM-5LZXL GTEX-13PDP-0011-R6b-SM-5O9D5 GTEX-145LV-1226-SM-5S2QH GTEX-1122O-0626-SM-5N9B9 GTEX-X4LF-0226-SM-4QAS8 GTEX-NPJ8-0011-R1a-SM-2HMLC GTEX-WWYW-0008-SM-4MVPF GTEX-1122O-1826-SM-5EGIP GTEX-PLZ4-0126-SM-2S1OG GTEX-145MH-1526-SM-5LUAU GTEX-Y9LG-0526-SM-4VBRY GTEX-N7MS-0011-R7a-SM-2HMKN GTEX-111FC-1926-SM-5GZYC GTEX-Y5V6-2026-SM-5IFHO GTEX-Y5V6-1226-SM-4VDTE GTEX-Y111-2926-SM-4TT25 GTEX-13SLW-0011-R2b-SM-5O9C6 GTEX-11EI6-0626-SM-5985T GTEX-U3ZN-0008-SM-4DXTL GTEX-14BIN-1226-SM-5S2OM GTEX-WI4N-1826-SM-4OOSF GTEX-14DAR-0726-SM-5RQIA GTEX-ZZPU-2726-SM-5NQ8O GTEX-ZAJG-3026-SM-5HL92 GTEX-ZTSS-1026-SM-5985N GTEX-ZC5H-2226-SM-4WAWS GTEX-12WSB-0626-SM-59HJO GTEX-13S7M-1826-SM-5RQK6 GTEX-SIU8-0426-SM-4BRUE GTEX-12WSM-0526-SM-5GCO8 GTEX-UTHO-2726-SM-4JBH9 GTEX-RTLS-0226-SM-2TF5E GTEX-12WSD-1326-SM-5GCNU GTEX-13VXT-1926-SM-5K7UO GTEX-XOTO-0826-SM-4B65O GTEX-U3ZN-0006-SM-3DB7Y GTEX-13OW8-0005-SM-5NQAC GTEX-R55E-1126-SM-48FDZ GTEX-S341-1226-SM-4AD5S GTEX-11GSP-0126-SM-5A5KU GTEX-117XS-2226-SM-5GIE1 GTEX-QEG4-0126-SM-48TZE GTEX-Z93T-0226-SM-5HL5Z GTEX-WCDI-0008-SM-47JYE GTEX-WYVS-1126-SM-4SOJX GTEX-11OC5-0006-SM-5N9FA GTEX-XUW1-2326-SM-4BOO5 GTEX-XYKS-2226-SM-4E3IU GTEX-ZVT4-0126-SM-51MS1 GTEX-XQ8I-1426-SM-4BOPW GTEX-1399S-0126-SM-5IJCF GTEX-111VG-2326-SM-5N9BK GTEX-WHSE-0011-R5A-SM-3P5ZO GTEX-PSDG-0226-SM-33HC1 GTEX-OOBK-0425-SM-3LK5O GTEX-13FTX-1526-SM-5K7VJ GTEX-SIU8-0826-SM-2XCDQ GTEX-WXYG-2026-SM-4E3IY GTEX-11EM3-2226-SM-5H11Y GTEX-131YS-2226-SM-5P9G8 GTEX-U3ZH-1526-SM-4DXV1 GTEX-Y8E4-1226-SM-5IFIM GTEX-11ZUS-0011-R9b-SM-5BC76 GTEX-11TT1-1426-SM-5EGIA GTEX-Z9EW-0426-SM-5CVM9 GTEX-WL46-0326-SM-3LK6Y GTEX-S3XE-1526-SM-4AD5A GTEX-R53T-1826-SM-3GIJX GTEX-1212Z-0626-SM-5FQTB GTEX-13N11-0126-SM-5KM2Z GTEX-11NUK-0426-SM-5HL5V GTEX-QVJO-0326-SM-2S1R1 GTEX-13PVQ-0626-SM-5LU47 GTEX-11I78-1826-SM-5A5M4 GTEX-WYVS-0626-SM-4SOJY GTEX-132AR-0226-SM-5IJBE GTEX-W5X1-0826-SM-5CHT7 GTEX-RU72-2926-SM-2TF66 GTEX-WYJK-1926-SM-4ONDP GTEX-Q2AG-0011-R6A-SM-2HML7 GTEX-ZZPU-0426-SM-5GZYH GTEX-13FTW-2326-SM-5K7YS GTEX-11EQ8-1426-SM-5EGJR GTEX-XBED-1326-SM-4AT4F GTEX-WYJK-0726-SM-4ONC9 GTEX-13X6H-2526-SM-5QGOT GTEX-11EI6-2926-SM-5985U GTEX-Y8DK-0004-SM-4RGM7 GTEX-13NYB-0326-SM-5IJDP GTEX-R55F-0011-R5A-SM-2TF5L GTEX-12BJ1-1026-SM-5EGJA GTEX-WY7C-2226-SM-4ONCS GTEX-145LU-0726-SM-5QGP2 GTEX-SUCS-1926-SM-32PM3 GTEX-OXRP-0226-SM-48TDH GTEX-YEC4-2226-SM-5IFJT GTEX-131XW-1126-SM-5EGK4 GTEX-117YX-0526-SM-5EGJH GTEX-1192X-0008-SM-5Q5B7 GTEX-13FXS-0011-R10a-SM-5J2MA GTEX-S7SF-1026-SM-4AD4I GTEX-12KS4-2426-SM-5LU8P GTEX-11WQK-1026-SM-5EQLX GTEX-11P7K-2326-SM-5EGKZ GTEX-131XG-2226-SM-5DUXS GTEX-XBEW-0126-SM-4AT66 GTEX-PSDG-0008-SM-48TE5 GTEX-13O3Q-0011-R4a-SM-5P9H2 GTEX-1477Z-1126-SM-5P9GK GTEX-ZF28-0226-SM-5S2OE GTEX-139TU-0006-SM-5LZVN GTEX-QCQG-0326-SM-2I3ES GTEX-SNOS-0926-SM-4DM7A GTEX-11ZUS-2126-SM-5N9E6 GTEX-ZDTT-0526-SM-5HL4M GTEX-ZTX8-0226-SM-5E44D GTEX-S4Q7-0008-SM-3NM8A GTEX-YJ89-0726-SM-5P9F7 GTEX-NPJ8-0326-SM-26GMG GTEX-Y5V5-0126-SM-5S2NW GTEX-WZTO-2126-SM-4PQYW GTEX-ZAB4-1926-SM-57WD8 GTEX-117YX-2426-SM-5GZZJ GTEX-S7PM-0006-SM-3NM8C GTEX-T2YK-0226-SM-4DM5O GTEX-V955-1026-SM-4JBHO GTEX-145MN-2626-SM-5NQAH GTEX-WHPG-1226-SM-4M1ZI GTEX-1122O-0726-SM-5GIEV GTEX-14BMV-1026-SM-5SI6B GTEX-PWN1-1726-SM-2S1O9 GTEX-132QS-1426-SM-5P9GE GTEX-WH7G-2026-SM-3NMBL GTEX-11VI4-1726-SM-5CVLH GTEX-XBEW-0826-SM-4QASQ GTEX-YJ8O-1126-SM-5P9IS GTEX-X585-3126-SM-4QASH GTEX-XPVG-0526-SM-4B65N GTEX-132Q8-2926-SM-5IFFP GTEX-ZPU1-2326-SM-57WEP GTEX-WRHK-0626-SM-4MVOE GTEX-NL3H-0011-R5a-SM-2I3GB GTEX-1399T-0011-R11a-SM-5J2O1 GTEX-ZAB4-2926-SM-57WCV GTEX-ZF29-2626-SM-4WWBA GTEX-T6MN-0126-SM-32PLP GTEX-RTLS-0826-SM-2TF5Q GTEX-X4LF-0426-SM-3NMB5 GTEX-Y5V6-1726-SM-4VDSZ GTEX-Y8LW-0426-SM-4VBQ6 GTEX-QLQ7-1726-SM-2S1QQ GTEX-X5EB-0006-SM-46MV5 GTEX-13N1W-0011-R9b-SM-5MR4R GTEX-XOT4-0826-SM-4B66Y GTEX-WZTO-0826-SM-3NM8Q GTEX-139T6-1626-SM-5PNYZ GTEX-YF7O-0005-SM-4W1ZU GTEX-ZVP2-1326-SM-57WCE GTEX-T2IS-0226-SM-32QPH GTEX-13VXT-1626-SM-5IJES GTEX-ZLWG-0626-SM-4WWFR GTEX-WHPG-0326-SM-4M1XV GTEX-13OVL-0011-R9a-SM-5P9GX GTEX-12WSK-0426-SM-5GCNS GTEX-TSE9-2526-SM-4DXUS GTEX-ZYFC-0526-SM-5GIDF GTEX-POMQ-0826-SM-3P61H GTEX-12ZZZ-0226-SM-59HKU GTEX-11VI4-1926-SM-5CVLI GTEX-13FXS-0011-R8a-SM-5J1MN GTEX-WQUQ-1326-SM-3MJFF GTEX-ZAB4-0011-R9a-SM-4SOKG GTEX-12WSK-2126-SM-5CVNC GTEX-S7SE-0011-R2A-SM-2XCDC GTEX-WHPG-2126-SM-4M1ZM GTEX-12696-2726-SM-5FQUL GTEX-X585-1026-SM-46MW6 GTEX-P4PP-0326-SM-5S2TQ GTEX-139TT-0011-R1a-SM-5LZVD GTEX-11NV4-0826-SM-5BC4S GTEX-ZXES-0004-SM-57WCW GTEX-S4UY-0926-SM-4AD6O GTEX-QDVN-0726-SM-2I3FO GTEX-XAJ8-0008-SM-46MU7 GTEX-14BMU-2026-SM-5S2W6 GTEX-ZP4G-0726-SM-4WWF2 GTEX-Y111-0426-SM-4TT3K GTEX-Y5V6-0003-SM-4V6FX GTEX-11GSO-2526-SM-5PNVX GTEX-X8HC-2326-SM-4QAS4 GTEX-1269C-0626-SM-5FQSS GTEX-X3Y1-0726-SM-3P5YU GTEX-ZT9X-0226-SM-51MT2 GTEX-QLQ7-1126-SM-4R1KN GTEX-117YX-0626-SM-5EGJI GTEX-12696-2926-SM-5FQTG GTEX-U8T8-2326-SM-3DB96 GTEX-UJHI-0926-SM-4IHKF GTEX-ZC5H-0826-SM-5N9FH GTEX-S3XE-0826-SM-4AD4U GTEX-117YW-2226-SM-5N9DB GTEX-N7MT-0011-R10A-SM-2I3E1 GTEX-Z9EW-2026-SM-5CVMQ GTEX-OXRO-0326-SM-33HBM GTEX-Y5LM-1226-SM-4VDT6 GTEX-14AS3-1626-SM-5S2OY GTEX-13NYS-0011-R10a-SM-5MR4S GTEX-13FXS-0726-SM-5LZXJ GTEX-12WSL-1526-SM-5GCP8 GTEX-PWN1-0008-SM-48TEA GTEX-OXRK-0326-SM-2YUMQ GTEX-WRHU-0326-SM-3MJFY GTEX-13W46-0826-SM-5LU3H GTEX-ZYFG-1326-SM-5GICJ GTEX-OHPL-3026-SM-3MJGS GTEX-13VXU-0926-SM-5IFFH GTEX-111YS-0426-SM-5987O GTEX-WYVS-2026-SM-4PQZ4 GTEX-ZDYS-0926-SM-4WWCS GTEX-13PVR-1026-SM-5QGQW GTEX-OOBJ-3026-SM-3NB1D GTEX-148VJ-0626-SM-5LUAW GTEX-13X6H-0626-SM-5LU53 GTEX-XOT4-1126-SM-4B66E GTEX-WHPG-1426-SM-3NMBB GTEX-11NV4-0011-R5a-SM-5NQ88 GTEX-131YS-0126-SM-5KM1M GTEX-S7SE-0726-SM-2XCD7 GTEX-QLQW-0726-SM-447AA GTEX-13CF2-0011-R3b-SM-5LZZ6 GTEX-X62O-0005-SM-46MV1 K-562-SM-5MR32 GTEX-XOT4-0008-SM-4B664 GTEX-ZF28-3126-SM-4WKFC GTEX-11TTK-0008-SM-5S2RU GTEX-ZYY3-1226-SM-5EQKM GTEX-NFK9-1026-SM-2HMK1 GTEX-ZVZQ-0011-R4b-SM-57WCZ GTEX-OOBK-3125-SM-3LK5R GTEX-QVJO-1926-SM-2S1QZ GTEX-W5WG-0626-SM-4SOID GTEX-13RTJ-0011-R4b-SM-5PNX1 GTEX-OOBK-0526-SM-2HMJJ GTEX-YB5E-0926-SM-4WWDQ GTEX-1211K-1526-SM-5FQU4 K-562-SM-5LU2Y GTEX-ZF2S-1826-SM-4WKFF GTEX-U8T8-1226-SM-4E3IH GTEX-14A5I-2126-SM-5NQA8 GTEX-X5EB-2226-SM-46MW4 GTEX-NL3G-0526-SM-4RTWW GTEX-13FH7-2326-SM-5KM1E GTEX-OIZI-0626-SM-2XCEH GTEX-144GM-1926-SM-5LUAN GTEX-13NYS-0011-R11b-SM-5MR4P GTEX-ZTX8-0326-SM-59HLA GTEX-X5EB-1626-SM-4E3IV GTEX-11DXZ-2326-SM-5EGGV GTEX-13111-2026-SM-5GCMN GTEX-11EQ9-2226-SM-5987H GTEX-T6MN-0011-R10A-SM-32QP7 GTEX-ZYFG-1926-SM-5GID5 GTEX-139TT-0426-SM-5IJFA GTEX-ZVZP-1626-SM-5GIDJ GTEX-ZQG8-2126-SM-4YCF1 GTEX-ZTSS-0004-SM-4YCCS GTEX-VJYA-0926-SM-4KL1N GTEX-13SLX-0926-SM-5S2NM GTEX-NPJ8-0011-R1a-SM-33HCB GTEX-PLZ4-1326-SM-2S1O7 GTEX-13QBU-1026-SM-5LU3R GTEX-T2IS-1026-SM-32QP1 GTEX-XOTO-2126-SM-4B64U GTEX-132QS-1626-SM-5K7YZ GTEX-WY7C-0126-SM-4ONCO GTEX-T2IS-2226-SM-4DM65 GTEX-14E6E-1226-SM-5S2R5 GTEX-S32W-0726-SM-2XCBL GTEX-11ONC-0008-SM-5S2MG GTEX-REY6-0926-SM-48FDA GTEX-ZAK1-0126-SM-5IJD3 GTEX-XV7Q-0005-SM-4BRWI GTEX-14DAR-1526-SM-5RQIX GTEX-13JUV-2826-SM-5LZWU GTEX-131XG-1026-SM-5GCMX GTEX-VUSG-2326-SM-4KL1U GTEX-WEY5-0826-SM-4LMIH GTEX-13SLW-0011-R4b-SM-5S2W2 GTEX-Y114-0326-SM-4TT99 GTEX-13X6I-0626-SM-5QGP9 GTEX-Y5LM-0826-SM-4VDSW GTEX-X4XX-0005-SM-3NMCS GTEX-13FLV-1126-SM-5J2NO GTEX-P44G-1126-SM-3NM9D GTEX-PVOW-2526-SM-2XCF7 GTEX-OHPN-0011-R10A-SM-5S2U3 GTEX-NPJ7-1726-SM-2YUNA GTEX-139T6-1526-SM-5P9G6 GTEX-WFJO-0726-SM-4LVM8 GTEX-RNOR-0926-SM-2TF56 GTEX-ZLFU-0226-SM-4WWFH GTEX-13FHP-0011-R5b-SM-5LZY2 GTEX-139T8-0011-R3b-SM-5HL4R GTEX-ZV7C-1626-SM-5NQ7E GTEX-U8XE-0726-SM-3DB8O GTEX-11DYG-2026-SM-5EGGX GTEX-SNOS-0006-SM-32PLH GTEX-X261-2326-SM-4PQYU GTEX-ZE7O-0011-R11a-SM-57WBC GTEX-RVPU-2326-SM-2TF6R GTEX-Y3I4-0006-SM-4TT1E GTEX-11XUK-0226-SM-5EQLW GTEX-N7MT-0011-R11A-SM-2I3DZ GTEX-13OW6-1426-SM-5L3EU GTEX-NL4W-0011-R5a-SM-2I3GD GTEX-147GR-0011-R10b-SM-5S2UM GTEX-13SLW-0626-SM-5Q5ER GTEX-QXCU-0826-SM-2TC6F GTEX-Z9EW-0626-SM-5HL95 GTEX-NPJ8-2426-SM-3MJHL GTEX-WYJK-1326-SM-3NB2T GTEX-ZVZQ-0011-R8a-SM-51MR5 GTEX-XGQ4-0008-SM-4AT3Z GTEX-132AR-2526-SM-5PNVM GTEX-XBEC-1826-SM-4QASN GTEX-Z9EW-1726-SM-5CVMO GTEX-Y5LM-1126-SM-4VDT5 GTEX-ZZ64-1726-SM-5GZYB GTEX-13CIG-0011-R3b-SM-5K7XF GTEX-13SLX-0011-R5a-SM-5O9BV GTEX-ZTSS-1426-SM-5985P GTEX-132Q8-1726-SM-5EGK8 GTEX-11NUK-1426-SM-5HL68 GTEX-T5JW-2026-SM-4DM63 GTEX-ZLWG-1226-SM-4WWFS GTEX-111CU-1826-SM-5GZYN GTEX-T5JC-2526-SM-4DM6G GTEX-14A5I-2426-SM-5Q5CP GTEX-13U4I-2126-SM-5LU55 GTEX-13PVQ-0011-R5b-SM-5O9DI GTEX-11XUK-1626-SM-5GU5O GTEX-ZF29-1826-SM-4WKG8 GTEX-RU72-0011-R11A-SM-5SI8G GTEX-S7SE-0011-R6A-SM-2XCD9 GTEX-13PVQ-0526-SM-5LU8Q GTEX-132AR-0826-SM-5EGK6 GTEX-13O1R-0526-SM-5K7XU GTEX-12WSA-0011-R4a-SM-57WB7 GTEX-12WSH-0011-R1a-SM-5GU5V GTEX-145MI-0011-R11a-SM-5P9JZ GTEX-WYVS-2526-SM-3NMAT GTEX-ZYVF-2826-SM-5GIDK GTEX-YFC4-0006-SM-4RGLV GTEX-OXRL-0726-SM-3NM9A GTEX-ZYFG-0426-SM-5E43M GTEX-WRHU-0726-SM-3MJFL GTEX-PWOO-2326-SM-2S1PQ GTEX-12WSF-0011-R5a-SM-5HL8K GTEX-YEC3-0826-SM-4WWFP GTEX-PVOW-0011-R3A-SM-32PKX GTEX-145LS-3126-SM-5Q5BY GTEX-113JC-2826-SM-5EGIT GTEX-14753-0226-SM-5Q5CH GTEX-SE5C-0326-SM-4BRWX GTEX-147F3-0426-SM-5SI8V GTEX-XBED-1026-SM-48TCB GTEX-ZQUD-0003-SM-4YCD3 GTEX-13FTX-0926-SM-5IFF7 GTEX-Y5LM-0003-SM-4V6G1 GTEX-ZVP2-2126-SM-5GU6E GTEX-XPVG-1326-SM-4B65P GTEX-1399S-1926-SM-5J2M5 GTEX-13FH7-1026-SM-5IJGF GTEX-131XE-0926-SM-5HL7J GTEX-12ZZX-0326-SM-5DUVH GTEX-QVJO-0011-R6A-SM-2S1QN GTEX-12WSK-0326-SM-5GCOJ GTEX-139UC-0005-SM-5PNU7 GTEX-WYVS-1926-SM-4PQZ2 GTEX-PSDG-0426-SM-2S1OF GTEX-R3RS-0126-SM-3GIJL GTEX-XBEC-1226-SM-4AT65 GTEX-12126-0826-SM-5FQTZ GTEX-XQ8I-0426-SM-4BOPO GTEX-11WQK-1526-SM-5EGKN GTEX-P4QT-0626-SM-3NMCP GTEX-145LS-0011-R8b-SM-5PNXA GTEX-13OW8-2926-SM-5L3FV GTEX-UTHO-0426-SM-5SI7N GTEX-12ZZW-0005-SM-5O9BY GTEX-PLZ6-1426-SM-2S1OQ GTEX-13CF3-1426-SM-5K7YY GTEX-XMK1-0926-SM-4B66X GTEX-ZVT3-0011-R7a-SM-57WCO GTEX-ZLWG-0526-SM-4WWFB GTEX-144GM-0226-SM-5Q5CB GTEX-QMR6-0011-R4A-SM-32PKU GTEX-11ZUS-1826-SM-5FQTR GTEX-Z9EW-0826-SM-5HL9T GTEX-P44H-0011-R6A-SM-2XCF3 GTEX-132AR-2126-SM-5K7XG GTEX-13CZV-0006-SM-5P9IN GTEX-13NZ8-1626-SM-5IJBC GTEX-11TUW-0226-SM-5LU8X GTEX-1399S-0826-SM-5KM23 GTEX-13O61-0005-SM-5O9AU GTEX-S3XE-0326-SM-4AD6L GTEX-YEC3-1426-101806-SM-5PNXX GTEX-13OW7-0126-SM-5MR3B GTEX-13PL7-1226-SM-5SIAR GTEX-13O61-1626-SM-5KM3T GTEX-P44G-0011-R7A-SM-2I3F9 GTEX-ZLWG-1026-SM-4WWC4 GTEX-S33H-0326-SM-4AD6N GTEX-ZDXO-3126-SM-5IJDF GTEX-S32W-0426-SM-4AD6H GTEX-13OW6-1126-SM-5L3HL GTEX-VUSG-1526-SM-4KKZH GTEX-R55F-0011-R6A-SM-2TF4L GTEX-P4PQ-0626-SM-3NMCU GTEX-YEC4-2326-SM-5IFHV GTEX-XMD2-0926-SM-4WWEF GTEX-YJ89-0011-R8b-SM-4SOK8 GTEX-XBEW-0726-SM-4QARX GTEX-12WSM-0005-SM-5NQB3 GTEX-11DXY-3026-SM-5N9CB GTEX-12WSJ-1826-SM-5GCNY GTEX-RU72-1126-SM-2TF6H GTEX-12WSC-0926-SM-5EQ63 GTEX-ZE9C-2126-SM-4WKGY GTEX-ZVT2-1626-SM-51MRC GTEX-13OW8-1326-SM-5J1OW GTEX-11EQ8-0526-SM-5N9BC GTEX-TSE9-0011-R1A-SM-3DB7E GTEX-XQ8I-0226-SM-4BOPM GTEX-12ZZW-0011-R6a-SM-5DUVZ GTEX-XPVG-2526-SM-4B66D GTEX-QLQ7-0008-SM-447AW GTEX-WY7C-0008-SM-4ONDW GTEX-13113-2126-SM-5EQ4U GTEX-XGQ4-1226-SM-4AT67 GTEX-RU72-1026-SM-46MUG GTEX-S4Z8-0226-SM-4AD5K GTEX-11UD2-2826-SM-5GU6X GTEX-N7MS-0011-R1a-SM-2HMJG GTEX-139T6-0826-SM-5J1O2 GTEX-139D8-1426-SM-5IJEX GTEX-Y8E4-0126-SM-4VBQ2 GTEX-13CF2-2826-SM-5LZX9 GTEX-U3ZM-1526-SM-3DB9D GTEX-QEL4-1526-SM-447AB GTEX-Q2AG-0011-R3A-SM-2HMJ9 GTEX-T6MN-0011-R6A-SM-5CHQD GTEX-ZT9W-0526-SM-57WFG GTEX-14A5I-1726-SM-5QGQ5 GTEX-12WSB-3026-SM-59HKM GTEX-WFG8-1726-SM-4LVM6 GTEX-Y8LW-0005-SM-4V6EV GTEX-ZAB4-0126-SM-5CVMG GTEX-RU1J-0226-SM-2TF5Y GTEX-13O61-2426-SM-5J1NV GTEX-ZVT3-2726-SM-5GU5X GTEX-ZTPG-0008-SM-4YCEK GTEX-ZF3C-0526-SM-4WWBG GTEX-11TUW-1326-SM-5EQKV GTEX-14E6C-0326-SM-5Q5EE GTEX-UJHI-1526-SM-3DB99 GTEX-1399Q-1126-SM-5P9JA GTEX-1128S-0826-SM-5GZZI GTEX-ZVP2-1826-SM-5GU62 GTEX-11UD2-0126-SM-5EQL2 GTEX-PVOW-0626-SM-2XCF6 GTEX-S33H-1826-SM-4AD65 GTEX-Z93S-2826-SM-57WBL GTEX-TSE9-0626-SM-3DB8B GTEX-ZE9C-3026-SM-4WKHB GTEX-PX3G-0926-SM-48U12 GTEX-12WSJ-0005-SM-5LU8S GTEX-WI4N-0626-SM-3TW8Z GTEX-ZF28-0011-R3a-SM-4WWDA GTEX-O5YV-1126-SM-3LK73 GTEX-117YW-2426-SM-5Q5AE GTEX-XMD3-0008-SM-4AT4V GTEX-ZV68-0126-SM-59HKS GTEX-13SLX-0011-R6a-SM-5PNX4 GTEX-13N1W-0011-R3a-SM-5MR5E GTEX-X15G-1626-SM-3NMB3 GTEX-POMQ-1926-SM-3NB1Y GTEX-Q2AH-0526-SM-2I3ED GTEX-X4XX-1126-SM-3NMBY GTEX-11ZVC-0726-SM-5FQT9 GTEX-XOTO-0011-R3A-SM-4B64W GTEX-R55C-0626-SM-2TF4Q GTEX-YFCO-2026-SM-4W21Q GTEX-WZTO-1526-SM-4PQYQ GTEX-WYVS-0226-SM-4ONDK GTEX-ZV68-0011-R10a-SM-51MT7 GTEX-14C38-0006-SM-5NQBF GTEX-132AR-1326-SM-5K7YC GTEX-X62O-0126-SM-4E3JN GTEX-ZLWG-0004-SM-4WWD5 GTEX-12WSA-0005-SM-5O9BM GTEX-13112-1426-SM-5EGH8 GTEX-11P7K-0226-SM-5986Z GTEX-ZVT2-2426-SM-57WCQ GTEX-146FQ-0126-SM-5NQA9 GTEX-13SLX-0011-R4a-SM-5O9BJ GTEX-13W46-1926-SM-5J2MF GTEX-147F4-0011-R10b-SM-5S2WC GTEX-13FHP-0526-SM-5K7UY GTEX-1399R-2026-SM-5K7WN GTEX-11EM3-0001-SM-5Q5BD GTEX-ZF2S-2126-SM-4WWAY GTEX-YEC3-1426-SM-4WWEM GTEX-13QJ3-1726-SM-5RQK9 GTEX-144GM-1226-SM-5LU52 GTEX-12WSD-0226-SM-59HKO GTEX-RN64-2326-SM-48FDW GTEX-13N1W-0126-SM-5K7VT GTEX-WZTO-0011-R7B-SM-4E3IS GTEX-WHSE-3026-SM-3P5ZH GTEX-WZTO-0011-R10B-SM-4E3KB GTEX-12ZZY-1326-SM-5GCNW GTEX-11TTK-0826-SM-5N9EG GTEX-11UD1-0326-SM-5EQKX GTEX-1212Z-0826-SM-5EQ51 GTEX-12WSM-2226-SM-5DUVS GTEX-PLZ6-1126-SM-3P5ZR GTEX-YEC3-0626-SM-5IFHZ GTEX-11TT1-0726-SM-5GU5A GTEX-13NYB-1726-SM-5N9G2 GTEX-13X6J-1626-SM-5Q5CV GTEX-12WSL-1126-SM-5CVNK GTEX-145MI-0011-R10a-SM-5PNZD GTEX-X8HC-1026-SM-46MWH GTEX-13FTX-1026-SM-5J2O5 GTEX-13NYB-0011-R2a-SM-5MR3C GTEX-11TT1-2726-SM-5LU8L GTEX-ZDTT-0004-SM-4WKG3 GTEX-13QBU-0426-SM-5J2O4 GTEX-Q2AH-0826-SM-48TZN GTEX-131XG-1226-SM-5EGH9 GTEX-13OVJ-0006-SM-5O98T GTEX-13NZ9-1126-SM-5MR37 GTEX-ZDYS-1626-SM-4WKGB GTEX-ZUA1-0011-R1a-SM-4YCE2 GTEX-RU1J-0426-SM-46MUK GTEX-SNOS-0226-SM-32PLR GTEX-NL3G-0007-SM-4SOIF GTEX-12ZZZ-0011-R3b-SM-5DUXK GTEX-13N11-1726-SM-5J1OJ GTEX-13D11-0926-SM-5J2NC GTEX-14DAR-0226-SM-5S2PR GTEX-OIZH-0005-SM-2HMJN GTEX-UPJH-0001-SM-3NMDE GTEX-ZPU1-1326-SM-57WE1 GTEX-11H98-0426-SM-5HL55 GTEX-R55C-0826-SM-48FCL GTEX-WI4N-2226-SM-4OOS9 GTEX-13112-0126-SM-5P9IU GTEX-13CF3-1626-SM-5IFG9 GTEX-13O3O-0011-R7b-SM-5P9GZ GTEX-WVLH-0011-R8A-SM-3MJFC GTEX-V955-2626-SM-3NM9F GTEX-XPVG-0726-SM-4B658 GTEX-ZAK1-0526-SM-5K7X4 GTEX-13RTK-1626-SM-5QGQS GTEX-11EI6-0526-SM-5985S GTEX-T6MN-0826-SM-32PM4 GTEX-131XH-0011-R4b-SM-5DUWB GTEX-147GR-0011-R9a-SM-5S2UY GTEX-X4XY-0626-SM-4E3IN GTEX-ZQG8-0726-SM-5P9H9 GTEX-S4P3-0526-SM-4AD58 GTEX-13O3Q-3026-SM-5IJGD GTEX-W5X1-1026-SM-5CHSO GTEX-11XUK-2026-SM-5EQLF GTEX-ZVT3-0011-R6a-SM-51MSU GTEX-11O72-0226-SM-59869 GTEX-145MI-1126-SM-5O9AK GTEX-X4EP-0011-R8B-SM-4QASL GTEX-147GR-2926-SM-5RQIN GTEX-OXRL-0626-SM-3NM9C GTEX-12WSI-0426-SM-5EQ5J GTEX-Y8LW-1926-SM-4WWFZ GTEX-145LS-1326-SM-5Q5EP GTEX-YF7O-1826-SM-5IFIU GTEX-12696-1826-SM-5EGJS GTEX-YJ89-2926-SM-5P9IT GTEX-ZAK1-2926-SM-5HL9S GTEX-QV44-0626-SM-4R1KJ GTEX-11TUW-3126-SM-5GU4Y GTEX-ZTTD-1126-SM-51MRP GTEX-11EMC-0726-SM-5EGJO GTEX-RTLS-0426-SM-2TF5K GTEX-XLM4-0011-R11A-SM-4AT46 GTEX-Y114-0626-SM-4TT98 GTEX-ZF3C-1326-SM-5A5MF GTEX-T5JC-0011-R1A-SM-32PM6 GTEX-ZLV1-1126-SM-4WWBW GTEX-ZLFU-2126-SM-4WWEV GTEX-13FHO-2826-SM-5K7ZA GTEX-ZAJG-1626-SM-5HL7I GTEX-144GN-2426-SM-5LU4R GTEX-ZUA1-1526-SM-59HLS GTEX-13JVG-0126-SM-5L3D3 GTEX-13QIC-0011-R4a-SM-5PNX8 GTEX-13CF2-0011-R2a-SM-5L3DC GTEX-O5YV-2026-SM-2D7VS GTEX-ZVT2-2126-SM-5NQ93 GTEX-11WQK-2426-SM-5GU5C GTEX-144GL-0326-SM-5QGOY GTEX-WEY5-0226-SM-3GIKN GTEX-WYVS-1626-SM-3NM9R GTEX-R55D-1526-SM-48FEJ GTEX-ZYFG-0926-SM-5BC5U GTEX-N7MS-0011-R5a-SM-2HMK8 GTEX-XBEC-0526-SM-4QARU GTEX-WH7G-0005-SM-3NMBX GTEX-1269C-0005-SM-5N9CJ GTEX-WFON-0926-SM-4LVMK GTEX-ZDXO-0011-R2b-SM-4WKFG GTEX-P4QT-1526-SM-3NMCT GTEX-11DXX-2426-SM-5GZZW GTEX-12WSC-0126-SM-5EQ4P GTEX-13G51-0011-R7b-SM-5LZXG GTEX-145MO-0526-SM-5Q5F7 GTEX-ZVZQ-0006-SM-51MR8 GTEX-O5YT-0008-SM-4E3IQ GTEX-QV44-0126-SM-4R1KH GTEX-WFG7-0726-SM-3GIKO GTEX-ZT9W-1026-SM-57WG5 GTEX-11GSP-1626-SM-5986N GTEX-X585-0011-R3B-SM-46MVG GTEX-ZV7C-0826-SM-59HK8 GTEX-NPJ8-2126-SM-3MJGK GTEX-14A5I-1226-SM-5NQBW GTEX-11EQ9-2526-SM-5HL66 GTEX-Y5LM-1326-SM-5RQIS GTEX-12584-0426-SM-5FQTT GTEX-13FLV-0011-R5a-SM-5LZWT GTEX-S3XE-1226-SM-4AD4L GTEX-12ZZZ-2026-SM-5LZWJ GTEX-OHPL-0008-SM-4E3I9 GTEX-R55D-1426-SM-48FEN GTEX-O5YT-0126-SM-48TBW GTEX-145ME-1026-SM-5O9B4 GTEX-T2YK-0326-SM-4DM7D GTEX-Y8E4-0326-SM-4VBRR GTEX-ZF29-0002-SM-4WKF2 GTEX-XBEW-1326-SM-4AT63 GTEX-U3ZM-0426-SM-3DB73 GTEX-ZVT3-1626-SM-5GU66 GTEX-XQ3S-1226-SM-4BOPP GTEX-147F4-2626-SM-5Q5CS GTEX-13OVG-1626-SM-5J1NF GTEX-11NSD-0226-SM-5A5LR GTEX-13QBU-1526-SM-5LU3W GTEX-13FHP-2926-SM-5IJG9 GTEX-OIZG-0726-SM-33HBL GTEX-YB5K-1626-SM-5IFIN GTEX-14A6H-0006-SM-5NQ7W GTEX-ZLV1-0626-SM-4WWF6 GTEX-13D11-0826-SM-5KLZJ GTEX-14AS3-0426-SM-5QGQK GTEX-PWN1-2026-SM-48TD9 GTEX-12WSD-0005-SM-5N9FZ GTEX-12WSC-0011-R3a-SM-5P9F1 GTEX-WFON-1126-SM-5CHTG GTEX-13N11-1826-SM-5IJDS GTEX-11ILO-0626-SM-5A5LO GTEX-12WSA-0011-R10b-SM-5P9ET GTEX-ZAB5-0826-SM-5P9FU GTEX-11O72-2826-SM-5HL6W GTEX-PX3G-2526-SM-48TZV GTEX-1192X-1126-SM-5EGGU GTEX-RUSQ-0826-SM-47JWW GTEX-XMD3-2326-SM-4AT5H GTEX-13N11-0626-SM-5J1OL GTEX-SJXC-1226-SM-4DM78 GTEX-S4UY-1026-SM-4AD53 GTEX-11EI6-3026-SM-5GZZO GTEX-YJ8A-1226-SM-5IFHH GTEX-11GSO-2326-SM-5A5LX GTEX-PWOO-2526-SM-2S1PG GTEX-OXRL-0008-SM-3NB29 GTEX-ZF2S-0426-SM-4WKGP GTEX-148VJ-0011-R9b-SM-5SI77 GTEX-QEG4-0326-SM-5S2UQ GTEX-R55E-0726-SM-48FCZ GTEX-ZPU1-1426-SM-4WWFU GTEX-ZPIC-0008-SM-4E3JF GTEX-ZGAY-0006-SM-4WWAQ GTEX-131XG-2026-SM-5GCN5 GTEX-WHWD-0326-SM-3LK6L GTEX-13NYB-2426-SM-5IFF4 GTEX-11P7K-2026-SM-5GU74 GTEX-U3ZM-0426-SM-57WG1 GTEX-P4PP-0426-SM-3NM9H GTEX-YECK-0008-SM-4W1ZG GTEX-12ZZX-2426-SM-5GCOE GTEX-13S86-0826-SM-5SI6J GTEX-N7MT-1226-SM-2D7W4 GTEX-1117F-0526-SM-5EGHJ GTEX-1399U-2126-SM-5IFEZ GTEX-TKQ2-0226-SM-4DM6V GTEX-148VJ-1626-SM-5QGPH GTEX-13FHP-0326-SM-5K7U2 GTEX-1211K-1426-SM-5FQTF GTEX-13D11-1726-SM-5IFGQ GTEX-139TU-0826-SM-5IJFG GTEX-WYJK-0008-SM-4ONDV GTEX-WXYG-0008-SM-4ONDU GTEX-13S86-0326-SM-5SI6K GTEX-111FC-3026-SM-5GZYJ GTEX-XQ8I-1926-SM-4BOOK GTEX-T6MN-0011-R10A-SM-5CHQC GTEX-11WQK-0011-R11a-SM-5BC6W GTEX-ZY6K-1826-SM-5GZXK GTEX-13JVG-1126-SM-5KM2M GTEX-12WSC-0011-R7b-SM-5LU9L GTEX-ZZ64-0126-SM-5GZXA K-562-SM-3NMDG GTEX-11TT1-0126-SM-5LUAA GTEX-R53T-1526-SM-48FEK GTEX-U4B1-0926-SM-4DXUV GTEX-VJYA-0001-SM-3NMDJ GTEX-131XH-2526-SM-5GCND GTEX-13O3O-1126-SM-5KM4Q GTEX-ZF3C-0226-SM-4WWB3 GTEX-12WSD-2026-SM-5HL7D GTEX-Q734-0226-SM-48U1A GTEX-ZYW4-1026-SM-5SI8W GTEX-PWN1-0226-SM-2S1OZ GTEX-13X6J-0011-R7b-SM-5PNUC GTEX-12WSH-3026-SM-5CVNI GTEX-13YAN-0326-SM-5O9DF GTEX-QDVN-2126-SM-33HBS GTEX-11OC5-0526-SM-5N9EE GTEX-XLM4-0011-R4B-SM-4AT5C GTEX-13OVJ-0011-R8b-SM-5L3FS GTEX-OXRK-0326-SM-3NB3R GTEX-132AR-1926-SM-5EGK5 GTEX-WYVS-1026-SM-4SOJW GTEX-1399R-2126-SM-5K7WZ GTEX-13O61-0926-SM-5IFFE GTEX-X4XX-0011-R10B-SM-46MWO GTEX-SJXC-0526-SM-2XCFG GTEX-145MG-3126-SM-5Q5D3 GTEX-13NYC-2626-SM-5K7VN GTEX-ZVP2-0526-SM-51MSC GTEX-R53T-2026-SM-3GIJF GTEX-11TTK-0326-SM-5BC5N GTEX-WOFM-2026-SM-4OOSQ GTEX-Y3I4-2126-SM-4TT7C GTEX-OXRL-0326-SM-4MVNY GTEX-13FTW-2226-SM-5J1OH GTEX-1122O-1926-SM-5EGIQ GTEX-ZPU1-1526-SM-4YCFF GTEX-ZVZQ-0426-SM-59HLT GTEX-VUSG-0526-SM-4KL22 GTEX-R3RS-0726-SM-3GIJR GTEX-O5YW-3026-SM-3MJHI GTEX-QLQW-1226-SM-2S1Q9 GTEX-11OF3-0126-SM-5PNYF GTEX-13NZ8-0011-R8b-SM-5KM48 GTEX-12WSH-0011-R2a-SM-5GU68 GTEX-13O21-1526-SM-5K7W4 GTEX-RVPV-1726-SM-2TF5W GTEX-14BMV-3126-SM-5S2UV GTEX-131YS-0011-R3b-SM-5DUXB GTEX-11H98-0226-SM-5NQ89 GTEX-XXEK-0926-SM-4BRWH GTEX-XBED-0126-SM-47JY7 GTEX-ZAJG-0626-SM-5HL8X GTEX-13S86-2426-SM-5S2MX GTEX-12ZZX-0226-SM-5DUXU GTEX-Q2AH-0626-SM-48TZJ GTEX-ZAB5-0226-SM-5CVMH GTEX-11I78-1626-SM-5A5M2 K-562-SM-5GZWN GTEX-13111-0226-SM-5EQ55 GTEX-RTLS-0006-SM-2TF58 GTEX-12ZZZ-3026-SM-5BC67 GTEX-R55G-0826-SM-2TC5U GTEX-N7MS-1626-SM-3LK5F GTEX-11P82-0006-SM-5N9FY GTEX-SUCS-1426-SM-4DM5W GTEX-1399U-0226-SM-5P9J2 GTEX-ZYT6-0226-SM-5NQ6T GTEX-ZYW4-1526-SM-5SIBA GTEX-13O61-1126-SM-5L3FI GTEX-ZQUD-0008-SM-4YCCU GTEX-13OW5-0326-SM-5L3HK GTEX-S341-1926-SM-3K2BA GTEX-13OVJ-0226-SM-5L3GK GTEX-11EQ8-0826-SM-5N9FG GTEX-POYW-0826-SM-2XCEM GTEX-13D11-2026-SM-5IJBK GTEX-XMD1-0011-R8A-SM-4AT48 GTEX-QDT8-0011-R11A-SM-32PKD GTEX-145LS-0011-R6b-SM-5PNWL GTEX-NPJ8-1326-SM-3LK6B GTEX-QLQW-0126-SM-447BK GTEX-13FH7-0726-SM-5J2NK GTEX-Y8LW-0008-SM-4V6G5 GTEX-11OF3-0011-R8b-SM-57WCS GTEX-T2IS-1926-SM-4DM74 GTEX-XQ8I-0126-SM-4BOPL GTEX-U3ZM-0926-SM-4DXSW GTEX-PVOW-0011-R1A-SM-32PL6 GTEX-YEC4-1926-SM-5IFHJ GTEX-13FH7-0926-SM-5J2MR GTEX-1339X-1026-SM-5IFH5 GTEX-V1D1-1126-SM-4JBHT GTEX-131XE-0526-SM-5K7YT GTEX-WHWD-1526-SM-4OORV GTEX-X4EO-0008-SM-4QASS GTEX-P4QT-1626-SM-5S2UR GTEX-WHWD-1826-SM-3LK6I GTEX-YB5E-1926-SM-5IFIG GTEX-11ILO-0126-SM-5A5LN GTEX-ZF2S-2426-SM-5DUXV GTEX-ZE9C-2726-SM-57WB5 GTEX-S7SF-1926-SM-4AT5B GTEX-OIZH-0226-SM-2YUMH GTEX-Q2AG-1126-SM-48U1P GTEX-VUSH-0004-SM-3P61T GTEX-WI4N-0005-SM-3LK7E GTEX-SE5C-0526-SM-2XCE1 GTEX-QCQG-1626-SM-48U26 GTEX-Y9LG-1726-SM-4VBQE GTEX-13VXU-0826-SM-5KLZ2 GTEX-OIZH-0926-SM-48TBR GTEX-QVJO-0011-R8A-SM-447C7 GTEX-ZPIC-2026-SM-57WG3 GTEX-ZXES-0826-SM-5E43C GTEX-VJYA-0626-SM-4KL1S GTEX-XMD2-1326-SM-4YCET GTEX-132NY-1226-SM-5PNVF GTEX-NFK9-1126-SM-3LK78 GTEX-TML8-1226-SM-32QON GTEX-S4P3-1526-SM-3K2AV GTEX-WFG7-2026-SM-5SI7P GTEX-ZVT4-0226-SM-51MSD GTEX-QV31-0826-SM-4R1KR GTEX-RM2N-1626-SM-2TF5N GTEX-145ME-1926-SM-5SI9S GTEX-WRHK-0001-SM-4WWDD GTEX-13FHO-2026-SM-5J1OA GTEX-12KS4-1026-SM-5FQTD GTEX-TML8-1426-SM-4DXUT GTEX-Y9LG-1026-SM-5IFJN GTEX-QVUS-0006-SM-3GAE8 GTEX-13O3Q-2126-SM-5KM4C GTEX-WYJK-0126-SM-3NMAB GTEX-13G51-2726-SM-5LZZ9 GTEX-QVJO-0011-R5A-SM-2S1QM GTEX-Q2AG-0926-SM-48U1Q GTEX-WYBS-2426-SM-4ONDI GTEX-ZYW4-1326-SM-5E45N GTEX-XQ3S-1526-SM-4BOOC GTEX-WWYW-1126-SM-3NB2Q GTEX-13PDP-0126-SM-5L3HD GTEX-1313W-1126-SM-5EQ5U GTEX-VUSG-1726-SM-4KKZL GTEX-YB5K-2126-SM-4WWDJ GTEX-147F3-0626-SM-5NQ9I GTEX-WZTO-0011-R6B-SM-4E3J6 GTEX-VUSH-0326-SM-3NB2I GTEX-11OC5-0326-SM-5PNW5 GTEX-XPVG-2926-SM-4B66G GTEX-ZLV1-0826-SM-4WWEQ GTEX-13O3O-3026-SM-5KM42 GTEX-11NV4-0008-SM-5Q5BA GTEX-XLM4-0004-SM-4AT5I GTEX-13FH7-2226-SM-5IJD4 GTEX-11TT1-1826-SM-5EQLV GTEX-ZLWG-1126-SM-4WWFQ GTEX-13X6J-0011-R6a-SM-5PNUB GTEX-QEG5-1826-SM-4R1JP GTEX-PWOO-0626-SM-48TZH GTEX-13G51-1226-SM-5K7Z3 GTEX-14BIM-2626-SM-5S2OF GTEX-ZP4G-1526-SM-57WE5 GTEX-UJHI-0008-SM-4IHL1 GTEX-P78B-2526-SM-3P5ZY GTEX-ZYFD-3026-SM-5E44C GTEX-Z9EW-0126-SM-5CVM6 GTEX-S32W-2526-SM-2XCB8 GTEX-13QIC-0011-R3a-SM-5P9HT GTEX-13NZ8-0011-R1b-SM-5KM3V GTEX-ZVE2-0226-SM-59HJB GTEX-14BMV-3026-SM-5S2PQ GTEX-QDVN-2226-SM-2S1PM GTEX-13NYS-0011-R6b-SM-5MR3R GTEX-13OW8-0011-R11a-SM-5L3GT GTEX-ZZPT-0926-SM-5GICZ GTEX-ZLV1-1526-SM-4WWBC GTEX-13QIC-1626-SM-5K7TZ GTEX-Y9LG-2226-SM-4VDS9 GTEX-13O3Q-2726-SM-5KM51 GTEX-1314G-1326-SM-5BC6E GTEX-13NZ9-1026-SM-5MR5K GTEX-13SLX-1326-SM-5S2QS GTEX-132AR-2826-SM-5IJFV GTEX-139TS-3126-SM-5LZWX GTEX-NPJ8-2226-SM-3TW8D GTEX-13YAN-1026-SM-5O9CF GTEX-11DXY-1326-SM-5987Z GTEX-WHPG-1626-SM-4M1ZL GTEX-13FXS-0006-SM-5O99X GTEX-13U4I-0926-SM-5LU5A GTEX-YEC4-1526-SM-4W1YU GTEX-PWOO-2426-SM-2S1OV GTEX-13112-0526-SM-5EQ4S GTEX-SUCS-1326-SM-4DM5T GTEX-XOTO-0011-R6B-SM-4B65X GTEX-X261-0226-SM-3NMD2 GTEX-13O1R-2426-SM-5KLZZ GTEX-132AR-1626-SM-5EGHP GTEX-11H98-0126-SM-5EGHG GTEX-11GS4-1826-SM-5HL4T GTEX-XOTO-0326-SM-4B66K GTEX-XOTO-2826-SM-4B65I GTEX-12584-0826-SM-5FQSK GTEX-RNOR-0011-R7A-SM-2TF4V GTEX-SIU8-0926-SM-5SI87 GTEX-TKQ2-0008-SM-4DM5L GTEX-QLQW-1426-SM-2S1QU GTEX-WFG8-1626-SM-4LVMB GTEX-13FTW-2026-SM-5IJE2 GTEX-QVJO-0526-SM-447CE GTEX-X4XX-0011-R6B-SM-46MWP GTEX-11ZU8-0008-SM-5S2VO GTEX-1399U-0005-SM-5NQ8K GTEX-QV44-1026-SM-447CG GTEX-XYKS-0005-SM-4BRUD GTEX-T5JW-1526-SM-4DM5E GTEX-13OVI-2326-SM-5KM47 GTEX-Y5LM-0526-SM-4V6G3 GTEX-WRHK-1126-SM-4MVOJ GTEX-S4Q7-1226-SM-4AD5I GTEX-1399R-2326-SM-5PNYT GTEX-131XE-0006-SM-5P9F9 GTEX-13O3Q-0011-R11b-SM-5KM2W GTEX-13N11-0826-SM-5IJFP GTEX-T2IS-0126-SM-4DM6O GTEX-12KS4-2126-SM-5FQUT GTEX-11EQ9-1526-SM-5PNY7 GTEX-145MH-0011-R1b-SM-5PNWY GTEX-Z93S-0826-SM-5HL7Y GTEX-11P81-1626-SM-5BC52 GTEX-ZVP2-0126-SM-5NQ7D GTEX-SNMC-0226-SM-4DM6F GTEX-YFCO-0426-SM-4W1Z7 GTEX-X261-0008-SM-4PR11 GTEX-Y5LM-2126-SM-4VDSY GTEX-ZE7O-3126-SM-5HL5X GTEX-13G51-3126-SM-5IJG7 GTEX-P4QS-0226-SM-3NB1U GTEX-WRHK-0005-SM-3MJF5 GTEX-WHPG-0626-SM-3NMBD GTEX-OXRL-2126-SM-3NM98 GTEX-OXRP-2426-SM-2S1NR GTEX-NL3H-0006-SM-2I3FW GTEX-ZF29-2026-SM-4WWB7 GTEX-ZYT6-2326-SM-5GZY3 GTEX-WFON-0226-SM-3GIKR GTEX-13NZB-0626-SM-5IFH6 GTEX-OIZG-0526-SM-2HMLF GTEX-12WSG-0426-SM-5FQSE GTEX-RU72-0008-SM-46MV8 GTEX-Y5V5-0426-SM-4VBPU GTEX-11VI4-1026-SM-5EQM1 GTEX-13FH7-0326-SM-5J1MR GTEX-11OF3-2426-SM-5Q5AS GTEX-1497J-2126-SM-5NQB8 GTEX-XUJ4-2126-SM-4BOOX GTEX-PSDG-0526-SM-2S1OH GTEX-12WSL-2326-SM-5DUXQ GTEX-1477Z-0011-R5b-SM-5PNUO GTEX-RVPV-0011-R3A-SM-2TF63 GTEX-X585-1426-SM-4E3JO GTEX-ZUA1-0726-SM-4YCD9 GTEX-12WSN-0126-SM-5DUX5 GTEX-13O61-0726-SM-5J2MD GTEX-13X6J-3126-SM-5Q5EJ GTEX-Y5V5-0226-SM-5S2N8 GTEX-13OVJ-0826-SM-5J1OK GTEX-12WSH-1526-SM-5BC5W GTEX-14E1K-0326-SM-5S2PE GTEX-13PVQ-0926-SM-5IJFD GTEX-13FXS-3026-SM-5LZYO GTEX-11EQ9-0826-SM-5986Y GTEX-12696-0226-SM-5EGL3 GTEX-QDVN-1126-SM-48TZ7 GTEX-TMMY-0926-SM-33HBG GTEX-UJHI-0626-SM-3DB8T GTEX-V955-0826-SM-5SI82 GTEX-WY7C-2326-SM-3NB2U GTEX-X261-0326-SM-3NMD4 GTEX-ZVP2-0326-SM-57WBP GTEX-XUYS-0126-SM-47JWZ GTEX-Y5V6-0005-SM-4V6FD GTEX-145MI-0526-SM-5O9A8 GTEX-WYVS-1226-SM-4ONCL GTEX-13X6K-3026-SM-5QGPA GTEX-1313W-0326-SM-5LZU5 GTEX-1497J-2726-SM-5SI9W GTEX-R55G-0926-SM-48FDN GTEX-QDVN-0326-SM-2I3FS GTEX-WFON-1426-SM-4LVMT GTEX-WFG8-0001-SM-4LVN8 GTEX-YEC4-0526-SM-4W21U GTEX-ZDXO-0011-R10a-SM-4WWD8 GTEX-ZYFD-2526-SM-5E45L GTEX-XUW1-1026-SM-4BONY GTEX-OXRP-0926-SM-48TC1 GTEX-PX3G-1526-SM-48U11 GTEX-13NZ9-0126-SM-5K7XV GTEX-ZDYS-1526-SM-4WKFY GTEX-13W46-0626-SM-5LU3N GTEX-ZYW4-0426-SM-5GZYS GTEX-12KS4-0326-SM-5EQ41 GTEX-XBEW-1026-SM-4QARV GTEX-WH7G-1026-SM-4LVML GTEX-144GO-0011-R6b-SM-5S2V7 GTEX-11P82-1026-SM-5BC5J GTEX-SJXC-0126-SM-2XCFF GTEX-13PLJ-0011-R3a-SM-5O9DT GTEX-11GSO-0626-SM-5A5LW GTEX-XUJ4-2726-SM-4BOQ1 GTEX-132AR-2326-SM-5IJDY GTEX-XUW1-1526-SM-4BOOY GTEX-13QIC-2926-SM-5J2NF GTEX-12WSD-0926-SM-5GCNL GTEX-146FQ-0726-SM-5LUA7 GTEX-P4QS-1026-SM-3NMCW GTEX-12KS4-0626-SM-5PNY4 GTEX-RNOR-1326-SM-48FDE GTEX-1399T-2726-SM-5K7XK GTEX-ZAK1-0426-SM-5J1MS GTEX-11NV4-1926-SM-5N9D4 GTEX-1399S-0426-SM-5IFG5 GTEX-WOFM-0326-SM-4OOSL GTEX-YFC4-0826-SM-5CVM1 GTEX-11DXX-0526-SM-5PNVR GTEX-145MI-0011-R8b-SM-5PNZ9 GTEX-ZC5H-2026-SM-5CVN2 GTEX-12ZZX-0011-R7b-SM-5DUVV GTEX-11XUK-2126-SM-5EQLR GTEX-111FC-3326-SM-5GZYV GTEX-13W3W-0626-SM-5LU45 GTEX-WYVS-0008-SM-4ONDY GTEX-WFG8-0126-SM-4LVMH GTEX-ZE7O-2426-SM-57WD7 GTEX-X3Y1-0326-SM-4PQZ7 GTEX-13FTX-0726-SM-5N9BI GTEX-ZLV1-1226-SM-4WWBX GTEX-PWCY-1926-SM-3NB25 GTEX-WHSE-1026-SM-57WAX GTEX-13O3O-1526-SM-5KM1C GTEX-OXRP-2526-SM-2S1NO GTEX-WHSB-0326-SM-3LK6K GTEX-13OVJ-2626-SM-5IJFT GTEX-PWN1-0006-SM-5SI7T GTEX-ZY6K-0526-SM-5GZY9 GTEX-RTLS-2326-SM-46MUH GTEX-148VI-0006-SM-5O9A6 GTEX-11TT1-1926-SM-5PNYN GTEX-131XF-2626-SM-5EQ6K GTEX-Z93S-0011-R10a-SM-4RGNM GTEX-U3ZN-1626-SM-4DXTZ GTEX-139T8-0826-SM-5L3DE GTEX-145MO-1526-SM-5QGQC GTEX-12WSN-1326-SM-5GCNT GTEX-XBED-2326-SM-47JYR GTEX-13OW8-2226-SM-5K7Z4 GTEX-ZYWO-1926-SM-5E456 GTEX-YFC4-0011-R6b-SM-4V6E1 GTEX-13OW7-0011-R11a-SM-5O9DY GTEX-POMQ-0426-SM-3P61G GTEX-T2IS-0011-R11A-SM-32QPC GTEX-12ZZW-3026-SM-5LZW7 GTEX-ZVP2-0626-SM-51MSO GTEX-XOTO-0011-R5A-SM-4B657 GTEX-146FR-1726-SM-5Q5DT GTEX-WFON-0526-SM-4LVLY GTEX-ZYVF-0226-SM-5GIEG GTEX-WFG7-1326-SM-4LMK1 GTEX-139T4-0011-R9b-SM-5HL6S GTEX-13VXU-0011-R11b-SM-5O9DJ GTEX-ZT9X-1926-SM-57WE7 GTEX-139TS-0011-R5b-SM-5J2MZ GTEX-11OF3-0011-R5a-SM-57WB4 GTEX-Q2AG-0011-R7A-SM-2HMJP GTEX-1117F-0626-SM-5N9CS GTEX-13X6K-2826-SM-5O9DS GTEX-13RTJ-2926-SM-5Q5DE GTEX-SJXC-0726-SM-2XCFJ GTEX-OIZG-0008-SM-4E3J2 GTEX-12WSK-2726-SM-5CVND GTEX-XPVG-2626-SM-4B669 GTEX-12ZZY-1526-SM-5LZWF GTEX-Q2AH-0426-SM-2I3EP GTEX-139TT-2126-SM-5LZWC GTEX-SJXC-0326-SM-2XCFI GTEX-Y3I4-1726-SM-4TT89 GTEX-PSDG-0426-SM-5SI86 GTEX-REY6-2426-SM-48FF5 GTEX-ZAB5-1126-SM-5Q5AD GTEX-11ONC-0926-SM-5BC5E GTEX-13OVH-0526-SM-5L3E6 GTEX-QCQG-0006-SM-2S1OW GTEX-12WSN-1426-SM-5GCO6 GTEX-OOBJ-0226-SM-2YUMM GTEX-13QBU-1326-SM-5LU4K GTEX-139TT-2726-SM-5IJFM GTEX-ZXG5-0126-SM-5GIEU GTEX-1399T-0011-R1b-SM-5DUWN GTEX-XLM4-2926-SM-4AT59 GTEX-12KS4-0426-SM-5EQMC GTEX-U3ZH-1426-SM-4DXSR GTEX-WYBS-0326-SM-3NM8S GTEX-P4QT-2626-SM-2I3FM GTEX-WY7C-1526-SM-4OND2 GTEX-131XH-0011-R3b-SM-5DUWM GTEX-1192X-3226-SM-5987D GTEX-13FTZ-0726-SM-5IFFY GTEX-RWS6-0226-SM-2XCA9 GTEX-QEG4-2226-SM-4R1JM GTEX-SN8G-0226-SM-4DM6B GTEX-12WSI-1526-SM-5GCNM GTEX-YJ8A-1426-SM-5PNV7 GTEX-SN8G-0008-SM-4DM4X GTEX-12C56-0526-SM-5FQST GTEX-NL4W-0008-SM-4E3I2 GTEX-13O61-1726-SM-5KM46 GTEX-ZVZQ-0011-R5b-SM-57WDC GTEX-TKQ1-0126-SM-33HB3 GTEX-139YR-1726-SM-5IFFK GTEX-X15G-1326-SM-4PQZJ GTEX-13X6K-0011-R8b-SM-5PNZ4 GTEX-13W3W-1626-SM-5LU35 GTEX-ZYW4-1126-SM-5SI99 GTEX-ZT9W-0426-SM-57WF4 GTEX-11UD2-0426-SM-5EQ5W GTEX-ZYFD-0626-SM-5E44E GTEX-131XE-0726-SM-5HL9K GTEX-12ZZZ-0011-R6b-SM-5EQ5B GTEX-YEC4-1126-SM-5CVLW GTEX-13NYC-0826-SM-5N9FP GTEX-P4PP-2526-SM-3P61P GTEX-11DXY-0226-SM-5H123 GTEX-WFJO-0005-SM-3GIKY GTEX-QVJO-1226-SM-4R1KA GTEX-QDT8-0126-SM-48TZ1 GTEX-13G51-0011-R6b-SM-5LZX4 GTEX-139YR-1526-SM-5IFJ1 GTEX-S32W-1126-SM-4AD5V GTEX-13PLJ-1726-SM-5L3FT GTEX-YFC4-0011-R10a-SM-4SOK5 GTEX-11ZVC-0426-SM-5CVLD GTEX-11P7K-0726-SM-5EGKX GTEX-ZQG8-1026-SM-51MR9 GTEX-148VI-1626-SM-5SI6E GTEX-117YW-2726-SM-5GZZT GTEX-13VXU-1126-SM-5LU3U GTEX-131XF-0626-SM-5GIDS GTEX-13112-0011-R4b-SM-5DUXL GTEX-ZLFU-1526-SM-4WWBT GTEX-144GO-0126-SM-5LUAO GTEX-1313W-1626-SM-5J1OE GTEX-1122O-2126-SM-5EGIR GTEX-1313W-0011-R1b-SM-5EQ4A GTEX-13NZA-0526-SM-5L3D7 GTEX-Y8LW-0626-SM-4VDS8 GTEX-WI4N-2026-SM-4OOS7 GTEX-QMRM-0826-SM-3NB33 GTEX-R55E-0008-SM-48FCG GTEX-1399R-0426-SM-5IJE3 GTEX-YFCO-1626-SM-4W1Z3 GTEX-OOBK-2626-SM-2HMKY GTEX-OHPJ-0006-SM-3LK6G GTEX-1117F-2826-SM-5GZXL GTEX-11ZTS-3326-SM-5LU9Y GTEX-VJYA-0726-SM-4KL1T GTEX-ZA64-2126-SM-5Q5A8 GTEX-Q2AG-2826-SM-2HMJQ GTEX-XV7Q-0426-SM-4BRVN ENSG00000242268.2 1.5850 0.0000 0.0000 0.0000 1.5850 1.0000 1.0000 1.5850 1.5850 0.0000 1.0000 1.0000 2.5850 0.0000 1.0000 2.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.3219 0.0000 0.0000 3.4594 2.0000 2.5850 0.0000 3.9069 3.5850 0.0000 1.0000 3.3219 0.0000 2.0000 1.5850 0.0000 0.0000 1.0000 0.0000 1.0000 0.0000 0.0000 0.0000 1.0000 0.0000 1.5850 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 3.8074 1.0000 1.0000 0.0000 0.0000 1.0000 0.0000 2.3219 0.0000 0.0000 1.0000 1.0000 2.3219 0.0000 1.5850 0.0000 3.5850 0.0000 0.0000 0.0000 0.0000 1.0000 1.5850 0.0000 0.0000 0.0000 1.5850 0.0000 0.0000 2.0000 0.0000 0.0000 0.0000 1.0000 0.0000 1.5850 1.5850 3.4594 0.0000 0.0000 0.0000 4.0875 0.0000 0.0000 2.5850 0.0000 0.0000 0.0000 1.0000 3.0000 0.0000 0.0000 0.0000 0.0000 2.5850 2.3219 2.5850 0.0000 3.1699 1.0000 0.0000 0.0000 0.0000 0.0000 2.3219 1.0000 2.8074 0.0000 0.0000 3.9069 0.0000 0.0000 0.0000 3.0000 0.0000 1.0000 0.0000 3.0000 0.0000 0.0000 0.0000 1.5850 2.5850 0.0000 0.0000 3.3219 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 1.0000 4.4594 1.5850 1.5850 0.0000 0.0000 0.0000 0.0000 2.0000 4.1699 0.0000 1.5850 0.0000 4.3219 1.0000 2.5850 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 3.3219 0.0000 0.0000 2.5850 0.0000 3.7004 0.0000 1.5850 0.0000 0.0000 1.0000 1.0000 2.5850 0.0000 0.0000 2.3219 4.5236 0.0000 0.0000 0.0000 4.3923 0.0000 1.5850 0.0000 0.0000 1.0000 2.0000 0.0000 0.0000 0.0000 1.5850 2.0000 0.0000 1.5850 0.0000 1.5850 0.0000 1.0000 0.0000 1.0000 0.0000 0.0000 5.3923 2.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 1.0000 1.0000 0.0000 1.5850 0.0000 3.7004 0.0000 1.5850 1.0000 3.0000 5.2095 0.0000 1.5850 1.0000 0.0000 1.0000 2.0000 0.0000 0.0000 3.1699 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.3219 2.0000 0.0000 1.0000 1.5850 0.0000 0.0000 0.0000 1.0000 0.0000 3.7004 0.0000 0.0000 0.0000 0.0000 0.0000 1.5850 0.0000 0.0000 1.5850 0.0000 3.0000 0.0000 1.5850 0.0000 2.8074 0.0000 0.0000 0.0000 2.0000 1.0000 1.0000 0.0000 1.5850 1.5850 1.5850 0.0000 2.0000 0.0000 1.5850 3.0000 0.0000 0.0000 0.0000 0.0000 4.9069 2.3219 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 1.0000 0.0000 1.0000 0.0000 0.0000 4.4594 0.0000 0.0000 0.0000 1.0000 2.0000 0.0000 0.0000 1.0000 0.0000 0.0000 1.5850 2.3219 1.5850 3.5850 1.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 1.5850 0.0000 0.0000 1.5850 0.0000 0.0000 0.0000 1.0000 2.0000 4.0875 0.0000 3.3219 4.4594 1.0000 0.0000 0.0000 2.0000 2.0000 2.5850 0.0000 2.5850 1.0000 2.3219 1.0000 1.5850 5.2854 1.5850 0.0000 0.0000 0.0000 1.0000 4.0875 0.0000 1.0000 0.0000 2.5850 0.0000 1.0000 0.0000 0.0000 2.3219 0.0000 0.0000 3.1699 1.0000 0.0000 0.0000 0.0000 0.0000 3.1699 0.0000 3.1699 1.5850 0.0000 1.5850 0.0000 1.0000 0.0000 3.0000 0.0000 0.0000 1.5850 0.0000 1.0000 2.0000 1.0000 1.0000 0.0000 0.0000 0.0000 2.5850 0.0000 2.5850 0.0000 0.0000 3.9069 0.0000 3.3219 1.0000 0.0000 1.0000 0.0000 0.0000 0.0000 1.5850 1.0000 0.0000 0.0000 0.0000 2.3219 1.0000 0.0000 1.5850 1.0000 1.0000 1.0000 1.0000 0.0000 1.0000 0.0000 0.0000 1.0000 0.0000 1.0000 0.0000 1.0000 6.2095 1.0000 3.1699 0.0000 0.0000 2.3219 5.5546 0.0000 0.0000 2.5850 1.0000 0.0000 0.0000 0.0000 1.5850 6.1898 0.0000 0.0000 2.3219 0.0000 0.0000 1.5850 0.0000 5.2854 2.0000 3.9069 2.0000 2.0000 0.0000 1.0000 0.0000 0.0000 1.5850 1.0000 3.4594 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 3.0000 0.0000 0.0000 1.0000 3.7004 0.0000 1.5850 1.5850 0.0000 1.0000 2.5850 0.0000 0.0000 3.4594 0.0000 0.0000 1.5850 1.0000 0.0000 0.0000 1.0000 2.3219 0.0000 3.1699 0.0000 2.8074 1.0000 0.0000 1.5850 2.0000 2.0000 0.0000 2.5850 0.0000 1.5850 1.0000 3.1699 1.0000 0.0000 3.5850 2.5850 0.0000 0.0000 1.0000 2.3219 0.0000 2.8074 0.0000 1.0000 0.0000 3.1699 1.5850 0.0000 2.0000 4.4594 0.0000 0.0000 1.5850 1.5850 0.0000 1.5850 2.0000 0.0000 0.0000 0.0000 3.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 1.5850 0.0000 0.0000 0.0000 0.0000 0.0000 2.8074 3.1699 1.0000 2.8074 0.0000 0.0000 0.0000 1.0000 0.0000 1.0000 1.0000 0.0000 0.0000 0.0000 3.4594 2.8074 2.0000 0.0000 0.0000 0.0000 1.5850 0.0000 0.0000 1.0000 3.0000 0.0000 0.0000 2.5850 0.0000 0.0000 1.5850 1.0000 0.0000 0.0000 0.0000 2.8074 0.0000 0.0000 2.8074 0.0000 0.0000 1.0000 1.5850 0.0000 1.0000 0.0000 1.0000 0.0000 2.5850 0.0000 2.0000 2.5850 1.0000 1.5850 0.0000 4.3923 2.5850 0.0000 1.5850 0.0000 1.0000 1.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 4.1699 0.0000 1.0000 2.5850 1.0000 0.0000 0.0000 1.5850 1.0000 1.5850 1.5850 0.0000 1.5850 0.0000 0.0000 2.3219 0.0000 0.0000 2.0000 0.0000 0.0000 1.0000 1.0000 4.1699 3.8074 1.0000 1.0000 0.0000 0.0000 0.0000 0.0000 2.0000 2.0000 2.0000 1.0000 1.5850 1.5850 2.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.5850 1.0000 3.7004 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 2.0000 1.0000 0.0000 0.0000 2.0000 0.0000 2.3219 0.0000 2.3219 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.3219 0.0000 0.0000 1.0000 0.0000 0.0000 1.0000 2.0000 0.0000 0.0000 1.5850 0.0000 0.0000 2.0000 0.0000 1.5850 4.1699 1.0000 2.0000 3.3219 0.0000 0.0000 0.0000 2.3219 0.0000 0.0000 0.0000 0.0000 5.7004 1.0000 0.0000 0.0000 1.0000 1.0000 0.0000 2.3219 0.0000 1.0000 1.0000 0.0000 1.5850 0.0000 0.0000 0.0000 2.5850 1.5850 2.5850 1.5850 0.0000 0.0000 0.0000 1.0000 3.1699 0.0000 0.0000 1.0000 0.0000 0.0000 1.0000 0.0000 0.0000 2.0000 1.0000 0.0000 0.0000 0.0000 4.9069 0.0000 0.0000 3.7004 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 1.0000 3.4594 0.0000 0.0000 0.0000 3.0000 0.0000 1.5850 1.0000 1.5850 1.0000 0.0000 0.0000 1.0000 0.0000 3.1699 4.0000 1.5850 2.3219 0.0000 1.0000 0.0000 0.0000 0.0000 3.0000 3.0000 3.1699 1.0000 0.0000 3.4594 0.0000 1.0000 0.0000 3.4594 4.0000 0.0000 2.0000 0.0000 0.0000 0.0000 0.0 1.5850 0.0000 1.5850 0.0000 0.0000 0.0000 0.0000 0.0000 1.5850 0.0000 0.0000 1.0000 0.0000 0.0000 3.4594 0.0000 0.0000 2.8074 1.0000 0.0000 0.0000 0.0000 0.0000 2.8074 2.0000 2.0000 0.0000 1.0000 3.4594 0.0000 3.3219 2.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 1.5850 0.0000 3.0000 0.0000 2.8074 0.0000 2.5850 0.0000 0.0000 0.0000 0.0000 0.0000 2.5850 1.0000 0.0000 0.0000 1.0000 0.0000 1.0000 0.0000 1.5850 1.5850 0.0000 1.0000 0.0000 0.0000 0.0000 3.0000 0.0000 0.0000 1.5850 1.0000 1.0000 1.0000 0.0000 1.0000 0.0000 0.0000 0.0000 2.8074 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 1.5850 3.7004 0.0000 1.0000 0.0000 0.0000 0.0000 1.0000 1.0000 2.0000 0.0000 2.0000 0.0000 2.3219 2.5850 1.0000 0.0000 3.3219 3.1699 0.0000 0.0000 0.0000 2.0000 2.0000 0.0000 0.0000 0.0000 2.8074 0.0000 0.0000 2.0000 2.0000 0.0000 3.7004 1.0000 3.0000 0.0000 3.0000 2.0000 0.0000 2.3219 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.1699 4.8580 0.0000 1.0000 2.0000 0.0000 0.0000 2.3219 0.0000 0.0000 3.0000 0.0000 2.3219 2.0000 0.0000 1.5850 0.0000 2.3219 0.0000 0.0000 0.0000 0.0000 2.0000 1.5850 0.0000 1.5850 0.0000 1.0000 1.0000 3.0000 1.5850 0.0000 0.0000 3.0000 0.0000 1.5850 1.0000 3.0000 1.0000 2.3219 2.3219 1.5850 2.0000 0.0000 0.0000 0.0000 0.0000 3.3219 1.0000 3.4594 0.0000 2.5850 2.0000 0.0000 3.4594 2.3219 0.0000 0.0000 2.3219 3.1699 1.0000 0.0000 2.0000 0.0000 1.5850 0.0000 0.0000 0.0000 0.0000 1.0000 1.0000 0.0000 4.6439 0.0000 0.0000 0.0000 1.5850 1.0000 1.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 1.5850 0.0000 0.0000 4.3923 0.0000 1.0000 1.0000 0.0000 2.3219 1.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 1.0000 2.5850 0.0000 0.0000 4.3219 0.0000 0.0000 0.0000 5.3219 1.5850 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 5.4919 0.0000 2.3219 1.5850 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 2.0000 1.5850 1.5850 2.0000 1.0000 0.0000 4.0000 3.1699 0.0000 1.0000 0.0000 0.0000 1.5850 0.0000 0.0000 0.0000 3.3219 0.0000 0.0000 1.0000 0.0000 0.0000 1.0000 2.3219 3.3219 0.0000 0.0000 1.0000 1.5850 1.5850 2.8074 0.0000 2.8074 0.0000 0.0000 2.0000 3.0000 3.9069 0.0000 3.0000 1.5850 5.3219 0.0000 1.0000 0.0000 1.0000 1.0000 1.5850 0.0000 0.0000 4.8074 0.0000 0.0000 1.0000 0.0000 1.5850 2.5850 3.1699 0.0000 4.4594 0.0000 0.0000 0.0000 3.7004 0.0000 0.0000 0.0000 1.0000 1.0000 1.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 4.6439 0.0000 1.0000 0.0000 1.0000 0.0000 0.0000 3.5850 0.0000 0.0000 0.0000 2.8074 1.5850 4.0875 1.0000 5.6724 1.5850 0.0000 0.0000 0.0000 3.0000 0.0000 0.0000 1.5850 0.0000 2.0000 3.5850 1.0000 4.2479 0.0000 1.5850 2.5850 1.0000 0.0000 2.0000 0.0000 1.0000 0.0000 3.4594 1.0000 0.0000 1.5850 0.0000 3.0000 0.0000 2.3219 2.5850 1.0000 0.0000 1.0000 0.0000 1.0000 0.0000 0.0000 2.0000 0.0000 0.0000 3.4594 0.0000 1.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 4.0875 0.0000 0.0000 3.5850 0.0000 2.0000 1.0000 0.0000 1.5850 1.5850 0.0000 0.0000 0.0000 1.5850 1.0000 1.0000 0.0000 2.3219 1.5850 0.0000 0.0000 0.0000 2.5850 2.8074 0.0000 1.0000 0.0000 1.5850 2.0000 1.0000 2.3219 4.8580 0.0000 3.0000 0.0000 1.0000 1.5850 0.0000 0.0000 0.0000 0.0000 2.3219 2.8074 3.4594 2.8074 3.0000 2.0000 2.0000 0.0000 0.0000 0.0000 0.0000 1.0000 4.1699 3.3219 1.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 3.3219 4.3219 0.0000 1.0000 0.0000 1.5850 0.0000 0.0000 2.5850 0.0000 0.0000 0.0000 3.8074 0.0000 2.3219 0.0000 0.0000 0.0000 4.5850 1.0000 0.0000 0.0000 0.0000 1.5850 3.0000 2.0000 3.1699 5.1293 0.0000 2.5850 0.0000 1.0000 1.0000 0.0000 0.0000 1.0000 1.5850 1.0000 0.0000 1.0000 0.0000 2.5850 0.0000 2.5850 1.0000 0.0000 2.3219 2.3219 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.3219 1.0000 0.0000 0.0000 0.0000 1.0000 1.5850 1.5850 0.0000 0.0000 0.0000 0.0000 0.0000 3.0000 2.3219 3.1699 0.0000 0.0000 3.0000 1.5850 1.0000 0.0000 0.0000 1.5850 0.0000 3.8074 3.7004 0.0000 0.0000 0.0000 0.0000 2.3219 2.3219 0.0000 2.0000 2.5850 0.0000 3.0000 0.0000 3.5850 3.0000 0.0000 3.4594 0.0000 1.0000 1.5850 0.0000 2.0000 4.5236 3.5850 0.0000 0.0000 0.0000 1.0000 1.5850 1.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 3.5850 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 2.0000 0.0000 1.0000 0.0000 1.0000 5.2095 1.5850 0.0000 3.7004 1.5850 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.4594 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 2.0000 0.0000 0.0000 2.8074 4.0000 2.8074 3.1699 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.5850 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.1699 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.5850 1.0000 1.0000 0.0000 2.3219 0.0000 1.5850 0.0000 1.0000 1.0000 0.0000 0.0000 0.0000 1.5850 0.0000 2.0000 0.0000 1.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 1.0000 0.0000 0.0000 1.5850 0.0000 0.0000 5.0444 1.0000 0.0000 4.8074 1.5850 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 2.8074 2.0000 1.5850 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.1699 0.0000 2.0000 2.5850 1.0000 1.0000 1.0000 0.0000 0.0000 0.0000 1.0000 2.3219 4.0875 0.0000 0.0000 0.0000 0.0000 1.0000 1.5850 0.0000 0.0000 1.0000 1.5850 0.0000 1.5850 0.0000 3.7004 0.0000 0.0000 0.0000 0.0000 0.0000 2.5850 1.5850 0.0000 1.0000 0.0000 1.5850 0.0000 2.0000 3.5850 0.0000 0.0000 0.0000 3.0000 1.5850 0.0000 1.5850 0.0000 2.5850 0.0000 1.0000 1.0000 0.0000 3.1699 0.0000 1.0000 0.0000 1.5850 1.5850 0.0000 1.5850 0.0000 1.5850 0.0000 0.0000 0.0000 0.0000 1.0000 2.3219 1.5850 2.0000 0.0000 0.0000 0.0000 1.5850 0.0000 1.5850 0.0000 2.8074 0.0000 0.0000 1.0000 0.0000 2.5850 0.0000 0.0000 3.9069 2.5850 0.0000 0.0000 0.0000 2.8074 0.0000 0.0000 0.0000 1.5850 0.0000 2.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 2.8074 0.0000 0.0000 2.3219 0.0000 0.0000 0.0000 2.3219 2.8074 0.0000 0.0000 2.0000 0.0000 2.3219 2.3219 0.0000 0.0000 2.3219 1.0000 0.0000 0.0000 0.0000 3.5850 0.0000 0.0000 1.0000 3.1699 0.0000 2.3219 2.8074 2.5850 2.3219 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 1.0000 0.0000 2.3219 2.5850 1.0000 2.5850 1.5850 0.0000 0.0000 2.5850 1.0000 0.0000 0.0000 0.0000 1.0000 1.0000 0.0000 2.0000 0.0000 0.0000 0.0000 2.8074 0.0000 3.4594 0.0000 0.0000 0.0000 1.5850 0.0000 2.5850 2.3219 0.0000 2.5850 0.0000 3.3219 0.0000 0.0000 1.0000 0.0000 0.0000 2.3219 0.0000 1.5850 1.0000 2.0000 2.5850 0.0000 2.0000 0.0000 1.5850 1.0000 1.0000 0.0000 2.0000 0.0000 1.5850 0.0000 0.0000 1.0000 1.0000 2.3219 3.4594 1.5850 1.0000 1.0000 0.0000 1.0000 0.0000 3.0000 0.0000 0.0000 2.5850 1.0000 2.0000 0.0000 2.0000 1.0000 0.0000 0.0000 0.0000 1.0000 2.8074 0.0000 0.0000 0.0000 0.0000 4.0000 2.3219 1.0000 3.1699 1.0000 0.0000 1.5850 0.0000 0.0000 0.0000 1.0000 1.0000 2.3219 0.0000 0.0000 0.0000 0.0000 1.5850 1.0000 0.0000 0.0000 1.5850 1.5850 1.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 3.4594 1.0000 0.0000 4.2479 1.5850 2.5850 1.5850 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 1.5850 0.0000 1.0000 0.0000 1.5850 0.0000 2.8074 2.3219 2.5850 3.0000 0.0000 1.0000 0.0000 0.0000 2.8074 1.5850 2.3219 2.0000 0.0000 2.5850 3.8074 0.0000 1.0000 2.8074 0.0000 0.0000 1.0000 2.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 1.0000 2.5850 0.0000 0.0000 0.0000 1.5850 1.0000 3.1699 2.0000 0.0000 1.0000 2.3219 0.0000 1.5850 0.0000 1.0000 0.0000 1.0000 1.0000 2.3219 1.5850 0.0000 0.0000 0.0000 0.0000 3.3219 0.0000 1.0000 0.0000 0.0000 0.0000 1.5850 0.0000 1.5850 0.0000 1.5850 0.0000 0.0000 1.5850 1.0000 2.3219 1.0000 1.0000 3.0000 0.0000 0.0000 1.0000 0.0000 1.5850 1.5850 0.0000 0.0000 0.0000 2.3219 0.0000 0.0000 0.0000 1.5850 0.0000 1.5850 1.5850 2.0000 1.5850 0.0000 1.5850 1.0000 2.5850 2.0000 0.0000 1.0000 0.0000 3.8074 4.3923 0.0000 0.0000 0.0000 0.0000 4.0875 0.0000 2.8074 0.0000 0.0000 0.0000 1.0000 0.0000 5.0444 0.0000 0.0000 0.0000 1.0000 1.0000 1.0000 0.0000 3.1699 0.0000 0.0000 2.0000 2.0000 0.0000 0.0000 0.0000 0.0000 1.5850 2.5850 0.0000 1.0000 0.0000 3.9069 1.0000 0.0000 0.0000 1.0000 1.5850 1.0000 1.0000 1.0000 0.0000 0.0000 0.0000 2.5850 3.3219 3.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 2.3219 3.3219 0.0000 1.5850 0.0000 5.8329 0.0000 0.0000 3.4594 0.0000 0.0000 0.0000 4.5850 2.5850 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.5850 2.3219 0.0000 0.0000 3.8074 0.0000 1.0000 3.5850 1.5850 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 1.0000 0.0000 0.0000 2.8074 0.0000 2.5850 0.0000 2.8074 0.0000 0.0000 1.0000 0.0000 0.0000 2.0000 1.5850 0.0000 2.0000 0.0000 0.0000 0.0000 1.0000 2.3219 0.0000 0.0000 2.0000 0.0000 0.0000 1.5850 0.0000 2.3219 1.5850 4.0875 0.0000 2.3219 0.0000 0.0000 2.0000 0.0000 0.0000 1.5850 2.0000 3.8074 3.3219 0.0000 0.0000 2.8074 0.0000 1.5850 0.0000 0.0000 0.0000 1.0000 3.4594 0.0000 0.0000 0.0000 0.0000 0.0000 1.5850 1.5850 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.8074 0.0000 0.0000 3.0000 0.0000 1.5850 0.0000 0.0000 0.0000 0.0000 3.3219 3.0000 2.3219 2.0000 4.3923 1.5850 0.0000 0.0000 2.5850 2.5850 2.8074 0.0000 0.0000 1.0000 1.0000 1.5850 3.0000 0.0000 0.0000 4.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.5850 2.3219 5.9773 0.0000 0.0000 0.0000 1.0000 1.5850 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.5850 1.0000 0.0000 4.9069 0.0000 2.3219 1.0000 4.5236 0.0000 0.0000 3.4594 1.5850 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.5850 0.0000 0.0000 0.0000 4.3219 0.0000 1.0000 0.0000 1.0000 0.0000 1.5850 1.5850 2.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.5850 0.0000 0.0000 1.5850 0.0000 0.0000 2.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 1.0000 1.0000 0.0000 0.0000 1.5850 1.5850 2.8074 3.5850 2.5850 3.9069 1.0000 2.0000 4.0875 1.5850 0.0000 1.0000 4.0000 0.0000 2.5850 1.0000 1.0000 0.0000 3.5850 0.0000 0.0000 0.0000 0.0000 2.3219 0.0000 0.0000 0.0000 2.0000 0.0000 0.0000 0.0000 2.8074 0.0000 0.0000 1.5850 0.0000 0.0000 0.0000 0.0000 3.3219 0.0000 0.0000 1.0000 1.0000 2.8074 0.0000 1.0000 3.4594 1.0000 0.0000 3.0000 0.0000 0.0000 1.0000 2.3219 2.0000 1.0000 0.0000 0.0000 1.5850 1.0000 0.0000 0.0000 1.0000 1.0000 2.5850 0.0000 0.0000 0.0000 1.0000 2.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.3219 2.8074 0.0000 3.0000 0.0000 1.0000 0.0000 2.0000 0.0000 0.0000 1.5850 0.0000 0.0000 1.5850 2.0000 0.0000 0.0000 2.0000 1.0000 1.5850 0.0000 0.0000 3.0000 2.3219 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.3219 3.7004 3.3219 0.0000 0.0000 2.3219 0.0000 0.0000 0.0000 2.3219 0.0000 1.0000 1.0000 0.0000 2.3219 0.0000 0.0000 1.0000 0.0000 1.5850 0.0000 5.0000 1.5850 2.5850 1.5850 0.0000 0.0000 2.3219 2.3219 3.7004 0.0000 0.0000 0.0000 0.0000 0.0000 1.5850 0.0000 3.0000 0.0000 0.0000 0.0000 0.0000 1.5850 0.0000 1.5850 0.0000 0.0000 0.0000 0.0000 0.0000 2.8074 2.8074 5.2479 0.0000 1.0000 2.3219 1.0000 1.0000 0.0000 1.0000 1.5850 3.3219 2.0000 0.0000 0.0000 0.0000 0.0000 1.0000 1.5850 2.3219 5.6724 0.0000 1.0000 0.0000 2.0000 0.0000 0.0000 0.0000 0.0000 1.5850 1.5850 1.0000 0.0000 2.0000 0.0000 3.1699 3.0000 1.5850 0.0000 1.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 5.3576 0.0000 0.0000 0.0000 0.0000 0.0000 1.5850 2.8074 0.0000 3.8074 0.0000 0.0000 5.8580 0.0000 0.0000 1.5850 0.0000 0.0000 0.0000 1.0000 0.0000 1.0000 0.0000 0.0000 1.5850 0.0000 0.0000 0.0000 3.5850 1.0000 0.0000 0.0000 0.0000 2.3219 0.0000 2.3219 1.0000 0.0000 1.5850 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 1.0000 3.0000 1.0000 0.0000 0.0000 3.8074 0.0000 1.0000 0.0000 2.0000 0.0000 1.0000 0.0000 3.7004 0.0000 3.1699 3.1699 1.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 1.5850 1.0000 2.0000 1.0000 2.3219 0.0000 1.0000 0.0000 1.0000 0.0000 0.0000 3.1699 0.0000 0.0000 1.0000 0.0000 0.0000 2.3219 1.0000 0.0000 1.0000 2.5850 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 1.5850 0.0000 0.0000 0.0000 3.1699 1.0000 2.0000 3.5850 2.8074 2.0000 0.0000 2.0000 1.0000 2.3219 1.5850 0.0000 1.0000 0.0000 2.8074 1.0000 2.0000 5.0444 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.5850 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.3219 1.0000 1.5850 0.0000 1.0000 2.0000 1.0000 0.0000 0.0000 2.3219 0.0000 0.0000 1.0000 2.5850 0.0000 3.4594 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 2.0000 2.3219 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.5850 3.3219 0.0000 0.0000 3.1699 0.0000 0.0000 0.0000 2.5850 0.0000 0.0000 1.0000 2.5850 0.0000 0.0000 0.0000 0.0000 0.0000 2.5850 2.0000 0.0000 1.0000 3.3219 2.3219 0.0000 0.0000 1.5850 0.0000 0.0000 2.0000 1.0000 2.5850 0.0000 0.0000 0.0000 1.5850 0.0000 1.5850 0.0000 0.0000 0.0000 0.0000 0.0000 1.5850 3.0000 0.0000 0.0000 0.0000 1.0000 1.5850 0.0000 1.5850 0.0000 1.0000 2.0000 0.0000 3.0000 0.0000 1.0000 1.0000 0.0000 0.0000 1.0000 0.0000 0.0000 2.3219 1.0000 0.0000 0.0000 3.0000 1.0000 3.1699 3.7004 1.5850 0.0000 1.5850 0.0000 1.0000 0.0000 0.0000 1.0000 1.0000 0.0000 0.0000 2.0000 2.0000 2.0000 0.0000 1.0000 2.0000 0.0000 1.0000 2.0000 0.0000 0.0000 0.0000 1.0000 3.7004 0.0000 2.0000 2.3219 1.5850 2.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 2.5850 0.0000 3.1699 1.5850 3.4594 0.0000 1.0000 0.0000 2.0000 1.0000 1.0000 0.0000 0.0000 2.0000 0.0000 0.0000 1.5850 2.5850 0.0000 2.0000 0.0000 2.0000 0.0000 0.0000 0.0000 1.0000 1.0000 0.0000 1.0000 0.0000 2.0000 3.1699 0.0000 0.0000 0.0000 1.0000 1.0000 2.8074 1.0000 2.0000 0.0000 2.3219 1.5850 1.0000 0.0000 0.0000 3.3219 0.0000 0.0000 1.5850 0.0000 2.8074 0.0000 0.0000 0.0000 2.3219 0.0000 0.0000 3.1699 1.0000 3.1699 0.0000 2.0000 0.0000 0.0000 2.0000 2.0000 3.3219 1.0000 5.0444 0.0000 1.0000 1.5850 0.0000 2.5850 1.5850 2.8074 1.5850 0.0000 1.0000 2.0000 0.0000 1.0000 3.3219 1.5850 0.0000 2.8074 2.0000 0.0000 1.0000 3.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 1.5850 0.0000 1.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 2.3219 0.0000 0.0000 0.0000 0.0000 3.0000 0.0000 0.0000 3.4594 0.0000 0.0000 0.0000 2.8074 0.0000 0.0000 2.5850 0.0000 2.5850 1.0000 0.0000 1.0000 3.8074 0.0000 0.0000 0.0000 2.0000 2.8074 2.3219 0.0000 1.0000 0.0000 1.0000 1.5850 1.0000 0.0000 0.0000 0.0000 2.0000 0.0000 2.5850 0.0000 1.0000 0.0000 0.0000 1.0000 0.0000 0.0000 2.3219 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 1.5850 1.0000 0.0000 0.0000 0.0000 0.0000 3.0000 0.0000 0.0000 1.0000 1.0000 2.8074 1.0000 0.0000 1.0000 1.0000 0.0000 0.0000 0.0000 2.0000 0.0000 1.0000 0.0000 1.0000 0.0000 0.0000 0.0000 1.0000 0.0000 2.0000 1.5850 0.0000 3.7004 2.0000 1.0000 0.0000 0.0000 1.0000 0.0000 2.5850 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 2.3219 0.0000 0.0000 3.5850 0.0000 1.0000 1.5850 0.0000 0.0000 1.0000 1.0000 0.0000 0.0000 2.3219 0.0000 1.0000 1.0000 1.0000 0.0000 0.0000 0.0000 2.5850 2.8074 0.0000 3.8074 2.3219 1.5850 0.0000 0.0000 5.1699 0.0000 1.5850 0.0000 1.5850 3.8074 0.0000 0.0000 0.0000 0.0000 0.0000 3.0000 0.0000 2.3219 2.3219 0.0000 0.0000 0.0000 1.0000 0.0000 2.3219 0.0000 3.5850 0.0000 0.0000 4.9542 3.8074 0.0000 0.0000 0.0000 0.0000 1.0000 2.0000 0.0000 0.0000 0.0000 1.0000 2.3219 1.5850 2.0000 0.0000 1.5850 0.0000 1.5850 1.5850 2.0000 5.1699 0.0000 1.5850 5.7279 0.0000 1.5850 1.5850 4.9542 0.0000 0.0000 0.0000 0.0000 0.0000 2.0000 0.0000 0.0000 2.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.5850 0.0000 0.0000 1.5850 0.0000 1.0000 0.0000 1.0000 1.0000 2.0000 0.0000 1.0000 2.3219 1.5850 1.0000 1.0000 1.5850 2.3219 0.0000 0.0000 1.0000 0.0000 3.0000 0.0000 0.0000 0.0000 0.0000 2.3219 2.0000 0.0000 0.0000 2.5850 1.0000 1.0000 3.5850 2.5850 1.5850 0.0000 0.0000 0.0000 2.0000 0.0000 2.3219 0.0000 6.2668 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.3219 0.0000 0.0000 0.0000 0.0000 2.5850 0.0000 2.3219 3.3219 3.1699 1.0000 1.0000 0.0000 0.0000 1.5850 1.0000 0.0000 0.0000 3.8074 1.5850 0.0000 1.0000 1.0000 1.5850 0.0000 0.0000 2.8074 2.0000 0.0000 1.5850 0.0000 1.0000 0.0000 2.3219 0.0000 1.0000 0.0000 2.0000 0.0000 3.5850 2.0000 1.0000 1.5850 0.0000 1.0000 3.8074 3.0000 5.7814 0.0000 4.0000 1.0000 0.0000 0.0000 0.0000 0.0000 1.5850 0.0000 0.0000 1.5850 0.0000 1.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.0000 0.0000 1.0000 0.0000 2.5850 0.0000 1.0000 0.0000 0.0000 1.0000 1.5850 2.0000 0.0000 2.0000 0.0000 2.3219 0.0000 0.0000 0.0000 0.0000 1.5850 0.0000 1.0000 0.0000 0.0000 0.0000 2.0000 1.0000 0.0000 0.0000 0.0000 3.1699 3.0000 0.0000 0.0000 3.3219 0.0000 0.0000 0.0000 2.5850 0.0000 3.8074 0.0000 0.0000 0.0000 4.0875 5.4263 3.4594 0.0000 0.0000 1.5850 1.5850 1.5850 3.7004 2.0000 1.0000 0.0000 3.5850 0.0000 0.0000 0.0000 3.3219 0.0000 2.5850 0.0000 1.5850 0.0000 2.3219 0.0000 0.0000 0.0000 1.0000 0.0000 4.2479 0.0000 0.0000 3.0000 2.0000 1.0000 3.0000 6.4263 1.5850 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 1.0000 1.0000 0.0000 1.0000 2.5850 1.0000 2.0000 0.0000 1.0000 1.5850 0.0000 0.0000 2.5850 2.8074 0.0000 0.0000 3.5850 1.0000 4.0000 1.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.5850 0.0000 0.0000 1.5850 1.0000 2.3219 0.0000 4.0000 0.0000 0.0000 0.0000 2.0000 1.0000 1.0000 0.0000 1.0000 1.0000 0.0000 0.0000 2.0000 1.5850 2.5850 0.0000 1.0000 2.8074 0.0000 0.0000 0.0000 1.5850 1.0000 0.0000 0.0000 2.0000 1.5850 0.0000 0.0000 2.0000 0.0000 3.0000 1.0000 2.0000 2.3219 0.0000 0.0000 2.8074 1.0000 0.0000 2.3219 0.0000 2.5850 0.0000 0.0000 1.5850 0.0000 2.0000 0.0000 0.0000 1.0000 2.0000 0.0000 0.0000 4.3923 0.0000 0.0000 0.0000 0.0000 3.3219 0.0000 0.0000 1.5850 0.0000 0.0000 3.3219 0.0000 1.5850 0.0000 1.5850 0.0000 1.0000 0.0000 1.0000 0.0000 4.1699 3.0000 1.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 1.5850 1.0000 0.0000 4.0875 5.4263 0.0000 0.0000 0.0000 1.5850 4.4594 1.5850 3.5850 1.0000 0.0000 1.5850 4.1699 1.5850 0.0000 1.0000 1.0000 2.5850 1.5850 4.7004 0.0000 0.0000 1.0000 1.5850 1.0000 1.5850 0.0000 0.0000 1.0000 0.0000 2.0000 0.0000 0.0000 0.0000 3.1699 0.0000 1.0000 0.0000 3.8074 0.0000 0.0000 0.0000 0.0000 3.1699 1.0000 1.0000 0.0000 3.9069 0.0000 0.0000 0.0000 0.0000 4.3923 0.0000 1.0000 3.7004 0.0000 0.0000 0.0000 1.0000 5.2479 0.0000 0.0000 0.0000 0.0000 2.3219 0.0000 0.0000 1.5850 1.5850 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.0000 2.5850 0.0000 0.0000 0.0000 0.0000 0.0000 1.5850 0.0000 2.0000 0.0000 0.0000 0.0000 1.0000 3.8074 1.5850 1.0000 3.1699 0.0000 0.0000 0.0000 0.0000 1.0000 3.0000 0.0000 0.0000 0.0000 0.0000 1.5850 0.0000 1.0000 0.0000 0.0000 0.0000 1.0000 2.0000 0.0000 0.0000 0.0000 3.8074 0.0000 3.0000 4.3219 0.0000 0.0000 0.0000 1.0000 1.0000 0.0000 2.3219 2.0000 1.5850 1.0000 0.0000 1.0000 3.7004 1.5850 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 1.5850 0.0000 1.0000 0.0000 0.0000 1.5850 0.0000 0.0000 0.0000 0.0000 2.3219 1.0000 0.0000 2.0000 2.0000 1.0000 2.3219 1.0000 2.8074 0.0000 0.0000 0.0000 0.0000 1.0000 3.0000 0.0000 0.0000 1.0000 0.0000 1.0000 0.0000 0.0000 1.0000 1.0000 0.0000 2.0000 0.0000 0.0000 4.2479 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 1.0000 0.0000 1.5850 0.0000 0.0000 0.0000 0.0000 1.0000 2.0000 1.5850 1.5850 1.5850 0.0000 0.0000 1.5850 0.0000 1.0000 0.0000 1.0000 3.4594 1.5850 2.0000 0.0000 1.0000 1.0000 0.0000 1.5850 0.0000 0.0000 0.0000 2.0000 1.0000 2.3219 1.0000 0.0000 0.0000 0.0000 2.8074 0.0000 2.0000 2.3219 3.0000 0.0000 0.0000 0.0000 0.0000 2.8074 2.8074 0.0000 0.0000 0.0000 0.0000 2.3219 3.8074 1.5850 0.0000 1.0000 0.0000 0.0000 2.5850 0.0000 5.9542 0.0000 1.0000 0.0000 3.8074 0.0000 2.3219 5.7549 0.0000 0.0000 2.8074 1.0000 4.5236 0.0000 0.0000 0.0000 1.0000 2.0000 1.0000 0.0000 0.0000 0.0000 1.5850 1.0000 0.0000 0.0000 3.4594 3.8074 1.0000 0.0000 0.0000 0.0000 2.8074 2.3219 2.0000 0.0000 0.0000 1.5850 0.0000 0.0000 0.0000 0.0000 2.0000 2.5850 0.0000 2.5850 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.0000 4.8580 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 3.0000 2.5850 0.0000 0.0000 0.0000 0.0000 3.0000 0.0000 0.0000 1.0000 0.0000 1.5850 0.0000 0.0000 0.0000 1.5850 0.0000 1.0000 0.0000 2.5850 0.0000 0.0000 2.8074 0.0000 2.3219 1.0000 0.0000 0.0000 1.5850 1.0000 0.0000 1.0000 1.0000 1.0000 2.5850 2.8074 1.0000 3.4594 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.5850 0.0000 4.0875 0.0000 0.0000 0.0000 2.0000 0.0000 4.1699 3.3219 1.5850 2.5850 0.0000 0.0000 4.8580 0.0000 1.5850 0.0000 0.0000 0.0000 0.0000 1.0000 1.5850 0.0000 1.0000 0.0000 0.0000 1.5850 0.0000 0.0000 1.0000 0.0000 0.0000 1.0000 0.0000 1.0000 1.0000 2.3219 0.0000 0.0000 0.0000 1.5850 5.5850 1.5850 1.5850 0.0000 0.0000 1.0000 3.1699 0.0000 2.3219 2.0000 2.3219 2.0000 6.6147 0.0000 0.0000 0.0000 2.3219 2.0000 0.0000 0.0000 2.0000 0.0000 1.0000 2.3219 3.1699 0.0000 0.0000 0.0000 3.8074 3.5850 2.3219 1.0000 1.5850 1.5850 1.0000 2.5850 2.3219 0.0000 1.0000 0.0000 2.5850 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 1.5850 0.0000 0.0000 2.3219 0.0000 0.0000 1.0000 1.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 2.0000 1.5850 0.0000 3.1699 1.0000 2.0000 0.0000 1.0000 3.0000 0.0000 2.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 2.3219 4.0000 0.0000 2.5850 2.3219 2.8074 1.0000 0.0000 0.0000 0.0000 2.5850 0.0000 0.0000 0.0000 1.0000 0.0000 1.5850 0.0000 4.3923 1.0000 0.0000 0.0000 1.0000 2.0000 0.0000 0.0000 0.0000 0.0000 1.5850 0.0000 0.0000 1.0000 2.3219 0.0000 2.5850 0.0000 1.5850 0.0000 2.3219 4.1699 1.0000 0.0000 1.0000 0.0000 1.5850 2.5850 2.8074 0.0000 0.0000 0.0000 1.0000 2.3219 2.3219 0.0000 0.0000 0.0000 0.0000 3.0000 0.0000 0.0000 1.0000 2.5850 2.3219 0.0000 0.0000 0.0000 3.5850 0.0000 0.0000 0.0000 1.5850 2.8074 0.0000 0.0000 0.0000 3.4594 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 1.0000 1.5850 1.0000 0.0000 0.0000 1.0000 0.0000 1.0000 1.0000 1.0000 0.0000 0.0000 0.0000 3.9069 0.0000 3.5850 0.0000 0.0000 0.0000 1.0000 0.0000 1.0000 0.0000 0.0000 1.5850 0.0000 1.5850 0.0000 0.0000 0.0000 1.5850 0.0000 2.0000 0.0000 1.0000 0.0000 2.5850 2.5850 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 1.0000 3.7004 2.5850 0.0000 0.0000 1.5850 0.0000 0.0000 4.0000 0.0000 2.5850 0.0000 0.0000 1.0000 0.0000 2.5850 2.8074 1.0000 2.5850 0.0000 0.0000 0.0000 3.8074 1.0000 0.0000 2.3219 0.0000 0.0000 2.3219 0.0000 0.0000 1.0000 3.3219 2.3219 0.0000 0.0000 0.0000 2.8074 0.0000 2.3219 2.0000 0.0000 0.0000 2.0000 1.5850 1.5850 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.3219 2.0000 0.0000 0.0000 0.0000 4.5850 0.0000 2.0000 0.0000 0.0000 3.3219 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.5850 0.0000 0.0000 5.0875 2.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 2.3219 0.0000 1.5850 0.0000 1.5850 0.0000 0.0000 2.5850 0.0000 1.0000 0.0000 2.0000 1.0000 0.0000 1.0000 0.0000 1.0000 0.0000 0.0000 1.5850 1.0000 0.0000 0.0000 0.0000 0.0000 3.0000 1.0000 0.0000 0.0000 6.1293 0.0000 2.5850 0.0000 1.5850 1.0000 0.0000 2.3219 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 3.0000 2.3219 2.8074 1.0000 0.0000 0.0000 2.0000 0.0000 0.0000 1.0000 2.3219 0.0000 1.0000 2.8074 1.5850 0.0000 0.0000 0.0000 1.0000 1.0000 1.0000 3.1699 5.3923 3.0000 0.0000 3.7004 0.0000 0.0000 2.0000 1.5850 0.0000 1.5850 0.0000 2.8074 1.5850 0.0000 2.8074 0.0000 0.0000 0.0000 2.8074 0.0000 2.0000 0.0000 2.3219 3.3219 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 3.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.5850 0.0000 1.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 1.0000 2.5850 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.5850 0.0000 0.0000 3.5850 2.0000 1.0000 0.0000 3.8074 2.5850 0.0000 0.0000 2.3219 0.0000 0.0000 1.0000 3.0000 0.0000 0.0000 0.0000 3.7004 1.0000 1.0000 2.3219 1.0000 1.0000 0.0000 1.5850 0.0000 1.5850 0.0000 0.0000 1.5850 0.0000 3.4594 0.0000 1.0000 2.0000 0.0000 0.0000 0.0000 1.0000 3.4594 0.0000 1.0000 2.0000 0.0000 0.0000 0.0000 0.0000 4.5236 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.0000 0.0000 0.0000 3.7004 2.3219 0.0000 0.0000 1.0000 0.0000 0.0000 1.5850 1.0000 1.0000 1.0000 1.5850 0.0000 2.0000 0.0000 4.5236 0.0000 1.0000 1.5850 0.0000 0.0000 1.0000 1.5850 0.0000 1.5850 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 2.3219 1.5850 2.5850 0.0000 0.0000 0.0000 3.3219 3.4594 0.0000 0.0000 1.0000 0.0000 1.0000 0.0000 0.0000 1.5850 2.0000 0.0000 0.0000 1.5850 0.0000 3.3219 0.0000 2.0000 1.0000 0.0000 0.0000 1.5850 1.0000 1.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 4.2479 0.0000 0.0000 0.0000 0.0000 0.0000 4.5850 1.0000 1.5850 0.0000 0.0000 0.0000 0.0000 1.5850 3.8074 1.5850 3.7004 0.0000 0.0000 1.0000 1.0000 0.0000 3.1699 1.0000 0.0000 5.3923 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 3.7004 0.0000 1.5850 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 1.5850 0.0000 5.8074 0.0000 1.5850 1.0000 2.3219 3.4594 0.0000 0.0000 2.8074 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 2.0000 2.0000 1.5850 1.5850 3.0000 0.0000 0.0000 0.0000 1.0000 1.0000 4.6439 2.0000 0.0000 1.5850 1.0000 4.0000 2.0000 2.0000 2.5850 2.8074 5.5236 1.0000 1.0000 0.0000 1.5850 1.0000 2.0000 0.0000 0.0000 0.0000 4.8074 0.0000 3.4594 0.0000 2.5850 0.0000 1.0000 0.0000 0.0000 0.0000 1.0000 3.3219 1.5850 1.0000 4.5850 1.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 3.5850 1.0000 2.5850 1.5850 1.5850 1.5850 2.3219 2.5850 1.0000 0.0000 3.3219 3.3219 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.5850 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 2.5850 0.0000 0.0000 0.0000 0.0000 2.8074 0.0000 0.0000 0.0000 0.0000 1.5850 0.0000 1.5850 1.5850 0.0000 2.3219 1.0000 0.0000 2.3219 2.0000 1.0000 0.0000 0.0000 0.0000 1.5850 1.5850 1.0000 2.8074 2.5850 1.0000 2.8074 1.5850 1.5850 2.0000 1.5850 0.0000 1.5850 0.0000 0.0000 0.0000 0.0000 3.0000 2.5850 1.0000 0.0000 0.0000 1.5850 1.5850 0.0000 1.5850 0.0000 4.0875 1.5850 3.0000 2.5850 0.0000 1.0000 0.0000 0.0000 2.8074 0.0000 0.0000 1.0000 4.0875 0.0000 0.0000 1.0000 0.0000 2.0000 1.0000 0.0000 0.0000 0.0000 1.0000 1.5850 0.0000 0.0000 0.0000 1.5850 0.0000 0.0000 4.6439 4.7004 5.8329 2.3219 0.0000 0.0000 1.0000 0.0000 4.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 1.5850 0.0000 0.0000 0.0000 5.4594 3.9069 0.0000 0.0000 0.0000 1.0000 3.8074 1.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 3.9069 0.0000 1.0000 3.8074 4.0875 0.0000 0.0000 0.0000 0.0000 0.0000 1.5850 1.0000 0.0000 2.3219 0.0000 1.0000 2.5850 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.5850 5.3219 0.0000 0.0000 0.0000 0.0000 1.5850 2.0000 2.0000 0.0000 0.0000 0.0000 1.0000 0.0000 2.5850 2.3219 0.0000 1.0000 1.0000 0.0000 1.5850 0.0000 0.0000 0.0000 0.0000 2.0000 1.0000 1.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.0000 1.5850 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 1.5850 0.0000 3.8074 1.0000 2.3219 0.0000 1.0000 1.5850 0.0000 0.0000 4.0875 0.0000 1.0000 0.0000 2.3219 0.0000 1.0000 0.0000 0.0000 0.0000 1.0000 1.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 1.5850 1.0000 2.3219 0.0000 2.0000 0.0000 2.5850 1.0000 0.0000 3.5850 0.0000 0.0000 0.0000 0.0000 4.7004 3.4594 1.0000 1.5850 0.0000 1.0000 4.3219 0.0000 0.0000 1.0000 0.0000 0.0000 2.3219 1.0000 2.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 4.1699 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 1.0000 2.0000 0.0000 1.0000 0.0000 0.0000 0.0000 2.5850 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 2.3219 0.0000 0.0000 1.0000 1.0000 0.0000 0.0000 0.0000 1.0000 0.0000 1.0000 0.0000 1.0000 0.0000 0.0000 1.0000 1.0000 1.5850 2.5850 0.0000 0.0000 6.3038 0.0000 1.0000 1.0000 0.0000 0.0000 0.0000 1.0000 2.0000 0.0000 1.0000 0.0000 5.9069 0.0000 4.3219 1.0000 2.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 3.0000 0.0000 0.0000 1.5850 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 1.0000 1.0000 1.0000 0.0000 0.0000 0.0000 0.0000 3.0000 0.0000 0.0000 0.0000 5.8074 0.0000 2.5850 1.5850 0.0000 0.0000 0.0000 0.0000 3.1699 2.8074 0.0000 1.0000 0.0000 2.8074 0.0000 1.5850 3.1699 1.0000 0.0000 0.0000 1.5850 0.0000 3.7004 2.8074 2.8074 1.5850 2.0000 0.0000 2.8074 1.5850 3.1699 0.0000 0.0000 2.5850 0.0000 3.5850 1.5850 1.5850 1.0000 0.0000 2.0000 0.0000 1.5850 1.0000 3.9069 0.0000 0.0000 0.0000 0.0000 3.5850 0.0000 0.0000 2.0000 1.0000 3.1699 0.0000 0.0000 3.5850 0.0000 3.4594 1.0000 0.0000 0.0000 1.5850 2.0000 1.0000 3.0000 2.5850 0.0000 1.0000 0.0000 0.0000 1.5850 1.0000 0.0000 2.5850 5.9069 1.0000 0.0000 1.0000 1.0000 1.0000 1.5850 4.9069 3.5850 3.3219 1.5850 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 1.0000 3.9069 0.0000 3.1699 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.8074 1.5850 3.3219 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.5850 3.5850 0.0000 1.5850 1.0000 0.0000 4.0000 2.5850 1.5850 3.1699 5.4263 0.0000 0.0000 2.8074 2.3219 0.0000 0.0000 1.5850 2.3219 0.0000 1.5850 1.0000 1.0000 6.0000 0.0000 0.0000 0.0000 1.5850 0.0000 3.3219 0.0000 2.5850 1.0000 1.0000 1.0000 0.0000 0.0000 0.0000 0.0000 3.1699 1.0000 0.0000 0.0000 2.5850 1.5850 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 5.2854 0.0000 1.5850 0.0000 1.0000 0.0000 1.5850 0.0000 0.0000 0.0000 3.1699 4.8580 3.1699 2.8074 0.0000 3.0000 3.5850 0.0000 0.0000 0.0000 1.0000 0.0000 3.0000 0.0000 3.0000 2.8074 0.0000 0.0000 1.0000 1.0000 0.0000 0.0000 2.8074 0.0000 2.5850 0.0000 1.5850 0.0000 0.0000 1.0000 5.0875 1.5850 2.3219 0.0000 0.0000 1.5850 0.0000 0.0000 5.2095 1.0000 1.0000 0.0000 1.0000 1.0000 4.3219 1.0000 1.0000 0.0000 1.5850 1.0000 2.3219 0.0000 1.0000 3.4594 1.0000 3.0000 1.0000 1.0000 0.0000 0.0000 0.0000 1.0000 1.5850 1.0000 0.0000 1.0000 1.5850 0.0000 1.0000 0.0000 1.0000 0.0000 0.0000 2.3219 1.0000 4.0000 4.1699 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 2.3219 0.0000 1.0000 0.0000 0.0000 2.3219 1.5850 0.0000 0.0000 2.5850 0.0000 0.0000 0.0000 1.5850 0.0000 0.0000 0.0000 3.4594 0.0000 1.5850 1.0000 0.0000 0.0000 2.3219 3.3219 0.0000 2.3219 1.5850 1.0000 0.0000 0.0000 2.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 1.0000 0.0000 4.0875 1.0000 0.0000 0.0000 4.5850 1.0000 1.5850 2.8074 1.0000 0.0000 5.6724 1.0000 0.0000 2.3219 2.3219 0.0000 5.0000 1.0000 1.5850 0.0000 0.0000 0.0000 3.4594 0.0000 0.0000 1.5850 1.0000 0.0000 0.0000 1.0000 1.0000 2.5850 1.0000 0.0000 2.3219 0.0000 2.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 1.5850 1.0000 1.0000 1.5850 1.5850 2.0000 0.0000 0.0000 1.0000 1.0000 4.0000 0.0000 3.3219 0.0000 0.0000 0.0000 0.0000 1.5850 0.0000 0.0000 1.0000 3.4594 3.9069 0.0000 1.5850 2.3219 0.0000 1.0000 0.0000 1.0000 1.0000 2.5850 1.0000 0.0000 4.0875 1.5850 2.0000 4.0000 1.0000 0.0000 0.0000 2.0000 2.8074 1.0000 0.0000 1.0000 2.0000 0.0000 0.0000 0.0000 0.0000 1.5850 0.0000 0.0000 2.3219 2.8074 0.0000 0.0000 0.0000 0.0000 1.0000 2.0000 2.8074 0.0000 0.0000 2.3219 0.0000 2.3219 0.0000 0.0000 0.0000 1.0000 1.0000 1.5850 1.0000 1.0000 0.0000 2.3219 2.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 3.5850 1.0000 2.3219 0.0000 1.0000 1.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 1.5850 4.8580 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.3219 1.5850 4.4594 0.0000 0.0000 1.0000 2.8074 0.0000 0.0000 1.0000 1.0000 2.3219 1.0000 0.0000 0.0000 0.0000 2.0000 0.0000 0.0000 1.0000 0.0000 2.3219 0.0000 0.0000 1.0000 4.0000 2.3219 1.0000 0.0000 0.0000 4.5236 0.0000 0.0000 0.0000 1.0000 4.2479 2.3219 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.9069 0.0000 1.5850 3.4594 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 1.0000 3.3219 1.5850 0.0000 1.0000 0.0000 0.0000 1.5850 1.5850 3.4594 0.0000 1.5850 1.0000 0.0000 0.0000 6.1898 0.0000 1.5850 0.0000 0.0000 0.0000 1.0000 4.2479 3.0000 2.5850 0.0000 3.0000 2.8074 0.0000 0.0000 1.0000 3.0000 2.0000 0.0000 1.0000 0.0000 1.5850 1.5850 1.0000 0.0000 1.0000 0.0000 1.0000 5.0875 0.0000 2.3219 0.0000 0.0000 3.0000 0.0000 0.0000 0.0000 0.0000 1.5850 1.5850 1.0000 0.0000 0.0000 3.3219 2.3219 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 3.4594 0.0000 2.3219 1.0000 2.0000 0.0000 0.0000 1.0000 1.0000 0.0000 0.0000 0.0000 3.1699 1.0000 2.0000 0.0000 0.0000 2.3219 0.0000 0.0000 0.0000 1.0000 1.0000 2.0000 1.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 2.3219 2.0000 0.0000 0.0000 1.5850 0.0000 1.5850 1.5850 0.0000 1.0000 1.5850 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 1.0000 2.3219 0.0000 0.0000 0.0000 1.0000 0.0000 3.1699 0.0000 2.3219 1.0000 1.5850 1.5850 0.0000 1.0000 2.3219 1.5850 0.0000 1.0000 2.8074 0.0000 1.0000 0.0000 1.0000 0.0000 2.0000 0.0000 2.0000 0.0000 1.0000 0.0000 0.0000 0.0000 2.0000 3.0000 0.0000 2.3219 1.0000 1.0000 0.0000 3.7004 0.0000 4.2479 0.0000 0.0000 1.5850 0.0000 1.0000 3.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.5850 0.0000 2.0000 0.0000 0.0000 0.0000 0.0000 3.3219 0.0000 1.5850 0.0000 2.0000 0.0000 0.0000 0.0000 0.0000 3.5850 0.0000 0.0000 0.0000 2.0000 0.0000 0.0000 0.0000 1.0000 1.0000 0.0000 2.3219 0.0000 2.5850 2.3219 4.4594 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.5850 2.0000 1.5850 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 3.5850 0.0000 0.0000 2.0000 0.0000 1.0000 0.0000 0.0000 1.0000 0.0000 0.0000 2.3219 0.0000 0.0000 0.0000 2.0000 0.0000 2.5850 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 3.0000 0.0000 5.2854 1.0000 1.5850 2.0000 3.0000 2.3219 1.0000 1.5850 0.0000 0.0000 2.0000 1.0000 2.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 1.0000 3.4594 1.0000 1.5850 0.0000 0.0000 1.0000 0.0000 1.0000 0.0000 2.8074 1.0000 2.3219 2.3219 0.0000 1.0000 3.4594 0.0000 2.5850 0.0000 1.5850 1.5850 1.0000 1.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.5850 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 5.0444 0.0000 0.0000 1.0000 1.0000 0.0000 1.0000 1.0000 1.0000 0.0000 6.0000 2.0000 1.0000 2.5850 0.0000 0.0000 0.0000 2.5850 0.0000 0.0000 2.3219 1.0000 1.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 1.0000 4.0875 5.0444 0.0000 1.0000 1.5850 0.0000 0.0000 1.0000 0.0000 1.5850 0.0000 0.0000 1.0000 1.0000 1.5850 0.0000 0.0000 0.0000 0.0000 0.0000 2.0000 0.0000 4.0875 2.3219 0.0000 1.5850 1.0000 1.0000 1.0000 4.7004 0.0000 1.0000 0.0000 0.0000 0.0000 1.0000 0.0000 2.3219 0.0000 0.0000 2.0000 1.0000 0.0000 0.0000 0.0000 4.3923 0.0000 0.0000 0.0000 0.0000 1.5850 2.3219 1.5850 0.0000 0.0000 0.0000 0.0000 2.3219 2.8074 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 2.5850 0.0000 1.0000 2.3219 0.0000 0.0000 0.0000 3.1699 0.0000 0.0000 2.0000 0.0000 0.0000 2.0000 0.0000 1.0000 0.0000 0.0000 0.0000 1.5850 0.0000 2.5850 2.8074 0.0000 2.5850 1.0000 0.0000 0.0000 1.0000 2.3219 0.0000 4.6439 0.0000 0.0000 0.0000 0.0000 0.0000 2.3219 0.0000 2.5850 0.0000 2.3219 0.0000 0.0000 0.0000 0.0000 3.8074 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 1.5850 1.0000 0.0000 4.3219 0.0000 2.3219 2.0000 1.0000 0.0000 0.0000 0.0000 3.3219 0.0000 2.0000 2.0000 1.5850 0.0000 2.8074 0.0000 0.0000 0.0000 0.0000 1.5850 1.5850 1.5850 1.0000 0.0000 0.0000 0.0000 1.0000 0.0000 1.5850 0.0000 0.0000 0.0000 1.0000 1.0000 1.0000 1.0000 2.0000 2.3219 0.0000 1.0000 0.0000 1.5850 3.1699 2.0000 1.0000 0.0000 1.0000 0.0000 3.8074 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 1.0000 1.0000 3.1699 0.0000 0.0000 2.0000 2.0000 2.3219 4.0000 4.7549 0.0000 0.0000 2.0000 3.0000 1.0000 0.0000 0.0000 1.0000 1.0000 0.0000 0.0000 0.0000 0.0000 1.0000 1.0000 0.0000 1.0000 0.0000 0.0000 0.0000 1.5850 0.0000 2.0000 1.5850 0.0000 2.3219 3.5850 3.3219 0.0000 0.0000 0.0000 2.0000 0.0000 0.0000 0.0000 3.3219 1.0000 0.0000 1.0000 0.0000 0.0000 3.3219 0.0000 2.0000 1.5850 1.0000 3.1699 0.0000 2.8074 0.0000 1.5850 0.0000 1.5850 0.0000 0.0000 0.0000 2.5850 0.0000 1.5850 0.0000 0.0000 0.0000 0.0000 1.0000 1.5850 0.0000 0.0000 2.3219 1.0000 0.0000 0.0000 0.0000 2.5850 2.3219 0.0000 0.0000 0.0000 0.0000 4.0875 0.0000 1.5850 0.0000 1.5850 0.0000 1.0000 0.0000 1.0000 0.0000 0.0000 0.0000 3.3219 1.0000 5.1699 0.0000 0.0000 0.0000 0.0000 3.3219 0.0000 0.0000 1.5850 1.0000 0.0000 0.0000 0.0000 2.0000 0.0000 2.5850 2.8074 3.8074 0.0000 1.0000 2.5850 1.5850 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.5850 0.0000 0.0000 4.1699 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 1.0000 0.0000 1.0000 0.0000 0.0000 2.5850 1.5850 1.0000 0.0000 1.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.8074 1.0000 1.0000 1.0000 0.0000 0.0000 1.0000 0.0000 1.5850 0.0000 0.0000 3.0000 1.5850 2.0000 0.0000 3.7004 0.0000 2.0000 1.0000 1.0000 0.0000 3.1699 0.0000 0.0000 0.0000 2.0000 0.0000 0.0000 1.0000 2.0000 0.0000 3.1699 1.0000 2.8074 0.0000 1.0000 1.0000 6.6865 1.0000 0.0000 1.5850 0.0000 0.0000 0.0000 2.0000 1.0000 0.0000 0.0000 2.0000 0.0000 1.5850 1.5850 0.0000 1.0000 1.5850 0.0000 0.0000 3.1699 0.0000 1.5850 0.0000 1.0000 0.0000 0.0000 0.0000 2.0000 0.0000 0.0000 3.8074 1.5850 2.8074 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 1.0000 1.5850 2.8074 3.0000 3.0000 0.0000 3.5850 0.0000 0.0000 1.5850 2.5850 2.3219 0.0000 1.5850 1.0000 2.3219 3.7004 0.0000 1.0000 0.0000 0.0000 2.0000 1.0000 1.0000 0.0000 1.5850 2.0000 0.0000 0.0000 2.5850 0.0000 1.0000 0.0000 5.1293 1.5850 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 1.0000 2.0000 1.5850 3.7004 0.0000 0.0000 0.0000 0.0000 2.0000 4.8580 0.0000 2.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.0000 1.0000 0.0000 1.5850 0.0000 0.0000 1.0000 3.4594 0.0000 0.0000 0.0000 1.0000 0.0000 1.0000 0.0000 0.0000 1.0000 1.0000 0.0000 3.3219 2.8074 0.0000 2.5850 0.0000 1.0000 0.0000 0.0000 0.0000 1.0000 0.0000 1.5850 0.0000 3.9069 0.0000 0.0000 2.3219 1.0000 3.3219 4.4594 0.0000 0.0000 2.0000 0.0000 1.0000 1.0000 0.0000 0.0000 0.0000 3.5850 1.0000 0.0000 0.0000 0.0000 1.0000 2.0000 0.0000 3.7004 3.8074 0.0000 1.5850 1.0000 2.3219 3.0000 0.0000 2.0000 0.0000 2.8074 3.0000 1.0000 1.5850 0.0000 2.0000 0.0000 0.0000 1.0000 1.0000 0.0000 4.6439 3.1699 0.0000 1.0000 1.0000 1.0000 1.5850 0.0000 4.1699 1.5850 2.3219 0.0000 1.0000 0.0000 0.0000 1.5850 0.0000 3.5850 4.1699 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 3.0000 0.0000 0.0000 4.9542 3.1699 0.0000 0.0000 3.0000 0.0000 0.0000 0.0000 0.0000 5.3219 1.5850 1.0000 0.0000 1.5850 0.0000 0.0000 0.0000 1.5850 0.0000 2.8074 0.0000 0.0000 1.0000 1.0000 2.0000 1.0000 1.0000 0.0000 5.5850 1.0000 0.0000 1.5850 4.1699 3.5850 2.8074 0.0000 1.0000 0.0000 2.0000 3.0000 3.1699 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 2.3219 0.0000 0.0000 3.8074 0.0000 0.0000 0.0000 0.0000 1.0000 1.0000 0.0000 2.8074 0.0000 3.0000 0.0000 1.0000 1.5850 0.0000 1.0000 0.0000 4.6439 1.5850 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.5850 0.0000 2.5850 0.0000 1.5850 0.0000 0.0000 2.5850 4.4594 2.3219 1.0000 0.0000 0.0000 0.0000 2.5850 0.0000 1.0000 2.5850 0.0000 0.0000 1.0000 1.0000 0.0000 0.0000 1.0000 0.0000 2.3219 2.0000 0.0000 0.0000 3.1699 4.3219 1.0000 2.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 2.8074 0.0000 0.0000 1.5850 0.0000 0.0000 0.0000 0.0000 0.0000 2.5850 0.0000 3.3219 0.0000 0.0000 1.0000 0.0000 0.0000 1.0000 1.0000 0.0000 2.3219 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 2.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.5850 1.0000 1.0000 1.5850 2.3219 0.0000 1.5850 2.3219 1.5850 2.3219 0.0000 1.5850 2.8074 0.0000 0.0000 2.5850 3.0000 3.5850 1.0000 0.0000 0.0000 3.8074 0.0000 0.0000 2.3219 4.2479 0.0000 1.0000 0.0000 2.3219 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 2.8074 3.4594 1.0000 2.5850 0.0000 3.3219 2.0000 0.0000 1.0000 3.5850 0.0000 0.0000 2.0000 2.0000 1.0000 0.0000 1.0000 0.0000 0.0000 1.0000 0.0000 2.5850 1.0000 1.0000 2.3219 1.0000 0.0000 2.0000 2.8074 0.0000 0.0000 0.0000 0.0000 0.0000 1.5850 1.0000 2.8074 0.0000 0.0000 1.0000 0.0000 0.0000 2.0000 0.0000 0.0000 1.0000 0.0000 3.1699 1.0000 2.0000 1.5850 3.8074 0.0000 0.0000 0.0000 2.3219 0.0000 0.0000 2.5850 2.0000 1.0000 2.0000 0.0000 0.0000 0.0000 0.0000 2.5850 0.0000 0.0000 0.0000 2.8074 2.5850 2.8074 0.0000 2.3219 2.8074 1.5850 0.0000 0.0000 1.0000 0.0000 2.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.3219 1.0000 0.0000 0.0000 0.0000 3.0000 0.0000 0.0000 1.0000 0.0000 0.0000 1.5850 0.0000 2.3219 1.0000 1.0000 0.0000 1.0000 1.0000 1.0000 2.3219 2.5850 0.0000 0.0000 0.0000 1.0000 0.0000 2.8074 0.0000 0.0000 0.0000 2.8074 2.3219 0.0000 4.3219 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.5850 0.0000 0.0000 0.0000 2.3219 1.0000 0.0000 0.0000 1.5850 1.5850 1.5850 2.0000 4.4594 1.5850 0.0000 1.0000 0.0000 1.0000 0.0000 0.0000 2.0000 3.4594 1.0000 0.0000 0.0000 2.5850 1.0000 1.5850 2.3219 1.5850 0.0000 4.3923 1.5850 2.8074 0.0000 2.5850 0.0000 2.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 1.0000 1.0000 2.0000 3.5850 1.0000 4.3923 4.3219 0.0000 1.5850 0.0000 4.2479 1.0000 0.0000 1.0000 2.3219 2.0000 0.0000 2.0000 1.0000 1.5850 1.5850 2.0000 2.8074 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.3219 0.0000 3.1699 2.5850 0.0000 0.0000 0.0000 2.3219 0.0000 0.0000 2.5850 0.0000 0.0000 5.0444 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 1.5850 2.0000 0.0000 0.0000 3.8074 2.5850 0.0000 0.0000 1.0000 1.0000 0.0000 0.0000 1.0000 3.4594 0.0000 0.0000 3.3219 0.0000 3.0000 0.0000 0.0000 3.0000 0.0000 1.0000 1.0000 2.5850 5.0875 0.0000 0.0000 0.0000 1.5850 1.0000 0.0000 2.3219 0.0000 1.5850 0.0000 0.0000 3.0000 1.0000 0.0000 1.5850 0.0000 0.0000 1.5850 0.0000 1.5850 1.5850 1.0000 0.0000 0.0000 2.0000 1.0000 3.1699 0.0000 0.0000 1.0000 0.0000 0.0000 2.3219 0.0000 0.0000 0.0000 0.0000 1.5850 2.0000 1.0000 1.0000 1.0000 0.0000 0.0000 1.0000 1.0000 0.0000 0.0000 4.9069 1.0000 1.5850 0.0000 0.0000 2.0000 1.5850 1.0000 2.0000 0.0000 0.0000 0.0000 3.1699 0.0000 0.0000 0.0000 1.0000 4.4594 0.0000 1.5850 0.0000 1.0000 2.0000 0.0000 0.0000 0.0000 1.5850 0.0000 1.0000 0.0000 1.5850 0.0000 0.0000 4.3923 0.0000 2.3219 1.0000 2.5850 1.5850 0.0000 1.0000 0.0000 2.5850 2.0000 1.5850 3.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 1.0000 1.0000 0.0000 0.0000 0.0000 1.5850 1.0000 1.0000 0.0000 2.0000 0.0000 1.0000 0.0000 0.0000 1.5850 2.0000 0.0000 0.0000 0.0000 4.5850 1.5850 0.0000 2.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 1.5850 1.0000 1.0000 3.9069 0.0000 1.0000 0.0000 2.0000 0.0000 0.0000 0.0000 4.5850 0.0000 0.0000 3.8074 2.0000 0.0000 0.0000 0.0000 3.1699 1.5850 0.0000 1.0000 0.0000 1.0000 0.0000 0.0000 0.0000 3.3219 0.0000 0.0000 3.1699 2.0000 0.0000 0.0000 0.0000 1.0000 0.0000 2.3219 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 4.0000 1.0000 0.0000 3.8074 0.0000 1.0000 0.0000 1.5850 0.0000 0.0000 0.0000 1.0000 1.0000 0.0000 0.0000 0.0000 0.0000 1.5850 0.0000 2.0000 0.0000 0.0000 2.0000 0.0000 0.0000 0.0000 0.0000 2.0000 1.0000 1.0000 0.0000 0.0000 0.0000 2.0000 2.3219 1.0000 0.0000 3.7004 0.0000 2.0000 1.0000 0.0000 0.0000 0.0000 0.0000 1.0000 3.4594 2.8074 0.0000 0.0000 0.0000 1.5850 1.5850 5.0000 0.0000 1.0000 2.0000 0.0000 0.0000 0.0000 1.5850 3.5850 0.0000 2.5850 0.0000 0.0000 1.0000 1.0000 4.3923 1.0000 0.0000 2.3219 0.0000 0.0000 2.5850 2.0000 0.0000 0.0000 0.0000 2.3219 0.0000 1.0000 2.0000 1.0000 0.0000 0.0000 0.0000 1.0000 0.0000 3.8074 1.5850 3.7004 2.5850 4.7549 0.0000 0.0000 0.0000 0.0000 3.4594 0.0000 0.0000 0.0000 2.3219 0.0000 0.0000 1.0000 0.0000 4.2479 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.5850 6.0444 1.0000 2.5850 0.0000 0.0000 0.0000 5.7549 2.3219 0.0000 1.0000 2.0000 4.4594 4.0000 3.7004 0.0000 0.0000 0.0000 1.5850 0.0000 0.0000 0.0000 1.0000 1.5850 2.0000 1.5850 1.5850 0.0000 4.5850 0.0000 0.0000 0.0000 0.0000 3.1699 0.0000 0.0000 1.0000 3.9069 1.5850 0.0000 5.8329 0.0000 1.0000 1.0000 0.0000 1.0000 1.0000 0.0000 0.0000 0.0000 1.0000 1.0000 0.0000 0.0000 0.0000 0.0000 2.0000 0.0000 1.5850 2.0000 2.5850 0.0000 0.0000 2.3219 0.0000 1.5850 2.3219 0.0000 0.0000 0.0000 2.3219 0.0000 0.0000 2.0000 0.0000 2.0000 2.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.5850 1.0000 1.0000 2.0000 4.2479 0.0000 2.8074 0.0000 2.8074 0.0000 0.0000 0.0000 1.0000 0.0000 1.0000 0.0000 0.0000 2.5850 3.1699 2.3219 0.0000 0.0000 1.0000 0.0000 3.0000 1.5850 2.0000 1.5850 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 2.0000 0.0000 2.3219 0.0000 0.0000 0.0000 0.0000 1.5850 0.0000 1.5850 1.5850 1.0000 0.0000 3.0000 3.5850 2.8074 0.0000 1.5850 0.0000 0.0000 1.5850 0.0000 1.0000 0.0000 0.0000 1.5850 2.0000 1.5850 0.0000 1.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 2.5850 0.0000 2.3219 0.0000 0.0000 0.0000 3.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.5850 4.3923 0.0000 0.0000 0.0000 0.0000 1.0000 2.8074 2.8074 1.0000 0.0000 2.5850 1.0000 2.0000 0.0000 0.0000 0.0000 2.0000 0.0000 4.8074 4.6439 1.0000 0.0000 2.0000 1.0000 0.0000 2.0000 4.1699 2.8074 1.0000 0.0000 0.0000 0.0000 2.5850 1.0000 0.0000 1.0000 1.5850 1.5850 0.0000 0.0000 2.5850 0.0000 3.8074 0.0000 2.8074 1.5850 0.0000 1.0000 3.0000 1.5850 0.0000 0.0000 2.0000 0.0000 4.1699 1.5850 0.0000 0.0000 1.0000 1.5850 1.0000 0.0000 0.0000 1.5850 0.0000 0.0000 0.0000 1.0000 0.0000 3.8074 1.0000 2.3219 1.5850 1.5850 1.0000 1.5850 0.0000 0.0000 3.0000 1.0000 1.0000 0.0000 1.0000 0.0000 1.0000 0.0000 0.0000 3.1699 1.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 1.0000 3.8074 0.0000 3.0000 0.0000 2.8074 0.0000 4.0875 0.0000 0.0000 2.8074 0.0000 2.8074 1.0000 1.5850 2.0000 3.1699 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.1699 1.0000 1.5850 0.0000 0.0000 0.0000 0.0000 3.1699 4.3923 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.3219 2.5850 0.0000 0.0000 0.0000 1.0000 2.0000 0.0000 1.5850 0.0000 0.0000 2.5850 2.5850 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.8074 0.0000 0.0000 0.0000 4.6439 0.0000 1.0000 1.5850 0.0000 1.0000 4.9542 0.0000 2.3219 1.0000 2.0000 2.3219 0.0000 0.0000 1.0000 1.0000 2.3219 2.5850 1.0000 0.0000 0.0000 1.5850 3.0000 0.0000 2.3219 1.5850 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.5850 3.4594 1.5850 0.0000 0.0000 0.0000 3.3219 0.0000 3.3219 0.0000 0.0000 1.0000 4.7549 2.8074 0.0000 0.0000 1.5850 0.0000 0.0000 1.0000 2.3219 0.0000 3.1699 0.0000 0.0000 0.0000 3.4594 1.0000 2.0000 0.0000 1.0000 0.0000 0.0000 2.0000 2.0000 0.0000 0.0000 1.5850 0.0000 0.0000 2.3219 2.0000 4.0000 2.0000 4.1699 0.0000 0.0000 0.0000 0.0000 5.0000 0.0000 0.0000 0.0000 1.0000 0.0000 1.0000 0.0000 2.0000 0.0000 0.0000 0.0000 0.0000 1.0000 1.0000 0.0000 2.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.8074 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 3.4594 0.0000 0.0000 0.0000 0.0000 0.0000 4.5850 1.5850 0.0000 1.0000 0.0000 1.0000 0.0000 2.8074 0.0000 0.0000 4.5850 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 1.0000 0.0000 3.1699 3.5850 0.0000 0.0000 1.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.3219 0.0000 1.0000 3.0000 0.0000 1.0000 0.0000 0.0000 1.5850 0.0000 0.0000 2.8074 1.5850 0.0000 2.0000 1.0000 2.3219 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 1.5850 1.0000 0.0000 3.0000 0.0000 1.5850 2.0000 0.0000 0.0000 0.0000 4.2479 0.0000 2.0000 3.9069 3.9069 0.0000 0.0000 0.0000 0.0000 0.0000 2.3219 0.0000 0.0000 0.0000 2.3219 0.0000 0.0000 0.0000 0.0000 0.0000 3.3219 0.0000 0.0000 1.0000 0.0000 0.0000 1.0000 1.0000 1.0000 3.4594 0.0000 0.0000 1.5850 0.0000 0.0000 1.0000 1.5850 2.5850 2.0000 0.0000 0.0000 0.0000 2.8074 0.0000 0.0000 2.5850 2.5850 0.0000 0.0000 5.1699 3.8074 1.5850 0.0000 0.0000 0.0000 1.0000 0.0000 1.5850 2.5850 0.0000 1.0000 0.0000 0.0000 3.7004 0.0000 0.0000 0.0000 3.7004 2.3219 2.5850 0.0000 1.5850 0.0000 1.5850 2.5850 4.9542 1.5850 0.0000 0.0000 1.5850 1.0000 1.0000 3.0000 2.8074 1.0000 2.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 5.2479 1.5850 0.0000 1.0000 0.0000 0.0000 1.0000 3.0000 3.0000 0.0000 0.0000 0.0000 0.0000 1.5850 1.0000 1.0000 0.0000 1.5850 0.0000 0.0000 2.0000 0.0000 0.0000 2.0000 0.0000 0.0000 1.0000 1.0000 0.0000 1.0000 0.0000 1.0000 0.0000 0.0000 1.0000 0.0000 1.0000 0.0000 0.0000 1.0000 0.0000 2.0000 0.0000 2.3219 2.3219 2.5850 1.0000 0.0000 0.0000 1.0000 0.0000 1.5850 0.0000 1.5850 0.0000 1.0000 0.0000 1.5850 5.0444 0.0000 0.0000 0.0000 0.0000 3.0000 0.0000 2.5850 0.0000 0.0000 1.0000 1.5850 0.0000 1.0000 0.0000 1.0000 3.3219 0.0000 0.0000 4.0000 0.0000 3.3219 0.0000 0.0000 1.0000 1.0000 1.5850 1.5850 2.0000 3.1699 3.8074 3.1699 2.3219 2.3219 4.6439 0.0000 0.0000 0.0000 0.0000 0.0000 3.8074 0.0000 0.0000 0.0000 0.0000 2.5850 2.5850 0.0000 0.0000 0.0000 0.0000 0.0000 1.5850 5.1699 0.0000 1.0000 2.5850 3.7004 0.0000 2.3219 0.0000 0.0000 1.0000 1.0000 0.0000 0.0000 0.0000 0.0000 2.0000 3.5850 0.0000 1.5850 0.0000 0.0000 2.8074 2.3219 0.0000 0.0000 3.0000 0.0000 1.0000 0.0000 0.0000 1.5850 1.5850 2.8074 0.0000 2.0000 3.1699 2.0000 0.0000 3.9069 0.0000 2.8074 0.0000 0.0000 5.2095 2.5850 0.0000 0.0000 2.0000 0.0000 0.0000 2.8074 1.0000 2.0000 0.0000 0.0000 5.4263 0.0000 2.8074 0.0000 0.0000 0.0000 2.3219 0.0000 3.3219 0.0000 1.5850 0.0000 1.0000 4.7549 0.0000 1.5850 3.1699 1.0000 ENSG00000259041.1 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.5850 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.5850 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 ENSG00000270112.3 2.5850 1.0000 4.2479 0.0000 0.0000 1.5850 2.8074 1.0000 0.0000 4.0875 0.0000 1.5850 0.0000 1.0000 1.0000 1.0000 0.0000 2.3219 0.0000 1.0000 3.7004 1.0000 3.0000 0.0000 0.0000 1.0000 1.0000 0.0000 1.0000 3.4594 3.0000 0.0000 1.0000 1.5850 3.9069 0.0000 3.5850 0.0000 6.6724 0.0000 4.5850 0.0000 1.5850 1.0000 0.0000 0.0000 1.0000 1.5850 0.0000 0.0000 6.7549 1.5850 4.6439 1.0000 6.1085 4.7004 2.0000 5.2095 7.4009 1.5850 3.4594 4.7549 1.0000 0.0000 0.0000 2.0000 2.0000 2.0000 0.0000 2.3219 0.0000 1.0000 1.0000 5.0875 0.0000 1.5850 1.0000 1.5850 1.5850 2.3219 1.0000 0.0000 4.0000 0.0000 6.1508 0.0000 1.5850 4.4594 5.9069 1.0000 0.0000 2.3219 1.0000 5.2854 4.6439 0.0000 0.0000 2.0000 0.0000 4.5236 2.3219 6.6963 0.0000 1.0000 0.0000 2.8074 0.0000 4.1699 5.7814 3.0000 0.0000 6.9307 2.5850 5.0000 0.0000 6.2479 1.0000 1.0000 0.0000 4.0000 0.0000 2.3219 3.3219 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 4.5850 5.4263 1.0000 3.1699 4.6439 0.0000 0.0000 1.5850 0.0000 1.5850 5.9773 1.5850 2.3219 5.1293 3.4114 0.0000 2.5850 1.0000 0.0000 0.0000 0.0000 6.5166 1.5850 0.0000 2.3219 5.3219 0.0000 1.0000 2.3219 0.0000 0.0000 1.0000 0.0000 0.0000 1.0000 3.0000 5.1293 1.5850 1.0000 1.0000 5.6147 4.0000 1.5850 1.0000 1.5850 1.0000 2.0000 2.8074 3.8074 0.0000 2.8074 7.4409 5.4263 4.7549 2.0000 0.0000 0.0000 0.0000 5.2479 1.5850 1.5850 0.0000 1.0000 1.5850 5.3219 1.5850 0.0000 0.0000 4.5236 5.8329 4.4594 2.3219 1.5850 3.3219 1.0000 2.3219 1.0000 1.0000 0.0000 1.0000 1.5850 5.9307 1.0000 0.0000 1.0000 0.0000 4.5850 1.0000 1.0000 2.0000 0.0000 0.0000 5.5850 1.0000 0.0000 1.0000 1.0000 1.5850 4.7549 1.0000 1.5850 0.0000 0.0000 2.8074 0.0000 1.5850 1.0000 1.0000 1.5850 2.0000 2.0000 0.0000 5.1293 0.0000 5.1293 1.5850 3.8074 0.0000 1.5850 0.0000 4.5236 0.0000 2.0000 0.0000 0.0000 0.8875 6.1898 1.0000 1.0000 2.5110 0.0000 3.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.8074 1.0000 0.0000 1.0000 1.5850 1.0000 0.0000 1.0000 1.5850 0.0000 4.5236 0.0000 1.5850 4.6439 1.5850 1.0000 1.5850 4.2479 0.0000 0.0000 0.0000 0.0000 1.5850 3.0000 1.0000 0.0000 2.0000 3.4594 0.0000 2.8074 5.2479 2.0000 0.0000 2.0000 0.0000 6.1699 0.0000 1.0000 2.3219 2.3219 1.5850 0.0000 0.0000 1.0000 0.0000 1.5850 0.0000 1.5850 6.1293 0.0000 0.0000 2.5850 0.0000 0.0000 1.5850 1.0000 1.0000 0.0000 5.5236 5.3695 7.6147 1.0000 0.0000 1.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.5850 0.0000 2.0000 5.9542 0.0000 0.0000 1.0000 0.0000 5.8074 7.4429 0.0000 0.0000 3.1699 1.0000 4.1699 0.0000 1.0000 0.0000 1.0000 0.0000 6.2095 2.5850 0.0000 6.3689 1.5850 0.0000 1.5850 2.8074 1.5850 4.9069 0.0000 3.1699 1.0000 1.5850 0.0000 4.3219 0.0000 0.0000 1.0000 1.0000 8.1904 1.0000 4.9069 1.0000 3.0000 0.0000 1.5850 0.0000 1.0000 3.7004 1.0000 6.2810 2.0000 0.0000 0.0000 0.0000 2.5850 5.1293 4.4594 0.0000 1.5850 1.5850 1.0000 2.0000 2.5850 3.0000 2.0000 2.5850 1.0000 2.8074 0.0000 1.0000 1.5850 0.0000 0.0000 4.8580 1.0000 2.0000 4.6058 2.8074 0.0000 3.4594 0.0000 2.8074 2.0000 4.8580 1.0000 2.5385 1.0000 0.0000 1.0000 1.0000 5.0444 1.5850 4.3923 0.0000 2.3219 0.0000 2.0000 0.0000 2.0000 1.0000 1.0000 1.0000 0.0000 0.0000 4.1699 2.0000 0.0000 4.1699 0.0000 1.0000 3.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.3219 0.0000 5.1699 3.1699 0.0000 0.0000 1.0000 2.0000 0.0000 1.5850 1.5850 5.0444 0.0000 7.6809 1.5850 1.0000 2.0000 0.0000 1.0000 1.0000 0.0000 0.0000 7.2946 1.5850 0.0000 4.0000 3.4594 1.5850 1.0000 2.3219 2.3219 2.3219 4.7549 0.0000 0.0000 3.0000 2.3219 4.9542 5.0000 0.0000 0.0000 0.0000 0.0000 1.0000 1.5850 4.3923 2.5850 1.0000 2.8074 4.4594 1.5850 1.0000 1.5850 6.2288 0.0000 3.0000 1.5850 2.3219 1.0000 0.0000 7.1240 3.3219 1.0000 1.0000 6.3454 3.7004 1.0000 0.0000 0.0000 0.0000 0.0000 1.0000 6.4263 0.0000 0.0000 1.0000 0.0000 1.0000 1.0000 3.1699 5.6147 1.0000 5.0444 3.7004 0.0000 3.1699 1.5850 0.0000 4.3923 5.4919 4.7549 2.0000 0.0000 1.5850 0.0000 0.0000 0.0000 0.0000 1.0000 1.0000 0.0000 1.0000 1.0000 0.0000 4.4594 0.0000 0.0000 0.0000 0.0000 1.5850 2.8074 5.8074 6.7549 3.3219 3.5850 0.0000 2.0000 2.0000 1.0000 0.0000 0.0000 0.0000 0.0000 2.3219 7.8826 2.0000 8.2992 1.0000 0.0000 0.0000 2.5850 1.0000 1.5850 1.0000 3.8074 1.5850 0.0000 3.0000 6.9542 0.0000 1.0000 1.0000 3.9069 0.0000 0.0000 1.0000 0.0000 3.7004 0.0000 1.5850 1.0000 0.0000 2.8074 5.2479 1.0000 0.0000 0.0000 0.0000 1.0000 0.0000 7.5352 6.7142 0.0000 3.4594 3.3219 2.8074 5.3448 1.0000 0.0000 1.0000 2.3219 1.5850 3.1699 1.5850 1.0000 0.0000 1.0000 3.8074 0.0000 5.7004 4.8074 0.0000 1.0000 3.8074 1.0000 1.0000 1.0000 0.0000 1.0000 0.0000 1.0000 0.0000 0.0000 0.0000 7.9937 1.5850 0.0000 0.0000 0.0000 0.0000 3.7004 1.5850 4.7549 3.5021 0.0000 2.0000 0.0000 0.0000 1.2449 0.0000 6.3038 1.0000 1.0000 1.0000 1.5850 1.0000 0.0000 0.0000 0.0000 2.0000 3.3219 0.0000 0.0000 1.0000 0.0000 1.5850 1.5850 6.9069 4.9069 2.8074 1.5850 1.0000 1.5850 6.3219 1.0000 1.5850 0.0000 0.0000 4.3219 4.5850 0.0000 2.0000 1.5850 0.0000 7.8265 1.0000 3.9069 3.0000 0.0000 1.0000 3.8074 0.0000 1.5850 2.3219 0.0000 7.7347 2.3219 0.0000 1.0000 6.5076 0.0000 5.0444 0.0000 1.0000 0.0000 4.2479 1.0000 3.4594 0.0000 1.5850 1.0000 3.1699 4.7549 6.7004 1.0000 2.8074 1.0000 0.0000 5.5546 2.8074 3.1699 1.0000 0.0000 3.1699 3.0000 1.5850 0.0000 1.0000 0.0000 1.5850 6.6852 7.3487 2.3219 3.0197 0.0000 0.0000 1.5850 0.0000 2.2418 3.3219 0.0000 1.0000 5.2479 0.0000 1.0000 4.3923 1.5850 0.0000 1.5850 0.0000 0.0000 0.0000 0.0000 3.5850 0.0000 0.0000 3.1699 0.0000 5.4263 2.0000 6.8329 5.0000 5.1293 0.0000 5.2854 0.0000 2.3219 0.0000 1.0000 1.0000 1.0000 2.3219 1.0000 0.0000 1.0000 0.0000 0.0000 6.5699 2.3219 0.0000 3.9069 0.0000 0.0000 0.0000 1.0000 0.0000 1.5850 1.0000 2.5850 0.0000 1.0000 0.0000 0.0000 1.0000 0.0000 7.2668 0.0000 4.6439 2.0000 0.0000 1.0000 1.0000 3.6112 2.5850 1.5850 1.5850 2.5850 3.0000 0.0000 1.0000 4.5236 3.0000 0.0000 0.0000 0.0000 1.5850 0.0000 0.0 1.0000 1.0000 1.0000 0.0000 2.0000 0.0000 0.0000 0.0000 7.1370 1.5850 2.5850 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 3.7004 5.8329 0.0000 2.0000 1.0000 4.8074 5.3576 5.8074 4.3219 1.0000 0.0000 2.0000 3.5850 6.6724 3.7004 4.1699 0.0000 0.0000 0.0000 0.0000 4.9069 4.0000 0.0000 0.0000 7.1599 1.0000 1.0000 0.0000 1.5850 7.2946 1.0000 3.5850 1.5850 0.0000 0.0000 0.0000 1.0000 0.0000 1.0000 1.0000 5.7549 1.0000 4.4594 3.8074 2.5850 8.0112 5.3576 0.0000 5.7549 0.0000 0.0000 1.0000 6.1755 0.0000 4.0875 2.0000 6.4594 1.0000 8.4594 5.4263 0.0000 4.0000 1.0000 0.0000 8.2522 0.0000 0.0000 0.0000 0.0000 1.5850 0.0000 1.0000 4.7549 3.0000 1.0000 0.0000 1.0000 5.3576 0.0000 2.3219 0.0000 1.0000 0.0000 0.0000 1.5850 1.0000 0.0000 1.5850 1.0000 0.0000 1.0000 3.4594 0.0000 4.5850 0.0000 1.0000 1.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 7.1255 0.0000 0.0000 1.2079 1.0000 0.0000 0.0000 4.8074 0.0000 1.5850 5.0444 1.5850 0.0000 1.5850 2.3219 0.0000 0.0000 4.7004 1.0000 3.5850 3.5850 0.0000 1.0000 4.0875 1.5850 0.0000 2.3219 2.3219 0.0000 0.0000 2.0000 1.0000 7.2095 1.0000 5.1699 3.9069 0.0000 1.5850 0.0000 2.0000 4.3219 1.0000 0.0000 1.0000 1.0000 0.0000 4.2479 3.8074 0.0000 5.5084 5.3916 1.0000 1.0000 2.3219 4.4790 1.0000 2.0000 4.3923 3.9069 0.0000 0.0000 4.0000 2.3219 0.0000 4.8580 7.9050 0.0000 2.8074 0.0000 1.5850 0.0000 5.3219 0.0000 2.0000 1.0000 2.0000 0.0000 0.0000 1.0000 0.0000 2.3219 2.3219 0.0000 0.0000 0.0000 1.5850 5.7004 0.0000 1.0000 1.0000 0.0000 0.0000 1.5850 2.3219 0.0000 0.0000 1.5850 0.0000 3.0000 3.0000 0.0000 0.0000 1.0000 0.0000 0.0000 5.5850 0.0000 1.5850 2.8074 0.0000 2.5850 1.0000 1.0000 5.3576 1.0000 1.0000 4.2479 0.0000 0.0000 4.8580 2.4330 1.0000 5.2854 1.5850 3.5850 0.0000 0.0000 1.5850 3.8074 1.0000 0.0000 1.0000 1.0000 7.0661 1.0000 0.9561 2.0000 0.0000 1.0000 0.0000 1.0000 3.3219 0.0000 0.0000 1.5850 1.0000 0.0000 5.7279 1.0000 2.0000 1.0000 0.0000 0.0000 2.5850 1.0000 0.0000 6.5236 5.3391 0.0000 1.5850 3.1699 3.7004 5.2095 2.5850 6.8074 4.3923 1.0000 1.5850 5.1293 0.0000 1.0000 0.0000 1.5850 5.2854 1.5850 0.0000 1.5850 0.0000 6.9542 0.0000 3.5850 1.0000 4.1699 1.5850 0.0000 2.8074 0.0000 2.3219 2.0000 3.5850 1.0000 4.3219 0.0000 3.3219 1.0000 2.3219 3.1699 2.8074 5.5546 3.7004 3.3219 0.0000 0.0000 1.5850 5.2479 1.5850 0.0000 1.5850 4.7290 1.0000 3.1699 1.0000 0.0000 0.0000 0.0000 1.0000 3.3219 0.0000 0.0000 0.0000 0.0000 4.3219 5.0444 1.5850 5.2479 1.0000 3.4594 0.0000 4.5850 1.0000 5.9307 0.0000 3.0000 5.2095 0.0000 3.8074 1.0000 5.0000 3.0000 1.5850 6.2668 4.8580 1.5850 2.3219 3.4594 1.5850 3.1699 0.0000 3.4594 3.3219 4.8074 1.5850 7.0000 5.9542 0.0000 0.0000 1.0000 2.8074 1.0000 1.5850 5.2479 1.0000 0.0000 4.0000 0.0000 0.0000 1.0000 5.4919 5.5850 0.0000 0.0000 1.0000 0.0000 0.0000 1.0000 1.0000 0.0000 2.0000 1.5850 0.0000 0.0000 0.0000 0.0000 3.0000 1.0000 2.8074 1.0000 0.0000 2.5850 0.0000 0.0000 4.6439 1.5850 0.0000 2.5850 3.5850 1.0000 1.5850 3.4594 1.0000 0.0000 3.5850 5.7814 2.0000 2.3219 6.9542 6.8329 0.0000 0.0000 1.0000 1.0000 4.9542 0.0000 1.0000 2.0000 0.0000 2.3219 4.0875 0.0000 0.0000 5.9542 3.1699 1.0000 0.0000 0.0000 1.5850 3.5850 0.0000 1.0000 3.4594 2.5850 0.0000 3.9069 1.0000 0.0000 0.0000 1.0000 5.2479 0.0000 3.3219 5.1293 4.3923 0.0000 2.3219 1.0000 3.5850 1.0000 3.1699 0.0000 0.0000 4.8074 5.2479 0.0000 2.0000 6.1293 0.0000 1.0000 1.0000 0.0000 0.0000 1.0000 1.8237 5.4263 0.0000 7.3837 0.0000 0.0000 1.0000 0.0000 1.5850 1.5850 1.0000 0.0000 4.2188 7.8948 6.9069 4.4594 4.9069 1.0000 4.0000 0.0000 0.0000 1.0000 0.0000 5.6147 1.0000 0.0000 0.0000 0.0000 4.3923 0.0000 1.0000 3.5850 0.0000 4.9542 0.0000 1.0000 5.0875 0.0000 1.5850 3.7004 1.5850 0.0000 3.3219 1.0000 1.0000 4.3923 1.5850 0.0000 0.0000 1.0000 1.0000 0.0000 0.0000 1.0000 4.2479 3.4594 1.0000 0.0000 3.5198 0.0000 2.5850 4.1699 0.0000 0.0000 5.0875 1.0000 4.9759 2.0000 3.1699 1.5850 1.5850 1.5850 4.3923 4.0875 0.0000 0.0000 0.0000 1.5850 1.5850 1.0000 2.0000 3.3219 1.0000 0.0000 2.5850 1.0000 3.9165 0.0000 4.9069 4.8074 3.0000 1.0000 1.5850 5.7004 5.0000 5.0875 3.9069 4.4594 1.5850 7.7609 0.0000 4.0875 2.0000 2.3219 1.0000 0.0000 2.3219 4.5850 3.4594 6.9658 0.0000 1.0000 0.0000 5.5236 4.0000 0.0000 1.0000 0.0000 1.5850 1.5850 1.5850 0.0000 1.0000 0.0000 2.0000 0.0000 3.9069 2.5850 0.0000 1.5850 0.0000 6.0224 1.0000 0.0000 0.0000 4.7004 0.0000 2.0000 3.1699 2.0000 3.5850 1.0000 0.0000 2.8074 0.0000 0.0000 1.0000 0.0000 0.0000 8.2456 1.0000 3.3219 0.0000 0.0000 0.0000 4.1699 1.5850 4.1699 2.3219 2.0000 0.0000 0.0000 0.0000 0.0000 2.0000 7.5314 2.5850 7.6411 7.0875 0.0000 1.0000 0.0000 0.0000 5.8074 1.0000 4.9542 0.0000 0.0000 3.8074 1.0000 0.0000 3.3219 4.2479 4.3923 2.3219 1.5850 1.5850 5.6439 1.0000 5.0687 1.0000 3.8074 0.0000 4.1699 2.3219 0.0000 0.0000 1.0000 5.0000 1.0000 4.2690 1.0000 7.9069 3.1699 3.9069 0.0000 0.0000 3.1699 3.1699 3.4594 2.8074 1.0000 0.0000 0.0000 1.5850 0.0000 0.0000 1.5850 1.5850 1.0000 1.0000 1.5850 1.0000 0.0000 5.9773 1.0000 1.0000 1.0000 1.5850 0.0000 0.0000 1.0000 2.8074 0.8156 3.4594 1.5850 1.4647 4.2479 0.0000 0.0000 2.5850 3.1699 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 4.5236 5.3345 5.8074 0.0000 4.6542 0.0000 1.0000 4.0000 2.8074 1.0000 1.5850 0.0000 5.4158 5.3219 1.7268 2.3219 1.0000 0.0000 0.0000 1.0000 5.4919 4.3219 1.5850 2.0000 1.0000 3.5850 1.5850 3.0000 0.0000 1.0000 5.1699 0.0000 1.0000 7.7748 0.0000 6.7142 0.0000 2.0000 0.0000 2.5850 0.0000 3.7004 1.5850 0.0000 1.0000 0.0000 2.0000 0.0000 3.8074 0.0000 1.0000 0.0000 1.0000 0.0000 1.0000 0.0000 6.9658 1.5850 2.3219 1.0000 1.0000 1.0000 0.0000 0.0000 0.0000 0.0000 4.8580 5.3219 4.6439 0.0000 2.5850 1.0000 1.0000 0.0000 0.0000 1.0000 5.0000 6.4094 3.8074 7.4676 2.3219 2.0000 0.0000 0.0000 2.5850 0.0000 1.0000 2.0000 1.5850 0.0000 1.5850 0.0000 0.0000 4.0000 3.5850 0.0000 3.9069 7.8948 1.0000 0.0000 0.0000 6.0661 1.0000 0.0000 0.0000 1.5850 0.0000 1.0000 0.0000 3.0000 1.0000 0.0000 1.5850 1.5850 0.0000 1.0000 2.3219 3.0000 5.9773 1.0000 0.0000 0.0000 5.7549 5.7279 0.0000 1.0000 0.0000 1.5850 5.6147 1.5850 2.0000 0.0000 6.0590 5.2479 2.3219 5.6724 1.0000 1.5850 0.0000 3.8074 1.0000 1.5850 1.0000 2.8074 5.0000 5.0000 7.7415 0.0000 2.8074 3.9069 0.0000 0.0000 1.5850 0.0000 0.0000 1.0000 0.0000 1.0000 0.0000 1.5850 0.0000 0.0000 2.5850 3.3219 0.0000 2.0000 0.0000 1.5850 2.3219 0.0000 3.1699 0.0000 3.8074 1.0000 0.0000 3.1699 6.5236 0.0000 0.0000 2.0000 4.1699 2.0000 7.9830 6.4094 1.0000 0.0000 1.5850 1.5850 1.5850 2.0000 0.0000 5.2854 1.0000 0.0000 1.0000 7.9189 0.0000 3.4594 4.1699 4.5236 1.0000 1.0000 0.0000 6.3923 4.0000 1.0000 0.0000 3.3219 0.0000 4.5850 3.0000 0.0000 1.0000 3.9069 1.0000 0.0000 5.0184 0.0000 3.9069 5.0000 4.0875 7.8580 0.0000 0.0000 1.5850 0.0000 1.5850 1.0000 1.0000 0.0000 1.5850 1.5850 1.0000 1.0000 5.8580 0.0000 3.9069 4.6439 0.0000 3.9069 4.4594 0.0000 6.2095 1.0000 0.0000 2.0000 7.2574 5.5236 0.0000 2.0000 0.0000 3.5850 0.0000 4.1391 1.0000 0.0000 0.0000 3.7004 3.9069 1.0000 5.4594 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 6.1497 0.0000 0.0000 0.0000 1.0000 1.0000 0.0000 4.5850 1.0000 0.0000 5.1699 1.0000 6.7142 0.0000 0.0000 0.0000 1.5850 0.0000 3.4594 4.0875 0.0000 1.0000 1.5850 2.3219 1.0000 4.5236 0.0000 7.7127 5.4263 5.6516 1.0000 0.0000 1.0000 0.0000 0.0000 3.8074 3.8074 6.7814 0.0000 2.0000 0.0000 1.5850 0.0000 2.0000 0.0000 0.0000 1.0000 4.3923 5.9071 0.0000 1.5850 6.5392 4.5850 0.0000 0.0000 0.0000 1.5850 1.0000 3.8074 0.0000 6.1085 0.0000 2.8074 4.8074 1.0000 2.0000 0.0000 2.8074 0.0000 4.2479 3.8074 4.7004 0.0000 7.8200 1.0000 7.0224 0.0000 0.0000 0.0000 1.0000 1.0000 0.0000 0.0000 1.0000 0.0000 1.5850 0.0000 7.2192 0.0000 6.3576 0.0000 0.5460 4.7004 1.0000 0.0000 1.5850 1.0000 2.0000 0.0000 3.9069 0.0000 0.0000 3.3219 0.0000 7.6724 5.4594 1.5850 0.0000 2.3219 2.0000 3.0000 0.0000 4.0000 4.0875 0.0000 0.0000 2.3219 0.0000 0.0000 1.0000 1.0000 1.5850 1.0000 0.0000 0.0000 1.5850 0.0000 3.0000 5.4263 1.0000 1.5850 2.8074 2.3219 0.0000 1.0000 3.1699 0.0000 0.0000 3.1699 1.0000 1.5850 0.0000 2.3219 1.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.5850 7.2172 6.5236 0.0000 0.0000 0.0000 1.0000 0.0000 1.5850 2.8074 2.0000 0.0000 1.5850 0.0000 1.0000 3.1699 1.0000 1.0000 0.0000 0.0000 4.1699 1.0000 5.5850 4.5236 0.0000 2.3219 0.0000 7.0875 1.5850 0.0000 4.5236 0.0000 0.0000 1.0000 0.0000 5.2479 2.0000 3.3219 2.8074 1.5850 1.0000 5.6724 0.0000 1.0000 1.0000 5.6724 4.0875 0.0000 3.3219 3.9069 2.8074 1.0000 1.0000 3.1699 1.0000 0.0000 5.3448 3.5850 0.0000 1.0000 5.8826 2.0000 1.0000 1.5850 1.0000 0.0000 6.7279 0.0000 2.0000 1.0000 0.0000 1.5850 0.0000 5.2854 1.0000 0.6871 0.0000 1.0000 2.5850 1.0000 6.8329 0.0000 2.0000 0.0000 1.0000 0.0000 3.0000 6.6294 3.1699 2.0000 0.0000 1.5850 0.0000 1.5850 0.0000 0.0000 1.5850 1.0000 1.5850 1.0000 3.5850 0.0000 4.8074 6.9129 2.3219 2.0000 0.0000 1.5850 0.0000 1.0000 4.0000 4.4594 2.0000 1.0000 0.0000 2.3219 1.0000 1.0000 2.0000 2.0000 3.9317 1.0000 1.0000 4.0000 1.0000 4.9069 0.0000 0.0000 0.0000 0.0000 2.5850 2.5850 0.0000 3.3219 0.0000 0.0000 2.0000 1.5850 2.0000 1.0000 0.0000 3.4594 4.3923 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 1.5850 2.8074 2.3219 0.0000 5.9069 2.3219 1.0000 1.0000 0.0000 2.0000 4.0000 3.0000 6.6724 0.0000 1.0000 1.0000 0.0000 1.0000 2.3219 5.2095 0.0000 1.5850 0.0000 1.0000 2.0000 6.0661 1.0000 0.0000 0.0000 1.0000 0.0000 0.0000 1.0000 1.0000 2.3219 1.5850 0.0000 6.9697 2.0000 0.0000 1.5850 1.5850 4.6439 2.0000 0.0000 1.0000 1.5850 4.5850 0.0000 0.0000 0.0000 0.0000 1.0000 4.1699 3.5850 1.0000 0.0000 7.7102 0.0000 0.0000 3.4594 2.5850 3.3219 1.0000 0.0000 0.0000 2.0000 0.0000 5.3219 0.0000 0.0000 0.0000 1.0000 0.0000 6.6294 1.0000 1.5850 3.0000 3.8074 0.0000 0.0000 1.0000 5.0444 1.5850 0.0000 6.7438 0.0000 1.0000 1.0000 0.0000 1.0000 2.0000 2.8074 5.9307 0.0000 2.0000 3.3219 2.5850 0.0000 1.0000 0.0000 1.5850 1.0000 1.5850 4.0000 0.0000 1.5850 6.0224 0.0000 4.7004 6.1293 3.7004 0.0000 0.0000 0.0000 0.0000 4.9542 2.0000 5.0000 2.3219 1.0000 0.0000 6.6865 1.0000 0.0000 0.0000 1.0000 4.0000 1.0000 0.0000 1.0000 2.8074 1.5850 1.0000 0.0000 0.0000 0.0000 1.5850 0.0000 0.0000 0.0000 1.5850 0.0000 3.5850 1.0000 1.0000 2.8074 4.3923 1.0000 1.5850 1.0000 5.5546 1.5850 0.0000 4.5850 0.0000 0.0000 2.3219 0.0000 0.0000 2.5850 0.0000 0.0000 0.0000 0.0000 0.0000 2.8074 1.0000 1.0000 0.0000 0.0000 0.0000 1.5850 4.3923 2.0000 1.0000 1.0000 1.0000 2.3219 1.0000 7.9887 6.2479 3.1699 0.0000 2.8197 0.0000 0.0000 0.0000 1.0000 1.0000 0.0000 0.0000 0.0000 6.2479 0.0000 3.4594 0.0000 1.0000 5.4919 6.0444 1.0000 0.0000 1.0000 4.5236 0.0000 0.0000 3.7004 0.0000 1.0000 2.5850 0.0000 5.2479 7.1997 1.0000 0.0000 1.5850 4.8074 0.0000 0.0000 2.0000 6.3052 2.0000 0.0000 5.2638 2.3219 1.0000 0.0000 0.0000 0.0000 0.0000 2.0000 5.7814 3.5850 7.5236 1.0000 0.0000 1.0000 2.0000 3.0000 3.0000 2.0000 0.0000 6.2854 0.0000 0.0000 1.0000 1.5850 1.0000 0.0000 1.5850 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 3.5850 4.2479 1.0000 2.5850 3.7004 1.0000 2.8074 1.5850 0.0000 4.2479 0.0000 3.0000 2.0000 1.0000 1.5850 5.5014 1.5850 2.0000 3.4594 0.0000 0.0000 1.5850 0.0000 5.6724 2.3219 0.0000 1.5850 0.0000 7.2479 0.0000 2.5850 5.5546 1.0000 0.0000 1.0000 0.0000 0.0000 5.7549 2.0000 1.0000 1.0000 0.0000 2.0000 0.0000 1.5850 1.0000 4.2479 1.0000 2.3219 0.0000 1.0000 0.0000 1.5850 4.7549 0.0000 3.0000 1.5850 1.0000 1.0000 1.5850 2.5850 0.0000 3.8074 8.2808 4.1699 0.0000 3.7004 0.0000 2.3219 2.0000 1.0000 0.0000 4.0875 3.0000 0.0000 1.0000 0.0000 0.0000 8.3796 1.5850 1.0000 0.0000 0.0000 2.3219 1.5850 0.0000 1.0000 1.5850 2.0000 5.2095 0.0000 2.0000 3.7004 2.0000 1.0000 0.0000 2.0000 1.5850 0.0000 0.0000 0.0000 5.3576 0.0000 1.5850 1.0000 1.0000 0.0000 0.0000 2.0000 0.0000 5.3968 2.5850 0.0000 4.0875 0.0000 1.5850 0.0000 8.2621 0.0000 8.4553 4.4594 5.8329 0.0000 2.5850 6.4878 0.0000 1.0000 0.0000 1.0000 1.5850 3.5850 1.0000 0.0000 1.5850 5.5236 1.0000 1.5850 0.0000 1.0000 4.6982 0.0000 0.0000 1.0000 2.5850 0.0000 5.1699 6.2346 1.0000 1.5850 1.0000 4.7004 3.0000 1.0000 0.0000 1.5850 2.0000 1.0000 6.0000 1.0000 3.0000 0.0000 0.0000 2.0000 0.0000 4.7549 0.0000 6.6439 1.0000 0.0000 6.3219 1.5850 6.1699 2.8074 5.6439 6.2854 0.0000 2.0000 0.0000 3.7004 2.0000 0.0000 0.0000 0.0000 1.0000 1.0000 1.5850 0.0000 0.0000 4.4594 0.0000 2.3219 0.0000 1.0000 3.5850 3.1699 1.5850 0.0000 0.0000 2.0000 0.0000 2.0000 6.4263 0.0000 1.5850 1.0000 5.0000 2.0000 2.8074 5.3923 2.5850 0.0000 1.0000 3.8074 4.1699 2.0000 5.0875 5.3923 2.0000 0.0000 0.0000 4.5236 1.0000 1.0000 0.0000 0.0000 1.5850 1.5850 1.0000 3.4594 1.0000 0.0000 0.0000 2.5850 3.3219 5.3576 7.1085 5.1293 3.3219 1.0000 6.9185 2.0000 4.8074 0.0000 0.0000 0.0000 1.5850 2.3219 1.0000 0.0000 7.2855 4.7549 1.5850 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.4594 2.0000 1.5850 0.0000 0.0000 0.0000 3.8074 0.0000 1.0000 6.1969 0.0000 1.5850 1.0000 1.5850 7.0299 0.0000 1.0000 0.0000 1.5850 2.3219 1.0000 0.0000 0.0000 1.0000 2.8074 1.0000 5.2095 0.0000 2.0000 1.0000 1.0000 0.0000 0.0000 1.0000 1.5850 0.0000 1.0000 6.8074 6.6865 2.0000 0.0000 1.5850 0.0000 0.0000 0.0000 0.0000 0.0000 2.5850 3.1699 0.0000 1.5850 1.5850 0.0000 1.0000 0.0000 0.0000 1.5850 1.5850 4.5850 0.0000 1.5850 7.5084 2.8074 1.0000 1.5850 2.0000 0.0000 2.3219 0.0000 4.8074 0.0000 1.0000 0.0000 1.5850 0.0000 0.0000 1.5850 1.5850 1.5850 1.5850 7.4429 0.0000 5.8329 0.0000 2.0000 0.0000 0.0000 0.0000 1.5850 1.0000 0.0000 0.0000 0.0000 0.0000 2.5850 4.3923 0.0000 7.7211 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 1.5850 0.0000 2.8074 1.0000 3.3219 0.0000 3.4594 0.0000 3.7004 1.0000 7.5157 1.0000 2.0000 2.5850 3.0000 0.0000 0.0000 1.0000 1.5850 2.5850 3.5850 2.0000 2.3219 1.0000 1.0000 1.0000 1.0000 1.5850 3.9069 3.3219 4.6439 6.0444 4.3219 1.0000 1.0000 0.0000 5.7004 0.0000 1.0000 1.0000 1.0000 0.0000 1.0000 2.0000 1.0000 3.5850 0.0000 1.1953 2.0000 3.1699 2.5850 4.6439 1.0000 1.5850 0.0000 1.0000 2.8074 4.5236 0.0000 1.5850 0.0000 1.0000 1.0000 4.0000 1.0000 1.0000 1.0000 1.0000 1.0000 1.0000 2.0000 1.0000 2.0000 0.0000 2.0000 1.0000 0.0000 1.0000 3.3219 1.0000 0.0000 1.0000 5.3576 5.2095 0.0000 4.5850 1.0000 0.0000 3.5850 0.0000 0.0000 0.0000 0.0000 2.5850 4.0875 1.5850 0.0000 2.0000 2.3219 5.0000 0.0000 0.0000 0.0000 6.9425 4.3923 1.0000 0.0000 7.0553 3.1699 1.5850 0.0000 0.0000 2.3219 0.0000 1.0000 2.3219 6.8074 1.0000 0.0000 6.8074 2.0000 0.0000 1.5850 4.9542 1.5850 0.0000 0.0000 1.0000 1.5850 0.0000 1.0000 2.0000 0.0000 0.0000 0.0000 0.0000 3.7004 0.0000 2.8074 3.8074 4.9069 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 1.5850 5.0875 3.5850 0.0000 4.4594 0.0000 5.3219 1.0000 1.0000 2.3219 0.0000 0.0000 4.9542 1.0000 5.3923 1.5850 2.5850 1.0000 0.0000 5.2854 0.0000 1.0000 0.0000 0.0000 0.0000 5.1293 6.9189 0.0000 1.0000 4.6439 0.0000 0.0000 2.0000 0.0000 5.3576 4.6439 4.1699 2.8074 1.0000 0.0000 1.0000 0.0000 7.6949 1.0000 1.0000 0.0000 0.0000 0.0000 1.5850 3.3219 3.3219 5.1293 0.0000 4.5850 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 3.8074 5.9307 0.0000 4.0875 1.5850 4.8074 1.0000 1.0000 3.0144 6.3038 5.2479 0.0000 2.0000 1.0000 1.0000 1.0000 8.5546 1.0000 1.0000 2.0000 1.0000 1.0000 0.0000 2.3219 2.0000 4.6439 2.5850 3.9069 1.0000 3.7004 3.4594 0.0000 1.5850 0.0000 0.0000 1.0000 2.0000 1.5850 3.3219 3.5850 0.0000 1.5850 3.4594 1.5850 6.1878 7.4512 2.0000 0.0000 1.0000 0.0000 4.6439 0.0000 5.5236 1.5850 4.7004 2.3219 0.0000 4.7252 3.7004 0.0000 0.0000 1.0000 2.8074 1.5850 0.8797 0.0000 4.5850 0.0000 1.0000 0.0000 1.0000 0.0000 3.0000 1.0000 0.0000 2.0000 2.3219 4.0875 2.0000 4.5874 5.0000 1.0000 2.3219 0.0000 0.0000 4.9069 0.0000 4.0875 0.0000 0.0000 1.9598 1.5850 6.7549 1.0000 1.5850 7.0000 1.5850 3.5850 2.3219 0.0000 0.0000 0.0000 1.0000 1.0000 0.0000 0.0000 0.0000 2.0000 0.0000 3.0000 2.0000 3.3219 5.4263 1.0000 3.3219 1.5850 0.0000 2.8074 0.0000 4.0000 0.0000 0.0000 0.0000 0.0000 5.3576 1.0000 0.0000 0.0000 0.0000 1.5850 1.5850 1.0000 0.0000 0.0000 0.0000 7.0898 3.1699 2.0000 0.0000 2.0000 1.0000 6.8151 0.0000 2.0000 1.5850 4.6153 0.0000 3.1699 0.0000 0.0000 0.0000 1.0000 0.0000 6.3399 4.0875 0.0000 1.0000 1.0000 2.5850 1.0000 1.5850 2.3219 2.3219 2.5850 0.0000 0.0000 0.0000 1.5850 0.0000 6.3399 5.4263 6.7142 5.1699 4.5236 3.9069 1.5850 5.0000 0.0000 2.8074 0.0000 0.0000 1.0000 1.0000 5.5546 0.0000 1.5850 1.0000 4.4594 3.5850 0.0000 2.3219 1.0000 0.0000 0.0000 3.1699 5.1691 0.0000 0.0000 0.0000 2.5850 0.0000 4.7004 2.3219 1.0000 0.0000 2.3219 6.3450 0.0000 0.0000 0.0000 1.0000 1.5850 0.0000 0.0000 0.0000 6.4557 3.3219 0.0000 0.0000 0.0000 0.0000 3.1699 7.6195 1.0000 0.0000 2.3219 3.5850 5.3219 1.0000 6.0224 4.5850 3.0000 1.5850 0.0000 1.5850 4.4594 4.2479 0.0000 4.7549 1.0000 2.5850 4.8074 4.6439 1.5850 1.5850 0.0000 3.5850 1.5850 0.0000 0.0000 1.0000 1.5850 0.0000 2.0000 0.0000 0.0000 6.5236 0.0000 2.0000 1.0000 1.5850 0.0000 2.0000 1.0000 0.0000 0.0000 2.5850 4.2479 2.0000 2.0000 1.0000 6.9628 1.0000 0.0000 7.4346 2.8074 0.0000 3.5850 1.0000 0.0000 0.0000 2.5850 0.0000 0.0000 2.0000 1.5850 1.0000 4.9069 4.4594 0.0000 1.0000 2.3219 3.0000 6.8948 5.6585 1.0000 2.0000 0.0000 0.0000 4.7549 5.3590 1.5850 1.0000 4.3923 1.0000 6.4094 4.2479 1.0000 1.0000 1.5850 3.4594 1.0000 0.0000 7.7415 4.1699 0.0000 1.5850 0.0000 6.5546 1.0000 1.0000 1.5850 2.3219 0.0000 4.2479 4.3923 1.0000 2.5850 0.0000 0.0000 1.5850 0.0000 1.7908 0.0000 0.0000 1.0000 1.5850 2.8074 1.0000 0.0000 0.0000 3.7004 1.0000 5.3576 1.5850 7.2384 4.2479 0.0000 0.0000 0.0000 1.0000 5.1293 1.5850 0.0000 5.7452 1.0000 0.0000 0.0000 1.0000 1.0000 0.0000 1.0000 0.0000 5.1699 0.0000 1.5850 0.0000 5.5236 0.0000 1.0000 1.0000 8.1037 1.0000 0.0000 0.0000 2.0000 4.0000 0.0000 1.5850 7.7216 4.5236 1.0000 0.0000 0.0000 0.0000 4.8074 1.0000 3.3219 2.3219 0.0000 5.9069 1.5850 1.0000 1.5850 3.3219 5.2479 6.3038 0.0000 1.5850 0.0000 1.0000 0.0000 0.0000 1.0000 1.0000 1.5850 1.0000 5.8826 3.4594 0.0000 1.0000 0.0000 3.9069 5.6147 0.0000 3.7004 6.1898 2.5850 1.0000 1.5850 6.4594 6.5699 0.0000 0.0000 0.0000 0.0000 4.0000 1.0000 0.0000 1.0000 1.0000 8.0389 1.0000 0.0000 1.0000 0.0000 1.0000 0.5558 2.0000 0.0000 1.0000 8.0980 1.0000 1.5850 0.0000 4.5236 4.5236 4.2479 0.0000 2.0000 3.1699 1.5850 0.0000 1.0000 3.4594 1.0000 4.8074 1.0000 0.0000 4.0875 0.0000 0.0000 3.7004 0.0000 0.0000 1.0000 1.5850 0.0000 1.0000 0.0000 2.0000 1.0000 0.0000 1.5850 0.0000 0.0000 0.0000 1.0000 0.0000 1.5850 0.0000 0.0000 0.0000 4.7004 0.0000 5.9537 1.0000 4.8580 1.6960 1.0000 1.0000 0.0000 0.0000 1.5850 0.0000 7.0980 1.0000 4.0000 4.0566 3.3219 7.1699 1.5850 0.0000 0.0000 0.0000 0.0000 1.5850 0.0000 4.6439 0.0000 4.5236 1.5850 1.0000 3.9069 0.0000 1.5850 1.5850 0.0000 7.6582 0.0000 5.0000 1.5850 5.3219 1.0000 4.9069 5.0875 0.0000 1.0000 1.0000 0.0000 0.0000 1.0000 2.5850 2.8074 1.5850 6.9955 0.0000 1.0000 0.0000 1.0000 1.5850 1.5850 3.4594 0.0000 0.0000 4.8580 3.7004 0.0000 0.0000 1.5850 3.9973 1.5850 0.0000 3.0000 6.5078 1.5850 1.0000 0.0000 2.0000 4.3219 1.0000 0.0000 4.8074 1.5850 6.9392 2.3219 4.6141 3.0000 1.0000 0.0000 3.5850 1.5850 0.0000 0.0000 5.1293 1.0000 2.0000 0.0000 1.5850 0.0000 1.0000 0.0000 3.3219 0.0000 1.0000 0.0000 3.1699 3.9069 0.0000 1.0000 4.3219 0.0000 0.0000 0.0000 0.0000 4.3219 1.5850 2.0000 0.0000 4.7004 1.5850 1.0000 5.8074 0.0000 3.7004 1.0000 1.0000 1.5850 1.0000 0.0000 0.0000 0.0000 0.0000 1.5850 0.0000 0.0000 0.0000 3.0000 0.0000 1.0000 5.7814 0.0000 0.0000 8.4168 0.0000 0.0000 2.8074 1.5850 0.0000 1.0000 3.7004 0.0000 3.3219 4.5236 4.2479 0.0000 1.0000 0.0000 4.0875 8.1344 1.0000 0.0000 0.0000 0.0000 1.5850 3.5850 3.7004 1.0000 1.5850 2.0000 4.3923 4.3219 5.8227 0.0000 1.0000 0.0000 3.1699 1.0000 4.7004 1.5850 0.0000 3.1699 1.0000 0.0000 7.5469 4.7549 3.3219 2.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 7.8948 0.0000 2.3219 1.5850 1.0000 2.8074 0.0000 1.0000 2.3219 0.0000 3.9069 3.5850 0.0000 2.8074 1.0000 1.0000 3.9069 0.0000 1.5850 3.1699 1.5850 5.7004 3.4594 5.4919 1.5850 0.0000 1.0000 4.7004 5.5546 1.0000 1.0000 3.7004 0.0000 0.0000 0.0000 4.0875 0.0000 0.0000 4.5850 0.0000 0.0000 0.0000 7.7682 2.5850 1.0000 1.0000 1.0000 1.0000 7.2479 0.0000 2.0000 3.4594 0.0000 0.0000 1.5850 0.0000 1.0000 0.0000 1.5850 1.0000 4.9069 3.1699 0.0000 0.0000 7.2817 1.0000 7.7188 1.5850 2.0000 1.5850 1.0000 6.8704 3.1699 1.0000 1.0000 2.0000 1.0000 0.0000 1.0000 4.0000 2.1603 0.0000 4.7004 2.0000 2.5850 0.0000 1.5850 0.0000 1.0000 1.0000 1.0000 0.0000 1.5850 1.0000 1.0000 0.0000 0.0000 5.0444 2.5850 2.8074 0.0000 4.9069 3.7004 0.0000 4.3923 1.0000 0.0000 0.0000 1.0000 3.4594 0.0000 1.5850 5.2854 2.0000 2.0000 0.0000 1.0000 6.0875 1.0000 0.0000 1.0000 0.0000 3.0000 0.0000 0.0000 4.4594 0.0000 5.2479 0.0000 1.5850 0.0000 1.5850 6.5392 3.4594 0.0000 4.8074 2.0000 1.0000 0.0000 8.0821 0.0000 0.0000 1.0000 1.0000 0.0000 6.4594 8.1499 3.7004 7.1997 0.0000 2.0000 1.0000 4.3219 3.1699 0.0000 0.0000 1.0000 1.5850 0.0000 1.5850 0.0000 5.0875 4.8074 0.0000 2.3219 4.7549 3.5850 0.0000 1.5850 5.7279 0.0000 1.0000 3.7004 4.0000 4.0875 0.0000 0.0000 0.0000 4.3923 1.0000 0.0000 1.5850 3.5850 0.0000 0.0000 0.0000 5.2479 0.0000 1.0000 1.5850 0.0000 1.5850 2.8074 0.0000 5.4594 0.0000 0.0000 1.0000 0.0000 2.0000 4.2479 0.0000 4.0875 5.3576 6.1898 2.3219 1.5850 4.4594 0.0000 6.5392 0.0000 0.0000 1.0000 4.5236 1.0000 0.0000 3.0000 3.5850 0.0000 1.5850 7.5392 1.0000 0.0000 2.4673 1.0000 4.5236 0.0000 1.0000 0.0000 1.5850 1.0000 0.0000 3.0000 0.0000 0.0000 0.0000 3.5850 3.0000 4.8074 0.0000 1.5850 0.0000 6.6294 0.0000 0.0000 1.0000 0.0000 0.0000 3.1699 2.3219 4.9542 2.0000 0.0000 1.0000 3.5850 4.7004 3.3219 1.0000 5.0444 3.5850 1.0000 3.0000 3.7004 3.1699 1.5850 7.6871 6.4263 5.1699 0.0000 0.0000 0.0000 5.7814 1.0000 5.2854 2.0000 3.1699 5.6439 1.5850 0.0000 0.0000 6.9887 2.8074 1.0000 0.0000 2.8074 0.0000 2.0000 0.0000 1.0000 1.5850 7.7682 0.0000 3.0000 1.0000 6.3653 4.7004 1.0000 5.0000 0.0000 0.0000 4.1077 1.5850 1.0000 1.0000 2.5850 0.0000 1.5850 3.5850 0.0000 0.0000 2.8074 1.0000 0.0000 0.0000 0.0000 4.5850 0.0000 5.6724 0.0000 2.0000 2.5850 2.5850 0.0000 5.6147 1.0000 1.0000 0.0000 1.0000 6.0444 0.0000 2.8074 0.0000 1.5850 3.0000 0.0000 1.5850 2.0000 0.0000 3.3219 2.3219 1.5850 3.7004 0.0000 2.3219 0.0000 1.0000 2.3219 4.5850 0.0000 3.8074 0.0000 2.0000 1.0000 0.0000 5.3923 4.8580 4.0875 1.0000 4.2479 0.0000 1.5850 2.0000 1.5850 3.3219 0.0000 3.7004 1.0000 4.0000 1.0000 1.0000 0.0000 3.3219 0.0000 4.8580 0.0000 0.0000 5.8074 6.4919 7.3837 6.9111 1.0000 1.5850 0.0000 5.1293 0.0000 2.0000 5.9773 0.0000 1.5850 0.0000 1.0000 5.9773 0.0000 2.5850 1.0000 1.0000 0.0000 1.0000 0.0000 1.0000 0.0000 0.0000 1.0000 0.7485 0.0000 0.0000 1.0000 1.0000 0.0000 1.5850 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.7004 1.5850 3.4594 1.0000 0.0000 1.0000 1.5850 1.0000 3.8074 0.0000 0.0000 0.0000 0.0000 4.5850 5.2095 0.0000 1.5850 5.2479 0.0000 0.0000 5.5138 0.0000 1.0000 1.5850 3.4594 1.0000 2.0000 1.0000 1.5850 7.6865 0.0000 1.5850 3.5850 1.0000 0.0000 0.0000 1.0000 6.7047 0.0000 1.5850 1.0000 0.0000 0.0000 0.0000 0.0000 7.2384 2.3219 3.3219 0.0000 1.0000 0.0000 1.0000 0.0000 1.0000 1.5850 1.0000 4.6439 1.5850 6.5546 1.0000 2.3219 3.7004 0.0000 0.0000 3.5850 7.3393 1.0000 0.0000 0.0000 4.5116 0.0000 4.2479 2.0000 8.0444 0.0000 1.0000 1.5850 2.5850 0.0000 0.0000 3.1699 1.0000 2.8074 6.5537 5.5546 1.0000 4.7004 1.0000 7.2620 3.7004 1.5850 2.0000 2.3219 0.0000 1.5850 0.0000 6.5236 2.5850 4.7581 2.0000 0.0000 2.0000 6.6658 0.0000 0.0000 0.0000 4.2479 0.0000 8.0661 0.0000 5.2095 0.0000 1.0000 1.0000 1.0000 7.9800 6.4094 1.0000 0.0000 0.0000 2.0000 0.0000 1.0000 0.0000 0.0000 1.0000 1.5850 4.9542 1.0000 0.0000 0.0000 0.0000 2.3219 2.0000 0.0000 0.0000 0.0000 1.5850 1.0000 5.0875 0.0000 0.0000 2.5850 0.0000 0.0000 1.0000 6.4019 2.0000 0.0000 4.3923 2.0000 0.0000 0.0000 2.0000 1.5850 3.0000 1.0000 1.0000 1.5850 1.5850 0.0000 0.0000 0.0000 0.0000 0.0000 2.0000 2.0000 0.0000 3.5850 0.0000 5.0000 2.5850 1.0000 4.6439 0.0000 5.0875 2.0000 0.0000 0.0000 2.3219 3.7004 1.5850 2.0000 3.3219 2.8074 2.3219 2.0000 6.2668 6.0224 0.0000 0.0000 5.3576 0.0000 1.0000 3.7004 0.0000 0.0000 1.5850 6.7002 0.0000 0.0000 2.0000 3.9079 0.0000 1.0000 3.4594 1.0000 0.0000 3.8074 1.0000 0.0000 6.2098 4.0875 1.5850 2.5850 0.0000 6.1497 5.0875 4.9542 3.8074 6.1085 0.0000 1.0000 1.0000 4.5850 1.5850 0.0000 0.0000 4.1699 1.5850 0.0000 4.0000 6.2668 3.7004 5.9307 2.5850 0.0000 0.0000 4.5850 0.0000 1.5850 0.0000 1.0000 0.0000 1.0000 0.0000 0.0000 0.0000 3.4594 1.5850 0.0000 1.0000 0.0000 3.8074 1.0000 4.2479 1.0000 4.3219 0.0000 3.5850 0.0000 1.0000 0.0000 2.0000 0.0000 0.0000 2.0000 1.0000 2.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.9069 1.0000 0.0000 0.0000 2.5850 1.0000 4.0000 1.5850 0.0000 0.0000 0.0000 4.2479 0.0000 0.0000 2.8074 1.0000 0.0000 1.5850 0.0000 1.5850 0.0000 2.3219 4.9069 5.7923 3.3219 0.0000 4.3219 0.0000 1.5850 2.8074 1.0000 1.0000 5.2479 1.0000 6.5236 0.0000 1.0000 0.0000 1.5850 1.0000 1.0000 0.0000 0.0000 0.0000 2.0000 2.0000 2.5850 6.0483 6.1699 1.5850 3.9069 0.0000 0.0000 1.0000 1.0000 0.0000 0.0000 2.0000 0.0000 0.0000 1.0000 1.0000 5.4097 0.0000 3.9069 0.0000 6.2443 1.5850 6.5236 3.8074 1.0000 8.1189 5.6147 0.0000 0.0000 1.5850 2.0000 0.0000 0.0000 2.5850 1.0000 7.5342 6.6582 1.0000 1.0000 4.0000 1.0000 0.0000 3.3219 1.0000 3.3219 0.0000 5.4594 1.5850 4.7004 0.0000 0.0000 3.1699 1.5850 0.0000 0.0000 2.3219 1.5850 1.0000 3.7004 1.5850 5.2095 1.5850 2.0000 1.0000 0.0000 0.0000 2.3219 4.8580 3.5850 0.0000 1.0000 0.0000 2.8074 5.9307 2.8074 7.8672 6.8654 2.0000 0.0000 0.0000 2.8074 7.6439 1.0000 4.4594 1.0000 2.5850 1.0000 0.0000 0.0000 4.5236 0.0000 1.0000 0.0000 0.0000 0.0000 1.0000 3.0000 3.3219 0.0000 1.5850 0.0000 5.8580 1.0000 1.0000 3.8074 0.0000 0.0000 0.0000 1.0000 0.0000 2.0000 3.7004 1.0000 0.0000 1.5850 2.0000 0.0000 0.0000 0.0000 0.0000 5.2854 1.0000 0.0000 3.8074 0.0000 1.5850 8.3400 4.6439 0.0000 2.0000 0.0000 0.0000 0.0000 0.0000 3.7004 3.1699 1.0000 6.9478 0.0000 2.0000 1.5850 2.0000 0.0000 7.5157 0.0000 0.0000 0.0000 5.7549 3.7004 6.4886 7.7356 3.0000 4.0000 0.0000 1.0000 1.0000 0.0000 1.0000 1.5850 1.5850 2.8074 0.0000 1.5850 0.0000 3.0000 0.0000 2.0000 2.3219 0.0000 0.0000 3.4594 0.0000 5.7814 0.0000 4.0000 0.0000 2.3219 2.0000 0.0000 4.1699 1.0000 0.0000 4.3219 0.0000 0.0000 0.0000 0.0000 0.0000 3.8074 0.0000 5.0444 3.7004 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.9069 1.0000 0.0000 1.0000 5.7004 2.5850 0.0000 2.0000 0.0000 0.0000 1.0000 1.0000 5.1293 1.0000 3.8074 0.0000 0.0000 1.0000 4.5236 0.0000 0.0000 2.8074 2.3219 0.0000 1.0000 0.0000 4.9069 3.8074 0.0000 1.0000 6.0444 0.0000 0.0000 0.0000 1.5850 4.7004 1.0000 0.0000 2.8074 0.0000 2.3219 0.0000 0.0000 0.0000 1.5850 2.3219 0.0000 4.2479 0.0000 1.0000 1.0000 1.0000 0.0000 6.9542 2.8074 0.0000 0.0000 0.0000 3.4594 5.0000 5.0444 0.0000 0.0000 2.3219 0.0000 0.0000 1.0000 0.0000 0.0000 1.0000 0.0000 0.0000 1.0000 1.0000 1.0000 0.0000 0.0000 8.6970 1.0000 3.0000 0.0000 0.0000 0.0000 0.0000 1.5850 1.5850 0.0000 1.5607 0.0000 5.5850 3.0000 0.0000 0.0000 2.3219 2.3219 8.0098 1.0000 3.4594 1.0000 0.0000 1.0000 0.0000 4.9542 3.0000 2.0000 1.0000 2.0000 2.0000 1.5850 0.0000 0.0000 1.0000 0.0000 1.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 3.4594 2.0000 3.3219 0.0000 0.0000 0.0000 4.5236 3.3219 1.0000 4.6439 1.5850 0.0000 0.0000 0.0000 3.0000 3.0000 1.0000 3.5850 1.0000 0.0000 4.4594 0.0000 2.0000 0.0000 1.0000 1.0000 1.0000 5.8580 0.0000 1.0000 0.0000 0.0000 2.0000 0.0000 1.0000 3.7004 0.0000 4.8074 0.0000 4.2479 3.4594 1.5850 1.5850 1.5850 3.0000 1.0000 0.0000 0.0000 6.4919 0.0000 1.0000 0.0000 0.0000 0.0000 2.0000 1.0000 0.0000 4.7554 0.0000 2.8074 0.0000 8.0731 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 1.6736 2.3219 0.0000 0.0000 0.0000 0.0000 1.0000 6.0875 1.0000 1.5850 0.0000 3.4594 1.5850 1.0000 2.8074 0.0000 1.0000 1.5850 1.0000 1.0000 3.0000 0.0000 0.0000 2.0000 2.0000 5.1293 4.6769 2.0000 2.0000 1.0000 1.0000 0.0000 1.5850 1.5850 3.5850 0.0000 4.3923 0.0000 1.0000 1.0000 4.2479 1.0000 2.0000 0.0000 2.0000 4.9069 5.0000 4.5850 1.5850 0.0000 0.0000 1.0000 0.0000 0.0000 2.0000 0.0000 0.0000 4.0875 1.0000 5.0444 1.0000 0.0000 1.0000 1.0000 0.0000 0.0000 0.0000 1.5850 1.0000 5.1699 1.5850 4.0875 1.0000 6.8580 1.0000 0.0000 0.0000 2.0000 1.0000 3.9069 1.0000 7.4305 4.5236 0.0000 0.0000 3.3262 7.5080 4.4594 0.0000 0.0000 8.2574 1.0000 2.8074 0.0000 5.4919 1.0000 0.0000 2.5850 1.0000 4.2479 2.3219 4.2479 0.0000 0.0000 0.0000 0.0000 6.8580 1.0000 0.0000 1.0000 4.8580 7.9382 0.0000 1.5850 7.2761 0.0000 3.5850 2.0000 0.0000 0.0000 0.0000 5.7382 0.0000 2.3219 5.6724 1.0000 0.0000 0.0000 0.0000 7.2192 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 4.6439 5.1699 1.0000 6.4891 0.0000 0.0000 1.0000 1.0000 1.0000 1.0000 1.5850 0.0000 0.0000 5.4919 0.0000 1.5850 0.0000 2.0000 2.0000 0.0000 3.3219 0.0000 0.0000 2.0000 5.4594 1.0000 1.0000 2.0000 0.0000 2.3219 0.0000 0.0000 0.0000 2.3219 1.0000 2.8074 1.0000 6.3038 0.0000 2.0000 1.5850 1.0000 0.0000 1.5850 0.0000 0.0000 1.0000 3.1699 4.3219 0.0000 0.0000 3.6218 4.8580 7.2081 1.0000 1.5850 3.4594 1.0000 2.8074 2.5850 0.0000 0.0000 0.0000 7.6795 0.0000 2.8074 0.0000 1.0000 0.0000 2.8074 1.0000 0.0000 1.0000 0.0000 0.0000 8.0334 4.7586 7.4838 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 6.2288 1.0000 0.0000 2.3219 5.1293 4.9069 1.5850 0.0000 1.0000 0.0000 0.0000 1.0000 0.0000 2.8074 1.0000 1.0000 0.0000 0.0000 2.3219 4.7549 4.9542 3.4594 2.0000 1.0000 1.5850 0.0000 0.0000 2.3219 3.9069 3.3219 3.5850 1.0000 1.0000 4.7692 4.5850 0.0000 1.0000 4.3923 2.0000 2.0000 1.5850 3.5850 2.3219 1.5850 5.4263 1.5850 0.0000 1.5850 4.3219 1.5850 6.2063 0.0000 0.0000 0.0000 0.0000 5.1699 0.0000 1.0000 0.0000 0.0000 1.0000 3.1699 0.0000 0.0000 1.0000 2.3219 1.5850 2.3219 0.0000 0.0000 4.5850 0.0000 5.1699 6.7944 2.0000 1.5850 3.4594 1.5850 1.0000 0.0000 0.0000 1.0000 1.0000 5.4594 2.0000 8.2761 0.0000 1.5850 1.0000 0.0000 1.0000 0.0000 1.0000 1.0000 2.0000 4.0000 4.3219 0.0000 1.5850 0.0000 1.5850 1.0000 1.0000 0.0000 3.9069 1.5850 0.0000 2.0000 0.0000 1.0000 5.8074 0.0000 0.0000 2.5850 0.0000 0.0000 1.0000 0.0000 7.4094 0.0000 0.0000 7.5469 7.1898 0.0000 0.0000 1.0000 1.0000 6.9307 1.0000 2.0000 1.5850 5.0444 3.3219 0.0000 0.0000 1.5850 1.5850 4.0000 2.9298 0.0000 1.5850 1.0000 2.5850 0.0000 1.0000 0.0000 1.5850 0.0000 0.0000 0.0000 5.2854 4.5236 0.0000 5.6439 1.0000 0.0000 1.5850 0.0000 4.4594 3.7004 1.5850 0.0000 1.0000 1.0000 2.0000 4.3923 1.5850 4.2479 0.0000 5.0444 0.0000 4.1699 1.0000 3.3219 0.0000 7.3219 4.3219 5.7279 0.0000 1.0000 0.0000 0.0000 0.0000 1.5850 4.9069 1.0000 2.3219 0.0000 1.0000 0.0000 1.5850 1.0000 5.2479 1.5850 2.0000 0.0000 1.0000 0.0000 7.0980 1.0000 5.4594 1.5850 3.3219 5.2854 2.5850 1.5850 4.4594 1.5850 4.2479 2.0000 4.3923 0.0000 1.0000 3.4594 0.0000 1.0000 0.0000 3.1699 3.3219 2.0000 1.0000 0.0000 2.5850 4.2479 0.0000 0.0000 4.0000 1.0000 0.0000 0.0000 2.5850 1.0000 1.0000 0.0000 1.0000 4.5236 0.0000 6.8455 5.4263 1.5850 0.0000 0.0000 3.8074 2.0000 1.0000 2.0000 0.0000 0.0000 4.9069 0.0000 4.3923 1.5850 0.0000 0.0000 0.0000 0.0000 0.0000 3.9069 7.8788 0.0000 1.0000 1.5850 5.0875 6.4429 1.0000 0.0000 3.8074 1.5850 0.0000 1.0000 3.8074 0.0000 0.0000 4.1699 3.3219 2.5850 0.0000 1.0000 0.0000 0.0000 6.9773 7.6294 1.0000 7.3038 0.0000 1.5850 6.6582 0.0000 0.0000 2.8074 0.0000 0.0000 1.0000 1.5850 0.0000 1.0000 4.4594 0.0000 2.0000 1.5850 0.0000 1.5850 1.5850 5.3923 4.0000 1.5850 0.0000 0.0000 3.7004 0.0000 1.5850 2.5850 6.5546 0.0000 0.0000 1.0000 2.0000 1.0000 1.0000 0.0000 1.0000 0.0000 3.5850 0.0000 1.0000 1.0000 1.0000 1.0000 3.5850 2.0000 0.0000 0.0000 4.9069 0.0000 2.0000 0.0000 5.0444 1.0000 1.0000 0.0000 1.5850 3.3219 1.0000 4.8074 4.5850 0.0000 0.0000 4.9542 0.0000 0.0000 1.0000 0.9107 1.0000 2.0000 0.0000 0.0000 0.0000 4.1699 0.0000 0.0000 1.0000 0.0000 2.0000 5.3576 0.0000 1.0000 4.7549 0.0000 1.5850 1.0000 2.0000 4.6439 1.5850 0.1243 0.0000 0.0000 7.9307 5.1699 2.0000 5.2479 3.3219 0.0000 0.0000 4.3923 0.0000 5.5850 4.8580 0.0000 0.0000 4.0875 0.0000 4.7549 4.2479 5.4594 0.0000 0.0000 1.0000 6.6439 0.0000 2.3219 0.0000 2.8074 0.0000 2.5850 0.0000 0.0000 1.0000 1.0000 3.7004 0.0000 1.5850 0.0000 1.0000 6.2782 4.7004 4.9069 0.0000 0.0000 1.5850 1.0000 1.0000 0.0000 0.0000 4.3161 0.0000 4.7004 1.0000 4.9069 2.0000 3.8074 0.0000 1.0000 0.0000 7.3219 1.5850 1.5850 1.5850 1.0000 2.0000 0.0000 0.0000 0.0000 1.5850 0.0000 1.5850 0.0000 4.2479 4.2479 1.7527 1.5850 3.4594 0.0000 0.0000 0.0000 0.0000 4.2479 7.4969 5.9307 0.0000 1.5850 1.0000 1.5850 1.5850 2.5850 0.0000 4.0875 1.2987 0.0000 0.0000 2.3219 0.0000 0.0000 1.0000 0.0000 4.3923 0.0000 0.0000 2.0000 1.0000 1.5850 1.5850 1.5850 1.5850 0.0000 4.0286 0.0000 1.0000 1.0000 2.0000 6.2095 1.0000 7.0980 0.0000 0.0000 1.0000 1.0000 4.3923 1.5850 2.8074 0.0000 4.0000 8.0104 2.3219 1.0000 1.0000 1.0000 0.0000 1.0000 1.0000 2.0000 0.0000 0.0000 1.5850 1.0000 1.0000 6.3923 4.7004 6.3399 0.0000 1.5850 1.0000 6.6724 3.1699 1.0000 6.2479 3.0000 1.0000 0.0000 5.8826 3.4594 0.0000 0.8400 0.0000 1.0000 1.0000 0.0000 1.0000 0.0000 0.0000 0.0000 1.0000 1.5850 1.5850 1.0000 0.0000 7.1599 6.6901 4.6439 2.5850 1.0000 0.0000 0.0000 0.0000 3.0000 4.8500 0.0000 0.0000 0.0000 2.0000 3.8074 0.0000 1.0000 0.0000 5.5546 0.0000 2.5850 0.0000 7.0334 2.0000 4.0875 0.0000 0.0000 1.5850 1.0000 1.5850 0.0000 0.0000 3.9069 1.0000 1.0000 4.0875 0.0000 4.9542 2.5850 0.0000 3.9069 0.0000 5.0444 4.6439 1.0000 1.0000 8.7448 1.0000 0.0000 3.9069 0.0000 0.0000 0.0000 0.0000 1.0000 1.0000 0.0000 0.0000 3.7004 0.0000 0.0000 2.0000 6.4429 0.0000 4.3219 1.0000 0.0000 0.0000 0.0000 1.5850 4.5850 1.5850 2.8074 0.0000 1.5850 3.0000 0.0000 0.0000 0.0000 3.1699 2.0000 0.0000 8.5670 0.0000 8.0553 0.0000 1.5850 2.8074 0.0000 5.9635 0.0000 6.4594 0.0000 0.0000 1.0000 0.0000 1.0000 2.3219 1.0000 3.8074 2.0000 3.5850 1.0000 0.0000 2.0000 0.0000 1.0000 6.7958 0.0000 1.5850 1.0000 2.3219 3.1699 1.5850 5.1293 1.0000 0.0000 1.0000 2.3219 0.0000 4.8580 1.5850 0.0000 5.2479 0.0000 0.0000 0.0000 0.0000 2.5850 2.8074 1.0000 2.8074 0.0000 0.0000 2.8074 1.5850 2.0000 0.0000 0.0000 0.0000 0.0000 3.5850 3.3219 3.1667 2.5850 0.0000 2.0000 0.0000 7.2288 0.0000 1.0000 1.0000 1.0000 8.4263 3.8074 1.0000 1.0000 1.5850 1.5850 1.5801 3.8074 5.6439 0.0000 1.5850 2.0000 6.0224 1.0000 5.0000 2.5850 0.0000 0.0000 0.0000 0.0000 0.0000 1.5850 0.0000 0.0000 5.2479 0.0000 4.1803 0.0000 0.0000 0.0000 1.0000 5.2854 1.0000 1.0000 0.0000 1.5850 7.4056 2.0000 1.5850 1.0000 0.0000 0.0000 4.0875 0.0000 1.0000 0.0000 0.0000 1.0000 0.0000 5.9542 1.0000 1.0000 1.0000 4.0000 3.7004 0.0000 4.7549 1.5850 5.0444 0.0000 0.0000 0.0000 2.0000 0.0000 0.0000 1.5850 1.0000 0.0000 1.0000 8.0112 2.0000 0.0000 3.4594 0.0000 1.0000 4.0000 0.0000 1.0000 0.0000 6.8704 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 1.5850 4.3219 1.0000 1.0000 0.0000 7.1129 5.7814 6.6788 2.0000 1.0000 1.5850 3.0000 1.0000 4.0000 0.0000 4.9542 2.0000 2.5850 0.0000 1.5850 4.4594 6.4983 2.0000 4.0000 0.0000 3.0000 0.0000 1.0000 2.0000 1.0000 1.5850 3.5850 6.3750 2.0000 0.0000 0.0000 0.0000 0.0000 4.1699 1.5850 0.0000 0.0000 2.0000 3.7004 1.0000 0.0000 1.5850 0.0000 4.2479 4.5236 2.3219 2.0000 3.5850 2.0000 3.1699 1.5850 1.0000 0.0000 0.0000 1.0000 1.0000 4.3923 8.0547 1.5850 1.5850 5.6724 0.0000 2.3219 0.0000 0.0000 1.5850 0.0000 3.9069 1.0000 2.0000 1.0000 6.1898 0.0000 0.0000 1.0000 5.2479 0.0000 0.0000 1.0000 3.3219 2.0000 0.0000 1.5850 0.0000 1.0000 7.5479 2.0000 3.3219 3.4594 2.3219 1.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 1.5850 8.1241 0.0000 0.0000 8.0498 0.0000 4.0000 3.4594 1.5850 3.5850 1.0000 2.5850 2.0000 1.5850 4.9350 0.0000 0.0000 1.0000 1.0000 1.5850 4.6439 1.5850 1.5850 0.0000 1.0000 1.0000 0.0000 1.0000 1.0000 5.4919 2.0000 5.8826 1.0000 0.0000 2.8074 1.0000 2.8074 0.0000 2.3219 2.0000 7.5314 0.0000 4.1699 3.0000 7.5314 0.0000 1.5850 0.0000 0.0000 0.0000 2.8074 1.5850 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 5.4594 7.2095 3.9069 1.0000 3.0000 0.0000 1.0000 4.0875 0.0000 1.0000 0.0000 0.0000 0.0000 4.3219 1.5850 5.5236 2.0000 0.0000 6.9189 3.0000 0.0000 1.5850 2.3219 8.2946 1.5850 3.9069 0.0000 1.0000 1.0000 0.0000 4.9069 2.8074 0.0000 6.3219 5.5567 0.0000 0.0000 1.0000 0.0000 2.3219 3.0000 4.0000 0.0000 2.8074 0.0000 3.4594 0.0000 0.0000 3.3219 1.0000 2.8074 0.0000 0.0000 1.0000 3.7004 1.0000 8.1626 0.0000 4.6147 0.0000 6.1497 0.0000 0.0000 5.7647 6.3923 1.0000 1.5850 1.0000 0.0000 1.0000 1.5850 0.0000 3.3219 0.0000 0.0000 0.0000 5.9773 0.0000 0.0000 1.5850 0.0000 2.3219 0.0000 7.0224 1.0000 0.0000 3.1699 3.8074 3.4594 4.3923 2.3219 1.0000 4.1699 3.0090 0.0000 0.0000 0.0000 2.0000 1.0000 4.7549 0.0000 7.8826 1.5850 0.0000 0.0000 0.0000 1.0000 1.0000 3.3219 5.4263 0.0000 0.0000 4.8580 1.0000 2.8074 5.9307 1.0000 0.0000 7.6949 2.0000 2.3219 5.3219 5.0000 0.0000 1.5850 0.0000 6.7415 0.0000 2.3219 0.0000 8.3880 1.0000 0.0000 0.0000 2.0000 3.7004 1.5850 1.3334 4.3219 1.8953 4.4594 7.3750 5.0875 1.0000 1.0000 1.0000 3.0000 5.6724 0.0000 1.0000 1.5850 1.5850 0.3785 6.4700 2.3219 1.0000 6.0661 2.8074 1.5850 0.0000 1.5850 0.0000 4.2479 1.0000 3.4594 5.1699 0.0000 5.4919 0.0000 5.3576 3.5850 7.5314 0.0000 5.7279 5.6147 0.0000 1.5850 4.7004 3.4594 2.8074 3.7004 0.0000 1.0000 8.2288 3.9069 6.4429 6.5850 0.0000 4.1699 0.0000 0.0000 0.0000 1.0000 4.3219 2.5850 1.0000 2.3219 1.0000 2.3219 3.8074 2.5850 2.0000 2.0000 2.0000 0.0000 1.5850 1.0000 2.0000 1.0000 4.4594 0.0000 0.0000 1.0000 2.5850 0.0000 1.5850 0.0000 4.7004 1.0000 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.0000 3.5850 1.0000 0.0000 0.0000 1.0000 0.0000 7.7908 0.0000 4.8580 0.0000 6.0875 0.0000 1.0000 0.0000 0.0000 0.0000 5.0000 2.5850 6.2668 4.5850 5.6781 0.0000 0.0000 0.0000 3.5850 3.4594 7.0334 0.0000 4.0875 3.3219 1.0000 1.5850 2.0000 0.0000 0.0000 2.0000 1.5850 0.0000 5.4276 1.5850 0.0000 4.9542 0.0000 0.0000 0.0000 4.0875 1.0000 6.3399 7.3934 1.5850 1.5850 1.0000 5.2479 1.0000 1.0000 0.0000 1.5850 0.0000 3.3219 2.3219 7.2946 1.5850 1.0000 1.0000 0.0000 6.1293 3.5850 0.0000 0.0000 0.0000 0.0000 3.4594 2.5850 3.4594 0.0000 1.0000 3.1699 2.8074 5.2095 0.0000 1.5850 0.0000 7.9366 0.0000 7.5699 4.5236 1.5850 0.0000 1.0000 1.0000 3.4594 4.3923 0.0000 4.8580 2.5850 4.1699 2.0000 1.5850 0.0000 1.0000 2.0000 3.5398 1.5850 2.3219 2.0000 1.0000 0.0000 1.0000 6.9425 7.6511 0.0000 5.0000 1.0000 0.0000 5.1293 3.4594 0.0000 0.0000 1.0000 5.8826 1.0000 0.0000 5.6147 4.0875 1.0000 0.0000 0.7398 0.0000 0.0000 2.0000 8.1678 0.0000 1.0000 3.0000 3.5850 2.8074 3.1699 2.5850 2.0000 0.0000 0.0000 1.0000 4.3219 0.0000 0.0000 0.0000 7.3399 0.0000 0.0000 1.5850 0.0000 0.0000 2.5850 0.0000 1.5850 1.5850 0.0000 1.0000 5.0875 1.0000 0.0000 3.5850 1.0000 3.7004 6.3923 3.5850 5.4263 1.5850 3.9069 6.5392 1.0000 3.0000 7.0553 1.0000 0.0000 2.0000 2.3219 0.0000 6.0224 5.3219 0.0000 0.0000 0.0000 7.4263 0.0000 1.0000 2.0000 0.0000 1.0000 3.9069 0.0000 3.4594 1.5850 6.6147 3.8074 1.0000 0.0000 0.0000 0.0000 0.0000 4.8074 0.0000 0.0000 0.0000 0.0000 0.0000 1.5850 1.0000 0.0000 0.0000 0.0000 4.7549 0.0000 6.3923 0.0000 0.0000 1.0000 1.0000 1.0000 2.0000 7.4179 1.5850 0.0000 1.0000 1.0000 2.5850 0.0000 1.0000 0.0000 1.0000 1.0000 0.0000 2.0000 3.4594 1.5850 3.1699 1.0000 7.3399 1.0000 0.0000 4.7004 1.5850 3.1699 0.0000 0.0000 1.5850 0.0000 1.0000 5.5928 0.0000 0.0000 3.3219 0.0000 5.6147 2.8074 0.0000 0.0000 2.0000 1.0000 4.0875 6.4094 1.0000 8.7142 0.0000 2.3219 6.0585 2.0000 1.0000 0.0000 1.0000 0.0000 3.1699 0.0000 4.3923 3.5850 0.0000 0.0000 1.0000 1.0000 1.0000 0.0000 2.0000 4.8074 2.5850 4.4594 6.7986 0.0000 1.5850 0.0000 0.0000 4.8074 1.0000 4.6439 1.0000 0.0000 3.9069 0.0000 0.0000 6.0000 3.9069 6.7810 4.6439 2.3219 3.0000 1.5850 1.5850 5.3219 1.5607 1.0000 4.6439 0.0000 4.0000 1.0000 2.3219 0.0000 0.0000 0.0000 0.0000 2.3219 5.2702 1.0000 7.2477 0.0000 1.5850 0.0000 0.0000 0.0000 1.5850 1.5850 1.0000 3.0000 6.8580 2.0000 1.5850 2.5850 4.6439 0.0000 2.5850 1.5850 0.0000 0.0000 3.9069 6.4094 0.0000 0.0000 3.8074 2.0000 0.0000 0.0000 6.7513 1.5850 1.0000 1.0000 0.0000 1.0000 1.5850 0.0000 0.0000 4.9542 5.0875 1.0000 0.0000 0.0000 1.0000 1.0000 1.5850 1.5850 1.0000 5.2095 0.0000 1.5850 0.0000 4.1699 1.5850 0.0000 2.0000 2.0000 0.0000 0.0000 0.0000 5.4263 3.7004 0.0000 1.5850 1.5850 1.0000 1.5850 6.4263 1.0000 1.5850 1.0000 2.0000 2.0000 1.0000 0.0000 3.7004 5.0000 0.0000 3.1699 2.0000 1.0000 0.0000 5.0444 0.0000 2.5850 1.0000 1.0000 0.0000 0.0000 1.5850 0.0000 2.3219 1.0000 2.3219 1.5850 0.0000 1.0000 0.0000 3.8074 3.9069 1.0000 0.0000 3.4594 4.5850 0.0000 1.5850 1.7181 0.0000 5.1699 0.0000 1.5850 1.5850 1.0000 0.0000 3.0000 0.0000 5.4594 0.0000 0.0000 0.0000 0.0000 1.0000 4.3923 4.7549 0.0000 1.0000 0.0000 1.5850 1.5850 3.3219 0.0000 7.2030 4.6439 2.3219 0.0000 6.3399 3.7004 1.5850 0.0000 0.0000 3.1699 0.0000 1.0000 4.0875 2.3219 1.0000 1.0000 1.0000 4.1699 4.9069 4.7549 1.0000 3.9069 4.3923 2.0000 2.5850 1.0000 1.5850 3.5850 5.1293 7.8517 3.7004 5.3576 0.0000 5.6693 0.0000 5.0444 2.0000 3.1699 2.0000 5.5546 1.5850 4.0875 1.5850 1.5850 0.0000 0.0000 1.0000 4.2479 3.1699 3.8074 0.0000 3.4594 3.0000 1.0000 0.0000 0.0000 1.5850 0.0000 0.0000 7.0792 1.0000 0.0000 1.0000 0.0000 1.0000 1.0000 1.5850 0.0000 1.0000 0.0000 0.0000 0.0000 0.0000 1.0000 1.5850 1.0000 2.3219 3.0000 0.0000 1.0000 1.5850 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 1.0000 5.5850 0.0000 0.0000 1.0000 3.1699 0.0000 0.0000 1.0000 3.4594 2.3219 5.0000 4.5236 1.0000 2.0000 2.1795 4.4594 4.6439 1.0000 0.0000 0.0000 1.0000 4.3923 0.0000 0.0000 0.0000 7.1468 1.5850 5.7004 0.0000 3.1699 4.1699 1.0000 2.3219 1.5850 6.9425 5.0444 4.9542 3.7004 0.0000 2.3219 1.5850 1.0000 0.0000 3.0000 0.0000 0.0000 1.0000 7.7074 1.5850 1.0909 0.0000 0.0000 1.5850 1.5850 0.0000 5.4192 5.3576 1.0000 0.0000 1.0000 0.0000 1.0000 1.5850 0.0000 1.0000 2.0000 1.0000 0.0000 0.0000 2.5850 1.5850 0.0000 3.3219 1.0000 0.0000 1.5850 0.0000 5.8580 0.0000 0.0000 1.0000 0.0000 1.0000 1.5850 2.8074 4.9069 6.4857 0.0000 2.0000 4.5850 8.2288 7.1293 2.3219 0.0000 4.2479 2.5850 3.1699 0.0000 4.0875 0.0000 3.1699 0.0000 4.7549 0.0000 1.5850 1.0000 2.0000 1.0000 1.0000 1.0000 4.5236 1.0000 1.5850 5.0875 1.5850 3.3219 2.5850 6.0661 5.9307 4.5850 1.0000 4.3219 1.0000 0.0000 0.0000 4.9542 5.8826 5.6147 4.1699 1.0000 0.0000 0.0000 4.1699 1.0000 0.0000 1.5850 2.3219 0.0000 0.0000 0.0000 3.7004 1.0000 5.6147 4.0000 0.0000 0.0000 1.5850 2.0000 0.0000 6.8202 0.0000 2.0000 2.0000 0.0000 6.0661 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0000 1.5850 1.0000 5.3245 1.0000 1.0000 4.0875 2.0000 0.0000 0.0000 6.6582 0.0000 4.4594 0.0000 2.0000 1.0000 6.0661 0.0000 0.0000 2.0000 3.7004 0.0000 1.0000 0.0000 4.6536 3.9021 1.0000 1.0000 4.4594 2.5850 0.0000 1.0000 1.0000 1.0000 0.0000 5.1436 1.0000 1.0000 1.0000 4.4594 0.0000 6.2651 0.0000 1.5850 1.5850 0.0000 0.0000 8.0715 0.5850 3.8012 1.5850 1.0000 1.0000 1.5850 4.2479 5.1699 0.0000 0.0000 0.0000 0.0000 0.0000 2.3219 0.0000 0.0000 2.3219 0.0000 0.0000 0.0000 1.5850 0.0000 0.0000 0.0000 0.0000 2.0000 4.5850 1.0000 0.0000 1.5850 0.0000 0.0000 0.0000 8.3576 4.7004 2.0000 2.3219 1.0000 0.0000 5.4263 3.8074 4.3923 0.0000 2.3219 1.0000 0.0000 2.8074 7.7279 0.0000 0.0000 2.0000 6.3750 1.7782 4.7004 7.3409 0.0000 2.0000 0.0000 0.0000 2.5850 5.4263 2.0000 1.5850 2.3219 2.8074 1.0000 1.0000 4.5236 6.1293 0.0000 0.0000 1.0000 2.0000 0.0000 1.0000 2.8074 2.3219 2.3219 4.8580 2.0000 0.0000 8.2143 5.0000 0.0000 1.0000 2.8074 3.0000 5.8580 7.7064 0.0000 1.0000 0.0000 1.5850 5.9307 2.0000 0.0000 4.0000 2.0000 8.2095 6.3399 4.4594 0.0000 1.5850 1.0000 0.0000 1.0000 1.0000 2.8074 2.5850 1.0000 0.0000 0.0000 2.0000 4.8580 5.1293 3.5850 0.0000 2.0000 1.5850 0.0000 5.1699 1.0000 0.0000 1.0000 0.0000 4.7549 7.0553 3.0000 0.0000 0.0000 1.0000 0.0000 3.3219 3.3219 0.0000 2.5850 0.0000 0.0000 3.9069 1.0000 0.0000 1.0000 0.0000 5.2854 1.0000 0.0000 1.5850 2.0000 1.0000 2.3219 4.5850 1.0000 2.5850 0.0000 0.0000 5.0444 5.2479 5.2854 0.0000 1.0000 1.0000 4.7549 0.0000 0.0000 4.6439 0.0000 1.5850 0.0000 1.0000 1.0000 0.0000 3.7004 5.1293 5.5546 3.1699 3.3219 0.0000 1.0000 0.0000 1.0000 1.0000 1.0000 2.8074 6.2288 0.0000 1.0000 3.5850 0.0000 1.0000 1.0000 7.0334 0.0000 4.4594 0.0000 6.4263 2.0000 0.0000 2.5850 0.0000 0.0000 2.0000 0.0000 0.0000 1.5850 2.8659 0.0000 1.0000 2.0000 0.0000 1.0000 2.3219 0.0000 8.3309 1.0000 6.1293 0.0000 1.0000 4.8074 5.5546 5.0875 4.1699 0.0000 0.0000 5.5236 6.8826 0.0000 5.5546 5.9542 5.5546 0.0000 7.4094 2.0000 1.0000 0.0000 4.4594 5.2854 0.0000 1.0000 1.0000 3.0000 0.0000 0.0000 1.5850 2.0000 1.5850 4.3219 1.5850 5.8826 5.4919 0.0000 0.0000 4.8074 0.0000 0.0000 0.0000 0.0000 2.8074 0.0000 5.1293 7.9783 7.7074 0.0000 1.5850 3.7004 0.0000 3.3219 2.5850 0.0000 0.0000 4.3923 2.0000 1.0000 3.7004 2.0000 2.3219 3.7004 1.0000 2.3219 3.5850 0.0000 1.5850 0.0000 0.0000 1.0000 4.7004 1.0000 1.0000 0.0000 5.3576 2.3219 0.0000 0.0000 1.0000 2.3219 1.0000 0.0000 0.0000 2.3219 0.0000 1.0000 4.1699 4.1699 0.0000 4.8074 3.1699 1.0000 0.0000 0.0000 4.1699 3.5850 2.5850 3.0000 0.0000 8.3113 0.0000 1.0000 3.1699 1.0000 3.3219 4.4594 3.1699 1.5850 3.4594 0.0000 5.2095 1.5850 0.0000 8.0715 7.9736 0.0000 3.0000 1.0000 3.4594 2.0000 5.1293 2.3219 1.0000 4.1699 1.5850 0.0000 2.0000 0.0000 4.5236 0.0000 3.9069 4.5862 2.5850 3.5850 2.5850 1.0000 3.1699 5.6724 1.5850 0.0000 5.4263 5.6439 1.0000 0.0000 0.0000 1.0000 2.5850 0.0000 1.5850 0.0000 4.1699 1.5850 0.0000 1.5850 0.0000 3.9069 0.0000 1.5850 6.0224 0.0000 1.5850 1.5850 1.0000 2.0000 0.0000 3.9069 1.5850 2.3219 0.0000 1.0000 0.0000 1.5850 2.0000 6.4094 1.5850 0.0000 0.0000 0.0000 0.0000 4.0875 0.0000 4.8580 1.5850 8.2297 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 7.3750 0.0000 1.0000 0.0000 3.1699 0.0000 7.8642 1.0000 2.0000 1.5850 0.5261 0.0000 2.0000 0.0000 6.1699 2.5850 1.5850 1.5850 0.0000 1.0000 2.4356 0.0000 3.5850 1.0000 1.0000 0.0000 1.0000 6.3668 0.0000 1.0000 1.0000 1.5850 0.0000 1.0000 1.0000 7.5314 0.0000 0.0000 5.0896 2.0000 0.0000 0.0000 5.2854 1.0000 0.0000 1.0000 5.3219 2.5850 1.0000 0.0000 6.1497 0.0000 6.0661 5.0875 1.0000 0.0000 4.7120 1.5850 0.0000 2.0000 1.0000 1.0000 1.0000 2.0000 1.0000 1.0000 0.0000 4.8074 6.8580 0.0000 2.3219 1.0000 3.7004 4.1699 1.0000 4.8074 0.0000 1.0000 0.0000 6.1699 4.4594 7.6073 2.3219 1.0000 0.0000 2.5850 0.0000 1.0000 5.9773 0.0000 0.0000 0.0000 0.0000 2.0000 1.5850 0.0000 0.0000 0.0000 4.9959 2.0000 1.0000 0.0000 3.1699 6.7285 1.5850 4.4594 0.0000 0.0000 0.0000 0.0000 0.0000 6.9307 0.0000 1.0000 2.0000 0.0000 5.8074 1.0000 4.3923 1.0000 0.0000 4.7549 1.0000 1.0000 1.0000 0.0000 2.3219 2.5850 3.7527 0.0000 1.0000 1.0000 3.5850 8.5925 4.7004 2.0000 1.0000 0.0000 0.0000 5.7549 0.0000 5.9069 0.0000 5.9542 1.0000 4.3764 0.0000 1.0000 4.3219 0.0000 0.0000 3.4594 0.0000 3.7004 1.5850 0.0000 1.5850 2.0000 1.0000 0.0000 2.5850 0.0000 0.0000 0.0000 3.9069 1.5850 0.0000 4.5236 0.0000 1.0000 1.0000 1.5850 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.0000 1.0000 3.4594 0.6599 0.0000 1.5850 1.0000 0.0000 1.0000 0.0000 5.2854 4.7093 1.0000 3.1699 1.5850 1.5850 6.0661 0.0000 5.2095 1.5850 0.0000 2.5850 5.0444 2.5850 2.8074 0.0000 1.5850 6.8098 0.0000 1.5850 0.0000 0.0000 0.0000 5.0378 4.5850 1.0000 1.5850 0.0000 1.5850 2.3219 1.5850 6.9658 1.0000 1.5850 5.8329 3.7004 1.0000 6.8329 2.0000 5.2479 6.9425 5.3219 0.0000 0.0000 0.0000 4.9542 1.0000 1.0000 0.0000 0.0000 7.5236 3.5850 1.0000 1.5850 1.5850 0.0000 1.0000 3.5850 0.0000 4.7549 3.0000 3.8074 0.0000 0.0000 0.0000 1.0000 0.0000 2.0000 0.0000 2.0000 5.3923 0.0000 0.0000 1.0000 1.5850 1.0000 1.0000 4.4594 1.0000 0.0000 1.5850 0.0000 0.0000 2.0000 1.0000 1.5850 3.1699 0.0000 0.0000 8.1755 5.9093 1.0000 1.0000 0.0000 6.5566 1.5850 2.3219 4.0875 0.0000 0.0000 1.0000 3.3219 5.8580 7.9830 1.5850 1.0000 1.5850 3.9069 0.0000 0.0000 1.0000 0.0000 4.7004 1.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.5850 1.0000 2.5850 0.0000 3.5850 2.5850 5.7549 1.0000 4.5236 1.5850 1.0000 2.3219 0.0000 1.0000 0.0000 0.0000 0.0000 7.3765 1.0000 4.4594 0.0000 2.5850 0.0000 5.5236 1.0000 3.4594 0.0000 0.0000 0.0000 0.0000 1.0000 3.3219 0.0000 0.0000 1.0000 3.3219 0.0000 1.5850 1.0000 6.5699 2.0000 1.5850 1.0000 1.9561 5.0444 1.5850 0.0000 0.0000 0.0000 4.6439 0.0000 3.8074 0.0000 0.0000 3.8074 1.5850 2.3219 1.5850 0.0000 5.7999 3.1699 1.0000 0.0000 1.0000 0.0000 0.0000 0.0000 1.5850 4.7004 1.0000 2.0000 5.9253 3.1699 2.0000 4.0875 0.0000 7.9009 2.0000 0.0000 4.3219 2.0000 1.5850 0.0000 1.0000 0.0000 1.0000 5.2854 0.0000 0.0000 4.9069 0.0000 1.0000 2.5850 0.0000 0.0000 0.0000 6.6423 0.0000 2.0000 1.5850 0.0000 0.0000 0.0000 1.5850 5.0875 8.8796 1.0000 8.2668 4.4594 1.0000 5.2095 2.5850 1.0000 0.0000 0.0000 3.5850 7.3750 0.0000 3.5850 5.3219 4.4594 1.5850 8.1749 4.3219 0.0000 1.0000 0.0000 1.0000 2.0000 2.3219 0.0000 2.8074 0.0000 3.4931 1.5850 2.0000 2.5850 0.0000 0.0000 0.0000 0.0000 0.0000 3.4594 0.0000 4.2479 7.6294 1.0000 1.5850 1.0000 2.8074 1.0000 6.5078 6.7145 0.0000 1.0000 2.0000 1.0000 1.0000 1.5850 0.0000 0.0000 1.0000 0.0000 4.2479 3.7004 1.0000 1.0000 5.9542 0.0000 0.0000 1.0000 1.0000 1.0000 1.0000 4.4080 0.0000 0.0000 0.0000 3.0000 0.0000 3.0000 1.0000 4.8580 0.0000 2.0000 3.5850 7.2668 3.8074 1.0000 1.0841 2.0000 0.0000 1.0000 0.0000 5.0000 0.0000 0.0000 0.0000 0.0000 5.8074 3.3219 1.5850 1.0000 0.0000 0.0000 2.8074 3.8866 0.0000 0.0000 0.0000 3.5850 0.0000 0.0000 7.5469 1.5850 ENSG00000167578.16 9.9364 7.8458 11.1814 10.0367 8.2668 9.6779 7.4346 10.2547 9.1884 8.2423 9.5285 10.5636 9.7445 7.2928 9.9413 9.3990 11.1742 8.3576 10.2594 10.4424 7.7249 8.5649 7.2479 8.5123 7.9376 9.3421 9.7055 11.4101 9.9449 10.8511 9.3326 8.8329 10.3727 10.0217 7.8704 10.0704 9.5134 9.5459 7.6141 10.7914 10.0813 9.8818 8.8009 11.5025 8.6079 10.2161 9.0006 10.4137 10.2537 9.2533 8.3396 10.2545 7.1898 7.7409 8.7013 8.3099 10.8442 11.1813 5.9773 10.2786 9.0466 9.7204 8.8543 10.4259 9.2191 9.9222 10.5707 9.6547 8.3655 9.5309 8.3085 8.8160 9.2470 10.1643 9.9325 7.8265 12.0134 9.9191 9.8728 7.9463 7.9173 9.7779 8.4663 9.0328 10.6780 9.1648 9.2164 8.7438 9.0060 10.1832 9.4330 9.2394 10.0206 10.0404 10.7737 9.0770 7.7944 8.8274 9.2232 7.1970 7.5380 10.8260 10.7411 9.5092 10.4228 9.7972 10.3413 10.4479 9.2482 10.2423 8.9773 11.4377 9.0630 10.0156 10.0115 10.5406 9.5484 9.1719 9.8956 8.6397 10.2459 9.5813 9.2542 10.1363 9.9358 9.1982 9.9049 11.1396 8.5659 8.6475 10.2097 8.9029 10.7592 8.0561 9.9189 9.8259 8.9314 8.8218 9.0761 10.4991 8.2880 6.3038 10.6129 10.6018 9.3915 7.9934 9.5451 9.7836 8.5857 9.0633 11.2925 10.6771 8.8921 9.1838 10.5781 9.0942 8.5217 9.7181 8.9064 8.9562 9.0019 8.3743 9.5072 9.5089 9.2071 7.6049 7.3129 9.1055 8.7793 8.0528 10.1972 8.6205 9.7754 10.7212 8.9546 10.8225 7.9271 9.1397 10.4870 9.8054 9.7173 10.3926 9.7222 10.2043 8.8234 9.7065 8.9146 10.0596 8.8441 9.1359 8.7373 8.9300 10.1256 11.4117 8.7843 8.7481 8.8810 9.7261 7.9117 8.7726 9.0116 9.8764 8.1721 9.9748 9.9750 9.2677 9.6293 9.2105 9.5072 10.0930 8.8188 8.4818 8.9683 7.7279 9.0298 10.2790 9.7501 9.3546 9.2606 8.2479 9.6756 8.6939 11.9954 8.5530 10.4718 9.4469 9.3671 8.4434 9.2788 8.9506 9.3219 11.8448 10.1305 9.9746 10.2712 9.3522 6.7435 9.3118 11.1285 9.9609 8.5041 10.5287 10.6275 7.6203 10.3613 10.5776 9.2302 9.1426 9.9479 7.8941 9.8718 9.5172 9.0779 8.7975 9.9000 10.8040 9.5501 8.6423 9.2366 10.5992 7.4160 9.2234 10.3223 10.3700 8.3949 9.9009 9.6095 10.0643 8.6864 9.4683 11.1997 9.5874 7.1396 9.2273 10.7166 9.1342 10.6798 9.7587 9.6619 10.2734 9.6475 9.1006 10.2945 8.6415 9.1794 8.4312 9.2674 9.2329 10.0007 9.2874 8.9818 8.2208 9.7831 8.9740 9.0459 9.5247 8.0796 9.9085 8.4586 9.5650 9.9687 10.1338 11.5838 9.4914 10.5003 10.1518 9.3345 8.9053 8.9729 10.1234 11.4282 10.0345 9.8550 9.0257 10.9296 9.3003 8.9825 7.6966 9.7668 8.6579 9.5522 7.8455 8.8062 9.8955 8.4800 8.6430 9.6674 10.4995 9.6697 9.4954 9.3908 8.5406 10.1964 9.3142 10.5861 7.9874 10.1811 9.2510 9.9307 8.4996 9.0776 8.0347 9.3225 8.0759 10.9553 10.3273 8.5051 9.6419 10.1554 8.9514 10.1304 9.3563 9.9083 10.7744 8.5544 9.3502 8.5701 10.3134 8.7825 10.9090 9.8041 10.1926 8.9940 11.0221 7.4346 10.0160 9.1310 10.1402 9.8266 9.9313 9.6815 10.3989 9.3205 9.1593 8.3517 8.9251 9.7350 9.5389 8.1783 9.0269 10.1368 8.9858 11.0926 9.5985 9.2829 9.9253 8.0614 9.0531 9.5314 10.5975 9.3130 9.4510 9.6371 8.4994 10.8828 8.9358 8.4074 10.0153 8.0510 8.9845 10.3182 9.1789 9.7828 9.8608 9.1811 9.2966 9.1132 8.3237 10.6151 10.0229 9.3911 10.3469 8.6996 9.1295 10.0359 9.6828 8.1539 6.3904 8.4512 7.4432 10.2712 8.6137 9.4195 9.1481 8.6930 9.9063 9.5497 7.9872 10.6296 10.1927 9.2180 9.2999 10.9000 9.1348 9.5833 9.3894 9.3421 9.3778 9.8103 9.4798 8.9818 9.3664 10.7688 9.1097 9.6687 9.9768 9.4293 10.2112 10.4711 9.4541 9.2231 10.9857 9.5370 6.6294 10.4181 0.0000 9.0742 10.2099 9.2255 9.1348 8.9454 8.9286 9.2695 9.8691 11.0013 10.4936 8.7734 10.7227 10.0873 9.3898 10.6654 9.7609 10.2700 8.6183 9.0222 9.2978 11.1144 8.5100 8.2254 8.6962 5.7549 10.4335 9.6366 9.1765 9.3140 10.3130 10.8578 9.0391 9.2974 9.6194 9.3905 6.4094 11.0654 9.2331 9.6373 9.6150 10.6110 9.8197 9.8278 10.7264 10.3802 8.6179 9.9275 8.5560 9.1019 10.4612 10.2553 10.3592 9.3346 9.3212 9.4687 10.0379 8.6912 10.1026 11.0515 7.8202 9.7683 9.9731 10.4786 8.2500 9.9254 7.8826 10.4630 9.6628 9.2536 9.3731 10.8568 10.6896 8.6535 8.8891 8.1548 9.7067 8.6802 8.1880 10.1880 5.4512 10.0174 10.0824 8.0203 10.4063 10.0992 9.1655 6.3399 9.9696 10.2136 11.0936 9.0165 9.3672 6.3052 9.9406 8.2637 9.3352 8.9035 9.4747 10.3860 9.1875 9.2785 10.0645 10.4397 10.6715 8.0370 9.9517 9.2306 11.4715 9.7806 10.5346 10.1090 9.3218 8.2479 9.1856 11.2679 10.3209 8.4711 7.9471 8.7340 9.5763 11.2840 7.9658 10.6240 9.9247 10.2139 9.2018 9.3540 8.8866 8.9307 8.4456 9.3111 9.6937 9.6601 8.8312 9.5289 9.4202 10.8488 9.0724 9.1392 8.1497 8.1189 8.1071 9.4962 10.5209 8.0804 8.5385 9.2175 7.9658 9.6500 8.8344 9.4226 8.1632 9.6025 9.0942 8.8264 0.0000 9.5855 9.0368 11.1568 11.2811 9.1149 9.6598 7.9307 10.1857 10.4041 8.6655 10.1620 9.5969 8.7907 8.7459 6.8584 11.8736 9.7280 6.2095 9.5939 10.1451 6.6078 10.5591 8.9027 8.7480 10.5641 10.6824 8.9195 9.0776 8.8953 9.7988 9.4623 9.9090 9.9691 10.0210 10.3480 10.6732 10.1957 10.3692 9.5997 9.0053 9.1166 9.6439 9.2184 7.7798 10.2530 9.3617 9.6743 9.1338 9.6298 9.2523 7.8074 9.9983 8.6780 9.2387 9.8365 9.5771 9.0959 10.1377 9.7355 10.5205 9.2595 9.5123 7.9938 9.5354 9.1628 8.5539 9.4184 10.4185 9.9570 9.2939 10.4145 9.1704 8.9176 9.8664 10.7111 8.6426 8.3485 7.7004 8.2432 6.6521 11.2158 9.1572 8.7770 7.7037 9.0447 10.0695 10.2554 10.9000 11.3392 9.7831 8.7300 9.6894 9.9873 9.4908 9.2040 8.3880 10.7968 9.7968 9.2161 11.6986 9.1163 8.5685 9.7229 10.0651 9.6013 9.0169 10.6149 8.5524 9.3527 8.8699 7.7944 10.0697 7.3163 9.6446 8.2668 10.7915 9.5465 7.4733 8.6164 9.1619 10.0384 8.4803 6.6147 10.2804 9.8068 10.5447 7.0980 9.8521 9.0060 8.1321 9.8372 9.5937 10.7085 9.4474 9.0886 10.2361 11.5509 9.8697 6.8686 9.5349 9.4018 9.4100 9.4951 9.1413 9.4163 10.3208 8.4171 11.2933 8.7294 8.5889 9.1745 7.9882 9.2479 8.5592 11.3547 8.5227 7.9118 10.2505 9.1077 9.9252 7.2854 9.1178 9.0699 9.7764 7.7228 9.2670 10.7287 9.6596 8.0802 9.7714 9.4037 11.1513 9.8942 9.7005 9.4107 6.6147 10.3739 9.5962 9.3229 10.6389 9.6698 9.1716 8.5650 9.3676 9.8739 9.0135 10.2168 8.9510 9.7644 9.2568 8.0402 0.0000 10.1729 8.8009 9.7638 9.9596 9.1214 10.8414 9.2466 8.7928 9.5260 8.8604 9.6286 10.1810 10.1618 8.8018 9.4017 10.0034 9.4558 9.1693 10.1722 9.4664 11.1332 10.1373 8.4625 10.2657 9.2908 8.3428 8.1781 0.0 9.5580 9.9849 9.4706 7.1699 9.4397 9.2552 10.0240 9.4299 10.0436 9.4212 7.4179 10.0791 9.8633 9.5095 10.5280 7.2266 11.1232 9.8131 8.2240 10.3579 6.6360 8.7629 7.4206 11.0384 8.8770 10.9081 9.1566 10.1465 8.7862 7.2717 10.2423 9.4340 6.9645 8.5497 9.0939 8.8294 9.4530 8.5430 7.9097 10.5462 10.5474 9.5732 8.3187 7.7624 9.3490 8.6226 10.3999 9.0377 9.9836 9.3225 7.9773 9.9329 10.2766 9.0644 9.8796 9.4864 9.0774 8.4202 9.7476 9.4491 10.3796 9.2664 9.8447 10.1212 8.8620 9.6860 8.4612 9.5809 9.0759 10.4854 9.3171 8.5661 8.9929 9.1530 9.4377 10.6363 10.4185 9.4359 11.7432 9.0757 10.0657 10.8992 9.7179 9.6132 9.0112 9.6266 9.3813 8.9613 8.9148 10.0409 6.3750 10.2193 9.1426 8.4903 7.2095 10.0340 10.4966 9.9960 9.0553 9.1649 9.3609 10.2494 9.2698 9.4048 9.3301 9.1973 9.4913 9.7112 8.6511 11.3003 8.9204 8.7408 9.7016 8.8477 10.7234 9.7597 10.9827 9.4457 9.2604 8.7308 9.1522 9.1511 9.3601 8.9542 9.5593 10.6977 10.0942 9.3854 9.9819 9.3365 9.4684 8.2002 10.0788 9.1526 9.4696 12.0572 9.3696 9.4340 10.4045 10.6494 8.4613 8.5745 10.9311 9.2810 9.7572 10.3129 10.1696 9.1505 9.4780 9.2095 9.3999 10.2697 9.2334 9.9518 8.8910 10.4456 10.0972 10.0002 9.8161 10.2591 9.7880 10.4630 8.2143 8.9532 10.3062 8.1394 8.4824 8.3768 8.4587 8.4930 8.7919 8.8704 9.8516 9.1982 10.4984 9.7553 9.4613 9.8895 9.2117 9.9511 9.8325 8.4492 10.5421 10.3863 9.7493 9.0856 9.4430 8.4226 9.6621 11.0235 10.0623 10.6182 10.1269 10.7134 8.8360 8.8234 10.0502 8.9715 8.5196 8.5985 7.8765 9.2832 9.2114 8.7864 9.2055 9.4215 9.8523 9.6286 8.0680 11.4367 9.5878 8.7198 9.3914 8.6861 10.0080 9.2360 9.6648 9.4702 9.5039 7.9366 8.8029 9.9761 9.0740 7.2668 10.7109 8.4947 8.7602 8.5462 10.1696 9.3978 9.1098 10.0741 10.5502 9.9323 9.5270 9.4721 8.5971 9.2708 10.0963 8.9297 9.5297 10.3747 10.5870 9.2051 10.2874 10.1635 10.8461 8.5157 9.5036 8.5273 9.4422 10.2125 9.7497 7.2353 9.3941 9.1379 9.4597 9.8668 9.4411 8.8734 11.0510 10.3222 9.5684 8.9196 8.2564 8.1325 9.7946 9.3417 9.4747 10.1072 9.7143 9.3393 11.2631 9.3518 11.4540 8.7777 10.9662 10.3922 10.2054 9.5381 9.2647 9.4369 10.7573 9.2965 10.4133 10.3375 10.6414 10.9799 9.9375 10.5488 10.5608 10.7355 10.4204 10.3169 9.1178 10.5286 9.4736 10.8219 10.3107 9.2691 10.3404 9.0914 9.6800 9.8572 9.1497 9.2778 9.4770 10.2164 9.1288 9.1492 7.7134 9.3879 9.8033 9.1808 8.6913 11.8302 10.4606 9.7969 7.4838 8.9366 9.5459 8.5975 9.2777 9.9971 8.2627 9.9198 9.2734 9.0196 9.1427 10.7147 10.2816 9.9117 9.3781 6.9519 7.8450 8.7612 9.5489 7.7142 7.9352 10.4082 9.0817 9.9686 10.7668 8.9069 8.7415 7.6035 8.2555 10.1381 9.4727 10.6551 9.8390 10.0175 10.0540 8.8321 11.0936 10.1937 7.9076 9.8374 10.0915 8.1565 9.8524 9.6656 10.4539 9.1129 10.0545 7.9946 10.4232 9.4964 10.0269 7.7074 9.8798 6.9184 9.4722 10.5726 9.2990 9.9164 9.7069 10.7052 9.8174 8.2900 8.9734 9.5602 7.8165 10.4877 7.9877 11.2542 9.6125 9.2976 9.8712 8.9568 9.1997 8.7525 10.6894 11.2479 8.2094 9.1901 10.2050 9.0193 9.2243 10.3637 11.0532 8.8807 9.1343 8.5837 9.5196 8.3117 7.3889 9.2952 10.1570 10.3259 9.8506 9.0425 9.9227 10.1030 10.0086 9.3343 10.2892 9.3663 9.9042 10.3959 7.0742 9.9096 9.4845 5.6439 9.0076 8.7595 11.4915 10.5985 10.8448 9.3304 10.0043 10.4724 9.3927 8.5638 9.5974 9.3969 10.4613 9.3218 8.9215 9.3258 9.6847 9.0663 9.4786 9.6499 10.4515 8.6392 9.9849 9.8179 8.8295 9.2281 9.3886 10.2112 11.3688 9.8161 9.8640 10.5616 9.9493 8.6853 10.9445 8.4489 10.4943 9.8781 6.6706 9.1135 10.4901 7.8877 10.4450 9.9893 10.3037 9.6760 7.3434 8.5469 8.6575 8.5426 9.8178 10.4034 10.2146 8.3431 9.2607 8.8551 9.8796 9.1053 8.5469 8.9976 9.3343 9.1089 10.9450 10.7255 8.8822 9.9546 8.8506 9.7729 8.4955 8.4532 10.9953 9.3517 8.7973 7.9714 10.0862 10.2316 9.9050 10.6094 10.1346 9.8503 9.9599 10.8608 7.7291 9.6659 9.0654 9.8070 9.1413 9.6602 8.7758 7.6429 8.4748 9.2227 10.5801 8.2288 10.5591 10.9144 9.9191 10.0183 10.0121 8.1927 7.3116 8.5842 10.1872 8.9740 7.2209 9.6437 11.8254 10.6129 9.4730 10.5642 8.9400 8.2690 9.7170 9.1830 9.2490 8.8790 9.5083 9.7891 8.9860 9.0867 8.2891 8.3193 10.1243 8.6730 10.0798 9.3908 7.7415 8.7619 7.9425 9.7524 9.7370 8.8030 10.9117 8.7925 8.0726 10.1997 9.9368 9.2511 8.9522 9.1723 9.5358 10.0877 9.2246 9.5483 9.6372 11.5956 8.9535 9.4106 10.7550 9.7384 8.2476 9.7025 9.7920 8.2839 9.2426 6.7514 10.7444 10.3071 9.9380 11.5381 10.1545 10.0306 9.7397 8.5212 9.8591 9.7305 9.5960 8.3073 7.4998 10.5113 10.7692 9.2503 8.8766 11.2744 10.0738 11.5447 6.0224 8.9801 9.1935 9.3016 7.7074 9.9760 10.1436 8.5584 8.6647 10.5672 10.0430 8.4315 8.3255 8.6491 9.4217 10.4534 9.9139 9.7446 10.2359 8.2033 9.8031 7.2949 9.6992 10.3504 11.6165 8.8591 10.1846 9.6186 11.1900 8.7991 9.7483 7.8495 9.9523 8.8642 9.2476 10.2584 8.9485 8.0279 9.5243 10.4332 9.4388 9.1268 8.9156 10.6044 8.7039 9.1422 9.0891 8.1189 10.1376 9.6760 9.9818 10.4582 10.7935 10.9539 10.2610 9.6415 8.7464 8.2972 10.8244 7.9600 9.9356 8.2868 9.5692 0.0000 11.8647 9.7979 9.4351 7.4335 8.6322 9.4816 9.7342 9.2212 7.2761 8.6926 11.2986 11.1919 9.5409 10.0101 10.1492 8.2923 10.5564 10.0186 8.9129 8.8219 8.5736 8.6397 10.1826 8.6724 10.5906 10.4585 10.4226 8.6073 8.6339 8.2432 10.5475 6.5336 9.1666 10.2572 8.8575 10.3123 9.2059 9.7943 9.1749 10.3406 9.4733 9.3597 10.9018 10.3557 8.3707 8.3911 8.9278 7.5814 9.7405 8.7815 9.4424 9.2252 9.6934 9.9878 10.3441 9.5401 10.8451 9.3478 8.6317 10.0831 9.0310 10.0768 8.4139 9.3726 8.9834 10.3448 7.6199 9.3853 9.1773 9.1312 11.0689 9.8100 8.7697 7.3914 10.8536 8.5794 8.5887 9.2526 7.2782 9.4055 8.5764 9.9052 10.2574 8.8254 10.0091 9.4219 11.4851 9.9289 9.0109 9.8467 10.4243 9.8853 10.5094 10.3443 9.2525 10.1275 8.3200 9.2382 8.6195 8.5176 9.9023 10.0516 9.4892 9.6093 9.2585 10.8271 9.0046 9.7461 9.4533 7.2288 8.1724 9.8669 10.1767 8.0456 8.8329 9.1413 9.3256 8.8472 10.2641 9.7000 9.0515 8.3861 7.0768 9.8294 9.0375 0.0000 11.1567 9.6228 10.8473 9.3584 8.8849 9.9210 9.1844 10.2362 7.4826 9.8485 10.3720 7.9443 10.6576 9.4446 9.4588 10.7922 9.0892 8.3523 9.7942 9.1082 8.4745 8.8299 9.4219 9.7926 10.0415 10.2419 9.5107 9.4529 10.4869 8.9783 8.0391 9.8544 10.1490 9.6753 7.9022 10.2321 11.4610 10.1028 8.6102 11.6837 9.7362 9.9881 8.5634 10.3615 9.8524 10.6258 9.9541 8.9346 9.4877 10.0631 8.9236 7.7604 9.0742 7.7677 9.8213 9.0056 10.3170 9.6983 9.3775 8.4315 9.2357 9.8746 10.5638 10.1126 9.1133 9.6227 10.9455 10.7221 10.4656 9.8427 8.4305 9.1525 9.1191 9.3768 7.9766 8.4553 9.7204 11.1035 9.5927 10.5952 8.1294 10.6215 8.8052 9.6941 9.3386 10.3234 10.3475 9.2542 10.6406 9.4936 9.6036 8.4341 10.5106 9.7142 8.6330 8.6366 8.0389 9.2397 8.3509 10.3779 9.9063 10.2591 9.7016 9.8817 9.7689 9.1011 10.0946 8.5456 8.5291 9.3841 9.2724 9.9171 9.3917 8.7421 9.4523 9.8339 9.9881 10.0701 9.9662 9.5803 10.9841 10.0267 10.4485 10.3309 9.8254 9.4848 11.4587 8.4305 10.2799 7.8743 9.2315 9.6071 9.3956 9.5067 9.6305 8.3012 10.0933 9.1326 9.3687 10.0663 9.7133 9.9383 9.7508 10.5897 9.1205 9.7685 9.2511 10.3539 9.9968 10.0396 9.0995 11.0716 9.7343 7.3562 9.0869 9.3080 10.5898 9.9476 10.3083 10.5171 10.6587 10.3671 8.9671 8.4780 9.5113 10.0517 11.0550 7.3648 9.8783 9.6594 9.1445 8.8648 9.2339 8.9133 8.9964 8.4203 8.5840 9.4417 10.7935 8.7994 9.2723 7.9642 8.5585 10.4872 9.9331 9.3534 10.5418 9.0953 9.2448 9.5558 10.7116 10.2876 9.3544 8.0019 8.9490 9.9393 9.6183 6.7365 8.9589 10.1047 9.7651 9.0417 9.7952 8.3319 10.3405 8.0875 9.7009 9.7197 8.6728 9.5619 8.2701 7.9658 9.1233 8.8124 9.4844 9.4330 10.5919 8.5806 10.2046 9.5514 9.0161 11.4141 9.8435 10.8785 7.7010 10.0668 9.3468 9.3124 9.0682 8.6352 8.7854 9.1370 10.2818 7.7415 10.5281 9.0577 11.5483 8.4724 11.1122 10.0347 10.1894 9.8208 9.6413 8.9020 9.5209 9.0929 9.8539 10.1018 11.1755 9.2499 11.0944 8.0159 8.8692 9.1094 8.9524 9.8035 9.3365 8.1324 8.9329 10.5349 9.5238 10.1380 8.9753 8.8902 9.2361 8.7154 10.3008 8.6537 9.8452 10.5519 9.0092 9.6017 9.9832 9.8972 9.9833 9.3460 7.5774 9.1315 9.5814 10.8545 10.8714 7.1699 10.3597 8.9427 10.4081 9.7812 11.2991 9.4720 8.8490 8.4302 10.0087 9.4441 9.8331 0.0000 10.3035 8.7211 9.2241 9.2887 10.5236 8.6923 9.2036 8.7956 8.9593 9.5974 9.3005 8.5486 9.3126 8.4969 8.9330 7.9912 10.4669 9.0882 9.7281 9.9787 8.6941 10.8006 9.7228 8.7434 8.9754 9.6168 9.4497 7.2556 9.4514 10.2388 9.3603 8.3996 9.7470 8.0980 8.7912 9.5682 9.1015 8.4884 11.4708 9.9939 10.0550 8.0211 10.0581 8.0224 9.2540 10.6947 10.1547 9.9355 9.8180 9.5093 9.6198 9.1430 10.4753 9.9367 9.3554 10.2585 9.3962 9.4407 9.3257 8.5962 10.5365 8.8380 10.5164 9.0831 9.8755 8.8517 9.5649 8.8910 8.8425 11.4155 9.7603 8.5280 0.0000 9.2838 9.1700 9.6901 10.3652 8.6234 7.9902 8.4739 9.6920 10.2410 9.5839 9.8930 9.1202 9.5766 9.0714 8.3159 10.1084 9.0513 8.7559 7.7880 10.3481 8.8094 9.6281 9.7171 9.9168 9.0765 9.7171 7.8329 8.9964 9.5381 9.8555 9.0427 7.1293 9.3392 10.2434 10.6387 9.2868 9.3602 10.6181 8.6931 9.2314 9.7132 11.2009 9.6746 8.6289 7.9531 8.5622 6.5236 9.4583 8.9659 10.6348 8.8103 8.8234 7.7074 10.4684 9.3225 11.0032 10.9521 9.5709 9.0159 9.4015 8.5460 8.9405 11.2662 7.9143 8.9072 8.9298 8.5767 8.3644 8.6944 10.1281 10.2008 9.5214 9.8866 9.4207 10.4105 9.2308 9.9274 8.6362 8.5079 10.5089 9.5986 9.4083 9.1601 10.8375 9.5164 9.4000 8.1165 8.9307 9.7081 10.1641 9.1176 9.7170 9.3316 8.0524 9.2131 8.8307 9.5363 11.5679 10.8333 10.4756 10.7308 10.0549 8.9218 9.4138 9.6211 9.6540 10.2016 8.0827 8.5392 9.1929 10.9461 10.4721 9.6329 9.8475 9.4313 11.2879 11.2720 10.1566 9.8661 8.6527 8.9752 10.2780 10.6726 9.8909 8.6784 0.0000 8.2465 8.3894 9.2957 9.7314 8.7172 7.2998 9.9110 9.2057 7.9077 8.9733 6.8580 6.9416 9.9678 9.1497 9.2127 9.2335 9.4979 9.1911 7.7560 10.3965 9.6402 9.4227 9.1462 10.3216 10.3276 9.5747 9.8331 10.1548 9.5254 10.1787 8.2657 8.4341 9.9737 9.5296 8.8293 9.7712 9.3538 10.5434 10.3827 9.0664 9.4270 9.7437 9.3847 9.6795 11.0782 10.1460 8.9520 9.8563 9.6241 10.1598 8.8844 9.0279 10.2151 6.8912 10.0583 8.8909 10.7915 8.9738 9.6358 9.7140 8.3002 9.2033 9.3485 9.3546 9.5239 9.0812 10.3941 8.9156 9.6581 7.3121 8.7684 9.9771 10.2465 8.2143 9.0997 9.2352 9.7186 8.2457 10.7552 7.5327 8.0092 7.9931 9.7983 10.0637 8.9456 9.6651 8.8313 10.9850 9.3736 9.7718 9.9340 10.3859 9.8298 10.7454 8.9365 9.4364 6.2972 7.1983 9.1670 11.1000 10.0824 10.4519 8.6396 9.4940 10.6010 9.9765 12.4373 9.8813 9.3023 9.1663 7.0302 9.3309 6.9781 9.7972 9.8596 8.7814 9.6737 9.4762 9.1644 9.2689 9.9294 9.4657 9.4296 10.7047 9.7799 8.9959 11.0982 9.9591 9.9081 10.1759 10.4197 9.3778 9.4524 10.4533 9.5919 11.5582 9.5408 10.3925 9.4760 10.7531 10.2929 10.6280 11.8565 6.1085 9.0244 10.0751 8.8379 10.6179 9.5691 9.0593 9.2442 8.8783 9.1715 8.2311 9.5829 8.8008 6.5845 8.1638 9.2754 9.2099 9.5457 10.3139 9.6962 9.0542 10.6509 9.1121 9.6437 10.0797 9.9801 9.9144 10.4538 9.8355 9.8366 10.4783 8.3104 10.1480 10.1733 10.9934 7.4240 8.9340 9.6650 8.6053 8.7195 9.1918 9.5398 8.4477 9.1673 9.4565 9.5666 7.8008 9.1728 9.5404 8.2212 8.6484 8.3913 9.1020 10.1259 9.2672 8.7646 10.2246 10.5410 7.1173 9.6992 5.8987 9.9484 9.8227 9.5638 10.5078 6.5592 8.0607 8.6916 9.5063 10.3271 8.9666 7.8309 11.2246 9.2577 8.4305 10.4927 9.1068 9.5402 9.1603 9.4132 9.5153 10.3289 10.1357 9.0332 9.0760 11.6526 9.9149 10.8197 10.0863 9.6149 9.9212 10.3671 8.0219 9.1366 9.2931 10.6089 8.1033 9.8088 8.7302 8.4455 9.6702 10.1035 9.0594 9.8559 10.5518 7.1595 8.5520 10.8366 9.7804 9.8521 8.8876 9.2420 9.6713 10.2644 10.2433 9.0742 10.1589 9.8467 7.9200 8.6696 8.8904 8.6363 9.8752 9.2206 10.2937 8.5782 9.5274 9.2923 8.3991 8.9023 9.0708 10.0038 9.8927 8.5449 9.7453 7.7814 10.1593 8.8673 10.2525 8.8910 9.8937 10.2778 9.2548 9.1457 6.6294 9.9138 10.2311 9.5443 9.5856 9.6077 8.1799 9.8228 8.7151 9.8714 9.6672 11.0231 10.5015 9.8333 10.0651 8.2126 9.6724 8.8481 9.1950 8.5920 9.1005 8.8082 9.5568 8.9448 8.4838 10.2875 10.8778 8.8924 10.0762 10.0566 9.4403 9.8859 9.0178 8.5221 10.3948 8.8925 10.6893 9.3839 9.1444 8.9293 9.5427 7.9696 9.5959 8.1031 10.6454 9.0814 9.7648 8.0595 9.1812 8.4253 7.5999 11.4135 9.0705 8.6302 10.5753 8.7010 9.0891 9.3615 9.2237 9.2306 8.9102 9.8242 8.5682 9.3276 9.4048 8.5749 10.0061 10.9300 9.4607 9.1110 9.2472 10.6700 9.5969 8.5856 10.1728 8.3580 8.7345 9.6664 9.9033 8.1044 9.7218 9.9721 9.4188 9.1757 9.7475 8.6511 9.7228 10.2158 9.9180 8.6564 8.5703 9.6508 8.8602 9.7798 8.9596 8.5673 9.0388 8.6796 10.8067 9.3597 8.5764 10.4717 8.8647 8.9617 9.8580 9.8036 10.5860 10.1550 10.4301 10.3506 9.8427 10.6116 7.7463 8.2083 10.3775 9.3177 10.8034 9.7035 9.3663 11.8235 8.8852 10.3605 11.4086 9.3358 10.2291 9.0665 9.5925 10.4038 8.1540 9.3508 7.8580 7.4931 8.8714 10.4826 8.9523 9.0858 10.1664 9.2740 7.4418 7.3802 9.6310 8.5727 9.4363 9.9398 10.4948 10.9531 9.5201 8.3435 9.0719 9.1543 9.2574 9.3948 10.0915 9.7696 10.6197 8.8311 9.3666 11.0051 9.6491 10.5820 6.8479 7.9234 9.6250 9.5962 8.9982 9.4605 11.0390 9.5200 7.0768 8.8878 6.5392 9.6228 8.9293 7.8321 9.5093 7.3309 10.3283 9.1956 10.0121 11.6429 8.3184 10.4286 8.5521 7.0980 9.8073 10.4809 9.2239 9.8527 9.1447 10.9404 8.6404 9.5870 9.0593 10.2678 10.2738 9.7437 10.1091 8.0712 9.1745 9.1633 9.3044 7.8765 9.9772 10.5820 8.8098 10.0487 7.3402 10.2957 8.7555 8.9273 8.9596 11.3856 9.4580 9.6336 10.0980 10.1921 9.6160 10.6737 10.5932 10.1135 7.7415 10.1063 9.5234 10.1348 8.1649 8.2369 9.6765 9.8978 11.1461 10.4787 9.5733 9.4929 9.8828 9.5917 9.1262 9.1450 11.2336 11.1746 10.5748 9.3207 9.2056 9.4610 9.0000 7.8432 9.2787 8.3274 8.1383 9.6506 9.1465 9.3176 8.3042 10.1313 8.9669 9.3304 8.9039 10.5362 7.7879 10.6206 9.7626 10.6907 0.0000 9.5717 9.7481 8.7425 10.6085 10.4024 9.6891 8.7101 8.6687 9.2379 7.9355 9.8972 8.3799 9.8853 9.2529 9.8851 7.0353 8.7383 10.7574 9.3777 7.8822 8.8032 9.1868 10.2811 9.3880 9.5328 9.5721 9.9148 10.5209 9.3944 9.2317 9.6221 9.6301 8.7805 9.4446 9.6063 9.0852 6.5474 9.0714 9.8291 9.6173 9.5855 9.5981 9.8376 9.8267 9.2469 9.5167 9.3313 6.9425 9.6968 9.7082 9.6467 9.3507 8.7411 9.2208 9.6863 9.5471 8.9790 6.4094 9.0990 9.6150 8.9829 9.5715 10.6085 10.1420 8.9979 10.1332 10.6903 8.9584 8.8529 11.1638 9.1183 11.1042 9.9906 9.5314 10.2080 9.6972 9.8032 8.9279 9.9228 8.1773 9.4294 9.2492 7.2038 9.6377 10.2992 9.2606 11.5204 8.7488 8.9436 9.0849 8.8288 10.6743 8.4094 5.3923 10.8287 9.7313 8.9642 10.2371 10.3053 8.0412 10.2247 9.7866 9.5682 9.7728 9.0889 9.7595 9.8226 9.5064 9.3690 10.1198 10.3931 9.3793 9.6481 9.6552 8.7912 8.0655 8.9651 8.6566 8.5236 9.4036 9.6788 11.8544 9.6167 8.9667 10.0729 9.5335 10.2561 9.5067 9.6887 9.2670 9.5741 10.2822 9.1704 9.3279 9.3838 10.6153 9.8474 9.5382 7.7347 8.5838 10.9576 10.2671 9.7013 9.3856 10.3309 9.7944 9.8846 10.1517 9.9906 9.0293 9.6612 10.5717 10.2939 10.9391 9.5186 9.5619 9.1548 9.8890 7.7342 10.2219 9.0629 9.4513 9.6459 10.8193 8.2689 9.0698 10.1395 8.8899 9.4703 9.7792 9.6614 9.3857 8.8435 8.5777 7.8492 8.9064 9.8937 9.8737 10.1885 10.0593 9.9561 9.3312 10.9357 8.8114 7.8580 9.5515 8.9472 9.9901 9.6275 10.0666 10.6758 10.3580 9.5711 8.9137 9.4647 10.4033 9.0649 11.1615 9.6507 8.9045 10.2512 9.1516 7.8551 8.6993 9.3391 9.7228 8.8580 8.9393 8.6198 11.1954 10.0253 10.0538 11.1734 9.8429 8.0815 10.9994 9.3733 10.1511 9.9690 7.5808 10.7759 10.3545 9.6727 9.0254 9.5010 9.4396 8.6569 9.6599 7.9366 9.6669 9.5317 8.9095 7.3077 10.7368 9.6290 10.1033 10.1640 9.4617 8.8152 10.1559 10.0479 9.1197 7.8720 10.5253 8.8863 10.3410 9.1073 8.6463 10.0041 10.1722 8.0412 10.8492 9.4832 7.6966 8.8750 9.9727 9.6496 9.6752 9.0681 9.4172 10.1112 9.4616 10.0938 10.0586 9.0159 8.1037 9.9844 8.8554 10.2827 9.9632 9.0685 8.6518 7.3168 8.7871 7.5781 9.5521 8.9258 8.2185 10.1081 11.1203 7.3399 8.8375 10.4486 10.0950 9.0089 10.1889 9.3170 8.8573 10.2476 9.6330 10.5437 9.0328 10.2308 9.6497 9.1409 9.3502 10.8072 9.1774 9.8095 9.1344 9.4140 10.7626 9.2875 10.2677 10.1921 8.7746 10.3523 9.5833 10.2058 9.2407 9.1325 9.8380 10.9909 10.6943 9.0288 9.2850 8.7242 8.1229 10.7834 11.2305 9.5751 9.0847 9.3340 9.1286 9.7075 8.2131 9.0462 10.2333 11.0639 10.8841 9.3014 9.2894 10.1175 11.0747 8.9326 7.1099 9.7104 8.5073 9.3569 7.4262 10.0886 9.1776 10.4551 8.6791 9.5725 9.5616 8.4884 10.0907 9.0722 9.6443 9.3787 10.0852 10.2066 10.6531 9.1997 9.8618 10.2287 10.5052 9.0079 8.4179 10.7832 10.3136 9.0465 9.3576 9.4289 6.9293 9.0611 9.2516 8.8578 9.9159 8.6513 9.8997 8.9698 9.8008 9.3306 8.4093 8.9850 9.7914 9.4011 10.6243 9.6457 9.9021 7.7549 8.9112 9.1600 9.5562 8.6606 10.3871 9.4383 8.7382 10.6974 9.4931 9.4033 9.1759 9.1690 10.7006 8.0056 9.6448 9.0724 9.2985 10.1153 7.3309 9.1559 8.8718 7.6357 9.4770 8.7877 11.0232 9.0288 9.2007 10.9927 9.5997 8.7402 9.9770 10.3651 10.3900 9.5032 7.7112 9.0218 11.0917 9.9858 9.7975 11.5281 9.0471 9.8368 9.9902 9.6408 8.0538 9.9619 9.8948 9.6702 9.5642 9.0767 9.1349 8.1225 8.9159 10.3354 8.9469 8.4492 9.0824 10.2038 8.5967 9.6255 8.9476 10.7229 8.8439 9.8110 8.6642 10.3112 8.9689 9.9405 9.3870 9.4889 9.5168 11.3681 7.6767 10.6190 10.9825 9.4269 8.9112 9.0082 10.4259 9.9596 9.2404 8.5278 9.6707 9.7948 9.4749 9.4325 9.5228 9.6284 9.5247 10.2933 8.7108 10.2705 10.3286 10.6341 10.3736 9.8258 10.7020 7.9590 8.5196 8.4110 9.0279 9.7005 8.2476 9.9283 10.4661 9.5723 9.2208 9.7850 8.1344 9.4524 10.3661 11.0356 10.3065 10.1785 9.8436 9.9540 8.7464 10.0750 8.3898 8.8952 11.3009 10.4169 10.0796 9.5395 9.1879 9.9159 11.0955 9.0842 8.4626 9.5479 10.4498 9.9453 10.0645 9.8262 8.8985 10.5851 7.6294 8.5531 8.6251 8.7644 9.9295 9.1802 10.0542 9.3982 11.0860 10.2545 10.2363 10.3370 9.8487 8.9437 10.8235 7.2095 8.3869 9.9561 10.5079 10.2682 10.5716 9.2179 8.8826 9.6995 10.4776 10.1747 10.3083 10.1707 8.9144 9.6397 9.6494 9.5888 9.9170 9.3478 10.0966 10.6758 8.8798 8.3619 9.9381 11.0531 10.5869 9.2216 9.1621 9.8081 9.6185 8.4096 9.4261 9.8561 10.0735 9.9834 8.4307 8.0224 9.3396 9.9616 9.1142 10.0718 10.2141 10.3669 10.1928 10.8155 9.7633 7.8060 9.2157 10.4619 9.3984 9.8416 8.7991 9.2742 10.8963 11.0424 9.4514 12.0742 8.5583 9.3627 9.0526 9.4806 8.4345 9.8745 10.7226 9.7854 8.2543 9.4625 9.2749 10.6869 10.3614 8.5469 8.7512 9.8543 10.5162 9.5519 9.8378 9.4716 9.1951 8.9459 8.0154 9.7084 8.6705 9.9694 7.9189 7.4757 10.0126 8.9273 8.9841 9.0300 10.3640 9.8595 7.4184 10.1748 9.7464 7.6581 9.7547 9.4967 8.7212 9.3531 9.4134 10.2271 8.2741 10.6333 8.5290 8.7117 9.7543 10.1599 9.8938 8.9014 9.2973 9.3119 8.5796 10.3047 9.4372 9.0598 9.7555 8.1677 9.1608 9.0280 8.9126 10.3602 9.0854 9.6789 8.8132 10.8561 9.2175 10.0479 9.7432 9.8008 9.9003 9.7710 8.7702 11.0223 9.3157 10.3097 9.6836 11.2997 8.9254 8.5913 9.3859 10.0860 10.2281 8.3038 8.1677 7.9098 8.0973 12.0123 9.4571 10.2581 8.1527 8.1818 8.9813 10.8146 6.9350 9.8623 9.5086 10.7882 9.2401 9.7146 9.5525 9.7549 8.1856 9.6720 10.0143 10.5454 10.0372 9.0224 9.8143 9.0205 9.5334 8.8770 10.2523 9.0407 9.6147 9.8974 9.1581 10.2959 10.7190 8.3616 9.3779 10.8446 8.9439 11.1139 9.3521 9.6050 8.5191 9.1604 9.1687 9.7308 10.2829 9.2866 9.6307 10.6153 9.5375 7.4323 10.4698 9.7327 9.8475 9.6923 9.0866 10.6747 9.9768 9.5728 10.1680 8.9986 8.6622 9.8796 9.0845 8.7841 9.1076 11.4639 8.6888 6.8455 8.9715 10.4911 9.6904 10.2662 10.2973 7.3219 9.7239 10.2690 10.1194 9.2893 10.7426 9.7123 10.1362 8.5939 8.8765 10.3154 7.9797 9.0239 11.0371 8.9439 9.3672 8.0307 9.5429 9.5704 9.1680 9.8871 9.4302 7.8190 8.4219 9.3936 10.0865 9.1740 9.3902 8.7081 8.4512 10.8601 9.7612 9.0146 8.2718 10.3437 10.0979 8.3600 8.4838 9.9288 9.6962 8.6255 5.9069 8.3889 9.3094 9.4338 9.4400 8.7174 10.5438 10.2987 7.8948 10.0041 10.5619 9.8704 9.6448 9.9325 8.5028 7.5151 9.4760 9.3967 6.9189 11.5677 7.6040 9.2429 9.3256 9.9672 10.2907 10.3774 8.8828 10.2335 9.6986 9.6222 10.0402 9.5852 10.3771 9.1791 9.6186 10.5418 9.2498 8.9836 8.2496 8.6330 9.6948 10.1510 10.3701 9.3211 9.3826 8.1081 9.2112 10.8556 9.1497 9.4636 7.7826 9.2916 7.6470 8.9350 10.0502 8.9444 7.5078 8.4579 9.7235 9.3553 11.5892 9.7423 9.5329 9.7150 9.0862 10.2435 9.2224 9.0196 8.9555 9.3567 8.8705 8.9033 10.1710 10.3249 10.9211 10.3650 10.2277 7.9293 9.5673 8.9327 9.8237 8.6721 10.5470 9.3660 9.8282 9.8869 10.0095 11.4967 10.4273 9.0172 9.3790 10.3547 7.9710 8.7239 10.3628 9.3833 8.6168 9.8930 10.1171 8.6592 9.3828 8.3280 10.0238 9.7188 9.5091 9.4531 9.3785 9.9875 10.4151 8.0867 9.9938 10.2168 11.2022 10.2443 10.1371 10.7434 9.7578 8.7590 9.4681 8.8454 9.6765 7.6724 9.2068 8.1425 9.0916 7.2855 9.9076 8.4208 9.3546 9.4848 7.6848 10.4985 9.4158 10.9013 9.4532 9.7583 9.5050 10.0000 8.4770 9.2927 10.3116 10.6671 9.2424 10.2350 8.4717 11.2486 9.6551 9.6789 10.1372 10.0997 9.0812 7.5985 9.5904 9.6560 10.1463 9.9849 10.2429 8.1646 8.5629 9.3207 9.0028 9.8120 10.3216 9.6681 9.3841 9.1743 10.3236 9.2505 11.2088 8.6252 10.6866 10.3253 9.2969 10.8457 10.9986 10.2532 10.5319 9.1042 9.0361 6.8074 10.3831 8.9696 8.2750 9.9744 8.8435 5.8382 10.2190 9.2695 8.5344 9.4344 9.5445 9.3879 8.8658 8.9531 10.8852 10.1974 10.3939 10.5983 9.0473 8.2007 9.5685 10.3724 8.2752 8.4666 8.3623 8.3271 9.1131 10.1261 7.6511 10.4355 9.5777 9.0968 8.5412 10.8089 7.5067 8.6740 10.0139 9.9653 7.9210 8.7829 9.0033 10.4503 9.1021 9.0224 8.3025 8.8470 9.5438 8.5926 10.1172 9.5268 9.2766 9.4353 9.3000 9.7580 10.2007 0.0000 9.7681 11.0428 8.5482 8.4752 8.3868 9.3920 9.6922 7.2743 9.1408 8.8726 8.5875 9.1620 10.2491 9.5796 9.8698 10.5944 9.5956 9.5511 8.5007 9.2838 9.7552 10.6897 8.9614 11.1234 10.0114 9.8954 9.7130 9.0436 9.3363 10.5052 6.6836 9.5751 7.0554 9.8408 10.2429 10.2548 9.5228 8.8451 8.3484 8.8404 9.6871 9.5782 9.3842 9.6238 9.2105 9.0630 9.5338 10.3570 10.3003 6.5148 9.4045 10.1037 8.1373 10.3069 11.0492 7.4984 9.8824 10.4867 9.8588 10.2835 9.8401 10.0769 8.8785 9.4824 9.2100 9.8596 9.3932 11.1061 10.5815 9.5781 9.6744 9.5316 10.0228 8.5288 11.6346 10.8218 8.9515 11.4678 9.6343 8.3636 9.2994 9.9226 10.6913 8.5960 10.2088 8.9020 8.6142 9.8892 9.5238 5.6147 9.5128 9.6921 9.8887 9.7103 9.1756 8.2805 10.3361 9.5269 9.7308 10.5526 8.7155 11.5684 8.4751 9.5620 9.0045 8.3994 8.8606 9.2267 8.9871 10.4120 9.8834 10.6563 9.9560 9.6179 10.0618 9.9214 9.9848 9.2520 9.4837 8.4085 9.6630 9.4265 10.7721 10.1710 8.3481 8.8947 9.5031 9.3583 8.6724 8.7356 10.0375 8.4941 6.7035 9.2253 10.5060 8.9210 8.1997 10.5524 9.7524 10.7846 8.9023 8.7475 8.1749 11.9993 8.3342 9.2787 11.4704 10.2157 8.6626 10.6454 9.9964 8.8198 10.7770 8.2110 10.3859 10.0453 9.5653 9.8259 9.8541 10.1561 10.1208 10.7289 10.1857 10.0801 7.9101 9.8539 9.9467 7.8393 8.4752 10.3644 9.1468 9.6310 9.2002 9.5432 9.2346 9.8955 9.8410 10.0151 9.1857 9.9104 8.9906 7.8636 10.9241 9.8000 8.8572 9.8756 8.3249 10.1873 9.8627 10.0422 9.8873 8.7121 10.7179 11.5458 9.7398 10.9305 9.2672 10.4926 9.8329 6.2854 8.2214 10.7183 10.0732 8.8905 7.2828 10.0375 8.3129 10.1797 10.4543 9.3413 9.1389 9.6300 7.4998 10.5261 9.4419 9.7683 9.9835 8.5883 9.7017 9.3296 10.5879 9.4074 8.8993 8.6179 9.2261 6.3576 10.8166 9.5967 9.7351 9.8145 10.4041 9.6876 8.6118 9.3551 9.5441 9.5241 9.7546 9.4431 8.8190 9.7802 10.0457 7.7285 10.5341 9.3662 9.6985 8.3025 8.6887 11.4297 8.4019 9.1642 7.4028 9.5363 9.2342 9.8243 10.2152 9.5120 10.1740 7.8074 11.1371 8.7669 9.7143 9.4248 9.0802 8.7347 8.4717 10.3471 9.7021 10.6721 9.7918 7.2073 10.0950 9.5494 9.9291 8.6998 8.3397 10.4692 9.3734 9.5521 9.1555 8.9746 7.9875 9.1747 8.3403 6.7306 10.0719 9.2546 8.8165 8.6908 9.9584 9.6873 8.3164 9.6765 9.0838 9.6771 8.7104 8.9334 10.0053 10.7046 9.1775 7.6582 9.3662 10.9181 9.6748 8.1538 11.3082 8.7682 10.0981 9.4464 8.3354 8.2778 10.1728 9.7639 9.6271 9.9906 9.8178 7.3603 9.0201 9.2363 9.7114 8.8703 10.2099 9.5182 9.6840 9.8154 9.2140 8.2432 8.9418 10.5487 10.1856 10.0852 8.0886 10.7031 9.2387 10.0901 9.6979 9.9644 9.4162 9.2812 11.3351 10.3263 9.9569 10.7136 8.6505 9.5578 10.0080 8.6033 8.4005 7.7601 6.2479 9.6641 9.8644 8.3233 8.8681 9.4683 9.1241 0.0000 10.3758 9.9868 9.0247 9.0968 10.0061 9.1481 9.9185 10.3918 8.1718 9.0628 10.1518 9.3399 10.0776 9.9757 10.0209 8.8978 9.5930 7.2192 9.1018 10.7648 9.8965 10.3515 8.1571 8.4843 8.5695 7.5999 8.6305 9.2358 8.3214 9.2547 9.8545 10.5191 11.9893 10.4513 9.1964 10.0171 9.9245 9.0783 10.3693 10.1952 10.5380 9.8367 9.5225 7.8442 9.4940 9.0524 8.8015 10.0429 11.0365 9.8280 9.6293 9.7398 10.3583 7.6760 8.6466 9.6805 10.7880 9.4310 7.7748 9.8543 9.2158 10.1245 9.8775 9.6286 9.1728 10.5548 9.0979 10.9349 9.1666 10.6990 9.4626 9.9537 8.2083 8.0108 9.1092 9.4205 10.8803 9.2060 10.9500 9.3144 8.5700 9.5569 8.5338 9.0071 10.6557 9.1598 10.5655 8.9670 8.0928 9.5534 8.5528 7.1257 9.5103 10.1825 9.1085 10.3380 9.3587 11.1235 8.9858 11.5729 7.0169 9.4335 10.6451 8.7858 9.2079 10.0994 8.6575 10.8423 9.9738 9.4959 10.0066 8.9571 5.8782 9.0602 11.1259 10.1733 9.4695 6.9260 9.9658 10.9522 7.9679 10.2795 9.0588 10.8255 9.4696 8.9212 10.0668 8.9221 9.3658 9.7887 9.1434 8.8378 11.1410 8.6795 9.3624 8.9875 9.6999 9.0668 11.0279 8.9105 9.2151 8.2125 9.7846 9.4467 9.3439 9.2513 10.0397 10.6948 8.8509 9.3252 8.1872 10.3129 9.0973 9.9527 9.3619 8.9064 10.2584 11.0449 9.0015 8.4864 10.5211 9.6741 8.4995 11.5004 10.1788 9.4559 9.6243 9.1842 8.9654 11.5320 9.3137 9.6750 10.0303 10.0586 10.0335 8.3072 10.4803 9.7368 8.9213 9.5718 9.3453 10.8289 8.3465 9.1311 10.5817 9.2487 10.3447 10.7188 9.0443 8.7951 6.1001 8.7938 8.7142 10.9159 9.3062 7.7748 10.5666 10.0375 7.6073 9.2129 9.9772 12.3568 10.8281 9.4364 9.3391 8.0224 9.1199 10.5814 8.5259 10.0566 8.9420 9.7646 8.5346 9.0521 9.4579 9.0472 8.9998 9.5200 6.6294 9.7587 8.7999 9.9900 7.9821 9.5479 10.7050 10.2131 8.7139 11.0150 8.6424 8.7742 9.9425 10.7672 10.0974 8.7738 9.3169 9.6147 10.0120 9.2395 10.4640 6.7142 10.2915 9.7783 8.1849 9.5385 9.0767 10.0525 8.8106 10.0692 0.0000 10.1402 9.6469 9.5056 9.4601 8.6355 9.4491 10.0492 11.5734 8.8234 9.6559 9.4402 9.5450 10.1281 9.1205 9.4105 9.3428 10.3967 9.7407 9.7830 10.0524 9.0166 9.6892 10.2417 8.3262 9.2734 9.6486 10.1416 9.0980 9.1160 9.1326 9.8023 9.0806 9.3839 9.8214 9.6713 9.4447 8.4990 9.4903 8.1638 9.0059 8.7093 7.0661 8.4917 9.9194 9.7637 9.1613 9.0981 10.9072 8.3442 8.9020 9.8607 9.3517 10.3578 8.8929 11.1379 9.9375 9.7893 9.2315 9.1583 10.3822 9.2431 9.3850 9.6053 8.0279 8.8464 9.5442 7.4676 10.6901 9.7499 10.2047 9.9335 5.9773 8.6251 8.6378 9.4724 9.2647 9.9431 9.3606 9.2698 10.0167 10.6917 10.0633 11.3518 10.3697 8.7382 9.8746 9.1248 9.8241 9.4022 10.8433 8.9625 9.5562 11.4423 10.1548 9.2545 10.2149 9.7224 8.9438 10.1953 10.0324 10.4484 10.5240 9.2745 10.3669 9.0329 8.3481 9.4237 9.5196 10.3311 9.8854 10.0356 9.3261 8.5803 9.6050 9.2298 9.3632 9.2967 10.3175 10.3556 10.4900 9.5215 9.7796 8.0265 7.6961 9.0965 11.0959 8.8595 10.1779 8.4269 10.1701 9.6179 10.9787 8.8893 9.5101 8.5864 10.2718 8.3817 9.8962 9.0671 9.8920 9.6759 10.0854 9.0595 10.8309 10.2551 10.1780 9.8748 9.6704 8.0618 10.4561 8.6221 9.8983 9.1799 9.4375 8.9654 10.0140 8.9644 9.9132 10.0065 10.9649 10.0261 8.9686 8.4721 9.1391 10.3067 8.5803 10.6692 4.7511 7.7682 9.1811 8.9039 9.1396 9.6911 9.6701 9.2449 7.8798 9.5449 9.5427 9.1435 10.4666 11.1395 10.9485 9.3758 8.0800 10.2520 10.2490 8.6371 11.1003 9.6620 8.9387 9.3706 10.6652 8.8949 8.1639 9.6357 9.2175 9.0670 10.8950 10.0376 9.4555 0.0000 7.5885 11.1559 10.6820 9.7957 9.3756 9.1031 10.2344 10.9959 10.0194 9.4123 9.1435 10.4019 8.7262 10.8948 9.1574 8.1724 11.1048 8.2574 9.8811 10.7037 9.5712 10.3912 10.4454 7.4484 9.0585 10.3661 9.2115 10.7804 8.0338 11.1126 9.0463 10.7863 10.2024 8.2339 10.0927 9.5776 8.5960 10.9400 8.6029 8.1200 9.4872 9.4647 8.5800 9.9817 9.4979 8.7335 10.2407 10.1647 7.6366 10.0927 9.4063 8.9786 9.1447 9.8358 10.9263 9.8728 10.3743 0.0000 9.5908 10.4218 9.2975 11.2018 10.5978 9.6552 7.3129 9.4337 8.7180 9.5785 9.4727 8.5504 10.3698 8.8457 9.7055 7.4099 8.9972 10.8498 9.9051 9.0484 9.6770 9.4432 8.9464 8.8237 8.7544 8.9561 10.0242 8.8958 8.2628 9.7804 9.5621 9.0016 9.7538 8.9553 9.4701 9.6447 8.8236 8.6724 9.5131 10.5820 8.5028 9.1005 10.4915 9.8047 10.0402 8.4127 10.1154 8.6961 8.1167 9.2823 7.0289 9.3715 8.7626 8.6685 10.0744 8.9662 9.6797 9.4262 10.4522 9.7341 9.7153 11.5968 7.9715 9.6386 10.3140 8.4436 11.0362 8.9930 9.1928 10.0890 10.2252 8.9962 10.0664 10.1511 9.6308 7.2436 8.6680 10.2342 8.3657 9.6865 10.1364 8.9011 7.9112 7.5157 10.7768 9.9111 9.3686 9.1496 10.3376 8.9142 9.5097 11.2526 9.1639 8.6718 9.8644 8.8123 8.7313 8.9784 10.1258 8.0607 9.0533 10.4526 10.0140 8.1799 7.2095 9.1684 9.0038 9.7207 10.9058 9.7761 8.9373 9.4193 9.0189 8.8517 9.3587 10.1323 7.9181 10.4781 10.1248 10.2134 9.6460 9.9495 10.2996 8.8830 9.5515 8.8478 9.1846 9.6203 9.8432 9.9604 8.2411 9.8026 7.6080 9.3483 9.6413 8.9449 9.2683 8.7235 10.7715 8.2744 8.6592 9.0835 9.2134 8.7257 10.1387 10.5235 8.9587 11.0306 9.0708 9.7654 9.1510 10.0494 7.6067 8.3565 10.0955 4.4777 7.5763 8.1913 9.5749 10.8847 9.4816 9.5012 10.3184 8.1413 10.0370 10.1065 9.8541 4.4449 9.1410 9.0436 9.0498 10.5192 9.4366 8.5408 8.9687 10.5364 8.3275 6.8704 8.9619 9.2390 9.2388 8.7991 10.9818 9.7979 7.3822 9.6595 9.0815 10.1084 9.8762 8.8922 10.4624 10.1109 10.4940 8.2719 8.9894 9.8308 9.7715 8.1045 9.1617 8.0050 9.6356 9.7426 6.8659 8.2904 8.0419 8.7934 9.5726 9.0900 9.6431 8.6100 10.0402 8.9368 9.5438 9.7087 8.5004 9.5629 10.0898 9.8436 9.2038 9.7978 7.9887 10.0556 9.3386 8.9099 10.4564 8.8526 8.8889 10.3002 10.0536 8.6124 8.9916 9.7273 9.0051 9.8725 8.3831 10.5323 10.0157 9.1539 10.2714 9.8797 8.2928 8.3804 11.3507 8.5333 8.5392 8.1334 9.9121 11.1797 9.7294 10.0670 8.1925 9.7137 10.8596 9.8129 10.1609 11.1418 7.4091 10.0291 6.5078 11.5819 8.6139 9.9113 10.1431 8.4152 9.5931 10.1951 10.0299 10.3579 10.1989 8.7563 9.9061 10.2131 10.6260 10.5164 9.1985 10.3861 10.7141 9.0884 8.0405 9.2039 9.7926 9.3434 8.9355 10.3045 10.6648 9.7614 10.5229 9.7398 8.5196 8.6917 10.5003 8.8540 9.0515 10.2128 11.4523 10.1385 8.8135 9.4925 10.6182 9.9792 9.8161 10.1711 8.9119 9.8814 9.0218 9.3280 9.8442 10.3443 10.5008 9.7157 9.7451 9.1228 9.3755 7.1954 10.0871 9.6507 9.5647 9.7033 8.8125 11.3746 8.4623 9.1516 9.2457 11.0884 10.0052 9.5024 10.1991 10.5000 5.5081 9.4844 9.2039 8.1753 9.6711 9.2969 10.0522 8.4927 10.5197 10.7911 8.8390 10.4755 8.8430 9.9042 10.6441 10.7177 8.1033 9.0848 9.7664 9.9153 9.4322 7.7550 8.3856 6.9389 10.6978 9.6049 10.8080 9.4463 9.3728 9.2053 9.1252 10.2951 9.7000 9.1542 10.3390 9.2893 8.1255 11.3663 8.9614 8.4039 9.3167 9.5307 9.8533 9.5162 9.3685 9.7848 6.9773 8.2149 10.0737 9.0630 9.8791 11.7949 9.9036 9.6904 9.5148 9.5522 9.2015 9.6943 9.4971 9.6853 10.7115 10.1744 9.2328 10.6896 9.1394 9.1281 9.9637 9.5813 9.1429 9.9915 10.1029 10.7443 10.3172 9.6390 8.7166 10.5344 10.0117 10.8642 8.9565 10.2718 9.0234 8.9994 9.4609 10.1786 8.6683 9.4248 10.2099 9.2216 10.0309 8.3531 9.9200 9.1858 10.1322 10.2495 9.3762 9.9635 8.9304 9.5128 10.4971 10.2918 9.8577 8.1604 8.9411 9.3747 10.4016 10.3143 9.2597 9.3218 10.8522 9.2495 9.1599 9.1726 9.7027 11.9259 8.9066 9.0247 8.5413 8.3407 10.1902 11.1265 8.4791 10.2028 8.5947 9.3254 10.2185 9.2572 10.0685 7.0334 10.3627 8.4717 10.0321 9.3269 8.4053 10.4458 8.7044 7.1799 10.0164 10.1970 10.7809 8.9773 9.5864 9.2940 9.7359 0.0000 9.4130 7.0112 9.2505 7.5546 10.1346 7.4250 9.6925 9.7742 7.6366 9.8779 9.7279 10.6447 7.6495 10.1588 10.3967 8.7236 9.9768 9.4023 9.2262 11.1024 8.8732 7.7415 9.9088 9.6204 9.4676 9.3163 9.4041 9.7910 9.1994 6.8982 10.5813 9.2823 9.7852 10.0758 9.2526 8.9591 10.2198 9.7412 10.2005 8.7694 10.1781 10.2979 10.1132 8.8517 8.3869 9.9405 9.2989 10.5732 8.6670 9.8701 9.1220 9.3516 9.5097 9.3652 9.2429 8.4279 9.2090 10.2178 9.5558 6.9676 7.9017 11.5257 10.8406 9.4860 7.9214 10.9463 8.5708 9.6112 10.2778 9.3573 8.9560 9.1912 10.4565 9.2518 7.8126 9.9549 0.0000 10.1056 9.4897 9.2265 7.4245 10.1924 10.6816 9.8878 9.1720 10.2075 11.1176 10.8472 9.0397 7.8580 9.5944 9.0347 12.3821 7.8101 10.5207 10.4433 9.6764 8.7964 9.1564 9.5519 9.4415 10.0330 9.3701 10.4632 7.7342 9.5069 9.3519 9.5516 9.4802 8.8267 9.6813 9.9485 8.4352 7.8226 8.0097 8.1278 9.7296 10.6962 8.9683 8.9983 8.6147 9.4311 9.3486 9.6549 9.8754 10.7394 8.8246 10.2256 10.1098 7.3031 9.9095 9.6671 9.7529 10.4896 8.8223 9.9879 9.6805 9.8851 9.0284 11.1973 7.0629 8.2277 10.1924 8.9167 9.9810 9.3215 10.3062 9.8504 10.6235 9.3584 9.7756 10.1871 9.5265 8.8132 9.5959 9.7036 11.1246 8.8844 11.6319 8.0998 9.9270 10.6044 8.3036 9.8750 10.7072 9.2329 7.6439 7.8816 10.0349 10.0592 10.3211 9.1171 9.6958 8.6144 8.3998 10.1565 9.1387 9.9337 6.8804 10.4251 9.4371 9.4498 10.0637 9.5640 9.5297 10.0858 8.8106 10.0002 9.6629 7.4018 11.3069 8.9857 9.3754 8.6770 9.8864 9.0926 10.3595 9.2755 9.6495 11.0519 9.2357 8.3771 10.6607 8.9316 8.8772 9.6797 9.1707 7.9307 9.3668 9.6801 8.8955 9.7170 8.3301 11.1014 10.3095 9.8036 8.5448 8.1251 9.3417 9.1772 9.0882 10.2938 9.6832 8.8766 9.0713 10.3948 8.1005 11.1170 6.7166 10.8310 10.0876 8.2561 10.1895 10.5983 9.1146 8.3928 8.0661 10.1633 10.4833 9.0927 8.7433 10.0387 9.3751 8.6452 5.3576 11.2645 10.0678 10.2006 9.4264 10.1273 9.6384 9.9742 8.7197 10.5659 9.9823 9.5039 9.6720 9.6538 8.5996 9.9225 7.3129 10.8120 9.0698 9.6474 10.8037 9.9484 10.7505 8.7810 10.4840 9.2809 10.2818 9.6615 8.6743 7.7211 9.6778 10.6306 10.0894 9.5727 9.2650 6.5686 10.0696 9.8979 9.8627 0.0000 9.3623 9.9809 8.2369 8.9248 9.1695 10.5349 11.0777 8.4866 10.5803 9.4159 9.9844 8.9572 10.1032 9.5186 8.4482 9.8205 10.7059 10.3344 9.2201 0.0000 8.7325 10.1794 8.3428 7.1498 8.6026 9.6725 10.2017 10.3532 9.3716 9.1155 9.5921 8.8049 10.6954 11.5543 9.0566 10.0070 9.3320 10.3966 9.2426 10.3545 9.3091 9.5081 11.0260 10.3480 8.9635 9.6273 10.2253 9.3108 9.4036 10.1531 8.4651 10.4359 9.8859 9.9145 10.1894 11.1354 10.6561 8.8809 10.0614 10.1143 10.6514 10.1244 8.4822 10.1954 9.1991 10.4871 7.9413 9.4289 9.3444 10.6983 8.6583 10.2460 10.3756 11.2597 8.7007 9.6180 10.2385 10.7987 8.7678 9.3965 8.5667 9.9573 8.4419 8.9811 9.2841 10.0863 8.8010 8.5807 10.2651 9.0817 9.3914 9.0469 9.1395 10.3851 8.4947 8.8466 9.1451 9.2791 8.7764 9.4483 9.8406 9.7217 9.0306 9.6178 9.6840 8.3542 8.6355 9.4469 10.2484 8.0214 8.3345 9.5994 8.7834 11.3258 9.1140 9.9017 8.6961 8.5459 10.1979 8.9046 9.8461 10.1289 9.3106 9.4024 8.1245 8.5746 9.2313 9.5187 8.6833 8.6754 10.0590 8.1176 9.0575 9.1723 9.3539 10.7371 10.3998 8.9738 9.2344 9.9716 8.9954 9.4830 9.7110 9.9987 9.4572 9.9682 9.8653 8.4007 8.8408 8.4721 8.8977 9.3149 9.1737 8.9402 10.6137 10.0401 8.8585 10.1376 9.4852 10.3374 10.3528 9.6676 9.7877 9.9738 10.2437 8.8095 8.6197 9.4878 8.9465 11.1331 8.8720 10.8797 9.6537 8.7493 9.0636 9.8370 9.2014 9.2983 10.6311 9.0063 9.1765 10.1791 8.3855 8.4388 9.4109 7.7804 11.7178 9.3198 9.6947 9.9141 8.6632 9.4527 11.0963 8.5164 9.2988 10.7817 10.3465 8.8563 8.7046 8.8472 10.5351 11.4624 9.8661 9.4185 10.8685 9.0913 9.2880 9.1378 7.9679 9.4294 9.4691 11.0559 9.8011 9.8976 9.7991 8.0017 10.3902 8.8931 10.2740 9.5701 8.7482 9.3377 9.0533 8.4676 10.4892 10.0404 10.2068 9.3285 10.0614 9.4322 12.0083 10.5106 8.6554 7.9156 9.6596 8.8299 9.2218 8.9646 9.8375 7.8765 10.0223 9.8775 8.8182 8.5248 9.3231 9.9624 9.3086 10.4096 10.3178 9.9054 9.6967 9.5375 9.4909 9.0332 9.7595 8.4526 9.1915 10.1688 8.5392 8.3656 5.7004 9.3444 8.7013 6.8947 9.2547 8.6257 8.2213 4.8580 10.4191 8.5236 8.9928 10.5233 7.8517 9.5770 10.2228 8.5947 9.3156 9.2243 9.2437 9.9945 8.3923 9.3682 9.2003 11.1022 11.4753 9.8412 10.1699 11.3515 8.9204 10.1621 9.4450 11.3377 9.4983 9.2824 9.4725 10.3668 9.5536 10.4823 9.5388 8.2280 10.8001 9.1189 9.5581 9.6549 9.5287 10.5628 8.7169 10.4394 9.1210 11.3384 9.0642 10.2160 8.5521 9.9167 8.5601 8.7700 10.6654 8.7856 9.6257 9.6354 8.8880 8.8647 9.8737 8.8605 10.4104 9.6769 10.1522 9.5069 9.3539 10.0533 8.2344 9.9852 10.6326 9.5451 8.4037 10.6585 10.3546 10.5480 8.8009 10.8057 9.8990 10.3225 9.4960 8.6809 10.9496 8.4914 9.9830 9.0665 8.0460 8.3038 9.8534 9.3917 8.8748 10.3366 10.0617 9.1882 10.2672 9.3784 7.9011 9.9522 9.8968 9.2073 9.8906 8.9824 8.7283 9.0417 10.4832 8.8001 9.4366 9.0032 9.6660 7.4060 9.1970 10.6617 10.0830 9.8986 10.4890 9.8911 10.7648 9.9702 8.2746 9.0314 9.0836 10.7979 9.2896 9.2485 8.9050 9.1520 9.1881 9.7507 11.1384 10.2930 8.8282 9.2503 7.5210 9.4333 8.8647 9.3035 9.6283 10.0388 9.2556 10.1554 8.4099 8.1687 7.7279 8.5425 9.1615 9.7588 8.4265 10.5732 10.2278 9.3551 8.8325 9.8341 9.2066 8.6388 10.2218 9.5246 10.4231 8.4903 9.8627 9.3610 9.4327 8.1063 8.8018 10.3841 9.4999 8.6239 9.7754 9.2935 9.3762 7.6549 10.2478 9.7549 10.9185 8.0851 7.0323 10.7083 10.2316 9.8232 10.3057 9.0363 9.7422 9.4051 9.8955 9.9317 9.4781 10.9835 7.7831 8.9334 8.4919 8.7762 9.8265 9.9789 8.7840 10.5947 8.9039 11.1137 8.9428 9.7214 8.4385 10.1157 9.0486 8.9074 9.3394 9.3808 8.6846 8.4059 10.2365 8.7930 9.3206 8.5834 10.7432 9.4757 10.1715 8.8081 10.2145 9.9922 9.7270 9.4227 10.2688 8.9625 10.1991 9.1279 8.7533 9.0274 8.8066 8.4631 9.8998 9.3057 9.4880 10.0799 9.8725 8.5612 7.3536 9.1135 10.0259 7.9744 9.7360 10.0906 8.3966 9.0944 7.8877 10.0733 9.7315 9.6813 9.0613 9.8332 10.3328 8.9505 9.5051 10.0047 7.6716 10.7853 9.9988 9.5470 10.0644 8.7381 8.8455 8.0279 9.1944 9.8380 8.7393 8.8839 10.2071 8.1174 10.4468 9.8236 9.7852 8.6504 8.5275 10.0673 10.4804 10.3646 8.1497 9.5586 8.3038 10.2569 9.0580 9.9469 9.4229 11.2141 10.5591 9.6261 9.3501 7.0311 9.0014 8.7955 9.5892 9.7154 9.8710 8.7906 9.0900 7.7960 8.5679 9.2312 9.2005 9.9132 9.9886 10.5643 9.2327 10.2219 9.7461 10.7795 8.9972 10.9565 10.4073 8.3257 9.0883 9.0065 9.8434 9.7638 8.7457 10.2956 10.1534 9.4204 10.0699 9.6200 8.3258 9.4790 9.2431 9.3472 8.9499 6.8074 9.1967 9.6473 10.2114 10.3710 9.2010 6.0661 8.4424 11.1271 8.4570 9.3683 9.2658 9.5392 9.3707 10.7530 11.0695 10.3059 11.0008 9.0266 9.5450 8.8344 9.6298 9.2063 10.4238 9.9380 10.2240 9.9228 9.4413 8.1300 9.2157 10.9050 9.0727 8.3598 8.9135 9.6336 9.7523 9.5556 10.5740 8.9114 9.4673 10.1412 9.2758 9.3080 10.0303 9.5947 10.7408 7.6653 9.4002 6.4890 9.3757 9.1715 10.5497 8.0269 10.8566 10.0370 10.3611 0.0000 8.4734 8.8469 10.4712 7.6876 9.0415 9.4865 10.6576 9.8807 9.1139 9.0412 10.5908 10.2895 9.1205 8.4124 10.1340 11.8993 8.5848 8.4931 9.2765 9.7060 8.2808 10.7009 7.8329 10.6872 9.2948 8.6366 7.5306 10.2870 10.6857 9.8894 10.6747 8.8899 9.4817 9.8023 9.9997 9.0438 8.4168 7.6974 10.5235 10.2248 9.2332 7.6712 8.4406 10.6489 9.7800 10.5838 9.4866 10.6550 8.6864 9.5646 10.3869 9.8615 9.7914 8.6823 8.8763 9.0746 11.0807 9.3255 10.0119 8.1017 10.5152 9.5724 12.3264 10.3881 9.8600 9.3406 9.8624 9.3579 9.5079 8.7340 10.9402 10.0303 9.6758 10.1310 7.1945 8.9234 10.9455 9.4483 9.0066 7.8113 10.5189 9.0808 9.5491 8.8202 9.1657 9.9505 6.9887 11.1935 11.2591 9.4861 9.0288 8.5793 8.9766 9.9440 8.4798 8.0715 10.6158 8.9077 8.3856 9.8247 9.5450 9.8893 8.8581 9.2167 9.1799 11.1106 9.3273 9.9616 10.8952 10.1605 9.1096 8.9022 9.6416 11.2297 9.3579 10.0228 9.0729 10.7977 8.9773 9.1179 9.5891 9.7714 8.9721 9.4494 8.1231 9.7163 8.8769 8.7879 8.9672 7.0975 9.5463 8.9458 9.2245 7.9887 8.6183 7.8517 9.7501 10.1356 8.5619 8.8383 9.6493 10.4820 9.1055 9.9857 9.4399 10.2040 9.7804 10.1297 11.9214 7.7814 9.6356 10.4224 8.4959 9.3466 7.7478 9.2229 10.8208 11.0925 10.8908 8.6032 7.6073 8.7274 9.5941 7.3309 9.0007 7.5297 10.3316 10.2622 8.9825 9.6493 10.5518 10.2661 10.7605 9.9698 10.0564 10.4104 8.4291 9.7146 8.1600 8.8962 10.9920 9.6422 8.2761 9.6636 9.8433 9.0880 11.2703 9.9367 8.8761 10.0753 10.1024 12.5262 9.3465 10.5754 9.0208 8.0478 8.1640 9.4481 9.6868 9.3464 10.7523 9.2115 8.9646 9.4995 10.5123 9.8691 9.3553 8.4040 9.1144 8.7708 8.2688 7.7074 9.1919 9.4782 10.5517 9.8887 8.7017 9.4762 8.9406 9.6115 9.4057 11.0174 9.3779 10.6846 9.8311 7.6147 10.3108 9.0723 8.6002 12.3756 9.2326 7.5755 10.4585 7.7386 8.6724 8.0583 10.6322 9.2349 8.7783 9.1007 8.2574 9.4912 10.9864 9.9317 10.1072 9.3843 9.0563 10.2825 8.1604 9.9704 10.2600 9.4981 0.0000 8.8829 9.8344 8.3199 9.3581 10.3902 9.4074 8.9446 7.5469 9.1473 11.4783 11.3056 10.4522 10.2037 9.5477 10.1912 10.2912 9.0921 9.5318 10.0832 8.3526 10.2109 7.8373 10.8138 9.4376 8.0837 9.8455 8.9176 10.8018 10.2596 9.4440 8.5674 8.1548 8.7649 9.1990 9.7421 7.1898 9.9132 9.3757 9.1456 9.0185 8.5564 10.8691 9.3964 7.9596 10.0827 9.2211 10.3418 9.9445 9.3653 10.5349 9.3245 9.5814 9.7694 10.5040 10.0392 8.7830 10.5143 10.3018 9.4065 10.0398 8.8575 9.1237 8.7304 10.1449 9.7713 9.3094 9.5319 9.5010 9.2132 9.4176 10.4240 10.3373 9.7890 9.7597 9.0401 8.9329 10.3881 9.3081 9.4713 9.4188 10.0085 8.1804 9.5141 8.7924 11.0662 9.4139 8.3843 8.4287 9.2033 9.4674 8.0751 9.9975 10.0648 9.0964 9.1743 10.1197 9.4817 7.3354 9.6088 10.0165 9.8098 7.7142 10.0659 8.8665 10.4917 9.9264 8.3880 9.0867 10.0745 9.7750 10.7680 9.1190 8.2621 8.6617 10.5855 8.8553 8.6653 9.0470 9.0146 10.4443 10.1997 9.4159 9.2459 10.5099 9.2339 8.9451 8.4753 9.9332 10.0719 8.6251 10.1147 9.7844 8.4009 9.3351 11.2817 9.5950 8.6788 8.5462 6.5078 8.5466 9.0787 11.1974 10.1524 8.4256 8.5608 9.7388 8.5241 8.6337 9.0578 10.1050 9.7823 8.1331 9.6735 9.9428 9.1011 10.6094 7.3923 9.4469 9.0440 9.0351 10.1380 8.7637 10.5404 9.7004 9.7924 9.1494 10.2631 9.0012 5.9773 9.2882 8.9014 10.2262 7.8364 10.5030 9.5263 10.5690 8.8887 9.9351 9.9888 10.0372 9.8361 10.0955 11.1860 9.7472 8.7813 9.3250 9.4194 9.8094 9.1899 9.6017 9.8744 10.5261 8.5741 9.5831 8.6726 10.2180 8.9486 10.0843 8.9068 9.9705 9.7073 10.6927 9.1130 9.8887 10.3248 9.5429 8.0465 11.4439 9.7058 7.1668 10.7491 9.0291 10.1531 9.5843 9.7273 8.4878 8.7319 8.6412 9.4326 7.3219 9.2506 8.8242 11.5952 9.9062 10.9055 8.0571 12.3346 9.2192 10.8819 8.6935 10.2635 8.8862 8.7730 10.2387 9.1383 9.0787 10.2110 9.0190 10.7763 9.7620 9.2535 9.3638 9.0050 9.1797 11.2257 6.8437 10.6428 9.4684 9.8981 9.4962 8.4934 8.3392 10.4853 10.0236 10.6185 9.1475 10.0521 10.6062 9.6036 8.8580 8.3078 9.9650 11.5276 10.2906 9.9095 10.2988 8.0515 9.1422 10.8276 9.7843 10.4310 10.7900 7.3837 10.5336 9.1968 10.6296 10.6926 8.8625 8.4722 9.6874 10.0863 6.7310 8.4636 11.0327 8.9269 8.1542 10.5847 9.5543 9.1394 9.4449 10.5718 9.2660 10.3231 11.2516 8.1548 9.7149 9.5006 8.2765 9.4576 9.5732 9.3082 11.5059 9.7559 6.1085 10.5841 9.1688 9.3203 10.8890 9.1774 8.7325 10.4129 10.9973 8.5646 8.9691 11.6573 8.2627 8.8659 9.8724 11.0774 8.4843 10.1864 7.9944 9.0913 9.0599 9.6093 9.2898 9.5116 9.5235 9.0554 7.8445 10.6629 8.5166 7.4879 8.8445 10.2134 7.0553 10.1053 10.2770 10.0339 8.6814 9.6788 8.3531 9.8734 10.9031 9.9664 9.3983 9.9176 9.6967 8.7090 10.8180 8.4133 9.8751 9.3554 10.9612 10.3951 9.9996 10.2930 9.3495 9.7457 9.8865 10.4780 5.4263 9.2113 0.0000 11.0223 9.3396 10.4081 9.7322 8.7502 9.0980 8.6047 10.4066 8.9694 10.1461 10.3570 9.1941 9.5979 10.1830 8.9300 9.0369 8.3423 8.5507 9.6545 10.2621 10.3735 10.0215 9.7710 8.8695 10.2817 9.6384 7.7748 8.4154 9.2487 8.4962 9.0149 9.4951 6.2479 10.2443 11.6777 8.7421 10.8172 7.8549 9.9142 9.5584 8.2250 10.4303 9.9934 10.0361 10.0668 9.9072 7.8965 7.1980 9.4603 10.9002 9.3484 10.3053 9.4169 10.5667 8.5899 9.8677 11.4019 9.5811 9.6989 9.4795 10.0994 10.9168 8.4204 9.9627 10.0377 9.4629 9.3562 10.5851 6.9425 8.9838 10.6765 9.9384 9.1977 9.6587 9.0208 9.8005 9.1883 10.3857 10.7272 7.2490 10.7246 8.9342 9.7207 9.8477 9.7726 9.7362 8.6327 9.8676 8.7872 10.7258 8.9268 9.1160 8.8336 6.6724 8.9061 10.5442 9.7131 9.5641 9.3703 10.0912 10.4453 10.5372 9.4879 8.7899 9.0256 9.1386 9.4873 9.0663 9.3392 9.1183 9.2852 9.6085 9.1391 9.1148 9.4367 9.7488 9.3428 9.0951 8.9741 8.6975 10.2895 9.2193 9.3276 9.7736 9.5564 8.6373 9.1566 9.3344 8.5625 9.1755 10.8986 9.4033 10.0728 9.0210 8.9072 9.0153 9.9077 10.2181 8.8516 10.5591 9.6371 8.2533 9.6301 9.5104 9.0727 9.5510 9.2765 10.9676 8.5859 7.9796 10.3710 9.5914 7.1580 8.4021 10.6017 9.8882 8.1889 8.7345 10.2227 9.2486 9.3537 0.0000 9.5619 9.1501 10.5494 8.0968 8.2946 9.3240 9.5941 10.4429 9.6197 10.1003 10.2364 8.1585 8.8200 10.2373 9.6130 9.4387 9.7294 9.0819 7.9880 9.4783 9.1562 8.2965 11.1971 9.0618 8.9350 8.9448 9.6895 9.8264 10.1722 7.6695 10.7437 9.2422 9.0690 10.3194 10.0919 8.4212 10.1280 9.6681 9.5655 9.8796 10.7480 7.9156 8.7482 8.5465 7.8636 9.6427 10.4024 8.4929 9.2998 10.3586 8.2758 8.6795 8.0589 9.3185 9.9619 9.4505 9.1642 9.0004 10.1860 9.9911 9.8912 9.0623 9.4614 9.3103 9.6315 10.2848 10.0970 10.5399 9.0708 8.8356 10.1779 10.0225 10.4046 6.6307 10.8495 11.7150 9.4788 7.6623 10.0712 12.2510 9.6946 8.5083 10.3356 10.6453 7.6439 11.4296 9.4583 9.1996 6.6724 10.8495 7.4950 8.8352 11.3527 9.5305 10.7080 8.6335 10.5783 8.9542 9.5672 9.7970 8.0931 10.8575 8.9263 9.4748 9.5908 10.0248 10.1478 8.6261 9.7632 9.3903 10.4374 7.0444 8.6653 8.7309 8.5661 10.0365 9.2387 8.5915 11.4311 9.9733 9.2230 9.3063 9.3692 7.5774 10.8183 9.8283 9.7585 9.4216 9.8076 10.7883 10.0614 9.0283 8.0857 9.0563 10.3426 9.6355 9.0279 9.9375 8.0715 8.1033 8.5422 9.4233 7.5826 10.2157 8.3554 8.1606 9.2518 10.6234 10.4931 8.4035 9.5877 8.4338 10.2332 10.2076 9.3675 8.9164 10.4050 8.4957 9.3648 10.2043 9.8000 11.0040 5.6439 10.5604 10.9400 10.3439 9.7178 8.6504 9.2538 9.3548 8.2143 10.3765 8.6559 9.2740 9.7119 6.8027 8.9383 8.6616 9.2597 10.8054 8.6768 10.1720 9.3240 11.5518 9.0093 7.5462 9.2389 9.3565 9.7150 9.6117 8.4638 9.5058 7.7710 8.9297 9.0073 9.7606 8.7785 11.3769 8.8309 9.9998 8.7048 8.9076 9.8228 9.0399 10.6084 9.5384 9.4567 9.1465 9.1241 9.6358 10.6484 9.8550 8.6449 9.9494 10.8059 9.4838 8.5335 10.9239 9.5003 9.5501 10.4777 9.6894 9.4098 7.3576 9.3231 9.9040 9.3134 7.0626 9.4299 11.6211 9.1857 10.2648 8.2884 12.3777 9.9276 10.4719 8.9869 9.6213 11.1653 9.2514 5.0875 9.4641 10.2282 9.7888 10.5174 8.6421 8.2998 9.2680 7.1497 9.6101 8.9134 9.4335 11.0943 9.3776 9.7599 8.7392 9.3212 9.3507 9.7224 9.5452 10.0102 8.3223 10.3302 7.8985 9.6146 9.9056 9.8714 8.3805 9.3921 6.6582 9.2711 10.2692 9.6074 9.2488 8.7298 10.3593 9.8734 8.3309 9.8796 6.7004 10.0822 10.7953 10.9760 10.7016 10.1984 9.3489 8.2423 9.2104 9.3807 10.0299 9.0538 10.8522 7.6073 9.4576 10.5918 9.2686 8.4696 6.8202 9.6585 10.0854 9.9253 9.8723 5.4919 8.1740 8.8806 9.1530 9.1225 9.1648 9.6748 11.0900 9.9861 9.2757 9.4180 7.6556 8.7859 9.7706 9.1442 10.4358 9.6851 9.0087 9.2349 9.9337 10.0458 8.6552 9.4466 8.9274 9.2601 8.2384 10.7929 9.7966 9.6529 9.2905 9.2663 9.1965 10.2879 9.2903 9.7583 9.0495 9.7509 8.2344 10.7332 9.6488 9.9590 9.8305 9.7015 10.0807 9.9326 9.4749 11.1898 9.1085 8.5474 10.0128 9.4451 9.4135 8.8003 6.8595 9.8975 8.8584 9.5729 8.6754 8.2134 8.6105 9.0896 9.6439 9.1789 11.1444 9.5392 11.0119 9.2126 9.0417 10.0074 9.6404 8.9952 9.1228 10.1826 0.0000 8.7211 8.2755 9.6126 9.1421 11.9166 9.5484 8.8504 9.8117 8.9206 8.6817 8.8781 9.5543 8.3113 8.9493 10.0497 8.1470 9.4676 9.0933 10.5302 10.2508 10.3536 10.0782 10.4853 10.7594 10.9473 9.1424 9.8796 10.8306 6.4919 7.6193 8.5736 10.5606 11.1672 9.9190 7.8880 8.0928 9.6895 8.4815 11.1178 8.9971 10.6223 8.9185 10.2996 10.2009 10.4458 9.2341 9.7988 9.9861 10.8128 7.8434 9.8852 8.3586 9.5653 10.4730 9.8948 10.5643 8.6541 9.3956 9.8550 8.1472 9.1814 9.1673 9.7803 9.6173 9.3340 9.1010 10.9686 10.8772 11.2261 9.1734 10.6455 8.6234 9.5800 10.7022 10.0359 8.4998 9.2885 9.5529 9.2368 9.6808 10.2683 8.1740 9.4448 11.5150 9.3457 10.5372 8.8388 10.1350 9.5848 9.2612 10.3897 9.2468 10.3331 8.7429 8.6724 8.9284 10.2316 10.0924 9.0566 10.3963 10.2152 10.4782 9.2254 9.8027 9.0272 9.8365 9.5649 8.7912 10.9769 10.2050 9.8681 9.0928 7.0996 8.1849 9.5075 9.6620 10.6608 11.1130 7.3750 10.2545 8.6456 10.1617 0.0000 9.0467 9.5225 9.5777 10.4714 10.3308 9.6448 9.9473 7.9297 9.7988 9.1147 10.0382 9.2992 10.6303 10.2049 8.9615 9.7457 10.2879 8.9750 9.0457 10.5509 9.6707 9.8404 9.0023 10.2488 8.5736 9.5813 9.0542 8.1460 9.8480 8.0168 10.3414 9.8262 7.4159 9.8985 9.0421 7.2668 7.5842 9.5876 9.2639 11.0003 10.9660 9.0735 11.5736 9.5492 8.8120 9.9869 9.3294 9.6939 8.9195 10.4300 9.5469 10.6851 8.1750 9.9771 8.5639 9.4335 8.9292 10.0817 9.1084 9.2070 7.3116 9.2946 9.0314 8.9127 10.4899 9.4276 9.4507 9.2579 8.3094 9.2321 9.5819 10.3502 8.6030 10.2184 9.1524 10.7269 8.3634 8.9039 9.8069 9.1897 10.3997 9.0230 10.4505 10.1546 9.5566 10.4928 9.0675 10.2907 8.9803 8.8796 10.9708 11.4080 0.0000 9.6877 8.8674 10.9734 8.6200 9.9930 9.6492 9.6299 8.6946 8.4091 9.8350 8.3123 9.7702 10.8075 8.5843 9.7106 10.4014 9.0811 7.2462 10.8028 9.4636 9.6649 9.3233 9.0204 11.4607 9.5671 9.0575 8.6754 9.8069 10.4365 10.1611 8.9563 8.5790 8.9978 9.2407 8.2753 10.4733 10.2520 8.9218 10.5248 10.2647 8.1859 8.8537 8.5392 8.4048 8.6902 10.6071 7.5999 0.0000 8.5367 9.2340 8.6556 10.1949 9.6075 9.4827 10.0463 9.0420 8.6611 10.4578 9.7461 9.7860 10.0158 8.9545 10.1063 9.0813 8.0320 10.6342 10.3152 8.5533 9.4815 10.5120 10.5879 10.4336 9.8693 8.6289 8.1439 8.4506 9.5601 10.3353 7.3399 10.1425 9.2856 11.1612 7.6991 7.2330 10.9702 9.0288 8.5030 9.9919 8.6554 9.4112 9.4886 9.0003 7.3941 10.0470 7.8629 9.7097 9.5114 9.7159 10.3021 7.6336 10.2427 10.5740 9.3166 7.4728 9.6955 9.4872 9.6685 9.5278 10.3973 7.9666 9.3114 9.6025 9.4567 9.4501 10.1871 9.9856 9.0495 11.3608 8.2048 10.8715 8.4092 9.8617 9.1817 8.7795 6.9429 10.2247 7.3129 10.0546 9.6172 9.0095 10.6232 9.9608 9.8219 9.8583 11.1809 9.3798 9.2647 10.7852 9.3896 7.5546 9.6481 10.1246 9.6977 8.9768 8.4103 9.5290 8.3766 9.4517 8.5731 7.3274 9.0081 9.6249 9.0401 9.5371 10.2582 10.2541 9.2246 8.7649 10.5599 10.1047 8.8361 9.9835 10.2891 10.0983 10.3389 10.6006 9.2099 9.5761 8.5838 9.4054 9.8032 8.9568 9.9719 9.4221 9.2021 9.2402 9.7074 7.3837 9.9259 10.4497 9.7830 9.1155 8.4790 9.7245 10.3299 8.9106 9.5627 7.6859 9.8363 9.6031 8.7853 10.2152 8.7493 8.4769 8.7901 8.7405 10.6239 9.0224 9.6678 10.7699 7.4998 7.2854 10.2708 9.9282 10.2829 8.1081 10.2031 9.6283 9.5602 10.0600 10.0465 10.6052 8.8822 9.5501 9.0600 9.0005 9.7901 9.7093 11.0530 9.6770 8.1347 10.7917 9.0067 8.8053 10.7135 10.4796 9.8648 9.9107 8.6331 9.0016 9.3796 10.6804 7.4162 8.9806 9.9804 7.3026 9.0687 9.9340 9.6429 10.1667 8.9204 9.0585 10.5631 9.0953 10.7002 8.1224 8.4956 9.5203 10.3513 9.7751 9.0303 8.4144 8.2668 9.1526 10.5350 9.8475 9.7781 10.4021 10.3375 8.7473 9.1941 9.6542 10.8936 9.2021 9.6223 8.6216 10.5894 8.7241 10.8088 8.8478 9.2129 9.0261 9.1028 9.4678 9.6796 11.0896 10.0922 10.4709 8.4081 8.4641 10.0383 10.8911 10.5047 8.8653 9.9562 9.4750 10.6078 8.0271 9.3188 10.2742 10.5081 9.6050 11.8056 10.1235 9.7100 7.2288 9.5811 8.9128 8.9828 7.7637 8.9200 9.4156 9.5064 8.8146 9.8759 8.8739 10.1943 9.4997 9.8217 8.7943 8.7619 9.2725 9.2341 9.7749 9.5948 9.1639 10.7172 10.5491 10.4806 9.3673 8.8663 8.8728 7.8149 10.2886 9.9215 9.0395 9.5634 9.6047 10.2222 8.5623 8.4677 9.8311 8.1270 9.4318 8.9550 11.3243 8.6221 9.3102 10.1793 9.9324 9.8103 8.7342 8.7465 9.8902 9.7659 11.9978 10.6364 9.3346 9.5015 9.7261 8.5038 8.4261 9.7947 9.1203 8.9592 8.7347 8.8824 8.5925 10.1011 9.8024 8.2192 9.7260 10.1466 9.7477 8.9398 9.1016 10.6696 9.7052 9.6059 9.1505 9.6780 9.0608 9.6306 8.8365 8.9525 10.0350 9.2804 9.5196 8.2552 9.7405 8.6545 9.9634 9.5192 9.9420 9.5753 9.2890 10.0729 10.2395 9.7323 9.4118 10.6010 9.2295 9.5274 8.4165 7.9392 10.3760 10.4618 10.7271 8.9166 8.4945 9.3571 10.3759 8.5141 10.2672 9.4377 9.6456 9.2347 9.5465 9.3738 8.8629 8.2135 10.6673 10.5650 9.9359 10.4907 10.3075 9.0848 10.9409 8.7151 10.0203 8.9813 9.3541 10.5927 10.4885 9.4066 9.6409 9.9225 10.6138 9.7058 10.7745 10.6064 10.1010 8.7447 8.9075 9.1745 8.7207 10.3273 8.8399 9.1614 9.0993 7.9250 9.6117 8.9772 9.7268 8.7751 9.1956 9.2030 9.2143 8.8601 11.5413 9.0483 10.2504 9.7556 9.4146 9.4851 10.6362 10.2921 9.6917 10.3134 9.6750 8.9947 9.8741 9.1711 9.7522 9.4792 8.9859 8.6827 9.1145 8.7844 9.9229 9.8885 10.4141 9.2741 9.3061 11.0305 9.6430 9.9133 9.3151 9.6992 9.7845 10.1820 9.9484 9.5457 9.0190 9.6840 9.6881 10.1945 10.6118 9.5154 9.9782 8.8517 9.3940 10.4846 10.2393 8.1872 9.5715 9.7471 8.6776 8.7353 8.8924 10.0502 10.3047 8.5665 9.7601 10.4423 8.8738 10.9515 7.0429 9.8030 7.8138 10.2474 8.8726 8.4170 10.1709 9.9099 10.6639 9.2461 10.0784 8.9959 9.5337 9.4548 10.0538 ENSG00000278814.1 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 ================================================ FILE: inst/extdata/gtex_probeMap_gencode.v23.annotation.gene.probemap_test ================================================ id gene chrom chromStart chromEnd strand ENSG00000242268.2 RP11-368I23.2 chr3 168903366 168921996 + ENSG00000259041.1 RP11-167B3.1 chr15 98282075 98285907 + ENSG00000270112.3 RP11-742D12.2 chr18 46756487 46764408 + ENSG00000167578.16 RAB4B chr19 40778216 40796944 + ENSG00000278814.1 AC104071.1 chr4 31349786 31349874 - ================================================ FILE: man/Combat_Normal.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/CombatNormal.R \name{Combat_Normal} \alias{Combat_Normal} \title{Process and Correct Batch Effects in TCGA's normal tissue and GTEX Data} \usage{ Combat_Normal( TCGA_normal_data_path, gtex_data_path, CombatNormal_output_path, auto_mode = FALSE, default_input = "11,12" ) } \arguments{ \item{TCGA_normal_data_path}{The path to the tumor data stored in an RDS file.} \item{gtex_data_path}{The path to the GTEX data stored in an RDS file.} \item{CombatNormal_output_path}{A character string specifying the path where the output RDS file will be saved.} \item{auto_mode}{Logical. If set to TRUE, the function will not prompt the user for input and will instead use the values provided in default_input. Default is FALSE.} \item{default_input}{Character string. When auto_mode is TRUE, this parameter specifies the default TGCA's normal tissue types to be retained. It should be provided as a comma-separated string (e.g., "11,12").} } \value{ A data.frame with corrected values after the ComBat_seq adjustment. Note that this function also saves the combat_count_df data as an RDS file at the specified output path. } \description{ The function first extracts histological types from the provided TCGA's normal tissue data set. After displaying these types, the user is prompted to input specific types to retain. The data is then filtered based on this input. The GTEX and TCGA's normal tissue datasets are then combined and batch corrected. Note: This function assumes that TCGA's normal samples and GTEX samples represent different batches. } \details{ This function takes a TCGA's normal tissue data set and a pre-saved GTEX data set, asks the user for specific TCGA's normal tissue types to retain, then merges the two datasets. The merged dataset is then corrected for batch effects using the ComBat_seq function from the 'sva' package. The ComBat_seq function from the 'sva' package is used to correct batch effects. The function requires the 'sva' package to be installed and loaded externally. The example code uses `tempfile()` to generate temporary paths dynamically during execution. These paths are valid during the `R CMD check` process, even if no actual files exist, because `tempfile()` generates a unique file path that does not depend on the user's file system. Using `tempfile()` ensures that the example code does not rely on specific external files and avoids errors during `R CMD check`. CRAN review checks for documentation correctness and syntax parsing, not the existence of actual files, as long as the example code is syntactically valid. } \examples{ TCGA_normal_file <- system.file("extdata", "SKCM_Skin_TCGA_exp_normal_test.rds", package = "TransProR") gtex_file <- system.file("extdata", "Skin_SKCM_Gtex_test.rds", package = "TransProR") output_file <- file.path(tempdir(), "SKCM_Skin_Combat_Normal_TCGA_GTEX_count.rds") SKCM_Skin_Combat_Normal_TCGA_GTEX_count <- Combat_Normal( TCGA_normal_data_path = TCGA_normal_file, gtex_data_path = gtex_file, CombatNormal_output_path = output_file, auto_mode = TRUE, default_input = "skip" ) head(SKCM_Skin_Combat_Normal_TCGA_GTEX_count)[1:5, 1:5] } \seealso{ \code{\link[sva]{ComBat_seq}} } ================================================ FILE: man/Contrast_Venn.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/Contrast_Venn.R \name{Contrast_Venn} \alias{Contrast_Venn} \title{Function to Create a Venn Diagram of DEGs with Custom Colors} \usage{ Contrast_Venn( all_degs_venn, edge_colors, name_color, fill_colors, label_size = 4, edge_size = 3 ) } \arguments{ \item{all_degs_venn}{A list of DEG sets for Venn Diagram creation.} \item{edge_colors}{A vector of colors for the edges of the Venn Diagram sets.} \item{name_color}{A vector of colors for the names of the sets in the Venn Diagram.} \item{fill_colors}{A vector of two colors for the gradient fill of the Venn Diagram.} \item{label_size}{The size of the labels showing the number of elements in each set (default is 4).} \item{edge_size}{The size of the edges of the Venn Diagram sets (default is 3).} } \value{ A `ggplot` object representing the Venn Diagram. } \description{ This function creates a Venn Diagram using the 'ggVennDiagram' package. It allows customization of various aesthetic elements of the diagram, including colors. } \examples{ data("all_degs_venn", package = "TransProR") edge_colors <- c("#1b62bb","#13822e","#332c3a","#9e2d39") name_color <- c("#1b64bb","#13828e","#337c3a","#9e9d39") fill_colors <- c("#e3f2fa", "#0288d1") Contrast_degs_venn <- Contrast_Venn(all_degs_venn, edge_colors, name_color, fill_colors) } ================================================ FILE: man/DESeq2_analyze.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/DESeq2Analyze.R \name{DESeq2_analyze} \alias{DESeq2_analyze} \title{Differential Gene Expression Analysis using 'DESeq2'} \usage{ DESeq2_analyze( tumor_file, normal_file, output_file, logFC = 2.5, p_value = 0.01 ) } \arguments{ \item{tumor_file}{Path to the tumor data file (RDS format).} \item{normal_file}{Path to the normal data file (RDS format).} \item{output_file}{Path to save the output DEG data (RDS format).} \item{logFC}{Threshold for log fold change.} \item{p_value}{Threshold for p-value.} } \value{ A data frame of differential expression results. } \description{ 'DESeq2': Differential gene expression analysis based on the negative binomial distribution. This function utilizes the 'DESeq2' package to conduct differential gene expression analysis. It processes tumor and normal expression data, applies DESeq2 analysis, and outputs the results along with information on gene expression changes. } \details{ The DESeq2 methodology is based on modeling count data using a negative binomial distribution, which allows for handling the variability observed in gene expression data, especially in small sample sizes. This approach is well-suited for RNA-Seq data analysis. } \examples{ # Define file paths for tumor and normal data from the data folder tumor_file <- system.file("extdata", "removebatch_SKCM_Skin_TCGA_exp_tumor_test.rds", package = "TransProR") normal_file <- system.file("extdata", "removebatch_SKCM_Skin_Normal_TCGA_GTEX_count_test.rds", package = "TransProR") output_file <- file.path(tempdir(), "DEG_DESeq2.rds") DEG_DESeq2 <- DESeq2_analyze( tumor_file = tumor_file, normal_file = normal_file, output_file = output_file, 2.5, 0.01 ) # View the top 5 rows of the result head(DEG_DESeq2, 5) } \references{ DESeq2:Differential gene expression analysis based on the negative binomial distribution. For more information, visit the page: https://docs.gdc.cancer.gov/Data/Bioinformatics_Pipelines/Expression_mRNA_Pipeline/ } ================================================ FILE: man/Wilcoxon_analyze.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/WilcoxonAnalyze.R \name{Wilcoxon_analyze} \alias{Wilcoxon_analyze} \title{Differential Gene Expression Analysis Using Wilcoxon Rank-Sum Test} \usage{ Wilcoxon_analyze( tumor_file, normal_file, output_file, logFC_threshold = 2.5, fdr_threshold = 0.05 ) } \arguments{ \item{tumor_file}{Path to the tumor data file (RDS format).} \item{normal_file}{Path to the normal data file (RDS format).} \item{output_file}{Path to save the output DEG data (RDS format).} \item{logFC_threshold}{Threshold for log fold change for marking up/down-regulated genes.} \item{fdr_threshold}{Threshold for FDR for filtering significant genes.} } \value{ A data frame of differential expression results. } \description{ This function performs differential gene expression analysis using Wilcoxon rank-sum tests. It reads tumor and normal expression data, performs TMM normalization using 'edgeR', and uses Wilcoxon rank-sum tests to identify differentially expressed genes. } \examples{ # Define file paths for tumor and normal data from the data folder tumor_file <- system.file("extdata", "removebatch_SKCM_Skin_TCGA_exp_tumor_test.rds", package = "TransProR") normal_file <- system.file("extdata", "removebatch_SKCM_Skin_Normal_TCGA_GTEX_count_test.rds", package = "TransProR") output_file <- file.path(tempdir(), "Wilcoxon_rank_sum_testoutRst.rds") # Run the Wilcoxon rank sum test outRst <- Wilcoxon_analyze( tumor_file = tumor_file, normal_file = normal_file, output_file = output_file, logFC_threshold = 2.5, fdr_threshold = 0.01 ) # View the top 5 rows of the result head(outRst, 5) } \references{ Li, Y., Ge, X., Peng, F., Li, W., & Li, J. J. (2022). Exaggerated False Positives by Popular Differential Expression Methods When Analyzing Human Population Samples. Genome Biology, 23(1), 79. DOI: https://doi.org/10.1186/s13059-022-02648-4. } ================================================ FILE: man/add_boxplot.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/CircosFruits.R \name{add_boxplot} \alias{add_boxplot} \title{Add a boxplot layer to a `ggtree` plot} \usage{ add_boxplot( p, data, fill_color = "#f28131", alpha = 0.6, offset = 0.22, pwidth = 0.5 ) } \arguments{ \item{p}{An existing ggtree plot object.} \item{data}{A data frame containing the data to be plotted. Expected to have columns for 'Sample' and 'value'.} \item{fill_color}{A character string specifying the fill color for the boxplots. Default is "#f28131".} \item{alpha}{Numeric value for the transparency of the boxplots. Default is 0.6.} \item{offset}{Numeric value, the position of the boxplot on the x-axis relative to its gene name. Default is 0.22.} \item{pwidth}{Numeric value, the width of the boxplot. Default is 0.5.} } \value{ A `ggtree` plot object with the added boxplot layer. } \description{ This function adds a boxplot layer to an existing `ggtree` plot object using ggtreeExtra's geom_fruit for boxplots. It is primarily used to display statistical summaries of the data related to gene expressions or other metrics. } \examples{ \donttest{ # Check and load required packages if (requireNamespace("ggtreeExtra", quietly = TRUE) && requireNamespace("ggplot2", quietly = TRUE)) { library(ggtreeExtra) library(ggplot2) file_path <- system.file("extdata", "p_tree_test.rds", package = "TransProR") p <- readRDS(file_path) # Create boxplot data frame boxplot_data <- data.frame( Sample = rep(c("Species_A", "Species_B", "Species_C", "Species_D"), each = 30), value = c( rnorm(30, mean = 5, sd = 1), # Data for Species_A rnorm(30, mean = 7, sd = 1.5), # Data for Species_B rnorm(30, mean = 6, sd = 1.2), # Data for Species_C rnorm(30, mean = 8, sd = 1.3) # Data for Species_D ) ) # Call add_boxplot function to add boxplot layer p_with_boxplot <- add_boxplot(p, boxplot_data) } else { message("Required packages 'ggtreeExtra' and 'ggplot2' are not installed.") } } } ================================================ FILE: man/add_new_tile_layer.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/CircosFruits.R \name{add_new_tile_layer} \alias{add_new_tile_layer} \title{Add a new tile layer with dynamic scales to a `ggtree` plot} \usage{ add_new_tile_layer( p, data, gene_colors, gene_label, alpha_value = c(0.3, 0.9), offset = 0.02, pwidth = 2 ) } \arguments{ \item{p}{An existing ggtree plot object.} \item{data}{A data frame containing the data to be plotted. Expected to have columns for 'Sample', 'Gene', and 'value'.} \item{gene_colors}{A named vector of colors for genes.} \item{gene_label}{A character string used as a label in the legend for the genes.} \item{alpha_value}{A numeric or named vector for setting the alpha scale based on values.} \item{offset}{Numeric value, the position of the tile on the x-axis relative to its gene name. Default is 0.02.} \item{pwidth}{Numeric value, the width of the tile. Default is 2.} } \value{ A `ggtree` plot object with the added tile layer and new scales. } \description{ This function adds a new tile layer to an existing `ggtree` plot object, allowing for separate scales for fill and alpha transparency. This is useful when you want to add additional data layers without interfering with the existing scales in the plot. It utilizes the 'ggnewscale' package to reset scales for new layers. } \examples{ \donttest{ # Check and load required packages if (requireNamespace("ggtreeExtra", quietly = TRUE) && requireNamespace("ggplot2", quietly = TRUE) && requireNamespace("ggnewscale", quietly = TRUE)) { library(ggtreeExtra) library(ggplot2) library(ggnewscale) file_path <- system.file("extdata", "p_tree_test.rds", package = "TransProR") p <- readRDS(file_path) # Create new expression data new_expression_data <- data.frame( Sample = rep(c("Species_A", "Species_B", "Species_C", "Species_D"), each = 3), Gene = rep(c("Gene6", "Gene7", "Gene8"), times = 4), Value = runif(12, min = 0, max = 1) # Randomly generate expression values between 0 and 1 ) # Define new gene colors new_gene_colors <- c( Gene6 = "#0b5f63", Gene7 = "#074d41", Gene8 = "#1f5e27" ) # Define gene label and alpha values gene_label <- "New Genes" alpha_value <- c(0.3, 0.9) # Add new tile layer p_with_new_layer <- add_new_tile_layer( p, new_expression_data, new_gene_colors, gene_label, alpha_value, offset = 0.02, pwidth = 2 ) } else { message("Required packages 'ggtreeExtra', 'ggplot2', and 'ggnewscale' are not installed.") } } } ================================================ FILE: man/adjust_alpha_scale.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/AdjustAlphaScale.R \name{adjust_alpha_scale} \alias{adjust_alpha_scale} \title{Adjust Alpha Scale for Data Visualization} \usage{ adjust_alpha_scale(data, name, range = c(0.2, 0.8)) } \arguments{ \item{data}{A data frame containing the values for which the alpha scale is to be adjusted.} \item{name}{Character string that will be used as the title of the legend in the plot.} \item{range}{Numeric vector of length 2 specifying the range of alpha values, defaults to c(0.2, 0.8).} } \value{ A ggplot2 alpha scale adjustment layer. } \description{ This function dynamically adjusts the transparency scale for visualizations, especially useful when the range of data values varies significantly across different sources. It modifies the transparency scale based on the range of values present in the data, ensuring that the visualization accurately reflects variations within the data. } \examples{ # Assuming 'data' is a DataFrame with a 'value' column plot_data <- data.frame(value = c(10, 20, 30, 40, 50)) ggplot2::ggplot(plot_data, ggplot2::aes(x = 1:nrow(plot_data), y = value)) + ggplot2::geom_point(ggplot2::aes(alpha = value)) + adjust_alpha_scale(plot_data, "Transparency Scale") } ================================================ FILE: man/adjust_color_tone.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/EnrichmentSpiralize.R \name{adjust_color_tone} \alias{adjust_color_tone} \title{Adjust Color Tone by Modifying Saturation and Luminance} \usage{ adjust_color_tone(color, saturation_scale, luminance_scale) } \arguments{ \item{color}{A color in hexadecimal format (e.g., "#FF0000") or a valid R color name.} \item{saturation_scale}{Numeric, the scaling factor for saturation (values < 1 decrease saturation, values > 1 increase saturation).} \item{luminance_scale}{Numeric, the scaling factor for luminance (values < 1 darken the color, values > 1 lighten the color).} } \value{ Returns a color in hexadecimal format adjusted according to the provided scales. } \description{ This function adjusts the saturation and luminance of a given color. It works by converting the color from RGB to Luv color space, applying the scaling factors to the saturation and luminance, and then converting it back to RGB. } \examples{ adjusted_color <- adjust_color_tone("#FF0000", saturation_scale = 0.8, luminance_scale = 1.2) print(adjusted_color) } ================================================ FILE: man/adjust_export_pathway.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/EnrichCirclize.R \name{adjust_export_pathway} \alias{adjust_export_pathway} \title{Adjust and Export Pathway Analysis Results} \usage{ adjust_export_pathway(fgseaRes, nTop = 10) } \arguments{ \item{fgseaRes}{Dataframe containing fgsea results with columns 'pathway', 'ES', and 'pval'.} \item{nTop}{Integer, number of top pathways to select based on the p-value.} } \value{ A vector containing combined top upregulated and downregulated pathways. } \description{ This function processes a dataframe containing fgsea results. It adjusts pathway names by removing underscores, converting to lowercase, then capitalizing the first letter, and joining the components with spaces. It selects and merges the top upregulated and downregulated pathways based on enrichment score (ES) and p-value. } \examples{ # Create a synthetic fgseaRes dataframe fgseaRes <- data.frame( pathway = c("KEGG_APOPTOSIS", "GO_CELL_CYCLE", "REACTOME_DNA_REPAIR", "KEGG_METABOLISM", "GO_TRANSPORT"), ES = c(0.45, -0.22, 0.56, -0.35, 0.33), pval = c(0.001, 0.02, 0.0003, 0.05, 0.01) ) # Run the function to get top pathways result <- adjust_export_pathway(fgseaRes = fgseaRes, nTop = 2) } ================================================ FILE: man/all_degs_venn.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/data.R \docType{data} \name{all_degs_venn} \alias{all_degs_venn} \title{All DEGs Venn Diagram Data} \format{ A list with the following components: \describe{ \item{DESeq2}{A vector of gene IDs or gene symbols identified as DEGs by the DESeq2 method.} \item{edgeR}{A vector of gene IDs or gene symbols identified as DEGs by the edgeR method.} \item{limma}{A vector of gene IDs or gene symbols identified as DEGs by the limma method. } \item{Wilcoxon_test}{A vector of gene IDs or gene symbols identified as DEGs by the Wilcoxon test method. } } } \source{ The data was derived from differential expression analyses performed on a gene expression dataset using four commonly used statistical methods (DESeq2, edgeR, limma, and Wilcoxon test). } \usage{ data(all_degs_venn) } \description{ A dataset containing the differentially expressed genes (DEGs) from four different statistical analysis methods: DESeq2, edgeR, limma, and Wilcoxon test. This dataset is used for generating Venn diagrams to compare the overlap of DEGs identified by different methods. } \examples{ data(all_degs_venn) # Example of plotting a Venn diagram using the dataset edge_colors <- c("#1b62bb","#13822e","#332c3a","#9e2d39") name_color <- c("#1b64bb","#13828e","#337c3a","#9e9d39") fill_colors <- c("#e3f2fa", "#0288d1") Contrast_degs_venn <- Contrast_Venn(all_degs_venn, edge_colors, name_color, fill_colors) } \keyword{datasets} ================================================ FILE: man/circos_fruits.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/CircosFruits.R \name{circos_fruits} \alias{circos_fruits} \title{Add multiple layers to a `ggtree` plot for visualizing gene expression and enrichment data} \usage{ circos_fruits( p, long_format_HeatdataDeseq, ssgsea_kegg_HeatdataDeseq, gsva_kegg_HeatdataDeseq, gene_colors ) } \arguments{ \item{p}{A `ggtree` plot object to which the data and layers will be added.} \item{long_format_HeatdataDeseq}{A data frame containing gene expression data with columns for `Samples`, `Genes`, and `Values`.} \item{ssgsea_kegg_HeatdataDeseq}{A data frame containing SSGSEA analysis results with columns for `Samples`, `Genes`, and `Values`.} \item{gsva_kegg_HeatdataDeseq}{A data frame containing GSVA analysis results with columns for `Samples`, `Genes`, and `Values`.} \item{gene_colors}{A named vector of colors for genes, used for coloring tiles in different layers.} } \value{ A `ggtree` plot object with multiple layers added for comprehensive visualization. } \description{ This function sequentially adds multiple layers to a `ggtree` plot, including gene expression data, boxplots for statistical summaries, and additional tile layers for pathway enrichment scores from SSGSEA and GSVA analyses. It utilizes separate functions for adding each type of layer and allows for the specification of gene colors as well as adjustments in aesthetics for each layer. The function is designed to work with specific data structures and assumes all functions for adding layers are defined and available. } \examples{ \donttest{ # Check and load required packages if (requireNamespace("ggtreeExtra", quietly = TRUE) && requireNamespace("ggplot2", quietly = TRUE)) { library(ggtreeExtra) library(ggplot2) # Example data for gene expression, SSGSEA, and GSVA file_path <- system.file("extdata", "p_tree_test.rds", package = "TransProR") p <- readRDS(file_path) # Create gene expression data frame (long_format_HeatdataDeseq) long_format_HeatdataDeseq <- data.frame( Sample = rep(c("Species_A", "Species_B", "Species_C", "Species_D"), each = 5), Genes = rep(paste0("Gene", 1:5), times = 4), Value = runif(20, min = 0, max = 1) # Randomly generate expression values between 0 and 1 ) # Create SSGSEA analysis results data frame (ssgsea_kegg_HeatdataDeseq) ssgsea_kegg_HeatdataDeseq <- data.frame( Sample = rep(c("Species_A", "Species_B", "Species_C", "Species_D"), each = 3), Genes = rep(c("Pathway1", "Pathway2", "Pathway3"), times = 4), Value = runif(12, min = 0, max = 1) # Randomly generate enrichment scores between 0 and 1 ) # Create GSVA analysis results data frame (gsva_kegg_HeatdataDeseq) gsva_kegg_HeatdataDeseq <- data.frame( Sample = rep(c("Species_A", "Species_B", "Species_C", "Species_D"), each = 4), Genes = rep(c("PathwayA", "PathwayB", "PathwayC", "PathwayD"), times = 4), Value = runif(16, min = 0, max = 1) # Randomly generate enrichment scores between 0 and 1 ) # Define gene and pathway colors (named vector), including all genes and pathways gene_colors <- c( # Genes for gene expression Gene1 = "#491588", Gene2 = "#301b8d", Gene3 = "#1a237a", Gene4 = "#11479c", Gene5 = "#0a5797", # Pathways for SSGSEA Pathway1 = "#0b5f63", Pathway2 = "#074d41", Pathway3 = "#1f5e27", # Pathways for GSVA PathwayA = "#366928", PathwayB = "#827729", PathwayC = "#a1d99b", PathwayD = "#c7e9c0" ) # Call circos_fruits function to add multiple layers final_plot <- circos_fruits( p, long_format_HeatdataDeseq, ssgsea_kegg_HeatdataDeseq, gsva_kegg_HeatdataDeseq, gene_colors ) } else { message("Required packages 'ggtreeExtra' and 'ggplot2' are not installed.") } } } ================================================ FILE: man/combat_tumor.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/CombatTumor.R \name{combat_tumor} \alias{combat_tumor} \title{Process and Correct Batch Effects in Tumor Data} \usage{ combat_tumor( tumor_data_path, CombatTumor_output_path, auto_mode = FALSE, default_input = "01,06" ) } \arguments{ \item{tumor_data_path}{The path to the tumor data stored in an RDS file.} \item{CombatTumor_output_path}{A character string specifying the path where the output RDS file will be saved.} \item{auto_mode}{Logical. If set to TRUE, the function will not prompt the user for input and will instead use the values provided in default_input. Default is FALSE.} \item{default_input}{Character string. When auto_mode is TRUE, this parameter specifies the default tumor types to be retained. It should be provided as a comma-separated string (e.g., "01,06").} } \value{ A data.frame with corrected values after the ComBat_seq adjustment. Note that this function also saves the combat_count_df data as an RDS file at the specified output path. } \description{ The function first extracts histological types from the provided tumor data set. After displaying these types, the user is prompted to input specific types to retain. The data is then filtered based on this input. Note: This example assumes that different tumor types represent different batches in a general sense. Users need to adjust the batch and group vectors based on real-life scenarios. } \details{ This function takes a tumor data set, asks the user for specific tumor types to retain, and then corrects for batch effects using the ComBat_seq function from the 'sva' package. The ComBat_seq function from the sva package is used to correct batch effects. The function requires the 'sva' package to be installed and loaded externally. } \examples{ tumor_file <- system.file("extdata", "SKCM_Skin_TCGA_exp_tumor_test.rds", package = "TransProR") output_file <- file.path(tempdir(), "SKCM_combat_count.rds") SKCM_combat_count <- combat_tumor( tumor_data_path = tumor_file, CombatTumor_output_path = output_file, auto_mode = TRUE, default_input = "01,06" ) head(SKCM_combat_count)[1:5, 1:5] } \seealso{ \code{\link[sva]{ComBat_seq}} } ================================================ FILE: man/compare_merge.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/CompareMerge.R \name{compare_merge} \alias{compare_merge} \title{Compare and merge specific columns from two DEG data frames} \usage{ compare_merge(df1, df2, by_gene, compare_col, suffixes, df_name) } \arguments{ \item{df1}{First data frame.} \item{df2}{Second data frame.} \item{by_gene}{Column name by which to join the data frames, typically "Gene".} \item{compare_col}{Column to compare for identity, which will also be the name of the merged column.} \item{suffixes}{Suffixes to use for non-identical column names in the joined data frame.} \item{df_name}{Name to assign to the resulting data frame for identification.} } \value{ A data frame with processed columns. } \description{ This function takes two DEG data frames, inner joins them by a specified gene column, checks if a specified column is identical across both data frames, and merges them if they are. The resulting data frame will have a merged column named after the compared column. } \examples{ # Create simulated DESeq2 data DEG_deseq2 <- data.frame( Gene = c("Gene1", "Gene2", "Gene3", "Gene4", "Gene5"), change = c("up", "down", "no_change", "up", "down"), log2FoldChange = c(2.5, -3.2, 0.1, 1.8, -2.5), pvalue = c(0.01, 0.05, 0.9, 0.02, 0.03) ) # Display the first 5 rows of the DESeq2 data head(DEG_deseq2, 5) # Create simulated edgeR data DEG_edgeR <- data.frame( Gene = c("Gene1", "Gene2", "Gene3", "Gene4", "Gene5"), change = c("up", "down", "no_change", "no_change", "up"), log2FoldChange = c(2.3, -3.1, 0.2, 0.1, 2.7), pvalue = c(0.02, 0.04, 0.8, 0.6, 0.01) ) # Display the first 5 rows of the edgeR data head(DEG_edgeR, 5) # Merge the DESeq2 and edgeR data deseq2_edgeR <- compare_merge( df1 = DEG_deseq2, df2 = DEG_edgeR, by_gene = "Gene", compare_col = "change", suffixes = c("_1", "_2"), df_name = "deseq2_edgeR" ) } ================================================ FILE: man/create_base_plot.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/CircosFruits.R \name{create_base_plot} \alias{create_base_plot} \title{Create a base plot with gene expression data on a phylogenetic tree} \usage{ create_base_plot(p, data, gene_colors, gene_label = "Gene") } \arguments{ \item{p}{A ggtree plot object to which the data will be added.} \item{data}{A data frame containing gene expression data with columns for Samples, Genes, and Values.} \item{gene_colors}{A named vector of colors for genes.} \item{gene_label}{A character string used as a label in the legend for the genes. Default is "Gene".} } \value{ A `ggtree` plot object with the gene expression data added. } \description{ This function creates a base plot using 'ggtree' and 'ggtreeExtra' libraries, adding gene expression data as colored tiles to the plot. It allows for dynamic coloring of the genes and includes adjustments for alpha transparency based on the expression value. } \examples{ \donttest{ # Check and load required packages if (requireNamespace("ggtreeExtra", quietly = TRUE) && requireNamespace("ggplot2", quietly = TRUE)) { library(ggtreeExtra) library(ggplot2) file_path <- system.file("extdata", "p_tree_test.rds", package = "TransProR") p <- readRDS(file_path) # Create gene expression data frame expression_data <- data.frame( Sample = rep(c("Species_A", "Species_B", "Species_C", "Species_D"), each = 5), Gene = rep(paste0("Gene", 1:5), times = 4), Value = runif(20, min = 0, max = 1) # Randomly generate expression values between 0 and 1 ) # Define gene colors (named vector) gene_colors <- c( Gene1 = "#491588", Gene2 = "#301b8d", Gene3 = "#1a237a", Gene4 = "#11479c", Gene5 = "#0a5797" ) # Call create_base_plot function to add gene expression data p <- create_base_plot(p, expression_data, gene_colors) } else { message("Required packages 'ggtreeExtra' and 'ggplot2' are not installed.") } } } ================================================ FILE: man/deg_filter.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/FourDegsVenn.R \name{deg_filter} \alias{deg_filter} \title{Function to Filter Differentially Expressed Genes (DEGs)} \usage{ deg_filter(df) } \arguments{ \item{df}{A data frame containing gene expression data.} } \value{ A vector of gene names that are differentially expressed. } \description{ This function filters out genes based on their expression change status. It returns the names of genes which are not "stable". } \examples{ DEG_deseq2_file <- system.file("extdata", "DEG_deseq2.rds", package = "TransProR") DEG_deseq2 <- readRDS(DEG_deseq2_file) DEG_deseq2_test <- deg_filter(DEG_deseq2) } ================================================ FILE: man/drawLegends.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/EnrichCirclize.R \name{drawLegends} \alias{drawLegends} \title{Draw Dual-Sided Legends on a Plot} \usage{ drawLegends( labels, colors, legend_width, x_positions, y_position, just_positions, text_alignments, font_size ) } \arguments{ \item{labels}{Vector of labels for the legends.} \item{colors}{Vector of colors corresponding to the labels.} \item{legend_width}{The width of each legend viewport expressed in grid units.} \item{x_positions}{Numeric vector of length 2 specifying the x-positions of the left and right legends.} \item{y_position}{The y-position common for both legends, expressed as a fraction of the plot height.} \item{just_positions}{List of two vectors, each specifying the horizontal and vertical justification for the legends.} \item{text_alignments}{List of two character strings specifying text alignments for the legends ('left' or 'right').} \item{font_size}{Numeric value specifying the font size for the legend labels.} } \value{ Invisible. This function is called for its side effects of drawing legends on a plot. } \description{ This function creates two sets of legends, one on the left and one on the right side of a plot. It displays color-coded legends with labels corresponding to different data categories. Each legend entry consists of a colored rectangle and a text label. The left side legend has text aligned to the right of the color block, while the right side legend has text aligned to the left of the color block. } \examples{ labels <- c("Label1", "Label2", "Label3", "Label4", "Label5", "Label6") colors <- c("#ff0000", "#00ff00", "#0000ff", "#ffff00", "#ff00ff", "#00ffff") # Convert to 'unit' objects for grid grid::grid.roundrect( x = grid::unit(0.5, "npc"), # "npc" stands for normalized parent coordinates y = grid::unit(0.5, "npc"), width = grid::unit(0.1, "npc"), height = grid::unit(0.05, "npc"), gp = grid::gpar(fill = "red"), r = grid::unit(0.1, "npc") # rounding radius ) # Example of drawing legends with specific labels and colors drawLegends(labels, colors, grid::unit(2, "cm"), c(0.225, 0.75), 0.5, list(c("left", "center"), c("right", "center")), list("right", "left"), 10) } ================================================ FILE: man/edgeR_analyze.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/EdgeRAnalyze.R \name{edgeR_analyze} \alias{edgeR_analyze} \title{Differential Gene Expression Analysis using 'edgeR'} \usage{ edgeR_analyze( tumor_file, normal_file, output_file, logFC_threshold = 2.5, p_value_threshold = 0.01 ) } \arguments{ \item{tumor_file}{Path to the tumor data file (RDS format).} \item{normal_file}{Path to the normal data file (RDS format).} \item{output_file}{Path to save the output DEG data (RDS format).} \item{logFC_threshold}{Threshold for log fold change for marking up/down-regulated genes.} \item{p_value_threshold}{Threshold for p-value for filtering significant genes.} } \value{ A data frame of differential expression results. } \description{ This function performs differential gene expression analysis using the 'edgeR' package. It reads tumor and normal expression data, merges them, filters low-expressed genes, normalizes the data, performs edgeR analysis, and outputs the results along with information on gene expression changes. } \examples{ # Define file paths for tumor and normal data from the data folder tumor_file <- system.file("extdata", "removebatch_SKCM_Skin_TCGA_exp_tumor_test.rds", package = "TransProR") normal_file <- system.file("extdata", "removebatch_SKCM_Skin_Normal_TCGA_GTEX_count_test.rds", package = "TransProR") output_file <- file.path(tempdir(), "DEG_edgeR.rds") DEG_edgeR <- edgeR_analyze( tumor_file = tumor_file, normal_file = normal_file, output_file = output_file, 2.5, 0.01 ) # View the top 5 rows of the result head(DEG_edgeR, 5) } \references{ edgeR: Differential analysis of sequence read count data. For more information, visit the edgeR Bioconductor page: https://www.bioconductor.org/packages/release/bioc/vignettes/edgeR/inst/doc/edgeRUsersGuide.pdf } ================================================ FILE: man/enrich_circo_bar.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/EnrichCircoBar.R \name{enrich_circo_bar} \alias{enrich_circo_bar} \title{Combine and Visualize Data with Circular Bar Chart} \usage{ enrich_circo_bar(data_list) } \arguments{ \item{data_list}{A list of data frames to be combined.} } \value{ A `ggplot` object representing the Circular Bar Chart. } \description{ This function combines multiple data frames, arranges them, and visualizes the combined data in a Circular Bar Chart using the 'ggplot2' and 'ggalluvial' packages. } \examples{ # Create sample data frames for each enrichment category # 1. Biological Process (BP) filtered_data_BP <- data.frame( Description = c( "immune response", "cell proliferation", "signal transduction", "apoptotic process", "metabolic process" ), Count = c(120, 85, 150, 60, 95), color = c( "#1f77b4", # blue "#ff7f0e", # orange "#2ca02c", # green "#d62728", # red "#9467bd" # purple ), stringsAsFactors = FALSE ) # 2. Cellular Component (CC) filtered_data_CC <- data.frame( Description = c( "nucleus", "cytoplasm", "membrane", "mitochondrion", "extracellular space" ), Count = c(90, 110, 75, 65, 80), color = c( "#1f77b4", "#ff7f0e", "#2ca02c", "#d62728", "#9467bd" ), stringsAsFactors = FALSE ) # 3. Molecular Function (MF) filtered_data_MF <- data.frame( Description = c( "protein binding", "DNA binding", "enzyme activity", "transporter activity", "receptor activity" ), Count = c(140, 130, 100, 70, 90), color = c( "#1f77b4", "#ff7f0e", "#2ca02c", "#d62728", "#9467bd" ), stringsAsFactors = FALSE ) # 4. Disease Ontology (DO) filtered_data_DO <- data.frame( Description = c( "cancer", "cardiovascular disease", "neurological disorder", "metabolic disease", "infectious disease" ), Count = c(200, 150, 120, 90, 160), color = c( "#1f77b4", "#ff7f0e", "#2ca02c", "#d62728", "#9467bd" ), stringsAsFactors = FALSE ) # 5. Reactome Pathways filtered_data_Reactome <- data.frame( Description = c( "Cell Cycle", "Apoptosis", "DNA Repair", "Signal Transduction", "Metabolism of Proteins" ), Count = c(110, 95, 80, 130, 85), color = c( "#1f77b4", "#ff7f0e", "#2ca02c", "#d62728", "#9467bd" ), stringsAsFactors = FALSE ) # 6. KEGG Pathways filtered_data_kegg <- data.frame( Description = c( "PI3K-Akt signaling pathway", "MAPK signaling pathway", "NF-kappa B signaling pathway", "JAK-STAT signaling pathway", "Toll-like receptor signaling pathway" ), Count = c(175, 160, 145, 130, 155), color = c( "#1f77b4", "#ff7f0e", "#2ca02c", "#d62728", "#9467bd" ), stringsAsFactors = FALSE ) # Combine all filtered data frames into a list data_list <- list( BP = filtered_data_BP, CC = filtered_data_CC, MF = filtered_data_MF, DO = filtered_data_DO, Reactome = filtered_data_Reactome, KEGG = filtered_data_kegg ) # Create the Circular Bar Chart combined_and_visualized_data <- enrich_circo_bar(data_list) } ================================================ FILE: man/enrich_polar_bubble.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/EnrichPolarBubble.R \name{enrich_polar_bubble} \alias{enrich_polar_bubble} \title{Enrichment Polar Bubble Plot} \usage{ enrich_polar_bubble(final_combined_df_with_id_and_position, pal, highlight_ids) } \arguments{ \item{final_combined_df_with_id_and_position}{A data frame containing 'id', 'Count', 'method', 'Description', 'point_position', 'test_color'.} \item{pal}{A named vector of colors corresponding to the 'method' values.} \item{highlight_ids}{A vector of IDs to highlight.} } \value{ A `ggplot` object representing the enriched polar bubble plot. } \description{ This function creates a polar bubble plot using 'ggplot2'. It is designed to visually represent data with methods and positional metrics integrated, highlighting specific IDs if necessary. } \examples{ final_df <- data.frame(id = 1:10, Count = c(10, 20, 30, 40, 50, 60, 70, 80, 90, 100), method = rep("Method1", 10), Description = LETTERS[1:10], point_position = seq(10, 100, 10), test_color = sample(c("red", "blue"), 10, replace = TRUE)) pal <- c("Method1" = "blue") highlight_ids <- c(1, 5, 9) enrich_polar_bubble(final_df, pal, highlight_ids) } ================================================ FILE: man/enrichment_circlize.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/EnrichCirclize.R \name{enrichment_circlize} \alias{enrichment_circlize} \title{Draw Chord Diagram with Legends} \usage{ enrichment_circlize( all_combined_df, original_colors, labels, colors, labels2, colors2, font_size = 10 ) } \arguments{ \item{all_combined_df}{A dataframe containing the matrix for the chord diagram.} \item{original_colors}{A vector of colors for the grid columns of the chord diagram.} \item{labels}{A vector of labels for the first legend.} \item{colors}{A vector of colors corresponding to the first legend's labels.} \item{labels2}{A vector of labels for the second legend.} \item{colors2}{A vector of colors corresponding to the second legend's labels.} \item{font_size}{The font size used for legend texts, defaults to 10.} } \value{ Invisible, primarily used for its side effects of drawing on a graphics device. } \description{ This function creates a chord diagram from a specified dataframe and draws two sets of legends for it. It adjusts the track height of the chord diagram to optimize space and uses specified colors for the grid. Legends are drawn at specified positions with configurable text alignments and font sizes. } \examples{ # Sample Chord Diagram Matrix all_combined_df <- data.frame( A = c(10, 20, 30), B = c(15, 25, 35), C = c(5, 10, 15) ) rownames(all_combined_df) <- c("A", "B", "C") # Colors for the grid of the chord diagram (corresponding to columns of the matrix) original_colors <- c("red", "green", "blue") # Name the colors according to the sectors (A, B, C) names(original_colors) <- colnames(all_combined_df) # Labels and Colors for the First Legend labels <- c("Label 1", "Label 2", "Label 3") colors <- c("yellow", "purple", "cyan") # Labels and Colors for the Second Legend labels2 <- c("Label A", "Label B", "Label C") colors2 <- c("orange", "pink", "brown") # Font size for the legend texts (optional, default is 10) font_size <- 10 # Call the enrichment_circlize function with the sample data # This is just an example; the plot will be rendered in an appropriate graphics context # such as RStudio's plot pane or an external plotting window. plot1 <- enrichment_circlize(all_combined_df, original_colors, labels, colors, labels2, colors2, font_size ) } ================================================ FILE: man/enrichment_spiral_plots.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/EnrichmentSpiralize.R \name{enrichment_spiral_plots} \alias{enrichment_spiral_plots} \title{Create Spiral Plots with Legends Using 'spiralize' and 'ComplexHeatmap'} \usage{ enrichment_spiral_plots(results) } \arguments{ \item{results}{A data frame containing 'Pathway', 'Sample', 'Value', 'PathwayColor', and 'SampleColor' columns.} } \value{ No return value, called for side effects. This function generates spiral plots and adds legends based on sample and pathway information. } \description{ This function initializes a spiral plot, adds tracks for pathways and samples, and generates legends based on the sample and pathway information in the provided data frame. It uses 'spiralize' for the spiral plot and 'ComplexHeatmap' for handling legends. } \examples{ # Example: Creating enrichment spiral plots with legends # Define the results data frame results <- data.frame( Pathway = c("Pathway1", "Pathway1", "Pathway2", "Pathway2", "Pathway3"), Sample = c("Sample1", "Sample1", "Sample2", "Sample2", "Sample3"), Value = c(20, 30, 15, 35, 25), PathwayColor = c("red", "red", "blue", "blue", "orange"), SampleColor = c("green", "green", "purple", "purple", "cyan"), stringsAsFactors = FALSE ) # Create the enrichment spiral plots with legends enrichment_spiral_plots(results) } ================================================ FILE: man/extract_descriptions_counts.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/EnrichCircoBar.R \name{extract_descriptions_counts} \alias{extract_descriptions_counts} \title{Extract and Count Descriptions with Specified Color} \usage{ extract_descriptions_counts(df, descriptions, color) } \arguments{ \item{df}{A data frame containing at least 'Description' and 'Count' columns.} \item{descriptions}{A vector of descriptions to filter in the data frame.} \item{color}{A character string specifying the color to be added as a new column.} } \value{ A data frame filtered by descriptions, containing 'Description', 'Count', and a new 'color' column. } \description{ This function filters a data frame for specified descriptions, selects the 'Description' and 'Count' columns, and adds a new column with a specified color. } \examples{ # Generate Sample Input Data for extract_descriptions_counts Function # Create a sample data frame with 'Description' and 'Count' columns data <- data.frame( Description = c( "immunoglobulin production", "B cell mediated immunity", "T cell activation", "antigen processing and presentation", "cytokine signaling", "natural killer cell activity", "phagocytosis", "complement activation", "antibody-dependent cellular cytotoxicity", "regulatory T cell function" ), Count = c( 150, # immunoglobulin production 200, # B cell mediated immunity 175, # T cell activation 125, # antigen processing and presentation 190, # cytokine signaling 160, # natural killer cell activity 140, # phagocytosis 180, # complement activation 130, # antibody-dependent cellular cytotoxicity 170 # regulatory T cell function ), stringsAsFactors = FALSE # Ensure that strings are not converted to factors ) descriptions_to_filter <- c("immunoglobulin production", "B cell mediated immunity") specified_color <- "red" # You can specify any color you desire filtered_data_with_color <- extract_descriptions_counts( data, descriptions_to_filter, specified_color) print(filtered_data_with_color) } ================================================ FILE: man/extract_ntop_pathways.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/EnrichmentSpiralize.R \name{extract_ntop_pathways} \alias{extract_ntop_pathways} \title{Extract and Store Top Pathways for Each Sample} \usage{ extract_ntop_pathways(ssgsea_kegg, nTop = 5) } \arguments{ \item{ssgsea_kegg}{Dataframe containing SSGSEA KEGG results with samples as columns and pathways as rows.} \item{nTop}{Integer, number of top pathways to select for each sample.} } \value{ A dataframe with columns 'Pathway', 'Sample', and 'Value' representing the top pathways for each sample. } \description{ This function processes a dataframe containing SSGSEA KEGG results. It allows specifying the number of top pathways to extract for each sample based on their scores, and stores these in a new dataframe with sample names and pathway scores. } \examples{ # Example: Generating input data for the extract_ntop_pathways function # Define example pathways pathways <- c("Pathway_A", "Pathway_B", "Pathway_C", "Pathway_D", "Pathway_E", "Pathway_F", "Pathway_G", "Pathway_H", "Pathway_I", "Pathway_J") # Define example samples samples <- c("Sample_1", "Sample_2", "Sample_3") # Generate random SSGSEA KEGG scores between 0 and 1 set.seed(123) # For reproducibility ssgsea_scores <- matrix(runif(length(pathways) * length(samples), min = 0, max = 1), nrow = length(pathways), ncol = length(samples), dimnames = list(pathways, samples)) # Convert to a data frame ssgsea_kegg <- as.data.frame(ssgsea_scores) # Extract the top 3 pathways for each sample top_pathways <- extract_ntop_pathways(ssgsea_kegg, nTop = 3) } ================================================ FILE: man/extract_positive_pathways.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/EnrichmentSpiralize.R \name{extract_positive_pathways} \alias{extract_positive_pathways} \title{Extract Positive Pathways from SSGSEA Results and Select Random Samples} \usage{ extract_positive_pathways(ssgsea_kegg, max_paths_per_sample = 5) } \arguments{ \item{ssgsea_kegg}{A matrix or data frame with pathways as rows and samples as columns.} \item{max_paths_per_sample}{Integer, maximum number of pathways to select per sample.} } \value{ A data frame with selected pathways, samples, and their corresponding values. } \description{ This function processes the results of SSGSEA, specifically focusing on KEGG pathways. It extracts pathways with positive values from each sample and randomly selects a subset of them. } \examples{ # Example: Generating input data for the extract_positive_pathways function # Define example pathways pathways <- c("Pathway_1", "Pathway_2", "Pathway_3", "Pathway_4", "Pathway_5", "Pathway_6", "Pathway_7", "Pathway_8", "Pathway_9", "Pathway_10") # Define example samples samples <- c("Sample_A", "Sample_B", "Sample_C") # Generate random SSGSEA KEGG scores including both positive and negative values set.seed(456) # For reproducibility ssgsea_scores <- matrix(rnorm(length(pathways) * length(samples), mean = 0, sd = 1), nrow = length(pathways), ncol = length(samples), dimnames = list(pathways, samples)) # Convert to a data frame ssgsea_kegg <- as.data.frame(ssgsea_scores) # Use the extract_positive_pathways function to extract up to 3 positive pathways per sample selected_positive_pathways <- extract_positive_pathways(ssgsea_kegg, max_paths_per_sample = 3) } ================================================ FILE: man/facet_density_foldchange.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/FacetDensityFoldchange.R \name{facet_density_foldchange} \alias{facet_density_foldchange} \title{Create faceted high-density region plots with optional points and density contours} \usage{ facet_density_foldchange( data, x_var, y_var, group_var, facet_var, palette, show_points = FALSE, show_density = TRUE, point_size = 2.5, point_alpha = 0.1, line_size = 1.6, cor_method = "pearson", cor_label_pos = c("left", 0.97), cor_vjust = NULL ) } \arguments{ \item{data}{Data frame containing variables for plotting.} \item{x_var}{Name of the x-axis variable as a string.} \item{y_var}{Name of the y-axis variable as a string.} \item{group_var}{Name of the grouping variable for color mapping as a string.} \item{facet_var}{Name of the faceting variable.} \item{palette}{Color palette for the plot as a character vector.} \item{show_points}{Logical, if TRUE adds scatter points to the plot.} \item{show_density}{Logical, if TRUE adds filled density contours to the plot.} \item{point_size}{Size of the points, relevant if show_points is TRUE.} \item{point_alpha}{Transparency level of the points, relevant if show_points is TRUE.} \item{line_size}{Size of the regression line.} \item{cor_method}{Method to calculate correlation ("pearson" or "spearman").} \item{cor_label_pos}{Vector of length 2 indicating the position of the correlation label (x and y).} \item{cor_vjust}{Vertical justification for correlation label, default is NULL.} } \value{ A `ggplot` object representing the high-density region plot. } \description{ This function creates faceted high-density region plots using ggdensity for adding optional density rug and density contours, and scatter points. It also adds a regression line and Pearson correlation label. The plot is faceted by a grouping variable. } \examples{ combined_df_file <- system.file("extdata", "combined_df.rds", package = "TransProR") combined_df <- readRDS(combined_df_file) pal2 = c("#2787e0","#1a9ae0","#1dabbf","#00897b","#43a047","#7cb342") all_facet_density_foldchange_name1 <- facet_density_foldchange( data = combined_df, x_var = "log2FoldChange_1", y_var = "log2FoldChange_2", group_var = "name", facet_var = "name", palette = pal2, show_points = TRUE, show_density = FALSE, point_size = 2, point_alpha = 0.1, line_size = 1.6, cor_method = "pearson", cor_label_pos = c("left", "top"), cor_vjust = 1 ) } ================================================ FILE: man/filter_diff_genes.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/FilterDiffGenes.R \name{filter_diff_genes} \alias{filter_diff_genes} \title{Filter Differentially Expressed Genes} \usage{ filter_diff_genes( data, p_val_col = "adj.P.Val", log_fc_col = "logFC", p_val_threshold = 0.05, log_fc_threshold = 1 ) } \arguments{ \item{data}{A data frame containing gene expression data.} \item{p_val_col}{Character string indicating the column name for p-values. Default is "adj.P.Val".} \item{log_fc_col}{Character string indicating the column name for log fold change. Default is "logFC".} \item{p_val_threshold}{Numeric threshold for filtering p-values. Default is 0.05.} \item{log_fc_threshold}{Numeric threshold for filtering log fold change. Default is 1.0.} } \value{ A data frame with genes filtered by the specified criteria. } \description{ This function filters a data frame to identify genes with significant differential expression based on specified thresholds for p-values and log fold change. It allows for flexible input of column names for p-values and log fold change. } \examples{ # Create a sample data frame with p-values and log fold changes sample_data <- data.frame( adj.P.Val = c(0.03, 0.06, 0.02, 0.07), logFC = c(1.5, 0.8, -1.2, 1.1), gene = c("Gene1", "Gene2", "Gene3", "Gene4") ) # Use the filter_diff_genes function to filter significant genes filtered_genes <- filter_diff_genes(sample_data) print(filtered_genes) } ================================================ FILE: man/four_degs_venn.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/FourDegsVenn.R \name{four_degs_venn} \alias{four_degs_venn} \title{Function to Create a Venn Diagram of DEGs} \usage{ four_degs_venn(degs_list) } \arguments{ \item{degs_list}{A list of DEG sets for Venn Diagram creation.} } \value{ A ggplot object representing the Venn Diagram. } \description{ This function creates a Venn Diagram using the ggVennDiagram package. It allows customization of various aesthetic elements of the diagram. } \examples{ data("all_degs_venn", package = "TransProR") four_degs_venn <- four_degs_venn(all_degs_venn) } ================================================ FILE: man/gather_graph_edge.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/GatherGraphEdge.R \name{gather_graph_edge} \alias{gather_graph_edge} \title{Gather graph edge from data frame Please note that this function is from the 'ggraph' package and has not been altered in functionality, but it has been optimized and iterated. It is not original content of 'TransProR'. However, since 'ggraph' caused frequent GitHub Action errors during the creation of 'TransProR', the author directly referenced the involved functions in 'TransProR'. This is not the author's original creation. All users please be aware!} \usage{ gather_graph_edge(df, index = NULL, root = NULL) } \arguments{ \item{df}{A data frame} \item{index}{A vector of column names to group by} \item{root}{Root name for the root node connections, optional} } \value{ A tibble of graph edges } \description{ Gather graph edge from data frame Please note that this function is from the 'ggraph' package and has not been altered in functionality, but it has been optimized and iterated. It is not original content of 'TransProR'. However, since 'ggraph' caused frequent GitHub Action errors during the creation of 'TransProR', the author directly referenced the involved functions in 'TransProR'. This is not the author's original creation. All users please be aware! } ================================================ FILE: man/gather_graph_node.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/GatherGraphNode.R \name{gather_graph_node} \alias{gather_graph_node} \title{Gather graph nodes from a data frame Please note that this function is from the 'ggraph' package and has not been altered in functionality, but it has been optimized and iterated. It is not original content of 'TransProR'. However, since 'ggraph' caused frequent GitHub Action errors during the creation of 'TransProR', the author directly referenced the involved functions in 'TransProR'. This is not the author's original creation. All users please be aware!} \usage{ gather_graph_node( df, index = NULL, value = utils::tail(colnames(df), 1), root = NULL ) } \arguments{ \item{df}{A data frame} \item{index}{A vector of column names to group by} \item{value}{Column name used for summarizing node size, defaults to the last column} \item{root}{Root name for the root node connections, optional} } \value{ a tibble of graph nodes } \description{ Gather graph nodes from a data frame Please note that this function is from the 'ggraph' package and has not been altered in functionality, but it has been optimized and iterated. It is not original content of 'TransProR'. However, since 'ggraph' caused frequent GitHub Action errors during the creation of 'TransProR', the author directly referenced the involved functions in 'TransProR'. This is not the author's original creation. All users please be aware! } ================================================ FILE: man/gene_color.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/GeneColor.R \name{gene_color} \alias{gene_color} \title{Merge Genes with Color Information Based on Up/Down Regulation} \usage{ gene_color(selected_genes, DEG_deseq2, up_color, down_color) } \arguments{ \item{selected_genes}{A data frame containing selected genes with a column named "Symble".} \item{DEG_deseq2}{A data frame containing differential expression data with a column named "Symble" and a column named "change" indicating up/down regulation.} \item{up_color}{The color to assign to genes with up-regulated expression.} \item{down_color}{The color to assign to genes with down-regulated expression.} } \value{ A data frame containing merged genes with an additional color column. } \description{ This function merges selected genes with differential expression data and adds a color column based on up/down regulation. } \examples{ selected_genes_deseq2_file <- system.file("extdata", "selected_genes_deseq2.rds", package = "TransProR") selected_genes_deseq2 <- readRDS(selected_genes_deseq2_file) Diff_deseq2_file <- system.file("extdata", "Diff_deseq2.rds", package = "TransProR") Diff_deseq2 <- readRDS(Diff_deseq2_file) result_deseq2 <- gene_color(selected_genes_deseq2, Diff_deseq2, "#0000EE", "#fc4746") } ================================================ FILE: man/gene_highlights.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/GeneHighlights.R \name{gene_highlights} \alias{gene_highlights} \title{Add gene highlights to a ggtree object} \usage{ gene_highlights(ggtree_obj, genes_to_highlight, hilight_extend = 18) } \arguments{ \item{ggtree_obj}{A ggtree object to which the highlights will be added.} \item{genes_to_highlight}{A data frame containing genes and their corresponding colors.} \item{hilight_extend}{Integer, the extension of the highlight fan in degrees.} } \value{ A ggtree object with added gene highlights. } \description{ This function enhances a `ggtree` plot by adding highlights for specific genes. It adds both a semi-transparent fan-shaped highlight and a point at the node corresponding to each gene. Colors for each gene can be customized. } \examples{ data("gtree", package = "TransProR") # Define genes and their colors genes_df <- data.frame(Symble = c("t5", "t9"), color = c("#FF0000", "#0000FF")) # Add highlights gtree <- gene_highlights(gtree, genes_to_highlight = genes_df) } ================================================ FILE: man/gene_map_pathway.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/GeneMapPathway.R \name{gene_map_pathway} \alias{gene_map_pathway} \title{Create Pathway-Gene Mapping Data Frame} \usage{ gene_map_pathway( BP_dataframe, BP_ids, KEGG_dataframe, KEGG_ids, MF_dataframe, MF_ids, REACTOME_dataframe, REACTOME_ids, CC_dataframe, CC_ids, DO_dataframe, DO_ids ) } \arguments{ \item{BP_dataframe}{Data frame for Biological Process analysis} \item{BP_ids}{Selected pathway IDs for Biological Process analysis} \item{KEGG_dataframe}{Data frame for KEGG analysis} \item{KEGG_ids}{Selected pathway IDs for KEGG analysis} \item{MF_dataframe}{Data frame for Molecular Function analysis} \item{MF_ids}{Selected pathway IDs for Molecular Function analysis} \item{REACTOME_dataframe}{Data frame for REACTOME analysis} \item{REACTOME_ids}{Selected pathway IDs for REACTOME analysis} \item{CC_dataframe}{Data frame for Cellular Component analysis} \item{CC_ids}{Selected pathway IDs for Cellular Component analysis} \item{DO_dataframe}{Data frame for Disease Ontology analysis} \item{DO_ids}{Selected pathway IDs for Disease Ontology analysis} } \value{ A new data frame that includes pathways, gene, type, and value columns } \description{ This function takes multiple data frames and pathway IDs, merging them into a new data frame. Each data frame represents a type of analysis (e.g., BP, KEGG, MF, etc.). } \examples{ # Simulating data for different analysis types # Simulate Biological Process (BP) data frame BP_df <- data.frame( ID = c("GO:0002376", "GO:0019724"), geneID = c("GENE1/GENE2", "GENE3/GENE4"), Description = c("Immune response", "Glycosylation process") ) # Simulate KEGG data frame KEGG_df <- data.frame( ID = c("12345", "67890"), geneID = c("GENE5/GENE6", "GENE7/GENE8"), Description = c("Pathway 1", "Pathway 2") ) # Simulate Molecular Function (MF) data frame MF_df <- data.frame( ID = c("ABC123", "DEF456"), geneID = c("GENE9/GENE10", "GENE11/GENE12"), Description = c("Molecular function A", "Molecular function B") ) # Simulate REACTOME data frame REACTOME_df <- data.frame( ID = c("R-HSA-12345", "R-HSA-67890"), geneID = c("GENE13/GENE14", "GENE15/GENE16"), Description = c("Pathway in Reactome 1", "Pathway in Reactome 2") ) # Simulate Cellular Component (CC) data frame CC_df <- data.frame( ID = c("GO:0005575", "GO:0005634"), geneID = c("GENE17/GENE18", "GENE19/GENE20"), Description = c("Cellular component A", "Cellular component B") ) # Simulate Disease Ontology (DO) data frame DO_df <- data.frame( ID = c("DOID:123", "DOID:456"), geneID = c("GENE21/GENE22", "GENE23/GENE24"), Description = c("Disease A", "Disease B") ) # Example pathway IDs for each analysis BP_ids <- c("GO:0002376", "GO:0019724") KEGG_ids <- c("12345", "67890") MF_ids <- c("ABC123", "DEF456") REACTOME_ids <- c("R-HSA-12345", "R-HSA-67890") CC_ids <- c("GO:0005575", "GO:0005634") DO_ids <- c("DOID:123", "DOID:456") # Generate the pathway-gene map using the gene_map_pathway function pathway_gene_map <- gene_map_pathway( BP_dataframe = BP_df, BP_ids = BP_ids, KEGG_dataframe = KEGG_df, KEGG_ids = KEGG_ids, MF_dataframe = MF_df, MF_ids = MF_ids, REACTOME_dataframe = REACTOME_df, REACTOME_ids = REACTOME_ids, CC_dataframe = CC_df, CC_ids = CC_ids, DO_dataframe = DO_df, DO_ids = DO_ids ) # Display the resulting pathway-gene mapping data frame print(pathway_gene_map) } ================================================ FILE: man/get_gtex_exp.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/GetGtexExp.R \name{get_gtex_exp} \alias{get_gtex_exp} \title{Get GTEx Expression Data for Specific Organ} \usage{ get_gtex_exp( organ_specific, file_path, probe_map_path, pheno_path, output_path ) } \arguments{ \item{organ_specific}{A character string specifying the organ to filter the gene expression data by.} \item{file_path}{A character string specifying the path to the GTEx gene expression data file.} \item{probe_map_path}{A character string specifying the path to the gtex_probeMap_gencode data file.} \item{pheno_path}{A character string specifying the path to the GTEx phenotype data file.} \item{output_path}{A character string specifying the path where the output RDS file will be saved.} } \value{ A data frame containing gene expression data for the specified organ. Rows represent genes, and columns represent samples. Note that this function also saves the organ-specific GTEx data as an RDS file at the specified output path. } \description{ This function retrieves gene expression data from the GTEx project that is specific to a certain organ. It performs various checks and processing steps to ensure that the data is consistent and relevant to the specified organ. The filtered and cleaned data is saved as an RDS file for further analysis. } \details{ The function begins by checking if the gene expression and phenotype data files exist at the specified paths. It then loads these data files and processes them by setting appropriate row names, modifying column names for clarity, and filtering samples based on the specified organ. The function ensures that only samples present in both datasets are retained for consistency. It also removes any duplicate gene entries to prevent redundancy. Finally, the processed data is saved as an RDS file. } \note{ The function will stop and throw an error if the input files do not exist, or if no samples are found for the specified organ. CRITICAL: The 'output_path' parameter must end with '.rds' to be properly recognized by the function. It is also highly recommended that the path includes specific identifiers related to the target samples. Please structure the 'output_path' following this pattern: './your_directory/your_sample_type.gtex.rds'. } ================================================ FILE: man/get_tcga_exp.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/GetTcgaExp.R \name{get_tcga_exp} \alias{get_tcga_exp} \title{TCGA Expression Data Processing} \usage{ get_tcga_exp( counts_file_path, gene_probes_file_path, phenotype_file_path, output_file_path ) } \arguments{ \item{counts_file_path}{File path to the counts data (usually in the form of a large matrix with gene expression data).} \item{gene_probes_file_path}{File path containing the gene probes data.} \item{phenotype_file_path}{File path to the phenotype data, which includes various sample attributes.} \item{output_file_path}{Path where the output files, distinguished between tumor and normal, will be saved.} } \value{ A list containing matrices for tumor and normal expression data. } \description{ This function processes expression data and phenotype information, separates tumor and normal samples, and saves the results into different files. It's specifically designed for data obtained from TCGA. } \note{ IMPORTANT: This function assumes that the input files follow a specific format and structure, typically found in TCGA data releases. Users should verify their data's compatibility. Additionally, the function does not perform error checking on the data's content, which users should handle through proper preprocessing. CRITICAL: The 'output_file_path' parameter must end with '.rds' to be properly recognized by the function. It is also highly recommended that the path includes specific identifiers related to the target samples, as the function will create further subdivisions in the specified path for tumor or normal tissues. Please structure the 'output_file_path' following this pattern: './your_directory/your_sample_type.exp.rds'. } \examples{ counts_file <- system.file("extdata", "TCGA-SKCM.htseq_counts_test.tsv", package = "TransProR") gene_probes_file <- system.file("extdata", "TCGA_gencode.v22.annotation.gene.probeMap_test", package = "TransProR") phenotype_file <- system.file("extdata", "TCGA-SKCM.GDC_phenotype_test.tsv", package = "TransProR") ouput_file <- file.path(tempdir(), "SKCM_Skin_TCGA_exp_test.rds") SKCM_exp <- get_tcga_exp( counts_file_path = counts_file, gene_probes_file_path = gene_probes_file, phenotype_file_path = phenotype_file, output_file_path = ouput_file ) head(SKCM_exp[["tumor_tcga_data"]])[1:5, 1:5] head(SKCM_exp[["normal_tcga_data"]], n = 10) # Because there is only one column. } \author{ Dongyue Yu } ================================================ FILE: man/gtree.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/data.R \docType{data} \name{gtree} \alias{gtree} \title{Phylogenetic Tree Object} \format{ A `ggtree` object. } \source{ The phylogenetic tree was constructed based on sequence alignment data obtained from [Data Source, e.g., NCBI database, specific study, etc.]. } \usage{ data(gtree) } \description{ A dataset containing a phylogenetic tree object created using the `ggtree` package. This tree represents the evolutionary relationships among a set of species or genes. } \keyword{datasets} \keyword{phylogenetics} ================================================ FILE: man/highlight_by_node.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/HighlightByNode.R \name{highlight_by_node} \alias{highlight_by_node} \title{Highlight Nodes in a Phylogenetic Tree with Custom Fill Colors and Transparency} \usage{ highlight_by_node( ggtree_object, nodes, fill_colors, alpha_values, extend_values ) } \arguments{ \item{ggtree_object}{A `ggtree` object representing the phylogenetic tree.} \item{nodes}{A character vector specifying the nodes to highlight.} \item{fill_colors}{A character vector specifying the fill colors for the highlighted nodes.} \item{alpha_values}{A numeric vector specifying the transparency values for the highlighted nodes (between 0 and 1).} \item{extend_values}{A logical vector specifying whether to extend the highlight to the whole clade below each node.} } \value{ A modified `ggtree` object with the specified nodes highlighted. } \description{ This function adds highlights to specific nodes in a phylogenetic tree represented by a `ggtree` object. Users can specify the nodes to highlight along with custom fill colors, transparency, and extension options. } \examples{ plot_file <- system.file("extdata", "tree_plot.rds", package = "TransProR") p2_plot <- readRDS(plot_file) # Please replace the following vectors with your specific values nodes <- c(117, 129, 125, 127, 119, 123, 139, 166, 124, 131, 217) # x-values of the nodes you want to highlight fill_colors <- c("#CD6600", "#CD6600", "#CD6600", "#CD6600", "#009933", "#009933", "#009933", "#009933", "#9B30FF", "#9B30FF", "#9B30FF") # Fill colors alpha_values <- c(0.3, 0.3, 0.3, 0.3, 0.2, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3) # Transparency values extend_values <- c(25, 24, 24, 25, 25, 25, 24, 24, 25, 24, 24) # Values for the 'extend' parameter p2 <- highlight_by_node( p2_plot, nodes, fill_colors, alpha_values, extend_values ) } ================================================ FILE: man/highlight_genes.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/HighlightGenes.R \name{highlight_genes} \alias{highlight_genes} \title{Add Highlights for Genes on a Phylogenetic Tree} \usage{ highlight_genes(ggtree_obj, genes_to_highlight, hilight_extend = 18) } \arguments{ \item{ggtree_obj}{A ggtree object representing the phylogenetic tree.} \item{genes_to_highlight}{A data frame containing gene names and corresponding colors to highlight.} \item{hilight_extend}{Numeric value indicating the extension length for highlights.} } \value{ A `ggtree` object with added highlights for specified genes. } \description{ This function adds highlights for specified genes on a phylogenetic tree object. } \examples{ plot_file <- system.file("extdata", "tree_plot.rds", package = "TransProR") p2_plot <- readRDS(plot_file) selected_genes_deseq2_file <- system.file("extdata", "selected_genes_deseq2.rds", package = "TransProR") selected_genes_deseq2 <- readRDS(selected_genes_deseq2_file) Diff_deseq2_file <- system.file("extdata", "Diff_deseq2.rds", package = "TransProR") Diff_deseq2 <- readRDS(Diff_deseq2_file) result_deseq2 <- gene_color(selected_genes_deseq2, Diff_deseq2, "#0000EE", "#fc4746") add_gene_highlights_p3 <- highlight_genes(p2_plot, result_deseq2, hilight_extend = 26) } ================================================ FILE: man/limma_analyze.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/LimmaAnalyze.R \name{limma_analyze} \alias{limma_analyze} \title{Differential Gene Expression Analysis using limma and voom} \usage{ limma_analyze( tumor_file, normal_file, output_file, logFC_threshold = 2.5, p_value_threshold = 0.01 ) } \arguments{ \item{tumor_file}{Path to the tumor data file (RDS format).} \item{normal_file}{Path to the normal data file (RDS format).} \item{output_file}{Path to save the output DEG data (RDS format).} \item{logFC_threshold}{Threshold for log fold change for marking up/down-regulated genes.} \item{p_value_threshold}{Threshold for p-value for filtering significant genes.} } \value{ A data frame of differential expression results. } \description{ This function performs differential gene expression analysis using the 'limma' package with voom normalization. It reads tumor and normal expression data, merges them, filters low-expressed genes, normalizes the data, performs limma analysis, and outputs the results along with information on gene expression changes. } \examples{ # Define file paths for tumor and normal data from the data folder tumor_file <- system.file("extdata", "removebatch_SKCM_Skin_TCGA_exp_tumor_test.rds", package = "TransProR") normal_file <- system.file("extdata", "removebatch_SKCM_Skin_Normal_TCGA_GTEX_count_test.rds", package = "TransProR") output_file <- file.path(tempdir(), "DEG_limma_voom.rds") DEG_limma_voom <- limma_analyze( tumor_file = tumor_file, normal_file = normal_file, output_file = output_file, logFC_threshold = 2.5, p_value_threshold = 0.01 ) # View the top 5 rows of the result head(DEG_limma_voom, 5) } \references{ limma:Linear Models for Microarray and RNA-Seq Data User’s Guide. For more information, visit the page: https://www.bioconductor.org/packages/release/bioc/vignettes/limma/inst/doc/usersguide.pdf } ================================================ FILE: man/log_transform.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/LogTransform.R \name{log_transform} \alias{log_transform} \title{Log transformation decision and application on data} \usage{ log_transform(data) } \arguments{ \item{data}{A numeric matrix or data frame.} } \value{ The original data or the data transformed with log2. } \description{ This function evaluates the need for a log transformation based on a set of criteria and applies a log2 transformation if necessary. } \examples{ file_path <- system.file("extdata", "all_count_exp_test.csv", package = "TransProR") your_data <- read.csv(file_path, row.names = 1) # Assuming first column is row names (e.g., gene names) TransformedData <- log_transform(data = your_data) } \author{ Dongyue Yu } ================================================ FILE: man/merge_density_foldchange.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/MergeDensityFoldchange.R \name{merge_density_foldchange} \alias{merge_density_foldchange} \title{Create high-density region plot with optional points, density rugs, and contours} \usage{ merge_density_foldchange( data, x_var, y_var, group_var, palette = c("#3949ab", "#1e88e5", "#039be5", "#00897b", "#43a047", "#7cb342"), show_points = FALSE, point_size = 2.5, point_alpha = 0.2, x_lim = c(0, 20), y_lim = c(0, 20), cor_method = "pearson", line_size = 1.6, cor_label_pos = c("left", 0.97) ) } \arguments{ \item{data}{Data frame containing variables for plotting.} \item{x_var}{Name of the x-axis variable as a string.} \item{y_var}{Name of the y-axis variable as a string.} \item{group_var}{Name of the grouping variable for color mapping as a string.} \item{palette}{Color palette for the plot as a character vector.} \item{show_points}{Logical, if TRUE adds points to the plot.} \item{point_size}{Size of the points, relevant if show_points is TRUE.} \item{point_alpha}{Transparency level of the points, relevant if show_points is TRUE.} \item{x_lim}{Numeric vector of length 2, giving the x-axis limits.} \item{y_lim}{Numeric vector of length 2, giving the y-axis limits.} \item{cor_method}{Method to calculate correlation ("pearson" or "spearman").} \item{line_size}{Size of the smoothing line.} \item{cor_label_pos}{Vector of length 2 indicating the position of the correlation label (x and y).} } \value{ A ggplot object representing the high-density region plot. } \description{ This function creates a high-density region plot using hdr methods to add density rug and filled contours. It also adds a regression line and Pearson correlation label. Points can be added to the plot optionally. } \examples{ combined_df_file <- system.file("extdata", "combined_df.rds", package = "TransProR") combined_df <- readRDS(combined_df_file) pal1 = c("#3949ab","#1e88e5","#039be5","#00897b","#43a047","#7cb342") all_density_foldchange_name1 <- merge_density_foldchange( data = combined_df, x_var = "log2FoldChange_1", y_var = "log2FoldChange_2", group_var = "name", palette = pal1, show_points = FALSE, point_size = 2.5, point_alpha = 0.1, x_lim = c(0, 20), y_lim = c(0, 20), cor_method = "pearson", line_size = 1.6, cor_label_pos = c("left", "top") ) } ================================================ FILE: man/merge_gtex_tcga.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/MergeGtexTcga.R \name{merge_gtex_tcga} \alias{merge_gtex_tcga} \title{Merge gene expression data from GTEx and TCGA datasets} \usage{ merge_gtex_tcga( gtex_data_path, tcga_exp_path, output_path = "./merged_gtex_tcga_data.rds" ) } \arguments{ \item{gtex_data_path}{A string that specifies the file path to the GTEx data saved in RDS format.} \item{tcga_exp_path}{A string that specifies the file path to the TCGA expression data saved in RDS format. This should be a data.frame with rows as genes and columns as samples.} \item{output_path}{A string that specifies the path where the merged dataset should be saved. The file is saved in '.rds' format. The default path is "./merged_gtex_tcga_data.rds".} } \value{ A data frame where rows represent genes and columns represent samples. The data frame contains expression values from both GTEx and TCGA datasets. It saves the merged dataset to the path specified by 'output_path'. } \description{ This function merges gene expression data obtained from the GTEx (Genotype-Tissue Expression) and TCGA (The Cancer Genome Atlas) datasets. It is assumed that both datasets are in '.rds' format and have genes as row names. The merged dataset is saved as an RDS file at the specified output path. } \details{ It is assumed that both datasets are in '.rds' format and have genes as row names. } \note{ CRITICAL: The 'output_path' parameter must end with '.rds' to be properly recognized by the function. It is also highly recommended that the path includes specific identifiers related to the target samples. Please structure the 'output_path' following this pattern: './your_directory/merged.your_sample_type.gtex.tcga.data.rds'. } \examples{ tumor_file <- system.file("extdata", "removebatch_SKCM_Skin_TCGA_exp_tumor_test.rds", package = "TransProR") Normal_file <- system.file("extdata", "removebatch_SKCM_Skin_Normal_TCGA_GTEX_count_test.rds", package = "TransProR") ouput_file <- file.path(tempdir(), "all_data.rds") all_data <- merge_gtex_tcga(gtex_data_path = tumor_file, tcga_exp_path = Normal_file, output_path = ouput_file) } ================================================ FILE: man/merge_id_position.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/MergeIDPosition.R \name{merge_id_position} \alias{merge_id_position} \title{Merge Data Frames by Common Row Names with Additional Columns} \usage{ merge_id_position(df_list) } \arguments{ \item{df_list}{A list of data frames, each with a 'Description' and 'Count' column and set row names.} } \value{ A single data frame merged from the list, with additional 'id' and 'point_position' columns. } \description{ This function merges a list of data frames based on common row names. It adds an 'id' column to track the row order and a 'point_position' column calculated based on the maximum 'Count' value across all data frames. It filters data frames to include only common rows, sorts rows by the length of the 'Description' in descending order, and then merges them by rows. } \examples{ df1 <- data.frame(Description = c("DataA", "DataB"), Count = c(10, 20), row.names = c("R1", "R2")) df2 <- data.frame(Description = c("DataC", "DataD"), Count = c(30, 40), row.names = c("R1", "R3")) df_list <- list(df1, df2) combined_df_test <- merge_id_position(df_list) } ================================================ FILE: man/merge_method_color.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/MergeMethodColor.R \name{merge_method_color} \alias{merge_method_color} \title{Merge Data Frames with Specific Method and Color Columns} \usage{ merge_method_color(df_list, method_name, color_list) } \arguments{ \item{df_list}{A list of data frames, each containing at least 'Description' and 'Count' columns.} \item{method_name}{A string representing the method name to be added to each data frame.} \item{color_list}{A list of colors corresponding to each data frame for the 'test_color' column.} } \value{ A single data frame merged from the list, with each originally provided data frame now having a 'method' and a 'test_color' column. } \description{ This function takes a list of data frames, a method name, and a list of colors. It adds a 'method' column and a 'test_color' column to each data frame, then merges all data frames by rows. It ensures that the color list length matches the list of data frames. } \examples{ df1 <- data.frame(Description = c("A", "B"), Count = c(10, 20)) df2 <- data.frame(Description = c("C", "D"), Count = c(30, 40)) df_list <- list(df1, df2) method_name <- "Method1" color_list <- c("Red", "Blue") combined_df_test <- merge_method_color(df_list, method_name, color_list) } ================================================ FILE: man/new_ggraph.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/NewGgraph.R \name{new_ggraph} \alias{new_ggraph} \title{Generate a graphical representation of pathway gene maps} \usage{ new_ggraph( BP_dataframe, BP_ids, KEGG_dataframe, KEGG_ids, MF_dataframe, MF_ids, REACTOME_dataframe, REACTOME_ids, CC_dataframe, CC_ids, DO_dataframe, DO_ids ) } \arguments{ \item{BP_dataframe}{Dataframe for Biological Process.} \item{BP_ids}{IDs for Biological Process.} \item{KEGG_dataframe}{Dataframe for KEGG pathways.} \item{KEGG_ids}{IDs for KEGG pathways.} \item{MF_dataframe}{Dataframe for Molecular Function.} \item{MF_ids}{IDs for Molecular Function.} \item{REACTOME_dataframe}{Dataframe for REACTOME pathways.} \item{REACTOME_ids}{IDs for REACTOME pathways.} \item{CC_dataframe}{Dataframe for Cellular Component.} \item{CC_ids}{IDs for Cellular Component.} \item{DO_dataframe}{Dataframe for Disease Ontology.} \item{DO_ids}{IDs for Disease Ontology.} } \value{ A 'ggraph' object representing the pathway gene map visualization. } \description{ This function merges multiple gene-pathway related dataframes, processes them for graph creation, and visualizes the relationships in a dendrogram layout using the provided node and edge gathering functions from the 'ggraph' package. } ================================================ FILE: man/pathway_count.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/PathwayCount.R \name{pathway_count} \alias{pathway_count} \title{Count Genes Present in Pathways Above a Threshold} \usage{ pathway_count(GO, count_threshold, enrich_data) } \arguments{ \item{GO}{A character vector of gene symbols.} \item{count_threshold}{An integer specifying the count threshold for selecting pathways.} \item{enrich_data}{A data frame containing pathway enrichment analysis results.} } \value{ A data frame with columns "Symble" (gene symbol), "Description" (pathway description), and "Exists" (1 if gene is present, 0 otherwise). } \description{ This function filters pathways that meet a count threshold and then counts the presence of specified genes in those pathways. } \examples{ # Simulated gene list GO <- c("Gene1", "Gene2", "Gene3", "Gene4", "Gene5") # Simulated enrichment analysis data enrich_data <- data.frame( ID = c("GO:0001", "GO:0002", "GO:0003"), Description = c("Pathway A", "Pathway B", "Pathway C"), Count = c(10, 4, 6), geneID = c("Gene1/Gene2/Gene3", "Gene4/Gene5", "Gene2/Gene6/Gene7") ) # Example usage count_threshold <- 5 result_df <- pathway_count(GO, count_threshold, enrich_data) } ================================================ FILE: man/pathway_description.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/PathwayDescription.R \name{pathway_description} \alias{pathway_description} \title{Describe Genes Present in Selected Pathways} \usage{ pathway_description(GO, selected_pathways_names, enrich_data) } \arguments{ \item{GO}{A character vector of gene symbols.} \item{selected_pathways_names}{A character vector specifying the names of selected pathways.} \item{enrich_data}{A data frame containing pathway enrichment analysis results.} } \value{ A data frame with columns "Symble" (gene symbol), "Description" (pathway description), and "Exists" (1 if gene is present, 0 otherwise). } \description{ This function identifies genes present in selected pathways based on gene enrichment analysis results. } \examples{ GO <- c("Gene1", "Gene2", "Gene3", "Gene4", "Gene5") # Simulated enrichment analysis data enrich_data <- data.frame( ID = c("Pathway1", "Pathway2", "Pathway3", "Pathway4"), Description = c("Apoptosis", "Cell Cycle", "Signal Transduction", "Metabolism"), geneID = c("Gene1/Gene3", "Gene2/Gene4", "Gene1/Gene2/Gene3", "Gene5"), Count = c(2, 2, 3, 1), stringsAsFactors = FALSE ) # Example usage result <- pathway_description(GO, selected_pathways_names="Apoptosis", enrich_data) } ================================================ FILE: man/pipe.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/utils-pipe.R \name{\%>\%} \alias{\%>\%} \title{Pipe operator} \usage{ lhs \%>\% rhs } \arguments{ \item{lhs}{A value or the magrittr placeholder.} \item{rhs}{A function call using the magrittr semantics.} } \value{ The result of calling `rhs(lhs)`. } \description{ See \code{magrittr::\link[magrittr:pipe]{\%>\%}} for details. } \keyword{internal} ================================================ FILE: man/prep_deseq2.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/PrepDeseq2.R \name{prep_deseq2} \alias{prep_deseq2} \title{Prepare DESeq2 data for plotting} \usage{ prep_deseq2(input_path, output_name = NULL) } \arguments{ \item{input_path}{Path to the RDS file containing the DESeq2 DEG data frame.} \item{output_name}{Name for the processed data frame, also used as the RDS file name.} } \value{ A data frame with processed DESeq2 DEG data. } \description{ This function reads a DESeq2 DEG data frame from an RDS file, filters it, adjusts the log2FoldChange to absolute values, adds a pseudo-count to pvalues, and transforms pvalues for plotting. The final data frame is returned and optionally saved to a new RDS file. } \examples{ deseq2_file <- system.file("extdata", "DEG_deseq2_test.rds", package = "TransProR") deseq2 <- prep_deseq2(deseq2_file) } ================================================ FILE: man/prep_edgeR.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/PrepEdgeR.R \name{prep_edgeR} \alias{prep_edgeR} \title{Prepare edgeR DEG data for plotting} \usage{ prep_edgeR(input_path, output_name = NULL) } \arguments{ \item{input_path}{Path to the RDS file containing the edgeR DEG data frame.} \item{output_name}{Name for the processed data frame, also used as the RDS file name.} } \value{ A data frame with processed edgeR DEG data. } \description{ This function reads an edgeR DEG data frame from an RDS file, filters it using \code{\link{deg_filter}} function, adjusts the logFC to absolute values, adds a pseudo-count to PValue, and transforms PValue for plotting. The final data frame is returned and optionally saved to a new RDS file. } \examples{ edgeR_file <- system.file("extdata", "DEG_edgeR_test.rds", package = "TransProR") edgeR <- prep_edgeR(edgeR_file) } ================================================ FILE: man/prep_limma.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/PrepLimma.R \name{prep_limma} \alias{prep_limma} \title{Prepare limma-voom DEG data for plotting} \usage{ prep_limma(input_path, output_name = NULL) } \arguments{ \item{input_path}{Path to the RDS file containing the limma-voom DEG data frame.} \item{output_name}{Name for the processed data frame, also used as the RDS file name.} } \value{ A data frame with processed limma-voom DEG data. } \description{ This function reads a limma-voom DEG data frame from an RDS file, filters it using \code{\link{deg_filter}} function, adjusts the logFC to absolute values, adds a pseudo-count to P.Value, and transforms P.Value for plotting. The final data frame is returned and optionally saved to a new RDS file. } \examples{ limma_file <- system.file("extdata", "DEG_limma_voom_test.rds", package = "TransProR") limma <- prep_limma(limma_file) } ================================================ FILE: man/prep_wilcoxon.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/PrepWilcoxon.R \name{prep_wilcoxon} \alias{prep_wilcoxon} \title{Prepare Wilcoxon DEG data for plotting} \usage{ prep_wilcoxon(input_path, output_name = NULL) } \arguments{ \item{input_path}{Path to the RDS file containing the Wilcoxon DEG data frame.} \item{output_name}{Optional; name for the processed data frame, also used as the RDS file name. If not provided, the data frame will not be saved to file.} } \value{ A data frame with processed Wilcoxon DEG data. } \description{ This function reads a Wilcoxon DEG data frame from an RDS file, filters it using \code{\link{deg_filter}} function, adjusts the log2foldChange to absolute values, adds a pseudo-count to pValues, and transforms pValues for plotting. The final data frame is returned and optionally saved to a new RDS file. } \examples{ wilcoxon_file <- system.file("extdata", "Wilcoxon_rank_sum_testoutRst_test.rds", package = "TransProR") Wilcoxon <- prep_wilcoxon(wilcoxon_file) } ================================================ FILE: man/process_heatdata.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/ProcessHeatdata.R \name{process_heatdata} \alias{process_heatdata} \title{Process Heatmap Data with Various Selection Options} \usage{ process_heatdata( heatdata, selection = 1, custom_names = NULL, num_names_per_group = NULL, prefix_length = 4 ) } \arguments{ \item{heatdata}{A data frame containing the heatmap data.} \item{selection}{An integer specifying the processing method: - 1: Use custom names for columns. - 2: Select a given number of columns per group based on a prefix. - 3: Calculate the average of columns per group based on a prefix.} \item{custom_names}{A character vector of custom names for columns (used when `selection = 1`). The length of this vector must match the number of columns in `heatdata`.} \item{num_names_per_group}{An integer specifying the number of columns to select per group (used when `selection = 2`).} \item{prefix_length}{An integer specifying the length of the prefix for grouping columns (used when `selection = 2` or `selection = 3`). Default is 4.} } \value{ A processed data frame based on the specified selection option. } \description{ This function processes heatmap data (`heatdata`) based on a given selection option. It allows customization of column names, selection of specific columns per group, or averaging columns based on a common prefix. } \examples{ # Example heatmap data frame heatdata <- data.frame( groupA_1 = c(1, 2, 3), groupA_2 = c(4, 5, 6), groupB_1 = c(7, 8, 9), groupB_2 = c(10, 11, 12) ) # Selection 1: Use custom names for columns custom_names <- c("Sample1", "Sample2", "Sample3", "Sample4") processed_data1 <- process_heatdata(heatdata, selection = 1, custom_names = custom_names) # Selection 2: Select a given number of columns per group based on a prefix processed_data2 <- process_heatdata(heatdata, selection = 2, num_names_per_group = 1) # Selection 3: Calculate the average of columns per group based on a prefix processed_data3 <- process_heatdata(heatdata, selection = 3, prefix_length = 6) } ================================================ FILE: man/seek_gtex_organ.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/SeekGtexOrgan.R \name{seek_gtex_organ} \alias{seek_gtex_organ} \title{Load and Process GTEX Phenotype Data to Retrieve Primary Site Counts} \usage{ seek_gtex_organ(path = "./download_data/GTEX_phenotype") } \arguments{ \item{path}{The path to the GTEX phenotype data file. Default is "./download_data/GTEX_phenotype".} } \value{ A table representing the count of samples per primary site. } \description{ This function reads the GTEX phenotype data from a specified path, renames its columns for better readability, and then returns a table of primary site counts. } \examples{ # Get the file path to the example data in the package path <- system.file("extdata", "GTEX_phenotype_test", package = "TransProR") # Call the `seek_gtex_organ` function with the path and print the result SeekGtexOrgan <- seek_gtex_organ(path = path) } ================================================ FILE: man/selectPathways.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/EnrichCirclize.R \name{selectPathways} \alias{selectPathways} \title{Randomly Select Pathways with Limited Word Count} \usage{ selectPathways(pathways, max_words = 10, num_select = 10) } \arguments{ \item{pathways}{Character vector of pathways.} \item{max_words}{Integer, maximum number of words allowed in the pathway name.} \item{num_select}{Integer, number of pathways to randomly select.} } \value{ A character vector of selected pathways. } \description{ This function randomly selects a specified number of pathways from a given list, ensuring that each selected pathway name does not exceed a specified number of words. It filters out pathways with names longer than the specified word limit before making the selection. } \examples{ pathway_list <- c("pathway_one response to stimulus", "pathway_two cell growth and death", "pathway_three regulation of cellular process", "pathway_four metabolic process") selected_pathways <- selectPathways(pathway_list, max_words = 5, num_select = 2) } ================================================ FILE: man/spiral_newrle.Rd ================================================ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/EnrichmentSpiralize.R \name{spiral_newrle} \alias{spiral_newrle} \title{Render a Spiral Plot Using Run-Length Encoding} \usage{ spiral_newrle(x, samples, values, colors, labels = FALSE) } \arguments{ \item{x}{A vector representing categories or segments.} \item{samples}{A vector indicating the sample each segment belongs to.} \item{values}{Numeric vector indicating the lengths of each segment.} \item{colors}{Character vector specifying the colors for each segment.} \item{labels}{Logical, whether to add labels to each segment.} } \value{ No return value, called for side effects. This function generates a spiral plot and optionally adds labels. } \description{ This function creates a spiral plot for visualizing sequential data in a compact and visually appealing way. It uses run-length encoding to represent the lengths and colors of sequences in the spiral. } \examples{ # Example: Creating a spiral plot using the spiral_newrle function # Define example data x <- c("A", "A", "B", "C") samples <- c("Sample1", "Sample1", "Sample2", "Sample2") values <- c(20, 30, 15, 35) colors <- c("red", "blue", "green", "purple") labels <- TRUE # Initialize the spiral plot, setting the x-axis range and scaling spiralize::spiral_initialize(xlim = c(0, sum(values)), scale_by = "curve_length", vp_param = list(x = grid::unit(0, "npc"), just = "left")) # Create a track for the spiral plot spiralize::spiral_track(height = 0.5) # Add segments to the spiral plot using run-length encoding spiral_newrle(x, samples, values, colors, labels) } ================================================ FILE: vignettes/TransProR.Rmd ================================================ --- title: "TransProR: Analysis and visualization of transcriptomic data are currently in progress. Future directions include multi-modal fusion, sparse learning, and the investigation of spatio-temporal effects." author: "Dongyue Yu\\ Ph.d candiadate at Nankai University " date: "`r Sys.Date()`" output: prettydoc::html_pretty: toc: false theme: hpstr highlight: github pdf_document: toc: true vignette: > %\VignetteIndexEntry{TransProR} %\VignetteEngine{knitr::rmarkdown} %\usepackage[utf8]{inputenc} --- # Vignette Please go to for the full vignette. # Need helps? If you have questions/issues, please visit [TransProR GITHUB](https://sssydysss.github.io/TransProRBook/) first. Your problems are mostly documented. ## Bug Reporting If you believe you have identified a bug, please submit a reproducible example via the [GitHub issue tracker](https://github.com/SSSYDYSSS/TransProR/issues). Alternatively, you can reach out to the author, SSSYDYSSS, at [yudongyue\@mail.nankai.edu.cn](mailto:yudongyue@mail.nankai.edu.cn).