From ff678275d628afcfc625dbcc84cc93b9f0d61821 Mon Sep 17 00:00:00 2001
From: Xiao Gui <xgui3783@gmail.com>
Date: Thu, 7 Jun 2018 17:55:57 +0200
Subject: [PATCH] added pagination, panel, databrowser fileviewer, charts,
 improved functionality existing components

---
 package-lock.json                             |  64 ++++++++
 package.json                                  |   4 +
 src/atlasViewer/atlasViewer.component.ts      |  85 +++++++++-
 .../atlasViewer.dataService.service.ts        |  11 ++
 src/atlasViewer/atlasViewer.style.css         |  26 ++-
 src/atlasViewer/atlasViewer.template.html     |  28 +++-
 src/components/components.module.ts           |  14 +-
 src/components/hoverableBlock.directive.ts    |   4 +-
 .../pagination/pagination.component.ts        |  58 +++++++
 .../pagination/pagination.style.css           |  73 +++++++++
 .../pagination/pagination.template.html       |  48 ++++++
 src/components/panel/panel.component.ts       |  27 ++++
 src/components/panel/panel.style.css          |  48 ++++++
 src/components/panel/panel.template.html      |  30 ++++
 src/components/tree/tree.component.ts         |  28 +++-
 src/components/tree/tree.style.css            |  21 +--
 src/components/tree/tree.template.html        |   8 +-
 src/layouts/floating/floating.component.ts    |  16 ++
 src/layouts/floating/floating.style.css       |  15 ++
 src/layouts/floating/floating.template.html   |   2 +
 src/layouts/layout.module.ts                  |   5 +
 src/main.module.ts                            |   7 +-
 src/main.ts                                   |   2 +
 src/res/ext/allAggregatedData.json            |  80 ++++++++++
 src/res/ext/dartboardAggregatedData.json      |   1 +
 src/res/ext/dwmAggregatedData.json            |   1 +
 src/res/ext/pmapsAggregatedData.json          |   1 +
 src/res/ext/receptorAggregatedData.json       |   1 +
 src/res/ext/swmAggregatedData.json            |   1 +
 src/services/stateStore.service.ts            |  93 +++++++++--
 src/ui/banner/banner.component.ts             |  14 +-
 src/ui/banner/banner.style.css                |   2 +-
 src/ui/banner/banner.template.html            |   1 +
 src/ui/databrowser/databrowser.component.ts   | 138 ++++++++++++++++
 src/ui/databrowser/databrowser.style.css      |  53 ++++++
 src/ui/databrowser/databrowser.template.html  |  87 ++++++++++
 src/ui/fileviewer/chart.interface.ts          |  74 +++++++++
 src/ui/fileviewer/fileviewer.component.ts     |  75 +++++++++
 src/ui/fileviewer/fileviewer.style.css        |  10 ++
 src/ui/fileviewer/fileviewer.template.html    |  73 +++++++++
 .../fileviewer/line/line.chart.component.ts   | 149 +++++++++++++++++
 src/ui/fileviewer/line/line.chart.style.css   |   5 +
 .../fileviewer/line/line.chart.template.html  |  17 ++
 .../fileviewer/radar/radar.chart.component.ts | 151 ++++++++++++++++++
 src/ui/fileviewer/radar/radar.chart.style.css |   5 +
 .../radar/radar.chart.template.html           |  17 ++
 .../nehubaContainer.component.ts              |  57 +++++++
 .../nehubaContainer/nehubaContainer.style.css |  47 ++++++
 .../nehubaContainer.template.html             |  35 +++-
 .../nehubaViewer/nehubaViewer.component.ts    | 134 +++++++++++++---
 src/ui/ui.module.ts                           |  33 +++-
 src/util/pipes/copyProperty.pipe.ts           |  16 ++
 src/util/pipes/filterDataEntries.pipe.ts      |  15 ++
 .../pipes/filterDataEntriesByType.pipe.ts     |  13 ++
 src/util/pipes/filterNameBySearch.pipe.ts     |  15 ++
 .../pipes/filterRegionDataEntries.pipe.ts     |  15 ++
 src/util/pipes/getUniqueProperty.pipe.ts      |  18 +++
 .../pipes/groupDataEntriesByRegion.pipe.ts    |  48 ++++++
 src/util/pipes/pagination.pipe.ts             |  15 ++
 .../pipes/pathToNestedChildren.pipe.spec.ts   |   3 +
 src/util/pipes/pathToNestedChildren.pipe.ts   | 110 +++++++++++++
 61 files changed, 2177 insertions(+), 70 deletions(-)
 create mode 100644 src/atlasViewer/atlasViewer.dataService.service.ts
 create mode 100644 src/components/pagination/pagination.component.ts
 create mode 100644 src/components/pagination/pagination.style.css
 create mode 100644 src/components/pagination/pagination.template.html
 create mode 100644 src/components/panel/panel.component.ts
 create mode 100644 src/components/panel/panel.style.css
 create mode 100644 src/components/panel/panel.template.html
 create mode 100644 src/layouts/floating/floating.component.ts
 create mode 100644 src/layouts/floating/floating.style.css
 create mode 100644 src/layouts/floating/floating.template.html
 create mode 100644 src/res/ext/allAggregatedData.json
 create mode 100644 src/res/ext/dartboardAggregatedData.json
 create mode 100644 src/res/ext/dwmAggregatedData.json
 create mode 100644 src/res/ext/pmapsAggregatedData.json
 create mode 100644 src/res/ext/receptorAggregatedData.json
 create mode 100644 src/res/ext/swmAggregatedData.json
 create mode 100644 src/ui/databrowser/databrowser.component.ts
 create mode 100644 src/ui/databrowser/databrowser.style.css
 create mode 100644 src/ui/databrowser/databrowser.template.html
 create mode 100644 src/ui/fileviewer/chart.interface.ts
 create mode 100644 src/ui/fileviewer/fileviewer.component.ts
 create mode 100644 src/ui/fileviewer/fileviewer.style.css
 create mode 100644 src/ui/fileviewer/fileviewer.template.html
 create mode 100644 src/ui/fileviewer/line/line.chart.component.ts
 create mode 100644 src/ui/fileviewer/line/line.chart.style.css
 create mode 100644 src/ui/fileviewer/line/line.chart.template.html
 create mode 100644 src/ui/fileviewer/radar/radar.chart.component.ts
 create mode 100644 src/ui/fileviewer/radar/radar.chart.style.css
 create mode 100644 src/ui/fileviewer/radar/radar.chart.template.html
 create mode 100644 src/util/pipes/copyProperty.pipe.ts
 create mode 100644 src/util/pipes/filterDataEntries.pipe.ts
 create mode 100644 src/util/pipes/filterDataEntriesByType.pipe.ts
 create mode 100644 src/util/pipes/filterNameBySearch.pipe.ts
 create mode 100644 src/util/pipes/filterRegionDataEntries.pipe.ts
 create mode 100644 src/util/pipes/getUniqueProperty.pipe.ts
 create mode 100644 src/util/pipes/groupDataEntriesByRegion.pipe.ts
 create mode 100644 src/util/pipes/pagination.pipe.ts
 create mode 100644 src/util/pipes/pathToNestedChildren.pipe.spec.ts
 create mode 100644 src/util/pipes/pathToNestedChildren.pipe.ts

diff --git a/package-lock.json b/package-lock.json
index e5847f127..0706055de 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -301,6 +301,12 @@
       "integrity": "sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==",
       "dev": true
     },
+    "@types/chart.js": {
+      "version": "2.7.20",
+      "resolved": "https://registry.npmjs.org/@types/chart.js/-/chart.js-2.7.20.tgz",
+      "integrity": "sha512-9vriJW2C2Ps7jILfzNio+7xPcy0Lu8jfc/FykmTHBIClunENEjeEGjnM4NMhg6uSJ+3eGyc3sq681ouizztmXw==",
+      "dev": true
+    },
     "@types/webpack-env": {
       "version": "1.13.6",
       "resolved": "https://registry.npmjs.org/@types/webpack-env/-/webpack-env-1.13.6.tgz",
@@ -2058,6 +2064,43 @@
       "integrity": "sha1-tUc7M9yXxCTl2Y3IfVXU2KKci/I=",
       "dev": true
     },
+    "chart.js": {
+      "version": "2.7.2",
+      "resolved": "https://registry.npmjs.org/chart.js/-/chart.js-2.7.2.tgz",
+      "integrity": "sha512-90wl3V9xRZ8tnMvMlpcW+0Yg13BelsGS9P9t0ClaDxv/hdypHDr/YAGf+728m11P5ljwyB0ZHfPKCapZFqSqYA==",
+      "dev": true,
+      "requires": {
+        "chartjs-color": "2.2.0",
+        "moment": "2.22.2"
+      }
+    },
+    "chartjs-color": {
+      "version": "2.2.0",
+      "resolved": "https://registry.npmjs.org/chartjs-color/-/chartjs-color-2.2.0.tgz",
+      "integrity": "sha1-hKL7dVeH7YXDndbdjHsdiEKbrq4=",
+      "dev": true,
+      "requires": {
+        "chartjs-color-string": "0.5.0",
+        "color-convert": "0.5.3"
+      },
+      "dependencies": {
+        "color-convert": {
+          "version": "0.5.3",
+          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-0.5.3.tgz",
+          "integrity": "sha1-vbbGnOZg+t/+CwAHzER+G59ygr0=",
+          "dev": true
+        }
+      }
+    },
+    "chartjs-color-string": {
+      "version": "0.5.0",
+      "resolved": "https://registry.npmjs.org/chartjs-color-string/-/chartjs-color-string-0.5.0.tgz",
+      "integrity": "sha512-amWNvCOXlOUYxZVDSa0YOab5K/lmEhbFNKI55PWc4mlv28BDzA7zaoQTGxSBgJMHIW+hGX8YUrvw/FH4LyhwSQ==",
+      "dev": true,
+      "requires": {
+        "color-name": "1.1.3"
+      }
+    },
     "chokidar": {
       "version": "2.0.3",
       "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.0.3.tgz",
@@ -6353,6 +6396,12 @@
         "lodash.isarray": "3.0.4"
       }
     },
+    "lodash.merge": {
+      "version": "4.6.1",
+      "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.1.tgz",
+      "integrity": "sha512-AOYza4+Hf5z1/0Hztxpm2/xiPZgi/cjMqdnKTUWTBSKchJlxXXuUSxCCl8rJlf4g6yww/j6mA8nC8Hw/EZWxKQ==",
+      "dev": true
+    },
     "lodash.restparam": {
       "version": "3.6.1",
       "resolved": "https://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz",
@@ -6930,6 +6979,12 @@
         "minimist": "0.0.8"
       }
     },
+    "moment": {
+      "version": "2.22.2",
+      "resolved": "https://registry.npmjs.org/moment/-/moment-2.22.2.tgz",
+      "integrity": "sha1-PCV/mDn8DpP/UxSWMiOeuQeD/2Y=",
+      "dev": true
+    },
     "move-concurrently": {
       "version": "1.0.1",
       "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz",
@@ -7038,6 +7093,15 @@
       "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=",
       "dev": true
     },
+    "ng2-charts": {
+      "version": "1.6.0",
+      "resolved": "https://registry.npmjs.org/ng2-charts/-/ng2-charts-1.6.0.tgz",
+      "integrity": "sha512-9w0WH69x5/nuqC1og2WaY39NbaBqTGIP1+5gZaH7/KPN6UEPonNg/pYnsIVklLj1DWPWXKa8+XXIJZ1jy5nLxg==",
+      "dev": true,
+      "requires": {
+        "chart.js": "2.7.2"
+      }
+    },
     "ngx-bootstrap": {
       "version": "3.0.0",
       "resolved": "https://registry.npmjs.org/ngx-bootstrap/-/ngx-bootstrap-3.0.0.tgz",
diff --git a/package.json b/package.json
index bafa12c37..fb08407f4 100644
--- a/package.json
+++ b/package.json
@@ -23,11 +23,15 @@
     "@angular/platform-browser-dynamic": "^6.0.3",
     "@ngrx/store": "^6.0.1",
     "@ngtools/webpack": "^6.0.5",
+    "@types/chart.js": "^2.7.20",
     "@types/webpack-env": "^1.13.6",
     "angular2-template-loader": "^0.6.2",
+    "chart.js": "^2.7.2",
     "core-js": "^2.5.6",
     "file-loader": "^1.1.11",
     "html-webpack-plugin": "^3.2.0",
+    "lodash.merge": "^4.6.1",
+    "ng2-charts": "^1.6.0",
     "ngx-bootstrap": "^3.0.0",
     "raw-loader": "^0.5.1",
     "reflect-metadata": "^0.1.12",
diff --git a/src/atlasViewer/atlasViewer.component.ts b/src/atlasViewer/atlasViewer.component.ts
index 26e3f7809..e5b7633a1 100644
--- a/src/atlasViewer/atlasViewer.component.ts
+++ b/src/atlasViewer/atlasViewer.component.ts
@@ -1,6 +1,6 @@
-import { Component, HostBinding } from "@angular/core";
+import { Component, HostBinding, ViewChild, ViewContainerRef, AfterViewInit } from "@angular/core";
 import { Store, select } from "@ngrx/store";
-import { ViewerStateInterface, FETCHED_TEMPLATES, safeFilter } from "../services/stateStore.service";
+import { ViewerStateInterface, FETCHED_TEMPLATES, safeFilter, Property, FETCHED_METADATA, FETCHED_DATAENTRIES, DataEntry } from "../services/stateStore.service";
 import { Observable } from "rxjs";
 import { map } from "rxjs/operators";
 
@@ -12,11 +12,13 @@ import { map } from "rxjs/operators";
   ]
 })
 
-export class AtlasViewer{
+export class AtlasViewer implements AfterViewInit{
 
   @HostBinding('attr.darktheme') 
   darktheme : boolean = false
 
+  @ViewChild('sidecontent',{read:ViewContainerRef}) sideContent : ViewContainerRef
+
   selectedTemplate$ : Observable<any>
 
   constructor(private store : Store<ViewerStateInterface>){
@@ -53,4 +55,81 @@ export class AtlasViewer{
 
       this.selectedTemplate$.subscribe(template=>this.darktheme = template.useTheme === 'dark')
   }
+
+  ngAfterViewInit(){
+
+    const meta = 'res/json/allAggregatedData.json'
+    const urls = [
+      'res/json/receptorAggregatedData.json',
+      'res/json/pmapsAggregatedData.json',
+      'res/json/dwmAggregatedData.json',
+      'res/json/swmAggregatedData.json',
+      'res/json/dartboardAggregatedData.json'
+    ]
+
+    const dispatchData = (arr:DataEntry[][]) =>{
+      this.store.dispatch({
+        type : FETCHED_DATAENTRIES,
+        fetchedDataEntries : arr.reduce((acc,curr)=>acc.concat(curr),[])
+      })
+    }
+
+    const fetchData = (parcellationName : string) => {
+      if(parcellationName == 'JuBrain Cytoarchitectonic Atlas'){
+        Promise.all([
+          fetch('res/json/pmapsAggregatedData.json').then(res=>res.json()),
+          fetch('res/json/receptorAggregatedData.json').then(res=>res.json()),
+        ])
+          .then(arr=>dispatchData(arr))
+          .catch(console.warn)
+      }
+      else if (parcellationName == 'Fibre Bundle Atlas - Short Bundle'){
+        Promise.all([fetch('res/json/swmAggregatedData.json').then(res=>res.json())])
+          .then(arr=>dispatchData(arr))
+          .catch(console.warn)
+        
+      }else if (parcellationName == 'Fibre Bundle Atlas - Long Bundle'){
+        
+        Promise.all([fetch('res/json/dwmAggregatedData.json').then(res=>res.json())])
+          .then(arr=>dispatchData(arr))
+          .catch(console.warn)
+      }
+      else{
+        dispatchData([])
+      }
+    }
+    
+    fetch(meta)
+      .then(res=>res.json())
+      .then(metadata=>{
+        const data = metadata.reduce((acc:[string,Map<string,{properties:Property}>][],curr:any)=>{
+          const idx = acc.findIndex((it)=>it[0]===curr[0].targetParcellation)
+          return idx >= 0 ? 
+            acc.map((it,i)=> i === idx ? [it[0], it[1].set(curr[0].datasetName,curr[1])] : it ) :
+            acc.concat([[ curr[0].targetParcellation , new Map([[curr[0].datasetName , curr[1]]]) ]])
+              
+              /* [[ curr[0].targetParcellation , [ curr[0].datasetName , curr[1]] ]] */
+        },[] as [string,Map<string,{properties:Property}>][])
+        
+        this.store.dispatch({
+          type : FETCHED_METADATA,
+          fetchedMetadataMap : new Map(data)
+        })
+        
+      })
+      .catch(console.error)
+
+    this.store.pipe(
+      select('viewerState'),
+      safeFilter('parcellationSelected'),
+      map(({parcellationSelected})=>(parcellationSelected.name))
+    )
+      .subscribe(fetchData)
+    this.store.pipe(
+      select('newViewer'),
+      safeFilter('parcellationSelected'),
+      map(({parcellationSelected})=>(parcellationSelected.name))
+    )
+      .subscribe(fetchData)
+  }
 }
\ No newline at end of file
diff --git a/src/atlasViewer/atlasViewer.dataService.service.ts b/src/atlasViewer/atlasViewer.dataService.service.ts
new file mode 100644
index 000000000..6e3f6a54d
--- /dev/null
+++ b/src/atlasViewer/atlasViewer.dataService.service.ts
@@ -0,0 +1,11 @@
+import { Injectable } from "@angular/core";
+import { Store } from "@ngrx/store";
+import { ViewerStateInterface } from "../services/stateStore.service";
+
+
+@Injectable()
+export class AtlasViewerDataService{
+  constructor(private store : Store<ViewerStateInterface>){
+
+  }
+}
\ No newline at end of file
diff --git a/src/atlasViewer/atlasViewer.style.css b/src/atlasViewer/atlasViewer.style.css
index ef62a1d3c..33605fc7c 100644
--- a/src/atlasViewer/atlasViewer.style.css
+++ b/src/atlasViewer/atlasViewer.style.css
@@ -5,6 +5,11 @@
   height:100%;
 }
 
+:host[darktheme="true"]
+{
+  background-color:black;
+}
+
 layout-mainside
 {
   width:100%;
@@ -28,10 +33,29 @@ ui-nehuba-container
 
 atlas-banner
 {
-  z-index:3;
+  z-index:5;
   position:absolute;
   top : 1em;
   left: 1em;
 
   width:100%;
+}
+
+div[databrowserheading]
+{
+  font-size:110%;
+  padding : 0.5em 0.7em;
+}
+panel[databrowserpanel]
+{
+  display:block;
+  width:300px;
+  overflow-x:hidden;
+}
+
+div[sidecontent]
+{
+  height:100%;
+  overflow-y:auto;
+  overflow-x:hidden;
 }
\ No newline at end of file
diff --git a/src/atlasViewer/atlasViewer.template.html b/src/atlasViewer/atlasViewer.template.html
index bd04793fa..e06aeee30 100644
--- a/src/atlasViewer/atlasViewer.template.html
+++ b/src/atlasViewer/atlasViewer.template.html
@@ -4,10 +4,30 @@
     </ui-nehuba-container>
     
     <atlas-banner>
-
     </atlas-banner>
+
+    <layout-floating-container
+      zIndex = "4">
+    </layout-floating-container>
   </div>
-  <div sidecontent>
-    SIDECONTENT
+  <div 
+    sidecontent>
+    <ng-template #sideContent>
+
+    </ng-template>
   </div>
-</layout-mainside>
\ No newline at end of file
+</layout-mainside>
+
+<ng-template #databrowser>
+  <panel
+    databrowserpanel
+    [bodyCollapsable] = "true">
+    <div databrowserheading heading>
+      Data Browser
+    </div>
+    <div databrowserbody body>
+      <data-browser>
+      </data-browser>
+    </div>
+  </panel>
+</ng-template>
\ No newline at end of file
diff --git a/src/components/components.module.ts b/src/components/components.module.ts
index e064e030b..b3c41153a 100644
--- a/src/components/components.module.ts
+++ b/src/components/components.module.ts
@@ -12,6 +12,9 @@ import { BrowserModule } from '@angular/platform-browser';
 import { HoverableBlockDirective } from './hoverableBlock.directive';
 import { DropdownComponent } from './dropdown/dropdown.component';
 import { TreeComponent } from './tree/tree.component';
+import { PanelComponent } from './panel/panel.component';
+import { PaginationComponent } from './pagination/pagination.component';
+import { SearchResultPaginationPipe } from '../util/pipes/pagination.pipe';
 
 @NgModule({
   imports : [
@@ -26,22 +29,29 @@ import { TreeComponent } from './tree/tree.component';
     ReadmoreComponent,
     DropdownComponent,
     TreeComponent,
+    PanelComponent,
+    PaginationComponent,
 
     /* directive */
     HoverableBlockDirective,
 
     /* pipes */
-    SafeHtmlPipe
+    SafeHtmlPipe,
+    SearchResultPaginationPipe
   ],
   exports : [
     MarkdownDom,
     ReadmoreComponent,
     DropdownComponent,
     TreeComponent,
+    PanelComponent,
+    PaginationComponent,
+
+    SearchResultPaginationPipe,
 
     HoverableBlockDirective,
 
-    ComponentsExample
+    ComponentsExample,
   ]
 })
 
diff --git a/src/components/hoverableBlock.directive.ts b/src/components/hoverableBlock.directive.ts
index c43eb65fb..e05dc260d 100644
--- a/src/components/hoverableBlock.directive.ts
+++ b/src/components/hoverableBlock.directive.ts
@@ -16,7 +16,7 @@ import { DomSanitizer } from "@angular/platform-browser";
 export class HoverableBlockDirective{
 
   @HostBinding('style.opacity')
-  opacity : number = 0.8
+  opacity : number = 0.9
 
   @HostBinding('style.transform')
   transform = this.sanitizer.bypassSecurityTrustStyle(`translateY(0px)`)
@@ -33,7 +33,7 @@ export class HoverableBlockDirective{
 
   @HostListener('mouseleave')
   onmouseleave(){
-    this.opacity = 0.8
+    this.opacity = 0.9
     this.boxShadow = this.sanitizer.bypassSecurityTrustStyle(`0 4px 6px 0 rgba(5,5,5,0.1)`)
     this.transform = this.sanitizer.bypassSecurityTrustStyle(`translateY(0px)`)
   }
diff --git a/src/components/pagination/pagination.component.ts b/src/components/pagination/pagination.component.ts
new file mode 100644
index 000000000..fc962a2ae
--- /dev/null
+++ b/src/components/pagination/pagination.component.ts
@@ -0,0 +1,58 @@
+import { Component, Input, Output, EventEmitter } from '@angular/core'
+
+@Component({
+  selector : 'pagination-component',
+  templateUrl : './pagination.template.html',
+  styleUrls : [
+    './pagination.style.css'
+  ]
+})
+
+export class PaginationComponent{
+  @Input() total : number = 0
+  @Input() hitsPerPage : number = 15
+  @Input() currentPage : number = 0
+
+  @Output() paginationChange : EventEmitter<number> = new EventEmitter()
+
+  goto(pgnum:number){
+    const emitValue = pgnum < 0 ? 
+      0 :
+      pgnum >= Math.ceil(this.total / this.hitsPerPage) ?
+        Math.ceil(this.total / this.hitsPerPage) - 1 :
+        pgnum
+
+    this.paginationChange.emit(emitValue)
+  }
+
+  gotoFirst(){
+    this.goto(0)
+  }
+
+  gotoLast(){
+    const num = Math.floor(this.total / this.hitsPerPage) + 1
+    this.goto(num)
+  }
+
+  get getPagination(){
+    return Array.from(Array(Math.ceil(this.total / this.hitsPerPage)).keys()).filter((this.hidePagination).bind(this))
+  }
+
+  get getPageLowerBound(){
+    return this.currentPage * this.hitsPerPage + 1
+  }
+
+  get getPageUpperBound(){
+    return Math.min( ( this.currentPage + 1 ) * this.hitsPerPage , this.total )
+  }
+
+  hidePagination(idx:number){
+    
+    const correctedPagination = this.currentPage < 2 ?
+      2 :
+      this.currentPage > (Math.ceil(this.total / this.hitsPerPage) - 3) ?
+        Math.ceil(this.total / this.hitsPerPage) - 3 :
+        this.currentPage
+    return (Math.abs(idx-correctedPagination) < 3)
+  }
+}
\ No newline at end of file
diff --git a/src/components/pagination/pagination.style.css b/src/components/pagination/pagination.style.css
new file mode 100644
index 000000000..2b06f6363
--- /dev/null
+++ b/src/components/pagination/pagination.style.css
@@ -0,0 +1,73 @@
+div.pagination-container
+{
+  padding:0.5em 0;
+  display:flex;
+  flex-direction: column;
+  align-items: center;
+}
+
+:host-context([darktheme="true"]) div.pagination-container
+{
+  background-color:rgba(30,30,30,0.9);
+  color:rgba(240,240,240,0.9);
+}
+
+div.btn
+{
+  border:none;
+  position : relative;
+  cursor:default;
+  transition : transform 0.1s ease;
+}
+
+div.btn:hover
+{
+  transform: translateY(-2%);
+}
+
+div.btn:before
+{
+  content : ' ';
+  position : absolute;
+  top:0;
+  left:0;
+  width : 100%;
+  height : 100%;
+  pointer-events: none;
+  background-color : rgba(128,128,128,1);
+  opacity: 0.0;
+  transition : opacity 0.1s ease;
+}
+
+div.btn:hover:before
+{
+  opacity : 0.3;
+}
+
+:host-context([darktheme="true"]) div.btn.btn-default
+{
+  background-color:rgba(128,128,128,0.5);
+  color:rgba(240,240,240,0.9);
+}
+
+div.btn.btn-primary
+{
+  transform:translateY(3%);
+  position : relative;
+}
+
+div.btn.btn-primary:before
+{
+  position : absolute;
+  content : ' ';
+  left:0;
+  top:0;
+
+  width:100%;
+  height:100%;
+
+  background-color : black;
+  opacity : 0.1;
+
+  pointer-events: none;
+}
\ No newline at end of file
diff --git a/src/components/pagination/pagination.template.html b/src/components/pagination/pagination.template.html
new file mode 100644
index 000000000..cb53156b2
--- /dev/null
+++ b/src/components/pagination/pagination.template.html
@@ -0,0 +1,48 @@
+<div class = "pagination-container">
+  <div class = "btn-group">
+
+    <div 
+      class = "default-control btn btn-default btn-sm" 
+      (click)="gotoFirst()"
+      >
+
+      <i class = "glyphicon glyphicon-fast-backward"></i>
+    </div>
+
+    <div 
+      class = "btn btn-default btn-sm" 
+      (click)="goto(currentPage - 1)"
+      >
+      <i class = "glyphicon glyphicon-step-backward"></i>
+    </div>
+
+    <div 
+      (click)="goto(pageNum)"
+      [ngClass]="{'btn-primary':currentPage == pageNum}"
+      *ngFor = "let pageNum of getPagination"
+      class = "pagination-control btn btn-default btn-sm"
+      >
+      {{ pageNum + 1 }}
+    </div>
+
+    <div 
+      class = "btn btn-default btn-sm" 
+      (click)="goto(currentPage + 1)"
+      >
+      <i class = "glyphicon glyphicon-step-forward"></i>
+    </div>
+    <div 
+      class = "btn btn-default btn-sm" 
+      (click)="gotoLast()"
+      >
+      <i class = "glyphicon glyphicon-fast-forward"></i>
+    </div>
+
+  </div>
+  <div *ngIf = "total > 0" class = "pagination-summary">
+    showing {{ getPageLowerBound }} - {{ getPageUpperBound }} out of {{ total }}
+  </div>
+  <div *ngIf = "total == 0" class = "pagination-summary">
+    no results
+  </div>
+</div>
\ No newline at end of file
diff --git a/src/components/panel/panel.component.ts b/src/components/panel/panel.component.ts
new file mode 100644
index 000000000..ed8112978
--- /dev/null
+++ b/src/components/panel/panel.component.ts
@@ -0,0 +1,27 @@
+import { Component, Input, ChangeDetectionStrategy } from "@angular/core";
+
+@Component({
+  selector : 'panel',
+  templateUrl : './panel.template.html',
+  styleUrls : [
+    `./panel.style.css`
+  ]
+})
+
+export class PanelComponent{
+
+  @Input() showHeading : boolean = true
+  @Input() showBody : boolean = true
+  @Input() showFooter : boolean = false
+
+  @Input() collapseBody : boolean = false
+  @Input() bodyCollapsable : boolean = false
+
+  toggleCollapseBody(event:Event){
+    if(this.bodyCollapsable){
+      this.collapseBody = !this.collapseBody
+    }
+    event.stopPropagation()
+    event.preventDefault()
+  }
+}
\ No newline at end of file
diff --git a/src/components/panel/panel.style.css b/src/components/panel/panel.style.css
new file mode 100644
index 000000000..9c5475548
--- /dev/null
+++ b/src/components/panel/panel.style.css
@@ -0,0 +1,48 @@
+:host
+{
+  font-size:92%;
+}
+
+.panel
+{
+  border-radius : 0;
+  border:none;
+  box-shadow: 0px 4px 16px -4px rgba(0,0,0,0.2);
+  margin:0;
+}
+
+.panel > .panel-heading
+{
+  border-radius : 0;
+  padding: 0;
+  margin:0;
+  border:none;
+}
+
+.panel > .panel-body,
+.panel > .panel-footer
+{
+  border:none;
+}
+
+.panel > .panel-body
+{
+  padding: 0;
+}
+
+div.panel
+{
+  background:none;
+}
+
+:host-context([darktheme="true"]) div.panel-heading
+{
+  background-color:rgba(45,45,45,0.9);
+  color:rgba(255,255,255,0.9);
+}
+
+:host-context([darktheme="true"]) div.panel-body
+{
+  color:rgba(255,255,255,0.9);
+  background-color:rgba(45,45,45,0.65);
+}
\ No newline at end of file
diff --git a/src/components/panel/panel.template.html b/src/components/panel/panel.template.html
new file mode 100644
index 000000000..853c6ee70
--- /dev/null
+++ b/src/components/panel/panel.template.html
@@ -0,0 +1,30 @@
+<div class = "panel panel-default">
+  <div
+    *ngIf = "showHeading"
+    class = "panel-heading"
+    (click) = "toggleCollapseBody($event)"
+    hoverable>
+
+    <ng-content select="[heading]">
+    </ng-content>
+
+  </div>
+  <div
+    *ngIf = "showBody"
+    class = "panel-body"
+    [hidden] = "collapseBody">
+
+    <ng-content select="[body]">
+    </ng-content>
+
+  </div>
+  <div
+    *ngIf = "showFooter"
+    [hidden] = "collapseBody"
+    class = "panel-footer">
+    
+    <ng-content select="[footer]">
+    </ng-content>
+
+  </div>
+</div>
\ No newline at end of file
diff --git a/src/components/tree/tree.component.ts b/src/components/tree/tree.component.ts
index 50b9bf3cf..081376b31 100644
--- a/src/components/tree/tree.component.ts
+++ b/src/components/tree/tree.component.ts
@@ -1,4 +1,4 @@
-import { Component, Input, Output, EventEmitter } from "@angular/core";
+import { Component, Input, Output, EventEmitter, ViewChildren, QueryList, HostBinding } from "@angular/core";
 
 
 @Component({
@@ -16,20 +16,23 @@ export class TreeComponent{
   }
   @Input() renderNode : (item:any)=>string = (item)=>item.name
   @Input() findChildren : (item:any)=>any[] = (item)=>item.children
+  @Input() childrenExpanded : boolean = true
 
-  @Input() searchFilter : (item:any)=>boolean | null
+  @Input() searchFilter : (item:any)=>boolean | null = null
 
   @Output() mouseentertree : EventEmitter<any> = new EventEmitter()
   @Output() mouseleavetree : EventEmitter<any> = new EventEmitter()
   @Output() mouseclicktree : EventEmitter<any> = new EventEmitter()
 
-  public childrenExpanded : boolean = true
+  @ViewChildren(TreeComponent) treeChildren : QueryList<TreeComponent>
 
   get chevronClass():string{
-    return this.findChildren(this.inputItem).length > 0 ?
-      this.childrenExpanded ? 
-        'glyphicon-chevron-down' :
-        'glyphicon-chevron-right' :
+    return this.children ? 
+      this.children.length > 0 ?
+        this.childrenExpanded ? 
+          'glyphicon-chevron-down' :
+          'glyphicon-chevron-right' :
+        'glyphicon-none' :
       'glyphicon-none'
   }
 
@@ -43,4 +46,15 @@ export class TreeComponent{
     event.stopPropagation()
     event.preventDefault()
   }
+
+  get children():any[]{
+    return this.findChildren(this.inputItem)
+  }
+
+  @HostBinding('attr.filterHidden')
+  get visibilityOnFilter():boolean{
+    return (this.searchFilter ? 
+      this.searchFilter(this.inputItem) || (this.treeChildren.some(tree=>tree.visibilityOnFilter) ) :
+      true)
+  }
 }
\ No newline at end of file
diff --git a/src/components/tree/tree.style.css b/src/components/tree/tree.style.css
index fdf27cdc7..fec01230a 100644
--- a/src/components/tree/tree.style.css
+++ b/src/components/tree/tree.style.css
@@ -1,4 +1,4 @@
-tree:not([hidden])
+tree:not([filterHidden="false"]):not([hidden])
 {
   display:block;
   margin-left:1em;
@@ -23,14 +23,15 @@ div[itemContainer] > [itemName]
   white-space: nowrap;
 }
 
-[itemName]:hover
+div[itemContainer] > span[itemName]:hover
 {
   cursor:default;
+  color:rgba(219, 181, 86,1);
 }
 
 /* dashed guiding line */
 
-tree:not(:last-child) > div[itemMasterContainer]:before
+tree:not([filterHidden="false"]):not(:last-child) > div[itemMasterContainer]:before
 {
   
   pointer-events: none;
@@ -42,13 +43,13 @@ tree:not(:last-child) > div[itemMasterContainer]:before
   border-left: rgba(255,255,255,1) 1px dashed;
 }
 
-tree:not(:last-child) div[itemMasterContainer] > [itemContainer]
+tree:not([filterHidden="false"]):not(:last-child) div[itemMasterContainer] > [itemContainer]
 {
   position:relative;
 }
 
 
-tree:not(:last-child) div[itemMasterContainer] > [itemContainer]:before
+tree:not([filterHidden="false"]):not(:last-child) div[itemMasterContainer] > [itemContainer]:before
 {
   pointer-events: none;
   content : '';
@@ -60,12 +61,12 @@ tree:not(:last-child) div[itemMasterContainer] > [itemContainer]:before
   z-index: 0;
 }
 
-tree:last-child div[itemMasterContainer] > [itemContainer]
+tree:not([filterHidden="false"]):last-child div[itemMasterContainer] > [itemContainer]
 {
   position:relative;
 }
 
-tree:last-child div[itemMasterContainer] > [itemContainer]:before
+tree:not([filterHidden="false"]):last-child div[itemMasterContainer] > [itemContainer]:before
 {
   pointer-events: none;
   content : '';
@@ -77,17 +78,17 @@ tree:last-child div[itemMasterContainer] > [itemContainer]:before
   z-index: 0;
 }
 
-tree:not(:last-child) div[itemMasterContainer]:before
+tree:not([filterHidden="false"]):not(:last-child) div[itemMasterContainer]:before
 {
   border-left: rgba(128,128,128,0.6) 1px dashed;
 }
 
-tree:not(:last-child) div[itemMasterContainer] > [itemContainer]:before
+tree:not([filterHidden="false"]):not(:last-child) div[itemMasterContainer] > [itemContainer]:before
 {
   border-bottom: rgba(128,128,128,0.6) 1px dashed;
 }
 
-tree div[itemMasterContainer]:last-child > [itemContainer]:before
+tree:not([filterHidden="false"]) div[itemMasterContainer]:last-child > [itemContainer]:before
 {
   border-bottom: rgba(128,128,128,0.6) 1px dashed;
   border-left : rgba(128,128,128,0.6) 1px dashed;
diff --git a/src/components/tree/tree.template.html b/src/components/tree/tree.template.html
index 1b0278ba8..c0d71c6a2 100644
--- a/src/components/tree/tree.template.html
+++ b/src/components/tree/tree.template.html
@@ -1,7 +1,8 @@
 <div
-  (mouseleave)="mouseleavetree.emit(inputItem);handleEv($event)"
-  (mouseenter)="mouseentertree.emit(inputItem);handleEv($event)"
-  (click)="mouseclicktree.emit(inputItem);handleEv($event)"
+  [hidden] = "!visibilityOnFilter"
+  (mouseleave)="mouseleavetree.emit({inputItem:inputItem,node:this});handleEv($event)"
+  (mouseenter)="mouseentertree.emit({inputItem:inputItem,node:this});handleEv($event)"
+  (click)="mouseclicktree.emit({inputItem:inputItem,node:this});handleEv($event)"
   itemMasterContainer>
   <div itemContainer>
     <i
@@ -18,6 +19,7 @@
   <tree
     *ngFor = "let child of findChildren(inputItem)"
     [hidden] = "!childrenExpanded"
+    [childrenExpanded] = "childrenExpanded"
     [inputItem] = "child"
     [renderNode]="renderNode"
     [searchFilter]="searchFilter"
diff --git a/src/layouts/floating/floating.component.ts b/src/layouts/floating/floating.component.ts
new file mode 100644
index 000000000..9653baccc
--- /dev/null
+++ b/src/layouts/floating/floating.component.ts
@@ -0,0 +1,16 @@
+import { Component, ViewChild, HostBinding, Input } from "@angular/core";
+
+
+@Component({
+  selector : 'layout-floating-container',
+  templateUrl : './floating.template.html',
+  styleUrls : [
+    `./floating.style.css`
+  ]
+})
+
+export class FloatingLayoutContainer{
+  @HostBinding('style.z-index')
+  @Input()
+  zIndex : number = 5
+}
\ No newline at end of file
diff --git a/src/layouts/floating/floating.style.css b/src/layouts/floating/floating.style.css
new file mode 100644
index 000000000..0cb15ee43
--- /dev/null
+++ b/src/layouts/floating/floating.style.css
@@ -0,0 +1,15 @@
+:host
+{
+  position: absolute;
+  top:0;
+  left:0;
+  width:100%;
+  height:100%;
+  display:block;
+  pointer-events: none;
+}
+
+:host *
+{
+  pointer-events: all;
+}
\ No newline at end of file
diff --git a/src/layouts/floating/floating.template.html b/src/layouts/floating/floating.template.html
new file mode 100644
index 000000000..d7b4509bd
--- /dev/null
+++ b/src/layouts/floating/floating.template.html
@@ -0,0 +1,2 @@
+<ng-content>
+</ng-content>
\ No newline at end of file
diff --git a/src/layouts/layout.module.ts b/src/layouts/layout.module.ts
index 6fc53f1f3..4541a74b9 100644
--- a/src/layouts/layout.module.ts
+++ b/src/layouts/layout.module.ts
@@ -3,6 +3,7 @@ import { LayoutMainSide } from "./mainside/mainside.component";
 import { LayoutsExample } from "./layoutsExample/layoutsExample.component";
 import { BrowserModule } from "@angular/platform-browser";
 import { ComponentsModule } from "../components/components.module";
+import { FloatingLayoutContainer } from "./floating/floating.component";
 
 
 @NgModule({
@@ -12,10 +13,14 @@ import { ComponentsModule } from "../components/components.module";
   ],
   declarations : [
     LayoutMainSide,
+    FloatingLayoutContainer,
+
     LayoutsExample
   ],
   exports : [
     LayoutMainSide,
+    FloatingLayoutContainer,
+
     LayoutsExample
   ]
 })
diff --git a/src/main.module.ts b/src/main.module.ts
index 985939357..e635fe641 100644
--- a/src/main.module.ts
+++ b/src/main.module.ts
@@ -6,7 +6,7 @@ import { LayoutModule } from "./layouts/layout.module";
 import { Examples } from "./examples/examples.component";
 import { AtlasViewer } from "./atlasViewer/atlasViewer.component";
 import { StoreModule } from "@ngrx/store";
-import { changeState, newViewer } from "./services/stateStore.service";
+import { viewerState, newViewer, dataStore } from "./services/stateStore.service";
 import { AtlasBanner } from "./ui/banner/banner.component";
 import { GetNamesPipe } from "./util/pipes/getNames.pipe";
 import { CommonModule } from "@angular/common";
@@ -26,8 +26,9 @@ import { PopoverModule } from 'ngx-bootstrap/popover'
     PopoverModule.forRoot(),
     Serv.forRoot(),
     StoreModule.forRoot({
-      viewerState : changeState,
-      newViewer : newViewer
+      viewerState : viewerState,
+      newViewer : newViewer,
+      dataStore : dataStore
     })
   ],
   declarations : [
diff --git a/src/main.ts b/src/main.ts
index 95ac97b44..f9f13fe7c 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -3,6 +3,8 @@ import 'reflect-metadata'
 import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'
 import { MainModule } from './main.module';
 
+import 'chart.js/src/chart.js'
+
 const requireAll = (r:any) => {r.keys().forEach(r)}
 requireAll(require.context('./res/ext',false, /.json$/))
 
diff --git a/src/res/ext/allAggregatedData.json b/src/res/ext/allAggregatedData.json
new file mode 100644
index 000000000..e847cafa1
--- /dev/null
+++ b/src/res/ext/allAggregatedData.json
@@ -0,0 +1,80 @@
+[
+  [
+    {
+      "targetParcellation": "JuBrain Cytoarchitectonic Atlas",
+      "datasetName": "Receptor Data"
+    },
+    {
+      "name": "Quantification of Multiple Receptor Distributions for Selected Areas",
+      "properties": {
+        "description": null,
+        "publications": [
+          {
+            "doi": "http://juser.fz-juelich.de/record/23682",
+            "citation": "Zilles, K., Schleicher, A., Palomero-Gallagher, N., Amunts, K. (2002) Quantitative analysis of cyto- and receptor architecture of the human brain. In: /Brain Mapping: The Methods/, J. C. Mazziotta and A. Toga (eds.), USA: Elsevier, 2002, p. 573-602."
+          },
+          {
+            "doi": "https://doi.org/10.1016/j.cortex.2014.07.007",
+            "citation": "Zilles, K.; Bacha-Trams, M.; Palomero-Gallagher, N.; Amunts, K.; Friederici, A.D. (2015) Common molecular basis of the sentence comprehension network revealed by neurotransmitter receptor fingerprints. Cortex, vol 63, pp.79-89."
+          },
+          {
+            "doi": "res/pdf/ReceptorReadme.pdf",
+            "citation": "README.pdf for the receptor data"
+          }
+        ]
+      }
+    }
+  ],
+  [
+    {
+      "targetParcellation": "JuBrain Cytoarchitectonic Atlas",
+      "datasetName": "Cytoarchitectonic Probabilistic Map"
+    },
+    {
+      "name": "Cytoarchitectonic Probabilistic Map",
+      "properties": {
+        "description": "The Jubrain cytoarchitectonic probabilistic maps were developed in the teams of Katrin Amunts and Karl Zilles in Juelich and Duesseldorf (INM-1). Cytoarchitectonic areas were analyzed in histological sections of ten human postmortem brains. The maps are based on image analysis and statistical criteria for localizing areal borders. Cytoarchitectonic maps have been developed during the past 20 years as a joint effort of many doctoral students, post docs and guest scientists. Maps, which have been published, are available for the scientific community.",
+        "publications": [
+          {
+            "doi": "https://doi.org/10.1038/nrn2776",
+            "citation": "Zilles, K., Amunts, K. 2010. Centenary of Brodmann's map--conception and fate. Nat Rev Neurosci. 11(2):139-45"
+          },
+          {
+            "doi": "https://doi.org/10.1016/j.neuroimage.2007.02.037",
+            "citation": "Amunts, K., Schleicher, A., Zilles, K. 2007. Cytoarchitecture of the cerebral cortex--more than localization. Neuroimage. 37(4):1061-5"
+          },
+          {
+            "doi": "http://juser.fz-juelich.de/record/23682",
+            "citation": "Zilles, K., Schleicher, A., Palomero-Gallagher, N., Amunts, K. (2002) Quantitative analysis of cyto- and receptor architecture of the human brain. In: /Brain Mapping: The Methods/, J. C. Mazziotta and A. Toga (eds.), USA: Elsevier, 2002, p. 573-602."
+          }
+        ]
+      }
+    }
+  ],
+  [
+    {
+      "targetParcellation": "Fibre Bundle Atlas - Short Bundle",
+      "datasetName": "Probabilistic Map"
+    },
+    {
+      "name": "Bundle Atlas Probabilistic Map",
+      "properties": {
+        "description": "",
+        "publications": []
+      }
+    }
+  ],
+  [
+    {
+      "targetParcellation": "Fibre Bundle Atlas - Long Bundle",
+      "datasetName": "Probabilistic Map"
+    },
+    {
+      "name": "Bundle Atlas Probabilistic Map",
+      "properties": {
+        "description": "",
+        "publications": []
+      }
+    }
+  ]
+]
\ No newline at end of file
diff --git a/src/res/ext/dartboardAggregatedData.json b/src/res/ext/dartboardAggregatedData.json
new file mode 100644
index 000000000..d2cd9e9d4
--- /dev/null
+++ b/src/res/ext/dartboardAggregatedData.json
@@ -0,0 +1 @@
+[{"type":"Dart board","name":"Dart board","regionName":[],"files":[{"filename":"Dart Board Image Layer","name":"Dart Board over lay","mimetype":"application/nehuba-layer","properties":{"name":"","description":"","publications":[],"associatedRegion":"","associatedParcellation":"Grey/White matter","datasetInfo":""},"url":"precomputed://https://neuroglancer-dev.humanbrainproject.org/precomputed/demos/2018-05_V1_demo","data":{"time series":{"type":"image","source":"precomputed://https://neuroglancer-dev.humanbrainproject.org/precomputed/demos/2018-05_V1_demo","shader":"void main(){float x = toNormalized(getDataValue(0));float r=clamp(8.0/3.0*x,0.0,1.0);float a = clamp(x,0.0,1.0);float g=clamp(8.0/3.0*x-1.0,0.0,1.0);float b=clamp(4.0*x-3.0,0.0,1.0);emitRGB(vec3(r,g,b));}","transform":[[1,0,0,-70856016],[0,1,0,-73200000],[0,0,1,-58967116],[0,0,0,1]]}}}],"targetParcellation":"Grey/White matter"}]
\ No newline at end of file
diff --git a/src/res/ext/dwmAggregatedData.json b/src/res/ext/dwmAggregatedData.json
new file mode 100644
index 000000000..e963af5e6
--- /dev/null
+++ b/src/res/ext/dwmAggregatedData.json
@@ -0,0 +1 @@
+[{"type":"Probabilistic Map","name":"Probabilistic Map for Arcuate_Anterior - Left","regionName":[{"regionName":"Arcuate_Anterior - Left","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for Arcuate_Anterior - Left","name":"Probabilistic Map for Arcuate_Anterior - Left","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"Arcuate_Anterior - Left","associatedParcellation":"Fibre Bundle Atlas - Long Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/DWM_atlas/left-hemisphere/Probability_Maps/Arcuate_Anterior_Left.nii"}],"targetParcellation":"Fibre Bundle Atlas - Long Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for Arcuate - Left","regionName":[{"regionName":"Arcuate - Left","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for Arcuate - Left","name":"Probabilistic Map for Arcuate - Left","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"Arcuate - Left","associatedParcellation":"Fibre Bundle Atlas - Long Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/DWM_atlas/left-hemisphere/Probability_Maps/Arcuate_Left.nii"}],"targetParcellation":"Fibre Bundle Atlas - Long Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for Arcuate_Posterior - Left","regionName":[{"regionName":"Arcuate_Posterior - Left","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for Arcuate_Posterior - Left","name":"Probabilistic Map for Arcuate_Posterior - Left","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"Arcuate_Posterior - Left","associatedParcellation":"Fibre Bundle Atlas - Long Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/DWM_atlas/left-hemisphere/Probability_Maps/Arcuate_Posterior_Left.nii"}],"targetParcellation":"Fibre Bundle Atlas - Long Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for Cingulum_Long - Left","regionName":[{"regionName":"Cingulum_Long - Left","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for Cingulum_Long - Left","name":"Probabilistic Map for Cingulum_Long - Left","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"Cingulum_Long - Left","associatedParcellation":"Fibre Bundle Atlas - Long Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/DWM_atlas/left-hemisphere/Probability_Maps/Cingulum_Long_Left.nii"}],"targetParcellation":"Fibre Bundle Atlas - Long Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for Cingulum_Short - Left","regionName":[{"regionName":"Cingulum_Short - Left","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for Cingulum_Short - Left","name":"Probabilistic Map for Cingulum_Short - Left","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"Cingulum_Short - Left","associatedParcellation":"Fibre Bundle Atlas - Long Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/DWM_atlas/left-hemisphere/Probability_Maps/Cingulum_Short_Left.nii"}],"targetParcellation":"Fibre Bundle Atlas - Long Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for Cingulum_Temporal - Left","regionName":[{"regionName":"Cingulum_Temporal - Left","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for Cingulum_Temporal - Left","name":"Probabilistic Map for Cingulum_Temporal - Left","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"Cingulum_Temporal - Left","associatedParcellation":"Fibre Bundle Atlas - Long Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/DWM_atlas/left-hemisphere/Probability_Maps/Cingulum_Temporal_Left.nii"}],"targetParcellation":"Fibre Bundle Atlas - Long Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for CorticoSpinalTract - Left","regionName":[{"regionName":"CorticoSpinalTract - Left","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for CorticoSpinalTract - Left","name":"Probabilistic Map for CorticoSpinalTract - Left","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"CorticoSpinalTract - Left","associatedParcellation":"Fibre Bundle Atlas - Long Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/DWM_atlas/left-hemisphere/Probability_Maps/CorticoSpinalTract_Left.nii"}],"targetParcellation":"Fibre Bundle Atlas - Long Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for Fornix - Left","regionName":[{"regionName":"Fornix - Left","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for Fornix - Left","name":"Probabilistic Map for Fornix - Left","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"Fornix - Left","associatedParcellation":"Fibre Bundle Atlas - Long Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/DWM_atlas/left-hemisphere/Probability_Maps/Fornix_Left.nii"}],"targetParcellation":"Fibre Bundle Atlas - Long Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for InferiorFrontoOccipital - Left","regionName":[{"regionName":"InferiorFrontoOccipital - Left","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for InferiorFrontoOccipital - Left","name":"Probabilistic Map for InferiorFrontoOccipital - Left","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"InferiorFrontoOccipital - Left","associatedParcellation":"Fibre Bundle Atlas - Long Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/DWM_atlas/left-hemisphere/Probability_Maps/InferiorFrontoOccipital_Left.nii"}],"targetParcellation":"Fibre Bundle Atlas - Long Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for InferiorLongitudinal - Left","regionName":[{"regionName":"InferiorLongitudinal - Left","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for InferiorLongitudinal - Left","name":"Probabilistic Map for InferiorLongitudinal - Left","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"InferiorLongitudinal - Left","associatedParcellation":"Fibre Bundle Atlas - Long Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/DWM_atlas/left-hemisphere/Probability_Maps/InferiorLongitudinal_Left.nii"}],"targetParcellation":"Fibre Bundle Atlas - Long Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for Uncinate - Left","regionName":[{"regionName":"Uncinate - Left","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for Uncinate - Left","name":"Probabilistic Map for Uncinate - Left","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"Uncinate - Left","associatedParcellation":"Fibre Bundle Atlas - Long Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/DWM_atlas/left-hemisphere/Probability_Maps/Uncinate_Left.nii"}],"targetParcellation":"Fibre Bundle Atlas - Long Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for Arcuate_Anterior - Right","regionName":[{"regionName":"Arcuate_Anterior - Right","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for Arcuate_Anterior - Right","name":"Probabilistic Map for Arcuate_Anterior - Right","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"Arcuate_Anterior - Right","associatedParcellation":"Fibre Bundle Atlas - Long Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/DWM_atlas/right-hemisphere/Probability_Maps/Arcuate_Anterior_Right.nii"}],"targetParcellation":"Fibre Bundle Atlas - Long Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for Arcuate_Posterior - Right","regionName":[{"regionName":"Arcuate_Posterior - Right","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for Arcuate_Posterior - Right","name":"Probabilistic Map for Arcuate_Posterior - Right","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"Arcuate_Posterior - Right","associatedParcellation":"Fibre Bundle Atlas - Long Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/DWM_atlas/right-hemisphere/Probability_Maps/Arcuate_Posterior_Right.nii"}],"targetParcellation":"Fibre Bundle Atlas - Long Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for Arcuate - Right","regionName":[{"regionName":"Arcuate - Right","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for Arcuate - Right","name":"Probabilistic Map for Arcuate - Right","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"Arcuate - Right","associatedParcellation":"Fibre Bundle Atlas - Long Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/DWM_atlas/right-hemisphere/Probability_Maps/Arcuate_Right.nii"}],"targetParcellation":"Fibre Bundle Atlas - Long Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for Cingulum_Long - Right","regionName":[{"regionName":"Cingulum_Long - Right","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for Cingulum_Long - Right","name":"Probabilistic Map for Cingulum_Long - Right","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"Cingulum_Long - Right","associatedParcellation":"Fibre Bundle Atlas - Long Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/DWM_atlas/right-hemisphere/Probability_Maps/Cingulum_Long_Right.nii"}],"targetParcellation":"Fibre Bundle Atlas - Long Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for Cingulum_Short - Right","regionName":[{"regionName":"Cingulum_Short - Right","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for Cingulum_Short - Right","name":"Probabilistic Map for Cingulum_Short - Right","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"Cingulum_Short - Right","associatedParcellation":"Fibre Bundle Atlas - Long Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/DWM_atlas/right-hemisphere/Probability_Maps/Cingulum_Short_Right.nii"}],"targetParcellation":"Fibre Bundle Atlas - Long Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for Cingulum_Temporal - Right","regionName":[{"regionName":"Cingulum_Temporal - Right","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for Cingulum_Temporal - Right","name":"Probabilistic Map for Cingulum_Temporal - Right","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"Cingulum_Temporal - Right","associatedParcellation":"Fibre Bundle Atlas - Long Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/DWM_atlas/right-hemisphere/Probability_Maps/Cingulum_Temporal_Right.nii"}],"targetParcellation":"Fibre Bundle Atlas - Long Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for CorticoSpinalTract - Right","regionName":[{"regionName":"CorticoSpinalTract - Right","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for CorticoSpinalTract - Right","name":"Probabilistic Map for CorticoSpinalTract - Right","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"CorticoSpinalTract - Right","associatedParcellation":"Fibre Bundle Atlas - Long Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/DWM_atlas/right-hemisphere/Probability_Maps/CorticoSpinalTract_Right.nii"}],"targetParcellation":"Fibre Bundle Atlas - Long Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for Fornix - Right","regionName":[{"regionName":"Fornix - Right","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for Fornix - Right","name":"Probabilistic Map for Fornix - Right","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"Fornix - Right","associatedParcellation":"Fibre Bundle Atlas - Long Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/DWM_atlas/right-hemisphere/Probability_Maps/Fornix_Right.nii"}],"targetParcellation":"Fibre Bundle Atlas - Long Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for InferiorFrontoOccipital - Right","regionName":[{"regionName":"InferiorFrontoOccipital - Right","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for InferiorFrontoOccipital - Right","name":"Probabilistic Map for InferiorFrontoOccipital - Right","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"InferiorFrontoOccipital - Right","associatedParcellation":"Fibre Bundle Atlas - Long Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/DWM_atlas/right-hemisphere/Probability_Maps/InferiorFrontoOccipital_Right.nii"}],"targetParcellation":"Fibre Bundle Atlas - Long Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for InferiorLongitudinal - Right","regionName":[{"regionName":"InferiorLongitudinal - Right","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for InferiorLongitudinal - Right","name":"Probabilistic Map for InferiorLongitudinal - Right","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"InferiorLongitudinal - Right","associatedParcellation":"Fibre Bundle Atlas - Long Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/DWM_atlas/right-hemisphere/Probability_Maps/InferiorLongitudinal_Right.nii"}],"targetParcellation":"Fibre Bundle Atlas - Long Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for Uncinate - Right","regionName":[{"regionName":"Uncinate - Right","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for Uncinate - Right","name":"Probabilistic Map for Uncinate - Right","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"Uncinate - Right","associatedParcellation":"Fibre Bundle Atlas - Long Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/DWM_atlas/right-hemisphere/Probability_Maps/Uncinate_Right.nii"}],"targetParcellation":"Fibre Bundle Atlas - Long Bundle"}]
\ No newline at end of file
diff --git a/src/res/ext/pmapsAggregatedData.json b/src/res/ext/pmapsAggregatedData.json
new file mode 100644
index 000000000..5cf684da0
--- /dev/null
+++ b/src/res/ext/pmapsAggregatedData.json
@@ -0,0 +1 @@
+[{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area hIP1 (IPS)","regionName":[{"regionName":"Area hIP1 (IPS)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area hIP1 (IPS)","name":"Cytoarchitectonic Probabilistic Map for Area hIP1 (IPS)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/AIPS_IP1.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area hIP1 (IPS)","description":"","publications":[{"doi":"https://doi.org/10.1002/cne.20849","citation":"Choi, H.J., Zilles, K., Mohlberg, H., Schleicher, A., Fink, G.R., Armstrong, E., Amunts, K. 2006. Cytoarchitectonic identification and probabilistic mapping of two distinct areas within the anterior ventral bank of the human intraparietal sulcus. J Comp Neurol. 495(1):53-69"}],"associatedRegion":"Area hIP1 (IPS)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area hIP2 (IPS)","regionName":[{"regionName":"Area hIP2 (IPS)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area hIP2 (IPS)","name":"Cytoarchitectonic Probabilistic Map for Area hIP2 (IPS)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/AIPS_IP2.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area hIP2 (IPS)","description":"","publications":[{"doi":"https://doi.org/10.1002/cne.20849","citation":"Choi, H.J., Zilles, K., Mohlberg, H., Schleicher, A., Fink, G.R., Armstrong, E., Amunts, K. 2006. Cytoarchitectonic identification and probabilistic mapping of two distinct areas within the anterior ventral bank of the human intraparietal sulcus. J Comp Neurol. 495(1):53-69"}],"associatedRegion":"Area hIP2 (IPS)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area hIP3 (IPS)","regionName":[{"regionName":"Area hIP3 (IPS)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area hIP3 (IPS)","name":"Cytoarchitectonic Probabilistic Map for Area hIP3 (IPS)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/AIPS_IP3.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area hIP3 (IPS)","description":"","publications":[{"doi":"https://doi.org/10.1093/cercor/bhm116","citation":"Scheperjans, F., Hermann, K., Eickhoff, S.B., Amunts, K., Schleicher, A., Zilles, K. 2008. Observer-independent cytoarchitectonic mapping of the human superior parietal cortex. Cereb Cortex. 18(4):846-67"},{"doi":"undefined","citation":"Scheperjans, F., Eickhoff, S.B., Hömke, L., Mohlberg, H., Hermann, K., Amunts, K., Zilles, K. 2008. Probabilistic maps, morphometry, and variability of cytoarchitectonic areas in the human superior parietal cortex. Cereb Cortex. 18(9):2141-57"}],"associatedRegion":"Area hIP3 (IPS)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area PF (IPL)","regionName":[{"regionName":"Area PF (IPL)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area PF (IPL)","name":"Cytoarchitectonic Probabilistic Map for Area PF (IPL)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/IPL_PF.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area PF (IPL)","description":"","publications":[{"doi":"https://doi.org/10.1016/j.neuroimage.2006.06.054","citation":"Caspers, S., Geyer, S., Schleicher, A., Mohlberg, H., Amunts, K., Zilles, K. 2006. The human inferior parietal cortex: cytoarchitectonic parcellation and interindividual variability. Neuroimage. 33(2):430-48 "},{"doi":"undefined","citation":"Caspers, S., Eickhoff, S.B., Geyer, S., Scheperjans, F., Mohlberg, H., Zilles, K., Amunts, K. 2008. The human inferior parietal lobule in stereotaxic space. Brain Struct Funct. 212(6):481-95"}],"associatedRegion":"Area PF (IPL)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area PFcm (IPL)","regionName":[{"regionName":"Area PFcm (IPL)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area PFcm (IPL)","name":"Cytoarchitectonic Probabilistic Map for Area PFcm (IPL)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/IPL_PFcm.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area PFcm (IPL)","description":"","publications":[{"doi":"https://doi.org/10.1016/j.neuroimage.2006.06.054","citation":"Caspers, S., Geyer, S., Schleicher, A., Mohlberg, H., Amunts, K., Zilles, K. 2006. The human inferior parietal cortex: cytoarchitectonic parcellation and interindividual variability. Neuroimage. 33(2):430-48 "},{"doi":"undefined","citation":"Caspers, S., Eickhoff, S.B., Geyer, S., Scheperjans, F., Mohlberg, H., Zilles, K., Amunts, K. 2008. The human inferior parietal lobule in stereotaxic space. Brain Struct Funct. 212(6):481-95"}],"associatedRegion":"Area PFcm (IPL)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area PFm (IPL)","regionName":[{"regionName":"Area PFm (IPL)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area PFm (IPL)","name":"Cytoarchitectonic Probabilistic Map for Area PFm (IPL)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/IPL_PFm.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area PFm (IPL)","description":"","publications":[{"doi":"https://doi.org/10.1016/j.neuroimage.2006.06.054","citation":"Caspers, S., Geyer, S., Schleicher, A., Mohlberg, H., Amunts, K., Zilles, K. 2006. The human inferior parietal cortex: cytoarchitectonic parcellation and interindividual variability. Neuroimage. 33(2):430-48 "},{"doi":"undefined","citation":"Caspers, S., Eickhoff, S.B., Geyer, S., Scheperjans, F., Mohlberg, H., Zilles, K., Amunts, K. 2008. The human inferior parietal lobule in stereotaxic space. Brain Struct Funct. 212(6):481-95"}],"associatedRegion":"Area PFm (IPL)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area PFop (IPL)","regionName":[{"regionName":"Area PFop (IPL)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area PFop (IPL)","name":"Cytoarchitectonic Probabilistic Map for Area PFop (IPL)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/IPL_PFop.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area PFop (IPL)","description":"","publications":[{"doi":"https://doi.org/10.1016/j.neuroimage.2006.06.054","citation":"Caspers, S., Geyer, S., Schleicher, A., Mohlberg, H., Amunts, K., Zilles, K. 2006. The human inferior parietal cortex: cytoarchitectonic parcellation and interindividual variability. Neuroimage. 33(2):430-48 "},{"doi":"undefined","citation":"Caspers, S., Eickhoff, S.B., Geyer, S., Scheperjans, F., Mohlberg, H., Zilles, K., Amunts, K. 2008. The human inferior parietal lobule in stereotaxic space. Brain Struct Funct. 212(6):481-95"}],"associatedRegion":"Area PFop (IPL)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area PFt (IPL)","regionName":[{"regionName":"Area PFt (IPL)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area PFt (IPL)","name":"Cytoarchitectonic Probabilistic Map for Area PFt (IPL)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/IPL_PFt.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area PFt (IPL)","description":"","publications":[{"doi":"https://doi.org/10.1016/j.neuroimage.2006.06.054","citation":"Caspers, S., Geyer, S., Schleicher, A., Mohlberg, H., Amunts, K., Zilles, K. 2006. The human inferior parietal cortex: cytoarchitectonic parcellation and interindividual variability. Neuroimage. 33(2):430-48 "},{"doi":"undefined","citation":"Caspers, S., Eickhoff, S.B., Geyer, S., Scheperjans, F., Mohlberg, H., Zilles, K., Amunts, K. 2008. The human inferior parietal lobule in stereotaxic space. Brain Struct Funct. 212(6):481-95"}],"associatedRegion":"Area PFt (IPL)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area PGa (IPL)","regionName":[{"regionName":"Area PGa (IPL)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area PGa (IPL)","name":"Cytoarchitectonic Probabilistic Map for Area PGa (IPL)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/IPL_PGa.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area PGa (IPL)","description":"","publications":[{"doi":"https://doi.org/10.1016/j.neuroimage.2006.06.054","citation":"Caspers, S., Geyer, S., Schleicher, A., Mohlberg, H., Amunts, K., Zilles, K. 2006. The human inferior parietal cortex: cytoarchitectonic parcellation and interindividual variability. Neuroimage. 33(2):430-48 "},{"doi":"undefined","citation":"Caspers, S., Eickhoff, S.B., Geyer, S., Scheperjans, F., Mohlberg, H., Zilles, K., Amunts, K. 2008. The human inferior parietal lobule in stereotaxic space. Brain Struct Funct. 212(6):481-95"}],"associatedRegion":"Area PGa (IPL)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area PGp (IPL)","regionName":[{"regionName":"Area PGp (IPL)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area PGp (IPL)","name":"Cytoarchitectonic Probabilistic Map for Area PGp (IPL)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/IPL_PGp.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area PGp (IPL)","description":"","publications":[{"doi":"https://doi.org/10.1016/j.neuroimage.2006.06.054","citation":"Caspers, S., Geyer, S., Schleicher, A., Mohlberg, H., Amunts, K., Zilles, K. 2006. The human inferior parietal cortex: cytoarchitectonic parcellation and interindividual variability. Neuroimage. 33(2):430-48 "},{"doi":"undefined","citation":"Caspers, S., Eickhoff, S.B., Geyer, S., Scheperjans, F., Mohlberg, H., Zilles, K., Amunts, K. 2008. The human inferior parietal lobule in stereotaxic space. Brain Struct Funct. 212(6):481-95"}],"associatedRegion":"Area PGp (IPL)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area OP1 (POperc)","regionName":[{"regionName":"Area OP1 (POperc)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area OP1 (POperc)","name":"Cytoarchitectonic Probabilistic Map for Area OP1 (POperc)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Operculum_OP1.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area OP1 (POperc)","description":"","publications":[{"doi":"undefined","citation":"Eickhoff, S.B., Schleicher, A., Zilles, K., Amunts, K. 2006. The human parietal operculum. I. Cytoarchitectonic mapping of subdivisions. Cereb Cortex. 16(2):254-67"},{"doi":"undefined","citation":"Eickhoff, S.B., Amunts, K., Mohlberg, H., Zilles, K. 2006. The human parietal operculum. II. Stereotaxic maps and correlation with functional imaging results. Cereb Cortex. 16(2):268-79"}],"associatedRegion":"Area OP1 (POperc)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area OP2 (POperc)","regionName":[{"regionName":"Area OP2 (POperc)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area OP2 (POperc)","name":"Cytoarchitectonic Probabilistic Map for Area OP2 (POperc)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Operculum_OP2.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area OP2 (POperc)","description":"","publications":[{"doi":"https://doi.org/10.1093/cercor/bhi105","citation":"Eickhoff, S.B., Schleicher, A., Zilles, K., Amunts, K. 2006. The human parietal operculum. I. Cytoarchitectonic mapping of subdivisions. Cereb Cortex. 16(2):254-67"},{"doi":"undefined","citation":"Eickhoff, S.B., Amunts, K., Mohlberg, H., Zilles, K. 2006. The human parietal operculum. II. Stereotaxic maps and correlation with functional imaging results. Cereb Cortex. 16(2):268-79"}],"associatedRegion":"Area OP2 (POperc)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area OP3 (POperc)","regionName":[{"regionName":"Area OP3 (POperc)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area OP3 (POperc)","name":"Cytoarchitectonic Probabilistic Map for Area OP3 (POperc)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Operculum_OP3.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area OP3 (POperc)","description":"","publications":[{"doi":"https://doi.org/10.1093/cercor/bhi105","citation":"Eickhoff, S.B., Schleicher, A., Zilles, K., Amunts, K. 2006. The human parietal operculum. I. Cytoarchitectonic mapping of subdivisions. Cereb Cortex. 16(2):254-67"},{"doi":"undefined","citation":"Eickhoff, S.B., Amunts, K., Mohlberg, H., Zilles, K. 2006. The human parietal operculum. II. Stereotaxic maps and correlation with functional imaging results. Cereb Cortex. 16(2):268-79"}],"associatedRegion":"Area OP3 (POperc)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area OP4 (POperc)","regionName":[{"regionName":"Area OP4 (POperc)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area OP4 (POperc)","name":"Cytoarchitectonic Probabilistic Map for Area OP4 (POperc)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Operculum_OP4.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area OP4 (POperc)","description":"","publications":[{"doi":"https://doi.org/10.1093/cercor/bhi105","citation":"Eickhoff, S.B., Schleicher, A., Zilles, K., Amunts, K. 2006. The human parietal operculum. I. Cytoarchitectonic mapping of subdivisions. Cereb Cortex. 16(2):254-67"},{"doi":"undefined","citation":"Eickhoff, S.B., Amunts, K., Mohlberg, H., Zilles, K. 2006. The human parietal operculum. II. Stereotaxic maps and correlation with functional imaging results. Cereb Cortex. 16(2):268-79"}],"associatedRegion":"Area OP4 (POperc)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area 1 (PostCG)","regionName":[{"regionName":"Area 1 (PostCG)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area 1 (PostCG)","name":"Cytoarchitectonic Probabilistic Map for Area 1 (PostCG)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/PSC_1.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area 1 (PostCG)","description":"","publications":[{"doi":"https://doi.org/10.1006/nimg.1999.0440","citation":"Geyer, S., Schleicher, A., Zilles, K. 1999. Areas 3a, 3b, and 1 of human primary somatosensory cortex. Neuroimage. 10(1):63-83 "},{"doi":"undefined","citation":"Geyer, S., Schormann, T., Mohlberg, H., Zilles, K. 2000. Areas 3a, 3b, and 1 of human primary somatosensory cortex. Part 2. Spatial normalization to standard anatomical space. Neuroimage. 11(6 Pt 1):684-96"}],"associatedRegion":"Area 1 (PostCG)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area 2 (PostCG)","regionName":[{"regionName":"Area 2 (PostCG)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area 2 (PostCG)","name":"Cytoarchitectonic Probabilistic Map for Area 2 (PostCG)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/PSC_2.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area 2 (PostCS)","description":"","publications":[{"doi":"https://doi.org/10.1006/nimg.2001.0858","citation":"Grefkes, C., Geyer, S., Schormann, T., Roland, P., Zilles, K. 2001. Human somatosensory area 2: observer-independent cytoarchitectonic mapping, interindividual variability, and population map. Neuroimage. 14(3):617-31"}],"associatedRegion":"Area 2 (PostCS)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area 3a (PostCG)","regionName":[{"regionName":"Area 3a (PostCG)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area 3a (PostCG)","name":"Cytoarchitectonic Probabilistic Map for Area 3a (PostCG)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/PSC_3a.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area 3a (PostCG)","description":"","publications":[{"doi":"https://doi.org/10.1006/nimg.1999.0440","citation":"Geyer, S., Schleicher, A., Zilles, K. 1999. Areas 3a, 3b, and 1 of human primary somatosensory cortex. Neuroimage. 10(1):63-83 "},{"doi":"undefined","citation":"Geyer, S., Schormann, T., Mohlberg, H., Zilles, K. 2000. Areas 3a, 3b, and 1 of human primary somatosensory cortex. Part 2. Spatial normalization to standard anatomical space. Neuroimage. 11(6 Pt 1):684-96"}],"associatedRegion":"Area 3a (PostCG)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area 3b (PostCG)","regionName":[{"regionName":"Area 3b (PostCG)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area 3b (PostCG)","name":"Cytoarchitectonic Probabilistic Map for Area 3b (PostCG)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/PSC_3b.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area 3b (PostCG)","description":"","publications":[{"doi":"https://doi.org/10.1006/nimg.1999.0440","citation":"Geyer, S., Schleicher, A., Zilles, K. 1999. Areas 3a, 3b, and 1 of human primary somatosensory cortex. Neuroimage. 10(1):63-83 "},{"doi":"undefined","citation":"Geyer, S., Schormann, T., Mohlberg, H., Zilles, K. 2000. Areas 3a, 3b, and 1 of human primary somatosensory cortex. Part 2. Spatial normalization to standard anatomical space. Neuroimage. 11(6 Pt 1):684-96"}],"associatedRegion":"Area 3b (PostCG)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area 5Ci (SPL)","regionName":[{"regionName":"Area 5Ci (SPL)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area 5Ci (SPL)","name":"Cytoarchitectonic Probabilistic Map for Area 5Ci (SPL)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/SPL_5Ci.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area 5Ci (SPL)","description":"","publications":[{"doi":"https://doi.org/10.1093/cercor/bhm116","citation":"Scheperjans, F., Hermann, K., Eickhoff, S.B., Amunts, K., Schleicher, A., Zilles, K. 2008. Observer-independent cytoarchitectonic mapping of the human superior parietal cortex. Cereb Cortex. 18(4):846-67"},{"doi":"undefined","citation":"Scheperjans, F., Eickhoff, S.B., Hömke, L., Mohlberg, H., Hermann, K., Amunts, K., Zilles, K. 2008. Probabilistic maps, morphometry, and variability of cytoarchitectonic areas in the human superior parietal cortex. Cereb Cortex. 18(9):2141-57"}],"associatedRegion":"Area 5Ci (SPL)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area 5L (SPL)","regionName":[{"regionName":"Area 5L (SPL)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area 5L (SPL)","name":"Cytoarchitectonic Probabilistic Map for Area 5L (SPL)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/SPL_5L.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area 5L (SPL)","description":"","publications":[{"doi":"https://doi.org/10.1093/cercor/bhm116","citation":"Scheperjans, F., Hermann, K., Eickhoff, S.B., Amunts, K., Schleicher, A., Zilles, K. 2008. Observer-independent cytoarchitectonic mapping of the human superior parietal cortex. Cereb Cortex. 18(4):846-67"},{"doi":"undefined","citation":"Scheperjans, F., Eickhoff, S.B., Hömke, L., Mohlberg, H., Hermann, K., Amunts, K., Zilles, K. 2008. Probabilistic maps, morphometry, and variability of cytoarchitectonic areas in the human superior parietal cortex. Cereb Cortex. 18(9):2141-57 "}],"associatedRegion":"Area 5L (SPL)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area 5M (SPL)","regionName":[{"regionName":"Area 5M (SPL)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area 5M (SPL)","name":"Cytoarchitectonic Probabilistic Map for Area 5M (SPL)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/SPL_5M.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area 5M (SPL)","description":"","publications":[{"doi":"https://doi.org/10.1093/cercor/bhm116","citation":"Scheperjans, F., Hermann, K., Eickhoff, S.B., Amunts, K., Schleicher, A., Zilles, K. 2008. Observer-independent cytoarchitectonic mapping of the human superior parietal cortex. Cereb Cortex. 18(4):846-67"},{"doi":"undefined","citation":"Scheperjans, F., Eickhoff, S.B., Hömke, L., Mohlberg, H., Hermann, K., Amunts, K., Zilles, K. 2008. Probabilistic maps, morphometry, and variability of cytoarchitectonic areas in the human superior parietal cortex. Cereb Cortex. 18(9):2141-57"}],"associatedRegion":"Area 5M (SPL)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area 7A (SPL)","regionName":[{"regionName":"Area 7A (SPL)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area 7A (SPL)","name":"Cytoarchitectonic Probabilistic Map for Area 7A (SPL)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/SPL_7A.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area 7A (SPL)","description":"","publications":[{"doi":"undefined","citation":"Scheperjans, F., Hermann, K., Eickhoff, S.B., Amunts, K., Schleicher, A., Zilles, K. 2008. Observer-independent cytoarchitectonic mapping of the human superior parietal cortex. Cereb Cortex. 18(4):846-67"},{"doi":"undefined","citation":"Scheperjans, F., Eickhoff, S.B., Hömke, L., Mohlberg, H., Hermann, K., Amunts, K., Zilles, K. 2008. Probabilistic maps, morphometry, and variability of cytoarchitectonic areas in the human superior parietal cortex. Cereb Cortex. 18(9):2141-57"}],"associatedRegion":"Area 7A (SPL)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area 7M (SPL)","regionName":[{"regionName":"Area 7M (SPL)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area 7M (SPL)","name":"Cytoarchitectonic Probabilistic Map for Area 7M (SPL)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/SPL_7M.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area 7M (SPL)","description":"","publications":[{"doi":"https://doi.org/10.1093/cercor/bhm116","citation":"Scheperjans, F., Hermann, K., Eickhoff, S.B., Amunts, K., Schleicher, A., Zilles, K. 2008. Observer-independent cytoarchitectonic mapping of the human superior parietal cortex. Cereb Cortex. 18(4):846-67"},{"doi":"undefined","citation":"Scheperjans, F., Eickhoff, S.B., Hömke, L., Mohlberg, H., Hermann, K., Amunts, K., Zilles, K. 2008. Probabilistic maps, morphometry, and variability of cytoarchitectonic areas in the human superior parietal cortex. Cereb Cortex. 18(9):2141-57"}],"associatedRegion":"Area 7M (SPL)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area 7P (SPL)","regionName":[{"regionName":"Area 7P (SPL)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area 7P (SPL)","name":"Cytoarchitectonic Probabilistic Map for Area 7P (SPL)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/SPL_7P.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area 7P (SPL)","description":"","publications":[{"doi":"https://doi.org/10.1093/cercor/bhm116","citation":"Scheperjans, F., Hermann, K., Eickhoff, S.B., Amunts, K., Schleicher, A., Zilles, K. 2008. Observer-independent cytoarchitectonic mapping of the human superior parietal cortex. Cereb Cortex. 18(4):846-67"},{"doi":"undefined","citation":"Scheperjans, F., Eickhoff, S.B., Hömke, L., Mohlberg, H., Hermann, K., Amunts, K., Zilles, K. 2008. Probabilistic maps, morphometry, and variability of cytoarchitectonic areas in the human superior parietal cortex. Cereb Cortex. 18(9):2141-57"}],"associatedRegion":"Area 7P (SPL)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area 7PC (SPL)","regionName":[{"regionName":"Area 7PC (SPL)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area 7PC (SPL)","name":"Cytoarchitectonic Probabilistic Map for Area 7PC (SPL)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/SPL_7PC.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area 7PC (SPL)","description":"","publications":[{"doi":"https://doi.org/10.1093/cercor/bhm116","citation":"Scheperjans, F., Hermann, K., Eickhoff, S.B., Amunts, K., Schleicher, A., Zilles, K. 2008. Observer-independent cytoarchitectonic mapping of the human superior parietal cortex. Cereb Cortex. 18(4):846-67"},{"doi":"undefined","citation":"Scheperjans, F., Eickhoff, S.B., Hömke, L., Mohlberg, H., Hermann, K., Amunts, K., Zilles, K. 2008. Probabilistic maps, morphometry, and variability of cytoarchitectonic areas in the human superior parietal cortex. Cereb Cortex. 18(9):2141-57"}],"associatedRegion":"Area 7PC (SPL)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area TE 1.0 (HESCHL)","regionName":[{"regionName":"Area TE 1.0 (HESCHL)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area TE 1.0 (HESCHL)","name":"Cytoarchitectonic Probabilistic Map for Area TE 1.0 (HESCHL)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Auditory_Te10.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area TE 1.0 (HESCHL)","description":"","publications":[{"doi":"https://doi.org/10.1006/nimg.2000.0715","citation":"Morosan, P., Rademacher, J., Schleicher, A., Amunts, K., Schormann, T., Zilles, K. 2001. Human primary auditory cortex: cytoarchitectonic subdivisions and mapping into a spatial reference system. Neuroimage. 13(4):684-701"},{"doi":"undefined","citation":"Rademacher, J., Morosan, P., Schormann, T., Schleicher, A., Werner, C., Freund, H.J., Zilles, K. 2001. Probabilistic mapping and volume measurement of human primary auditory cortex. Neuroimage. 13(4):669-83"},{"doi":"undefined","citation":" "}],"associatedRegion":"Area TE 1.0 (HESCHL)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area TE 1.1 (HESCHL)","regionName":[{"regionName":"Area TE 1.1 (HESCHL)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area TE 1.1 (HESCHL)","name":"Cytoarchitectonic Probabilistic Map for Area TE 1.1 (HESCHL)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Auditory_Te11.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area TE 1.1 (HESCHL)","description":"","publications":[{"doi":"https://doi.org/10.1006/nimg.2000.0715","citation":"Morosan, P., Rademacher, J., Schleicher, A., Amunts, K., Schormann, T., Zilles, K. 2001. Human primary auditory cortex: cytoarchitectonic subdivisions and mapping into a spatial reference system. Neuroimage. 13(4):684-701"},{"doi":"undefined","citation":"Rademacher, J., Morosan, P., Schormann, T., Schleicher, A., Werner, C., Freund, H.J., Zilles, K. 2001. Probabilistic mapping and volume measurement of human primary auditory cortex. Neuroimage. 13(4):669-83"}],"associatedRegion":"Area TE 1.1 (HESCHL)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area TE 1.2 (HESCHL)","regionName":[{"regionName":"Area TE 1.2 (HESCHL)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area TE 1.2 (HESCHL)","name":"Cytoarchitectonic Probabilistic Map for Area TE 1.2 (HESCHL)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Auditory_Te12.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area TE 1.2 (HESCHL)","description":"","publications":[{"doi":"https://doi.org/10.1006/nimg.2000.0715","citation":"Morosan, P., Rademacher, J., Schleicher, A., Amunts, K., Schormann, T., Zilles, K. 2001. Human primary auditory cortex: cytoarchitectonic subdivisions and mapping into a spatial reference system. Neuroimage. 13(4):684-701"},{"doi":"undefined","citation":"Rademacher, J., Morosan, P., Schormann, T., Schleicher, A., Werner, C., Freund, H.J., Zilles, K. 2001. Probabilistic mapping and volume measurement of human primary auditory cortex. Neuroimage. 13(4):669-83"}],"associatedRegion":"Area TE 1.2 (HESCHL)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area TE 3 (STG)","regionName":[{"regionName":"Area TE 3 (STG)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area TE 3 (STG)","name":"Cytoarchitectonic Probabilistic Map for Area TE 3 (STG)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Auditory_Te3.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area TE 3 (STG)","description":"","publications":[{"doi":"https://doi.org/10.1007/s00429-005-0029-1","citation":"Morosan, P., Schleicher, A., Amunts, K., Zilles, K. 2005. Multimodal architectonic mapping of human superior temporal gyrus. Anat Embryol (Berl). 210(5-6):401-6"},{"doi":"undefined","citation":"Schleicher, A., Amunts, K., Geyer, S., Morosan, P., Zilles, K. 1999. Observer-independent method for microstructural parcellation of cerebral cortex: A quantitative approach to cytoarchitectonics. Neuroimage. 9(1):165-77     "}],"associatedRegion":"Area TE 3 (STG)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area FG1 (FusG)","regionName":[{"regionName":"Area FG1 (FusG)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area FG1 (FusG)","name":"Cytoarchitectonic Probabilistic Map for Area FG1 (FusG)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Visual_FG1.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area FG1 (FusG) ","description":"","publications":[{"doi":"undefined","citation":"Caspers, J., Zilles, K., Eickhoff, S.B., Schleicher, A., Mohlberg, H., Amunts, K. 2013. Cytoarchitectonical analysis and probabilistic mapping of two extrastriate areas of the human posterior fusiform gyrus. Brain Struct Funct. 218(2):511-26   "}],"associatedRegion":"Area FG1 (FusG) ","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area FG2 (FusG)","regionName":[{"regionName":"Area FG2 (FusG)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area FG2 (FusG)","name":"Cytoarchitectonic Probabilistic Map for Area FG2 (FusG)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Visual_FG2.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area FG2 (FusG)","description":"","publications":[{"doi":"https://doi.org/10.1007/s00429-012-0411-8","citation":"Caspers, J., Zilles, K., Eickhoff, S.B., Schleicher, A., Mohlberg, H., Amunts, K. 2013. Cytoarchitectonical analysis and probabilistic mapping of two extrastriate areas of the human posterior fusiform gyrus. Brain Struct Funct. 218(2):511-26   "}],"associatedRegion":"Area FG2 (FusG)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area FG3 (FusG)","regionName":[{"regionName":"Area FG3 (FusG)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area FG3 (FusG)","name":"Cytoarchitectonic Probabilistic Map for Area FG3 (FusG)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Visual_FG3.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area FG3 (FusG)","description":"","publications":[{"doi":"https://doi.org/10.1093/cercor/bhv225","citation":"Lorenz, S., Weiner, K.S., Caspers, J., Mohlberg, H., Schleicher, A., Bludau, S., Eickhoff, S.B., Grill-Spector, K., Zilles, K., Amunts, K. 2017. Two New Cytoarchitectonic Areas on the Human Mid-Fusiform Gyrus. Cereb Cortex. 27(1):373-385"}],"associatedRegion":"Area FG3 (FusG)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area FG4 (FusG)","regionName":[{"regionName":"Area FG4 (FusG)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area FG4 (FusG)","name":"Cytoarchitectonic Probabilistic Map for Area FG4 (FusG)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Visual_FG4.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area FG4 (FusG)","description":"","publications":[{"doi":"https://doi.org/10.1093/cercor/bhv225","citation":"Lorenz, S., Weiner, K.S., Caspers, J., Mohlberg, H., Schleicher, A., Bludau, S., Eickhoff, S.B., Grill-Spector, K., Zilles, K., Amunts, K. 2017. Two New Cytoarchitectonic Areas on the Human Mid-Fusiform Gyrus. Cereb Cortex. 27(1):373-385"}],"associatedRegion":"Area FG4 (FusG)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area 44 (IFG)","regionName":[{"regionName":"Area 44 (IFG)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area 44 (IFG)","name":"Cytoarchitectonic Probabilistic Map for Area 44 (IFG)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Broca_44.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area 44 (IFG)","description":"","publications":[{"doi":"undefined","citation":"Amunts, K., Schleicher, A., Bürgel, U., Mohlberg, H., Uylings, H.B., Zilles, K. 1999. Broca's region revisited: cytoarchitecture and intersubject variability. J Comp Neurol. 412(2):319-41"},{"doi":"undefined","citation":"Amunts, K., Weiss, P.H., Mohlberg, H., Pieperhoff, P., Eickhoff, S., Gurd, J.M., Marshall, J.C., Shah, N.J., Fink, G.R., Zilles, K. 2004. Analysis of neural mechanisms underlying verbal fluency in cytoarchitectonically defined stereotaxic space--the roles of Brodmann areas 44 and 45. Neuroimage. 22(1):42-56"}],"associatedRegion":"Area 44 (IFG)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area 45 (IFG)","regionName":[{"regionName":"Area 45 (IFG)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area 45 (IFG)","name":"Cytoarchitectonic Probabilistic Map for Area 45 (IFG)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Broca_45.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area 45 (IFG)","description":"","publications":[{"doi":"undefined","citation":"Amunts, K., Schleicher, A., Bürgel, U., Mohlberg, H., Uylings, H.B., Zilles, K. 1999. Broca's region revisited: cytoarchitecture and intersubject variability. J Comp Neurol. 412(2):319-41"},{"doi":"undefined","citation":"Amunts, K., Weiss, P.H., Mohlberg, H., Pieperhoff, P., Eickhoff, S., Gurd, J.M., Marshall, J.C., Shah, N.J., Fink, G.R., Zilles, K. 2004. Analysis of neural mechanisms underlying verbal fluency in cytoarchitectonically defined stereotaxic space--the roles of Brodmann areas 44 and 45. Neuroimage. 22(1):42-56"}],"associatedRegion":"Area 45 (IFG)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area Fp1 (Fpole)","regionName":[{"regionName":"Area Fp1 (Fpole)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area Fp1 (Fpole)","name":"Cytoarchitectonic Probabilistic Map for Area Fp1 (Fpole)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/FrontalPole_Fp1.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area Fp1 (Fpole)","description":"","publications":[{"doi":"undefined","citation":"Bludau, S., Eickhoff, S.B., Mohlberg, H., Caspers, S., Laird, A.R., Fox, P.T., Schleicher, A., Zilles, K., Amunts, K. 2014. Cytoarchitecture, probability maps and functions of the human frontal pole. Neuroimage. 93 Pt 2:260-75"}],"associatedRegion":"Area Fp1 (Fpole)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area Fp2 (Fpole)","regionName":[{"regionName":"Area Fp2 (Fpole)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area Fp2 (Fpole)","name":"Cytoarchitectonic Probabilistic Map for Area Fp2 (Fpole)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/FrontalPole_Fp2.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area Fp2 (Fpole)","description":"","publications":[{"doi":"undefined","citation":"Bludau, S., Eickhoff, S.B., Mohlberg, H., Caspers, S., Laird, A.R., Fox, P.T., Schleicher, A., Zilles, K., Amunts, K. 2014. Cytoarchitecture, probability maps and functions of the human frontal pole. Neuroimage. 93 Pt 2:260-75"}],"associatedRegion":"Area Fp2 (Fpole)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area 4a (PreCG)","regionName":[{"regionName":"Area 4a (PreCG)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area 4a (PreCG)","name":"Cytoarchitectonic Probabilistic Map for Area 4a (PreCG)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Motor_4a.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area 4a (PreCG)","description":"","publications":[{"doi":"https://doi.org/10.1038/382805a0","citation":"Geyer, S., Ledberg, A., Schleicher, A., Kinomura, S., Schormann, T., Bürgel, U., Klingberg, T., Larsson, J., Zilles, K., Roland, PE. 1996. Two different areas within the primary motor cortex of man. Nature. 382(6594):805-7"}],"associatedRegion":"Area 4a (PreCG)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area 4p (PreCG)","regionName":[{"regionName":"Area 4p (PreCG)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area 4p (PreCG)","name":"Cytoarchitectonic Probabilistic Map for Area 4p (PreCG)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Motor_4p.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area 4p (PreCG)","description":"","publications":[{"doi":"https://doi.org/10.1038/382805a0","citation":"Geyer, S., Ledberg, A., Schleicher, A., Kinomura, S., Schormann, T., Bürgel, U., Klingberg, T., Larsson, J., Zilles, K., Roland, PE. 1996. Two different areas within the primary motor cortex of man. Nature. 382(6594):805-7"}],"associatedRegion":"Area 4p (PreCG)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area Fo1 (OFC)","regionName":[{"regionName":"Area Fo1 (OFC)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area Fo1 (OFC)","name":"Cytoarchitectonic Probabilistic Map for Area Fo1 (OFC)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/OFC_Fo1.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area Fo1 (OFC)","description":"","publications":[{"doi":"https://doi.org/10.1016/j.cortex.2015.11.006","citation":"Henssen, A., Zilles, K., Palomero-Gallagher, N., Schleicher, A., Mohlberg, H., Gerboga, F., Eickhoff, S.B., Bludau, S., Amunts, K. 2016. Cytoarchitecture and probability maps of the human medial orbitofrontal cortex. Cortex. 75:87-112"}],"associatedRegion":"Area Fo1 (OFC)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area Fo2 (OFC)","regionName":[{"regionName":"Area Fo2 (OFC)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area Fo2 (OFC)","name":"Cytoarchitectonic Probabilistic Map for Area Fo2 (OFC)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/OFC_Fo2.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area Fo2 (OFC)","description":"","publications":[{"doi":"https://doi.org/10.1016/j.cortex.2015.11.006","citation":"Henssen, A., Zilles, K., Palomero-Gallagher, N., Schleicher, A., Mohlberg, H., Gerboga, F., Eickhoff, S.B., Bludau, S., Amunts, K. 2016. Cytoarchitecture and probability maps of the human medial orbitofrontal cortex. Cortex. 75:87-112"}],"associatedRegion":"Area Fo2 (OFC)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area Fo3 (OFC)","regionName":[{"regionName":"Area Fo3 (OFC)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area Fo3 (OFC)","name":"Cytoarchitectonic Probabilistic Map for Area Fo3 (OFC)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/OFC_Fo3.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area Fo3 (OFC)","description":"","publications":[{"doi":"https://doi.org/10.1016/j.cortex.2015.11.006","citation":"Henssen, A., Zilles, K., Palomero-Gallagher, N., Schleicher, A., Mohlberg, H., Gerboga, F., Eickhoff, S.B., Bludau, S., Amunts, K. 2016. Cytoarchitecture and probability maps of the human medial orbitofrontal cortex. Cortex. 75:87-112"}],"associatedRegion":"Area Fo3 (OFC)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area 33 (ACC)","regionName":[{"regionName":"Area 33 (ACC)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area 33 (ACC)","name":"Cytoarchitectonic Probabilistic Map for Area 33 (ACC)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Cingulum_33.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area 33 (ACC)","description":"","publications":[{"doi":"https://doi.org/10.1016/j.cortex.2015.11.006","citation":"Palomero-Gallagher, N., Eickhoff, S.B., Hoffstaedter, F., Schleicher, A., Mohlberg, H., Vogt, B.A., Amunts, K., Zilles, K. 2015. Functional organization of human subgenual cortical areas: Relationship between architectonical segregation and connectional heterogeneity. Neuroimage. 115:177-90 "}],"associatedRegion":"Area 33 (ACC)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area 25 (sACC)","regionName":[{"regionName":"Area 25 (sACC)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area 25 (sACC)","name":"Cytoarchitectonic Probabilistic Map for Area 25 (sACC)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Cingulum_25.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area 25 (sACC)","description":"","publications":[{"doi":"https://doi.org/10.1016/j.cortex.2015.11.006","citation":"Palomero-Gallagher, N., Eickhoff, S.B., Hoffstaedter, F., Schleicher, A., Mohlberg, H., Vogt, B.A., Amunts, K., Zilles, K. 2015. Functional organization of human subgenual cortical areas: Relationship between architectonical segregation and connectional heterogeneity. Neuroimage. 115:177-90 "}],"associatedRegion":"Area 25 (sACC)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area s24 (sACC)","regionName":[{"regionName":"Area s24 (sACC)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area s24 (sACC)","name":"Cytoarchitectonic Probabilistic Map for Area s24 (sACC)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Cingulum_s24.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area s24 (sACC)","description":"","publications":[{"doi":"https://doi.org/10.1016/j.cortex.2015.11.006","citation":"Palomero-Gallagher, N., Eickhoff, S.B., Hoffstaedter, F., Schleicher, A., Mohlberg, H., Vogt, B.A., Amunts, K., Zilles, K. 2015. Functional organization of human subgenual cortical areas: Relationship between architectonical segregation and connectional heterogeneity. Neuroimage. 115:177-90 "}],"associatedRegion":"Area s24 (sACC)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area s32 (sACC)","regionName":[{"regionName":"Area s32 (sACC)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area s32 (sACC)","name":"Cytoarchitectonic Probabilistic Map for Area s32 (sACC)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Cingulum_s32.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area s32 (sACC)","description":"","publications":[{"doi":"undefined","citation":"Palomero-Gallagher, N., Eickhoff, S.B., Hoffstaedter, F., Schleicher, A., Mohlberg, H., Vogt, B.A., Amunts, K., Zilles, K. 2015. Functional organization of human subgenual cortical areas: Relationship between architectonical segregation and connectional heterogeneity. Neuroimage. 115:177-90 "}],"associatedRegion":"Area s32 (sACC)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for CA1 (Hippocampus)","regionName":[{"regionName":"CA1 (Hippocampus)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for CA1 (Hippocampus)","name":"Cytoarchitectonic Probabilistic Map for CA1 (Hippocampus)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Hippocampus_CA1.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"CA1 (Hippocampus)","description":"","publications":[{"doi":"https://doi.org/10.1007/s00429-005-0025-5","citation":"Amunts, K., Kedo, O., Kindler, M., Pieperhoff, P., Mohlberg, H., Shah, N.J., Habel, U., Schneider, F., Zilles, K. 2005. Cytoarchitectonic mapping of the human amygdala, hippocampal region and entorhinal cortex: intersubject variability and probability maps. Anat Embryol (Berl). 210(5-6):343-52"}],"associatedRegion":"CA1 (Hippocampus)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for CA2 (Hippocampus)","regionName":[{"regionName":"CA2 (Hippocampus)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for CA2 (Hippocampus)","name":"Cytoarchitectonic Probabilistic Map for CA2 (Hippocampus)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Hippocampus_CA2.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"CA2 (Hippocampus)","description":"","publications":[{"doi":"https://doi.org/10.1007/s00429-005-0025-5","citation":"Amunts, K., Kedo, O., Kindler, M., Pieperhoff, P., Mohlberg, H., Shah, N.J., Habel, U., Schneider, F., Zilles, K. 2005. Cytoarchitectonic mapping of the human amygdala, hippocampal region and entorhinal cortex: intersubject variability and probability maps. Anat Embryol (Berl). 210(5-6):343-52"}],"associatedRegion":"CA2 (Hippocampus)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for CA3 (Hippocampus)","regionName":[{"regionName":"CA3 (Hippocampus)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for CA3 (Hippocampus)","name":"Cytoarchitectonic Probabilistic Map for CA3 (Hippocampus)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Hippocampus_CA3.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"CA3 (Hippocampus)","description":"","publications":[{"doi":"undefined","citation":"Amunts, K., Kedo, O., Kindler, M., Pieperhoff, P., Mohlberg, H., Shah, N.J., Habel, U., Schneider, F., Zilles, K. 2005. Cytoarchitectonic mapping of the human amygdala, hippocampal region and entorhinal cortex: intersubject variability and probability maps. Anat Embryol (Berl). 210(5-6):343-52"}],"associatedRegion":"CA3 (Hippocampus)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for DG (Hippocampus)","regionName":[{"regionName":"DG (Hippocampus)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for DG (Hippocampus)","name":"Cytoarchitectonic Probabilistic Map for DG (Hippocampus)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Hippocampus_DG.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"DG (Hippocampus)","description":"","publications":[{"doi":"https://doi.org/10.1007/s00429-005-0025-5","citation":"Amunts, K., Kedo, O., Kindler, M., Pieperhoff, P., Mohlberg, H., Shah, N.J., Habel, U., Schneider, F., Zilles, K. 2005. Cytoarchitectonic mapping of the human amygdala, hippocampal region and entorhinal cortex: intersubject variability and probability maps. Anat Embryol (Berl). 210(5-6):343-52"}],"associatedRegion":"DG (Hippocampus)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Entorhinal Cortex","regionName":[{"regionName":"Entorhinal Cortex","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Entorhinal Cortex","name":"Cytoarchitectonic Probabilistic Map for Entorhinal Cortex","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Hippocampus_EC.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Entorhinal Cortex","description":"","publications":[{"doi":"https://doi.org/10.1007/s00429-005-0025-5","citation":"Amunts, K., Kedo, O., Kindler, M., Pieperhoff, P., Mohlberg, H., Shah, N.J., Habel, U., Schneider, F., Zilles, K. 2005. Cytoarchitectonic mapping of the human amygdala, hippocampal region and entorhinal cortex: intersubject variability and probability maps. Anat Embryol (Berl). 210(5-6):343-52"}],"associatedRegion":"Entorhinal Cortex","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for HATA (Hippocampus)","regionName":[{"regionName":"HATA (Hippocampus)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for HATA (Hippocampus)","name":"Cytoarchitectonic Probabilistic Map for HATA (Hippocampus)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Hippocampus_HATA.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"HATA (Hippocampus)","description":"","publications":[{"doi":"https://doi.org/10.1007/s00429-005-0025-5","citation":"Amunts, K., Kedo, O., Kindler, M., Pieperhoff, P., Mohlberg, H., Shah, N.J., Habel, U., Schneider, F., Zilles, K. 2005. Cytoarchitectonic mapping of the human amygdala, hippocampal region and entorhinal cortex: intersubject variability and probability maps. Anat Embryol (Berl). 210(5-6):343-52"}],"associatedRegion":"HATA (Hippocampus)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Subc (Hippocampus)","regionName":[{"regionName":"Subc (Hippocampus)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Subc (Hippocampus)","name":"Cytoarchitectonic Probabilistic Map for Subc (Hippocampus)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Hippocampus_Subc.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Subc (Hippocampus)","description":"","publications":[{"doi":"https://doi.org/10.1007/s00429-005-0025-5","citation":"Amunts, K., Kedo, O., Kindler, M., Pieperhoff, P., Mohlberg, H., Shah, N.J., Habel, U., Schneider, F., Zilles, K. 2005. Cytoarchitectonic mapping of the human amygdala, hippocampal region and entorhinal cortex: intersubject variability and probability maps. Anat Embryol (Berl). 210(5-6):343-52"}],"associatedRegion":"Subc (Hippocampus)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area Id1 (Insula)","regionName":[{"regionName":"Area Id1 (Insula)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area Id1 (Insula)","name":"Cytoarchitectonic Probabilistic Map for Area Id1 (Insula)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Insula_Id1.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area Id1 (Insula)","description":"","publications":[{"doi":"https://doi.org/10.1093/cercor/bhp208","citation":"Kurth, F., Eickhoff, S.B., Schleicher, A., Hoemke, L., Zilles, K., Amunts, K. 2010. Cytoarchitecture and probabilistic maps of the human posterior insular cortex. Cereb Cortex. 20(6):1448-61"}],"associatedRegion":"Area Id1 (Insula)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area Ig1 (Insula)","regionName":[{"regionName":"Area Ig1 (Insula)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area Ig1 (Insula)","name":"Cytoarchitectonic Probabilistic Map for Area Ig1 (Insula)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Insula_Ig1.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area Ig1 (Insula)","description":"","publications":[{"doi":"https://doi.org/10.1093/cercor/bhp208","citation":"Kurth, F., Eickhoff, S.B., Schleicher, A., Hoemke, L., Zilles, K., Amunts, K. 2010. Cytoarchitecture and probabilistic maps of the human posterior insular cortex. Cereb Cortex. 20(6):1448-61"}],"associatedRegion":"Area Ig1 (Insula)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area Ig2 (Insula)","regionName":[{"regionName":"Area Ig2 (Insula)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area Ig2 (Insula)","name":"Cytoarchitectonic Probabilistic Map for Area Ig2 (Insula)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Insula_Ig2.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area Ig2 (Insula)","description":"","publications":[{"doi":"https://doi.org/10.1093/cercor/bhp208","citation":"Kurth, F., Eickhoff, S.B., Schleicher, A., Hoemke, L., Zilles, K., Amunts, K. 2010. Cytoarchitecture and probabilistic maps of the human posterior insular cortex. Cereb Cortex. 20(6):1448-61"}],"associatedRegion":"Area Ig2 (Insula)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area hOc1 (V1, 17, CalcS)","regionName":[{"regionName":"Area hOc1 (V1, 17, CalcS)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area hOc1 (V1, 17, CalcS)","name":"Cytoarchitectonic Probabilistic Map for Area hOc1 (V1, 17, CalcS)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Visual_hOc1.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area hOc1 (V1, 17, CalcS)","description":"","publications":[{"doi":"https://doi.org/10.1006/nimg.1999.0516","citation":"Amunts, K., Malikovic, A., Mohlberg, H., Schormann, T., Zilles, K. 2000. Brodmann's areas 17 and 18 brought into stereotaxic space-where and how variable? Neuroimage. 11(1):66-84"}],"associatedRegion":"Area hOc1 (V1, 17, CalcS)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area hOc2 (V2, 18)","regionName":[{"regionName":"Area hOc2 (V2, 18)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area hOc2 (V2, 18)","name":"Cytoarchitectonic Probabilistic Map for Area hOc2 (V2, 18)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Visual_hOc2.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area hOc2 (V2, 18)","description":"","publications":[{"doi":"undefined","citation":"Amunts, K., Malikovic, A., Mohlberg, H., Schormann, T., Zilles, K. 2000. Brodmann's areas 17 and 18 brought into stereotaxic space-where and how variable? Neuroimage. 11(1):66-84"}],"associatedRegion":"Area hOc2 (V2, 18)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area hOc3d (Cuneus)","regionName":[{"regionName":"Area hOc3d (Cuneus)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area hOc3d (Cuneus)","name":"Cytoarchitectonic Probabilistic Map for Area hOc3d (Cuneus)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Visual_hOc3d.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area hOc3d (Cuneus)","description":"","publications":[{"doi":"https://doi.org/10.1007/s00429-012-0390-9","citation":"Kujovic, M., Zilles, K., Malikovic, A., Schleicher, A., Mohlberg, H., Rottschy, C., Eickhoff, S.B., Amunts, K. 2013. Cytoarchitectonic mapping of the human dorsal extrastriate cortex. Brain Struct Funct. 218(1):157-72"}],"associatedRegion":"Area hOc3d (Cuneus)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area hOc4d (Cuneus)","regionName":[{"regionName":"Area hOc4d (Cuneus)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area hOc4d (Cuneus)","name":"Cytoarchitectonic Probabilistic Map for Area hOc4d (Cuneus)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Visual_hOc4d.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area hOc4d (Cuneus)","description":"","publications":[{"doi":"https://doi.org/10.1007/s00429-012-0390-9","citation":"Kujovic, M., Zilles, K., Malikovic, A., Schleicher, A., Mohlberg, H., Rottschy, C., Eickhoff, S.B., Amunts, K. 2013. Cytoarchitectonic mapping of the human dorsal extrastriate cortex. Brain Struct Funct. 218(1):157-72"}],"associatedRegion":"Area hOc4d (Cuneus)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area hOc3v (LingG)","regionName":[{"regionName":"Area hOc3v (LingG)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area hOc3v (LingG)","name":"Cytoarchitectonic Probabilistic Map for Area hOc3v (LingG)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Visual_hOc3v.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area hOc3v (LingG)","description":"","publications":[{"doi":"https://doi.org/10.1002/hbm.20348","citation":"Rottschy, C., Eickhoff, S.B., Schleicher, A., Mohlberg, H., Kujovic, M., Zilles, K., Amunts, K. 2007. Ventral visual cortex in humans: cytoarchitectonic mapping of two extrastriate areas. Hum Brain Mapp. 28(10):1045-59"}],"associatedRegion":"Area hOc3v (LingG)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area hOc4v (LingG)","regionName":[{"regionName":"Area hOc4v (LingG)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area hOc4v (LingG)","name":"Cytoarchitectonic Probabilistic Map for Area hOc4v (LingG)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Visual_hOc4v.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area hOc4v (LingG)","description":"","publications":[{"doi":"https://doi.org/10.1002/hbm.20348","citation":"Rottschy, C., Eickhoff, S.B., Schleicher, A., Mohlberg, H., Kujovic, M., Zilles, K., Amunts, K. 2007. Ventral visual cortex in humans: cytoarchitectonic mapping of two extrastriate areas. Hum Brain Mapp. 28(10):1045-59"}],"associatedRegion":"Area hOc4v (LingG)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area hOc4la (LOC)","regionName":[{"regionName":"Area hOc4la (LOC)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area hOc4la (LOC)","name":"Cytoarchitectonic Probabilistic Map for Area hOc4la (LOC)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Visual_hOc4la.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area hOc4la (LOC)","description":"","publications":[{"doi":"https://doi.org/10.1007/s00429-015-1009-8","citation":"Malikovic, A., Amunts, K., Schleicher, A., Mohlberg, H., Kujovic, M., Palomero-Gallagher, N., Eickhoff, S.B., Zilles, K. 2016. Cytoarchitecture of the human lateral occipital cortex: mapping of two extrastriate areas hOc4la and hOc4lp. Brain Struct Funct. 221(4):1877-97 "}],"associatedRegion":"Area hOc4la (LOC)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area hOc4lp (LOC)","regionName":[{"regionName":"Area hOc4lp (LOC)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area hOc4lp (LOC)","name":"Cytoarchitectonic Probabilistic Map for Area hOc4lp (LOC)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Visual_hOc4lp.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area hOc4lp (LOC)","description":"","publications":[{"doi":"https://doi.org/10.1007/s00429-015-1009-8","citation":"Malikovic, A., Amunts, K., Schleicher, A., Mohlberg, H., Kujovic, M., Palomero-Gallagher, N., Eickhoff, S.B., Zilles, K. 2016. Cytoarchitecture of the human lateral occipital cortex: mapping of two extrastriate areas hOc4la and hOc4lp. Brain Struct Funct. 221(4):1877-97 "}],"associatedRegion":"Area hOc4lp (LOC)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Area hOc5 (LOC)","regionName":[{"regionName":"Area hOc5 (LOC)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Area hOc5 (LOC)","name":"Cytoarchitectonic Probabilistic Map for Area hOc5 (LOC)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Visual_hOc5.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Area hOc5 (LOC)","description":"","publications":[{"doi":"https://doi.org/10.1093/cercor/bhj181","citation":"Malikovic, A., Amunts, K., Schleicher, A., Mohlberg, H., Eickhoff, S.B., Wilms, M., Palomero-Gallagher, N., Armstrong, E., Zilles, K. 2007. Cytoarchitectonic analysis of the human extrastriate cortex in the region of V5/MT+: a probabilistic, stereotaxic map of area hOc5. Cereb Cortex. 17(3):562-74"}],"associatedRegion":"Area hOc5 (LOC)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for AStr (Amygdala)","regionName":[{"regionName":"AStr (Amygdala)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for AStr (Amygdala)","name":"Cytoarchitectonic Probabilistic Map for AStr (Amygdala)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Amygdala_AStr.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"AStr (Amygdala)","description":"","publications":[{"doi":"https://doi.org/10.1007/s00429-005-0025-5","citation":"Amunts, K., Kedo, O., Kindler, M., Pieperhoff, P., Mohlberg, H., Shah, N.J., Habel, U., Schneider, F., Zilles, K. 2005. Cytoarchitectonic mapping of the human amygdala, hippocampal region and entorhinal cortex: intersubject variability and probability maps. Anat Embryol (Berl). 210(5-6):343-52"}],"associatedRegion":"AStr (Amygdala)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for CM (Amygdala)","regionName":[{"regionName":"CM (Amygdala)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for CM (Amygdala)","name":"Cytoarchitectonic Probabilistic Map for CM (Amygdala)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Amygdala_CM.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"CM (Amygdala)","description":"","publications":[{"doi":"https://doi.org/10.1007/s00429-005-0025-5","citation":"Amunts, K., Kedo, O., Kindler, M., Pieperhoff, P., Mohlberg, H., Shah, N.J., Habel, U., Schneider, F., Zilles, K. 2005. Cytoarchitectonic mapping of the human amygdala, hippocampal region and entorhinal cortex: intersubject variability and probability maps. Anat Embryol (Berl). 210(5-6):343-52"}],"associatedRegion":"CM (Amygdala)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for LB (Amygdala)","regionName":[{"regionName":"LB (Amygdala)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for LB (Amygdala)","name":"Cytoarchitectonic Probabilistic Map for LB (Amygdala)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Amygdala_LB.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"LB (Amygdala)","description":"","publications":[{"doi":"https://doi.org/10.1007/s00429-005-0025-5","citation":"Amunts, K., Kedo, O., Kindler, M., Pieperhoff, P., Mohlberg, H., Shah, N.J., Habel, U., Schneider, F., Zilles, K. 2005. Cytoarchitectonic mapping of the human amygdala, hippocampal region and entorhinal cortex: intersubject variability and probability maps. Anat Embryol (Berl). 210(5-6):343-52"}],"associatedRegion":"LB (Amygdala)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for SF (Amygdala)","regionName":[{"regionName":"SF (Amygdala)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for SF (Amygdala)","name":"Cytoarchitectonic Probabilistic Map for SF (Amygdala)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Amygdala_SF.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"SF (Amygdala)","description":"","publications":[{"doi":"https://doi.org/10.1007/s00429-005-0025-5","citation":"Amunts, K., Kedo, O., Kindler, M., Pieperhoff, P., Mohlberg, H., Shah, N.J., Habel, U., Schneider, F., Zilles, K. 2005. Cytoarchitectonic mapping of the human amygdala, hippocampal region and entorhinal cortex: intersubject variability and probability maps. Anat Embryol (Berl). 210(5-6):343-52"}],"associatedRegion":"SF (Amygdala)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Ch 1-3 (Basal Forebrain)","regionName":[{"regionName":"Ch 1-3 (Basal Forebrain)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Ch 1-3 (Basal Forebrain)","name":"Cytoarchitectonic Probabilistic Map for Ch 1-3 (Basal Forebrain)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Bforebrain_123.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Ch 1-3 (Basal Forebrain)","description":"","publications":[{"doi":"https://doi.org/10.1016/j.neuroimage.2008.05.055","citation":"Zaborszky, L., Hoemke, L., Mohlberg, H., Schleicher, A., Amunts, K., Zilles, K. 2008. Stereotaxic probabilistic maps of the magnocellular cell groups in human basal forebrain. Neuroimage. 42(3):1127-41"}],"associatedRegion":"Ch 1-3 (Basal Forebrain)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Ch 4 (Basal Forebrain)","regionName":[{"regionName":"Ch 4 (Basal Forebrain)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Ch 4 (Basal Forebrain)","name":"Cytoarchitectonic Probabilistic Map for Ch 4 (Basal Forebrain)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Bforebrain_4.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Ch 4 (Basal Forebrain)","description":"","publications":[{"doi":"https://doi.org/10.1016/j.neuroimage.2008.05.055","citation":"Zaborszky, L., Hoemke, L., Mohlberg, H., Schleicher, A., Amunts, K., Zilles, K. 2008. Stereotaxic probabilistic maps of the magnocellular cell groups in human basal forebrain. Neuroimage. 42(3):1127-41"}],"associatedRegion":"Ch 4 (Basal Forebrain)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Dorsal Dentate Nucleus (Cerebellum)","regionName":[{"regionName":"Dorsal Dentate Nucleus (Cerebellum)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Dorsal Dentate Nucleus (Cerebellum)","name":"Cytoarchitectonic Probabilistic Map for Dorsal Dentate Nucleus (Cerebellum)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Cerebellum_Ndentd.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Dorsal Dentate Nucleus (Cerebellum)","description":"","publications":[{"doi":"https://doi.org/10.3389/fnana.2015.00054","citation":"Tellmann, S., Bludau, S., Eickhoff, S., Mohlberg, H., Minnerop, M., Amunts, K. 2015. Cytoarchitectonic mapping of the human brain cerebellar nuclei in stereotaxic space and delineation of their co-activation patterns. Front Neuroanat. 9:54."}],"associatedRegion":"Dorsal Dentate Nucleus (Cerebellum)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Ventral Dentate Nucleus (Cerebellum)","regionName":[{"regionName":"Ventral Dentate Nucleus (Cerebellum)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Ventral Dentate Nucleus (Cerebellum)","name":"Cytoarchitectonic Probabilistic Map for Ventral Dentate Nucleus (Cerebellum)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Cerebellum_Ndentv.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Ventral Dentate Nucleus (Cerebellum)","description":"","publications":[{"doi":"undefined","citation":"Tellmann, S., Bludau, S., Eickhoff, S., Mohlberg, H., Minnerop, M., Amunts, K. 2015. Cytoarchitectonic mapping of the human brain cerebellar nuclei in stereotaxic space and delineation of their co-activation patterns. Front Neuroanat. 9:54."}],"associatedRegion":"Ventral Dentate Nucleus (Cerebellum)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for Fastigial Nucleus (Cerebellum)","regionName":[{"regionName":"Fastigial Nucleus (Cerebellum)","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for Fastigial Nucleus (Cerebellum)","name":"Cytoarchitectonic Probabilistic Map for Fastigial Nucleus (Cerebellum)","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Cerebellum_Nfast.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Fastigial Nucleus (Cerebellum)","description":"","publications":[{"doi":"https://doi.org/10.3389/fnana.2015.00054","citation":"Tellmann, S., Bludau, S., Eickhoff, S., Mohlberg, H., Minnerop, M., Amunts, K. 2015. Cytoarchitectonic mapping of the human brain cerebellar nuclei in stereotaxic space and delineation of their co-activation patterns. Front Neuroanat. 9:54."}],"associatedRegion":"Fastigial Nucleus (Cerebellum)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}},{"type":"Cytoarchitectonic Probabilistic Map","name":"Cytoarchitectonic Probabilistic Map for emboliform nucleus, globose nucleus","regionName":[{"regionName":"emboliform nucleus, globose nucleus","relationship":"equals"}],"files":[{"filename":"Cytoarchitectonic Probabilistic Map for emboliform nucleus, globose nucleus","name":"Cytoarchitectonic Probabilistic Map for emboliform nucleus, globose nucleus","mimetype":"application/nifti","url":"https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Cerebellum_Ninterp.nii","properties":{}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas","properties":{"name":"Interposed Nucleus (Cerebellum)","description":"","publications":[{"doi":"https://doi.org/10.3389/fnana.2015.00054","citation":"Tellmann, S., Bludau, S., Eickhoff, S., Mohlberg, H., Minnerop, M., Amunts, K. 2015. Cytoarchitectonic mapping of the human brain cerebellar nuclei in stereotaxic space and delineation of their co-activation patterns. Front Neuroanat. 9:54."}],"associatedRegion":"Interposed Nucleus (Cerebellum)","associatedParcellation":"JuBrain Cytoarchitectonic Atlas","datasetInfo":"MNIColin27_PMap.json"}}]
\ No newline at end of file
diff --git a/src/res/ext/receptorAggregatedData.json b/src/res/ext/receptorAggregatedData.json
new file mode 100644
index 000000000..4898c352d
--- /dev/null
+++ b/src/res/ext/receptorAggregatedData.json
@@ -0,0 +1 @@
+[{"type":"Receptor Data","name":"Receptor Data for Area 3b","regionName":[{"regionName":"Area 3b (PostCG)","relationship":"equals"}],"properties":{"description":null,"publications":[]},"files":[{"name":"Receptor density fingerprint of Area 3b","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["327","387","933","2040","1490","1738","2493","471","253","739","55","255","730","217","394","88"]},{"label":"mean_sd","data":["162","180","147","541","352","623","601","121","63","283","20","91","291","90","97","31"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area 3b (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(17,250,140,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas"},{"type":"Receptor Data","name":"Receptor Data for Area 44d","regionName":[{"regionName":"Area 44 (IFG)","relationship":"is subset of","moreInfo":"dorsal"}],"properties":{"description":null,"publications":[]},"files":[{"name":"Receptor density fingerprint of Area 44d","filename":"fingerprint","mimetype":"application/json","properties":{"description":"**Multireceptor fingerprint for area 44d.** This polar plot shows the mean receptor densities in fmol/mg protein (solid shape) and standard deviation (dashed line) of 16 receptor binding sites in the area 44d. The data is based on the left and right hemisphere of one female subject (brain id: hg0201, sample ids: ID07 and ID08, age: 77, cause of death: lung edema) and the right hemispheres of two male subjects (brain id: hg0500, sample ids: ID09, age: 72, cause of death: cardiac arrest | brain id: hg0100, sample ids: ID12, age: 77, cause of death: coronary heart disease).","publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["492","498","964","NA","1302","1487","1797","631","247","432","47","126","179","284","271","62"]},{"label":"mean_sd","data":["70","84","95","NA","91","64","105","49","20","32","13","9","15","38","11","20"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area 44d (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(255,10,10,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAᴀ(BZ) in Area 44d","filename":"GABAᴀ(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_BZ.jpg"},{"name":"Sample autoradiograph of α₁(NA) in Area 44d","filename":"α₁(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area 44d","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAᴀ(GABA) in Area 44d","filename":"GABAᴀ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area 44d","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area 44d","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of M₁(ACh) in Area 44d","filename":"M₁(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HT₁ᴀ(5-HT) in Area 44d","filename":"5-HT₁ᴀ(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area 44d","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_kainate.jpg"},{"name":"Sample autoradiograph of M₂(ACh) in Area 44d","filename":"M₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area 44d","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_AMPA.jpg"},{"name":"Sample autoradiograph of D₁(DA) in Area 44d","filename":"D₁(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area 44d","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_M3.jpg"},{"name":"Sample autoradiograph of mGluR2/3 (Glu) in Area 44d","filename":"mGluR2\\/3 (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_mGluR2_3.jpg"},{"name":"Sample autoradiograph of 5-HT₂(5-HT) in Area 44d","filename":"5-HT₂(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAᴃ(GABA) in Area 44d","filename":"GABAᴃ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/44d_bm_GABAB.jpg"},{"name":"Sample profile of GABAᴀ(BZ) in Area 44d","filename":"GABAᴀ(BZ)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of BZ receptor in area 44d.** This profile plot shows examplary the course of the BZ receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴀ(BZ) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴀ(BZ) in Area 44d"],"datasets":[{"data":[{"x":0,"y":862.4783},{"x":1,"y":904.9561},{"x":2,"y":940.0621},{"x":3,"y":978.1732},{"x":4,"y":1021.4554},{"x":5,"y":1063.5893},{"x":6,"y":1100.5906},{"x":7,"y":1148.4482},{"x":8,"y":1196.1297},{"x":9,"y":1232.1727},{"x":10,"y":1279.4679},{"x":11,"y":1327.8814},{"x":12,"y":1381.3095},{"x":13,"y":1420.287},{"x":14,"y":1445.6493},{"x":15,"y":1466.8894},{"x":16,"y":1489.8366},{"x":17,"y":1516.5528},{"x":18,"y":1537.983},{"x":19,"y":1549.82},{"x":20,"y":1560.0878},{"x":21,"y":1567.4582},{"x":22,"y":1566.6033},{"x":23,"y":1563.7507},{"x":24,"y":1563.5412},{"x":25,"y":1556.1077},{"x":26,"y":1545.7337},{"x":27,"y":1538.1084},{"x":28,"y":1530.9002},{"x":29,"y":1520.4582},{"x":30,"y":1503.7746},{"x":31,"y":1487.0829},{"x":32,"y":1471.0083},{"x":33,"y":1453.8871},{"x":34,"y":1432.2643},{"x":35,"y":1411.4065},{"x":36,"y":1387.046},{"x":37,"y":1366.0299},{"x":38,"y":1344.2281},{"x":39,"y":1329.7899},{"x":40,"y":1314.2608},{"x":41,"y":1302.004},{"x":42,"y":1296.7537},{"x":43,"y":1291.258},{"x":44,"y":1287.8412},{"x":45,"y":1281.8791},{"x":46,"y":1275.2256},{"x":47,"y":1268.6997},{"x":48,"y":1259.4717},{"x":49,"y":1255.229},{"x":50,"y":1250.4567},{"x":51,"y":1242.1166},{"x":52,"y":1233.2152},{"x":53,"y":1219.9536},{"x":54,"y":1204.539},{"x":55,"y":1191.1147},{"x":56,"y":1172.3973},{"x":57,"y":1152.7135},{"x":58,"y":1138.4501},{"x":59,"y":1127.8171},{"x":60,"y":1117.035},{"x":61,"y":1109.6632},{"x":62,"y":1104.9799},{"x":63,"y":1102.4032},{"x":64,"y":1099.7075},{"x":65,"y":1094.5447},{"x":66,"y":1092.653},{"x":67,"y":1084.0402},{"x":68,"y":1075.0572},{"x":69,"y":1062.0217},{"x":70,"y":1047.0548},{"x":71,"y":1027.9635},{"x":72,"y":1014.9857},{"x":73,"y":1007.8998},{"x":74,"y":1001.2393},{"x":75,"y":994.2144},{"x":76,"y":990.1416},{"x":77,"y":993.5673},{"x":78,"y":1004.6509},{"x":79,"y":1024.5691},{"x":80,"y":1047.7956},{"x":81,"y":1063.0773},{"x":82,"y":1078.7763},{"x":83,"y":1090.9517},{"x":84,"y":1095.9374},{"x":85,"y":1095.7341},{"x":86,"y":1090.4028},{"x":87,"y":1081.8609},{"x":88,"y":1069.6875},{"x":89,"y":1057.9219},{"x":90,"y":1045.814},{"x":91,"y":1036.204},{"x":92,"y":1026.1815},{"x":93,"y":1013.0357},{"x":94,"y":997.8474},{"x":95,"y":983.3172},{"x":96,"y":965.7575},{"x":97,"y":941.5706},{"x":98,"y":912.861},{"x":99,"y":895.6904},{"x":100,"y":871.7232}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of α₁(NA) in Area 44d","filename":"α₁(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha1 receptor in area 44d.** This profile plot shows examplary the course of the alpha1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₁(NA) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₁(NA) in Area 44d"],"datasets":[{"data":[{"x":0,"y":130.7896},{"x":1,"y":140.9879},{"x":2,"y":149.0042},{"x":3,"y":156.8055},{"x":4,"y":161.9389},{"x":5,"y":166.5248},{"x":6,"y":170.7821},{"x":7,"y":175.1421},{"x":8,"y":178.7428},{"x":9,"y":181.1797},{"x":10,"y":183.5982},{"x":11,"y":184.1112},{"x":12,"y":182.259},{"x":13,"y":179.5397},{"x":14,"y":176.7495},{"x":15,"y":174.4247},{"x":16,"y":170.6559},{"x":17,"y":167.6534},{"x":18,"y":165.7885},{"x":19,"y":163.5237},{"x":20,"y":160.065},{"x":21,"y":157.9938},{"x":22,"y":155.5715},{"x":23,"y":151.8706},{"x":24,"y":147.3292},{"x":25,"y":144.302},{"x":26,"y":141.1756},{"x":27,"y":139.0418},{"x":28,"y":138.7087},{"x":29,"y":138.8131},{"x":30,"y":138.2365},{"x":31,"y":136.8411},{"x":32,"y":135.4582},{"x":33,"y":133.5539},{"x":34,"y":132.2366},{"x":35,"y":130.2886},{"x":36,"y":129.0109},{"x":37,"y":126.0496},{"x":38,"y":123.3321},{"x":39,"y":120.5614},{"x":40,"y":115.2084},{"x":41,"y":110.1425},{"x":42,"y":106.4546},{"x":43,"y":103.1611},{"x":44,"y":99.9261},{"x":45,"y":98.6637},{"x":46,"y":98.0565},{"x":47,"y":98.1878},{"x":48,"y":98.5189},{"x":49,"y":100.3296},{"x":50,"y":102.5879},{"x":51,"y":105.4071},{"x":52,"y":108.0192},{"x":53,"y":110.4559},{"x":54,"y":112.2943},{"x":55,"y":114.54},{"x":56,"y":116.1756},{"x":57,"y":116.5185},{"x":58,"y":117.7535},{"x":59,"y":119.244},{"x":60,"y":119.971},{"x":61,"y":121.1285},{"x":62,"y":121.2101},{"x":63,"y":119.7802},{"x":64,"y":117.5138},{"x":65,"y":115.7242},{"x":66,"y":113.4026},{"x":67,"y":111.6592},{"x":68,"y":110.293},{"x":69,"y":109.692},{"x":70,"y":108.6343},{"x":71,"y":108.5367},{"x":72,"y":108.3105},{"x":73,"y":108.2214},{"x":74,"y":108.7634},{"x":75,"y":108.8954},{"x":76,"y":108.4594},{"x":77,"y":108.3565},{"x":78,"y":109.0722},{"x":79,"y":109.682},{"x":80,"y":110.8478},{"x":81,"y":112.0725},{"x":82,"y":112.4945},{"x":83,"y":113.0226},{"x":84,"y":113.7216},{"x":85,"y":114.6475},{"x":86,"y":114.9371},{"x":87,"y":113.7731},{"x":88,"y":111.8517},{"x":89,"y":108.946},{"x":90,"y":106.0041},{"x":91,"y":102.8956},{"x":92,"y":99.6637},{"x":93,"y":96.4381},{"x":94,"y":94.214},{"x":95,"y":91.7969},{"x":96,"y":89.1278},{"x":97,"y":87.4982},{"x":98,"y":85.4295},{"x":99,"y":82.8105},{"x":100,"y":80.9758}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of NMDA (Glu) in Area 44d","filename":"NMDA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of NMDA receptor in area 44d.** This profile plot shows examplary the course of the NMDA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of NMDA (Glu) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of NMDA (Glu) in Area 44d"],"datasets":[{"data":[{"x":0,"y":635.6834},{"x":1,"y":675.208},{"x":2,"y":731.566},{"x":3,"y":801.7801},{"x":4,"y":856.3079},{"x":5,"y":897.7443},{"x":6,"y":948.6629},{"x":7,"y":993.517},{"x":8,"y":1029.8431},{"x":9,"y":1073.4983},{"x":10,"y":1107.4572},{"x":11,"y":1131.4918},{"x":12,"y":1156.1907},{"x":13,"y":1173.8513},{"x":14,"y":1182.4837},{"x":15,"y":1183.8551},{"x":16,"y":1185.7537},{"x":17,"y":1186.214},{"x":18,"y":1186.8223},{"x":19,"y":1190.7089},{"x":20,"y":1189.4357},{"x":21,"y":1188.8477},{"x":22,"y":1186.0213},{"x":23,"y":1180.0307},{"x":24,"y":1176.4207},{"x":25,"y":1167.4097},{"x":26,"y":1158.4317},{"x":27,"y":1156.7935},{"x":28,"y":1160.3882},{"x":29,"y":1166.0116},{"x":30,"y":1166.2152},{"x":31,"y":1165.6131},{"x":32,"y":1152.5813},{"x":33,"y":1136.9478},{"x":34,"y":1125.1997},{"x":35,"y":1113.9549},{"x":36,"y":1102.5153},{"x":37,"y":1092.1359},{"x":38,"y":1087.1594},{"x":39,"y":1084.7349},{"x":40,"y":1079.316},{"x":41,"y":1067.3251},{"x":42,"y":1049.1084},{"x":43,"y":1028.4688},{"x":44,"y":1016.6733},{"x":45,"y":1002.3098},{"x":46,"y":992.7893},{"x":47,"y":982.9068},{"x":48,"y":976.464},{"x":49,"y":973.9465},{"x":50,"y":972.8533},{"x":51,"y":967.9861},{"x":52,"y":962.3695},{"x":53,"y":957.2399},{"x":54,"y":956.5291},{"x":55,"y":952.3528},{"x":56,"y":951.5988},{"x":57,"y":955.7469},{"x":58,"y":951.71},{"x":59,"y":947.1888},{"x":60,"y":935.9046},{"x":61,"y":919.8848},{"x":62,"y":901.3947},{"x":63,"y":889.9072},{"x":64,"y":881.2536},{"x":65,"y":885.4057},{"x":66,"y":893.8111},{"x":67,"y":896.4547},{"x":68,"y":894.5928},{"x":69,"y":887.2078},{"x":70,"y":886.2902},{"x":71,"y":889.8892},{"x":72,"y":900.173},{"x":73,"y":906.2113},{"x":74,"y":907.9776},{"x":75,"y":912.0918},{"x":76,"y":911.2674},{"x":77,"y":906.7842},{"x":78,"y":901.9207},{"x":79,"y":890.6728},{"x":80,"y":883.168},{"x":81,"y":875.8116},{"x":82,"y":875.735},{"x":83,"y":880.3059},{"x":84,"y":882.1947},{"x":85,"y":878.5786},{"x":86,"y":871.6391},{"x":87,"y":857.0674},{"x":88,"y":841.2104},{"x":89,"y":824.9857},{"x":90,"y":810.9442},{"x":91,"y":792.5228},{"x":92,"y":782.8442},{"x":93,"y":777.4051},{"x":94,"y":769.2498},{"x":95,"y":749},{"x":96,"y":728.1304},{"x":97,"y":698.4146},{"x":98,"y":663.5727},{"x":99,"y":645.9479},{"x":100,"y":636.295}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of GABAᴀ(GABA) in Area 44d","filename":"GABAᴀ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAA receptor in area 44d.** This profile plot shows examplary the course of the GABAA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴀ(GABA) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴀ(GABA) in Area 44d"],"datasets":[{"data":[{"x":0,"y":912.3481},{"x":1,"y":996.6432},{"x":2,"y":1079.7845},{"x":3,"y":1171.4523},{"x":4,"y":1262.3768},{"x":5,"y":1335.6448},{"x":6,"y":1396.0595},{"x":7,"y":1455.7233},{"x":8,"y":1522.3495},{"x":9,"y":1580.9966},{"x":10,"y":1637.3171},{"x":11,"y":1687.9301},{"x":12,"y":1735.6324},{"x":13,"y":1774.6996},{"x":14,"y":1808.1959},{"x":15,"y":1836.3758},{"x":16,"y":1865.2314},{"x":17,"y":1892.1688},{"x":18,"y":1911.4762},{"x":19,"y":1925.1241},{"x":20,"y":1935.6455},{"x":21,"y":1943.2833},{"x":22,"y":1946.4122},{"x":23,"y":1945.428},{"x":24,"y":1942.7371},{"x":25,"y":1938.6823},{"x":26,"y":1929.423},{"x":27,"y":1916.1787},{"x":28,"y":1902.8158},{"x":29,"y":1889.6722},{"x":30,"y":1878.5519},{"x":31,"y":1865.9414},{"x":32,"y":1850.4099},{"x":33,"y":1836.4709},{"x":34,"y":1822.2781},{"x":35,"y":1804.9761},{"x":36,"y":1779.1261},{"x":37,"y":1758.0129},{"x":38,"y":1737.5998},{"x":39,"y":1714.4166},{"x":40,"y":1690.3024},{"x":41,"y":1669.4437},{"x":42,"y":1644.9303},{"x":43,"y":1618.1184},{"x":44,"y":1594.6439},{"x":45,"y":1574.1264},{"x":46,"y":1557.4766},{"x":47,"y":1535.8774},{"x":48,"y":1508.4733},{"x":49,"y":1481.9088},{"x":50,"y":1455.3302},{"x":51,"y":1430.6069},{"x":52,"y":1410.9065},{"x":53,"y":1388.7577},{"x":54,"y":1365.7271},{"x":55,"y":1341.8161},{"x":56,"y":1313.3073},{"x":57,"y":1283.5357},{"x":58,"y":1246.5555},{"x":59,"y":1211.1568},{"x":60,"y":1186.053},{"x":61,"y":1156.1117},{"x":62,"y":1126.0098},{"x":63,"y":1101.1334},{"x":64,"y":1083.0201},{"x":65,"y":1068.5558},{"x":66,"y":1058.3183},{"x":67,"y":1048.257},{"x":68,"y":1041.41},{"x":69,"y":1038.1881},{"x":70,"y":1039.6274},{"x":71,"y":1044.254},{"x":72,"y":1050.0164},{"x":73,"y":1059.0834},{"x":74,"y":1070.4546},{"x":75,"y":1076.9672},{"x":76,"y":1076.3121},{"x":77,"y":1074.6215},{"x":78,"y":1074.6933},{"x":79,"y":1073.7146},{"x":80,"y":1070.2358},{"x":81,"y":1062.9492},{"x":82,"y":1056.7149},{"x":83,"y":1045.6092},{"x":84,"y":1032.4597},{"x":85,"y":1022.5733},{"x":86,"y":1009.3236},{"x":87,"y":986.6053},{"x":88,"y":963.0126},{"x":89,"y":935.8529},{"x":90,"y":912.2505},{"x":91,"y":883.9803},{"x":92,"y":847.4967},{"x":93,"y":804.4859},{"x":94,"y":769.2487},{"x":95,"y":732.9212},{"x":96,"y":690.3731},{"x":97,"y":643.1514},{"x":98,"y":596.0863},{"x":99,"y":553.514},{"x":100,"y":509.3552}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of α₂(NA) in Area 44d","filename":"α₂(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha2 receptor in area 44d.** This profile plot shows examplary the course of the alpha2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the left hemisphere of one female subject (brain id: MR2, sample id: ID03, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₂(NA) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₂(NA) in Area 44d"],"datasets":[{"data":[{"x":0,"y":258.906},{"x":1,"y":323.761},{"x":2,"y":385.6594},{"x":3,"y":487.0577},{"x":4,"y":578.5347},{"x":5,"y":638.3412},{"x":6,"y":680.9127},{"x":7,"y":715.6179},{"x":8,"y":729.571},{"x":9,"y":735.6994},{"x":10,"y":739.6825},{"x":11,"y":737.0603},{"x":12,"y":730.7463},{"x":13,"y":728.7334},{"x":14,"y":725.1795},{"x":15,"y":721.2406},{"x":16,"y":711.7179},{"x":17,"y":705.9346},{"x":18,"y":702.8863},{"x":19,"y":705.6425},{"x":20,"y":709.4504},{"x":21,"y":709.7301},{"x":22,"y":707.2349},{"x":23,"y":702.9435},{"x":24,"y":689.2798},{"x":25,"y":667.4628},{"x":26,"y":649.9016},{"x":27,"y":636.0541},{"x":28,"y":623.3399},{"x":29,"y":618.5677},{"x":30,"y":614.4416},{"x":31,"y":609.7299},{"x":32,"y":598.9496},{"x":33,"y":585.4909},{"x":34,"y":571.5837},{"x":35,"y":565.209},{"x":36,"y":565.0373},{"x":37,"y":565.2943},{"x":38,"y":567.3824},{"x":39,"y":568.5015},{"x":40,"y":568.9158},{"x":41,"y":566.5511},{"x":42,"y":568.1449},{"x":43,"y":568.3208},{"x":44,"y":562.7546},{"x":45,"y":560.2755},{"x":46,"y":551.3378},{"x":47,"y":542.831},{"x":48,"y":537.2806},{"x":49,"y":535.26},{"x":50,"y":534.8153},{"x":51,"y":532.5874},{"x":52,"y":526.6135},{"x":53,"y":529.0138},{"x":54,"y":532.7288},{"x":55,"y":545.1786},{"x":56,"y":556.5306},{"x":57,"y":560.7763},{"x":58,"y":559.8273},{"x":59,"y":562.9999},{"x":60,"y":566.9763},{"x":61,"y":570.8686},{"x":62,"y":578.7531},{"x":63,"y":583.6336},{"x":64,"y":583.4727},{"x":65,"y":577.0996},{"x":66,"y":571.3407},{"x":67,"y":565.1271},{"x":68,"y":555.9465},{"x":69,"y":549.4008},{"x":70,"y":547.2537},{"x":71,"y":546.2475},{"x":72,"y":550.0539},{"x":73,"y":548.5338},{"x":74,"y":546.8921},{"x":75,"y":540.4656},{"x":76,"y":530.5863},{"x":77,"y":522.8556},{"x":78,"y":509.1711},{"x":79,"y":498.7558},{"x":80,"y":485.3802},{"x":81,"y":484.1224},{"x":82,"y":475.032},{"x":83,"y":469.7197},{"x":84,"y":469.363},{"x":85,"y":465.997},{"x":86,"y":466.2453},{"x":87,"y":470.733},{"x":88,"y":484.8594},{"x":89,"y":488.6708},{"x":90,"y":489.6416},{"x":91,"y":485.8919},{"x":92,"y":478.3548},{"x":93,"y":474.0475},{"x":94,"y":467.2134},{"x":95,"y":455.6761},{"x":96,"y":441.6636},{"x":97,"y":429.3606},{"x":98,"y":418.8048},{"x":99,"y":410.5251},{"x":100,"y":400.7364}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of α₄β₂(ACh) in Area 44d","filename":"α₄β₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha4-beta2 receptor in area 44d.** This profile plot shows examplary the course of the alpha4-beta2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the right hemisphere of one female subject (brain id: hg0201, sample id: ID08, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₄β₂(ACh) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₄β₂(ACh) in Area 44d"],"datasets":[{"data":[{"x":0,"y":17.5526},{"x":1,"y":18.2404},{"x":2,"y":19.5733},{"x":3,"y":20.7844},{"x":4,"y":21.6193},{"x":5,"y":22.3846},{"x":6,"y":22.8477},{"x":7,"y":23.1654},{"x":8,"y":23.5847},{"x":9,"y":23.7386},{"x":10,"y":23.6701},{"x":11,"y":23.5301},{"x":12,"y":23.2492},{"x":13,"y":23.2957},{"x":14,"y":23.5427},{"x":15,"y":23.2245},{"x":16,"y":22.832},{"x":17,"y":23.0307},{"x":18,"y":23.2984},{"x":19,"y":23.4381},{"x":20,"y":23.4944},{"x":21,"y":23.7969},{"x":22,"y":24.0208},{"x":23,"y":24.0548},{"x":24,"y":23.5701},{"x":25,"y":22.8164},{"x":26,"y":22.5366},{"x":27,"y":22.3094},{"x":28,"y":22.2348},{"x":29,"y":22.7725},{"x":30,"y":23.5598},{"x":31,"y":24.0013},{"x":32,"y":23.9982},{"x":33,"y":23.9236},{"x":34,"y":23.7299},{"x":35,"y":23.5581},{"x":36,"y":23.3843},{"x":37,"y":23.1688},{"x":38,"y":22.9755},{"x":39,"y":22.7365},{"x":40,"y":22.6232},{"x":41,"y":22.6734},{"x":42,"y":22.9171},{"x":43,"y":22.956},{"x":44,"y":23.3183},{"x":45,"y":23.7455},{"x":46,"y":23.5557},{"x":47,"y":23.005},{"x":48,"y":22.2134},{"x":49,"y":21.7504},{"x":50,"y":21.7787},{"x":51,"y":21.4508},{"x":52,"y":20.8724},{"x":53,"y":20.5354},{"x":54,"y":20.3356},{"x":55,"y":20.1915},{"x":56,"y":20.0113},{"x":57,"y":20.2368},{"x":58,"y":20.7617},{"x":59,"y":20.7408},{"x":60,"y":20.2946},{"x":61,"y":20.2009},{"x":62,"y":20.0558},{"x":63,"y":20.0194},{"x":64,"y":20.2714},{"x":65,"y":20.5244},{"x":66,"y":21.0666},{"x":67,"y":21.6686},{"x":68,"y":22.3135},{"x":69,"y":22.677},{"x":70,"y":22.5304},{"x":71,"y":22.0354},{"x":72,"y":21.3802},{"x":73,"y":21.1139},{"x":74,"y":20.9309},{"x":75,"y":20.402},{"x":76,"y":20.008},{"x":77,"y":19.9195},{"x":78,"y":19.8669},{"x":79,"y":19.9247},{"x":80,"y":20.0564},{"x":81,"y":20.1244},{"x":82,"y":20.026},{"x":83,"y":20.2388},{"x":84,"y":20.5598},{"x":85,"y":20.7589},{"x":86,"y":20.7626},{"x":87,"y":20.5186},{"x":88,"y":20.1381},{"x":89,"y":19.7113},{"x":90,"y":19.2301},{"x":91,"y":18.6025},{"x":92,"y":18.1931},{"x":93,"y":17.9235},{"x":94,"y":17.6553},{"x":95,"y":17.284},{"x":96,"y":17.0644},{"x":97,"y":17.3845},{"x":98,"y":17.9617},{"x":99,"y":18.4356},{"x":100,"y":18.5941}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of M₁(ACh) in Area 44d","filename":"M₁(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M1 receptor in area 44d.** This profile plot shows examplary the course of the M1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₁(ACh) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₁(ACh) in Area 44d"],"datasets":[{"data":[{"x":0,"y":313.546},{"x":1,"y":361.7929},{"x":2,"y":447.2941},{"x":3,"y":514.3602},{"x":4,"y":558.0369},{"x":5,"y":593.8824},{"x":6,"y":618.8681},{"x":7,"y":639.7403},{"x":8,"y":653.2936},{"x":9,"y":664.0382},{"x":10,"y":672.2016},{"x":11,"y":672.6758},{"x":12,"y":668.9245},{"x":13,"y":658.5671},{"x":14,"y":648.145},{"x":15,"y":641.9965},{"x":16,"y":636.6961},{"x":17,"y":630.5368},{"x":18,"y":628.4637},{"x":19,"y":621.4073},{"x":20,"y":614.7505},{"x":21,"y":605.0924},{"x":22,"y":594.472},{"x":23,"y":585.8544},{"x":24,"y":579.2243},{"x":25,"y":570.2165},{"x":26,"y":565.5268},{"x":27,"y":560.7574},{"x":28,"y":553.8616},{"x":29,"y":545.1053},{"x":30,"y":539.9686},{"x":31,"y":538.2401},{"x":32,"y":539.8369},{"x":33,"y":539.2209},{"x":34,"y":533.8936},{"x":35,"y":524.6271},{"x":36,"y":519.2756},{"x":37,"y":518.0102},{"x":38,"y":517.2448},{"x":39,"y":517.3816},{"x":40,"y":515.6336},{"x":41,"y":511.6281},{"x":42,"y":503.8306},{"x":43,"y":494.9269},{"x":44,"y":488.3262},{"x":45,"y":488.6405},{"x":46,"y":488.2667},{"x":47,"y":486.8587},{"x":48,"y":489.9742},{"x":49,"y":494.2543},{"x":50,"y":495.6959},{"x":51,"y":493.5618},{"x":52,"y":497.9808},{"x":53,"y":504.9782},{"x":54,"y":509.9584},{"x":55,"y":511.0333},{"x":56,"y":511.1714},{"x":57,"y":510.1776},{"x":58,"y":505.1185},{"x":59,"y":502.1561},{"x":60,"y":502.4967},{"x":61,"y":502.4418},{"x":62,"y":501.1555},{"x":63,"y":498.1769},{"x":64,"y":491.0947},{"x":65,"y":484.2246},{"x":66,"y":472.3104},{"x":67,"y":464.3543},{"x":68,"y":460.1109},{"x":69,"y":456.0898},{"x":70,"y":456.9378},{"x":71,"y":458.5709},{"x":72,"y":458.4806},{"x":73,"y":462.3733},{"x":74,"y":465.7086},{"x":75,"y":466.2267},{"x":76,"y":466.8956},{"x":77,"y":466.21},{"x":78,"y":465.885},{"x":79,"y":465.204},{"x":80,"y":460.9182},{"x":81,"y":456.0116},{"x":82,"y":455.5528},{"x":83,"y":459.9597},{"x":84,"y":464.2115},{"x":85,"y":465.2537},{"x":86,"y":463.1011},{"x":87,"y":463.6073},{"x":88,"y":460.8817},{"x":89,"y":460.0774},{"x":90,"y":456.752},{"x":91,"y":450.5186},{"x":92,"y":443.8293},{"x":93,"y":437.5721},{"x":94,"y":429.0259},{"x":95,"y":425.7858},{"x":96,"y":419.5481},{"x":97,"y":409.6851},{"x":98,"y":398.6156},{"x":99,"y":382.1942},{"x":100,"y":369.2543}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of 5-HT₁ᴀ(5-HT) in Area 44d","filename":"5-HT₁ᴀ(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT1A receptor in area 44d.** This profile plot shows examplary the course of the 5-HT1A receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HT₁ᴀ(5-HT) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HT₁ᴀ(5-HT) in Area 44d"],"datasets":[{"data":[{"x":0,"y":251.1687},{"x":1,"y":292.1791},{"x":2,"y":335.4423},{"x":3,"y":373.1974},{"x":4,"y":402.1425},{"x":5,"y":423.6878},{"x":6,"y":440.8275},{"x":7,"y":449.0834},{"x":8,"y":453.0224},{"x":9,"y":448.8108},{"x":10,"y":441.9429},{"x":11,"y":428.5094},{"x":12,"y":409.0018},{"x":13,"y":384.7616},{"x":14,"y":359.0341},{"x":15,"y":331.8055},{"x":16,"y":304.2962},{"x":17,"y":278.2472},{"x":18,"y":253.0892},{"x":19,"y":227.7848},{"x":20,"y":202.2447},{"x":21,"y":173.8034},{"x":22,"y":150.6384},{"x":23,"y":130.4725},{"x":24,"y":113.875},{"x":25,"y":100.5917},{"x":26,"y":87.8384},{"x":27,"y":77.2268},{"x":28,"y":69.2425},{"x":29,"y":61.2597},{"x":30,"y":54.8477},{"x":31,"y":50.0124},{"x":32,"y":45.5695},{"x":33,"y":42.0285},{"x":34,"y":40.4439},{"x":35,"y":39.8744},{"x":36,"y":40.2188},{"x":37,"y":40.3293},{"x":38,"y":41.1093},{"x":39,"y":42.2988},{"x":40,"y":45.3175},{"x":41,"y":47.7411},{"x":42,"y":49.5772},{"x":43,"y":50.8485},{"x":44,"y":51.5155},{"x":45,"y":52.0944},{"x":46,"y":52.5555},{"x":47,"y":53.0344},{"x":48,"y":53.3247},{"x":49,"y":54.1581},{"x":50,"y":54.6232},{"x":51,"y":54.6159},{"x":52,"y":53.527},{"x":53,"y":52.023},{"x":54,"y":50.158},{"x":55,"y":48.7169},{"x":56,"y":48.4705},{"x":57,"y":50.2604},{"x":58,"y":53.1866},{"x":59,"y":55.874},{"x":60,"y":56.7547},{"x":61,"y":57.8921},{"x":62,"y":59.834},{"x":63,"y":62.9697},{"x":64,"y":64.2389},{"x":65,"y":65.4007},{"x":66,"y":67.5106},{"x":67,"y":70.1354},{"x":68,"y":72.1528},{"x":69,"y":72.3329},{"x":70,"y":71.9944},{"x":71,"y":71.7902},{"x":72,"y":71.1925},{"x":73,"y":70.0294},{"x":74,"y":69.8533},{"x":75,"y":70.1553},{"x":76,"y":69.6739},{"x":77,"y":69.4489},{"x":78,"y":69.2739},{"x":79,"y":68.9588},{"x":80,"y":68.5633},{"x":81,"y":68.7765},{"x":82,"y":68.8536},{"x":83,"y":68.706},{"x":84,"y":68.4658},{"x":85,"y":67.1182},{"x":86,"y":64.856},{"x":87,"y":63.0971},{"x":88,"y":62.3344},{"x":89,"y":62.4029},{"x":90,"y":62.2243},{"x":91,"y":62.4207},{"x":92,"y":60.2785},{"x":93,"y":57.5698},{"x":94,"y":53.9428},{"x":95,"y":50.9729},{"x":96,"y":49.0661},{"x":97,"y":46.3767},{"x":98,"y":43.7904},{"x":99,"y":42.0633},{"x":100,"y":40.3077}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of kainate (Glu) in Area 44d","filename":"kainate (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of kainate receptor in area 44d.** This profile plot shows examplary the course of the kainate receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of kainate (Glu) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of kainate (Glu) in Area 44d"],"datasets":[{"data":[{"x":0,"y":200.462},{"x":1,"y":219.0966},{"x":2,"y":240.2642},{"x":3,"y":257.251},{"x":4,"y":268.9426},{"x":5,"y":273.9886},{"x":6,"y":276.9463},{"x":7,"y":277.3568},{"x":8,"y":278.1795},{"x":9,"y":279.0618},{"x":10,"y":279.7376},{"x":11,"y":276.6454},{"x":12,"y":274.9393},{"x":13,"y":269.1932},{"x":14,"y":261.135},{"x":15,"y":256.8986},{"x":16,"y":252.4615},{"x":17,"y":248.378},{"x":18,"y":243.7802},{"x":19,"y":242.3742},{"x":20,"y":242.4677},{"x":21,"y":242.5239},{"x":22,"y":243.5352},{"x":23,"y":247.7247},{"x":24,"y":252.8253},{"x":25,"y":261.1373},{"x":26,"y":268.2339},{"x":27,"y":275.328},{"x":28,"y":279.2139},{"x":29,"y":281.4273},{"x":30,"y":283.789},{"x":31,"y":287.7375},{"x":32,"y":287.595},{"x":33,"y":288.4525},{"x":34,"y":291.7259},{"x":35,"y":296.1431},{"x":36,"y":300.1256},{"x":37,"y":302.6832},{"x":38,"y":306.7004},{"x":39,"y":309.166},{"x":40,"y":311.6866},{"x":41,"y":314.5176},{"x":42,"y":318.5202},{"x":43,"y":321.2466},{"x":44,"y":328.6461},{"x":45,"y":338.2755},{"x":46,"y":347.1668},{"x":47,"y":355.3187},{"x":48,"y":358.9274},{"x":49,"y":358.8277},{"x":50,"y":360.8641},{"x":51,"y":361.5955},{"x":52,"y":362.6113},{"x":53,"y":363.6982},{"x":54,"y":364.006},{"x":55,"y":365.4474},{"x":56,"y":367.6931},{"x":57,"y":371.5471},{"x":58,"y":364.4084},{"x":59,"y":355.9306},{"x":60,"y":351.1936},{"x":61,"y":348.4529},{"x":62,"y":351.8186},{"x":63,"y":356.8513},{"x":64,"y":364.5136},{"x":65,"y":374.6698},{"x":66,"y":384.8628},{"x":67,"y":394.1341},{"x":68,"y":400.9571},{"x":69,"y":406.2036},{"x":70,"y":404.063},{"x":71,"y":399.9617},{"x":72,"y":397.3096},{"x":73,"y":394.8178},{"x":74,"y":395.9058},{"x":75,"y":401.1612},{"x":76,"y":412.6467},{"x":77,"y":424.0189},{"x":78,"y":430.9132},{"x":79,"y":436.0668},{"x":80,"y":439.8324},{"x":81,"y":441.4092},{"x":82,"y":441.8477},{"x":83,"y":444.485},{"x":84,"y":442.8231},{"x":85,"y":440.8566},{"x":86,"y":438.4664},{"x":87,"y":434.6087},{"x":88,"y":427.8757},{"x":89,"y":420.1199},{"x":90,"y":409.5986},{"x":91,"y":391.2202},{"x":92,"y":376.3157},{"x":93,"y":365.8075},{"x":94,"y":353.0862},{"x":95,"y":338.7337},{"x":96,"y":324.7985},{"x":97,"y":308.619},{"x":98,"y":292.278},{"x":99,"y":277.6494},{"x":100,"y":266.1569}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of M₂(ACh) in Area 44d","filename":"M₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M2 receptor in area 44d.** This profile plot shows examplary the course of the M2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₂(ACh) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₂(ACh) in Area 44d"],"datasets":[{"data":[{"x":0,"y":93.2184},{"x":1,"y":103.1357},{"x":2,"y":115.1558},{"x":3,"y":123.1287},{"x":4,"y":131.034},{"x":5,"y":140.4591},{"x":6,"y":151.3235},{"x":7,"y":161.2224},{"x":8,"y":169.6143},{"x":9,"y":175.8825},{"x":10,"y":180.0235},{"x":11,"y":184.3022},{"x":12,"y":188.5825},{"x":13,"y":192.049},{"x":14,"y":194.6534},{"x":15,"y":196.1512},{"x":16,"y":198.6462},{"x":17,"y":199.9249},{"x":18,"y":200.5163},{"x":19,"y":201.5036},{"x":20,"y":202.4789},{"x":21,"y":202.1745},{"x":22,"y":201.1561},{"x":23,"y":199.3915},{"x":24,"y":198.8221},{"x":25,"y":199.1613},{"x":26,"y":200.2707},{"x":27,"y":202.8377},{"x":28,"y":205.8513},{"x":29,"y":209.7773},{"x":30,"y":213.1075},{"x":31,"y":216.4215},{"x":32,"y":219.7069},{"x":33,"y":222.5147},{"x":34,"y":224.6821},{"x":35,"y":226.8198},{"x":36,"y":228.7891},{"x":37,"y":230.8875},{"x":38,"y":233.0398},{"x":39,"y":234.119},{"x":40,"y":235.1935},{"x":41,"y":235.4642},{"x":42,"y":234.6575},{"x":43,"y":233.0776},{"x":44,"y":229.6466},{"x":45,"y":225.3951},{"x":46,"y":220.0536},{"x":47,"y":214.4221},{"x":48,"y":210.509},{"x":49,"y":207.6994},{"x":50,"y":203.7463},{"x":51,"y":199.6389},{"x":52,"y":196.9513},{"x":53,"y":194.1214},{"x":54,"y":191.4016},{"x":55,"y":189.3127},{"x":56,"y":186.9284},{"x":57,"y":182.9922},{"x":58,"y":178.7413},{"x":59,"y":172.8912},{"x":60,"y":167.9207},{"x":61,"y":164.8473},{"x":62,"y":161.9009},{"x":63,"y":159.9647},{"x":64,"y":157.7585},{"x":65,"y":155.499},{"x":66,"y":153.1585},{"x":67,"y":151.2885},{"x":68,"y":148.9759},{"x":69,"y":145.7406},{"x":70,"y":141.3745},{"x":71,"y":137.0934},{"x":72,"y":132.1629},{"x":73,"y":127.965},{"x":74,"y":125.2032},{"x":75,"y":122.6182},{"x":76,"y":119.963},{"x":77,"y":117.1314},{"x":78,"y":113.9643},{"x":79,"y":110.1572},{"x":80,"y":105.3613},{"x":81,"y":100.4543},{"x":82,"y":95.4555},{"x":83,"y":90.4828},{"x":84,"y":85.3958},{"x":85,"y":80.6497},{"x":86,"y":77.4294},{"x":87,"y":74.2347},{"x":88,"y":71.0402},{"x":89,"y":68.3724},{"x":90,"y":66.644},{"x":91,"y":65.1889},{"x":92,"y":64.5341},{"x":93,"y":63.8138},{"x":94,"y":62.9068},{"x":95,"y":62.3178},{"x":96,"y":62.2611},{"x":97,"y":61.4104},{"x":98,"y":59.9989},{"x":99,"y":57.7467},{"x":100,"y":54.8007}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of AMPA (Glu) in Area 44d","filename":"AMPA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of AMPA receptor in area 44d.** This profile plot shows examplary the course of the AMPA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of AMPA (Glu) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of AMPA (Glu) in Area 44d"],"datasets":[{"data":[{"x":0,"y":394.4893},{"x":1,"y":471.3484},{"x":2,"y":537.6635},{"x":3,"y":580.7668},{"x":4,"y":626.9292},{"x":5,"y":668.1917},{"x":6,"y":698.0975},{"x":7,"y":717.6599},{"x":8,"y":738.6288},{"x":9,"y":757.4366},{"x":10,"y":763.276},{"x":11,"y":768.1709},{"x":12,"y":767.0118},{"x":13,"y":765.8774},{"x":14,"y":760.4468},{"x":15,"y":744.8279},{"x":16,"y":727.0702},{"x":17,"y":705.4638},{"x":18,"y":690.7208},{"x":19,"y":684.4329},{"x":20,"y":671.4423},{"x":21,"y":655.0578},{"x":22,"y":639.5821},{"x":23,"y":625.8872},{"x":24,"y":615.6989},{"x":25,"y":605.1466},{"x":26,"y":588.8357},{"x":27,"y":577.4551},{"x":28,"y":575.4859},{"x":29,"y":571.1853},{"x":30,"y":559.9771},{"x":31,"y":550.3172},{"x":32,"y":542.5281},{"x":33,"y":528.7033},{"x":34,"y":510.5884},{"x":35,"y":495.527},{"x":36,"y":475.044},{"x":37,"y":461.1956},{"x":38,"y":444.2648},{"x":39,"y":430.852},{"x":40,"y":423.8031},{"x":41,"y":414.6737},{"x":42,"y":412.4612},{"x":43,"y":408.9242},{"x":44,"y":408.6765},{"x":45,"y":409.7371},{"x":46,"y":409.4022},{"x":47,"y":407.8029},{"x":48,"y":405.3546},{"x":49,"y":401.0269},{"x":50,"y":407.9722},{"x":51,"y":408.8483},{"x":52,"y":410.6582},{"x":53,"y":415.5281},{"x":54,"y":417.1553},{"x":55,"y":416.2761},{"x":56,"y":415.384},{"x":57,"y":411.2004},{"x":58,"y":413.7434},{"x":59,"y":408.9485},{"x":60,"y":404.2081},{"x":61,"y":392.6014},{"x":62,"y":380.484},{"x":63,"y":369.9535},{"x":64,"y":362.7408},{"x":65,"y":364.9497},{"x":66,"y":365.5551},{"x":67,"y":372.0932},{"x":68,"y":376.5054},{"x":69,"y":380.6667},{"x":70,"y":386.7289},{"x":71,"y":395.5113},{"x":72,"y":407.996},{"x":73,"y":416.1717},{"x":74,"y":426.1499},{"x":75,"y":438.1099},{"x":76,"y":450.444},{"x":77,"y":464.721},{"x":78,"y":468.764},{"x":79,"y":469.6122},{"x":80,"y":470.3785},{"x":81,"y":468.9733},{"x":82,"y":463.8951},{"x":83,"y":459.4332},{"x":84,"y":454.636},{"x":85,"y":452.3507},{"x":86,"y":448.2997},{"x":87,"y":436.8888},{"x":88,"y":431.6521},{"x":89,"y":427.1004},{"x":90,"y":418.4885},{"x":91,"y":409.6601},{"x":92,"y":399.4179},{"x":93,"y":397.2279},{"x":94,"y":392.7307},{"x":95,"y":387.8207},{"x":96,"y":386.4799},{"x":97,"y":375.6887},{"x":98,"y":368.8953},{"x":99,"y":356.695},{"x":100,"y":347.1782}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of D₁(DA) in Area 44d","filename":"D₁(DA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of D1 receptor in area 44d.** This profile plot shows examplary the course of the D1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of D₁(DA) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of D₁(DA) in Area 44d"],"datasets":[{"data":[{"x":0,"y":32.7319},{"x":1,"y":35.9145},{"x":2,"y":38.7367},{"x":3,"y":42.3227},{"x":4,"y":45.1992},{"x":5,"y":47.5694},{"x":6,"y":50.2197},{"x":7,"y":52.3706},{"x":8,"y":54.0297},{"x":9,"y":54.7911},{"x":10,"y":54.4683},{"x":11,"y":54.4828},{"x":12,"y":54.4581},{"x":13,"y":54.3194},{"x":14,"y":55.1041},{"x":15,"y":56.0905},{"x":16,"y":56.3338},{"x":17,"y":56.4085},{"x":18,"y":57.339},{"x":19,"y":57.9534},{"x":20,"y":59.3908},{"x":21,"y":61.1295},{"x":22,"y":61.7137},{"x":23,"y":62.1137},{"x":24,"y":62.7767},{"x":25,"y":62.7798},{"x":26,"y":62.7508},{"x":27,"y":61.6807},{"x":28,"y":60.8846},{"x":29,"y":59.1123},{"x":30,"y":57.1592},{"x":31,"y":55.2384},{"x":32,"y":52.8224},{"x":33,"y":51.174},{"x":34,"y":49.9322},{"x":35,"y":49.3391},{"x":36,"y":49.3445},{"x":37,"y":49.6293},{"x":38,"y":49.9597},{"x":39,"y":50.6534},{"x":40,"y":50.4038},{"x":41,"y":50.6273},{"x":42,"y":49.8134},{"x":43,"y":49.3184},{"x":44,"y":49.9259},{"x":45,"y":50.0113},{"x":46,"y":49.2021},{"x":47,"y":47.9126},{"x":48,"y":47.632},{"x":49,"y":46.9682},{"x":50,"y":47.2963},{"x":51,"y":47.2764},{"x":52,"y":46.6159},{"x":53,"y":45.4707},{"x":54,"y":43.1105},{"x":55,"y":40.8404},{"x":56,"y":39.3035},{"x":57,"y":37.9769},{"x":58,"y":37.951},{"x":59,"y":37.253},{"x":60,"y":37.0677},{"x":61,"y":38.0543},{"x":62,"y":39.5552},{"x":63,"y":40.7926},{"x":64,"y":41.3663},{"x":65,"y":41.1027},{"x":66,"y":40.5752},{"x":67,"y":40.097},{"x":68,"y":40.061},{"x":69,"y":39.779},{"x":70,"y":39.3922},{"x":71,"y":39.3561},{"x":72,"y":39.6772},{"x":73,"y":39.7309},{"x":74,"y":39.1817},{"x":75,"y":38.3751},{"x":76,"y":37.4357},{"x":77,"y":37.5507},{"x":78,"y":38.1718},{"x":79,"y":39.0326},{"x":80,"y":40.3452},{"x":81,"y":40.9292},{"x":82,"y":40.7408},{"x":83,"y":40.9235},{"x":84,"y":40.7911},{"x":85,"y":40.3003},{"x":86,"y":39.7719},{"x":87,"y":38.9232},{"x":88,"y":38.9567},{"x":89,"y":37.904},{"x":90,"y":37.2853},{"x":91,"y":36.5316},{"x":92,"y":35.8586},{"x":93,"y":35.3685},{"x":94,"y":35.2083},{"x":95,"y":34.9295},{"x":96,"y":34.3932},{"x":97,"y":33.2022},{"x":98,"y":32.2496},{"x":99,"y":32.3176},{"x":100,"y":32.1952}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of M₃(ACh) in Area 44d","filename":"M₃(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M3 receptor in area 44d.** This profile plot shows examplary the course of the M3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₃(ACh) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₃(ACh) in Area 44d"],"datasets":[{"data":[{"x":0,"y":181.6928},{"x":1,"y":209.3769},{"x":2,"y":238.8042},{"x":3,"y":266.3184},{"x":4,"y":290.9064},{"x":5,"y":321.2672},{"x":6,"y":345.6814},{"x":7,"y":367.6579},{"x":8,"y":386.4631},{"x":9,"y":401.9595},{"x":10,"y":419.3571},{"x":11,"y":430.0322},{"x":12,"y":442.0946},{"x":13,"y":455.5119},{"x":14,"y":464.2999},{"x":15,"y":468.9489},{"x":16,"y":473.2186},{"x":17,"y":477.8601},{"x":18,"y":479.255},{"x":19,"y":481.2788},{"x":20,"y":482.211},{"x":21,"y":482.6805},{"x":22,"y":483.2452},{"x":23,"y":482.4359},{"x":24,"y":481.3923},{"x":25,"y":479.8466},{"x":26,"y":476.2967},{"x":27,"y":471.173},{"x":28,"y":465.3557},{"x":29,"y":457.9935},{"x":30,"y":451.0613},{"x":31,"y":443.6187},{"x":32,"y":438.2385},{"x":33,"y":433.2688},{"x":34,"y":427.6463},{"x":35,"y":423.1749},{"x":36,"y":419.5321},{"x":37,"y":417.1595},{"x":38,"y":413.3019},{"x":39,"y":411.1995},{"x":40,"y":409.2883},{"x":41,"y":408.4487},{"x":42,"y":408.3474},{"x":43,"y":409.2216},{"x":44,"y":409.1365},{"x":45,"y":408.8721},{"x":46,"y":408.8611},{"x":47,"y":409.1125},{"x":48,"y":409.0853},{"x":49,"y":407.0625},{"x":50,"y":405.8662},{"x":51,"y":404.8174},{"x":52,"y":402.1933},{"x":53,"y":399.1475},{"x":54,"y":395.8763},{"x":55,"y":392.1377},{"x":56,"y":389.2213},{"x":57,"y":387.29},{"x":58,"y":385.3987},{"x":59,"y":384.0028},{"x":60,"y":382.9141},{"x":61,"y":381.5524},{"x":62,"y":382.2029},{"x":63,"y":383.9521},{"x":64,"y":385.8295},{"x":65,"y":388.4446},{"x":66,"y":389.6158},{"x":67,"y":390.3206},{"x":68,"y":389.7638},{"x":69,"y":389.4435},{"x":70,"y":391.1708},{"x":71,"y":393.4089},{"x":72,"y":394.9677},{"x":73,"y":395.5718},{"x":74,"y":395.2982},{"x":75,"y":394.149},{"x":76,"y":392.1427},{"x":77,"y":390.222},{"x":78,"y":387.3561},{"x":79,"y":383.2475},{"x":80,"y":379.4461},{"x":81,"y":375.2683},{"x":82,"y":372.0121},{"x":83,"y":367.3401},{"x":84,"y":363.5408},{"x":85,"y":359.2233},{"x":86,"y":353.7349},{"x":87,"y":347.4025},{"x":88,"y":339.2659},{"x":89,"y":332.0984},{"x":90,"y":325.5551},{"x":91,"y":315.075},{"x":92,"y":305.2236},{"x":93,"y":294.2752},{"x":94,"y":281.8591},{"x":95,"y":269.8909},{"x":96,"y":255.5991},{"x":97,"y":244.3628},{"x":98,"y":233.264},{"x":99,"y":221.1245},{"x":100,"y":210.8364}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of mGluR2/3 (Glu) in Area 44d","filename":"mGluR2\\/3 (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of mGluR2_3 receptor in area 44d.** This profile plot shows examplary the course of the mGluR2_3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the right hemisphere of one male subject (brain id: MR1, sample id: ID02, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of mGluR2/3 (Glu) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of mGluR2/3 (Glu) in Area 44d"],"datasets":[{"data":[{"x":0,"y":4403.4427},{"x":1,"y":4958.9049},{"x":2,"y":5357.2508},{"x":3,"y":5598.1364},{"x":4,"y":5722.5589},{"x":5,"y":5761.7748},{"x":6,"y":5778.6601},{"x":7,"y":5808.6354},{"x":8,"y":5835.6404},{"x":9,"y":5862.9675},{"x":10,"y":5875.6631},{"x":11,"y":5875.3053},{"x":12,"y":5865.107},{"x":13,"y":5850.7607},{"x":14,"y":5844.5375},{"x":15,"y":5859.6391},{"x":16,"y":5853.783},{"x":17,"y":5820.8639},{"x":18,"y":5762.0115},{"x":19,"y":5699.3007},{"x":20,"y":5666.3809},{"x":21,"y":5671.3401},{"x":22,"y":5684.4404},{"x":23,"y":5666.4862},{"x":24,"y":5654.5559},{"x":25,"y":5622.9561},{"x":26,"y":5578.0225},{"x":27,"y":5543.372},{"x":28,"y":5513.3453},{"x":29,"y":5479.742},{"x":30,"y":5456.7717},{"x":31,"y":5475.507},{"x":32,"y":5487.5298},{"x":33,"y":5503.9094},{"x":34,"y":5502.4428},{"x":35,"y":5469.6668},{"x":36,"y":5448.6554},{"x":37,"y":5409.1504},{"x":38,"y":5359.8822},{"x":39,"y":5316.8486},{"x":40,"y":5263.6399},{"x":41,"y":5197.8975},{"x":42,"y":5116.3108},{"x":43,"y":5046.9792},{"x":44,"y":4983.1791},{"x":45,"y":4961.242},{"x":46,"y":4956.5321},{"x":47,"y":4925.8746},{"x":48,"y":4876.8215},{"x":49,"y":4847.9979},{"x":50,"y":4802.6523},{"x":51,"y":4713.9049},{"x":52,"y":4642.1307},{"x":53,"y":4571.7316},{"x":54,"y":4510.3528},{"x":55,"y":4441.5053},{"x":56,"y":4387.2892},{"x":57,"y":4287.4281},{"x":58,"y":4200.6298},{"x":59,"y":4122.5647},{"x":60,"y":4055.6308},{"x":61,"y":3998.0453},{"x":62,"y":3967.3063},{"x":63,"y":3985.6947},{"x":64,"y":4013.0377},{"x":65,"y":4075.9459},{"x":66,"y":4108.4332},{"x":67,"y":4119.8832},{"x":68,"y":4159.3305},{"x":69,"y":4178.9854},{"x":70,"y":4158.6225},{"x":71,"y":4152.0297},{"x":72,"y":4142.6888},{"x":73,"y":4119.9504},{"x":74,"y":4124.674},{"x":75,"y":4107.5824},{"x":76,"y":4096.622},{"x":77,"y":4079.7335},{"x":78,"y":4059.4347},{"x":79,"y":4055.9697},{"x":80,"y":4042.1845},{"x":81,"y":3993.9711},{"x":82,"y":3944.7543},{"x":83,"y":3893.0194},{"x":84,"y":3808.2293},{"x":85,"y":3722.8443},{"x":86,"y":3673.9847},{"x":87,"y":3601.4674},{"x":88,"y":3530.9261},{"x":89,"y":3453.8714},{"x":90,"y":3379.6515},{"x":91,"y":3288.3335},{"x":92,"y":3193.5304},{"x":93,"y":3110.969},{"x":94,"y":3030.3055},{"x":95,"y":2951.1841},{"x":96,"y":2881.4371},{"x":97,"y":2794.7832},{"x":98,"y":2717.0913},{"x":99,"y":2650.9733},{"x":100,"y":2566.4734}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of 5-HT₂(5-HT) in Area 44d","filename":"5-HT₂(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT2 receptor in area 44d.** This profile plot shows examplary the course of the 5-HT2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the right hemisphere of one female subject (brain id: hg0201, sample id: ID08, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HT₂(5-HT) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HT₂(5-HT) in Area 44d"],"datasets":[{"data":[{"x":0,"y":97.092},{"x":1,"y":104.3408},{"x":2,"y":110.5164},{"x":3,"y":116.3236},{"x":4,"y":122.4668},{"x":5,"y":128.5473},{"x":6,"y":135.3223},{"x":7,"y":142.6933},{"x":8,"y":149.4714},{"x":9,"y":155.1314},{"x":10,"y":161.8751},{"x":11,"y":169.7881},{"x":12,"y":177.4956},{"x":13,"y":184.6693},{"x":14,"y":191.439},{"x":15,"y":196.9733},{"x":16,"y":202.4843},{"x":17,"y":207.5687},{"x":18,"y":211.8998},{"x":19,"y":215.3632},{"x":20,"y":218.635},{"x":21,"y":220.5285},{"x":22,"y":222.0008},{"x":23,"y":223.7732},{"x":24,"y":224.1718},{"x":25,"y":224.3354},{"x":26,"y":224.548},{"x":27,"y":224.4246},{"x":28,"y":223.3974},{"x":29,"y":222.4332},{"x":30,"y":221.6875},{"x":31,"y":220.4874},{"x":32,"y":218.9136},{"x":33,"y":216.2046},{"x":34,"y":213.5476},{"x":35,"y":211.5501},{"x":36,"y":210.1752},{"x":37,"y":208.9046},{"x":38,"y":207.1878},{"x":39,"y":205.0565},{"x":40,"y":203.0967},{"x":41,"y":200.9384},{"x":42,"y":198.3259},{"x":43,"y":195.66},{"x":44,"y":192.834},{"x":45,"y":190.5644},{"x":46,"y":188.6767},{"x":47,"y":186.2852},{"x":48,"y":183.7053},{"x":49,"y":181.4329},{"x":50,"y":179.5511},{"x":51,"y":177.63},{"x":52,"y":175.4918},{"x":53,"y":173.1011},{"x":54,"y":170.8088},{"x":55,"y":168.0304},{"x":56,"y":164.914},{"x":57,"y":162.3261},{"x":58,"y":158.8997},{"x":59,"y":154.8305},{"x":60,"y":150.7637},{"x":61,"y":147.4759},{"x":62,"y":144.9258},{"x":63,"y":142.3047},{"x":64,"y":139.4476},{"x":65,"y":136.7734},{"x":66,"y":134.5885},{"x":67,"y":132.7118},{"x":68,"y":131.8688},{"x":69,"y":130.8907},{"x":70,"y":129.2658},{"x":71,"y":128.0842},{"x":72,"y":126.6551},{"x":73,"y":124.2787},{"x":74,"y":121.9226},{"x":75,"y":119.7772},{"x":76,"y":118.1565},{"x":77,"y":116.4454},{"x":78,"y":114.612},{"x":79,"y":112.7643},{"x":80,"y":111.1953},{"x":81,"y":109.7456},{"x":82,"y":108.7578},{"x":83,"y":108.5931},{"x":84,"y":109.038},{"x":85,"y":109.6749},{"x":86,"y":109.9372},{"x":87,"y":109.6498},{"x":88,"y":109.0769},{"x":89,"y":107.8839},{"x":90,"y":106.5514},{"x":91,"y":105.715},{"x":92,"y":104.928},{"x":93,"y":103.0836},{"x":94,"y":100.6395},{"x":95,"y":98.422},{"x":96,"y":96.3502},{"x":97,"y":94.5795},{"x":98,"y":92.5648},{"x":99,"y":90.7519},{"x":100,"y":89.1113}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null},{"name":"Sample profile of GABAᴃ(GABA) in Area 44d","filename":"GABAᴃ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAB receptor in area 44d.** This profile plot shows examplary the course of the GABAB receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 44d in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴃ(GABA) in Area 44d"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴃ(GABA) in Area 44d"],"datasets":[{"data":[{"x":0,"y":1476.2919},{"x":1,"y":1762.5631},{"x":2,"y":2034.7877},{"x":3,"y":2313.8205},{"x":4,"y":2600.5045},{"x":5,"y":2826.3772},{"x":6,"y":3009.7421},{"x":7,"y":3161.098},{"x":8,"y":3277.4132},{"x":9,"y":3339.5074},{"x":10,"y":3372.7479},{"x":11,"y":3383.8467},{"x":12,"y":3398.1041},{"x":13,"y":3419.0881},{"x":14,"y":3430.3504},{"x":15,"y":3440.8358},{"x":16,"y":3444.5447},{"x":17,"y":3440.4988},{"x":18,"y":3431.5065},{"x":19,"y":3420.8827},{"x":20,"y":3406.2077},{"x":21,"y":3405.592},{"x":22,"y":3408.1927},{"x":23,"y":3402.2505},{"x":24,"y":3389.0047},{"x":25,"y":3369.005},{"x":26,"y":3334.0964},{"x":27,"y":3297.8908},{"x":28,"y":3267.094},{"x":29,"y":3214.5224},{"x":30,"y":3163.3301},{"x":31,"y":3111.1754},{"x":32,"y":3062.2394},{"x":33,"y":3008.4039},{"x":34,"y":2950.6647},{"x":35,"y":2898.9615},{"x":36,"y":2845.1664},{"x":37,"y":2797.7995},{"x":38,"y":2750.2183},{"x":39,"y":2719.4246},{"x":40,"y":2689.8681},{"x":41,"y":2669.7715},{"x":42,"y":2653.8023},{"x":43,"y":2638.6884},{"x":44,"y":2620.0035},{"x":45,"y":2589.7398},{"x":46,"y":2551.3653},{"x":47,"y":2504.5155},{"x":48,"y":2468.7001},{"x":49,"y":2438.1229},{"x":50,"y":2412.2376},{"x":51,"y":2397.2192},{"x":52,"y":2387.1292},{"x":53,"y":2380.2226},{"x":54,"y":2376.0807},{"x":55,"y":2371.7558},{"x":56,"y":2368.3975},{"x":57,"y":2362.9948},{"x":58,"y":2360.5638},{"x":59,"y":2359.5598},{"x":60,"y":2361.8978},{"x":61,"y":2367.7813},{"x":62,"y":2368.0788},{"x":63,"y":2364.6556},{"x":64,"y":2359.5789},{"x":65,"y":2357.0598},{"x":66,"y":2349.8808},{"x":67,"y":2346.5194},{"x":68,"y":2342.2303},{"x":69,"y":2337.7906},{"x":70,"y":2340.0741},{"x":71,"y":2340.5464},{"x":72,"y":2343.1373},{"x":73,"y":2340.3749},{"x":74,"y":2326.9112},{"x":75,"y":2316.0376},{"x":76,"y":2299.2577},{"x":77,"y":2282.555},{"x":78,"y":2263.6567},{"x":79,"y":2247.6646},{"x":80,"y":2228.4797},{"x":81,"y":2208.8971},{"x":82,"y":2176.8879},{"x":83,"y":2131.3527},{"x":84,"y":2085.0548},{"x":85,"y":2031.9146},{"x":86,"y":1972.8947},{"x":87,"y":1899.0239},{"x":88,"y":1827.7844},{"x":89,"y":1749.6744},{"x":90,"y":1667.788},{"x":91,"y":1588.1607},{"x":92,"y":1513.0203},{"x":93,"y":1419.6582},{"x":94,"y":1322.0766},{"x":95,"y":1228.7828},{"x":96,"y":1139.0645},{"x":97,"y":1035.4337},{"x":98,"y":948.0768},{"x":99,"y":880.2652},{"x":100,"y":823.6772}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,10,10,0.2)"}]},"url":null}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas"},{"type":"Receptor Data","name":"Receptor Data for Area 44v","regionName":[{"regionName":"Area 44 (IFG)","relationship":"is subset of","moreInfo":"ventral"}],"properties":{"description":null,"publications":[]},"files":[{"name":"Receptor density fingerprint of Area 44v","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["295","490","1129","3545","1420","1965","2135","532","143","653","67","320","417","268","387","69"]},{"label":"mean_sd","data":["112","205","382","913","216","742","641","102","59","230","37","157","160","100","157","32"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area 44v (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(255,10,10,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas"},{"type":"Receptor Data","name":"Receptor Data for Area 45","regionName":[{"regionName":"Area 45 (IFG)","relationship":"equals"}],"properties":{"description":null,"publications":[]},"files":[{"name":"Receptor density fingerprint of Area 45","filename":"fingerprint","mimetype":"application/json","properties":{"description":"**Multireceptor fingerprint for area 45.** This polar plot shows the mean receptor densities in fmol/mg protein (solid shape) and standard deviation (dashed line) of 16 receptor binding sites in the area 45. The data is based on the left and right hemisphere of one female subject (brain id: hg0201, sample ids: ID07 and ID08, age: 77, cause of death: lung edema) and the right hemispheres of two male subjects (brain id: hg0500, sample ids: ID09, age: 72, cause of death: cardiac arrest | brain id: hg0100, sample ids: ID12, age: 77, cause of death: coronary heart disease).","publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["472","434","1078","NA","1515","1428","2038","676","215","420","47","200","165","404","266","69"]},{"label":"mean_sd","data":["379","264","40","NA","283","1197","1372","493","162","20","49","143","136","346","192","51"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area 45 (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(255,255,0,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAᴀ(BZ) in Area 45","filename":"GABAᴀ(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/45_bm_BZ.jpg"},{"name":"Sample autoradiograph of α₁(NA) in Area 45","filename":"α₁(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/45_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area 45","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/45_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAᴀ(GABA) in Area 45","filename":"GABAᴀ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/45_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area 45","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/45_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area 45","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/45_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of M₁(ACh) in Area 45","filename":"M₁(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/45_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HT₁ᴀ(5-HT) in Area 45","filename":"5-HT₁ᴀ(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/45_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area 45","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/45_bm_kainate.jpg"},{"name":"Sample autoradiograph of M₂(ACh) in Area 45","filename":"M₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/45_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area 45","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/45_bm_AMPA.jpg"},{"name":"Sample autoradiograph of D₁(DA) in Area 45","filename":"D₁(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/45_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area 45","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/45_bm_M3.jpg"},{"name":"Sample autoradiograph of mGluR2/3 (Glu) in Area 45","filename":"mGluR2\\/3 (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/45_bm_mGluR2_3.jpg"},{"name":"Sample autoradiograph of 5-HT₂(5-HT) in Area 45","filename":"5-HT₂(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/45_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAᴃ(GABA) in Area 45","filename":"GABAᴃ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/45_bm_GABAB.jpg"},{"name":"Sample profile of GABAᴀ(BZ) in Area 45","filename":"GABAᴀ(BZ)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of BZ receptor in area 45.** This profile plot shows examplary the course of the BZ receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴀ(BZ) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴀ(BZ) in Area 45"],"datasets":[{"data":[{"x":0,"y":1460.5346},{"x":1,"y":1583.3308},{"x":2,"y":1708.1363},{"x":3,"y":1800.648},{"x":4,"y":1890.2756},{"x":5,"y":1984.8448},{"x":6,"y":2070.8684},{"x":7,"y":2152.0161},{"x":8,"y":2222.3149},{"x":9,"y":2291.0953},{"x":10,"y":2356.3471},{"x":11,"y":2423.0595},{"x":12,"y":2481.5627},{"x":13,"y":2528.1947},{"x":14,"y":2561.3445},{"x":15,"y":2579.1757},{"x":16,"y":2590.0611},{"x":17,"y":2599.5073},{"x":18,"y":2600.3773},{"x":19,"y":2596.3105},{"x":20,"y":2599.551},{"x":21,"y":2610.8303},{"x":22,"y":2630.3976},{"x":23,"y":2650.42},{"x":24,"y":2661.193},{"x":25,"y":2673.7478},{"x":26,"y":2696.2352},{"x":27,"y":2715.9422},{"x":28,"y":2722.3722},{"x":29,"y":2714.4745},{"x":30,"y":2696.9457},{"x":31,"y":2666.065},{"x":32,"y":2628.7015},{"x":33,"y":2586.6432},{"x":34,"y":2539.0687},{"x":35,"y":2492.0848},{"x":36,"y":2445.7293},{"x":37,"y":2401.4904},{"x":38,"y":2355.5708},{"x":39,"y":2307.831},{"x":40,"y":2266.8691},{"x":41,"y":2227.8105},{"x":42,"y":2189.3588},{"x":43,"y":2160.8589},{"x":44,"y":2138.9827},{"x":45,"y":2124.0153},{"x":46,"y":2112.5699},{"x":47,"y":2107.8888},{"x":48,"y":2115.4407},{"x":49,"y":2125.1132},{"x":50,"y":2134.312},{"x":51,"y":2144.0797},{"x":52,"y":2148.1026},{"x":53,"y":2140.9344},{"x":54,"y":2126.352},{"x":55,"y":2107.0662},{"x":56,"y":2080.8445},{"x":57,"y":2044.8838},{"x":58,"y":2005.5724},{"x":59,"y":1971.4869},{"x":60,"y":1945.5765},{"x":61,"y":1920.2847},{"x":62,"y":1903.216},{"x":63,"y":1896.7831},{"x":64,"y":1896.8248},{"x":65,"y":1896.7542},{"x":66,"y":1896.0333},{"x":67,"y":1898.1594},{"x":68,"y":1898.8414},{"x":69,"y":1898.7958},{"x":70,"y":1893.3436},{"x":71,"y":1883.2048},{"x":72,"y":1866.9435},{"x":73,"y":1852.3357},{"x":74,"y":1837.6232},{"x":75,"y":1820.6235},{"x":76,"y":1801.4688},{"x":77,"y":1781.3909},{"x":78,"y":1760.8147},{"x":79,"y":1739.6217},{"x":80,"y":1712.6818},{"x":81,"y":1684.8448},{"x":82,"y":1654.5207},{"x":83,"y":1621.3143},{"x":84,"y":1585.5909},{"x":85,"y":1547.395},{"x":86,"y":1511.2916},{"x":87,"y":1469.6548},{"x":88,"y":1430.0076},{"x":89,"y":1392.449},{"x":90,"y":1359.7888},{"x":91,"y":1325.4199},{"x":92,"y":1293.4337},{"x":93,"y":1259.0874},{"x":94,"y":1221.506},{"x":95,"y":1183.6323},{"x":96,"y":1148.2095},{"x":97,"y":1114.2643},{"x":98,"y":1083.8378},{"x":99,"y":1047.8342},{"x":100,"y":1012.4125}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of α₁(NA) in Area 45","filename":"α₁(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha1 receptor in area 45.** This profile plot shows examplary the course of the alpha1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₁(NA) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₁(NA) in Area 45"],"datasets":[{"data":[{"x":0,"y":327.8791},{"x":1,"y":341.1026},{"x":2,"y":351.617},{"x":3,"y":359.3051},{"x":4,"y":364.3489},{"x":5,"y":368.2543},{"x":6,"y":369.8121},{"x":7,"y":370.5904},{"x":8,"y":370.2079},{"x":9,"y":368.4334},{"x":10,"y":366.0463},{"x":11,"y":363.6573},{"x":12,"y":360.9928},{"x":13,"y":358.2906},{"x":14,"y":354.5059},{"x":15,"y":351.5285},{"x":16,"y":349.3263},{"x":17,"y":347.299},{"x":18,"y":344.9121},{"x":19,"y":342.3601},{"x":20,"y":339.4348},{"x":21,"y":337.1609},{"x":22,"y":334.8319},{"x":23,"y":332.476},{"x":24,"y":329.6532},{"x":25,"y":326.627},{"x":26,"y":323.0913},{"x":27,"y":319.9109},{"x":28,"y":316.3637},{"x":29,"y":313.8329},{"x":30,"y":312.1855},{"x":31,"y":309.8868},{"x":32,"y":307.8339},{"x":33,"y":305.3263},{"x":34,"y":303.0805},{"x":35,"y":300.7978},{"x":36,"y":297.37},{"x":37,"y":294.9973},{"x":38,"y":292.9894},{"x":39,"y":290.5998},{"x":40,"y":288.3233},{"x":41,"y":285.9239},{"x":42,"y":283.3922},{"x":43,"y":280.0843},{"x":44,"y":276.3924},{"x":45,"y":272.3486},{"x":46,"y":268.0093},{"x":47,"y":263.137},{"x":48,"y":257.545},{"x":49,"y":252.9017},{"x":50,"y":248.6916},{"x":51,"y":243.4231},{"x":52,"y":238.875},{"x":53,"y":235.322},{"x":54,"y":232.3812},{"x":55,"y":229.4491},{"x":56,"y":228.4114},{"x":57,"y":228.2313},{"x":58,"y":229.1504},{"x":59,"y":230.5842},{"x":60,"y":231.8071},{"x":61,"y":234.1302},{"x":62,"y":236.2096},{"x":63,"y":237.869},{"x":64,"y":239.9943},{"x":65,"y":242.0023},{"x":66,"y":242.9794},{"x":67,"y":243.8649},{"x":68,"y":244.8978},{"x":69,"y":245.1278},{"x":70,"y":245.4387},{"x":71,"y":245.8692},{"x":72,"y":246.3646},{"x":73,"y":246.9616},{"x":74,"y":247.4434},{"x":75,"y":247.6941},{"x":76,"y":248.3069},{"x":77,"y":248.0117},{"x":78,"y":248.1423},{"x":79,"y":248.4666},{"x":80,"y":247.758},{"x":81,"y":247.3917},{"x":82,"y":247.5765},{"x":83,"y":247.33},{"x":84,"y":246.4404},{"x":85,"y":245.1479},{"x":86,"y":243.0743},{"x":87,"y":239.8171},{"x":88,"y":237.5107},{"x":89,"y":234.2044},{"x":90,"y":229.576},{"x":91,"y":224.9077},{"x":92,"y":220.0178},{"x":93,"y":214.1619},{"x":94,"y":208.4733},{"x":95,"y":201.9736},{"x":96,"y":194.6076},{"x":97,"y":187.7017},{"x":98,"y":181.5218},{"x":99,"y":173.9228},{"x":100,"y":165.131}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of NMDA (Glu) in Area 45","filename":"NMDA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of NMDA receptor in area 45.** This profile plot shows examplary the course of the NMDA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of NMDA (Glu) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of NMDA (Glu) in Area 45"],"datasets":[{"data":[{"x":0,"y":794.48},{"x":1,"y":940.5194},{"x":2,"y":1053.7778},{"x":3,"y":1138.8911},{"x":4,"y":1203.1464},{"x":5,"y":1267.0606},{"x":6,"y":1327.3684},{"x":7,"y":1379.3621},{"x":8,"y":1419.2054},{"x":9,"y":1446.2068},{"x":10,"y":1473.0183},{"x":11,"y":1492.259},{"x":12,"y":1518.4788},{"x":13,"y":1535.2658},{"x":14,"y":1544.8996},{"x":15,"y":1552.355},{"x":16,"y":1558.8289},{"x":17,"y":1564.4463},{"x":18,"y":1562.6365},{"x":19,"y":1559.8785},{"x":20,"y":1552.9332},{"x":21,"y":1554.6604},{"x":22,"y":1554.1087},{"x":23,"y":1560.5853},{"x":24,"y":1562.5948},{"x":25,"y":1571.5308},{"x":26,"y":1572.5263},{"x":27,"y":1574.6635},{"x":28,"y":1578.3071},{"x":29,"y":1580.245},{"x":30,"y":1576.3369},{"x":31,"y":1572.3838},{"x":32,"y":1560.6553},{"x":33,"y":1540.2516},{"x":34,"y":1528.7306},{"x":35,"y":1524.9832},{"x":36,"y":1519.8077},{"x":37,"y":1511.4899},{"x":38,"y":1496.5061},{"x":39,"y":1480.3498},{"x":40,"y":1458.8332},{"x":41,"y":1443.0229},{"x":42,"y":1435.5261},{"x":43,"y":1442.0053},{"x":44,"y":1444.9074},{"x":45,"y":1441.6402},{"x":46,"y":1431.2902},{"x":47,"y":1414.4441},{"x":48,"y":1386.7586},{"x":49,"y":1366.3089},{"x":50,"y":1356.5942},{"x":51,"y":1344.4671},{"x":52,"y":1347.008},{"x":53,"y":1353.9855},{"x":54,"y":1361.1103},{"x":55,"y":1370.0409},{"x":56,"y":1372.2204},{"x":57,"y":1368.4059},{"x":58,"y":1351.1588},{"x":59,"y":1322.46},{"x":60,"y":1289.138},{"x":61,"y":1265.448},{"x":62,"y":1254.4053},{"x":63,"y":1248.441},{"x":64,"y":1243.3412},{"x":65,"y":1237.8682},{"x":66,"y":1242.824},{"x":67,"y":1246.9858},{"x":68,"y":1263.4056},{"x":69,"y":1278.3532},{"x":70,"y":1288.1314},{"x":71,"y":1290.8899},{"x":72,"y":1292.9224},{"x":73,"y":1299.5247},{"x":74,"y":1303.8868},{"x":75,"y":1301.8321},{"x":76,"y":1300.349},{"x":77,"y":1296.586},{"x":78,"y":1289.4988},{"x":79,"y":1285.662},{"x":80,"y":1267.5848},{"x":81,"y":1257.3968},{"x":82,"y":1252.3141},{"x":83,"y":1241.438},{"x":84,"y":1222.7781},{"x":85,"y":1212.0271},{"x":86,"y":1190.7008},{"x":87,"y":1171.4413},{"x":88,"y":1155.1947},{"x":89,"y":1135.3368},{"x":90,"y":1119.4464},{"x":91,"y":1105.8203},{"x":92,"y":1095.4363},{"x":93,"y":1091.4803},{"x":94,"y":1087.1864},{"x":95,"y":1078.3759},{"x":96,"y":1066.9846},{"x":97,"y":1043.7603},{"x":98,"y":1004.485},{"x":99,"y":956.7271},{"x":100,"y":913.7368}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of GABAᴀ(GABA) in Area 45","filename":"GABAᴀ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAA receptor in area 45.** This profile plot shows examplary the course of the GABAA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴀ(GABA) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴀ(GABA) in Area 45"],"datasets":[{"data":[{"x":0,"y":634.7955},{"x":1,"y":715.7687},{"x":2,"y":781.4727},{"x":3,"y":841.6638},{"x":4,"y":893.3103},{"x":5,"y":942.649},{"x":6,"y":985.8463},{"x":7,"y":1025.6416},{"x":8,"y":1062.7935},{"x":9,"y":1096.052},{"x":10,"y":1126.9579},{"x":11,"y":1153.8377},{"x":12,"y":1179.5711},{"x":13,"y":1201.6221},{"x":14,"y":1229.0763},{"x":15,"y":1253.4402},{"x":16,"y":1275.9424},{"x":17,"y":1296.356},{"x":18,"y":1314.8697},{"x":19,"y":1331.5639},{"x":20,"y":1347.287},{"x":21,"y":1360.9799},{"x":22,"y":1372.1697},{"x":23,"y":1380.9359},{"x":24,"y":1388.4395},{"x":25,"y":1392.0004},{"x":26,"y":1396.9711},{"x":27,"y":1401.0227},{"x":28,"y":1403.3993},{"x":29,"y":1404.9848},{"x":30,"y":1404.3766},{"x":31,"y":1402.9943},{"x":32,"y":1401.174},{"x":33,"y":1399.7365},{"x":34,"y":1397.613},{"x":35,"y":1394.3467},{"x":36,"y":1387.9961},{"x":37,"y":1379.3701},{"x":38,"y":1371.4225},{"x":39,"y":1358.4867},{"x":40,"y":1342.9006},{"x":41,"y":1327.155},{"x":42,"y":1315.2908},{"x":43,"y":1305.4578},{"x":44,"y":1295.1727},{"x":45,"y":1287.0624},{"x":46,"y":1278.0306},{"x":47,"y":1266.3693},{"x":48,"y":1257.2815},{"x":49,"y":1245.7491},{"x":50,"y":1235.1726},{"x":51,"y":1224.1686},{"x":52,"y":1208.1746},{"x":53,"y":1192.3328},{"x":54,"y":1177.2653},{"x":55,"y":1163.3418},{"x":56,"y":1147.4035},{"x":57,"y":1129.5419},{"x":58,"y":1114.4937},{"x":59,"y":1099.1838},{"x":60,"y":1086.0729},{"x":61,"y":1076.9446},{"x":62,"y":1070.4595},{"x":63,"y":1064.1696},{"x":64,"y":1058.0249},{"x":65,"y":1053.0802},{"x":66,"y":1044.8731},{"x":67,"y":1035.0001},{"x":68,"y":1023.007},{"x":69,"y":1006.423},{"x":70,"y":991.4522},{"x":71,"y":978.5116},{"x":72,"y":967.3209},{"x":73,"y":956.6532},{"x":74,"y":947.8532},{"x":75,"y":941.6319},{"x":76,"y":935.5573},{"x":77,"y":930.03},{"x":78,"y":926.5992},{"x":79,"y":925.0053},{"x":80,"y":920.6719},{"x":81,"y":918.1176},{"x":82,"y":915.8306},{"x":83,"y":914.1149},{"x":84,"y":913.2848},{"x":85,"y":911.3195},{"x":86,"y":910.1863},{"x":87,"y":905.2434},{"x":88,"y":899.6303},{"x":89,"y":892.9108},{"x":90,"y":884.336},{"x":91,"y":875.9214},{"x":92,"y":868.2849},{"x":93,"y":858.6831},{"x":94,"y":847.3264},{"x":95,"y":832.4932},{"x":96,"y":815.744},{"x":97,"y":799.3396},{"x":98,"y":779.2884},{"x":99,"y":760.3062},{"x":100,"y":740.1593}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of α₂(NA) in Area 45","filename":"α₂(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha2 receptor in area 45.** This profile plot shows examplary the course of the alpha2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₂(NA) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₂(NA) in Area 45"],"datasets":[{"data":[{"x":0,"y":469.4491},{"x":1,"y":565.3924},{"x":2,"y":649.6494},{"x":3,"y":706.2583},{"x":4,"y":752.2487},{"x":5,"y":781.4631},{"x":6,"y":799.2048},{"x":7,"y":819.3022},{"x":8,"y":834.5061},{"x":9,"y":846.5419},{"x":10,"y":850.3304},{"x":11,"y":854.2942},{"x":12,"y":862.9013},{"x":13,"y":871.4134},{"x":14,"y":878.3993},{"x":15,"y":887.5916},{"x":16,"y":894.3492},{"x":17,"y":897.555},{"x":18,"y":897.5188},{"x":19,"y":890.8574},{"x":20,"y":873.5223},{"x":21,"y":862.6063},{"x":22,"y":855.4998},{"x":23,"y":851.1521},{"x":24,"y":848.3233},{"x":25,"y":841.817},{"x":26,"y":830.2764},{"x":27,"y":822.4912},{"x":28,"y":823.464},{"x":29,"y":820.342},{"x":30,"y":808.145},{"x":31,"y":801.8473},{"x":32,"y":799.092},{"x":33,"y":782.1962},{"x":34,"y":767.9729},{"x":35,"y":758.9476},{"x":36,"y":745.7124},{"x":37,"y":733.059},{"x":38,"y":712.6502},{"x":39,"y":703.5573},{"x":40,"y":698.6915},{"x":41,"y":692.2061},{"x":42,"y":690.6356},{"x":43,"y":685.4944},{"x":44,"y":679.0913},{"x":45,"y":675.183},{"x":46,"y":664.7518},{"x":47,"y":652.0746},{"x":48,"y":641.0708},{"x":49,"y":634.0346},{"x":50,"y":628.3031},{"x":51,"y":616.9945},{"x":52,"y":601.6129},{"x":53,"y":591.6409},{"x":54,"y":585.105},{"x":55,"y":577.5199},{"x":56,"y":566.2117},{"x":57,"y":567.1189},{"x":58,"y":577.0754},{"x":59,"y":584.2058},{"x":60,"y":582.6771},{"x":61,"y":584.2724},{"x":62,"y":585.7733},{"x":63,"y":587.1189},{"x":64,"y":581.0198},{"x":65,"y":578.8378},{"x":66,"y":579.3392},{"x":67,"y":575.0687},{"x":68,"y":562.4258},{"x":69,"y":547.4474},{"x":70,"y":534.9731},{"x":71,"y":522.2081},{"x":72,"y":516.2615},{"x":73,"y":504.3176},{"x":74,"y":493.2196},{"x":75,"y":485.6598},{"x":76,"y":480.8628},{"x":77,"y":476.1611},{"x":78,"y":469.3088},{"x":79,"y":462.6646},{"x":80,"y":457.6205},{"x":81,"y":452.4885},{"x":82,"y":450.9453},{"x":83,"y":452.5669},{"x":84,"y":445.114},{"x":85,"y":438.5897},{"x":86,"y":426.6008},{"x":87,"y":409.3276},{"x":88,"y":395.8666},{"x":89,"y":372.2243},{"x":90,"y":344.2449},{"x":91,"y":321.0722},{"x":92,"y":301.7635},{"x":93,"y":283.1574},{"x":94,"y":267.6314},{"x":95,"y":259.9897},{"x":96,"y":252.0991},{"x":97,"y":243.6278},{"x":98,"y":235.2602},{"x":99,"y":221.5029},{"x":100,"y":207.5209}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of α₄β₂(ACh) in Area 45","filename":"α₄β₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha4-beta2 receptor in area 45.** This profile plot shows examplary the course of the alpha4-beta2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₄β₂(ACh) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₄β₂(ACh) in Area 45"],"datasets":[{"data":[{"x":0,"y":13.2101},{"x":1,"y":15.6055},{"x":2,"y":17.279},{"x":3,"y":19.2977},{"x":4,"y":21.3187},{"x":5,"y":23.1311},{"x":6,"y":26.4183},{"x":7,"y":28.5334},{"x":8,"y":28.7524},{"x":9,"y":29.8097},{"x":10,"y":30.7849},{"x":11,"y":30.8247},{"x":12,"y":30.2471},{"x":13,"y":28.7272},{"x":14,"y":27.1162},{"x":15,"y":26.1655},{"x":16,"y":26.1373},{"x":17,"y":26.6089},{"x":18,"y":26.8998},{"x":19,"y":27.1571},{"x":20,"y":27.271},{"x":21,"y":27.3772},{"x":22,"y":27.5579},{"x":23,"y":27.463},{"x":24,"y":27.2674},{"x":25,"y":27.3969},{"x":26,"y":28.0425},{"x":27,"y":29.0192},{"x":28,"y":29.6249},{"x":29,"y":30.4451},{"x":30,"y":30.3474},{"x":31,"y":31.8173},{"x":32,"y":32.6919},{"x":33,"y":32.9726},{"x":34,"y":33.1706},{"x":35,"y":33.6537},{"x":36,"y":33.4897},{"x":37,"y":33.6151},{"x":38,"y":33.682},{"x":39,"y":33.3453},{"x":40,"y":32.3363},{"x":41,"y":31.7709},{"x":42,"y":30.8566},{"x":43,"y":30.3814},{"x":44,"y":30.7077},{"x":45,"y":30.5846},{"x":46,"y":30.4693},{"x":47,"y":29.9682},{"x":48,"y":29.9551},{"x":49,"y":29.3887},{"x":50,"y":29.3968},{"x":51,"y":30.2142},{"x":52,"y":30.3134},{"x":53,"y":30.1211},{"x":54,"y":29.7808},{"x":55,"y":29.2502},{"x":56,"y":28.5542},{"x":57,"y":28.1366},{"x":58,"y":28.7265},{"x":59,"y":29.1477},{"x":60,"y":29.6566},{"x":61,"y":29.5394},{"x":62,"y":29.0037},{"x":63,"y":28.3007},{"x":64,"y":27.6114},{"x":65,"y":28.3795},{"x":66,"y":29.7751},{"x":67,"y":29.5407},{"x":68,"y":28.8095},{"x":69,"y":28.3867},{"x":70,"y":29.0855},{"x":71,"y":28.9202},{"x":72,"y":28.5972},{"x":73,"y":27.7725},{"x":74,"y":27.6129},{"x":75,"y":27.3254},{"x":76,"y":27.9318},{"x":77,"y":28.2839},{"x":78,"y":29.1676},{"x":79,"y":30.1504},{"x":80,"y":30.9573},{"x":81,"y":31.6251},{"x":82,"y":31.6644},{"x":83,"y":31.6194},{"x":84,"y":31.734},{"x":85,"y":32.0767},{"x":86,"y":32.0147},{"x":87,"y":32.4512},{"x":88,"y":32.5375},{"x":89,"y":31.6079},{"x":90,"y":30.9472},{"x":91,"y":30.4269},{"x":92,"y":30.384},{"x":93,"y":30.8271},{"x":94,"y":30.6763},{"x":95,"y":29.2631},{"x":96,"y":27.2017},{"x":97,"y":26.1304},{"x":98,"y":24.631},{"x":99,"y":23.3251},{"x":100,"y":22.6634}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of M₁(ACh) in Area 45","filename":"M₁(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M1 receptor in area 45.** This profile plot shows examplary the course of the M1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the right hemisphere of one male subject (brain id: MR1, sample id: ID02, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₁(ACh) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₁(ACh) in Area 45"],"datasets":[{"data":[{"x":0,"y":381.9101},{"x":1,"y":436.8927},{"x":2,"y":478.9781},{"x":3,"y":506.1044},{"x":4,"y":520.4062},{"x":5,"y":533.0569},{"x":6,"y":549.4602},{"x":7,"y":566.1098},{"x":8,"y":578.5351},{"x":9,"y":585.9845},{"x":10,"y":587.9969},{"x":11,"y":588.5602},{"x":12,"y":589.9104},{"x":13,"y":587.9436},{"x":14,"y":586.9858},{"x":15,"y":584.7292},{"x":16,"y":581.5806},{"x":17,"y":580.4543},{"x":18,"y":577.1911},{"x":19,"y":572.4089},{"x":20,"y":567.5581},{"x":21,"y":567.5312},{"x":22,"y":566.414},{"x":23,"y":563.5261},{"x":24,"y":562.8925},{"x":25,"y":559.6155},{"x":26,"y":561.1417},{"x":27,"y":561.2087},{"x":28,"y":561.1357},{"x":29,"y":562.8276},{"x":30,"y":561.7152},{"x":31,"y":559.0178},{"x":32,"y":555.3889},{"x":33,"y":550.7541},{"x":34,"y":539.5945},{"x":35,"y":529.6209},{"x":36,"y":524.797},{"x":37,"y":523.7451},{"x":38,"y":520.7351},{"x":39,"y":514.339},{"x":40,"y":504.8223},{"x":41,"y":496.7218},{"x":42,"y":497.2493},{"x":43,"y":494.5142},{"x":44,"y":492.4384},{"x":45,"y":494.3176},{"x":46,"y":495.8264},{"x":47,"y":499.0646},{"x":48,"y":498.9326},{"x":49,"y":501.257},{"x":50,"y":504.9812},{"x":51,"y":506.9896},{"x":52,"y":509.9079},{"x":53,"y":509.6259},{"x":54,"y":510.1441},{"x":55,"y":512.866},{"x":56,"y":516.1428},{"x":57,"y":520.7067},{"x":58,"y":519.7416},{"x":59,"y":518.1057},{"x":60,"y":512.3378},{"x":61,"y":506.6333},{"x":62,"y":498.6401},{"x":63,"y":490.7246},{"x":64,"y":481.579},{"x":65,"y":479.2424},{"x":66,"y":483.5324},{"x":67,"y":488.5284},{"x":68,"y":493.0161},{"x":69,"y":497.8114},{"x":70,"y":496.7059},{"x":71,"y":494.195},{"x":72,"y":495.16},{"x":73,"y":500.0311},{"x":74,"y":509.392},{"x":75,"y":519.6998},{"x":76,"y":525.8513},{"x":77,"y":532.4273},{"x":78,"y":539.4819},{"x":79,"y":543.8892},{"x":80,"y":549.4755},{"x":81,"y":548.9542},{"x":82,"y":546.5351},{"x":83,"y":540.1034},{"x":84,"y":531.8678},{"x":85,"y":525.7068},{"x":86,"y":520.4424},{"x":87,"y":510.6088},{"x":88,"y":503.5733},{"x":89,"y":494.3613},{"x":90,"y":482.2789},{"x":91,"y":471.8525},{"x":92,"y":459.313},{"x":93,"y":443.7903},{"x":94,"y":430.1989},{"x":95,"y":413.6311},{"x":96,"y":405.3675},{"x":97,"y":387.6068},{"x":98,"y":373.6256},{"x":99,"y":362.4871},{"x":100,"y":350.1698}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of 5-HT₁ᴀ(5-HT) in Area 45","filename":"5-HT₁ᴀ(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT1A receptor in area 45.** This profile plot shows examplary the course of the 5-HT1A receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HT₁ᴀ(5-HT) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HT₁ᴀ(5-HT) in Area 45"],"datasets":[{"data":[{"x":0,"y":446.4682},{"x":1,"y":478.6471},{"x":2,"y":509.2584},{"x":3,"y":540.6435},{"x":4,"y":566.3428},{"x":5,"y":588.0512},{"x":6,"y":608.3105},{"x":7,"y":625.0107},{"x":8,"y":636.1673},{"x":9,"y":643.9884},{"x":10,"y":648.3029},{"x":11,"y":649.924},{"x":12,"y":647.4576},{"x":13,"y":642.3212},{"x":14,"y":634.378},{"x":15,"y":622.8576},{"x":16,"y":607.448},{"x":17,"y":590.2758},{"x":18,"y":571.8925},{"x":19,"y":553.8814},{"x":20,"y":535.8393},{"x":21,"y":515.5943},{"x":22,"y":497.1233},{"x":23,"y":479.3945},{"x":24,"y":459.785},{"x":25,"y":438.6457},{"x":26,"y":417.0415},{"x":27,"y":396.816},{"x":28,"y":372.5078},{"x":29,"y":349.9618},{"x":30,"y":328.4453},{"x":31,"y":306.9185},{"x":32,"y":284.8545},{"x":33,"y":263.7074},{"x":34,"y":242.3922},{"x":35,"y":222.3236},{"x":36,"y":201.4712},{"x":37,"y":183.0173},{"x":38,"y":168.4927},{"x":39,"y":157.2917},{"x":40,"y":147.5868},{"x":41,"y":138.0575},{"x":42,"y":129.3287},{"x":43,"y":122.5712},{"x":44,"y":115.2238},{"x":45,"y":108.158},{"x":46,"y":103.2221},{"x":47,"y":98.3181},{"x":48,"y":94.6898},{"x":49,"y":93.0116},{"x":50,"y":91.8996},{"x":51,"y":92.8934},{"x":52,"y":94.2564},{"x":53,"y":95.806},{"x":54,"y":97.0351},{"x":55,"y":99.1721},{"x":56,"y":101.208},{"x":57,"y":103.449},{"x":58,"y":105.6208},{"x":59,"y":109.1625},{"x":60,"y":113.0543},{"x":61,"y":116.162},{"x":62,"y":119.7928},{"x":63,"y":123.3744},{"x":64,"y":129.2577},{"x":65,"y":132.9809},{"x":66,"y":136.5838},{"x":67,"y":139.6859},{"x":68,"y":141.8055},{"x":69,"y":142.7797},{"x":70,"y":144.2386},{"x":71,"y":145.6713},{"x":72,"y":146.4523},{"x":73,"y":147.8483},{"x":74,"y":150.8827},{"x":75,"y":154.3874},{"x":76,"y":158.0307},{"x":77,"y":162.4452},{"x":78,"y":166.3661},{"x":79,"y":167.4467},{"x":80,"y":167.673},{"x":81,"y":167.0871},{"x":82,"y":165.8395},{"x":83,"y":164.3776},{"x":84,"y":164.2927},{"x":85,"y":165.2644},{"x":86,"y":166.9129},{"x":87,"y":168.346},{"x":88,"y":169.7038},{"x":89,"y":170.2005},{"x":90,"y":169.9151},{"x":91,"y":166.5571},{"x":92,"y":163.6538},{"x":93,"y":161.3259},{"x":94,"y":157.0934},{"x":95,"y":153.4914},{"x":96,"y":149.4574},{"x":97,"y":145.4651},{"x":98,"y":142.6291},{"x":99,"y":138.3102},{"x":100,"y":135.5216}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of kainate (Glu) in Area 45","filename":"kainate (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of kainate receptor in area 45.** This profile plot shows examplary the course of the kainate receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of kainate (Glu) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of kainate (Glu) in Area 45"],"datasets":[{"data":[{"x":0,"y":128.2432},{"x":1,"y":133.4718},{"x":2,"y":137.4436},{"x":3,"y":141.3498},{"x":4,"y":144.5227},{"x":5,"y":150.0921},{"x":6,"y":151.1739},{"x":7,"y":156.9486},{"x":8,"y":158.6138},{"x":9,"y":160.1789},{"x":10,"y":158.062},{"x":11,"y":157.9045},{"x":12,"y":159.4278},{"x":13,"y":157.4277},{"x":14,"y":156.3406},{"x":15,"y":155.6615},{"x":16,"y":155.8074},{"x":17,"y":154.9571},{"x":18,"y":151.5084},{"x":19,"y":148.7766},{"x":20,"y":147.8011},{"x":21,"y":149.441},{"x":22,"y":149.1402},{"x":23,"y":147.3879},{"x":24,"y":145.9776},{"x":25,"y":147.4142},{"x":26,"y":149.2054},{"x":27,"y":149.8993},{"x":28,"y":150.6654},{"x":29,"y":152.7007},{"x":30,"y":154.1278},{"x":31,"y":152.3247},{"x":32,"y":149.1021},{"x":33,"y":148.4685},{"x":34,"y":147.7671},{"x":35,"y":148.5821},{"x":36,"y":148.9318},{"x":37,"y":150.0955},{"x":38,"y":152.7142},{"x":39,"y":154.7568},{"x":40,"y":158.9343},{"x":41,"y":160.7979},{"x":42,"y":162.3624},{"x":43,"y":166.3793},{"x":44,"y":168.8671},{"x":45,"y":173.4001},{"x":46,"y":177.4207},{"x":47,"y":181.5218},{"x":48,"y":187.0071},{"x":49,"y":188.0529},{"x":50,"y":188.0249},{"x":51,"y":189.9901},{"x":52,"y":190.2867},{"x":53,"y":192.1188},{"x":54,"y":202.2524},{"x":55,"y":210.0858},{"x":56,"y":215.743},{"x":57,"y":217.8028},{"x":58,"y":223.8773},{"x":59,"y":228.4059},{"x":60,"y":229.7807},{"x":61,"y":229.2109},{"x":62,"y":230.6402},{"x":63,"y":232.917},{"x":64,"y":235.4387},{"x":65,"y":236.6682},{"x":66,"y":237.4886},{"x":67,"y":241.6481},{"x":68,"y":244.9507},{"x":69,"y":245.65},{"x":70,"y":248.3345},{"x":71,"y":250.5447},{"x":72,"y":256.2273},{"x":73,"y":259.1402},{"x":74,"y":257.6825},{"x":75,"y":257.2173},{"x":76,"y":259.8811},{"x":77,"y":260.9476},{"x":78,"y":262.6104},{"x":79,"y":264.0823},{"x":80,"y":262.1313},{"x":81,"y":260.4572},{"x":82,"y":259.0434},{"x":83,"y":258.0762},{"x":84,"y":255.4195},{"x":85,"y":252.788},{"x":86,"y":251.6301},{"x":87,"y":253.008},{"x":88,"y":254.917},{"x":89,"y":255.733},{"x":90,"y":256.2008},{"x":91,"y":253.5028},{"x":92,"y":247.748},{"x":93,"y":243.7458},{"x":94,"y":236.6708},{"x":95,"y":231.8607},{"x":96,"y":229.1243},{"x":97,"y":222.6816},{"x":98,"y":216.0715},{"x":99,"y":207.8698},{"x":100,"y":198.6453}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of M₂(ACh) in Area 45","filename":"M₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M2 receptor in area 45.** This profile plot shows examplary the course of the M2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one female subject (brain id: MR2, sample id: ID03, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₂(ACh) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₂(ACh) in Area 45"],"datasets":[{"data":[{"x":0,"y":148.2509},{"x":1,"y":160.4788},{"x":2,"y":172.7641},{"x":3,"y":188.286},{"x":4,"y":202.4919},{"x":5,"y":211.0979},{"x":6,"y":217.7748},{"x":7,"y":225.6758},{"x":8,"y":233.2973},{"x":9,"y":238.0511},{"x":10,"y":242.8574},{"x":11,"y":246.1199},{"x":12,"y":248.1379},{"x":13,"y":250.3073},{"x":14,"y":253.4073},{"x":15,"y":255.9217},{"x":16,"y":255.3769},{"x":17,"y":256.2855},{"x":18,"y":256.7336},{"x":19,"y":255.8608},{"x":20,"y":255.5498},{"x":21,"y":257.467},{"x":22,"y":257.1439},{"x":23,"y":256.9265},{"x":24,"y":257.0385},{"x":25,"y":257.6207},{"x":26,"y":260.1275},{"x":27,"y":260.2744},{"x":28,"y":258.071},{"x":29,"y":258.9127},{"x":30,"y":258.0414},{"x":31,"y":256.9024},{"x":32,"y":255.1509},{"x":33,"y":255.3897},{"x":34,"y":254.6337},{"x":35,"y":254.2197},{"x":36,"y":252.7252},{"x":37,"y":251.3689},{"x":38,"y":250.0491},{"x":39,"y":249.2892},{"x":40,"y":250.3386},{"x":41,"y":252.2995},{"x":42,"y":254.0825},{"x":43,"y":254.6392},{"x":44,"y":255.3837},{"x":45,"y":255.833},{"x":46,"y":257.2473},{"x":47,"y":258.6471},{"x":48,"y":259.0378},{"x":49,"y":257.0129},{"x":50,"y":257.6312},{"x":51,"y":257.436},{"x":52,"y":258.2143},{"x":53,"y":258.2644},{"x":54,"y":257.8273},{"x":55,"y":258.1356},{"x":56,"y":257.5567},{"x":57,"y":256.1952},{"x":58,"y":256.4853},{"x":59,"y":258.2186},{"x":60,"y":260.9326},{"x":61,"y":262.1186},{"x":62,"y":262.9369},{"x":63,"y":261.639},{"x":64,"y":260.6033},{"x":65,"y":260.9028},{"x":66,"y":259.535},{"x":67,"y":259.6838},{"x":68,"y":258.9229},{"x":69,"y":258.0758},{"x":70,"y":255.9138},{"x":71,"y":253.6645},{"x":72,"y":252.8365},{"x":73,"y":252.5917},{"x":74,"y":249.7885},{"x":75,"y":248.9866},{"x":76,"y":249.7967},{"x":77,"y":249.386},{"x":78,"y":246.1164},{"x":79,"y":244.1496},{"x":80,"y":244.03},{"x":81,"y":242.4811},{"x":82,"y":241.1196},{"x":83,"y":239.2815},{"x":84,"y":235.9196},{"x":85,"y":232.4495},{"x":86,"y":228.9631},{"x":87,"y":226.325},{"x":88,"y":223.5355},{"x":89,"y":220.0405},{"x":90,"y":216.8779},{"x":91,"y":214.3161},{"x":92,"y":209.9348},{"x":93,"y":203.217},{"x":94,"y":195.4991},{"x":95,"y":187.8444},{"x":96,"y":181.5077},{"x":97,"y":172.7914},{"x":98,"y":162.8512},{"x":99,"y":154.3011},{"x":100,"y":147.3262}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of AMPA (Glu) in Area 45","filename":"AMPA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of AMPA receptor in area 45.** This profile plot shows examplary the course of the AMPA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of AMPA (Glu) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of AMPA (Glu) in Area 45"],"datasets":[{"data":[{"x":0,"y":363.1229},{"x":1,"y":387.8446},{"x":2,"y":412.6686},{"x":3,"y":435.4615},{"x":4,"y":459.3812},{"x":5,"y":478.3833},{"x":6,"y":491.5823},{"x":7,"y":501.6668},{"x":8,"y":507.1233},{"x":9,"y":507.0855},{"x":10,"y":502.6994},{"x":11,"y":496.5091},{"x":12,"y":487.0889},{"x":13,"y":479.0364},{"x":14,"y":473.6371},{"x":15,"y":465.5097},{"x":16,"y":457.15},{"x":17,"y":450.4011},{"x":18,"y":443.7644},{"x":19,"y":436.2319},{"x":20,"y":428.6994},{"x":21,"y":419.0023},{"x":22,"y":411.1127},{"x":23,"y":405.6558},{"x":24,"y":401.1618},{"x":25,"y":399.5792},{"x":26,"y":402.3016},{"x":27,"y":408.1729},{"x":28,"y":412.7131},{"x":29,"y":411.2129},{"x":30,"y":404.6575},{"x":31,"y":398.4513},{"x":32,"y":389.7323},{"x":33,"y":378.2357},{"x":34,"y":365.5536},{"x":35,"y":350.043},{"x":36,"y":337.0479},{"x":37,"y":325.1481},{"x":38,"y":309.7302},{"x":39,"y":293.6685},{"x":40,"y":278.9523},{"x":41,"y":265.2233},{"x":42,"y":255.5226},{"x":43,"y":249.5831},{"x":44,"y":247.6395},{"x":45,"y":246.6937},{"x":46,"y":242.4396},{"x":47,"y":239.6172},{"x":48,"y":238.1692},{"x":49,"y":237.5023},{"x":50,"y":238.0605},{"x":51,"y":235.9509},{"x":52,"y":234.4507},{"x":53,"y":230.1675},{"x":54,"y":229.9983},{"x":55,"y":233.2483},{"x":56,"y":234.0215},{"x":57,"y":236.4597},{"x":58,"y":237.7025},{"x":59,"y":237.5634},{"x":60,"y":238.2972},{"x":61,"y":240.7975},{"x":62,"y":241.8165},{"x":63,"y":243.0112},{"x":64,"y":241.311},{"x":65,"y":238.9827},{"x":66,"y":239.6403},{"x":67,"y":239.7592},{"x":68,"y":241.4406},{"x":69,"y":244.8075},{"x":70,"y":248.7895},{"x":71,"y":252.1568},{"x":72,"y":254.1116},{"x":73,"y":257.2797},{"x":74,"y":259.2491},{"x":75,"y":262.5645},{"x":76,"y":269.9665},{"x":77,"y":274.6952},{"x":78,"y":280.4762},{"x":79,"y":288.2045},{"x":80,"y":292.5784},{"x":81,"y":297.4214},{"x":82,"y":299.5389},{"x":83,"y":298.7706},{"x":84,"y":298.3684},{"x":85,"y":294.9061},{"x":86,"y":291.7974},{"x":87,"y":288.7943},{"x":88,"y":284.1133},{"x":89,"y":281.039},{"x":90,"y":273.96},{"x":91,"y":269.7795},{"x":92,"y":266.2041},{"x":93,"y":263.1902},{"x":94,"y":259.2016},{"x":95,"y":253.2865},{"x":96,"y":249.3632},{"x":97,"y":241.6962},{"x":98,"y":236.1636},{"x":99,"y":229.2335},{"x":100,"y":220.5767}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of D₁(DA) in Area 45","filename":"D₁(DA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of D1 receptor in area 45.** This profile plot shows examplary the course of the D1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of D₁(DA) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of D₁(DA) in Area 45"],"datasets":[{"data":[{"x":0,"y":78.1084},{"x":1,"y":84.9645},{"x":2,"y":91.0532},{"x":3,"y":95.5791},{"x":4,"y":98.3777},{"x":5,"y":100.4353},{"x":6,"y":102.0098},{"x":7,"y":103.4378},{"x":8,"y":105.096},{"x":9,"y":106.5489},{"x":10,"y":107.8973},{"x":11,"y":108.5222},{"x":12,"y":108.471},{"x":13,"y":108.2248},{"x":14,"y":108.2734},{"x":15,"y":108.043},{"x":16,"y":107.8699},{"x":17,"y":107.6634},{"x":18,"y":107.6015},{"x":19,"y":107.1348},{"x":20,"y":106.8158},{"x":21,"y":106.8694},{"x":22,"y":107.5786},{"x":23,"y":108.7444},{"x":24,"y":109.4443},{"x":25,"y":109.7067},{"x":26,"y":109.8513},{"x":27,"y":109.3219},{"x":28,"y":108.7429},{"x":29,"y":108.1614},{"x":30,"y":107.9891},{"x":31,"y":106.603},{"x":32,"y":105.6344},{"x":33,"y":104.8022},{"x":34,"y":104.1244},{"x":35,"y":103.1104},{"x":36,"y":102.3964},{"x":37,"y":102.7234},{"x":38,"y":103.6768},{"x":39,"y":104.0412},{"x":40,"y":104.2372},{"x":41,"y":104.2372},{"x":42,"y":104.5237},{"x":43,"y":104.2933},{"x":44,"y":104.0511},{"x":45,"y":103.0073},{"x":46,"y":102.6726},{"x":47,"y":102.1502},{"x":48,"y":101.7177},{"x":49,"y":101.6195},{"x":50,"y":102.3458},{"x":51,"y":102.4462},{"x":52,"y":101.9925},{"x":53,"y":101.934},{"x":54,"y":101.8345},{"x":55,"y":101.7546},{"x":56,"y":101.7766},{"x":57,"y":101.8297},{"x":58,"y":101.925},{"x":59,"y":101.5507},{"x":60,"y":101.6761},{"x":61,"y":101.4481},{"x":62,"y":100.8504},{"x":63,"y":100.0694},{"x":64,"y":99.1571},{"x":65,"y":97.7408},{"x":66,"y":96.8638},{"x":67,"y":95.7591},{"x":68,"y":93.8969},{"x":69,"y":91.8417},{"x":70,"y":90.107},{"x":71,"y":89.1044},{"x":72,"y":87.4652},{"x":73,"y":85.9192},{"x":74,"y":84.9756},{"x":75,"y":83.969},{"x":76,"y":83.6151},{"x":77,"y":83.4688},{"x":78,"y":83.5502},{"x":79,"y":83.3848},{"x":80,"y":83.4078},{"x":81,"y":83.0115},{"x":82,"y":82.5122},{"x":83,"y":81.9019},{"x":84,"y":80.5658},{"x":85,"y":79.442},{"x":86,"y":78.2936},{"x":87,"y":77.4462},{"x":88,"y":76.4354},{"x":89,"y":74.5846},{"x":90,"y":72.1056},{"x":91,"y":70.1597},{"x":92,"y":68.7571},{"x":93,"y":66.9971},{"x":94,"y":65.6739},{"x":95,"y":64.3799},{"x":96,"y":63.1736},{"x":97,"y":61.0219},{"x":98,"y":58.9807},{"x":99,"y":57.1969},{"x":100,"y":54.9126}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of M₃(ACh) in Area 45","filename":"M₃(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M3 receptor in area 45.** This profile plot shows examplary the course of the M3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₃(ACh) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₃(ACh) in Area 45"],"datasets":[{"data":[{"x":0,"y":242.4714},{"x":1,"y":250.7951},{"x":2,"y":259.7815},{"x":3,"y":268.408},{"x":4,"y":275.2378},{"x":5,"y":280.239},{"x":6,"y":283.9212},{"x":7,"y":285.7811},{"x":8,"y":286.0227},{"x":9,"y":286.4763},{"x":10,"y":286.4911},{"x":11,"y":286.4111},{"x":12,"y":286.1154},{"x":13,"y":285.4677},{"x":14,"y":285.0456},{"x":15,"y":284.5767},{"x":16,"y":284.1206},{"x":17,"y":283.1973},{"x":18,"y":282.7552},{"x":19,"y":282.0832},{"x":20,"y":280.6612},{"x":21,"y":278.8055},{"x":22,"y":277.1465},{"x":23,"y":276.0516},{"x":24,"y":274.833},{"x":25,"y":274.214},{"x":26,"y":274.0571},{"x":27,"y":273.5409},{"x":28,"y":272.419},{"x":29,"y":271.9615},{"x":30,"y":271.0815},{"x":31,"y":269.8926},{"x":32,"y":267.7079},{"x":33,"y":265.4575},{"x":34,"y":263.6548},{"x":35,"y":261.6827},{"x":36,"y":259.2279},{"x":37,"y":256.5618},{"x":38,"y":253.571},{"x":39,"y":249.8624},{"x":40,"y":246.2392},{"x":41,"y":242.1144},{"x":42,"y":238.5763},{"x":43,"y":236.484},{"x":44,"y":234.5967},{"x":45,"y":232.173},{"x":46,"y":229.5571},{"x":47,"y":227.0632},{"x":48,"y":224.5747},{"x":49,"y":222.4277},{"x":50,"y":220.5809},{"x":51,"y":219.0437},{"x":52,"y":217.7184},{"x":53,"y":217.0493},{"x":54,"y":216.2636},{"x":55,"y":215.6882},{"x":56,"y":215.3476},{"x":57,"y":216.0696},{"x":58,"y":216.3634},{"x":59,"y":216.7627},{"x":60,"y":216.4955},{"x":61,"y":216.5857},{"x":62,"y":215.5667},{"x":63,"y":213.578},{"x":64,"y":212.1659},{"x":65,"y":209.9465},{"x":66,"y":208.2169},{"x":67,"y":207.2508},{"x":68,"y":206.4585},{"x":69,"y":205.6267},{"x":70,"y":205.8085},{"x":71,"y":205.7924},{"x":72,"y":205.6573},{"x":73,"y":205.6143},{"x":74,"y":205.8285},{"x":75,"y":205.8996},{"x":76,"y":205.2856},{"x":77,"y":204.803},{"x":78,"y":203.5548},{"x":79,"y":202.6549},{"x":80,"y":201.3211},{"x":81,"y":200.1485},{"x":82,"y":199.6121},{"x":83,"y":199.7426},{"x":84,"y":199.7115},{"x":85,"y":199.7334},{"x":86,"y":199.8951},{"x":87,"y":200.3864},{"x":88,"y":200.3858},{"x":89,"y":200.0216},{"x":90,"y":200.2697},{"x":91,"y":199.6195},{"x":92,"y":197.5551},{"x":93,"y":195.1741},{"x":94,"y":191.6469},{"x":95,"y":188.0536},{"x":96,"y":185.0563},{"x":97,"y":181.4895},{"x":98,"y":178.9988},{"x":99,"y":176.4345},{"x":100,"y":173.4422}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of mGluR2/3 (Glu) in Area 45","filename":"mGluR2\\/3 (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of mGluR2_3 receptor in area 45.** This profile plot shows examplary the course of the mGluR2_3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of mGluR2/3 (Glu) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of mGluR2/3 (Glu) in Area 45"],"datasets":[{"data":[{"x":0,"y":2329.1235},{"x":1,"y":2525.8177},{"x":2,"y":2663.7145},{"x":3,"y":2780.8164},{"x":4,"y":2872.1168},{"x":5,"y":2933.5586},{"x":6,"y":2969.7929},{"x":7,"y":3014.8606},{"x":8,"y":3041.0337},{"x":9,"y":3062.6667},{"x":10,"y":3082.1499},{"x":11,"y":3103.616},{"x":12,"y":3119.5096},{"x":13,"y":3137.6468},{"x":14,"y":3150.0613},{"x":15,"y":3166.116},{"x":16,"y":3182.8989},{"x":17,"y":3188.6492},{"x":18,"y":3188.1948},{"x":19,"y":3188.0656},{"x":20,"y":3187.0585},{"x":21,"y":3180.8013},{"x":22,"y":3173.0829},{"x":23,"y":3163.6916},{"x":24,"y":3142.0249},{"x":25,"y":3117.5816},{"x":26,"y":3091.4563},{"x":27,"y":3057.6253},{"x":28,"y":3027.5128},{"x":29,"y":3003.6084},{"x":30,"y":2995.6601},{"x":31,"y":2984.5468},{"x":32,"y":2976.7859},{"x":33,"y":2967.3817},{"x":34,"y":2956.0409},{"x":35,"y":2939.6534},{"x":36,"y":2923.1503},{"x":37,"y":2917.5128},{"x":38,"y":2910.8969},{"x":39,"y":2902.394},{"x":40,"y":2889.0886},{"x":41,"y":2881.9775},{"x":42,"y":2875.0169},{"x":43,"y":2853.1159},{"x":44,"y":2820.7971},{"x":45,"y":2791.7109},{"x":46,"y":2758.1112},{"x":47,"y":2728.1731},{"x":48,"y":2685.1843},{"x":49,"y":2642.4576},{"x":50,"y":2608.4185},{"x":51,"y":2578.6758},{"x":52,"y":2547.2736},{"x":53,"y":2508.4241},{"x":54,"y":2463.5647},{"x":55,"y":2425.1331},{"x":56,"y":2383.5863},{"x":57,"y":2338.9373},{"x":58,"y":2302.3089},{"x":59,"y":2265.7624},{"x":60,"y":2225.8775},{"x":61,"y":2177.8831},{"x":62,"y":2139.7348},{"x":63,"y":2091.8873},{"x":64,"y":2043.7491},{"x":65,"y":2001.6689},{"x":66,"y":1957.9636},{"x":67,"y":1918.2625},{"x":68,"y":1868.5604},{"x":69,"y":1828.4216},{"x":70,"y":1790.7205},{"x":71,"y":1759.1246},{"x":72,"y":1736.3443},{"x":73,"y":1708.2351},{"x":74,"y":1685.7374},{"x":75,"y":1661.7608},{"x":76,"y":1637.0638},{"x":77,"y":1618.0377},{"x":78,"y":1610.9442},{"x":79,"y":1600.5609},{"x":80,"y":1588.0873},{"x":81,"y":1577.4166},{"x":82,"y":1555.6453},{"x":83,"y":1538.047},{"x":84,"y":1517.906},{"x":85,"y":1500.8983},{"x":86,"y":1486.9246},{"x":87,"y":1469.6974},{"x":88,"y":1457.2807},{"x":89,"y":1434.636},{"x":90,"y":1400.474},{"x":91,"y":1349.5559},{"x":92,"y":1290.592},{"x":93,"y":1240.8654},{"x":94,"y":1186.2181},{"x":95,"y":1128.2174},{"x":96,"y":1072.6946},{"x":97,"y":1025.0802},{"x":98,"y":969.9934},{"x":99,"y":915.1584},{"x":100,"y":855.2369}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of 5-HT₂(5-HT) in Area 45","filename":"5-HT₂(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT2 receptor in area 45.** This profile plot shows examplary the course of the 5-HT2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HT₂(5-HT) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HT₂(5-HT) in Area 45"],"datasets":[{"data":[{"x":0,"y":288.9923},{"x":1,"y":309.7773},{"x":2,"y":328.8126},{"x":3,"y":345.6034},{"x":4,"y":358.1815},{"x":5,"y":366.2937},{"x":6,"y":372.7815},{"x":7,"y":376.1244},{"x":8,"y":378.2773},{"x":9,"y":380.2499},{"x":10,"y":381.7339},{"x":11,"y":382.5514},{"x":12,"y":384.1955},{"x":13,"y":385.053},{"x":14,"y":387.5857},{"x":15,"y":390.0167},{"x":16,"y":393.3792},{"x":17,"y":397.0094},{"x":18,"y":400.449},{"x":19,"y":404.9659},{"x":20,"y":409.1248},{"x":21,"y":413.3365},{"x":22,"y":415.7244},{"x":23,"y":417.682},{"x":24,"y":418.4909},{"x":25,"y":419.2575},{"x":26,"y":420.2398},{"x":27,"y":421.1289},{"x":28,"y":421.824},{"x":29,"y":423.2846},{"x":30,"y":425.636},{"x":31,"y":426.3901},{"x":32,"y":428.4124},{"x":33,"y":429.6646},{"x":34,"y":429.9736},{"x":35,"y":430.6096},{"x":36,"y":430.1823},{"x":37,"y":429.0452},{"x":38,"y":426.6607},{"x":39,"y":423.7124},{"x":40,"y":420.2925},{"x":41,"y":416.5521},{"x":42,"y":413.1852},{"x":43,"y":411.0173},{"x":44,"y":409.1146},{"x":45,"y":407.8484},{"x":46,"y":406.0724},{"x":47,"y":404.7061},{"x":48,"y":403.908},{"x":49,"y":402.6198},{"x":50,"y":400.687},{"x":51,"y":399.5797},{"x":52,"y":399.638},{"x":53,"y":399.1563},{"x":54,"y":397.7003},{"x":55,"y":396.4008},{"x":56,"y":394.9067},{"x":57,"y":391.0736},{"x":58,"y":388.5069},{"x":59,"y":384.5821},{"x":60,"y":380.3568},{"x":61,"y":377.5674},{"x":62,"y":373.4415},{"x":63,"y":369.8718},{"x":64,"y":366.714},{"x":65,"y":363.3653},{"x":66,"y":360.1197},{"x":67,"y":357.0405},{"x":68,"y":354.6639},{"x":69,"y":352.6405},{"x":70,"y":351.2026},{"x":71,"y":349.9003},{"x":72,"y":348.2182},{"x":73,"y":346.2901},{"x":74,"y":344.4846},{"x":75,"y":341.7091},{"x":76,"y":339.161},{"x":77,"y":336.1284},{"x":78,"y":333.2884},{"x":79,"y":329.922},{"x":80,"y":326.4277},{"x":81,"y":323.5492},{"x":82,"y":320.9594},{"x":83,"y":319.265},{"x":84,"y":316.1492},{"x":85,"y":313.1071},{"x":86,"y":311.1015},{"x":87,"y":308.7417},{"x":88,"y":306.4135},{"x":89,"y":304.1751},{"x":90,"y":302.0387},{"x":91,"y":298.6621},{"x":92,"y":294.9564},{"x":93,"y":290.4507},{"x":94,"y":284.9639},{"x":95,"y":278.1515},{"x":96,"y":273.482},{"x":97,"y":269.7171},{"x":98,"y":266.0367},{"x":99,"y":262.0832},{"x":100,"y":258.7819}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null},{"name":"Sample profile of GABAᴃ(GABA) in Area 45","filename":"GABAᴃ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAB receptor in area 45.** This profile plot shows examplary the course of the GABAB receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 45 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴃ(GABA) in Area 45"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴃ(GABA) in Area 45"],"datasets":[{"data":[{"x":0,"y":1005.5544},{"x":1,"y":1140.6296},{"x":2,"y":1282.2927},{"x":3,"y":1427.0001},{"x":4,"y":1537.5862},{"x":5,"y":1628.6752},{"x":6,"y":1720.0773},{"x":7,"y":1780.514},{"x":8,"y":1822.415},{"x":9,"y":1871.5799},{"x":10,"y":1922.7094},{"x":11,"y":1956.1988},{"x":12,"y":1995.0287},{"x":13,"y":2029.0892},{"x":14,"y":2051.0292},{"x":15,"y":2073.3927},{"x":16,"y":2086.5145},{"x":17,"y":2100.9911},{"x":18,"y":2114.785},{"x":19,"y":2117.8656},{"x":20,"y":2119.9499},{"x":21,"y":2122.6338},{"x":22,"y":2126.5934},{"x":23,"y":2130.3621},{"x":24,"y":2128.5693},{"x":25,"y":2119.9486},{"x":26,"y":2109.881},{"x":27,"y":2090.9789},{"x":28,"y":2061.8335},{"x":29,"y":2034.1653},{"x":30,"y":2000.8524},{"x":31,"y":1975.8356},{"x":32,"y":1954.9807},{"x":33,"y":1933.406},{"x":34,"y":1904.9711},{"x":35,"y":1877.5919},{"x":36,"y":1848.9845},{"x":37,"y":1813.6243},{"x":38,"y":1779.8701},{"x":39,"y":1750.2535},{"x":40,"y":1721.1585},{"x":41,"y":1696.3829},{"x":42,"y":1670.4723},{"x":43,"y":1648.3853},{"x":44,"y":1625.5198},{"x":45,"y":1608.239},{"x":46,"y":1599.82},{"x":47,"y":1593.3035},{"x":48,"y":1587.853},{"x":49,"y":1586.2885},{"x":50,"y":1587.6321},{"x":51,"y":1592.5324},{"x":52,"y":1599.0063},{"x":53,"y":1603.4052},{"x":54,"y":1614.2161},{"x":55,"y":1613.4045},{"x":56,"y":1608.3359},{"x":57,"y":1600.0201},{"x":58,"y":1586.2777},{"x":59,"y":1570.8167},{"x":60,"y":1556.1897},{"x":61,"y":1534.6709},{"x":62,"y":1517.2144},{"x":63,"y":1503.299},{"x":64,"y":1490.5743},{"x":65,"y":1477.577},{"x":66,"y":1464.6239},{"x":67,"y":1456.9567},{"x":68,"y":1451.543},{"x":69,"y":1456.3787},{"x":70,"y":1457.9518},{"x":71,"y":1475.7819},{"x":72,"y":1492.3323},{"x":73,"y":1520.6312},{"x":74,"y":1553.3891},{"x":75,"y":1584.1544},{"x":76,"y":1614.3661},{"x":77,"y":1635.184},{"x":78,"y":1653.5622},{"x":79,"y":1667.6292},{"x":80,"y":1678.3806},{"x":81,"y":1679.2344},{"x":82,"y":1678.8372},{"x":83,"y":1677.2387},{"x":84,"y":1679.506},{"x":85,"y":1682.4859},{"x":86,"y":1675.7679},{"x":87,"y":1660.1836},{"x":88,"y":1638.2992},{"x":89,"y":1612.9416},{"x":90,"y":1583.2615},{"x":91,"y":1554.9181},{"x":92,"y":1527.0889},{"x":93,"y":1503.3339},{"x":94,"y":1477.0244},{"x":95,"y":1446.2743},{"x":96,"y":1419.2013},{"x":97,"y":1388.1481},{"x":98,"y":1349.6414},{"x":99,"y":1313.3331},{"x":100,"y":1274.671}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,0,0.2)"}]},"url":null}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas"},{"type":"Receptor Data","name":"Receptor Data for Area 46","regionName":[{"regionName":"none","relationship":"none"}],"properties":{"description":null,"publications":[]},"files":[{"name":"Receptor density fingerprint of Area 46","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["431","571","887","4098","1605","2542","2593","375","216","1018","54","386","629","437","404","103"]},{"label":"mean_sd","data":["172","108","362","727","520","583","760","75","108","371","30","178","152","145","114","47"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area 46 (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(255,255,255,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas"},{"type":"Receptor Data","name":"Receptor Data for Area 47","regionName":[{"regionName":"none","relationship":"none"}],"properties":{"description":null,"publications":[]},"files":[{"name":"Receptor density fingerprint of Area 47","filename":"fingerprint","mimetype":"application/json","properties":{"description":"**Multireceptor fingerprint for area 47.** This polar plot shows the mean receptor densities in fmol/mg protein (solid shape) and standard deviation (dashed line) of 16 receptor binding sites in the area 47. The data is based on the left and right hemisphere of one female subject (brain id: hg0201, sample ids: ID07 and ID08, age: 77, cause of death: lung edema) and the right hemispheres of two male subjects (brain id: hg0500, sample ids: ID09, age: 72, cause of death: cardiac arrest | brain id: hg0100, sample ids: ID12, age: 77, cause of death: coronary heart disease).","publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["689","586","1033","NA","1535","2723","2658","725","198","640","89","308","193","505","366","71"]},{"label":"mean_sd","data":["335","267","818","NA","920","923","1130","388","119","89","15","124","114","208","163","13"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area 47 (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(255,255,255,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAᴀ(BZ) in Area 47","filename":"GABAᴀ(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/47_bm_BZ.jpg"},{"name":"Sample autoradiograph of α₁(NA) in Area 47","filename":"α₁(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/47_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area 47","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/47_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAᴀ(GABA) in Area 47","filename":"GABAᴀ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/47_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area 47","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/47_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area 47","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/47_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of M₁(ACh) in Area 47","filename":"M₁(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/47_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HT₁ᴀ(5-HT) in Area 47","filename":"5-HT₁ᴀ(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/47_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area 47","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/47_bm_kainate.jpg"},{"name":"Sample autoradiograph of M₂(ACh) in Area 47","filename":"M₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/47_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area 47","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/47_bm_AMPA.jpg"},{"name":"Sample autoradiograph of D₁(DA) in Area 47","filename":"D₁(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/47_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area 47","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/47_bm_M3.jpg"},{"name":"Sample autoradiograph of mGluR2/3 (Glu) in Area 47","filename":"mGluR2\\/3 (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/47_bm_mGluR2_3.jpg"},{"name":"Sample autoradiograph of 5-HT₂(5-HT) in Area 47","filename":"5-HT₂(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/47_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAᴃ(GABA) in Area 47","filename":"GABAᴃ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/47_bm_GABAB.jpg"},{"name":"Sample profile of GABAᴀ(BZ) in Area 47","filename":"GABAᴀ(BZ)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of BZ receptor in area 47.** This profile plot shows examplary the course of the BZ receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 47 in the left hemisphere of one female subject (brain id: MR2, sample id: ID03, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴀ(BZ) in Area 47"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴀ(BZ) in Area 47"],"datasets":[{"data":[{"x":0,"y":1317.911},{"x":1,"y":1672.9845},{"x":2,"y":1956.18},{"x":3,"y":2098.5529},{"x":4,"y":2174.6051},{"x":5,"y":2213.1019},{"x":6,"y":2248.0989},{"x":7,"y":2304.9343},{"x":8,"y":2376.7833},{"x":9,"y":2447.0928},{"x":10,"y":2491.7256},{"x":11,"y":2526.1317},{"x":12,"y":2557.6699},{"x":13,"y":2586.2714},{"x":14,"y":2611.6079},{"x":15,"y":2644.8134},{"x":16,"y":2679.6275},{"x":17,"y":2698.6986},{"x":18,"y":2694.1331},{"x":19,"y":2691.2182},{"x":20,"y":2687.8202},{"x":21,"y":2702.7822},{"x":22,"y":2704.3888},{"x":23,"y":2689.3656},{"x":24,"y":2661.7158},{"x":25,"y":2632.3466},{"x":26,"y":2598.067},{"x":27,"y":2568.0412},{"x":28,"y":2539.4268},{"x":29,"y":2509.7841},{"x":30,"y":2467.7901},{"x":31,"y":2422.0282},{"x":32,"y":2387.8459},{"x":33,"y":2364.2357},{"x":34,"y":2336.3409},{"x":35,"y":2311.6248},{"x":36,"y":2300.4757},{"x":37,"y":2306.3661},{"x":38,"y":2317.1632},{"x":39,"y":2330.2401},{"x":40,"y":2345.4386},{"x":41,"y":2363.3913},{"x":42,"y":2365.4988},{"x":43,"y":2352.0734},{"x":44,"y":2328.8271},{"x":45,"y":2308.1792},{"x":46,"y":2301.4838},{"x":47,"y":2296.1617},{"x":48,"y":2277.3852},{"x":49,"y":2254.8311},{"x":50,"y":2214.8536},{"x":51,"y":2176.4524},{"x":52,"y":2138.8494},{"x":53,"y":2105.8593},{"x":54,"y":2083.2157},{"x":55,"y":2071.3798},{"x":56,"y":2052.1115},{"x":57,"y":2030.3185},{"x":58,"y":2029.6345},{"x":59,"y":2050.8814},{"x":60,"y":2076.7954},{"x":61,"y":2087.9208},{"x":62,"y":2076.2298},{"x":63,"y":2061.3463},{"x":64,"y":2059.6344},{"x":65,"y":2057.5817},{"x":66,"y":2057.2528},{"x":67,"y":2051.6618},{"x":68,"y":2035.6268},{"x":69,"y":2011.4729},{"x":70,"y":1985.9574},{"x":71,"y":1960.4409},{"x":72,"y":1947.2067},{"x":73,"y":1938.9064},{"x":74,"y":1931.8777},{"x":75,"y":1919.5541},{"x":76,"y":1893.0109},{"x":77,"y":1861.308},{"x":78,"y":1826.1453},{"x":79,"y":1798.6919},{"x":80,"y":1771.8578},{"x":81,"y":1733.2877},{"x":82,"y":1696.5485},{"x":83,"y":1656.5896},{"x":84,"y":1627.7581},{"x":85,"y":1616.8499},{"x":86,"y":1585.6677},{"x":87,"y":1532.822},{"x":88,"y":1478.562},{"x":89,"y":1434.718},{"x":90,"y":1401.4575},{"x":91,"y":1364.5327},{"x":92,"y":1311.2401},{"x":93,"y":1238.9326},{"x":94,"y":1162.802},{"x":95,"y":1089.4963},{"x":96,"y":1019.1253},{"x":97,"y":963.7587},{"x":98,"y":919.3691},{"x":99,"y":873.8114},{"x":100,"y":824.1215}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,255,0.2)"}]},"url":null},{"name":"Sample profile of α₁(NA) in Area 47","filename":"α₁(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha1 receptor in area 47.** This profile plot shows examplary the course of the alpha1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 47 in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₁(NA) in Area 47"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₁(NA) in Area 47"],"datasets":[{"data":[{"x":0,"y":471.9634},{"x":1,"y":498.6244},{"x":2,"y":516.7385},{"x":3,"y":538.0245},{"x":4,"y":550.9321},{"x":5,"y":556.8059},{"x":6,"y":557.4351},{"x":7,"y":554.8452},{"x":8,"y":550.3883},{"x":9,"y":550.9223},{"x":10,"y":550.9372},{"x":11,"y":551.4199},{"x":12,"y":552.5262},{"x":13,"y":553.1077},{"x":14,"y":551.8518},{"x":15,"y":554.9695},{"x":16,"y":553.7595},{"x":17,"y":554.334},{"x":18,"y":554.5897},{"x":19,"y":556.6879},{"x":20,"y":555.7411},{"x":21,"y":553.2556},{"x":22,"y":550.6384},{"x":23,"y":548.0212},{"x":24,"y":545.3874},{"x":25,"y":541.6656},{"x":26,"y":539.8038},{"x":27,"y":538.7972},{"x":28,"y":536.1037},{"x":29,"y":532.5767},{"x":30,"y":529.8616},{"x":31,"y":529.2598},{"x":32,"y":525.8958},{"x":33,"y":519.7484},{"x":34,"y":513.8856},{"x":35,"y":509.2368},{"x":36,"y":506.3121},{"x":37,"y":500.1088},{"x":38,"y":493.9536},{"x":39,"y":490.8808},{"x":40,"y":487.8113},{"x":41,"y":485.7698},{"x":42,"y":482.9615},{"x":43,"y":483.5568},{"x":44,"y":484.2451},{"x":45,"y":481.6374},{"x":46,"y":479.2729},{"x":47,"y":475.0038},{"x":48,"y":468.7225},{"x":49,"y":468.6404},{"x":50,"y":466.5348},{"x":51,"y":461.4688},{"x":52,"y":458.6392},{"x":53,"y":456.8782},{"x":54,"y":454.5345},{"x":55,"y":456.9373},{"x":56,"y":457.9994},{"x":57,"y":456.2357},{"x":58,"y":451.2925},{"x":59,"y":446.3104},{"x":60,"y":443.7831},{"x":61,"y":443.1462},{"x":62,"y":440.2189},{"x":63,"y":440.1819},{"x":64,"y":438.261},{"x":65,"y":439.951},{"x":66,"y":444.107},{"x":67,"y":449.3279},{"x":68,"y":454.185},{"x":69,"y":455.0584},{"x":70,"y":454.8331},{"x":71,"y":453.7107},{"x":72,"y":451.0494},{"x":73,"y":449.6884},{"x":74,"y":450.738},{"x":75,"y":452.8623},{"x":76,"y":452.6164},{"x":77,"y":452.5059},{"x":78,"y":450.8001},{"x":79,"y":450.0761},{"x":80,"y":448.8375},{"x":81,"y":446.1502},{"x":82,"y":442.3387},{"x":83,"y":443.4255},{"x":84,"y":445.5401},{"x":85,"y":449.4348},{"x":86,"y":448.6687},{"x":87,"y":447.3649},{"x":88,"y":443.7221},{"x":89,"y":430.5425},{"x":90,"y":415.5152},{"x":91,"y":405.9704},{"x":92,"y":400.8119},{"x":93,"y":395.8844},{"x":94,"y":387.1587},{"x":95,"y":382.5626},{"x":96,"y":368.6687},{"x":97,"y":351.5264},{"x":98,"y":331.0426},{"x":99,"y":318.0831},{"x":100,"y":304.612}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,255,0.2)"}]},"url":null},{"name":"Sample profile of NMDA (Glu) in Area 47","filename":"NMDA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of NMDA receptor in area 47.** This profile plot shows examplary the course of the NMDA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 47 in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of NMDA (Glu) in Area 47"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of NMDA (Glu) in Area 47"],"datasets":[{"data":[{"x":0,"y":1263.5677},{"x":1,"y":1394.6717},{"x":2,"y":1502.8158},{"x":3,"y":1571.8609},{"x":4,"y":1598.856},{"x":5,"y":1628.9467},{"x":6,"y":1659.2678},{"x":7,"y":1672.1948},{"x":8,"y":1701.6228},{"x":9,"y":1735.4},{"x":10,"y":1771.9006},{"x":11,"y":1803.0679},{"x":12,"y":1828.8256},{"x":13,"y":1836.3281},{"x":14,"y":1858.4185},{"x":15,"y":1881.8587},{"x":16,"y":1886.0764},{"x":17,"y":1890.199},{"x":18,"y":1897.422},{"x":19,"y":1892.5674},{"x":20,"y":1898.3075},{"x":21,"y":1914.4601},{"x":22,"y":1928.8655},{"x":23,"y":1919.5873},{"x":24,"y":1903.1526},{"x":25,"y":1898.468},{"x":26,"y":1888.6566},{"x":27,"y":1866.611},{"x":28,"y":1866.4426},{"x":29,"y":1871.5455},{"x":30,"y":1872.8638},{"x":31,"y":1861.9154},{"x":32,"y":1863.8356},{"x":33,"y":1860.4498},{"x":34,"y":1872.3299},{"x":35,"y":1882.5439},{"x":36,"y":1879.6642},{"x":37,"y":1874.7275},{"x":38,"y":1863.7569},{"x":39,"y":1835.2998},{"x":40,"y":1824.3567},{"x":41,"y":1808.5669},{"x":42,"y":1796.9876},{"x":43,"y":1797.9858},{"x":44,"y":1783.6779},{"x":45,"y":1776.7366},{"x":46,"y":1771.419},{"x":47,"y":1761.9314},{"x":48,"y":1732.4757},{"x":49,"y":1701.3871},{"x":50,"y":1674.9775},{"x":51,"y":1668.4085},{"x":52,"y":1661.9039},{"x":53,"y":1668.356},{"x":54,"y":1691.179},{"x":55,"y":1709.6977},{"x":56,"y":1698.22},{"x":57,"y":1688.6158},{"x":58,"y":1670.1643},{"x":59,"y":1640.5719},{"x":60,"y":1594.7081},{"x":61,"y":1573.1898},{"x":62,"y":1556.5106},{"x":63,"y":1546.8049},{"x":64,"y":1547.2677},{"x":65,"y":1546.0046},{"x":66,"y":1558.3711},{"x":67,"y":1567.5626},{"x":68,"y":1575.8934},{"x":69,"y":1585.4977},{"x":70,"y":1578.2437},{"x":71,"y":1585.0075},{"x":72,"y":1598.2353},{"x":73,"y":1596.6057},{"x":74,"y":1588.9126},{"x":75,"y":1570.1402},{"x":76,"y":1559.8969},{"x":77,"y":1555.0222},{"x":78,"y":1556.8488},{"x":79,"y":1559.8538},{"x":80,"y":1560.0788},{"x":81,"y":1525.7729},{"x":82,"y":1483.8336},{"x":83,"y":1453.2531},{"x":84,"y":1411.4502},{"x":85,"y":1388.872},{"x":86,"y":1348.9654},{"x":87,"y":1296.4863},{"x":88,"y":1259.2815},{"x":89,"y":1225.3148},{"x":90,"y":1228.71},{"x":91,"y":1225.1374},{"x":92,"y":1207.07},{"x":93,"y":1179.7952},{"x":94,"y":1148.5216},{"x":95,"y":1103.0039},{"x":96,"y":1075.9179},{"x":97,"y":1063.0469},{"x":98,"y":1022.7947},{"x":99,"y":985.8138},{"x":100,"y":960.4545}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,255,0.2)"}]},"url":null},{"name":"Sample profile of GABAᴀ(GABA) in Area 47","filename":"GABAᴀ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAA receptor in area 47.** This profile plot shows examplary the course of the GABAA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 47 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴀ(GABA) in Area 47"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴀ(GABA) in Area 47"],"datasets":[{"data":[{"x":0,"y":1774.5373},{"x":1,"y":1883.1958},{"x":2,"y":1998.7475},{"x":3,"y":2070.9727},{"x":4,"y":2093.7492},{"x":5,"y":2120.8639},{"x":6,"y":2151.8381},{"x":7,"y":2176.0836},{"x":8,"y":2206.6179},{"x":9,"y":2206.1826},{"x":10,"y":2192.6333},{"x":11,"y":2188.1369},{"x":12,"y":2187.7976},{"x":13,"y":2207.4115},{"x":14,"y":2226.8958},{"x":15,"y":2243.7227},{"x":16,"y":2252.9318},{"x":17,"y":2245.3633},{"x":18,"y":2250.7045},{"x":19,"y":2245.5581},{"x":20,"y":2229.5585},{"x":21,"y":2216.588},{"x":22,"y":2216.3431},{"x":23,"y":2219.9326},{"x":24,"y":2210.4749},{"x":25,"y":2214.6095},{"x":26,"y":2213.224},{"x":27,"y":2222.8894},{"x":28,"y":2235.0438},{"x":29,"y":2222.4614},{"x":30,"y":2196.5284},{"x":31,"y":2152.586},{"x":32,"y":2139.6718},{"x":33,"y":2146.5704},{"x":34,"y":2150.6641},{"x":35,"y":2179.234},{"x":36,"y":2189.0541},{"x":37,"y":2187.1187},{"x":38,"y":2169.7942},{"x":39,"y":2155.6424},{"x":40,"y":2139.5711},{"x":41,"y":2109.7824},{"x":42,"y":2090.9375},{"x":43,"y":2076.2416},{"x":44,"y":2031.7821},{"x":45,"y":2011.2793},{"x":46,"y":1984.7481},{"x":47,"y":1962.367},{"x":48,"y":1949.3376},{"x":49,"y":1950.2231},{"x":50,"y":1915.179},{"x":51,"y":1902.5527},{"x":52,"y":1898.817},{"x":53,"y":1884.9167},{"x":54,"y":1858.508},{"x":55,"y":1832.163},{"x":56,"y":1818.6858},{"x":57,"y":1790.4016},{"x":58,"y":1775.2977},{"x":59,"y":1765.6098},{"x":60,"y":1735.6337},{"x":61,"y":1710.954},{"x":62,"y":1692.6171},{"x":63,"y":1680.8493},{"x":64,"y":1664.1885},{"x":65,"y":1664.5472},{"x":66,"y":1658.2785},{"x":67,"y":1647.0559},{"x":68,"y":1645.4378},{"x":69,"y":1630.6703},{"x":70,"y":1616.0899},{"x":71,"y":1605.3338},{"x":72,"y":1598.4866},{"x":73,"y":1603.8894},{"x":74,"y":1620.5832},{"x":75,"y":1636.0273},{"x":76,"y":1643.6285},{"x":77,"y":1622.8093},{"x":78,"y":1602.4427},{"x":79,"y":1594.4039},{"x":80,"y":1586.7994},{"x":81,"y":1585.5096},{"x":82,"y":1567.6782},{"x":83,"y":1537.6405},{"x":84,"y":1504.0372},{"x":85,"y":1442.011},{"x":86,"y":1359.2735},{"x":87,"y":1328.412},{"x":88,"y":1297.1876},{"x":89,"y":1273.0756},{"x":90,"y":1259.6984},{"x":91,"y":1238.8118},{"x":92,"y":1194.1774},{"x":93,"y":1148.7898},{"x":94,"y":1129.1435},{"x":95,"y":1095.1421},{"x":96,"y":1055.5048},{"x":97,"y":1029.0095},{"x":98,"y":957.2999},{"x":99,"y":902.0019},{"x":100,"y":868.7997}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,255,0.2)"}]},"url":null},{"name":"Sample profile of α₂(NA) in Area 47","filename":"α₂(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha2 receptor in area 47.** This profile plot shows examplary the course of the alpha2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 47 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₂(NA) in Area 47"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₂(NA) in Area 47"],"datasets":[{"data":[{"x":0,"y":267.1361},{"x":1,"y":336.759},{"x":2,"y":416.8129},{"x":3,"y":466.8386},{"x":4,"y":488.4205},{"x":5,"y":509.6887},{"x":6,"y":536.9827},{"x":7,"y":565.4224},{"x":8,"y":599.976},{"x":9,"y":629.852},{"x":10,"y":647.4855},{"x":11,"y":644.2244},{"x":12,"y":648.2697},{"x":13,"y":662.7454},{"x":14,"y":686.4837},{"x":15,"y":711.733},{"x":16,"y":715.3406},{"x":17,"y":716.8946},{"x":18,"y":718.6318},{"x":19,"y":724.3827},{"x":20,"y":726.5786},{"x":21,"y":724.943},{"x":22,"y":719.21},{"x":23,"y":718.8721},{"x":24,"y":709.7731},{"x":25,"y":707.2638},{"x":26,"y":700.6634},{"x":27,"y":698.6474},{"x":28,"y":700.2697},{"x":29,"y":711.0634},{"x":30,"y":720.1059},{"x":31,"y":721.914},{"x":32,"y":725.4336},{"x":33,"y":720.4588},{"x":34,"y":709.6671},{"x":35,"y":695.1905},{"x":36,"y":689.0644},{"x":37,"y":689.5695},{"x":38,"y":689.4326},{"x":39,"y":699.6373},{"x":40,"y":708.1965},{"x":41,"y":716.2128},{"x":42,"y":713.7051},{"x":43,"y":704.6768},{"x":44,"y":698.6563},{"x":45,"y":691.7027},{"x":46,"y":680.2544},{"x":47,"y":664.0221},{"x":48,"y":653.7727},{"x":49,"y":644.9327},{"x":50,"y":636.1071},{"x":51,"y":627.1037},{"x":52,"y":613.6274},{"x":53,"y":599.2256},{"x":54,"y":577.2453},{"x":55,"y":562.7385},{"x":56,"y":565.5569},{"x":57,"y":569.9175},{"x":58,"y":569.1558},{"x":59,"y":562.4113},{"x":60,"y":558.8938},{"x":61,"y":556.4176},{"x":62,"y":556.2878},{"x":63,"y":557.0398},{"x":64,"y":555.1381},{"x":65,"y":559.0669},{"x":66,"y":567.1346},{"x":67,"y":562.1797},{"x":68,"y":546.9704},{"x":69,"y":529.1766},{"x":70,"y":520.726},{"x":71,"y":521.8136},{"x":72,"y":535.1409},{"x":73,"y":545.6034},{"x":74,"y":553.1505},{"x":75,"y":554.7064},{"x":76,"y":554.4254},{"x":77,"y":538.3272},{"x":78,"y":518.9021},{"x":79,"y":503.6863},{"x":80,"y":507.2384},{"x":81,"y":511.7118},{"x":82,"y":511.2522},{"x":83,"y":505.5775},{"x":84,"y":490.0298},{"x":85,"y":473.5193},{"x":86,"y":463.0804},{"x":87,"y":451.4709},{"x":88,"y":442.2178},{"x":89,"y":432.4333},{"x":90,"y":427.8257},{"x":91,"y":411.5451},{"x":92,"y":402.705},{"x":93,"y":398.8983},{"x":94,"y":400.8619},{"x":95,"y":407.1258},{"x":96,"y":417.4376},{"x":97,"y":419.3836},{"x":98,"y":411.9189},{"x":99,"y":393.6779},{"x":100,"y":381.1481}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,255,0.2)"}]},"url":null},{"name":"Sample profile of α₄β₂(ACh) in Area 47","filename":"α₄β₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha4-beta2 receptor in area 47.** This profile plot shows examplary the course of the alpha4-beta2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 47 in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₄β₂(ACh) in Area 47"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₄β₂(ACh) in Area 47"],"datasets":[{"data":[{"x":0,"y":27.9195},{"x":1,"y":33.0199},{"x":2,"y":40.5924},{"x":3,"y":56.9203},{"x":4,"y":71.7992},{"x":5,"y":76.4935},{"x":6,"y":81.4044},{"x":7,"y":81.0007},{"x":8,"y":77.4576},{"x":9,"y":77.4425},{"x":10,"y":75.5254},{"x":11,"y":75.2168},{"x":12,"y":75.1226},{"x":13,"y":72.8521},{"x":14,"y":70.2641},{"x":15,"y":67.8218},{"x":16,"y":66.6599},{"x":17,"y":65.5925},{"x":18,"y":62.0623},{"x":19,"y":60.3221},{"x":20,"y":58.9641},{"x":21,"y":57.7945},{"x":22,"y":58.2056},{"x":23,"y":57.6241},{"x":24,"y":58.4396},{"x":25,"y":60.3996},{"x":26,"y":59.5864},{"x":27,"y":57.6932},{"x":28,"y":59.0813},{"x":29,"y":57.7371},{"x":30,"y":55.0418},{"x":31,"y":54.1036},{"x":32,"y":56.346},{"x":33,"y":58.2456},{"x":34,"y":58.7902},{"x":35,"y":59.9679},{"x":36,"y":56.7563},{"x":37,"y":54.8395},{"x":38,"y":52.5173},{"x":39,"y":54.6669},{"x":40,"y":59.3655},{"x":41,"y":61.5104},{"x":42,"y":62.6153},{"x":43,"y":63.8159},{"x":44,"y":64.5385},{"x":45,"y":64.8828},{"x":46,"y":64.0424},{"x":47,"y":63.0875},{"x":48,"y":61.3866},{"x":49,"y":61.1572},{"x":50,"y":60.4502},{"x":51,"y":60.5459},{"x":52,"y":62.2524},{"x":53,"y":61.3805},{"x":54,"y":63.1205},{"x":55,"y":67.406},{"x":56,"y":69.522},{"x":57,"y":71.1415},{"x":58,"y":73.6853},{"x":59,"y":74.2798},{"x":60,"y":73.5189},{"x":61,"y":68.8478},{"x":62,"y":62.3394},{"x":63,"y":58.96},{"x":64,"y":59.3131},{"x":65,"y":61.3044},{"x":66,"y":65.8459},{"x":67,"y":69.6092},{"x":68,"y":69.6022},{"x":69,"y":72.869},{"x":70,"y":77.8645},{"x":71,"y":74.7448},{"x":72,"y":72.2435},{"x":73,"y":69.5723},{"x":74,"y":67.4153},{"x":75,"y":65.6673},{"x":76,"y":67.442},{"x":77,"y":69.843},{"x":78,"y":72.2353},{"x":79,"y":72.284},{"x":80,"y":72.5797},{"x":81,"y":72.7653},{"x":82,"y":72.951},{"x":83,"y":73.2976},{"x":84,"y":74.9329},{"x":85,"y":75.6886},{"x":86,"y":78.5187},{"x":87,"y":78.693},{"x":88,"y":79.4188},{"x":89,"y":79.1774},{"x":90,"y":78.1004},{"x":91,"y":76.9954},{"x":92,"y":75.402},{"x":93,"y":71.0829},{"x":94,"y":66.9689},{"x":95,"y":61.9181},{"x":96,"y":60.5101},{"x":97,"y":57.2626},{"x":98,"y":49.3555},{"x":99,"y":47.3196},{"x":100,"y":44.3782}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,255,0.2)"}]},"url":null},{"name":"Sample profile of M₁(ACh) in Area 47","filename":"M₁(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M1 receptor in area 47.** This profile plot shows examplary the course of the M1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 47 in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₁(ACh) in Area 47"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₁(ACh) in Area 47"],"datasets":[{"data":[{"x":0,"y":358.7164},{"x":1,"y":396.8002},{"x":2,"y":434.2448},{"x":3,"y":464.8849},{"x":4,"y":479.7864},{"x":5,"y":485.9924},{"x":6,"y":487.7881},{"x":7,"y":494.2818},{"x":8,"y":497.0497},{"x":9,"y":504.8913},{"x":10,"y":513.642},{"x":11,"y":518.0408},{"x":12,"y":519.838},{"x":13,"y":519.2927},{"x":14,"y":518.8853},{"x":15,"y":521.5575},{"x":16,"y":524.2583},{"x":17,"y":524.7498},{"x":18,"y":525.3023},{"x":19,"y":524.9134},{"x":20,"y":527.4335},{"x":21,"y":530.5919},{"x":22,"y":529.6758},{"x":23,"y":528.4334},{"x":24,"y":527.1331},{"x":25,"y":525.593},{"x":26,"y":523.4331},{"x":27,"y":520.932},{"x":28,"y":519.2144},{"x":29,"y":519.9071},{"x":30,"y":519.8334},{"x":31,"y":518.315},{"x":32,"y":514.4903},{"x":33,"y":512.7861},{"x":34,"y":509.9279},{"x":35,"y":505.6137},{"x":36,"y":501.9973},{"x":37,"y":498.497},{"x":38,"y":496.4697},{"x":39,"y":495.4394},{"x":40,"y":493.1342},{"x":41,"y":495.9113},{"x":42,"y":496.7205},{"x":43,"y":495.6255},{"x":44,"y":493.4179},{"x":45,"y":491.3214},{"x":46,"y":488.2296},{"x":47,"y":487.6024},{"x":48,"y":489.6293},{"x":49,"y":487.2238},{"x":50,"y":486.7909},{"x":51,"y":488.3293},{"x":52,"y":487.8085},{"x":53,"y":487.5782},{"x":54,"y":485.8509},{"x":55,"y":485.5105},{"x":56,"y":481.014},{"x":57,"y":477.0153},{"x":58,"y":476.6358},{"x":59,"y":476.5792},{"x":60,"y":474.511},{"x":61,"y":476.0598},{"x":62,"y":476.76},{"x":63,"y":476.5943},{"x":64,"y":477.998},{"x":65,"y":477.0601},{"x":66,"y":476.7191},{"x":67,"y":478.2676},{"x":68,"y":476.235},{"x":69,"y":474.9333},{"x":70,"y":475.3203},{"x":71,"y":473.5362},{"x":72,"y":469.5702},{"x":73,"y":465.8578},{"x":74,"y":463.9959},{"x":75,"y":461.8832},{"x":76,"y":459.4484},{"x":77,"y":459.6088},{"x":78,"y":460.1887},{"x":79,"y":459.0452},{"x":80,"y":455.7452},{"x":81,"y":454.928},{"x":82,"y":455.0422},{"x":83,"y":454.7228},{"x":84,"y":451.7419},{"x":85,"y":446.0538},{"x":86,"y":441.1588},{"x":87,"y":435.9788},{"x":88,"y":427.1555},{"x":89,"y":417.9077},{"x":90,"y":410.3924},{"x":91,"y":397.9825},{"x":92,"y":388.0856},{"x":93,"y":383.0584},{"x":94,"y":374.5933},{"x":95,"y":365.5039},{"x":96,"y":358.1918},{"x":97,"y":347.3866},{"x":98,"y":324.972},{"x":99,"y":301.2869},{"x":100,"y":286.4831}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,255,0.2)"}]},"url":null},{"name":"Sample profile of 5-HT₁ᴀ(5-HT) in Area 47","filename":"5-HT₁ᴀ(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT1A receptor in area 47.** This profile plot shows examplary the course of the 5-HT1A receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 47 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HT₁ᴀ(5-HT) in Area 47"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HT₁ᴀ(5-HT) in Area 47"],"datasets":[{"data":[{"x":0,"y":719.911},{"x":1,"y":807.5316},{"x":2,"y":886.9772},{"x":3,"y":926.3009},{"x":4,"y":938.1354},{"x":5,"y":934.806},{"x":6,"y":919.069},{"x":7,"y":892.8576},{"x":8,"y":854.3829},{"x":9,"y":822.2238},{"x":10,"y":778.6551},{"x":11,"y":733.9623},{"x":12,"y":691.4371},{"x":13,"y":656.3086},{"x":14,"y":629.3927},{"x":15,"y":603.6333},{"x":16,"y":585.6679},{"x":17,"y":558.3753},{"x":18,"y":528.9292},{"x":19,"y":508.7967},{"x":20,"y":483.2699},{"x":21,"y":464.1993},{"x":22,"y":449.1788},{"x":23,"y":426.3797},{"x":24,"y":405.8203},{"x":25,"y":381.0885},{"x":26,"y":348.8276},{"x":27,"y":319.6855},{"x":28,"y":287.7433},{"x":29,"y":261.8085},{"x":30,"y":241.7795},{"x":31,"y":222.4004},{"x":32,"y":206.0797},{"x":33,"y":194.5177},{"x":34,"y":186.9263},{"x":35,"y":174.6838},{"x":36,"y":157.8031},{"x":37,"y":148.8615},{"x":38,"y":141.3568},{"x":39,"y":140.2484},{"x":40,"y":146.9784},{"x":41,"y":154.2327},{"x":42,"y":159.3274},{"x":43,"y":163.0405},{"x":44,"y":169.612},{"x":45,"y":175.3857},{"x":46,"y":181.1202},{"x":47,"y":195.7917},{"x":48,"y":207.2905},{"x":49,"y":209.6598},{"x":50,"y":211.5424},{"x":51,"y":216.4821},{"x":52,"y":219.8682},{"x":53,"y":219.4567},{"x":54,"y":220.6954},{"x":55,"y":221.5499},{"x":56,"y":218.7948},{"x":57,"y":215.1937},{"x":58,"y":216.1559},{"x":59,"y":217.3815},{"x":60,"y":220.6633},{"x":61,"y":222.3167},{"x":62,"y":225.9774},{"x":63,"y":228.3604},{"x":64,"y":232.1399},{"x":65,"y":235.6977},{"x":66,"y":241.2669},{"x":67,"y":244.5762},{"x":68,"y":247.4785},{"x":69,"y":244.9547},{"x":70,"y":246.0911},{"x":71,"y":246.5001},{"x":72,"y":249.7958},{"x":73,"y":258.0483},{"x":74,"y":264.0138},{"x":75,"y":265.8523},{"x":76,"y":270.0814},{"x":77,"y":274.8253},{"x":78,"y":280.571},{"x":79,"y":283.8885},{"x":80,"y":279.512},{"x":81,"y":275.4588},{"x":82,"y":270.5937},{"x":83,"y":264.8942},{"x":84,"y":263.8793},{"x":85,"y":262.154},{"x":86,"y":260.7502},{"x":87,"y":256.2588},{"x":88,"y":250.7655},{"x":89,"y":237.2852},{"x":90,"y":222.7885},{"x":91,"y":212.7374},{"x":92,"y":206.8846},{"x":93,"y":198.9393},{"x":94,"y":193.355},{"x":95,"y":196.9998},{"x":96,"y":197.4534},{"x":97,"y":195.5508},{"x":98,"y":192.7091},{"x":99,"y":188.0885},{"x":100,"y":184.4348}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,255,0.2)"}]},"url":null},{"name":"Sample profile of kainate (Glu) in Area 47","filename":"kainate (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of kainate receptor in area 47.** This profile plot shows examplary the course of the kainate receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 47 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of kainate (Glu) in Area 47"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of kainate (Glu) in Area 47"],"datasets":[{"data":[{"x":0,"y":326.2981},{"x":1,"y":356.9821},{"x":2,"y":388.3151},{"x":3,"y":401.4545},{"x":4,"y":407.6577},{"x":5,"y":420.267},{"x":6,"y":429.2241},{"x":7,"y":437.3227},{"x":8,"y":451.1943},{"x":9,"y":458.028},{"x":10,"y":470.7565},{"x":11,"y":483.0399},{"x":12,"y":480.869},{"x":13,"y":482.285},{"x":14,"y":473.7116},{"x":15,"y":467.2518},{"x":16,"y":466.5174},{"x":17,"y":469.0916},{"x":18,"y":475.0575},{"x":19,"y":477.4073},{"x":20,"y":484.4536},{"x":21,"y":485.2822},{"x":22,"y":488.9708},{"x":23,"y":492.6906},{"x":24,"y":485.7215},{"x":25,"y":481.1373},{"x":26,"y":479.0929},{"x":27,"y":473.8246},{"x":28,"y":474.2354},{"x":29,"y":487.0029},{"x":30,"y":499.1102},{"x":31,"y":520.4138},{"x":32,"y":539.7031},{"x":33,"y":552.7709},{"x":34,"y":556.5653},{"x":35,"y":555.4394},{"x":36,"y":550.8619},{"x":37,"y":543.0254},{"x":38,"y":546.7266},{"x":39,"y":553.1131},{"x":40,"y":569.0401},{"x":41,"y":587.3996},{"x":42,"y":601.8677},{"x":43,"y":611.8878},{"x":44,"y":628.841},{"x":45,"y":639.0574},{"x":46,"y":648.305},{"x":47,"y":665.2085},{"x":48,"y":676.8373},{"x":49,"y":692.6281},{"x":50,"y":708.2833},{"x":51,"y":718.476},{"x":52,"y":722.315},{"x":53,"y":722.832},{"x":54,"y":722.4826},{"x":55,"y":723.2097},{"x":56,"y":724.3365},{"x":57,"y":724.7702},{"x":58,"y":731.3429},{"x":59,"y":734.5235},{"x":60,"y":740.7432},{"x":61,"y":749.3944},{"x":62,"y":759.3668},{"x":63,"y":769.2934},{"x":64,"y":769.1243},{"x":65,"y":767.7384},{"x":66,"y":771.3226},{"x":67,"y":774.6382},{"x":68,"y":770.3971},{"x":69,"y":757.2188},{"x":70,"y":734.4113},{"x":71,"y":720.0179},{"x":72,"y":723.2154},{"x":73,"y":730.0994},{"x":74,"y":744.3134},{"x":75,"y":757.3093},{"x":76,"y":764.3913},{"x":77,"y":768.8779},{"x":78,"y":760.6633},{"x":79,"y":743.443},{"x":80,"y":724.4195},{"x":81,"y":714.5622},{"x":82,"y":706.8835},{"x":83,"y":706.4129},{"x":84,"y":708.7109},{"x":85,"y":720.8142},{"x":86,"y":726.631},{"x":87,"y":723.1289},{"x":88,"y":718.0075},{"x":89,"y":706.251},{"x":90,"y":697.1602},{"x":91,"y":682.4873},{"x":92,"y":656.8411},{"x":93,"y":634.3335},{"x":94,"y":609.9782},{"x":95,"y":577.9705},{"x":96,"y":550.6128},{"x":97,"y":535.3077},{"x":98,"y":521.4301},{"x":99,"y":518.3565},{"x":100,"y":527.0885}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,255,0.2)"}]},"url":null},{"name":"Sample profile of M₂(ACh) in Area 47","filename":"M₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M2 receptor in area 47.** This profile plot shows examplary the course of the M2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 47 in the left hemisphere of one female subject (brain id: MR2, sample id: ID03, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₂(ACh) in Area 47"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₂(ACh) in Area 47"],"datasets":[{"data":[{"x":0,"y":190.0645},{"x":1,"y":218.8798},{"x":2,"y":238.9496},{"x":3,"y":247.0921},{"x":4,"y":250.5085},{"x":5,"y":250.0461},{"x":6,"y":251.0999},{"x":7,"y":251.0102},{"x":8,"y":250.0195},{"x":9,"y":249.1109},{"x":10,"y":250.1262},{"x":11,"y":251.223},{"x":12,"y":255.1216},{"x":13,"y":263.1355},{"x":14,"y":268.5742},{"x":15,"y":265.7966},{"x":16,"y":267.4483},{"x":17,"y":264.1278},{"x":18,"y":267.6984},{"x":19,"y":274.96},{"x":20,"y":282.6726},{"x":21,"y":290.82},{"x":22,"y":291.7601},{"x":23,"y":296.3542},{"x":24,"y":291.3818},{"x":25,"y":286.6963},{"x":26,"y":281.9281},{"x":27,"y":280.64},{"x":28,"y":284.6882},{"x":29,"y":288.453},{"x":30,"y":295.8001},{"x":31,"y":306.2168},{"x":32,"y":316.1403},{"x":33,"y":320.007},{"x":34,"y":322.1608},{"x":35,"y":322.0732},{"x":36,"y":316.7761},{"x":37,"y":306.9549},{"x":38,"y":297.0716},{"x":39,"y":289.2349},{"x":40,"y":287.8762},{"x":41,"y":293.1305},{"x":42,"y":298.1175},{"x":43,"y":303.7607},{"x":44,"y":308.9742},{"x":45,"y":318.9995},{"x":46,"y":326.6318},{"x":47,"y":331.8503},{"x":48,"y":334.86},{"x":49,"y":340.4508},{"x":50,"y":344.1363},{"x":51,"y":346.3201},{"x":52,"y":350.0236},{"x":53,"y":352.9687},{"x":54,"y":355.7094},{"x":55,"y":354.5145},{"x":56,"y":350.1252},{"x":57,"y":344.4766},{"x":58,"y":341.0083},{"x":59,"y":336.3738},{"x":60,"y":337.9205},{"x":61,"y":338.731},{"x":62,"y":335.4546},{"x":63,"y":327.6838},{"x":64,"y":320.2499},{"x":65,"y":316.7389},{"x":66,"y":318.806},{"x":67,"y":324.722},{"x":68,"y":329.7666},{"x":69,"y":321.2513},{"x":70,"y":304.8237},{"x":71,"y":290.2265},{"x":72,"y":290.6487},{"x":73,"y":298.6393},{"x":74,"y":305.9785},{"x":75,"y":311.758},{"x":76,"y":309.5662},{"x":77,"y":300.3924},{"x":78,"y":290.389},{"x":79,"y":286.4801},{"x":80,"y":283.3301},{"x":81,"y":279.9401},{"x":82,"y":281.5129},{"x":83,"y":276.4091},{"x":84,"y":268.1153},{"x":85,"y":269.1922},{"x":86,"y":275.7303},{"x":87,"y":276.7644},{"x":88,"y":278.1152},{"x":89,"y":279.1971},{"x":90,"y":273.4049},{"x":91,"y":262.8701},{"x":92,"y":242.3645},{"x":93,"y":223.8279},{"x":94,"y":204.2361},{"x":95,"y":187.9222},{"x":96,"y":177.4885},{"x":97,"y":164.6828},{"x":98,"y":150.33},{"x":99,"y":136.6281},{"x":100,"y":128.6182}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,255,0.2)"}]},"url":null},{"name":"Sample profile of AMPA (Glu) in Area 47","filename":"AMPA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of AMPA receptor in area 47.** This profile plot shows examplary the course of the AMPA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 47 in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of AMPA (Glu) in Area 47"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of AMPA (Glu) in Area 47"],"datasets":[{"data":[{"x":0,"y":474.4995},{"x":1,"y":525.6784},{"x":2,"y":586.0804},{"x":3,"y":642.0943},{"x":4,"y":673.0182},{"x":5,"y":682.2555},{"x":6,"y":686.7806},{"x":7,"y":684.0207},{"x":8,"y":672.6805},{"x":9,"y":663.391},{"x":10,"y":652.7784},{"x":11,"y":637.3395},{"x":12,"y":622.1011},{"x":13,"y":612.7574},{"x":14,"y":606.081},{"x":15,"y":602.4932},{"x":16,"y":602.9701},{"x":17,"y":605.8753},{"x":18,"y":608.3787},{"x":19,"y":607.0756},{"x":20,"y":604.0379},{"x":21,"y":594.6129},{"x":22,"y":587.7944},{"x":23,"y":575.6152},{"x":24,"y":567.294},{"x":25,"y":553.9951},{"x":26,"y":544.7031},{"x":27,"y":539.6652},{"x":28,"y":534.5153},{"x":29,"y":528.9239},{"x":30,"y":514.1601},{"x":31,"y":503.6295},{"x":32,"y":496.4467},{"x":33,"y":485.1148},{"x":34,"y":470.6758},{"x":35,"y":461.4643},{"x":36,"y":457.6182},{"x":37,"y":450.7579},{"x":38,"y":441.6652},{"x":39,"y":439.7676},{"x":40,"y":435.6936},{"x":41,"y":434.0441},{"x":42,"y":427.503},{"x":43,"y":418.4142},{"x":44,"y":414.4441},{"x":45,"y":410.5662},{"x":46,"y":411.32},{"x":47,"y":409.0865},{"x":48,"y":407.8401},{"x":49,"y":405.7814},{"x":50,"y":408.5284},{"x":51,"y":411.1253},{"x":52,"y":415.2741},{"x":53,"y":419.6939},{"x":54,"y":423.4216},{"x":55,"y":423.2215},{"x":56,"y":421.2107},{"x":57,"y":417.6986},{"x":58,"y":415.2388},{"x":59,"y":418.8942},{"x":60,"y":433.9249},{"x":61,"y":442.4635},{"x":62,"y":451.5784},{"x":63,"y":457.1065},{"x":64,"y":451.0375},{"x":65,"y":443.1118},{"x":66,"y":426.5204},{"x":67,"y":405.5192},{"x":68,"y":397.8368},{"x":69,"y":391.8864},{"x":70,"y":384.4725},{"x":71,"y":374.9099},{"x":72,"y":369.4637},{"x":73,"y":370.6672},{"x":74,"y":381.0653},{"x":75,"y":389.7392},{"x":76,"y":394.0193},{"x":77,"y":396.6374},{"x":78,"y":398.6471},{"x":79,"y":406.4553},{"x":80,"y":410.4172},{"x":81,"y":413.8006},{"x":82,"y":413.9202},{"x":83,"y":404.3304},{"x":84,"y":394.8806},{"x":85,"y":385.1485},{"x":86,"y":378.2055},{"x":87,"y":372.6354},{"x":88,"y":369.0985},{"x":89,"y":362.4839},{"x":90,"y":349.8996},{"x":91,"y":339.404},{"x":92,"y":333.0216},{"x":93,"y":328.8224},{"x":94,"y":327.4397},{"x":95,"y":322.857},{"x":96,"y":317.0953},{"x":97,"y":303.2385},{"x":98,"y":284.3733},{"x":99,"y":267.0062},{"x":100,"y":254.1151}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,255,0.2)"}]},"url":null},{"name":"Sample profile of D₁(DA) in Area 47","filename":"D₁(DA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of D1 receptor in area 47.** This profile plot shows examplary the course of the D1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 47 in the right hemisphere of one male subject (brain id: MR1, sample id: ID02, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of D₁(DA) in Area 47"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of D₁(DA) in Area 47"],"datasets":[{"data":[{"x":0,"y":46.0044},{"x":1,"y":62.8251},{"x":2,"y":81.5223},{"x":3,"y":105.504},{"x":4,"y":126.3119},{"x":5,"y":142.3747},{"x":6,"y":150.4486},{"x":7,"y":154.5735},{"x":8,"y":156.9258},{"x":9,"y":156.5971},{"x":10,"y":148.363},{"x":11,"y":140.7087},{"x":12,"y":136.4238},{"x":13,"y":136.3572},{"x":14,"y":139.3985},{"x":15,"y":142.2584},{"x":16,"y":146.9445},{"x":17,"y":151.3581},{"x":18,"y":153.175},{"x":19,"y":156.371},{"x":20,"y":158.0437},{"x":21,"y":160.9099},{"x":22,"y":159.5763},{"x":23,"y":156.1895},{"x":24,"y":151.9902},{"x":25,"y":149.3361},{"x":26,"y":146.3968},{"x":27,"y":143.4806},{"x":28,"y":144.6765},{"x":29,"y":144.3631},{"x":30,"y":146.1271},{"x":31,"y":148.5025},{"x":32,"y":150.583},{"x":33,"y":148.7549},{"x":34,"y":145.4039},{"x":35,"y":144.0205},{"x":36,"y":139.3256},{"x":37,"y":135.6287},{"x":38,"y":133.667},{"x":39,"y":132.9885},{"x":40,"y":134.7042},{"x":41,"y":135.2428},{"x":42,"y":136.2504},{"x":43,"y":134.6619},{"x":44,"y":130.1086},{"x":45,"y":127.0254},{"x":46,"y":124.6341},{"x":47,"y":122.8912},{"x":48,"y":122.5819},{"x":49,"y":122.9372},{"x":50,"y":123.7734},{"x":51,"y":123.6907},{"x":52,"y":121.5996},{"x":53,"y":121.3273},{"x":54,"y":118.6552},{"x":55,"y":118.6173},{"x":56,"y":121.4258},{"x":57,"y":123.4968},{"x":58,"y":120.8543},{"x":59,"y":117.9748},{"x":60,"y":117.5981},{"x":61,"y":119.0345},{"x":62,"y":118.6596},{"x":63,"y":121.5714},{"x":64,"y":120.6876},{"x":65,"y":119.1088},{"x":66,"y":116.5526},{"x":67,"y":113.1671},{"x":68,"y":111.2526},{"x":69,"y":112.422},{"x":70,"y":115.5505},{"x":71,"y":117.9596},{"x":72,"y":120.3033},{"x":73,"y":121.7865},{"x":74,"y":122.6064},{"x":75,"y":123.0401},{"x":76,"y":125.0683},{"x":77,"y":127.8644},{"x":78,"y":131.9679},{"x":79,"y":131.4671},{"x":80,"y":127.5481},{"x":81,"y":126.607},{"x":82,"y":127.2559},{"x":83,"y":129.2675},{"x":84,"y":128.7624},{"x":85,"y":125.2862},{"x":86,"y":122.9461},{"x":87,"y":118.6284},{"x":88,"y":114.6903},{"x":89,"y":111.7081},{"x":90,"y":109.863},{"x":91,"y":108.8492},{"x":92,"y":108.2117},{"x":93,"y":110.2116},{"x":94,"y":109.9612},{"x":95,"y":111.3476},{"x":96,"y":112.3123},{"x":97,"y":111.1938},{"x":98,"y":106.8255},{"x":99,"y":99.4419},{"x":100,"y":93.4376}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,255,0.2)"}]},"url":null},{"name":"Sample profile of M₃(ACh) in Area 47","filename":"M₃(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M3 receptor in area 47.** This profile plot shows examplary the course of the M3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 47 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₃(ACh) in Area 47"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₃(ACh) in Area 47"],"datasets":[{"data":[{"x":0,"y":796.2933},{"x":1,"y":827.643},{"x":2,"y":846.7201},{"x":3,"y":860.6629},{"x":4,"y":870.2157},{"x":5,"y":874.7009},{"x":6,"y":879.0513},{"x":7,"y":886.3871},{"x":8,"y":895.3247},{"x":9,"y":904.8415},{"x":10,"y":911.8753},{"x":11,"y":916.6061},{"x":12,"y":921.4993},{"x":13,"y":920.3213},{"x":14,"y":914.1694},{"x":15,"y":908.1576},{"x":16,"y":904.3472},{"x":17,"y":899.4621},{"x":18,"y":893.9166},{"x":19,"y":887.5836},{"x":20,"y":879.4794},{"x":21,"y":871.0135},{"x":22,"y":864.8748},{"x":23,"y":860.7033},{"x":24,"y":854.1716},{"x":25,"y":847.794},{"x":26,"y":846.1795},{"x":27,"y":847.8157},{"x":28,"y":852.4044},{"x":29,"y":856.6431},{"x":30,"y":860.6813},{"x":31,"y":859.7835},{"x":32,"y":859.0931},{"x":33,"y":855.533},{"x":34,"y":849.1372},{"x":35,"y":843.2075},{"x":36,"y":836.9345},{"x":37,"y":832.694},{"x":38,"y":828.5443},{"x":39,"y":823.9562},{"x":40,"y":816.7367},{"x":41,"y":813.0501},{"x":42,"y":810.8729},{"x":43,"y":809.0173},{"x":44,"y":805.7055},{"x":45,"y":803.4362},{"x":46,"y":799.4925},{"x":47,"y":794.8186},{"x":48,"y":794.7005},{"x":49,"y":791.8632},{"x":50,"y":787.8323},{"x":51,"y":781.8728},{"x":52,"y":777.018},{"x":53,"y":777.5827},{"x":54,"y":777.4923},{"x":55,"y":773.7353},{"x":56,"y":771.3066},{"x":57,"y":765.3369},{"x":58,"y":760.4413},{"x":59,"y":759.4335},{"x":60,"y":761.4171},{"x":61,"y":767.287},{"x":62,"y":767.6614},{"x":63,"y":767.7942},{"x":64,"y":772.0932},{"x":65,"y":773.3228},{"x":66,"y":776.4022},{"x":67,"y":775.2618},{"x":68,"y":771.075},{"x":69,"y":769.2219},{"x":70,"y":770.437},{"x":71,"y":768.2032},{"x":72,"y":766.7525},{"x":73,"y":759.3756},{"x":74,"y":752.2509},{"x":75,"y":742.7543},{"x":76,"y":735.1018},{"x":77,"y":734.8496},{"x":78,"y":735.7981},{"x":79,"y":735.4411},{"x":80,"y":732.4272},{"x":81,"y":722.9603},{"x":82,"y":706.5627},{"x":83,"y":685.7359},{"x":84,"y":659.4082},{"x":85,"y":638.5353},{"x":86,"y":618.8847},{"x":87,"y":598.1065},{"x":88,"y":580.3229},{"x":89,"y":565.762},{"x":90,"y":546.9718},{"x":91,"y":532.336},{"x":92,"y":514.9679},{"x":93,"y":491.9494},{"x":94,"y":469.4104},{"x":95,"y":444.9714},{"x":96,"y":417.1557},{"x":97,"y":398.9754},{"x":98,"y":384.02},{"x":99,"y":371.2882},{"x":100,"y":358.0844}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,255,0.2)"}]},"url":null},{"name":"Sample profile of mGluR2/3 (Glu) in Area 47","filename":"mGluR2\\/3 (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of mGluR2_3 receptor in area 47.** This profile plot shows examplary the course of the mGluR2_3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 47 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of mGluR2/3 (Glu) in Area 47"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of mGluR2/3 (Glu) in Area 47"],"datasets":[{"data":[{"x":0,"y":802.2798},{"x":1,"y":1141.3665},{"x":2,"y":1666.0371},{"x":3,"y":2046.3522},{"x":4,"y":2613.58},{"x":5,"y":2987.7729},{"x":6,"y":3379.2504},{"x":7,"y":3532.2627},{"x":8,"y":3654.2755},{"x":9,"y":3733.9514},{"x":10,"y":3772.1644},{"x":11,"y":3811.9634},{"x":12,"y":3896.9653},{"x":13,"y":3953.0445},{"x":14,"y":3999.4711},{"x":15,"y":4036.3907},{"x":16,"y":4053.7819},{"x":17,"y":4028.7434},{"x":18,"y":3980.1925},{"x":19,"y":3900.5046},{"x":20,"y":3855.5096},{"x":21,"y":3829.5454},{"x":22,"y":3785.9898},{"x":23,"y":3742.3553},{"x":24,"y":3729.7371},{"x":25,"y":3716.787},{"x":26,"y":3683.1437},{"x":27,"y":3624.7304},{"x":28,"y":3603.0104},{"x":29,"y":3580.5554},{"x":30,"y":3541.0779},{"x":31,"y":3493.0704},{"x":32,"y":3467.842},{"x":33,"y":3425.121},{"x":34,"y":3389.4499},{"x":35,"y":3358.5555},{"x":36,"y":3324.0652},{"x":37,"y":3290.9874},{"x":38,"y":3269.2182},{"x":39,"y":3240.3315},{"x":40,"y":3237.1038},{"x":41,"y":3237.2128},{"x":42,"y":3258.3566},{"x":43,"y":3270.0909},{"x":44,"y":3260.6556},{"x":45,"y":3231.5541},{"x":46,"y":3216.5851},{"x":47,"y":3176.8882},{"x":48,"y":3121.0482},{"x":49,"y":3078.4058},{"x":50,"y":3044.6957},{"x":51,"y":2993.0987},{"x":52,"y":2942.674},{"x":53,"y":2867.9099},{"x":54,"y":2769.933},{"x":55,"y":2646.4434},{"x":56,"y":2543.5444},{"x":57,"y":2486.8265},{"x":58,"y":2455.8219},{"x":59,"y":2412.9554},{"x":60,"y":2399.5863},{"x":61,"y":2394.924},{"x":62,"y":2377.4692},{"x":63,"y":2332.3186},{"x":64,"y":2289.6516},{"x":65,"y":2281.4975},{"x":66,"y":2299.1076},{"x":67,"y":2313.3629},{"x":68,"y":2282.5263},{"x":69,"y":2251.0042},{"x":70,"y":2223.3001},{"x":71,"y":2210.1852},{"x":72,"y":2218.6775},{"x":73,"y":2237.8456},{"x":74,"y":2242.6033},{"x":75,"y":2252.7247},{"x":76,"y":2249.1442},{"x":77,"y":2218.0341},{"x":78,"y":2138.8313},{"x":79,"y":2080.1762},{"x":80,"y":2017.037},{"x":81,"y":1954.5367},{"x":82,"y":1862.4108},{"x":83,"y":1809.8317},{"x":84,"y":1753.1515},{"x":85,"y":1720.2749},{"x":86,"y":1701.7835},{"x":87,"y":1669.5191},{"x":88,"y":1615.3779},{"x":89,"y":1552.2311},{"x":90,"y":1481.5382},{"x":91,"y":1427.7061},{"x":92,"y":1391.0821},{"x":93,"y":1375.7655},{"x":94,"y":1350.546},{"x":95,"y":1270.1773},{"x":96,"y":1195.0552},{"x":97,"y":1110.5061},{"x":98,"y":1053.6219},{"x":99,"y":959.5736},{"x":100,"y":889.9258}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,255,0.2)"}]},"url":null},{"name":"Sample profile of 5-HT₂(5-HT) in Area 47","filename":"5-HT₂(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT2 receptor in area 47.** This profile plot shows examplary the course of the 5-HT2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 47 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HT₂(5-HT) in Area 47"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HT₂(5-HT) in Area 47"],"datasets":[{"data":[{"x":0,"y":345.6283},{"x":1,"y":354.7343},{"x":2,"y":369.7367},{"x":3,"y":391.7557},{"x":4,"y":407.8075},{"x":5,"y":416.3568},{"x":6,"y":418.5969},{"x":7,"y":422.4871},{"x":8,"y":424.8438},{"x":9,"y":426.4953},{"x":10,"y":432.2861},{"x":11,"y":435.1948},{"x":12,"y":436.6046},{"x":13,"y":439.6718},{"x":14,"y":445.0042},{"x":15,"y":448.9318},{"x":16,"y":452.4073},{"x":17,"y":456.1809},{"x":18,"y":457.817},{"x":19,"y":455.2836},{"x":20,"y":452.4128},{"x":21,"y":451.7975},{"x":22,"y":449.5977},{"x":23,"y":448.1633},{"x":24,"y":445.0282},{"x":25,"y":437.0515},{"x":26,"y":431.8383},{"x":27,"y":426.518},{"x":28,"y":422.7668},{"x":29,"y":420.0294},{"x":30,"y":420.3955},{"x":31,"y":420.4347},{"x":32,"y":422.071},{"x":33,"y":420.2442},{"x":34,"y":420.0974},{"x":35,"y":422.7006},{"x":36,"y":424.4277},{"x":37,"y":422.5899},{"x":38,"y":421.093},{"x":39,"y":420.711},{"x":40,"y":421.342},{"x":41,"y":423.7735},{"x":42,"y":424.9986},{"x":43,"y":425.6234},{"x":44,"y":425.023},{"x":45,"y":422.8694},{"x":46,"y":419.4851},{"x":47,"y":417.9462},{"x":48,"y":414.7972},{"x":49,"y":412.3202},{"x":50,"y":410.9178},{"x":51,"y":410.7838},{"x":52,"y":410.2108},{"x":53,"y":405.9771},{"x":54,"y":399.8914},{"x":55,"y":394.4935},{"x":56,"y":389.0319},{"x":57,"y":383.7583},{"x":58,"y":379.599},{"x":59,"y":376.0636},{"x":60,"y":374.7866},{"x":61,"y":373.2854},{"x":62,"y":369.4961},{"x":63,"y":366.6349},{"x":64,"y":361.617},{"x":65,"y":358.2966},{"x":66,"y":359.3015},{"x":67,"y":360.7042},{"x":68,"y":359.5687},{"x":69,"y":354.5531},{"x":70,"y":348.6361},{"x":71,"y":343.4619},{"x":72,"y":340.8276},{"x":73,"y":341.409},{"x":74,"y":341.9879},{"x":75,"y":342.9111},{"x":76,"y":340.9795},{"x":77,"y":337.4312},{"x":78,"y":335.5497},{"x":79,"y":334.4229},{"x":80,"y":331.6454},{"x":81,"y":330.9294},{"x":82,"y":334.5192},{"x":83,"y":336.8004},{"x":84,"y":337.2907},{"x":85,"y":336.4368},{"x":86,"y":333.2614},{"x":87,"y":324.9671},{"x":88,"y":311.7089},{"x":89,"y":302.5256},{"x":90,"y":295.1598},{"x":91,"y":289.1973},{"x":92,"y":281.5289},{"x":93,"y":275.6806},{"x":94,"y":270.7611},{"x":95,"y":268.3354},{"x":96,"y":266.0008},{"x":97,"y":263.0284},{"x":98,"y":261.8297},{"x":99,"y":261.3918},{"x":100,"y":261.2551}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,255,0.2)"}]},"url":null},{"name":"Sample profile of GABAᴃ(GABA) in Area 47","filename":"GABAᴃ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAB receptor in area 47.** This profile plot shows examplary the course of the GABAB receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 47 in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴃ(GABA) in Area 47"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴃ(GABA) in Area 47"],"datasets":[{"data":[{"x":0,"y":2175.1072},{"x":1,"y":2456.5103},{"x":2,"y":2706.4775},{"x":3,"y":2896.1584},{"x":4,"y":3005.7579},{"x":5,"y":3090.7628},{"x":6,"y":3168.1039},{"x":7,"y":3211.6219},{"x":8,"y":3225.9237},{"x":9,"y":3212.1457},{"x":10,"y":3187.646},{"x":11,"y":3158.0181},{"x":12,"y":3120.0683},{"x":13,"y":3090.078},{"x":14,"y":3089.3112},{"x":15,"y":3100.2445},{"x":16,"y":3105.6333},{"x":17,"y":3101.8133},{"x":18,"y":3098.9862},{"x":19,"y":3095.0045},{"x":20,"y":3076.9068},{"x":21,"y":3047.5339},{"x":22,"y":3027.4443},{"x":23,"y":2990.7685},{"x":24,"y":2964.0476},{"x":25,"y":2938.4774},{"x":26,"y":2914.0078},{"x":27,"y":2872.9248},{"x":28,"y":2833.3249},{"x":29,"y":2809.8058},{"x":30,"y":2806.4489},{"x":31,"y":2799.3524},{"x":32,"y":2782.911},{"x":33,"y":2768.1855},{"x":34,"y":2752.1388},{"x":35,"y":2766.3505},{"x":36,"y":2780.343},{"x":37,"y":2799.6066},{"x":38,"y":2812.8947},{"x":39,"y":2826.5059},{"x":40,"y":2830.5863},{"x":41,"y":2818.0351},{"x":42,"y":2794.3685},{"x":43,"y":2786.7686},{"x":44,"y":2793.2195},{"x":45,"y":2778.0603},{"x":46,"y":2740.8753},{"x":47,"y":2702.1162},{"x":48,"y":2675.9862},{"x":49,"y":2662.8707},{"x":50,"y":2667.4696},{"x":51,"y":2672.0691},{"x":52,"y":2669.8833},{"x":53,"y":2661.9379},{"x":54,"y":2657.8236},{"x":55,"y":2667.5301},{"x":56,"y":2688.1552},{"x":57,"y":2691.8473},{"x":58,"y":2704.2333},{"x":59,"y":2724.5025},{"x":60,"y":2738.9208},{"x":61,"y":2746.0092},{"x":62,"y":2736.9647},{"x":63,"y":2724.9779},{"x":64,"y":2720.8839},{"x":65,"y":2709.0156},{"x":66,"y":2696.0759},{"x":67,"y":2694.7121},{"x":68,"y":2695.5613},{"x":69,"y":2705.3845},{"x":70,"y":2696.7962},{"x":71,"y":2694.0484},{"x":72,"y":2677.4388},{"x":73,"y":2640.1058},{"x":74,"y":2592.7722},{"x":75,"y":2529.4333},{"x":76,"y":2456.6159},{"x":77,"y":2391.6752},{"x":78,"y":2345.6001},{"x":79,"y":2305.5655},{"x":80,"y":2274.5255},{"x":81,"y":2240.243},{"x":82,"y":2204.7724},{"x":83,"y":2170.1249},{"x":84,"y":2120.2871},{"x":85,"y":2078.8795},{"x":86,"y":2033.9933},{"x":87,"y":2002.3845},{"x":88,"y":1948.6828},{"x":89,"y":1883.4112},{"x":90,"y":1807.8317},{"x":91,"y":1729.7633},{"x":92,"y":1638.1925},{"x":93,"y":1564.705},{"x":94,"y":1508.5179},{"x":95,"y":1456.3711},{"x":96,"y":1417.4886},{"x":97,"y":1389.296},{"x":98,"y":1347.2309},{"x":99,"y":1284.5282},{"x":100,"y":1236.5202}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(255,255,255,0.2)"}]},"url":null}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas"},{"type":"Receptor Data","name":"Receptor Data for Area 4p","regionName":[{"regionName":"Area 4p (PreCG)","relationship":"equals"}],"properties":{"description":null,"publications":[]},"files":[{"name":"Receptor density fingerprint of Area 4p","filename":"fingerprint","mimetype":"application/json","properties":{"description":"**Multireceptor fingerprint for area 4p.** This polar plot shows the mean receptor densities in fmol/mg protein (solid shape) and standard deviation (dashed line) of 16 receptor binding sites in the area 4p. The data is based on the left and right hemisphere of one female subject (brain id: hg0201, sample ids: ID07 and ID08, age: 77, cause of death: lung edema) and the right hemispheres of two male subjects (brain id: hg0500, sample ids: ID09, age: 72, cause of death: cardiac arrest | brain id: hg0100, sample ids: ID12, age: 77, cause of death: coronary heart disease).","publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["286","286","739","NA","999","1842","1337","245","141","400","69","193","111","162","234","49"]},{"label":"mean_sd","data":["40","35","1","NA","108","10","65","23","27","44","13","7","15","31","2","5"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area 4p (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(139,71,137,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAᴀ(BZ) in Area 4p","filename":"GABAᴀ(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/4p_bm_BZ.jpg"},{"name":"Sample autoradiograph of α₁(NA) in Area 4p","filename":"α₁(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/4p_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area 4p","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/4p_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAᴀ(GABA) in Area 4p","filename":"GABAᴀ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/4p_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area 4p","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/4p_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area 4p","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/4p_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of M₁(ACh) in Area 4p","filename":"M₁(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/4p_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HT₁ᴀ(5-HT) in Area 4p","filename":"5-HT₁ᴀ(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/4p_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area 4p","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/4p_bm_kainate.jpg"},{"name":"Sample autoradiograph of M₂(ACh) in Area 4p","filename":"M₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/4p_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area 4p","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/4p_bm_AMPA.jpg"},{"name":"Sample autoradiograph of D₁(DA) in Area 4p","filename":"D₁(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/4p_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area 4p","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/4p_bm_M3.jpg"},{"name":"Sample autoradiograph of mGluR2/3 (Glu) in Area 4p","filename":"mGluR2\\/3 (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/4p_bm_mGluR2_3.jpg"},{"name":"Sample autoradiograph of 5-HT₂(5-HT) in Area 4p","filename":"5-HT₂(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/4p_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAᴃ(GABA) in Area 4p","filename":"GABAᴃ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/4p_bm_GABAB.jpg"},{"name":"Sample profile of GABAᴀ(BZ) in Area 4p","filename":"GABAᴀ(BZ)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of BZ receptor in area 4p.** This profile plot shows examplary the course of the BZ receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴀ(BZ) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴀ(BZ) in Area 4p"],"datasets":[{"data":[{"x":0,"y":2413.7942},{"x":1,"y":2579.6044},{"x":2,"y":2702.8189},{"x":3,"y":2798.8989},{"x":4,"y":2884.1463},{"x":5,"y":2974.3385},{"x":6,"y":3051.5047},{"x":7,"y":3111.7795},{"x":8,"y":3147.6055},{"x":9,"y":3166.3901},{"x":10,"y":3176.7118},{"x":11,"y":3186.6968},{"x":12,"y":3190.6774},{"x":13,"y":3175.9626},{"x":14,"y":3150.1009},{"x":15,"y":3126.9474},{"x":16,"y":3101.0072},{"x":17,"y":3067.388},{"x":18,"y":3019.0921},{"x":19,"y":2941.8543},{"x":20,"y":2848.7345},{"x":21,"y":2764.5887},{"x":22,"y":2685.3707},{"x":23,"y":2594.0466},{"x":24,"y":2495.2953},{"x":25,"y":2407.7066},{"x":26,"y":2333.9791},{"x":27,"y":2251.1285},{"x":28,"y":2180.8211},{"x":29,"y":2123.6526},{"x":30,"y":2079.9581},{"x":31,"y":2034.0584},{"x":32,"y":1997.3294},{"x":33,"y":1965.5269},{"x":34,"y":1940.2193},{"x":35,"y":1916.1916},{"x":36,"y":1883.4167},{"x":37,"y":1853.6692},{"x":38,"y":1826.0956},{"x":39,"y":1798.6402},{"x":40,"y":1775.9312},{"x":41,"y":1750.9717},{"x":42,"y":1727.9437},{"x":43,"y":1717.8377},{"x":44,"y":1704.3227},{"x":45,"y":1694.9437},{"x":46,"y":1689.5052},{"x":47,"y":1686.4007},{"x":48,"y":1677.6482},{"x":49,"y":1661.8785},{"x":50,"y":1644.2679},{"x":51,"y":1620.0272},{"x":52,"y":1587.3433},{"x":53,"y":1554.6403},{"x":54,"y":1521.1183},{"x":55,"y":1486.9183},{"x":56,"y":1456.6702},{"x":57,"y":1437.946},{"x":58,"y":1421.5769},{"x":59,"y":1408.4279},{"x":60,"y":1398.5662},{"x":61,"y":1392.2645},{"x":62,"y":1387.9689},{"x":63,"y":1381.544},{"x":64,"y":1371.8216},{"x":65,"y":1366.965},{"x":66,"y":1370.4149},{"x":67,"y":1366.3302},{"x":68,"y":1347.7732},{"x":69,"y":1331.3701},{"x":70,"y":1324.8525},{"x":71,"y":1319.6012},{"x":72,"y":1305.0713},{"x":73,"y":1286.3558},{"x":74,"y":1267.4558},{"x":75,"y":1254.2137},{"x":76,"y":1240.9391},{"x":77,"y":1223.9838},{"x":78,"y":1203.4248},{"x":79,"y":1185.6071},{"x":80,"y":1161.864},{"x":81,"y":1125.0255},{"x":82,"y":1091.9493},{"x":83,"y":1069.7976},{"x":84,"y":1045.3628},{"x":85,"y":1021.5118},{"x":86,"y":1002.7278},{"x":87,"y":990.1426},{"x":88,"y":974.0419},{"x":89,"y":950.0222},{"x":90,"y":927.9979},{"x":91,"y":915.1907},{"x":92,"y":895.0272},{"x":93,"y":863.2511},{"x":94,"y":825.0214},{"x":95,"y":784.9342},{"x":96,"y":741.202},{"x":97,"y":698.1911},{"x":98,"y":646.022},{"x":99,"y":581.6678},{"x":100,"y":528.1679}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of α₁(NA) in Area 4p","filename":"α₁(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha1 receptor in area 4p.** This profile plot shows examplary the course of the alpha1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₁(NA) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₁(NA) in Area 4p"],"datasets":[{"data":[{"x":0,"y":205.1842},{"x":1,"y":240.3517},{"x":2,"y":275.207},{"x":3,"y":299.4163},{"x":4,"y":314.1489},{"x":5,"y":321.4688},{"x":6,"y":323.7348},{"x":7,"y":322.5535},{"x":8,"y":319.1139},{"x":9,"y":313.5944},{"x":10,"y":307.5699},{"x":11,"y":300.6218},{"x":12,"y":293.9241},{"x":13,"y":287.1282},{"x":14,"y":279.3099},{"x":15,"y":271.8437},{"x":16,"y":265.1888},{"x":17,"y":259.4219},{"x":18,"y":254.1061},{"x":19,"y":247.1481},{"x":20,"y":239.451},{"x":21,"y":231.8765},{"x":22,"y":223.962},{"x":23,"y":217.4048},{"x":24,"y":211.3585},{"x":25,"y":204.6168},{"x":26,"y":199.1226},{"x":27,"y":192.9799},{"x":28,"y":187.1456},{"x":29,"y":183.5182},{"x":30,"y":180.0959},{"x":31,"y":176.4296},{"x":32,"y":173.5105},{"x":33,"y":171.3133},{"x":34,"y":168.9334},{"x":35,"y":167.0311},{"x":36,"y":165.0458},{"x":37,"y":163.317},{"x":38,"y":160.9514},{"x":39,"y":157.7277},{"x":40,"y":154.1254},{"x":41,"y":152.0029},{"x":42,"y":151.2182},{"x":43,"y":148.4541},{"x":44,"y":146.2252},{"x":45,"y":145.4551},{"x":46,"y":144.9319},{"x":47,"y":145.0735},{"x":48,"y":146.0921},{"x":49,"y":147.1874},{"x":50,"y":148.6085},{"x":51,"y":149.702},{"x":52,"y":151.0333},{"x":53,"y":153.2793},{"x":54,"y":155.3491},{"x":55,"y":157.6639},{"x":56,"y":158.7428},{"x":57,"y":160.2607},{"x":58,"y":160.9932},{"x":59,"y":160.3886},{"x":60,"y":159.3193},{"x":61,"y":158.2289},{"x":62,"y":157.1462},{"x":63,"y":157.2808},{"x":64,"y":158.3863},{"x":65,"y":158.7046},{"x":66,"y":158.4448},{"x":67,"y":157.8302},{"x":68,"y":156.3656},{"x":69,"y":154.7349},{"x":70,"y":154.0051},{"x":71,"y":153.2451},{"x":72,"y":152.9668},{"x":73,"y":153.9097},{"x":74,"y":154.6538},{"x":75,"y":155.4769},{"x":76,"y":157.1326},{"x":77,"y":157.4459},{"x":78,"y":157.7777},{"x":79,"y":159.3443},{"x":80,"y":161.0418},{"x":81,"y":162.1393},{"x":82,"y":161.385},{"x":83,"y":158.7497},{"x":84,"y":155.2385},{"x":85,"y":151.8252},{"x":86,"y":147.909},{"x":87,"y":144.1392},{"x":88,"y":140.7435},{"x":89,"y":138.6898},{"x":90,"y":135.0542},{"x":91,"y":130.393},{"x":92,"y":126.5798},{"x":93,"y":122.5006},{"x":94,"y":117.679},{"x":95,"y":113.1031},{"x":96,"y":109.215},{"x":97,"y":103.6431},{"x":98,"y":97.0317},{"x":99,"y":89.5429},{"x":100,"y":83.3149}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of NMDA (Glu) in Area 4p","filename":"NMDA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of NMDA receptor in area 4p.** This profile plot shows examplary the course of the NMDA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of NMDA (Glu) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of NMDA (Glu) in Area 4p"],"datasets":[{"data":[{"x":0,"y":671.5327},{"x":1,"y":762.0834},{"x":2,"y":825.9149},{"x":3,"y":876.0997},{"x":4,"y":908.4196},{"x":5,"y":948.0117},{"x":6,"y":983.0097},{"x":7,"y":1006.7643},{"x":8,"y":1024.6274},{"x":9,"y":1040.8895},{"x":10,"y":1055.4347},{"x":11,"y":1065.6967},{"x":12,"y":1073.718},{"x":13,"y":1076.7193},{"x":14,"y":1076.3371},{"x":15,"y":1076.2685},{"x":16,"y":1072.7573},{"x":17,"y":1065.5468},{"x":18,"y":1060.4237},{"x":19,"y":1054.4459},{"x":20,"y":1043.0831},{"x":21,"y":1031.6371},{"x":22,"y":1019.9855},{"x":23,"y":1011.1376},{"x":24,"y":1001.1152},{"x":25,"y":990.5897},{"x":26,"y":983.1137},{"x":27,"y":973.6314},{"x":28,"y":962.1853},{"x":29,"y":949.9465},{"x":30,"y":940.0855},{"x":31,"y":927.9226},{"x":32,"y":912.8959},{"x":33,"y":895.8703},{"x":34,"y":876.6853},{"x":35,"y":860.5046},{"x":36,"y":847.7047},{"x":37,"y":833.4613},{"x":38,"y":817.7553},{"x":39,"y":805.428},{"x":40,"y":793.0707},{"x":41,"y":784.4402},{"x":42,"y":780.7564},{"x":43,"y":777.5456},{"x":44,"y":778.4201},{"x":45,"y":777.6818},{"x":46,"y":769.9891},{"x":47,"y":759.2726},{"x":48,"y":748.9673},{"x":49,"y":738.2948},{"x":50,"y":727.8748},{"x":51,"y":714.372},{"x":52,"y":702.6996},{"x":53,"y":694.3483},{"x":54,"y":691.909},{"x":55,"y":692.0614},{"x":56,"y":688.4385},{"x":57,"y":685.6036},{"x":58,"y":683.1186},{"x":59,"y":676.6456},{"x":60,"y":669.4609},{"x":61,"y":669.0202},{"x":62,"y":669.4426},{"x":63,"y":669.2955},{"x":64,"y":671.8318},{"x":65,"y":671.8088},{"x":66,"y":666.7441},{"x":67,"y":659.3642},{"x":68,"y":653.5222},{"x":69,"y":648.1735},{"x":70,"y":641.1897},{"x":71,"y":633.3543},{"x":72,"y":624.8101},{"x":73,"y":617.3287},{"x":74,"y":607.1936},{"x":75,"y":596.4136},{"x":76,"y":588.6646},{"x":77,"y":584.88},{"x":78,"y":583.2397},{"x":79,"y":578.3057},{"x":80,"y":569.7393},{"x":81,"y":565.8268},{"x":82,"y":567.3331},{"x":83,"y":561.5273},{"x":84,"y":556.82},{"x":85,"y":558.0755},{"x":86,"y":557.7605},{"x":87,"y":556.2149},{"x":88,"y":551.3922},{"x":89,"y":549.3613},{"x":90,"y":548.2166},{"x":91,"y":542.1893},{"x":92,"y":532.1291},{"x":93,"y":520.8956},{"x":94,"y":510.1724},{"x":95,"y":496.3677},{"x":96,"y":480.5641},{"x":97,"y":468.4919},{"x":98,"y":455.219},{"x":99,"y":441.33},{"x":100,"y":422.7714}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of GABAᴀ(GABA) in Area 4p","filename":"GABAᴀ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAA receptor in area 4p.** This profile plot shows examplary the course of the GABAA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴀ(GABA) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴀ(GABA) in Area 4p"],"datasets":[{"data":[{"x":0,"y":965.5393},{"x":1,"y":1151.589},{"x":2,"y":1269.8641},{"x":3,"y":1430.0462},{"x":4,"y":1647.1004},{"x":5,"y":1845.1383},{"x":6,"y":1973.9805},{"x":7,"y":2039.1232},{"x":8,"y":2121.6727},{"x":9,"y":2198.0932},{"x":10,"y":2271.2382},{"x":11,"y":2330.7525},{"x":12,"y":2381.1104},{"x":13,"y":2422.7618},{"x":14,"y":2472.3095},{"x":15,"y":2517.238},{"x":16,"y":2551.9437},{"x":17,"y":2565.2157},{"x":18,"y":2569.4004},{"x":19,"y":2563.6702},{"x":20,"y":2552.1965},{"x":21,"y":2533.0733},{"x":22,"y":2507.8129},{"x":23,"y":2490.4359},{"x":24,"y":2466.1782},{"x":25,"y":2432.777},{"x":26,"y":2381.5361},{"x":27,"y":2312.2432},{"x":28,"y":2236.4699},{"x":29,"y":2162.9645},{"x":30,"y":2086.5463},{"x":31,"y":2014.0596},{"x":32,"y":1943.6458},{"x":33,"y":1871.2318},{"x":34,"y":1812.889},{"x":35,"y":1747.1772},{"x":36,"y":1687.3703},{"x":37,"y":1631.6518},{"x":38,"y":1572.9243},{"x":39,"y":1525.8313},{"x":40,"y":1491.4072},{"x":41,"y":1452.491},{"x":42,"y":1407.0283},{"x":43,"y":1364.8219},{"x":44,"y":1324.3999},{"x":45,"y":1285.3707},{"x":46,"y":1245.3963},{"x":47,"y":1205.4298},{"x":48,"y":1172.975},{"x":49,"y":1151.8664},{"x":50,"y":1135.9644},{"x":51,"y":1112.919},{"x":52,"y":1089.5399},{"x":53,"y":1070.048},{"x":54,"y":1051.2739},{"x":55,"y":1032.4496},{"x":56,"y":1013.6026},{"x":57,"y":993.1959},{"x":58,"y":972.977},{"x":59,"y":953.3375},{"x":60,"y":936.7445},{"x":61,"y":924.2896},{"x":62,"y":909.1979},{"x":63,"y":898.075},{"x":64,"y":888.4155},{"x":65,"y":866.639},{"x":66,"y":849.7873},{"x":67,"y":843.6005},{"x":68,"y":830.8216},{"x":69,"y":813.7414},{"x":70,"y":796.1059},{"x":71,"y":787.1312},{"x":72,"y":781.821},{"x":73,"y":776.9668},{"x":74,"y":773.711},{"x":75,"y":771.0308},{"x":76,"y":769.5572},{"x":77,"y":762.1573},{"x":78,"y":755.5919},{"x":79,"y":748.7084},{"x":80,"y":744.6876},{"x":81,"y":742.9751},{"x":82,"y":745.0323},{"x":83,"y":746.6802},{"x":84,"y":739.1477},{"x":85,"y":714.0092},{"x":86,"y":684.6236},{"x":87,"y":657.7985},{"x":88,"y":639.7674},{"x":89,"y":616.9143},{"x":90,"y":594.2077},{"x":91,"y":576.7812},{"x":92,"y":557.1305},{"x":93,"y":535.8097},{"x":94,"y":521.4719},{"x":95,"y":491.7572},{"x":96,"y":446.4722},{"x":97,"y":400.0985},{"x":98,"y":369.1684},{"x":99,"y":351.5054},{"x":100,"y":326.5083}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of α₂(NA) in Area 4p","filename":"α₂(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha2 receptor in area 4p.** This profile plot shows examplary the course of the alpha2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₂(NA) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₂(NA) in Area 4p"],"datasets":[{"data":[{"x":0,"y":246.2534},{"x":1,"y":259.4862},{"x":2,"y":277.4986},{"x":3,"y":285.2216},{"x":4,"y":294.0173},{"x":5,"y":300.7106},{"x":6,"y":306.3066},{"x":7,"y":312.9451},{"x":8,"y":314.0576},{"x":9,"y":314.2408},{"x":10,"y":314.8368},{"x":11,"y":317.026},{"x":12,"y":320.4883},{"x":13,"y":321.852},{"x":14,"y":326.9512},{"x":15,"y":328.7829},{"x":16,"y":328.8389},{"x":17,"y":328.4249},{"x":18,"y":328.2449},{"x":19,"y":327.5129},{"x":20,"y":325.5236},{"x":21,"y":324.4907},{"x":22,"y":322.0809},{"x":23,"y":320.5948},{"x":24,"y":318.2293},{"x":25,"y":312.8317},{"x":26,"y":307.4058},{"x":27,"y":303.2551},{"x":28,"y":297.6031},{"x":29,"y":291.8421},{"x":30,"y":287.2327},{"x":31,"y":280.3822},{"x":32,"y":272.6439},{"x":33,"y":266.0348},{"x":34,"y":260.7282},{"x":35,"y":255.295},{"x":36,"y":251.4279},{"x":37,"y":246.2224},{"x":38,"y":240.9865},{"x":39,"y":232.7538},{"x":40,"y":225.5775},{"x":41,"y":219.1856},{"x":42,"y":212.542},{"x":43,"y":206.4109},{"x":44,"y":198.4776},{"x":45,"y":191.7136},{"x":46,"y":184.8949},{"x":47,"y":177.3725},{"x":48,"y":170.9253},{"x":49,"y":163.2244},{"x":50,"y":158.5991},{"x":51,"y":155.6667},{"x":52,"y":151.1555},{"x":53,"y":149.0065},{"x":54,"y":146.8623},{"x":55,"y":143.5166},{"x":56,"y":142.1431},{"x":57,"y":139.5216},{"x":58,"y":137.763},{"x":59,"y":135.723},{"x":60,"y":134.9706},{"x":61,"y":134.3301},{"x":62,"y":132.7478},{"x":63,"y":128.6403},{"x":64,"y":128.8844},{"x":65,"y":127.1248},{"x":66,"y":124.9873},{"x":67,"y":122.3877},{"x":68,"y":120.8569},{"x":69,"y":119.7062},{"x":70,"y":117.9047},{"x":71,"y":118.1982},{"x":72,"y":117.7951},{"x":73,"y":117.6583},{"x":74,"y":118.3453},{"x":75,"y":121.5278},{"x":76,"y":122.7096},{"x":77,"y":121.637},{"x":78,"y":120.9788},{"x":79,"y":121.9424},{"x":80,"y":124.0766},{"x":81,"y":127.485},{"x":82,"y":128.8032},{"x":83,"y":131.1107},{"x":84,"y":131.5831},{"x":85,"y":131.9437},{"x":86,"y":132.7724},{"x":87,"y":131.3279},{"x":88,"y":130.4136},{"x":89,"y":129.4572},{"x":90,"y":128.3176},{"x":91,"y":127.5929},{"x":92,"y":125.9543},{"x":93,"y":121.9733},{"x":94,"y":114.7188},{"x":95,"y":110.2009},{"x":96,"y":103.4671},{"x":97,"y":97.5537},{"x":98,"y":93.8018},{"x":99,"y":85.5132},{"x":100,"y":78.944}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of α₄β₂(ACh) in Area 4p","filename":"α₄β₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha4-beta2 receptor in area 4p.** This profile plot shows examplary the course of the alpha4-beta2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the right hemisphere of one male subject (brain id: MR1, sample id: ID02, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₄β₂(ACh) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₄β₂(ACh) in Area 4p"],"datasets":[{"data":[{"x":0,"y":23.3964},{"x":1,"y":27.5677},{"x":2,"y":33.1487},{"x":3,"y":38.0441},{"x":4,"y":39.9948},{"x":5,"y":41.6577},{"x":6,"y":41.4725},{"x":7,"y":42.5339},{"x":8,"y":41.9263},{"x":9,"y":42.1979},{"x":10,"y":42.9298},{"x":11,"y":43.7589},{"x":12,"y":47.5871},{"x":13,"y":52.4842},{"x":14,"y":56.0057},{"x":15,"y":59.4803},{"x":16,"y":63.3273},{"x":17,"y":64.846},{"x":18,"y":65.7842},{"x":19,"y":67.2184},{"x":20,"y":65.0516},{"x":21,"y":63.3048},{"x":22,"y":63.2549},{"x":23,"y":63.0501},{"x":24,"y":61.1246},{"x":25,"y":58.7209},{"x":26,"y":58.6303},{"x":27,"y":57.2076},{"x":28,"y":56.8928},{"x":29,"y":58.8376},{"x":30,"y":60.7044},{"x":31,"y":60.8714},{"x":32,"y":60.1396},{"x":33,"y":57.9379},{"x":34,"y":54.8886},{"x":35,"y":53.3826},{"x":36,"y":54.1466},{"x":37,"y":52.2331},{"x":38,"y":50.1424},{"x":39,"y":47.0771},{"x":40,"y":44.8462},{"x":41,"y":43.2539},{"x":42,"y":41.6472},{"x":43,"y":40.3653},{"x":44,"y":38.8388},{"x":45,"y":36.4354},{"x":46,"y":34.9368},{"x":47,"y":32.7955},{"x":48,"y":30.5269},{"x":49,"y":29.4819},{"x":50,"y":28.6333},{"x":51,"y":27.4856},{"x":52,"y":30.0795},{"x":53,"y":29.6557},{"x":54,"y":27.9403},{"x":55,"y":27.1986},{"x":56,"y":27.3866},{"x":57,"y":28.5206},{"x":58,"y":29.9391},{"x":59,"y":28.32},{"x":60,"y":26.3162},{"x":61,"y":25.2729},{"x":62,"y":23.8304},{"x":63,"y":23.2192},{"x":64,"y":22.7362},{"x":65,"y":23.9736},{"x":66,"y":26.6035},{"x":67,"y":28.2756},{"x":68,"y":29.7539},{"x":69,"y":29.3688},{"x":70,"y":28.7515},{"x":71,"y":27.8298},{"x":72,"y":26.2974},{"x":73,"y":26.1557},{"x":74,"y":25.338},{"x":75,"y":26.0453},{"x":76,"y":27.9933},{"x":77,"y":26.4202},{"x":78,"y":24.6767},{"x":79,"y":27.4102},{"x":80,"y":27.7946},{"x":81,"y":29.4776},{"x":82,"y":30.8489},{"x":83,"y":30.712},{"x":84,"y":30.2648},{"x":85,"y":27.2451},{"x":86,"y":26.7469},{"x":87,"y":24.9955},{"x":88,"y":22.4077},{"x":89,"y":19.4475},{"x":90,"y":17.9922},{"x":91,"y":17.8824},{"x":92,"y":17.8844},{"x":93,"y":17.4764},{"x":94,"y":19.2903},{"x":95,"y":23.8196},{"x":96,"y":27.6593},{"x":97,"y":29.3031},{"x":98,"y":29.8073},{"x":99,"y":28.1852},{"x":100,"y":24.9341}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of M₁(ACh) in Area 4p","filename":"M₁(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M1 receptor in area 4p.** This profile plot shows examplary the course of the M1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₁(ACh) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₁(ACh) in Area 4p"],"datasets":[{"data":[{"x":0,"y":177.5613},{"x":1,"y":212.9125},{"x":2,"y":237.2639},{"x":3,"y":246.8467},{"x":4,"y":251.8385},{"x":5,"y":261.0618},{"x":6,"y":273.723},{"x":7,"y":280.7772},{"x":8,"y":285.8265},{"x":9,"y":290.192},{"x":10,"y":297.355},{"x":11,"y":301.9992},{"x":12,"y":303.6063},{"x":13,"y":303.2138},{"x":14,"y":302.084},{"x":15,"y":300.7632},{"x":16,"y":297.0427},{"x":17,"y":296.8666},{"x":18,"y":298.0317},{"x":19,"y":301.7782},{"x":20,"y":301.3352},{"x":21,"y":297.8462},{"x":22,"y":288.1062},{"x":23,"y":280.651},{"x":24,"y":280.3739},{"x":25,"y":284.5969},{"x":26,"y":292.552},{"x":27,"y":297.0228},{"x":28,"y":295.1052},{"x":29,"y":290.6341},{"x":30,"y":282.2568},{"x":31,"y":276.5483},{"x":32,"y":273.3071},{"x":33,"y":272.3669},{"x":34,"y":268.6228},{"x":35,"y":264.066},{"x":36,"y":255.4622},{"x":37,"y":247.7011},{"x":38,"y":244.7823},{"x":39,"y":242.7695},{"x":40,"y":244.436},{"x":41,"y":239.7032},{"x":42,"y":240.084},{"x":43,"y":241.3789},{"x":44,"y":239.0415},{"x":45,"y":231.2252},{"x":46,"y":225.5254},{"x":47,"y":227.1775},{"x":48,"y":229.674},{"x":49,"y":231.0203},{"x":50,"y":226.7826},{"x":51,"y":223.0323},{"x":52,"y":223.463},{"x":53,"y":225.4177},{"x":54,"y":226.4601},{"x":55,"y":223.5417},{"x":56,"y":220.1629},{"x":57,"y":211.5754},{"x":58,"y":206.0136},{"x":59,"y":202.2226},{"x":60,"y":201.2661},{"x":61,"y":203.4258},{"x":62,"y":204.7404},{"x":63,"y":205.0382},{"x":64,"y":208.381},{"x":65,"y":212.1368},{"x":66,"y":214.4771},{"x":67,"y":212.6352},{"x":68,"y":204.4166},{"x":69,"y":196.9347},{"x":70,"y":191.4556},{"x":71,"y":189.1072},{"x":72,"y":190.59},{"x":73,"y":188.3134},{"x":74,"y":184.0019},{"x":75,"y":180.1806},{"x":76,"y":175.4552},{"x":77,"y":173.0925},{"x":78,"y":170.2103},{"x":79,"y":167.2494},{"x":80,"y":164.0523},{"x":81,"y":156.5838},{"x":82,"y":149.7573},{"x":83,"y":149.6057},{"x":84,"y":159.9707},{"x":85,"y":168.7063},{"x":86,"y":168.9057},{"x":87,"y":170.7221},{"x":88,"y":171.0815},{"x":89,"y":169.9085},{"x":90,"y":168.0826},{"x":91,"y":169.9774},{"x":92,"y":175.4958},{"x":93,"y":178.4184},{"x":94,"y":174.982},{"x":95,"y":177.1927},{"x":96,"y":178.7234},{"x":97,"y":176.297},{"x":98,"y":170.38},{"x":99,"y":158.8722},{"x":100,"y":147.2249}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of 5-HT₁ᴀ(5-HT) in Area 4p","filename":"5-HT₁ᴀ(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT1A receptor in area 4p.** This profile plot shows examplary the course of the 5-HT1A receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HT₁ᴀ(5-HT) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HT₁ᴀ(5-HT) in Area 4p"],"datasets":[{"data":[{"x":0,"y":428.9308},{"x":1,"y":495.1403},{"x":2,"y":541.9164},{"x":3,"y":588.555},{"x":4,"y":647.0351},{"x":5,"y":692.3516},{"x":6,"y":724.4157},{"x":7,"y":736.4219},{"x":8,"y":741.1353},{"x":9,"y":742.8676},{"x":10,"y":750.2411},{"x":11,"y":748.3506},{"x":12,"y":734.6194},{"x":13,"y":714.5461},{"x":14,"y":693.3643},{"x":15,"y":676.2287},{"x":16,"y":645.0704},{"x":17,"y":602.1474},{"x":18,"y":552.7692},{"x":19,"y":514.9649},{"x":20,"y":490.3583},{"x":21,"y":439.6608},{"x":22,"y":388.6937},{"x":23,"y":345.0375},{"x":24,"y":300.4365},{"x":25,"y":263.1994},{"x":26,"y":244.5633},{"x":27,"y":225.1518},{"x":28,"y":197.3158},{"x":29,"y":173.332},{"x":30,"y":153.4922},{"x":31,"y":137.1926},{"x":32,"y":129.6507},{"x":33,"y":125.2547},{"x":34,"y":115.9493},{"x":35,"y":106.9346},{"x":36,"y":99.137},{"x":37,"y":93.7743},{"x":38,"y":91.4765},{"x":39,"y":88.9536},{"x":40,"y":85.2524},{"x":41,"y":82.2302},{"x":42,"y":80.2956},{"x":43,"y":79.4478},{"x":44,"y":80.01},{"x":45,"y":81.0778},{"x":46,"y":81.496},{"x":47,"y":82.1455},{"x":48,"y":82.2895},{"x":49,"y":82.5744},{"x":50,"y":83.0285},{"x":51,"y":83.3794},{"x":52,"y":83.746},{"x":53,"y":84.2743},{"x":54,"y":84.9396},{"x":55,"y":84.8718},{"x":56,"y":85.0799},{"x":57,"y":85.1204},{"x":58,"y":83.9936},{"x":59,"y":82.4071},{"x":60,"y":82.0888},{"x":61,"y":83.2833},{"x":62,"y":82.994},{"x":63,"y":82.5629},{"x":64,"y":82.4524},{"x":65,"y":82.6655},{"x":66,"y":83.2486},{"x":67,"y":84.6959},{"x":68,"y":85.0116},{"x":69,"y":85.4611},{"x":70,"y":87.0886},{"x":71,"y":87.4156},{"x":72,"y":86.4148},{"x":73,"y":85.9081},{"x":74,"y":86.8308},{"x":75,"y":88.2356},{"x":76,"y":88.6416},{"x":77,"y":89.0933},{"x":78,"y":90.7302},{"x":79,"y":92.9634},{"x":80,"y":95.5819},{"x":81,"y":96.8833},{"x":82,"y":100.074},{"x":83,"y":103.905},{"x":84,"y":108.4788},{"x":85,"y":111.3809},{"x":86,"y":111.5588},{"x":87,"y":112.7189},{"x":88,"y":113.3942},{"x":89,"y":113.6225},{"x":90,"y":112.8714},{"x":91,"y":111.7206},{"x":92,"y":111.6132},{"x":93,"y":110.3027},{"x":94,"y":107.5104},{"x":95,"y":103.692},{"x":96,"y":99.1192},{"x":97,"y":94.175},{"x":98,"y":90.759},{"x":99,"y":88.0743},{"x":100,"y":86.1116}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of kainate (Glu) in Area 4p","filename":"kainate (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of kainate receptor in area 4p.** This profile plot shows examplary the course of the kainate receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of kainate (Glu) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of kainate (Glu) in Area 4p"],"datasets":[{"data":[{"x":0,"y":444.9013},{"x":1,"y":478.853},{"x":2,"y":522.3044},{"x":3,"y":566.3769},{"x":4,"y":611.4381},{"x":5,"y":639.1643},{"x":6,"y":670.3777},{"x":7,"y":709.8891},{"x":8,"y":736.845},{"x":9,"y":751.4612},{"x":10,"y":759.8265},{"x":11,"y":760.0773},{"x":12,"y":755.6988},{"x":13,"y":748.2128},{"x":14,"y":737.3758},{"x":15,"y":714.9009},{"x":16,"y":698.4431},{"x":17,"y":692.0432},{"x":18,"y":693.9772},{"x":19,"y":694.4279},{"x":20,"y":689.9882},{"x":21,"y":673.9338},{"x":22,"y":662.2802},{"x":23,"y":659.3315},{"x":24,"y":647.7461},{"x":25,"y":635.2646},{"x":26,"y":624.9549},{"x":27,"y":613.6821},{"x":28,"y":601.6596},{"x":29,"y":595.9311},{"x":30,"y":585.5849},{"x":31,"y":572.7356},{"x":32,"y":564.8913},{"x":33,"y":552.4053},{"x":34,"y":546.3442},{"x":35,"y":543.6978},{"x":36,"y":537.0066},{"x":37,"y":539.8829},{"x":38,"y":543.2446},{"x":39,"y":539.9692},{"x":40,"y":538.3033},{"x":41,"y":537.9807},{"x":42,"y":535.1719},{"x":43,"y":526.5822},{"x":44,"y":513.5545},{"x":45,"y":514.0201},{"x":46,"y":509.4211},{"x":47,"y":517.0931},{"x":48,"y":529.9028},{"x":49,"y":541.1426},{"x":50,"y":548.2803},{"x":51,"y":550.3827},{"x":52,"y":558.8487},{"x":53,"y":559.927},{"x":54,"y":560.2662},{"x":55,"y":557.1831},{"x":56,"y":548.6018},{"x":57,"y":555.1562},{"x":58,"y":555.5079},{"x":59,"y":557.5307},{"x":60,"y":553.8345},{"x":61,"y":549.0618},{"x":62,"y":537.1122},{"x":63,"y":531.8627},{"x":64,"y":512.7822},{"x":65,"y":500.884},{"x":66,"y":494.9313},{"x":67,"y":503.8626},{"x":68,"y":509.7465},{"x":69,"y":507.8355},{"x":70,"y":516.0139},{"x":71,"y":515.2897},{"x":72,"y":505.1189},{"x":73,"y":499.4815},{"x":74,"y":500.4826},{"x":75,"y":509.1224},{"x":76,"y":520.0008},{"x":77,"y":537.0228},{"x":78,"y":541.7035},{"x":79,"y":540.2282},{"x":80,"y":550.8264},{"x":81,"y":558.0364},{"x":82,"y":554.3041},{"x":83,"y":557.8952},{"x":84,"y":561.7992},{"x":85,"y":560.6808},{"x":86,"y":560.0122},{"x":87,"y":549.6383},{"x":88,"y":544.6991},{"x":89,"y":530.6341},{"x":90,"y":519.7908},{"x":91,"y":503.1348},{"x":92,"y":488.2597},{"x":93,"y":472.8749},{"x":94,"y":453.6037},{"x":95,"y":443.4381},{"x":96,"y":425.9718},{"x":97,"y":392.7833},{"x":98,"y":359.1279},{"x":99,"y":327.3993},{"x":100,"y":302.0907}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of M₂(ACh) in Area 4p","filename":"M₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M2 receptor in area 4p.** This profile plot shows examplary the course of the M2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₂(ACh) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₂(ACh) in Area 4p"],"datasets":[{"data":[{"x":0,"y":108.2147},{"x":1,"y":114.7941},{"x":2,"y":120.2603},{"x":3,"y":125.0035},{"x":4,"y":128.6499},{"x":5,"y":132.0851},{"x":6,"y":134.0588},{"x":7,"y":134.9646},{"x":8,"y":135.1502},{"x":9,"y":136.6637},{"x":10,"y":139.1111},{"x":11,"y":141.3666},{"x":12,"y":143.7458},{"x":13,"y":146.0771},{"x":14,"y":148.2536},{"x":15,"y":149.713},{"x":16,"y":150.2325},{"x":17,"y":149.7311},{"x":18,"y":149.3945},{"x":19,"y":149.9737},{"x":20,"y":150.5448},{"x":21,"y":150.9979},{"x":22,"y":151.4884},{"x":23,"y":152.231},{"x":24,"y":153.3646},{"x":25,"y":153.7209},{"x":26,"y":152.6501},{"x":27,"y":150.9449},{"x":28,"y":150.306},{"x":29,"y":149.1485},{"x":30,"y":145.8366},{"x":31,"y":142.4922},{"x":32,"y":140.3508},{"x":33,"y":137.7917},{"x":34,"y":134.5651},{"x":35,"y":131.6808},{"x":36,"y":128.9564},{"x":37,"y":125.9953},{"x":38,"y":123.1399},{"x":39,"y":120.5989},{"x":40,"y":118.195},{"x":41,"y":115.7174},{"x":42,"y":113.2899},{"x":43,"y":111.0312},{"x":44,"y":109.5123},{"x":45,"y":108.6353},{"x":46,"y":107.6214},{"x":47,"y":106.4588},{"x":48,"y":106.1123},{"x":49,"y":106.3376},{"x":50,"y":106.3804},{"x":51,"y":106.4234},{"x":52,"y":107.1362},{"x":53,"y":108.5413},{"x":54,"y":110.5437},{"x":55,"y":112.1884},{"x":56,"y":112.5979},{"x":57,"y":111.7477},{"x":58,"y":110.9647},{"x":59,"y":110.829},{"x":60,"y":110.451},{"x":61,"y":110.8103},{"x":62,"y":111.6594},{"x":63,"y":111.6352},{"x":64,"y":111.4361},{"x":65,"y":111.1668},{"x":66,"y":111.0769},{"x":67,"y":111.3845},{"x":68,"y":111.3357},{"x":69,"y":110.8876},{"x":70,"y":110.7298},{"x":71,"y":110.6314},{"x":72,"y":110.1852},{"x":73,"y":110.0184},{"x":74,"y":110.7682},{"x":75,"y":111.9656},{"x":76,"y":113.3596},{"x":77,"y":114.1831},{"x":78,"y":113.6895},{"x":79,"y":112.8259},{"x":80,"y":111.3391},{"x":81,"y":108.0408},{"x":82,"y":104.7079},{"x":83,"y":102.3317},{"x":84,"y":100.0946},{"x":85,"y":97.6344},{"x":86,"y":95.0103},{"x":87,"y":92.2051},{"x":88,"y":90.4907},{"x":89,"y":90.0506},{"x":90,"y":89.2417},{"x":91,"y":87.593},{"x":92,"y":85.9571},{"x":93,"y":84.4195},{"x":94,"y":82.4064},{"x":95,"y":79.9042},{"x":96,"y":77.0442},{"x":97,"y":74.3645},{"x":98,"y":71.9937},{"x":99,"y":69.748},{"x":100,"y":67.4857}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of AMPA (Glu) in Area 4p","filename":"AMPA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of AMPA receptor in area 4p.** This profile plot shows examplary the course of the AMPA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of AMPA (Glu) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of AMPA (Glu) in Area 4p"],"datasets":[{"data":[{"x":0,"y":405.7916},{"x":1,"y":451.3663},{"x":2,"y":486.7215},{"x":3,"y":556.2107},{"x":4,"y":609.283},{"x":5,"y":645.7985},{"x":6,"y":667.0372},{"x":7,"y":716.559},{"x":8,"y":766.1185},{"x":9,"y":798.6767},{"x":10,"y":810.0016},{"x":11,"y":817.6583},{"x":12,"y":820.0057},{"x":13,"y":809.1266},{"x":14,"y":808.9703},{"x":15,"y":794.2326},{"x":16,"y":772.7793},{"x":17,"y":748.0217},{"x":18,"y":735.2597},{"x":19,"y":723.7105},{"x":20,"y":708.2348},{"x":21,"y":692.1717},{"x":22,"y":683.6878},{"x":23,"y":672.5242},{"x":24,"y":650.3613},{"x":25,"y":634.4599},{"x":26,"y":618.5452},{"x":27,"y":606.5234},{"x":28,"y":592.2186},{"x":29,"y":574.8941},{"x":30,"y":555.0607},{"x":31,"y":540.9853},{"x":32,"y":529.1812},{"x":33,"y":518.2187},{"x":34,"y":501.6061},{"x":35,"y":485.3405},{"x":36,"y":479.7732},{"x":37,"y":468.6642},{"x":38,"y":456.7342},{"x":39,"y":440.1297},{"x":40,"y":435.0405},{"x":41,"y":431.0196},{"x":42,"y":431.2259},{"x":43,"y":433.7448},{"x":44,"y":437.309},{"x":45,"y":436.3714},{"x":46,"y":430.2076},{"x":47,"y":423.0664},{"x":48,"y":423.831},{"x":49,"y":418.9397},{"x":50,"y":409.6095},{"x":51,"y":407.9441},{"x":52,"y":410.3914},{"x":53,"y":406.0006},{"x":54,"y":410.7625},{"x":55,"y":418.8226},{"x":56,"y":424.2864},{"x":57,"y":424.1622},{"x":58,"y":421.3889},{"x":59,"y":415.1754},{"x":60,"y":415.0224},{"x":61,"y":419.8106},{"x":62,"y":421.9317},{"x":63,"y":423.2834},{"x":64,"y":416.2717},{"x":65,"y":418.4447},{"x":66,"y":413.9094},{"x":67,"y":405.157},{"x":68,"y":391.95},{"x":69,"y":386.3918},{"x":70,"y":384.7671},{"x":71,"y":386.3889},{"x":72,"y":375.4532},{"x":73,"y":371.8443},{"x":74,"y":366.1416},{"x":75,"y":357.2842},{"x":76,"y":355.9336},{"x":77,"y":355.7511},{"x":78,"y":353.0054},{"x":79,"y":355.1551},{"x":80,"y":355.1524},{"x":81,"y":355.9313},{"x":82,"y":362.7427},{"x":83,"y":367.925},{"x":84,"y":379.8562},{"x":85,"y":391.2873},{"x":86,"y":400.3471},{"x":87,"y":406.154},{"x":88,"y":414.1834},{"x":89,"y":416.4235},{"x":90,"y":408.1863},{"x":91,"y":404.4585},{"x":92,"y":403.4157},{"x":93,"y":408.1966},{"x":94,"y":418.5663},{"x":95,"y":419.7757},{"x":96,"y":418.716},{"x":97,"y":410.7785},{"x":98,"y":388.4193},{"x":99,"y":373.8454},{"x":100,"y":356.4581}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of D₁(DA) in Area 4p","filename":"D₁(DA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of D1 receptor in area 4p.** This profile plot shows examplary the course of the D1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of D₁(DA) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of D₁(DA) in Area 4p"],"datasets":[{"data":[{"x":0,"y":81.0356},{"x":1,"y":85.4032},{"x":2,"y":91.5277},{"x":3,"y":95.2649},{"x":4,"y":98.9659},{"x":5,"y":101.4835},{"x":6,"y":102.5073},{"x":7,"y":103.2116},{"x":8,"y":103.5853},{"x":9,"y":102.1317},{"x":10,"y":100.4424},{"x":11,"y":98.5238},{"x":12,"y":97.7946},{"x":13,"y":97.9194},{"x":14,"y":98.453},{"x":15,"y":98.4084},{"x":16,"y":98.6345},{"x":17,"y":98.3342},{"x":18,"y":98.0803},{"x":19,"y":98.4198},{"x":20,"y":99.6212},{"x":21,"y":100.3751},{"x":22,"y":100.9769},{"x":23,"y":102.7118},{"x":24,"y":102.9193},{"x":25,"y":103.5926},{"x":26,"y":103.0699},{"x":27,"y":103.2264},{"x":28,"y":102.756},{"x":29,"y":102.0663},{"x":30,"y":102.022},{"x":31,"y":101.9923},{"x":32,"y":102.0377},{"x":33,"y":102.5273},{"x":34,"y":102.7723},{"x":35,"y":102.642},{"x":36,"y":102.2675},{"x":37,"y":101.5016},{"x":38,"y":100.3767},{"x":39,"y":99.8386},{"x":40,"y":99.8115},{"x":41,"y":99.7355},{"x":42,"y":99.8677},{"x":43,"y":100.6552},{"x":44,"y":101.0978},{"x":45,"y":101.2235},{"x":46,"y":101.0145},{"x":47,"y":100.1424},{"x":48,"y":99.1919},{"x":49,"y":98.7438},{"x":50,"y":97.2201},{"x":51,"y":96.1272},{"x":52,"y":94.8739},{"x":53,"y":93.9007},{"x":54,"y":94.0279},{"x":55,"y":94.9375},{"x":56,"y":96.2987},{"x":57,"y":96.7444},{"x":58,"y":96.2991},{"x":59,"y":95.6324},{"x":60,"y":94.5576},{"x":61,"y":92.8479},{"x":62,"y":91.5215},{"x":63,"y":89.8499},{"x":64,"y":88.5296},{"x":65,"y":87.9721},{"x":66,"y":87.3046},{"x":67,"y":86.311},{"x":68,"y":85.6674},{"x":69,"y":85.8799},{"x":70,"y":86.2137},{"x":71,"y":86.1636},{"x":72,"y":85.6039},{"x":73,"y":84.7779},{"x":74,"y":84.3983},{"x":75,"y":85.2993},{"x":76,"y":85.1569},{"x":77,"y":84.6755},{"x":78,"y":83.4431},{"x":79,"y":81.6805},{"x":80,"y":79.8961},{"x":81,"y":79.2903},{"x":82,"y":80.3898},{"x":83,"y":80.8137},{"x":84,"y":80.7606},{"x":85,"y":80.3767},{"x":86,"y":80.0834},{"x":87,"y":79.1542},{"x":88,"y":77.6828},{"x":89,"y":76.7582},{"x":90,"y":75.375},{"x":91,"y":73.7344},{"x":92,"y":72.0057},{"x":93,"y":70.4787},{"x":94,"y":69.9832},{"x":95,"y":69.777},{"x":96,"y":69.4156},{"x":97,"y":68.9271},{"x":98,"y":68.4438},{"x":99,"y":65.4653},{"x":100,"y":62.7346}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of M₃(ACh) in Area 4p","filename":"M₃(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M3 receptor in area 4p.** This profile plot shows examplary the course of the M3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₃(ACh) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₃(ACh) in Area 4p"],"datasets":[{"data":[{"x":0,"y":238.8069},{"x":1,"y":280.2313},{"x":2,"y":325.6811},{"x":3,"y":349.2281},{"x":4,"y":374.0297},{"x":5,"y":393.2599},{"x":6,"y":405.054},{"x":7,"y":417.0671},{"x":8,"y":424.9056},{"x":9,"y":432.4293},{"x":10,"y":435.5911},{"x":11,"y":435.02},{"x":12,"y":433.1668},{"x":13,"y":430.5725},{"x":14,"y":429.3597},{"x":15,"y":428.5402},{"x":16,"y":426.886},{"x":17,"y":421.9685},{"x":18,"y":417.0921},{"x":19,"y":410.6056},{"x":20,"y":403.318},{"x":21,"y":398.3886},{"x":22,"y":392.5697},{"x":23,"y":387.803},{"x":24,"y":382.9819},{"x":25,"y":379.3677},{"x":26,"y":375.6492},{"x":27,"y":370.0806},{"x":28,"y":365.9916},{"x":29,"y":360.2961},{"x":30,"y":356.1784},{"x":31,"y":351.7452},{"x":32,"y":345.845},{"x":33,"y":340.7166},{"x":34,"y":335.1268},{"x":35,"y":330.1108},{"x":36,"y":325.7945},{"x":37,"y":321.3716},{"x":38,"y":317.7494},{"x":39,"y":314.3934},{"x":40,"y":311.6953},{"x":41,"y":309.8798},{"x":42,"y":307.991},{"x":43,"y":305.4804},{"x":44,"y":302.225},{"x":45,"y":299.7676},{"x":46,"y":298.6813},{"x":47,"y":297.5102},{"x":48,"y":297.8277},{"x":49,"y":298.792},{"x":50,"y":299.1612},{"x":51,"y":299.5356},{"x":52,"y":300.5433},{"x":53,"y":300.3015},{"x":54,"y":299.9078},{"x":55,"y":298.5431},{"x":56,"y":295.263},{"x":57,"y":293.6305},{"x":58,"y":291.2533},{"x":59,"y":289.213},{"x":60,"y":287.1969},{"x":61,"y":285.8204},{"x":62,"y":283.6904},{"x":63,"y":281.8311},{"x":64,"y":279.581},{"x":65,"y":277.4034},{"x":66,"y":273.7292},{"x":67,"y":271.641},{"x":68,"y":270.4709},{"x":69,"y":268.7126},{"x":70,"y":267.2965},{"x":71,"y":265.9582},{"x":72,"y":266.1968},{"x":73,"y":266.4517},{"x":74,"y":267.4044},{"x":75,"y":268.4662},{"x":76,"y":269.5347},{"x":77,"y":270.3887},{"x":78,"y":272.2776},{"x":79,"y":274.0281},{"x":80,"y":274.109},{"x":81,"y":274.518},{"x":82,"y":274.8256},{"x":83,"y":275.5447},{"x":84,"y":276.3067},{"x":85,"y":276.4332},{"x":86,"y":274.8957},{"x":87,"y":272.0392},{"x":88,"y":268.3825},{"x":89,"y":261.8862},{"x":90,"y":257.2851},{"x":91,"y":251.2371},{"x":92,"y":245.5257},{"x":93,"y":239.9286},{"x":94,"y":232.077},{"x":95,"y":225.0543},{"x":96,"y":215.0261},{"x":97,"y":203.8563},{"x":98,"y":194.9882},{"x":99,"y":179.5477},{"x":100,"y":168.421}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of mGluR2/3 (Glu) in Area 4p","filename":"mGluR2\\/3 (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of mGluR2_3 receptor in area 4p.** This profile plot shows examplary the course of the mGluR2_3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of mGluR2/3 (Glu) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of mGluR2/3 (Glu) in Area 4p"],"datasets":[{"data":[{"x":0,"y":1362.7526},{"x":1,"y":1623.7655},{"x":2,"y":1931.6576},{"x":3,"y":2072.2325},{"x":4,"y":2226.3597},{"x":5,"y":2293.6503},{"x":6,"y":2337.3374},{"x":7,"y":2353.4959},{"x":8,"y":2380.6},{"x":9,"y":2396.5804},{"x":10,"y":2421.1059},{"x":11,"y":2429.5757},{"x":12,"y":2445.7819},{"x":13,"y":2459.5389},{"x":14,"y":2462.9697},{"x":15,"y":2460.5987},{"x":16,"y":2447.8776},{"x":17,"y":2433.9832},{"x":18,"y":2407.3267},{"x":19,"y":2367.5993},{"x":20,"y":2332.5256},{"x":21,"y":2290.9801},{"x":22,"y":2250.6076},{"x":23,"y":2175.8714},{"x":24,"y":2108.8494},{"x":25,"y":1983.6804},{"x":26,"y":1905.2304},{"x":27,"y":1828.3765},{"x":28,"y":1769.5882},{"x":29,"y":1720.4662},{"x":30,"y":1674.4628},{"x":31,"y":1635.6467},{"x":32,"y":1594.0765},{"x":33,"y":1552.6051},{"x":34,"y":1516.6606},{"x":35,"y":1479.7696},{"x":36,"y":1430.2682},{"x":37,"y":1395.32},{"x":38,"y":1347.4058},{"x":39,"y":1318.4095},{"x":40,"y":1270.2151},{"x":41,"y":1241.4851},{"x":42,"y":1218.3314},{"x":43,"y":1211.3165},{"x":44,"y":1193.297},{"x":45,"y":1174.9505},{"x":46,"y":1140.7864},{"x":47,"y":1109.8595},{"x":48,"y":1080.7802},{"x":49,"y":1063.9305},{"x":50,"y":1042.3092},{"x":51,"y":1031.5677},{"x":52,"y":1024.8403},{"x":53,"y":1016.885},{"x":54,"y":1001.3821},{"x":55,"y":982.0933},{"x":56,"y":969.3594},{"x":57,"y":945.2689},{"x":58,"y":928.9326},{"x":59,"y":905.3721},{"x":60,"y":893.1365},{"x":61,"y":878.9716},{"x":62,"y":865.5179},{"x":63,"y":843.4146},{"x":64,"y":821.0866},{"x":65,"y":814.6251},{"x":66,"y":816.8045},{"x":67,"y":817.7019},{"x":68,"y":817.2266},{"x":69,"y":812.3679},{"x":70,"y":803.0254},{"x":71,"y":802.4512},{"x":72,"y":800.7972},{"x":73,"y":802.2448},{"x":74,"y":801.2546},{"x":75,"y":806.9519},{"x":76,"y":823.2623},{"x":77,"y":831.6546},{"x":78,"y":849.466},{"x":79,"y":857.9146},{"x":80,"y":891.4304},{"x":81,"y":906.4574},{"x":82,"y":915.4269},{"x":83,"y":921.8337},{"x":84,"y":924.4591},{"x":85,"y":928.9587},{"x":86,"y":928.5737},{"x":87,"y":913.8813},{"x":88,"y":909.1288},{"x":89,"y":910.6338},{"x":90,"y":909.2341},{"x":91,"y":893.5264},{"x":92,"y":871.2802},{"x":93,"y":841.0226},{"x":94,"y":803.2697},{"x":95,"y":745.0494},{"x":96,"y":703.5494},{"x":97,"y":636.1194},{"x":98,"y":589.1755},{"x":99,"y":521.9796},{"x":100,"y":472.3728}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of 5-HT₂(5-HT) in Area 4p","filename":"5-HT₂(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT2 receptor in area 4p.** This profile plot shows examplary the course of the 5-HT2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HT₂(5-HT) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HT₂(5-HT) in Area 4p"],"datasets":[{"data":[{"x":0,"y":179.9836},{"x":1,"y":200.3762},{"x":2,"y":211.451},{"x":3,"y":222.2991},{"x":4,"y":236.1383},{"x":5,"y":248.6507},{"x":6,"y":257.1125},{"x":7,"y":260.5257},{"x":8,"y":264.4934},{"x":9,"y":268.956},{"x":10,"y":273.6446},{"x":11,"y":278.7552},{"x":12,"y":283.4397},{"x":13,"y":287.3162},{"x":14,"y":290.5109},{"x":15,"y":293.9565},{"x":16,"y":297.6853},{"x":17,"y":302.0848},{"x":18,"y":305.7314},{"x":19,"y":309.3778},{"x":20,"y":311.836},{"x":21,"y":313.7182},{"x":22,"y":315.9635},{"x":23,"y":317.9053},{"x":24,"y":318.5886},{"x":25,"y":317.5704},{"x":26,"y":316.6828},{"x":27,"y":315.2617},{"x":28,"y":313.201},{"x":29,"y":309.9313},{"x":30,"y":305.9518},{"x":31,"y":301.3275},{"x":32,"y":297.3132},{"x":33,"y":294.1857},{"x":34,"y":291.9383},{"x":35,"y":291.1475},{"x":36,"y":290.8454},{"x":37,"y":289.9765},{"x":38,"y":287.7755},{"x":39,"y":283.566},{"x":40,"y":277.8046},{"x":41,"y":271.2469},{"x":42,"y":265.0297},{"x":43,"y":259.5282},{"x":44,"y":256.2872},{"x":45,"y":254.189},{"x":46,"y":252.385},{"x":47,"y":250.9218},{"x":48,"y":248.5836},{"x":49,"y":246.0226},{"x":50,"y":243.1453},{"x":51,"y":237.5159},{"x":52,"y":231.7849},{"x":53,"y":227.1036},{"x":54,"y":221.043},{"x":55,"y":216.2664},{"x":56,"y":213.7248},{"x":57,"y":211.1546},{"x":58,"y":207.5552},{"x":59,"y":205.0634},{"x":60,"y":202.3326},{"x":61,"y":199.7527},{"x":62,"y":198.0013},{"x":63,"y":195.9624},{"x":64,"y":193.3749},{"x":65,"y":191.5068},{"x":66,"y":190.5698},{"x":67,"y":188.8002},{"x":68,"y":184.6829},{"x":69,"y":180.51},{"x":70,"y":177.6765},{"x":71,"y":175.3894},{"x":72,"y":172.6601},{"x":73,"y":170.8123},{"x":74,"y":171.7776},{"x":75,"y":173.0175},{"x":76,"y":174.9289},{"x":77,"y":175.5956},{"x":78,"y":176.2603},{"x":79,"y":176.876},{"x":80,"y":176.2783},{"x":81,"y":174.1849},{"x":82,"y":171.6032},{"x":83,"y":169.6317},{"x":84,"y":166.8814},{"x":85,"y":164.6345},{"x":86,"y":162.8298},{"x":87,"y":162.009},{"x":88,"y":161.9841},{"x":89,"y":161.4138},{"x":90,"y":160.5861},{"x":91,"y":160.7514},{"x":92,"y":162.097},{"x":93,"y":163.2675},{"x":94,"y":163.5517},{"x":95,"y":163.2571},{"x":96,"y":162.1044},{"x":97,"y":158.4227},{"x":98,"y":154.081},{"x":99,"y":148.6046},{"x":100,"y":142.329}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null},{"name":"Sample profile of GABAᴃ(GABA) in Area 4p","filename":"GABAᴃ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAB receptor in area 4p.** This profile plot shows examplary the course of the GABAB receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area 4p in the left hemisphere of one male subject (brain id: MR1, sample id: ID01, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴃ(GABA) in Area 4p"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴃ(GABA) in Area 4p"],"datasets":[{"data":[{"x":0,"y":647.8443},{"x":1,"y":764.921},{"x":2,"y":911.7294},{"x":3,"y":965.0076},{"x":4,"y":1030.6123},{"x":5,"y":1073.3067},{"x":6,"y":1101.0091},{"x":7,"y":1126.5066},{"x":8,"y":1136.7282},{"x":9,"y":1143.2325},{"x":10,"y":1143.1119},{"x":11,"y":1136.3096},{"x":12,"y":1127.7336},{"x":13,"y":1113.6974},{"x":14,"y":1103.9653},{"x":15,"y":1096.8742},{"x":16,"y":1089.088},{"x":17,"y":1078.5928},{"x":18,"y":1068.66},{"x":19,"y":1058.6944},{"x":20,"y":1043.0274},{"x":21,"y":1028.8727},{"x":22,"y":1013.0906},{"x":23,"y":997.4171},{"x":24,"y":979.6308},{"x":25,"y":968.4887},{"x":26,"y":956.8527},{"x":27,"y":943.2355},{"x":28,"y":929.8372},{"x":29,"y":913.0275},{"x":30,"y":900.7571},{"x":31,"y":885.3778},{"x":32,"y":868.7038},{"x":33,"y":853.8224},{"x":34,"y":840.2669},{"x":35,"y":831.2061},{"x":36,"y":824.5625},{"x":37,"y":817.738},{"x":38,"y":810.0107},{"x":39,"y":802.9903},{"x":40,"y":796.1557},{"x":41,"y":790.8052},{"x":42,"y":790.2412},{"x":43,"y":791.5338},{"x":44,"y":792.9265},{"x":45,"y":792.5888},{"x":46,"y":791.7291},{"x":47,"y":791.6414},{"x":48,"y":792.0469},{"x":49,"y":794.6018},{"x":50,"y":796.1359},{"x":51,"y":794.8847},{"x":52,"y":792.0887},{"x":53,"y":788.6834},{"x":54,"y":782.5741},{"x":55,"y":779.3821},{"x":56,"y":775.92},{"x":57,"y":774.225},{"x":58,"y":767.6827},{"x":59,"y":761.0554},{"x":60,"y":751.196},{"x":61,"y":737.5793},{"x":62,"y":725.6186},{"x":63,"y":720.3813},{"x":64,"y":719.8351},{"x":65,"y":720.8896},{"x":66,"y":717.9423},{"x":67,"y":712.9865},{"x":68,"y":708.1174},{"x":69,"y":706.658},{"x":70,"y":708.9637},{"x":71,"y":708.2627},{"x":72,"y":703.2908},{"x":73,"y":701.796},{"x":74,"y":703.9189},{"x":75,"y":708.9648},{"x":76,"y":716.4255},{"x":77,"y":724.1312},{"x":78,"y":732.6432},{"x":79,"y":739.5911},{"x":80,"y":744.9111},{"x":81,"y":750.717},{"x":82,"y":752.4934},{"x":83,"y":750.2768},{"x":84,"y":745.2086},{"x":85,"y":739.9001},{"x":86,"y":737.4896},{"x":87,"y":732.7},{"x":88,"y":726.2139},{"x":89,"y":720.4608},{"x":90,"y":716.4485},{"x":91,"y":714.3946},{"x":92,"y":711.1947},{"x":93,"y":706.17},{"x":94,"y":693.3673},{"x":95,"y":678.3776},{"x":96,"y":663.0551},{"x":97,"y":642.0024},{"x":98,"y":623.1513},{"x":99,"y":575.478},{"x":100,"y":543.276}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(139,71,137,0.2)"}]},"url":null}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas"},{"type":"Receptor Data","name":"Receptor Data for Area 7A","regionName":[{"regionName":"Area 7A (SPL)","relationship":"equals"}],"properties":{"description":null,"publications":[]},"files":[{"name":"Receptor density fingerprint of Area 7A","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["327","387","933","2040","1490","1738","2493","471","253","739","55","255","730","217","394","88"]},{"label":"mean_sd","data":["136","327","315","1327","549","634","1007","175","70","371","34","165","252","87","224","41"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area 7A (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(175,238,238,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAᴀ(BZ) in Area 7A","filename":"GABAᴀ(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/7A_bm_BZ.jpg"},{"name":"Sample autoradiograph of α₁(NA) in Area 7A","filename":"α₁(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/7A_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area 7A","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/7A_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAᴀ(GABA) in Area 7A","filename":"GABAᴀ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/7A_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area 7A","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/7A_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area 7A","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/7A_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of M₁(ACh) in Area 7A","filename":"M₁(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/7A_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HT₁ᴀ(5-HT) in Area 7A","filename":"5-HT₁ᴀ(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/7A_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area 7A","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/7A_bm_kainate.jpg"},{"name":"Sample autoradiograph of M₂(ACh) in Area 7A","filename":"M₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/7A_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area 7A","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/7A_bm_AMPA.jpg"},{"name":"Sample autoradiograph of D₁(DA) in Area 7A","filename":"D₁(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/7A_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area 7A","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/7A_bm_M3.jpg"},{"name":"Sample autoradiograph of mGluR2/3 (Glu) in Area 7A","filename":"mGluR2\\/3 (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/7A_bm_mGluR2_3.jpg"},{"name":"Sample autoradiograph of 5-HT₂(5-HT) in Area 7A","filename":"5-HT₂(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/7A_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAᴃ(GABA) in Area 7A","filename":"GABAᴃ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/7A_bm_GABAB.jpg"},{"name":"Sample profile of GABAᴀ(BZ) in Area 7A","filename":"GABAᴀ(BZ)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴀ(BZ) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴀ(BZ) in Area 7A"],"datasets":[{"data":[{"x":0,"y":663.539},{"x":1,"y":752.8634},{"x":2,"y":871.9389},{"x":3,"y":1098.3071},{"x":4,"y":1300.2764},{"x":5,"y":1359.9664},{"x":6,"y":1537.4431},{"x":7,"y":1723.7547},{"x":8,"y":1876.9231},{"x":9,"y":1959.4494},{"x":10,"y":2050.1882},{"x":11,"y":2166.3914},{"x":12,"y":2276.5378},{"x":13,"y":2335.9971},{"x":14,"y":2402.0258},{"x":15,"y":2519.0376},{"x":16,"y":2607.1689},{"x":17,"y":2669.0358},{"x":18,"y":2765.7592},{"x":19,"y":2864.845},{"x":20,"y":2943.0192},{"x":21,"y":3026.1182},{"x":22,"y":3077.0223},{"x":23,"y":3140.239},{"x":24,"y":3185.3043},{"x":25,"y":3216.7453},{"x":26,"y":3242.3179},{"x":27,"y":3270.7454},{"x":28,"y":3296.7027},{"x":29,"y":3311.2376},{"x":30,"y":3325.7087},{"x":31,"y":3343.813},{"x":32,"y":3358.2682},{"x":33,"y":3363.0345},{"x":34,"y":3359.3941},{"x":35,"y":3342.1894},{"x":36,"y":3319.2095},{"x":37,"y":3295.9588},{"x":38,"y":3261.208},{"x":39,"y":3213.2799},{"x":40,"y":3158.0433},{"x":41,"y":3073.2887},{"x":42,"y":2996.6862},{"x":43,"y":2912.3453},{"x":44,"y":2817.6401},{"x":45,"y":2736.7014},{"x":46,"y":2672.117},{"x":47,"y":2624.4041},{"x":48,"y":2565.9559},{"x":49,"y":2510.5804},{"x":50,"y":2464.0681},{"x":51,"y":2408.6072},{"x":52,"y":2357.4098},{"x":53,"y":2316.1774},{"x":54,"y":2275.7995},{"x":55,"y":2239.1028},{"x":56,"y":2213.0319},{"x":57,"y":2192.9383},{"x":58,"y":2173.8939},{"x":59,"y":2152.2656},{"x":60,"y":2130.8386},{"x":61,"y":2105.0342},{"x":62,"y":2072.1947},{"x":63,"y":2051.3312},{"x":64,"y":2023.5314},{"x":65,"y":1988.2613},{"x":66,"y":1952.1707},{"x":67,"y":1927.6988},{"x":68,"y":1903.5798},{"x":69,"y":1876.4679},{"x":70,"y":1852.6695},{"x":71,"y":1834.4395},{"x":72,"y":1821.0351},{"x":73,"y":1809.7367},{"x":74,"y":1803.0215},{"x":75,"y":1795.4408},{"x":76,"y":1789.3414},{"x":77,"y":1781.8507},{"x":78,"y":1776.5435},{"x":79,"y":1770.8319},{"x":80,"y":1762.5341},{"x":81,"y":1750.7678},{"x":82,"y":1733.7874},{"x":83,"y":1711.1019},{"x":84,"y":1691.6025},{"x":85,"y":1659.384},{"x":86,"y":1608.8117},{"x":87,"y":1575.5129},{"x":88,"y":1537.8691},{"x":89,"y":1461.1373},{"x":90,"y":1370.9544},{"x":91,"y":1300.9845},{"x":92,"y":1238.4245},{"x":93,"y":1134.4825},{"x":94,"y":1024.7995},{"x":95,"y":933.0514},{"x":96,"y":904.9452},{"x":97,"y":821.7994},{"x":98,"y":723.583},{"x":99,"y":665.7601},{"x":100,"y":617.7757}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of α₁(NA) in Area 7A","filename":"α₁(NA)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₁(NA) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₁(NA) in Area 7A"],"datasets":[{"data":[{"x":0,"y":151.1982},{"x":1,"y":167.9588},{"x":2,"y":180.7446},{"x":3,"y":209.3757},{"x":4,"y":234.6896},{"x":5,"y":247.0121},{"x":6,"y":259.9775},{"x":7,"y":276.313},{"x":8,"y":292.8569},{"x":9,"y":307.6324},{"x":10,"y":314.6665},{"x":11,"y":317.5765},{"x":12,"y":323.5495},{"x":13,"y":329.3788},{"x":14,"y":333.624},{"x":15,"y":337.7094},{"x":16,"y":343.0088},{"x":17,"y":345.7185},{"x":18,"y":345.7708},{"x":19,"y":345.34},{"x":20,"y":342.5929},{"x":21,"y":339.5283},{"x":22,"y":334.1857},{"x":23,"y":329.4968},{"x":24,"y":325.7451},{"x":25,"y":321.0262},{"x":26,"y":315.8866},{"x":27,"y":313.555},{"x":28,"y":309.564},{"x":29,"y":304.9244},{"x":30,"y":301.1883},{"x":31,"y":299.1027},{"x":32,"y":295.3722},{"x":33,"y":292.4578},{"x":34,"y":289.8857},{"x":35,"y":288.1151},{"x":36,"y":287.7071},{"x":37,"y":286.264},{"x":38,"y":283.7241},{"x":39,"y":281.7018},{"x":40,"y":280.0032},{"x":41,"y":276.4685},{"x":42,"y":274.8314},{"x":43,"y":272.648},{"x":44,"y":271.053},{"x":45,"y":267.845},{"x":46,"y":264.7229},{"x":47,"y":261.6784},{"x":48,"y":259.0415},{"x":49,"y":254.4292},{"x":50,"y":249.1945},{"x":51,"y":243.9464},{"x":52,"y":237.1176},{"x":53,"y":234.2906},{"x":54,"y":229.7013},{"x":55,"y":223.725},{"x":56,"y":219.4258},{"x":57,"y":218.27},{"x":58,"y":216.7424},{"x":59,"y":217.2732},{"x":60,"y":221.3406},{"x":61,"y":222.8124},{"x":62,"y":225.8965},{"x":63,"y":230.6049},{"x":64,"y":233.7853},{"x":65,"y":234.0624},{"x":66,"y":236.9654},{"x":67,"y":237.9515},{"x":68,"y":237.1583},{"x":69,"y":235.7405},{"x":70,"y":235.0882},{"x":71,"y":236.4694},{"x":72,"y":238.1819},{"x":73,"y":239.3653},{"x":74,"y":240.0334},{"x":75,"y":243.7328},{"x":76,"y":248.7648},{"x":77,"y":250.6977},{"x":78,"y":256.4478},{"x":79,"y":263.7341},{"x":80,"y":269.4329},{"x":81,"y":272.9431},{"x":82,"y":273.2535},{"x":83,"y":272.8054},{"x":84,"y":269.2076},{"x":85,"y":261.1283},{"x":86,"y":256.163},{"x":87,"y":248.0658},{"x":88,"y":240.6242},{"x":89,"y":229.6725},{"x":90,"y":225.1961},{"x":91,"y":216.5756},{"x":92,"y":205.4539},{"x":93,"y":196.2495},{"x":94,"y":187.3501},{"x":95,"y":179.1233},{"x":96,"y":176.3328},{"x":97,"y":163.8241},{"x":98,"y":149.2057},{"x":99,"y":142.1163},{"x":100,"y":132.4732}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of NMDA (Glu) in Area 7A","filename":"NMDA (Glu)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of NMDA (Glu) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of NMDA (Glu) in Area 7A"],"datasets":[{"data":[{"x":0,"y":227.9966},{"x":1,"y":260.1266},{"x":2,"y":312.0763},{"x":3,"y":414.6762},{"x":4,"y":490.9821},{"x":5,"y":513.4323},{"x":6,"y":561.5589},{"x":7,"y":600.4185},{"x":8,"y":610.9572},{"x":9,"y":640.1746},{"x":10,"y":805.0683},{"x":11,"y":831.3194},{"x":12,"y":851.5793},{"x":13,"y":860.5195},{"x":14,"y":863.3874},{"x":15,"y":877.9134},{"x":16,"y":886.6789},{"x":17,"y":891.857},{"x":18,"y":899.2275},{"x":19,"y":898.8455},{"x":20,"y":895.2042},{"x":21,"y":900.0077},{"x":22,"y":912.3623},{"x":23,"y":922.4453},{"x":24,"y":924.3774},{"x":25,"y":923.0026},{"x":26,"y":920.5417},{"x":27,"y":908.0752},{"x":28,"y":902.868},{"x":29,"y":893.4912},{"x":30,"y":895.781},{"x":31,"y":902.2439},{"x":32,"y":909.2903},{"x":33,"y":919.912},{"x":34,"y":925.0444},{"x":35,"y":920.5286},{"x":36,"y":909.8859},{"x":37,"y":904.182},{"x":38,"y":895.9315},{"x":39,"y":872.0172},{"x":40,"y":861.0069},{"x":41,"y":836.2822},{"x":42,"y":809.4185},{"x":43,"y":806.4975},{"x":44,"y":803.9193},{"x":45,"y":809.979},{"x":46,"y":819.136},{"x":47,"y":809.1287},{"x":48,"y":811.6801},{"x":49,"y":809.7502},{"x":50,"y":801.0422},{"x":51,"y":796.4513},{"x":52,"y":801.6047},{"x":53,"y":802.4903},{"x":54,"y":799.5808},{"x":55,"y":791.7419},{"x":56,"y":782.1892},{"x":57,"y":768.3173},{"x":58,"y":761.1379},{"x":59,"y":754.6662},{"x":60,"y":750.5267},{"x":61,"y":746.3632},{"x":62,"y":752.628},{"x":63,"y":754.018},{"x":64,"y":741.9876},{"x":65,"y":718.1295},{"x":66,"y":700.2568},{"x":67,"y":694.647},{"x":68,"y":692.1945},{"x":69,"y":704.0222},{"x":70,"y":720.6166},{"x":71,"y":735.6487},{"x":72,"y":734.1254},{"x":73,"y":733.8152},{"x":74,"y":733.1211},{"x":75,"y":725.1063},{"x":76,"y":725.3215},{"x":77,"y":723.1042},{"x":78,"y":710.1375},{"x":79,"y":706.906},{"x":80,"y":704.8816},{"x":81,"y":692.3977},{"x":82,"y":690.9053},{"x":83,"y":683.7458},{"x":84,"y":682.2311},{"x":85,"y":682.1647},{"x":86,"y":680.3273},{"x":87,"y":677.0761},{"x":88,"y":676.8538},{"x":89,"y":663.8228},{"x":90,"y":641.4838},{"x":91,"y":592.7274},{"x":92,"y":530.0127},{"x":93,"y":497.9832},{"x":94,"y":489.8614},{"x":95,"y":482.0792},{"x":96,"y":450.2751},{"x":97,"y":429.2006},{"x":98,"y":427.9265},{"x":99,"y":392.5824},{"x":100,"y":344.8273}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of GABAᴀ(GABA) in Area 7A","filename":"GABAᴀ(GABA)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴀ(GABA) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴀ(GABA) in Area 7A"],"datasets":[{"data":[{"x":0,"y":633.2543},{"x":1,"y":683.8895},{"x":2,"y":733.8831},{"x":3,"y":817.8773},{"x":4,"y":913.5019},{"x":5,"y":962.923},{"x":6,"y":1029.0366},{"x":7,"y":1115.5869},{"x":8,"y":1181.192},{"x":9,"y":1215.1331},{"x":10,"y":1256.9819},{"x":11,"y":1323.7506},{"x":12,"y":1391.0358},{"x":13,"y":1438.3863},{"x":14,"y":1473.8055},{"x":15,"y":1529.6385},{"x":16,"y":1593.784},{"x":17,"y":1645.9451},{"x":18,"y":1674.4854},{"x":19,"y":1713.1953},{"x":20,"y":1761.9109},{"x":21,"y":1803.5934},{"x":22,"y":1815.8655},{"x":23,"y":1844.8328},{"x":24,"y":1875.7601},{"x":25,"y":1900.514},{"x":26,"y":1913.0381},{"x":27,"y":1915.5459},{"x":28,"y":1927.6898},{"x":29,"y":1946.5079},{"x":30,"y":1949.7002},{"x":31,"y":1946.5862},{"x":32,"y":1933.0266},{"x":33,"y":1917.4317},{"x":34,"y":1911.9525},{"x":35,"y":1897.0949},{"x":36,"y":1864.5121},{"x":37,"y":1832.8557},{"x":38,"y":1818.4731},{"x":39,"y":1786.3761},{"x":40,"y":1753.9339},{"x":41,"y":1717.9174},{"x":42,"y":1701.4803},{"x":43,"y":1675.9082},{"x":44,"y":1639.8605},{"x":45,"y":1609.1988},{"x":46,"y":1585.0067},{"x":47,"y":1563.7425},{"x":48,"y":1520.0845},{"x":49,"y":1472.4049},{"x":50,"y":1445.4671},{"x":51,"y":1409.7009},{"x":52,"y":1382.6194},{"x":53,"y":1368.7174},{"x":54,"y":1367.3614},{"x":55,"y":1355.4199},{"x":56,"y":1337.8691},{"x":57,"y":1327.0411},{"x":58,"y":1319.947},{"x":59,"y":1305.888},{"x":60,"y":1279.8923},{"x":61,"y":1243.9255},{"x":62,"y":1225.4457},{"x":63,"y":1219.6575},{"x":64,"y":1194.7077},{"x":65,"y":1170.3944},{"x":66,"y":1156.6991},{"x":67,"y":1151.1224},{"x":68,"y":1135.6361},{"x":69,"y":1117.7497},{"x":70,"y":1102.9007},{"x":71,"y":1094.3394},{"x":72,"y":1087.649},{"x":73,"y":1077.8298},{"x":74,"y":1069.0679},{"x":75,"y":1057.8355},{"x":76,"y":1043.0357},{"x":77,"y":1031.6027},{"x":78,"y":1016.6468},{"x":79,"y":1014.9124},{"x":80,"y":1009.3228},{"x":81,"y":992.1571},{"x":82,"y":981.1846},{"x":83,"y":975.0292},{"x":84,"y":965.3488},{"x":85,"y":932.1156},{"x":86,"y":905.011},{"x":87,"y":895.5183},{"x":88,"y":870.3877},{"x":89,"y":830.6858},{"x":90,"y":795.4082},{"x":91,"y":771.3419},{"x":92,"y":742.4899},{"x":93,"y":695.7374},{"x":94,"y":647.5571},{"x":95,"y":604.6211},{"x":96,"y":583.8928},{"x":97,"y":535.3829},{"x":98,"y":491.9205},{"x":99,"y":467.8257},{"x":100,"y":438.1232}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of α₂(NA) in Area 7A","filename":"α₂(NA)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₂(NA) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₂(NA) in Area 7A"],"datasets":[{"data":[{"x":0,"y":287.485},{"x":1,"y":323.9207},{"x":2,"y":355.1854},{"x":3,"y":406.9999},{"x":4,"y":446.3021},{"x":5,"y":484.376},{"x":6,"y":497.9161},{"x":7,"y":507.6449},{"x":8,"y":511.2654},{"x":9,"y":506.5552},{"x":10,"y":498.8589},{"x":11,"y":495.4824},{"x":12,"y":489.8124},{"x":13,"y":489.5566},{"x":14,"y":489.9393},{"x":15,"y":494.1125},{"x":16,"y":504.6869},{"x":17,"y":518.426},{"x":18,"y":524.4163},{"x":19,"y":534.2099},{"x":20,"y":546.0606},{"x":21,"y":560.1012},{"x":22,"y":574.3908},{"x":23,"y":579.876},{"x":24,"y":587.7441},{"x":25,"y":600.8418},{"x":26,"y":615.6641},{"x":27,"y":621.802},{"x":28,"y":627.6544},{"x":29,"y":629.3529},{"x":30,"y":628.0793},{"x":31,"y":630.3142},{"x":32,"y":626.9981},{"x":33,"y":624.1968},{"x":34,"y":618.3419},{"x":35,"y":612.0252},{"x":36,"y":603.0811},{"x":37,"y":591.6378},{"x":38,"y":573.8886},{"x":39,"y":563.6174},{"x":40,"y":552.9144},{"x":41,"y":537.4074},{"x":42,"y":529.4972},{"x":43,"y":521.2704},{"x":44,"y":515.5684},{"x":45,"y":501.9214},{"x":46,"y":494.5647},{"x":47,"y":491.4766},{"x":48,"y":490.4517},{"x":49,"y":491.2178},{"x":50,"y":493.6335},{"x":51,"y":494.9937},{"x":52,"y":496.1865},{"x":53,"y":497.0359},{"x":54,"y":500.1779},{"x":55,"y":501.9808},{"x":56,"y":496.7596},{"x":57,"y":491.0044},{"x":58,"y":483.6493},{"x":59,"y":473.5738},{"x":60,"y":459.3373},{"x":61,"y":452.936},{"x":62,"y":446.0854},{"x":63,"y":434.4769},{"x":64,"y":427.8319},{"x":65,"y":420.8046},{"x":66,"y":418.7184},{"x":67,"y":420.1777},{"x":68,"y":420.5275},{"x":69,"y":419.7971},{"x":70,"y":419.1136},{"x":71,"y":415.8936},{"x":72,"y":408.3836},{"x":73,"y":398.0484},{"x":74,"y":393.1448},{"x":75,"y":385.1306},{"x":76,"y":373.5769},{"x":77,"y":365.8039},{"x":78,"y":362.7305},{"x":79,"y":357.5371},{"x":80,"y":350.5533},{"x":81,"y":344.3416},{"x":82,"y":343.9415},{"x":83,"y":343.2905},{"x":84,"y":339.7408},{"x":85,"y":331.7992},{"x":86,"y":324.7165},{"x":87,"y":318.9469},{"x":88,"y":304.6224},{"x":89,"y":287.7717},{"x":90,"y":276.7229},{"x":91,"y":266.0581},{"x":92,"y":251.5404},{"x":93,"y":238.0793},{"x":94,"y":229.0837},{"x":95,"y":222.7677},{"x":96,"y":208.9835},{"x":97,"y":192.3791},{"x":98,"y":170.9256},{"x":99,"y":158.565},{"x":100,"y":142.0767}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of α₄β₂(ACh) in Area 7A","filename":"α₄β₂(ACh)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₄β₂(ACh) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₄β₂(ACh) in Area 7A"],"datasets":[{"data":[{"x":0,"y":16.2196},{"x":1,"y":18.623},{"x":2,"y":21.2825},{"x":3,"y":22.1199},{"x":4,"y":24.2586},{"x":5,"y":29.259},{"x":6,"y":31.8485},{"x":7,"y":34.6942},{"x":8,"y":37.9384},{"x":9,"y":38.0038},{"x":10,"y":36.569},{"x":11,"y":35.3809},{"x":12,"y":35.0293},{"x":13,"y":33.7838},{"x":14,"y":33.5527},{"x":15,"y":32.957},{"x":16,"y":34.0727},{"x":17,"y":34.848},{"x":18,"y":32.9535},{"x":19,"y":30.2609},{"x":20,"y":29.1827},{"x":21,"y":26.0969},{"x":22,"y":25.0696},{"x":23,"y":23.5956},{"x":24,"y":23.6397},{"x":25,"y":25.2483},{"x":26,"y":26.0559},{"x":27,"y":26.4713},{"x":28,"y":27.2641},{"x":29,"y":26.4122},{"x":30,"y":25.6611},{"x":31,"y":24.7922},{"x":32,"y":24.7539},{"x":33,"y":24.8243},{"x":34,"y":25.8481},{"x":35,"y":28.3815},{"x":36,"y":31.4486},{"x":37,"y":32.5446},{"x":38,"y":33.3392},{"x":39,"y":34.5921},{"x":40,"y":34.5468},{"x":41,"y":35.1758},{"x":42,"y":34.9421},{"x":43,"y":33.375},{"x":44,"y":32.0848},{"x":45,"y":30.3217},{"x":46,"y":29.9827},{"x":47,"y":26.7384},{"x":48,"y":20.7231},{"x":49,"y":18.3694},{"x":50,"y":18.7271},{"x":51,"y":17.8191},{"x":52,"y":17.5363},{"x":53,"y":19.2476},{"x":54,"y":19.5426},{"x":55,"y":20.2188},{"x":56,"y":23.112},{"x":57,"y":26.35},{"x":58,"y":28.4336},{"x":59,"y":29.6557},{"x":60,"y":31.1873},{"x":61,"y":32.0824},{"x":62,"y":32.0225},{"x":63,"y":31.2771},{"x":64,"y":31.2681},{"x":65,"y":30.8967},{"x":66,"y":30.0159},{"x":67,"y":29.5928},{"x":68,"y":29.8552},{"x":69,"y":29.6338},{"x":70,"y":29.3096},{"x":71,"y":29.8545},{"x":72,"y":30.439},{"x":73,"y":31.4543},{"x":74,"y":32.4313},{"x":75,"y":32.571},{"x":76,"y":31.993},{"x":77,"y":31.273},{"x":78,"y":31.3937},{"x":79,"y":31.3067},{"x":80,"y":32.3891},{"x":81,"y":33.3738},{"x":82,"y":31.73},{"x":83,"y":30.142},{"x":84,"y":28.7389},{"x":85,"y":26.1794},{"x":86,"y":25.5832},{"x":87,"y":24.709},{"x":88,"y":22.6134},{"x":89,"y":21.3432},{"x":90,"y":22.0623},{"x":91,"y":21.777},{"x":92,"y":20.1682},{"x":93,"y":22.4356},{"x":94,"y":21.2946},{"x":95,"y":16.7963},{"x":96,"y":13.4095},{"x":97,"y":10.1954},{"x":98,"y":8.3018},{"x":99,"y":7.8181},{"x":100,"y":8.4898}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of M₁(ACh) in Area 7A","filename":"M₁(ACh)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₁(ACh) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₁(ACh) in Area 7A"],"datasets":[{"data":[{"x":0,"y":382.3219},{"x":1,"y":438.3244},{"x":2,"y":525.1396},{"x":3,"y":642.9287},{"x":4,"y":723.291},{"x":5,"y":747.786},{"x":6,"y":796.3545},{"x":7,"y":836.167},{"x":8,"y":858.2237},{"x":9,"y":877.5671},{"x":10,"y":905.5817},{"x":11,"y":943.4378},{"x":12,"y":957.1879},{"x":13,"y":972.0211},{"x":14,"y":991.6481},{"x":15,"y":999.2225},{"x":16,"y":1001.7807},{"x":17,"y":996.5057},{"x":18,"y":991.1604},{"x":19,"y":990.3797},{"x":20,"y":988.3148},{"x":21,"y":984.3874},{"x":22,"y":973.9103},{"x":23,"y":965.1029},{"x":24,"y":955.8308},{"x":25,"y":947.6097},{"x":26,"y":946.8864},{"x":27,"y":949.9137},{"x":28,"y":952.3448},{"x":29,"y":951.2108},{"x":30,"y":942.2136},{"x":31,"y":930.2366},{"x":32,"y":921.215},{"x":33,"y":900.6559},{"x":34,"y":887.3783},{"x":35,"y":876.8349},{"x":36,"y":863.58},{"x":37,"y":841.8048},{"x":38,"y":820.5465},{"x":39,"y":804.5433},{"x":40,"y":777.6351},{"x":41,"y":743.3054},{"x":42,"y":719.2131},{"x":43,"y":690.1274},{"x":44,"y":669.1188},{"x":45,"y":656.207},{"x":46,"y":642.16},{"x":47,"y":633.1034},{"x":48,"y":637.0209},{"x":49,"y":642.5582},{"x":50,"y":650.6476},{"x":51,"y":658.2378},{"x":52,"y":667.8891},{"x":53,"y":673.6998},{"x":54,"y":677.3347},{"x":55,"y":677.9197},{"x":56,"y":680.334},{"x":57,"y":686.7457},{"x":58,"y":695.4823},{"x":59,"y":702.1373},{"x":60,"y":712.301},{"x":61,"y":715.7087},{"x":62,"y":708.5097},{"x":63,"y":701.6702},{"x":64,"y":691.9411},{"x":65,"y":671.646},{"x":66,"y":652.6915},{"x":67,"y":642.6635},{"x":68,"y":637.9381},{"x":69,"y":638.2236},{"x":70,"y":637.9743},{"x":71,"y":636.6224},{"x":72,"y":635.8584},{"x":73,"y":632.9066},{"x":74,"y":628.4894},{"x":75,"y":629.1575},{"x":76,"y":629.3483},{"x":77,"y":633.039},{"x":78,"y":632.1897},{"x":79,"y":628.5441},{"x":80,"y":620.6626},{"x":81,"y":610.0377},{"x":82,"y":605.1272},{"x":83,"y":607.4589},{"x":84,"y":607.969},{"x":85,"y":606.0623},{"x":86,"y":600.9026},{"x":87,"y":595.6902},{"x":88,"y":577.2762},{"x":89,"y":540.8229},{"x":90,"y":516.11},{"x":91,"y":497.9378},{"x":92,"y":450.5715},{"x":93,"y":411.9622},{"x":94,"y":392.5805},{"x":95,"y":376.4116},{"x":96,"y":349.2774},{"x":97,"y":322.4285},{"x":98,"y":305.8261},{"x":99,"y":281.4086},{"x":100,"y":254.1402}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of 5-HT₁ᴀ(5-HT) in Area 7A","filename":"5-HT₁ᴀ(5-HT)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HT₁ᴀ(5-HT) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HT₁ᴀ(5-HT) in Area 7A"],"datasets":[{"data":[{"x":0,"y":139.9628},{"x":1,"y":159.4456},{"x":2,"y":173.6681},{"x":3,"y":205.9561},{"x":4,"y":243.5842},{"x":5,"y":258.3094},{"x":6,"y":274.8404},{"x":7,"y":302.1868},{"x":8,"y":327.0849},{"x":9,"y":339.5041},{"x":10,"y":345.5591},{"x":11,"y":360.8777},{"x":12,"y":382.4319},{"x":13,"y":396.7576},{"x":14,"y":405.4409},{"x":15,"y":410.1708},{"x":16,"y":416.519},{"x":17,"y":417.4106},{"x":18,"y":417.3862},{"x":19,"y":413.7091},{"x":20,"y":402.3244},{"x":21,"y":389.7984},{"x":22,"y":378.7112},{"x":23,"y":370.6574},{"x":24,"y":357.4796},{"x":25,"y":339.2121},{"x":26,"y":316.3164},{"x":27,"y":303.4193},{"x":28,"y":289.1645},{"x":29,"y":264.6483},{"x":30,"y":244.9837},{"x":31,"y":235.0097},{"x":32,"y":220.8909},{"x":33,"y":199.5047},{"x":34,"y":182.9034},{"x":35,"y":172.3891},{"x":36,"y":165.8176},{"x":37,"y":155.114},{"x":38,"y":146.7524},{"x":39,"y":137.171},{"x":40,"y":133.4841},{"x":41,"y":128.4862},{"x":42,"y":122.8328},{"x":43,"y":119.2062},{"x":44,"y":123.0689},{"x":45,"y":124.4356},{"x":46,"y":124.4356},{"x":47,"y":124.7959},{"x":48,"y":122.8447},{"x":49,"y":120.9847},{"x":50,"y":117.7807},{"x":51,"y":116.545},{"x":52,"y":117.8415},{"x":53,"y":120.6954},{"x":54,"y":124.0505},{"x":55,"y":129.6019},{"x":56,"y":131.9711},{"x":57,"y":132.3113},{"x":58,"y":133.1741},{"x":59,"y":134.8043},{"x":60,"y":130.7193},{"x":61,"y":124.7211},{"x":62,"y":119.233},{"x":63,"y":113.6246},{"x":64,"y":107.1462},{"x":65,"y":99.4469},{"x":66,"y":95.3613},{"x":67,"y":94.5086},{"x":68,"y":94.3806},{"x":69,"y":90.7424},{"x":70,"y":87.5501},{"x":71,"y":85.4694},{"x":72,"y":83.4803},{"x":73,"y":80.3618},{"x":74,"y":76.4014},{"x":75,"y":75.6064},{"x":76,"y":75.1677},{"x":77,"y":70.9984},{"x":78,"y":66.679},{"x":79,"y":64.1909},{"x":80,"y":62.5636},{"x":81,"y":62.8862},{"x":82,"y":64.1567},{"x":83,"y":62.5512},{"x":84,"y":58.6145},{"x":85,"y":55.8612},{"x":86,"y":49.0966},{"x":87,"y":44.6165},{"x":88,"y":44.0364},{"x":89,"y":42.8588},{"x":90,"y":41.277},{"x":91,"y":39.5338},{"x":92,"y":37.5767},{"x":93,"y":34.2379},{"x":94,"y":31.4925},{"x":95,"y":36.1056},{"x":96,"y":37.7222},{"x":97,"y":37.3067},{"x":98,"y":35.1788},{"x":99,"y":30.4756},{"x":100,"y":26.7841}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of kainate (Glu) in Area 7A","filename":"kainate (Glu)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of kainate (Glu) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of kainate (Glu) in Area 7A"],"datasets":[{"data":[{"x":0,"y":251.0298},{"x":1,"y":276.7229},{"x":2,"y":323.8144},{"x":3,"y":377.3279},{"x":4,"y":409.3778},{"x":5,"y":427.005},{"x":6,"y":470.8358},{"x":7,"y":510.8359},{"x":8,"y":527.2009},{"x":9,"y":538.767},{"x":10,"y":555.7251},{"x":11,"y":571.3581},{"x":12,"y":586.5456},{"x":13,"y":593.2975},{"x":14,"y":599.0479},{"x":15,"y":600.0229},{"x":16,"y":597.5062},{"x":17,"y":589.7764},{"x":18,"y":574.6197},{"x":19,"y":564.1533},{"x":20,"y":561.3965},{"x":21,"y":548.2548},{"x":22,"y":531.669},{"x":23,"y":519.1976},{"x":24,"y":517.561},{"x":25,"y":513.3273},{"x":26,"y":505.345},{"x":27,"y":502.7763},{"x":28,"y":498.0292},{"x":29,"y":489.3411},{"x":30,"y":487.7708},{"x":31,"y":491.6979},{"x":32,"y":493.7672},{"x":33,"y":495.091},{"x":34,"y":500.831},{"x":35,"y":502.5232},{"x":36,"y":499.8632},{"x":37,"y":493.6959},{"x":38,"y":488.9429},{"x":39,"y":487.3495},{"x":40,"y":483.8299},{"x":41,"y":479.8632},{"x":42,"y":483.3104},{"x":43,"y":481.6235},{"x":44,"y":482.1299},{"x":45,"y":485.1353},{"x":46,"y":487.6038},{"x":47,"y":487.2922},{"x":48,"y":488.1},{"x":49,"y":490.7919},{"x":50,"y":491.9073},{"x":51,"y":491.354},{"x":52,"y":493.5581},{"x":53,"y":505.4464},{"x":54,"y":512.3731},{"x":55,"y":526.7837},{"x":56,"y":541.9906},{"x":57,"y":560.2633},{"x":58,"y":566.3225},{"x":59,"y":577.4442},{"x":60,"y":584.235},{"x":61,"y":578.5537},{"x":62,"y":570.2319},{"x":63,"y":558.1292},{"x":64,"y":545.7895},{"x":65,"y":537.263},{"x":66,"y":532.8748},{"x":67,"y":527.3047},{"x":68,"y":529.2707},{"x":69,"y":533.4476},{"x":70,"y":533.1249},{"x":71,"y":535.3997},{"x":72,"y":542.1088},{"x":73,"y":546.3172},{"x":74,"y":550.6567},{"x":75,"y":554.8595},{"x":76,"y":560.8036},{"x":77,"y":564.2271},{"x":78,"y":573.2995},{"x":79,"y":586.0712},{"x":80,"y":594.3494},{"x":81,"y":595.4835},{"x":82,"y":601.0798},{"x":83,"y":608.2318},{"x":84,"y":606.8465},{"x":85,"y":603.6826},{"x":86,"y":594.543},{"x":87,"y":581.347},{"x":88,"y":564.5142},{"x":89,"y":547.7568},{"x":90,"y":520.4909},{"x":91,"y":489.785},{"x":92,"y":468.5371},{"x":93,"y":451.9617},{"x":94,"y":425.3122},{"x":95,"y":399.4838},{"x":96,"y":388.217},{"x":97,"y":369.3565},{"x":98,"y":333.0285},{"x":99,"y":300.525},{"x":100,"y":274.4998}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of M₂(ACh) in Area 7A","filename":"M₂(ACh)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₂(ACh) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₂(ACh) in Area 7A"],"datasets":[{"data":[{"x":0,"y":114.8929},{"x":1,"y":130.3703},{"x":2,"y":144.0927},{"x":3,"y":170.4441},{"x":4,"y":195.7123},{"x":5,"y":206.5739},{"x":6,"y":222.8406},{"x":7,"y":239.9028},{"x":8,"y":247.2082},{"x":9,"y":254.2513},{"x":10,"y":264.1531},{"x":11,"y":276.0237},{"x":12,"y":283.3915},{"x":13,"y":287.4534},{"x":14,"y":294.442},{"x":15,"y":300.26},{"x":16,"y":305.8507},{"x":17,"y":310.466},{"x":18,"y":319.1073},{"x":19,"y":324.0618},{"x":20,"y":329.1759},{"x":21,"y":335.5972},{"x":22,"y":340.5558},{"x":23,"y":342.1647},{"x":24,"y":340.6717},{"x":25,"y":338.7729},{"x":26,"y":334.0883},{"x":27,"y":334.2105},{"x":28,"y":336.9638},{"x":29,"y":337.3929},{"x":30,"y":342.817},{"x":31,"y":347.1665},{"x":32,"y":352.3684},{"x":33,"y":358.0049},{"x":34,"y":361.7798},{"x":35,"y":366.2793},{"x":36,"y":369.133},{"x":37,"y":369.9137},{"x":38,"y":371.1053},{"x":39,"y":370.28},{"x":40,"y":369.7033},{"x":41,"y":366.8806},{"x":42,"y":361.1273},{"x":43,"y":352.8706},{"x":44,"y":347.936},{"x":45,"y":342.8508},{"x":46,"y":338.9172},{"x":47,"y":332.2496},{"x":48,"y":323.4147},{"x":49,"y":315.4865},{"x":50,"y":309.0126},{"x":51,"y":301.6881},{"x":52,"y":297.204},{"x":53,"y":297.1408},{"x":54,"y":294.9886},{"x":55,"y":291.938},{"x":56,"y":292.2467},{"x":57,"y":295.3064},{"x":58,"y":298.4452},{"x":59,"y":299.1345},{"x":60,"y":304.7172},{"x":61,"y":305.8713},{"x":62,"y":305.3739},{"x":63,"y":306.9435},{"x":64,"y":307.6885},{"x":65,"y":308.048},{"x":66,"y":307.9314},{"x":67,"y":306.7715},{"x":68,"y":304.9074},{"x":69,"y":304.3974},{"x":70,"y":304.8622},{"x":71,"y":306.6599},{"x":72,"y":308.4472},{"x":73,"y":310.6843},{"x":74,"y":311.2315},{"x":75,"y":311.6819},{"x":76,"y":313.1128},{"x":77,"y":312.8166},{"x":78,"y":307.4156},{"x":79,"y":301.7453},{"x":80,"y":294.3241},{"x":81,"y":281.7214},{"x":82,"y":276.4935},{"x":83,"y":272.8251},{"x":84,"y":270.7132},{"x":85,"y":268.4946},{"x":86,"y":265.4647},{"x":87,"y":262.5601},{"x":88,"y":257.4283},{"x":89,"y":248.0727},{"x":90,"y":241.656},{"x":91,"y":233.9629},{"x":92,"y":215.2836},{"x":93,"y":203.0747},{"x":94,"y":195.0354},{"x":95,"y":186.7481},{"x":96,"y":174.4074},{"x":97,"y":163.5985},{"x":98,"y":157.4363},{"x":99,"y":143.3972},{"x":100,"y":126.4762}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of AMPA (Glu) in Area 7A","filename":"AMPA (Glu)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of AMPA (Glu) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of AMPA (Glu) in Area 7A"],"datasets":[{"data":[{"x":0,"y":165.8269},{"x":1,"y":178.6777},{"x":2,"y":192.29},{"x":3,"y":222.4915},{"x":4,"y":250.8446},{"x":5,"y":261.4638},{"x":6,"y":274.4116},{"x":7,"y":294.6773},{"x":8,"y":307.9743},{"x":9,"y":313.3783},{"x":10,"y":319.7029},{"x":11,"y":331.7129},{"x":12,"y":342.8041},{"x":13,"y":348.4396},{"x":14,"y":358.5806},{"x":15,"y":367.1346},{"x":16,"y":372.7828},{"x":17,"y":377.325},{"x":18,"y":379.1914},{"x":19,"y":380.8765},{"x":20,"y":379.5686},{"x":21,"y":378.6225},{"x":22,"y":377.4324},{"x":23,"y":372.9805},{"x":24,"y":369.8772},{"x":25,"y":364.8685},{"x":26,"y":357.2026},{"x":27,"y":353.5835},{"x":28,"y":349.3376},{"x":29,"y":337.8648},{"x":30,"y":322.7376},{"x":31,"y":314.552},{"x":32,"y":307.8342},{"x":33,"y":300.6247},{"x":34,"y":295.2776},{"x":35,"y":289.2362},{"x":36,"y":286.1694},{"x":37,"y":278.6468},{"x":38,"y":270.4222},{"x":39,"y":264.9096},{"x":40,"y":259.2552},{"x":41,"y":249.823},{"x":42,"y":244.1371},{"x":43,"y":244.0012},{"x":44,"y":244.6413},{"x":45,"y":245.4113},{"x":46,"y":245.3238},{"x":47,"y":246.9841},{"x":48,"y":248.6358},{"x":49,"y":249.6081},{"x":50,"y":249.203},{"x":51,"y":252.759},{"x":52,"y":252.2215},{"x":53,"y":247.2017},{"x":54,"y":241.6193},{"x":55,"y":241.4535},{"x":56,"y":235.9386},{"x":57,"y":235.5753},{"x":58,"y":234.997},{"x":59,"y":231.3455},{"x":60,"y":229.0312},{"x":61,"y":223.6788},{"x":62,"y":218.5157},{"x":63,"y":213.5319},{"x":64,"y":210.5304},{"x":65,"y":210.3188},{"x":66,"y":209.2017},{"x":67,"y":210.7303},{"x":68,"y":214.214},{"x":69,"y":216.1423},{"x":70,"y":218.1638},{"x":71,"y":215.398},{"x":72,"y":207.1968},{"x":73,"y":204.068},{"x":74,"y":199.9659},{"x":75,"y":195.2424},{"x":76,"y":193.9523},{"x":77,"y":193.5182},{"x":78,"y":193.4707},{"x":79,"y":192.9171},{"x":80,"y":190.5196},{"x":81,"y":189.1443},{"x":82,"y":192.7447},{"x":83,"y":199.7749},{"x":84,"y":207.3913},{"x":85,"y":213.3254},{"x":86,"y":216.0479},{"x":87,"y":214.0178},{"x":88,"y":213.0261},{"x":89,"y":208.3971},{"x":90,"y":200.8762},{"x":91,"y":195.1287},{"x":92,"y":189.2882},{"x":93,"y":178.9209},{"x":94,"y":167.766},{"x":95,"y":160.129},{"x":96,"y":153.9663},{"x":97,"y":142.3762},{"x":98,"y":124.4451},{"x":99,"y":115.9433},{"x":100,"y":105.697}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of D₁(DA) in Area 7A","filename":"D₁(DA)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of D₁(DA) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of D₁(DA) in Area 7A"],"datasets":[{"data":[{"x":0,"y":82.3706},{"x":1,"y":90.3893},{"x":2,"y":100.1785},{"x":3,"y":107.9235},{"x":4,"y":115.6573},{"x":5,"y":119.7377},{"x":6,"y":125.2441},{"x":7,"y":135.2463},{"x":8,"y":141.4176},{"x":9,"y":149.1826},{"x":10,"y":156.189},{"x":11,"y":161.4988},{"x":12,"y":162.4539},{"x":13,"y":162.8742},{"x":14,"y":158.7893},{"x":15,"y":152.0452},{"x":16,"y":143.7672},{"x":17,"y":139.6443},{"x":18,"y":135.1313},{"x":19,"y":131.8678},{"x":20,"y":133.0253},{"x":21,"y":132.6677},{"x":22,"y":134.1043},{"x":23,"y":138.7863},{"x":24,"y":139.8736},{"x":25,"y":140.2394},{"x":26,"y":140.3024},{"x":27,"y":139.8431},{"x":28,"y":139.3562},{"x":29,"y":137.8853},{"x":30,"y":135.2239},{"x":31,"y":135.2929},{"x":32,"y":136.2921},{"x":33,"y":136.809},{"x":34,"y":139.1511},{"x":35,"y":140.9525},{"x":36,"y":140.0342},{"x":37,"y":140.5578},{"x":38,"y":138.7285},{"x":39,"y":134.9028},{"x":40,"y":133.0436},{"x":41,"y":131.1695},{"x":42,"y":129.7595},{"x":43,"y":129.1131},{"x":44,"y":129.6366},{"x":45,"y":131.0113},{"x":46,"y":133.2678},{"x":47,"y":134.9277},{"x":48,"y":134.7854},{"x":49,"y":133.9852},{"x":50,"y":134.0755},{"x":51,"y":133.0952},{"x":52,"y":131.5614},{"x":53,"y":127.3637},{"x":54,"y":126.3117},{"x":55,"y":124.1813},{"x":56,"y":121.5154},{"x":57,"y":121.601},{"x":58,"y":122.3969},{"x":59,"y":123.8415},{"x":60,"y":125.5515},{"x":61,"y":125.2313},{"x":62,"y":124.8034},{"x":63,"y":125.6635},{"x":64,"y":125.1942},{"x":65,"y":122.8819},{"x":66,"y":120.3305},{"x":67,"y":116.2642},{"x":68,"y":112.9832},{"x":69,"y":112.2761},{"x":70,"y":112.2809},{"x":71,"y":112.5116},{"x":72,"y":111.4163},{"x":73,"y":112.6439},{"x":74,"y":114.9792},{"x":75,"y":115.0479},{"x":76,"y":116.3963},{"x":77,"y":118.2606},{"x":78,"y":118.6052},{"x":79,"y":118.6889},{"x":80,"y":117.4169},{"x":81,"y":114.8647},{"x":82,"y":111.1505},{"x":83,"y":107.7304},{"x":84,"y":103.813},{"x":85,"y":99.3413},{"x":86,"y":96.5002},{"x":87,"y":95.5544},{"x":88,"y":93.9831},{"x":89,"y":93.2571},{"x":90,"y":92.6696},{"x":91,"y":90.4918},{"x":92,"y":88.3666},{"x":93,"y":86.7248},{"x":94,"y":84.7815},{"x":95,"y":81.1593},{"x":96,"y":77.5223},{"x":97,"y":72.3289},{"x":98,"y":68.6545},{"x":99,"y":65.8115},{"x":100,"y":60.2677}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of M₃(ACh) in Area 7A","filename":"M₃(ACh)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₃(ACh) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₃(ACh) in Area 7A"],"datasets":[{"data":[{"x":0,"y":262.2453},{"x":1,"y":301.3725},{"x":2,"y":329.3785},{"x":3,"y":386.1118},{"x":4,"y":475.2152},{"x":5,"y":536.1097},{"x":6,"y":589.1526},{"x":7,"y":657.6791},{"x":8,"y":712.4421},{"x":9,"y":768.8856},{"x":10,"y":795.4745},{"x":11,"y":809.7042},{"x":12,"y":826.6472},{"x":13,"y":841.0776},{"x":14,"y":853.4719},{"x":15,"y":858.9538},{"x":16,"y":870.4296},{"x":17,"y":883.5447},{"x":18,"y":894.9556},{"x":19,"y":902.2325},{"x":20,"y":905.7851},{"x":21,"y":909.5306},{"x":22,"y":915.3387},{"x":23,"y":920.2709},{"x":24,"y":922.1055},{"x":25,"y":924.6335},{"x":26,"y":927.0689},{"x":27,"y":929.3031},{"x":28,"y":928.8533},{"x":29,"y":926.8713},{"x":30,"y":924.2145},{"x":31,"y":917.6357},{"x":32,"y":909.5613},{"x":33,"y":901.5776},{"x":34,"y":890.1075},{"x":35,"y":875.7447},{"x":36,"y":864.8834},{"x":37,"y":859.2525},{"x":38,"y":847.3905},{"x":39,"y":834.7358},{"x":40,"y":824.5601},{"x":41,"y":816.5769},{"x":42,"y":810.4789},{"x":43,"y":801.391},{"x":44,"y":788.5195},{"x":45,"y":774.7673},{"x":46,"y":766.4622},{"x":47,"y":752.2814},{"x":48,"y":738.4437},{"x":49,"y":726.1303},{"x":50,"y":714.7208},{"x":51,"y":699.2138},{"x":52,"y":686.8},{"x":53,"y":678.7894},{"x":54,"y":674.8372},{"x":55,"y":673.9734},{"x":56,"y":674.6517},{"x":57,"y":677.2477},{"x":58,"y":681.0908},{"x":59,"y":682.8671},{"x":60,"y":683.0743},{"x":61,"y":676.4656},{"x":62,"y":666.0216},{"x":63,"y":657.1697},{"x":64,"y":651.5592},{"x":65,"y":641.6641},{"x":66,"y":631.0699},{"x":67,"y":624.5821},{"x":68,"y":619.1694},{"x":69,"y":613.6037},{"x":70,"y":611.3418},{"x":71,"y":608.9645},{"x":72,"y":610.0555},{"x":73,"y":610.7931},{"x":74,"y":614.8636},{"x":75,"y":619.8534},{"x":76,"y":625.8974},{"x":77,"y":628.9361},{"x":78,"y":635.588},{"x":79,"y":637.0061},{"x":80,"y":636.0802},{"x":81,"y":631.3841},{"x":82,"y":620.7328},{"x":83,"y":604.283},{"x":84,"y":581.6371},{"x":85,"y":560.7332},{"x":86,"y":546.1187},{"x":87,"y":518.6196},{"x":88,"y":489.1823},{"x":89,"y":460.297},{"x":90,"y":443.2595},{"x":91,"y":421.1332},{"x":92,"y":386.9171},{"x":93,"y":360.6118},{"x":94,"y":330.4156},{"x":95,"y":309.4416},{"x":96,"y":284.8695},{"x":97,"y":244.7918},{"x":98,"y":217.7168},{"x":99,"y":204.6012},{"x":100,"y":187.0507}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of mGluR2/3 (Glu) in Area 7A","filename":"mGluR2\\/3 (Glu)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of mGluR2/3 (Glu) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of mGluR2/3 (Glu) in Area 7A"],"datasets":[{"data":[{"x":0,"y":1276.6393},{"x":1,"y":1416.6576},{"x":2,"y":1600.8501},{"x":3,"y":1799.8068},{"x":4,"y":1975.4301},{"x":5,"y":2019.5139},{"x":6,"y":2138.103},{"x":7,"y":2271.7284},{"x":8,"y":2333.6814},{"x":9,"y":2354.3451},{"x":10,"y":2421.0831},{"x":11,"y":2448.349},{"x":12,"y":2489.6455},{"x":13,"y":2518.603},{"x":14,"y":2564.8087},{"x":15,"y":2661.2743},{"x":16,"y":2785.5394},{"x":17,"y":2846.3764},{"x":18,"y":2922.1705},{"x":19,"y":3017.1913},{"x":20,"y":3065.413},{"x":21,"y":3103.0527},{"x":22,"y":3136.0391},{"x":23,"y":3136.3974},{"x":24,"y":3112.5531},{"x":25,"y":3095.9034},{"x":26,"y":3044.3648},{"x":27,"y":2978.9985},{"x":28,"y":2897.3784},{"x":29,"y":2841.3434},{"x":30,"y":2813.4762},{"x":31,"y":2781.1183},{"x":32,"y":2767.6111},{"x":33,"y":2739.491},{"x":34,"y":2725.6216},{"x":35,"y":2719.2591},{"x":36,"y":2689.2281},{"x":37,"y":2650.694},{"x":38,"y":2607.8615},{"x":39,"y":2519.3011},{"x":40,"y":2430.6736},{"x":41,"y":2398.404},{"x":42,"y":2316.0988},{"x":43,"y":2187.962},{"x":44,"y":2045.462},{"x":45,"y":1945.3265},{"x":46,"y":1852.3396},{"x":47,"y":1762.6735},{"x":48,"y":1655.1016},{"x":49,"y":1578.7541},{"x":50,"y":1543.3275},{"x":51,"y":1529.6925},{"x":52,"y":1528.9028},{"x":53,"y":1544.0347},{"x":54,"y":1535.05},{"x":55,"y":1545.5799},{"x":56,"y":1532.2462},{"x":57,"y":1528.5048},{"x":58,"y":1551.9414},{"x":59,"y":1597.5022},{"x":60,"y":1658.9033},{"x":61,"y":1700.5322},{"x":62,"y":1737.582},{"x":63,"y":1735.3384},{"x":64,"y":1689.6181},{"x":65,"y":1644.5749},{"x":66,"y":1583.8934},{"x":67,"y":1474.3109},{"x":68,"y":1399.0384},{"x":69,"y":1356.3718},{"x":70,"y":1319.0208},{"x":71,"y":1300.4523},{"x":72,"y":1304.0509},{"x":73,"y":1323.4005},{"x":74,"y":1337.4719},{"x":75,"y":1354.6358},{"x":76,"y":1366.3823},{"x":77,"y":1384.0555},{"x":78,"y":1396.1785},{"x":79,"y":1409.2968},{"x":80,"y":1403.7374},{"x":81,"y":1363.6879},{"x":82,"y":1344.6398},{"x":83,"y":1295.8706},{"x":84,"y":1278.1333},{"x":85,"y":1268.0291},{"x":86,"y":1274.1699},{"x":87,"y":1312.8478},{"x":88,"y":1361.3832},{"x":89,"y":1374.4552},{"x":90,"y":1367.7086},{"x":91,"y":1367.1454},{"x":92,"y":1366.7719},{"x":93,"y":1322.9096},{"x":94,"y":1260.4142},{"x":95,"y":1180.6975},{"x":96,"y":1058.7647},{"x":97,"y":935.7444},{"x":98,"y":880.0041},{"x":99,"y":772.0206},{"x":100,"y":630.5493}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of 5-HT₂(5-HT) in Area 7A","filename":"5-HT₂(5-HT)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HT₂(5-HT) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HT₂(5-HT) in Area 7A"],"datasets":[{"data":[{"x":0,"y":242.2038},{"x":1,"y":255.429},{"x":2,"y":267.7241},{"x":3,"y":279.0103},{"x":4,"y":291.6608},{"x":5,"y":295.9546},{"x":6,"y":299.9036},{"x":7,"y":301.5689},{"x":8,"y":304.2633},{"x":9,"y":309.8645},{"x":10,"y":313.8278},{"x":11,"y":319.2057},{"x":12,"y":327.8362},{"x":13,"y":331.4444},{"x":14,"y":339.0641},{"x":15,"y":350.7271},{"x":16,"y":360.2297},{"x":17,"y":369.9275},{"x":18,"y":377.3569},{"x":19,"y":382.1865},{"x":20,"y":389.8425},{"x":21,"y":399.2808},{"x":22,"y":406.8255},{"x":23,"y":412.5805},{"x":24,"y":417.9728},{"x":25,"y":420.6806},{"x":26,"y":422.6222},{"x":27,"y":424.0387},{"x":28,"y":428.5667},{"x":29,"y":432.5041},{"x":30,"y":432.0832},{"x":31,"y":433.4775},{"x":32,"y":433.7371},{"x":33,"y":432.8811},{"x":34,"y":431.4239},{"x":35,"y":430.6295},{"x":36,"y":431.0695},{"x":37,"y":431.7824},{"x":38,"y":431.5001},{"x":39,"y":430.1665},{"x":40,"y":428.4513},{"x":41,"y":428.1761},{"x":42,"y":427.3997},{"x":43,"y":426.6064},{"x":44,"y":424.3744},{"x":45,"y":420.7311},{"x":46,"y":416.8468},{"x":47,"y":414.0092},{"x":48,"y":410.5026},{"x":49,"y":407.0281},{"x":50,"y":404.5828},{"x":51,"y":400.2905},{"x":52,"y":395.4896},{"x":53,"y":394.9918},{"x":54,"y":392.9237},{"x":55,"y":388.4179},{"x":56,"y":385.1925},{"x":57,"y":383.5663},{"x":58,"y":383.421},{"x":59,"y":382.8771},{"x":60,"y":380.0523},{"x":61,"y":378.0033},{"x":62,"y":376.2923},{"x":63,"y":374.2232},{"x":64,"y":369.5993},{"x":65,"y":366.3369},{"x":66,"y":361.0353},{"x":67,"y":352.2224},{"x":68,"y":346.1572},{"x":69,"y":342.7126},{"x":70,"y":339.8492},{"x":71,"y":337.3583},{"x":72,"y":329.98},{"x":73,"y":324.276},{"x":74,"y":319.5903},{"x":75,"y":313.9487},{"x":76,"y":310.3027},{"x":77,"y":309.5322},{"x":78,"y":306.4743},{"x":79,"y":300.9548},{"x":80,"y":295.3083},{"x":81,"y":291.7602},{"x":82,"y":290.5495},{"x":83,"y":285.6468},{"x":84,"y":278.1925},{"x":85,"y":271.4423},{"x":86,"y":259.904},{"x":87,"y":251.1477},{"x":88,"y":244.9073},{"x":89,"y":233.0483},{"x":90,"y":221.3004},{"x":91,"y":214.2335},{"x":92,"y":206.5496},{"x":93,"y":201.3465},{"x":94,"y":198.1938},{"x":95,"y":191.2219},{"x":96,"y":184.4615},{"x":97,"y":176.7826},{"x":98,"y":169.376},{"x":99,"y":161.2589},{"x":100,"y":154.8098}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null},{"name":"Sample profile of GABAᴃ(GABA) in Area 7A","filename":"GABAᴃ(GABA)/profile","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴃ(GABA) in Area 7A"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴃ(GABA) in Area 7A"],"datasets":[{"data":[{"x":0,"y":1156.1503},{"x":1,"y":1355.3643},{"x":2,"y":1631.4605},{"x":3,"y":2031.9433},{"x":4,"y":2398.5408},{"x":5,"y":2655.2859},{"x":6,"y":2814.1466},{"x":7,"y":3105.5639},{"x":8,"y":3275.4003},{"x":9,"y":3354.4507},{"x":10,"y":3428.7803},{"x":11,"y":3492.3326},{"x":12,"y":3557.9408},{"x":13,"y":3597.4988},{"x":14,"y":3629.379},{"x":15,"y":3685.4961},{"x":16,"y":3720.6345},{"x":17,"y":3744.9326},{"x":18,"y":3739.527},{"x":19,"y":3719.9883},{"x":20,"y":3660.7312},{"x":21,"y":3620.1131},{"x":22,"y":3613.7725},{"x":23,"y":3597.0596},{"x":24,"y":3570.9657},{"x":25,"y":3534.6392},{"x":26,"y":3501.8373},{"x":27,"y":3440.9219},{"x":28,"y":3356.2778},{"x":29,"y":3291.713},{"x":30,"y":3255.3961},{"x":31,"y":3164.543},{"x":32,"y":3064.1379},{"x":33,"y":3001.1613},{"x":34,"y":2975.026},{"x":35,"y":2933.2342},{"x":36,"y":2919.994},{"x":37,"y":2909.7543},{"x":38,"y":2899.71},{"x":39,"y":2881.0588},{"x":40,"y":2843.6094},{"x":41,"y":2791.959},{"x":42,"y":2750.5244},{"x":43,"y":2697.688},{"x":44,"y":2615.8356},{"x":45,"y":2520.23},{"x":46,"y":2456.3633},{"x":47,"y":2400.6612},{"x":48,"y":2326.8185},{"x":49,"y":2289.6689},{"x":50,"y":2283.5967},{"x":51,"y":2290.7856},{"x":52,"y":2329.2688},{"x":53,"y":2357.0118},{"x":54,"y":2362.333},{"x":55,"y":2362.336},{"x":56,"y":2361.9552},{"x":57,"y":2367.9274},{"x":58,"y":2368.522},{"x":59,"y":2374.1113},{"x":60,"y":2362.7651},{"x":61,"y":2348.8044},{"x":62,"y":2315.9224},{"x":63,"y":2275.5391},{"x":64,"y":2206.0325},{"x":65,"y":2112.2779},{"x":66,"y":2055.4444},{"x":67,"y":2044.3293},{"x":68,"y":2047.5537},{"x":69,"y":2089.2383},{"x":70,"y":2140.2902},{"x":71,"y":2158.2404},{"x":72,"y":2168.1091},{"x":73,"y":2179.0646},{"x":74,"y":2166.174},{"x":75,"y":2149.4004},{"x":76,"y":2105.4029},{"x":77,"y":2046.534},{"x":78,"y":1997.6759},{"x":79,"y":1974.2813},{"x":80,"y":1936.0846},{"x":81,"y":1887.2022},{"x":82,"y":1848.6358},{"x":83,"y":1808.6652},{"x":84,"y":1767.6402},{"x":85,"y":1711.0813},{"x":86,"y":1630.4481},{"x":87,"y":1592.159},{"x":88,"y":1526.7898},{"x":89,"y":1405.8421},{"x":90,"y":1307.0386},{"x":91,"y":1226.3495},{"x":92,"y":1156.3211},{"x":93,"y":1049.1288},{"x":94,"y":919.7275},{"x":95,"y":862.9674},{"x":96,"y":799.3356},{"x":97,"y":719.6935},{"x":98,"y":650.9807},{"x":99,"y":602.711},{"x":100,"y":565.6492}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(175,238,238,0.2)"}]},"url":null}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas"},{"type":"Receptor Data","name":"Receptor Data for Area 9","regionName":[{"regionName":"none","relationship":"none"}],"properties":{"description":null,"publications":[]},"files":[{"name":"Receptor density fingerprint of Area 9","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["432","660","820","4382","1855","2643","2767","495","222","939","63","423","624","480","449","97"]},{"label":"mean_sd","data":["175","249","383","1436","928","663","630","327","94","335","39","174","114","171","209","28"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area 9 (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(255,255,255,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas"},{"type":"Receptor Data","name":"Receptor Data for Area FG1","regionName":[{"regionName":"Area FG1 (FusG)","relationship":"equals"}],"properties":{"description":null,"publications":[]},"files":[{"name":"Receptor density fingerprint of Area FG1","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["419","499","1176","NA","1933","2140","2731","480","219","833","56","343","467","317","441","107"]},{"label":"mean_sd","data":["65","117","142","NA","255","216","421","67","34","163","12","45","93","60","82","20"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area FG1 (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(0,100,209,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAᴀ(BZ) in Area FG1","filename":"GABAᴀ(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/FG1_bm_BZ.jpg"},{"name":"Sample autoradiograph of α₁(NA) in Area FG1","filename":"α₁(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/FG1_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area FG1","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/FG1_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAᴀ(GABA) in Area FG1","filename":"GABAᴀ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/FG1_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area FG1","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/FG1_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area FG1","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/FG1_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of M₁(ACh) in Area FG1","filename":"M₁(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/FG1_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HT₁ᴀ(5-HT) in Area FG1","filename":"5-HT₁ᴀ(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/FG1_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area FG1","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/FG1_bm_kainate.jpg"},{"name":"Sample autoradiograph of M₂(ACh) in Area FG1","filename":"M₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/FG1_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area FG1","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/FG1_bm_AMPA.jpg"},{"name":"Sample autoradiograph of D₁(DA) in Area FG1","filename":"D₁(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/FG1_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area FG1","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/FG1_bm_M3.jpg"},{"name":"Sample autoradiograph of 5-HT₂(5-HT) in Area FG1","filename":"5-HT₂(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/FG1_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAᴃ(GABA) in Area FG1","filename":"GABAᴃ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/FG1_bm_GABAB.jpg"}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas"},{"type":"Receptor Data","name":"Receptor Data for Area FG2","regionName":[{"regionName":"Area FG2 (FusG)","relationship":"equals"}],"properties":{"description":null,"publications":[]},"files":[{"name":"Receptor density fingerprint of Area FG2","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["427","490","1315","NA","1933","2329","2918","499","213","871","61","368","522","396","476","114"]},{"label":"mean_sd","data":["65","116","152","NA","292","237","422","72","35","172","12","57","118","74","97","20"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area FG2 (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(0,209,56,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAᴀ(BZ) in Area FG2","filename":"GABAᴀ(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/FG2_bm_BZ.jpg"},{"name":"Sample autoradiograph of α₁(NA) in Area FG2","filename":"α₁(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/FG2_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area FG2","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/FG2_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAᴀ(GABA) in Area FG2","filename":"GABAᴀ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/FG2_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area FG2","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/FG2_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area FG2","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/FG2_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of M₁(ACh) in Area FG2","filename":"M₁(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/FG2_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HT₁ᴀ(5-HT) in Area FG2","filename":"5-HT₁ᴀ(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/FG2_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area FG2","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/FG2_bm_kainate.jpg"},{"name":"Sample autoradiograph of M₂(ACh) in Area FG2","filename":"M₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/FG2_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area FG2","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/FG2_bm_AMPA.jpg"},{"name":"Sample autoradiograph of D₁(DA) in Area FG2","filename":"D₁(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/FG2_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area FG2","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/FG2_bm_M3.jpg"},{"name":"Sample autoradiograph of 5-HT₂(5-HT) in Area FG2","filename":"5-HT₂(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/FG2_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAᴃ(GABA) in Area FG2","filename":"GABAᴃ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/FG2_bm_GABAB.jpg"}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas"},{"type":"Receptor Data","name":"Receptor Data for Area PF","regionName":[{"regionName":"Area PF (IPL)","relationship":"equals"}],"properties":{"description":null,"publications":[]},"files":[{"name":"Receptor density fingerprint of Area PF","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["496","647","1157","3398","1595","2225","2706","501","185","957","49","409","837","298","439","113"]},{"label":"mean_sd","data":["131","260","289","1453","527","652","830","197","63","285","17","163","mg/mol","83","146","40"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area PF (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(239,134,0,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas"},{"type":"Receptor Data","name":"Receptor Data for Area PFcm","regionName":[{"regionName":"Area PFcm (IPL)","relationship":"equals"}],"properties":{"description":null,"publications":[]},"files":[{"name":"Receptor density fingerprint of Area PFcm","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["412","602","1237","3194","1598","2188","2379","536","182","866","63","398","831","300","444","113"]},{"label":"mean_sd","data":["149","303","230","1582","389","768","719","198","62","393","33","155","mg/mol","82","204","54"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area PFcm (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(144,238,144,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas"},{"type":"Receptor Data","name":"Receptor Data for Area PFm","regionName":[{"regionName":"Area PFm (IPL)","relationship":"equals"}],"properties":{"description":null,"publications":[]},"files":[{"name":"Receptor density fingerprint of Area PFm","filename":"fingerprint","mimetype":"application/json","properties":{"description":"**Multireceptor fingerprint for area PFm.** This polar plot shows the mean receptor densities in fmol/mg protein (solid shape) and standard deviation (dashed line) of 16 receptor binding sites in the area PFm. The data is based on the left and right hemisphere of one female subject (brain id: hg0201, sample ids: ID07 and ID08, age: 77, cause of death: lung edema) and the right hemispheres of two male subjects (brain id: hg0500, sample ids: ID09, age: 72, cause of death: cardiac arrest | brain id: hg0100, sample ids: ID12, age: 77, cause of death: coronary heart disease).","publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["513","532","1244","NA","1649","1881","3407","733","187","720","33","321","159","488","368","77"]},{"label":"mean_sd","data":["134","373","311","NA","229","914","1481","73","36","139","16","106","73","194","155","36"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area PFm (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(238,238,14,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAᴀ(BZ) in Area PFm","filename":"GABAᴀ(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/PFm_bm_BZ.jpg"},{"name":"Sample autoradiograph of α₁(NA) in Area PFm","filename":"α₁(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/PFm_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area PFm","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/PFm_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAᴀ(GABA) in Area PFm","filename":"GABAᴀ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/PFm_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area PFm","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/PFm_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area PFm","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/PFm_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of M₁(ACh) in Area PFm","filename":"M₁(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/PFm_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HT₁ᴀ(5-HT) in Area PFm","filename":"5-HT₁ᴀ(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/PFm_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area PFm","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/PFm_bm_kainate.jpg"},{"name":"Sample autoradiograph of M₂(ACh) in Area PFm","filename":"M₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/PFm_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area PFm","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/PFm_bm_AMPA.jpg"},{"name":"Sample autoradiograph of D₁(DA) in Area PFm","filename":"D₁(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/PFm_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area PFm","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/PFm_bm_M3.jpg"},{"name":"Sample autoradiograph of mGluR2/3 (Glu) in Area PFm","filename":"mGluR2\\/3 (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/PFm_bm_mGluR2_3.jpg"},{"name":"Sample autoradiograph of 5-HT₂(5-HT) in Area PFm","filename":"5-HT₂(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/PFm_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAᴃ(GABA) in Area PFm","filename":"GABAᴃ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/PFm_bm_GABAB.jpg"},{"name":"Sample profile of GABAᴀ(BZ) in Area PFm","filename":"GABAᴀ(BZ)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of BZ receptor in area PFm.** This profile plot shows examplary the course of the BZ receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴀ(BZ) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴀ(BZ) in Area PFm"],"datasets":[{"data":[{"x":0,"y":414.6775},{"x":1,"y":547.3832},{"x":2,"y":750.3479},{"x":3,"y":1025.2073},{"x":4,"y":1272.8043},{"x":5,"y":1502.9083},{"x":6,"y":1809.6361},{"x":7,"y":2074.466},{"x":8,"y":2267.3889},{"x":9,"y":2466.4042},{"x":10,"y":2716.4915},{"x":11,"y":2963.1964},{"x":12,"y":3189.5308},{"x":13,"y":3475.5923},{"x":14,"y":3766.1234},{"x":15,"y":3997.4987},{"x":16,"y":4217.4137},{"x":17,"y":4424.9596},{"x":18,"y":4602.5953},{"x":19,"y":4747.3639},{"x":20,"y":4823.4043},{"x":21,"y":4827.7793},{"x":22,"y":4828.3494},{"x":23,"y":4834.7259},{"x":24,"y":4879.864},{"x":25,"y":4911.0452},{"x":26,"y":4955.2739},{"x":27,"y":4931.1255},{"x":28,"y":4926.7226},{"x":29,"y":4949.8858},{"x":30,"y":4965.6216},{"x":31,"y":4998.7252},{"x":32,"y":4996.599},{"x":33,"y":4926.2325},{"x":34,"y":4819.9849},{"x":35,"y":4693.8485},{"x":36,"y":4573.8724},{"x":37,"y":4451.9143},{"x":38,"y":4287.3062},{"x":39,"y":4160.1753},{"x":40,"y":4022.7371},{"x":41,"y":3899.2575},{"x":42,"y":3778.4443},{"x":43,"y":3680.0035},{"x":44,"y":3599.2844},{"x":45,"y":3499.8822},{"x":46,"y":3356.4288},{"x":47,"y":3221.8133},{"x":48,"y":3126.4153},{"x":49,"y":3033.8599},{"x":50,"y":2951.4299},{"x":51,"y":2899.7882},{"x":52,"y":2879.3989},{"x":53,"y":2843.4544},{"x":54,"y":2775.5895},{"x":55,"y":2705.5753},{"x":56,"y":2662.433},{"x":57,"y":2617.2997},{"x":58,"y":2564.7134},{"x":59,"y":2508.9885},{"x":60,"y":2465.2525},{"x":61,"y":2417.3071},{"x":62,"y":2356.1458},{"x":63,"y":2275.8288},{"x":64,"y":2212.0896},{"x":65,"y":2140.7198},{"x":66,"y":2077.1758},{"x":67,"y":2040.6461},{"x":68,"y":2003.6524},{"x":69,"y":1973.7642},{"x":70,"y":1947.2585},{"x":71,"y":1924.6402},{"x":72,"y":1906.151},{"x":73,"y":1883.4075},{"x":74,"y":1849.2279},{"x":75,"y":1816.7236},{"x":76,"y":1799.4676},{"x":77,"y":1788.9956},{"x":78,"y":1783.2993},{"x":79,"y":1763.4861},{"x":80,"y":1744.703},{"x":81,"y":1714.713},{"x":82,"y":1680.9472},{"x":83,"y":1653.1001},{"x":84,"y":1622.0959},{"x":85,"y":1579.6815},{"x":86,"y":1538.2249},{"x":87,"y":1487.4049},{"x":88,"y":1434.51},{"x":89,"y":1393.3928},{"x":90,"y":1345.2221},{"x":91,"y":1280.4439},{"x":92,"y":1216.7759},{"x":93,"y":1172.3735},{"x":94,"y":1109.6377},{"x":95,"y":1053.4117},{"x":96,"y":1019.2427},{"x":97,"y":981.1075},{"x":98,"y":934.1703},{"x":99,"y":884.1061},{"x":100,"y":835.8167}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of α₁(NA) in Area PFm","filename":"α₁(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha1 receptor in area PFm.** This profile plot shows examplary the course of the alpha1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₁(NA) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₁(NA) in Area PFm"],"datasets":[{"data":[{"x":0,"y":246.0485},{"x":1,"y":302.7126},{"x":2,"y":342.1714},{"x":3,"y":443.336},{"x":4,"y":539.0976},{"x":5,"y":592.9106},{"x":6,"y":620.0483},{"x":7,"y":660.9343},{"x":8,"y":688.9723},{"x":9,"y":701.3227},{"x":10,"y":703.1962},{"x":11,"y":710.5742},{"x":12,"y":711.2233},{"x":13,"y":708.0837},{"x":14,"y":699.91},{"x":15,"y":690.0384},{"x":16,"y":668.2761},{"x":17,"y":647.4805},{"x":18,"y":638.0554},{"x":19,"y":631.7727},{"x":20,"y":626.576},{"x":21,"y":622.3763},{"x":22,"y":617.6824},{"x":23,"y":614.0316},{"x":24,"y":612.523},{"x":25,"y":611.7249},{"x":26,"y":611.7099},{"x":27,"y":609.9237},{"x":28,"y":609.752},{"x":29,"y":612.2496},{"x":30,"y":612.6466},{"x":31,"y":611.3793},{"x":32,"y":611.6471},{"x":33,"y":615.0885},{"x":34,"y":616.0165},{"x":35,"y":618.6871},{"x":36,"y":617.3478},{"x":37,"y":616.7342},{"x":38,"y":615.9005},{"x":39,"y":609.0167},{"x":40,"y":600.533},{"x":41,"y":591.1072},{"x":42,"y":579.1195},{"x":43,"y":565.3021},{"x":44,"y":553.6628},{"x":45,"y":545.7672},{"x":46,"y":541.8615},{"x":47,"y":533.4871},{"x":48,"y":529.5152},{"x":49,"y":529.1189},{"x":50,"y":526.9732},{"x":51,"y":524.5106},{"x":52,"y":526.8232},{"x":53,"y":533.3391},{"x":54,"y":540.3494},{"x":55,"y":540.4475},{"x":56,"y":542.3092},{"x":57,"y":552.1197},{"x":58,"y":553.7407},{"x":59,"y":553.2674},{"x":60,"y":559.9643},{"x":61,"y":565.719},{"x":62,"y":577.1762},{"x":63,"y":592.2511},{"x":64,"y":601.3304},{"x":65,"y":606.5184},{"x":66,"y":611.6904},{"x":67,"y":613.4652},{"x":68,"y":611.611},{"x":69,"y":613.2039},{"x":70,"y":622.8761},{"x":71,"y":634.9369},{"x":72,"y":647.4784},{"x":73,"y":651.7268},{"x":74,"y":657.8105},{"x":75,"y":669.787},{"x":76,"y":677.0422},{"x":77,"y":688.7856},{"x":78,"y":699.8495},{"x":79,"y":711.9961},{"x":80,"y":724.3741},{"x":81,"y":730.2757},{"x":82,"y":732.6087},{"x":83,"y":731.2782},{"x":84,"y":729.9956},{"x":85,"y":731.9646},{"x":86,"y":727.7137},{"x":87,"y":724.1005},{"x":88,"y":719.787},{"x":89,"y":714.7359},{"x":90,"y":712.8529},{"x":91,"y":710.3359},{"x":92,"y":710.2402},{"x":93,"y":704.9708},{"x":94,"y":697.6154},{"x":95,"y":695.004},{"x":96,"y":692.6589},{"x":97,"y":677.4381},{"x":98,"y":657.6423},{"x":99,"y":649.7101},{"x":100,"y":638.1812}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of NMDA (Glu) in Area PFm","filename":"NMDA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of NMDA receptor in area PFm.** This profile plot shows examplary the course of the NMDA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of NMDA (Glu) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of NMDA (Glu) in Area PFm"],"datasets":[{"data":[{"x":0,"y":1288.2501},{"x":1,"y":1504.5469},{"x":2,"y":1694.8605},{"x":3,"y":1813.1118},{"x":4,"y":1877.948},{"x":5,"y":1925.6656},{"x":6,"y":1970.4734},{"x":7,"y":2001.3469},{"x":8,"y":2007.5222},{"x":9,"y":2014.9981},{"x":10,"y":2031.2646},{"x":11,"y":2029.487},{"x":12,"y":2015.0831},{"x":13,"y":2019.2004},{"x":14,"y":2020.4191},{"x":15,"y":2018.1737},{"x":16,"y":2024.3706},{"x":17,"y":2044.227},{"x":18,"y":2057.9879},{"x":19,"y":2080.7451},{"x":20,"y":2095.9656},{"x":21,"y":2088.5213},{"x":22,"y":2090.0653},{"x":23,"y":2080.5177},{"x":24,"y":2078.8738},{"x":25,"y":2069.1423},{"x":26,"y":2065.3765},{"x":27,"y":2058.6747},{"x":28,"y":2065.318},{"x":29,"y":2063.454},{"x":30,"y":2044.4191},{"x":31,"y":2022.1456},{"x":32,"y":1995.4147},{"x":33,"y":1983.3173},{"x":34,"y":1958.8393},{"x":35,"y":1939.4605},{"x":36,"y":1931.5578},{"x":37,"y":1904.5965},{"x":38,"y":1883.9031},{"x":39,"y":1881.1964},{"x":40,"y":1869.6666},{"x":41,"y":1855.4454},{"x":42,"y":1835.7264},{"x":43,"y":1829.53},{"x":44,"y":1824.8485},{"x":45,"y":1810.9402},{"x":46,"y":1809.3095},{"x":47,"y":1802.7262},{"x":48,"y":1791.8517},{"x":49,"y":1777.7284},{"x":50,"y":1777.5341},{"x":51,"y":1769.0472},{"x":52,"y":1754.3951},{"x":53,"y":1746.1479},{"x":54,"y":1755.4639},{"x":55,"y":1752.5258},{"x":56,"y":1759.8824},{"x":57,"y":1772.2099},{"x":58,"y":1779.5454},{"x":59,"y":1767.3573},{"x":60,"y":1748.4569},{"x":61,"y":1723.6787},{"x":62,"y":1717.5493},{"x":63,"y":1721.0235},{"x":64,"y":1738.6451},{"x":65,"y":1752.4983},{"x":66,"y":1748.5426},{"x":67,"y":1746.6357},{"x":68,"y":1739.6317},{"x":69,"y":1734.0655},{"x":70,"y":1720.5383},{"x":71,"y":1687.4702},{"x":72,"y":1665.4099},{"x":73,"y":1664.7602},{"x":74,"y":1659.5054},{"x":75,"y":1665.0687},{"x":76,"y":1648.4646},{"x":77,"y":1633.7099},{"x":78,"y":1617.8531},{"x":79,"y":1604.3407},{"x":80,"y":1587.7624},{"x":81,"y":1570.9626},{"x":82,"y":1564.554},{"x":83,"y":1552.3037},{"x":84,"y":1545.679},{"x":85,"y":1523.7966},{"x":86,"y":1508.3343},{"x":87,"y":1509.1098},{"x":88,"y":1492.1835},{"x":89,"y":1479.3753},{"x":90,"y":1468.1662},{"x":91,"y":1431.1263},{"x":92,"y":1389.3058},{"x":93,"y":1356.8627},{"x":94,"y":1306.1475},{"x":95,"y":1249.476},{"x":96,"y":1210.5869},{"x":97,"y":1160.2178},{"x":98,"y":1126.0999},{"x":99,"y":1093.0965},{"x":100,"y":1058.0735}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of GABAᴀ(GABA) in Area PFm","filename":"GABAᴀ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAA receptor in area PFm.** This profile plot shows examplary the course of the GABAA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴀ(GABA) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴀ(GABA) in Area PFm"],"datasets":[{"data":[{"x":0,"y":649.0201},{"x":1,"y":848.1228},{"x":2,"y":1092.9962},{"x":3,"y":1448.094},{"x":4,"y":1829.4694},{"x":5,"y":2123.6008},{"x":6,"y":2348.2754},{"x":7,"y":2575.8223},{"x":8,"y":2761.369},{"x":9,"y":2960.1959},{"x":10,"y":3134.0293},{"x":11,"y":3289.2282},{"x":12,"y":3416.2688},{"x":13,"y":3516.8015},{"x":14,"y":3562.637},{"x":15,"y":3607.1894},{"x":16,"y":3634.3024},{"x":17,"y":3622.3828},{"x":18,"y":3620.2742},{"x":19,"y":3618.047},{"x":20,"y":3606.6227},{"x":21,"y":3604.7555},{"x":22,"y":3622.4253},{"x":23,"y":3658.9572},{"x":24,"y":3660.2006},{"x":25,"y":3680.0659},{"x":26,"y":3672.4711},{"x":27,"y":3664.3405},{"x":28,"y":3631.6388},{"x":29,"y":3594.7968},{"x":30,"y":3578.8434},{"x":31,"y":3556.649},{"x":32,"y":3507.3248},{"x":33,"y":3460.6467},{"x":34,"y":3441.4708},{"x":35,"y":3394.8057},{"x":36,"y":3361.2346},{"x":37,"y":3314.2736},{"x":38,"y":3263.0982},{"x":39,"y":3202.5102},{"x":40,"y":3122.135},{"x":41,"y":3056.6785},{"x":42,"y":3010.7237},{"x":43,"y":2955.3966},{"x":44,"y":2895.5737},{"x":45,"y":2857.2028},{"x":46,"y":2809.1634},{"x":47,"y":2764.9742},{"x":48,"y":2729.1517},{"x":49,"y":2691.3963},{"x":50,"y":2649.1878},{"x":51,"y":2570.7872},{"x":52,"y":2484.565},{"x":53,"y":2413.8159},{"x":54,"y":2348.5637},{"x":55,"y":2295.6309},{"x":56,"y":2267.3692},{"x":57,"y":2245.0127},{"x":58,"y":2216.1136},{"x":59,"y":2193.2635},{"x":60,"y":2157.833},{"x":61,"y":2116.8885},{"x":62,"y":2077.7201},{"x":63,"y":2041.1328},{"x":64,"y":2022.171},{"x":65,"y":2014.4903},{"x":66,"y":2001.3167},{"x":67,"y":2005.2367},{"x":68,"y":2004.4597},{"x":69,"y":2000.8071},{"x":70,"y":1973.1546},{"x":71,"y":1949.735},{"x":72,"y":1923.9283},{"x":73,"y":1901.3981},{"x":74,"y":1885.0433},{"x":75,"y":1870.4049},{"x":76,"y":1852.5713},{"x":77,"y":1833.3419},{"x":78,"y":1814.9503},{"x":79,"y":1816.0021},{"x":80,"y":1822.1582},{"x":81,"y":1821.6385},{"x":82,"y":1820.1773},{"x":83,"y":1804.2024},{"x":84,"y":1784.211},{"x":85,"y":1746.2127},{"x":86,"y":1710.9548},{"x":87,"y":1675.3408},{"x":88,"y":1633.8367},{"x":89,"y":1595.0674},{"x":90,"y":1577.9456},{"x":91,"y":1540.6935},{"x":92,"y":1500.2981},{"x":93,"y":1457.8082},{"x":94,"y":1415.4122},{"x":95,"y":1381.3558},{"x":96,"y":1334.2406},{"x":97,"y":1283.1642},{"x":98,"y":1241.6997},{"x":99,"y":1218.825},{"x":100,"y":1179.247}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of α₂(NA) in Area PFm","filename":"α₂(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha2 receptor in area PFm.** This profile plot shows examplary the course of the alpha2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₂(NA) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₂(NA) in Area PFm"],"datasets":[{"data":[{"x":0,"y":226.5518},{"x":1,"y":273.3296},{"x":2,"y":329.0038},{"x":3,"y":378.1086},{"x":4,"y":427.5563},{"x":5,"y":468.2745},{"x":6,"y":508.0673},{"x":7,"y":550.6138},{"x":8,"y":581.551},{"x":9,"y":610.2917},{"x":10,"y":642.9606},{"x":11,"y":671.5722},{"x":12,"y":704.5501},{"x":13,"y":724.0761},{"x":14,"y":744.5424},{"x":15,"y":761.424},{"x":16,"y":777.4291},{"x":17,"y":793.6276},{"x":18,"y":807.9863},{"x":19,"y":822.3666},{"x":20,"y":830.9475},{"x":21,"y":842.0264},{"x":22,"y":857.4971},{"x":23,"y":872.3554},{"x":24,"y":879.4366},{"x":25,"y":883.2561},{"x":26,"y":885.9435},{"x":27,"y":889.437},{"x":28,"y":884.922},{"x":29,"y":880.866},{"x":30,"y":877.4526},{"x":31,"y":867.4475},{"x":32,"y":854.3773},{"x":33,"y":841.2544},{"x":34,"y":828.1317},{"x":35,"y":818.6532},{"x":36,"y":813.125},{"x":37,"y":809.7644},{"x":38,"y":808.8884},{"x":39,"y":811.7371},{"x":40,"y":813.9011},{"x":41,"y":818.9772},{"x":42,"y":819.5966},{"x":43,"y":816.3986},{"x":44,"y":814.5429},{"x":45,"y":812.3569},{"x":46,"y":811.4889},{"x":47,"y":810.7485},{"x":48,"y":813.7063},{"x":49,"y":815.2679},{"x":50,"y":818.2395},{"x":51,"y":823.7207},{"x":52,"y":833.0654},{"x":53,"y":837.8499},{"x":54,"y":839.3394},{"x":55,"y":845.6004},{"x":56,"y":844.3926},{"x":57,"y":835.1113},{"x":58,"y":830.783},{"x":59,"y":829.4114},{"x":60,"y":824.4174},{"x":61,"y":821.2263},{"x":62,"y":818.2473},{"x":63,"y":814.6539},{"x":64,"y":813.7712},{"x":65,"y":817.1059},{"x":66,"y":818.4569},{"x":67,"y":819.4559},{"x":68,"y":826.8877},{"x":69,"y":830.6852},{"x":70,"y":836.927},{"x":71,"y":836.2376},{"x":72,"y":832.8156},{"x":73,"y":828.1681},{"x":74,"y":818.5491},{"x":75,"y":810.3988},{"x":76,"y":801.9501},{"x":77,"y":798.493},{"x":78,"y":798.3051},{"x":79,"y":794.3033},{"x":80,"y":788.8317},{"x":81,"y":784.921},{"x":82,"y":778.1703},{"x":83,"y":769.7684},{"x":84,"y":758.4028},{"x":85,"y":745.0126},{"x":86,"y":740.0665},{"x":87,"y":733.2654},{"x":88,"y":724.5991},{"x":89,"y":716.9815},{"x":90,"y":708.8412},{"x":91,"y":694.1066},{"x":92,"y":676.898},{"x":93,"y":659.5769},{"x":94,"y":644.7383},{"x":95,"y":630.7544},{"x":96,"y":622.2096},{"x":97,"y":610.0965},{"x":98,"y":599.3964},{"x":99,"y":584.7361},{"x":100,"y":571.6659}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of α₄β₂(ACh) in Area PFm","filename":"α₄β₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha4-beta2 receptor in area PFm.** This profile plot shows examplary the course of the alpha4-beta2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₄β₂(ACh) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₄β₂(ACh) in Area PFm"],"datasets":[{"data":[{"x":0,"y":10.9525},{"x":1,"y":13.7983},{"x":2,"y":16.8933},{"x":3,"y":20.661},{"x":4,"y":24.5308},{"x":5,"y":26.7085},{"x":6,"y":29.3965},{"x":7,"y":31.4594},{"x":8,"y":30.5761},{"x":9,"y":32.1735},{"x":10,"y":34.3368},{"x":11,"y":37.636},{"x":12,"y":41.7252},{"x":13,"y":43.5344},{"x":14,"y":43.3511},{"x":15,"y":42.008},{"x":16,"y":41.6332},{"x":17,"y":42.6702},{"x":18,"y":43.58},{"x":19,"y":44.4205},{"x":20,"y":43.5457},{"x":21,"y":43.2397},{"x":22,"y":44.4628},{"x":23,"y":48.649},{"x":24,"y":49.1803},{"x":25,"y":49.8894},{"x":26,"y":50.4078},{"x":27,"y":52.5366},{"x":28,"y":51.4152},{"x":29,"y":51.0567},{"x":30,"y":51.6615},{"x":31,"y":54.0162},{"x":32,"y":55.219},{"x":33,"y":54.742},{"x":34,"y":53.8983},{"x":35,"y":53.5327},{"x":36,"y":52.2835},{"x":37,"y":50.5276},{"x":38,"y":48.4643},{"x":39,"y":49.3542},{"x":40,"y":50.3873},{"x":41,"y":52.9868},{"x":42,"y":54.7023},{"x":43,"y":57.1474},{"x":44,"y":57.8795},{"x":45,"y":57.5492},{"x":46,"y":56.0614},{"x":47,"y":53.4834},{"x":48,"y":50.3447},{"x":49,"y":48.055},{"x":50,"y":45.5072},{"x":51,"y":43.2927},{"x":52,"y":44.4765},{"x":53,"y":44.5942},{"x":54,"y":43.612},{"x":55,"y":43.7712},{"x":56,"y":46.0803},{"x":57,"y":48.1456},{"x":58,"y":50.7599},{"x":59,"y":51.0952},{"x":60,"y":53.4478},{"x":61,"y":53.4372},{"x":62,"y":52.0142},{"x":63,"y":51.7924},{"x":64,"y":50.938},{"x":65,"y":49.7906},{"x":66,"y":49.0863},{"x":67,"y":52.7661},{"x":68,"y":55.3132},{"x":69,"y":58.8055},{"x":70,"y":60.4207},{"x":71,"y":64.3806},{"x":72,"y":68.2688},{"x":73,"y":69.9634},{"x":74,"y":67.564},{"x":75,"y":65.6081},{"x":76,"y":65.1647},{"x":77,"y":64.6402},{"x":78,"y":66.4672},{"x":79,"y":66.7833},{"x":80,"y":67.3829},{"x":81,"y":70.0968},{"x":82,"y":70.4616},{"x":83,"y":68.3018},{"x":84,"y":63.7082},{"x":85,"y":59.7576},{"x":86,"y":58.9443},{"x":87,"y":59.2391},{"x":88,"y":61.1348},{"x":89,"y":61.9096},{"x":90,"y":62.7221},{"x":91,"y":64.2393},{"x":92,"y":62.6537},{"x":93,"y":63.5997},{"x":94,"y":65.4311},{"x":95,"y":65.0761},{"x":96,"y":65.8512},{"x":97,"y":67.3648},{"x":98,"y":64.1934},{"x":99,"y":59.792},{"x":100,"y":55.6246}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of M₁(ACh) in Area PFm","filename":"M₁(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M1 receptor in area PFm.** This profile plot shows examplary the course of the M1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₁(ACh) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₁(ACh) in Area PFm"],"datasets":[{"data":[{"x":0,"y":222.9819},{"x":1,"y":257.3062},{"x":2,"y":301.232},{"x":3,"y":360.3595},{"x":4,"y":411.1464},{"x":5,"y":453.1503},{"x":6,"y":488.2737},{"x":7,"y":532.1241},{"x":8,"y":568.0223},{"x":9,"y":594.1367},{"x":10,"y":611.3606},{"x":11,"y":624.9792},{"x":12,"y":637.2301},{"x":13,"y":645.8093},{"x":14,"y":648.7144},{"x":15,"y":648.8767},{"x":16,"y":653.9823},{"x":17,"y":656.643},{"x":18,"y":656.122},{"x":19,"y":655.8582},{"x":20,"y":652.3616},{"x":21,"y":649.8126},{"x":22,"y":647.6234},{"x":23,"y":643.4561},{"x":24,"y":641.884},{"x":25,"y":639.0562},{"x":26,"y":632.4965},{"x":27,"y":627.2677},{"x":28,"y":622.4582},{"x":29,"y":616.5911},{"x":30,"y":610.0373},{"x":31,"y":603.4589},{"x":32,"y":596.8318},{"x":33,"y":586.7784},{"x":34,"y":577.6716},{"x":35,"y":572.4562},{"x":36,"y":566.1598},{"x":37,"y":559.5024},{"x":38,"y":555.1174},{"x":39,"y":551.4646},{"x":40,"y":552.3742},{"x":41,"y":556.6502},{"x":42,"y":558.5327},{"x":43,"y":558.3553},{"x":44,"y":557.7356},{"x":45,"y":557.6063},{"x":46,"y":558.7175},{"x":47,"y":558.6156},{"x":48,"y":558.3882},{"x":49,"y":558.33},{"x":50,"y":557.7576},{"x":51,"y":555.4275},{"x":52,"y":551.8005},{"x":53,"y":549.2268},{"x":54,"y":546.2649},{"x":55,"y":542.9368},{"x":56,"y":537.5792},{"x":57,"y":535.3208},{"x":58,"y":534.2044},{"x":59,"y":533.5621},{"x":60,"y":530.047},{"x":61,"y":526.7027},{"x":62,"y":523.2002},{"x":63,"y":519.5795},{"x":64,"y":517.4336},{"x":65,"y":518.1881},{"x":66,"y":518.6044},{"x":67,"y":520.334},{"x":68,"y":521.0821},{"x":69,"y":518.9551},{"x":70,"y":517.9046},{"x":71,"y":518.3208},{"x":72,"y":518.8176},{"x":73,"y":517.2892},{"x":74,"y":514.8359},{"x":75,"y":512.8684},{"x":76,"y":510.172},{"x":77,"y":503.7294},{"x":78,"y":496.0832},{"x":79,"y":490.9644},{"x":80,"y":485.5388},{"x":81,"y":480.219},{"x":82,"y":478.0453},{"x":83,"y":475.1307},{"x":84,"y":473.0779},{"x":85,"y":470.5059},{"x":86,"y":466.8079},{"x":87,"y":460.8546},{"x":88,"y":453.6991},{"x":89,"y":444.3507},{"x":90,"y":431.9699},{"x":91,"y":417.178},{"x":92,"y":403.9866},{"x":93,"y":388.1319},{"x":94,"y":369.655},{"x":95,"y":355.0118},{"x":96,"y":343.8632},{"x":97,"y":329.5792},{"x":98,"y":313.0801},{"x":99,"y":303.8542},{"x":100,"y":293.5083}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of 5-HT₁ᴀ(5-HT) in Area PFm","filename":"5-HT₁ᴀ(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT1A receptor in area PFm.** This profile plot shows examplary the course of the 5-HT1A receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HT₁ᴀ(5-HT) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HT₁ᴀ(5-HT) in Area PFm"],"datasets":[{"data":[{"x":0,"y":178.9409},{"x":1,"y":221.3682},{"x":2,"y":266.3416},{"x":3,"y":311.7817},{"x":4,"y":361.6268},{"x":5,"y":426.2078},{"x":6,"y":489.66},{"x":7,"y":548.3518},{"x":8,"y":601.5318},{"x":9,"y":645.1545},{"x":10,"y":684.4057},{"x":11,"y":714.9074},{"x":12,"y":730.3084},{"x":13,"y":743.4942},{"x":14,"y":754.8556},{"x":15,"y":760.8008},{"x":16,"y":762.8721},{"x":17,"y":767.2397},{"x":18,"y":763.0848},{"x":19,"y":753.0896},{"x":20,"y":737.7586},{"x":21,"y":718.7249},{"x":22,"y":701.1423},{"x":23,"y":676.8934},{"x":24,"y":644.1758},{"x":25,"y":609.7027},{"x":26,"y":569.6236},{"x":27,"y":525.946},{"x":28,"y":475.5022},{"x":29,"y":427.3785},{"x":30,"y":389.4978},{"x":31,"y":349.5367},{"x":32,"y":311.4599},{"x":33,"y":281.6493},{"x":34,"y":258.2406},{"x":35,"y":237.618},{"x":36,"y":222.0312},{"x":37,"y":208.6032},{"x":38,"y":195.7721},{"x":39,"y":187.0238},{"x":40,"y":175.7821},{"x":41,"y":164.8443},{"x":42,"y":153.9147},{"x":43,"y":145.9143},{"x":44,"y":141.9929},{"x":45,"y":137.4399},{"x":46,"y":134.4055},{"x":47,"y":133.3636},{"x":48,"y":131.8849},{"x":49,"y":130.0535},{"x":50,"y":130.0931},{"x":51,"y":131.0189},{"x":52,"y":133.618},{"x":53,"y":138.2265},{"x":54,"y":144.636},{"x":55,"y":149.7509},{"x":56,"y":156.749},{"x":57,"y":163.8689},{"x":58,"y":172.4409},{"x":59,"y":179.2705},{"x":60,"y":185.6774},{"x":61,"y":191.3106},{"x":62,"y":195.5594},{"x":63,"y":198.6216},{"x":64,"y":201.4065},{"x":65,"y":203.6512},{"x":66,"y":204.6507},{"x":67,"y":203.7297},{"x":68,"y":205.5465},{"x":69,"y":207.4703},{"x":70,"y":211.5302},{"x":71,"y":214.4259},{"x":72,"y":219.735},{"x":73,"y":223.0547},{"x":74,"y":229.8002},{"x":75,"y":232.2087},{"x":76,"y":233.7572},{"x":77,"y":232.442},{"x":78,"y":233.0222},{"x":79,"y":232.802},{"x":80,"y":232.3752},{"x":81,"y":230.6116},{"x":82,"y":231.2732},{"x":83,"y":233.0882},{"x":84,"y":231.3036},{"x":85,"y":228.7976},{"x":86,"y":226.3781},{"x":87,"y":221.5949},{"x":88,"y":220.6944},{"x":89,"y":220.0755},{"x":90,"y":220.5519},{"x":91,"y":220.722},{"x":92,"y":218.1681},{"x":93,"y":216.2651},{"x":94,"y":213.9825},{"x":95,"y":209.7935},{"x":96,"y":204.6744},{"x":97,"y":201.8038},{"x":98,"y":197.803},{"x":99,"y":188.8238},{"x":100,"y":179.1047}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of kainate (Glu) in Area PFm","filename":"kainate (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of kainate receptor in area PFm.** This profile plot shows examplary the course of the kainate receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of kainate (Glu) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of kainate (Glu) in Area PFm"],"datasets":[{"data":[{"x":0,"y":612.0971},{"x":1,"y":700.5788},{"x":2,"y":767.4826},{"x":3,"y":838.8742},{"x":4,"y":897.4627},{"x":5,"y":933.5483},{"x":6,"y":950.4446},{"x":7,"y":965.2636},{"x":8,"y":973.041},{"x":9,"y":976.2026},{"x":10,"y":971.9536},{"x":11,"y":962.0346},{"x":12,"y":954.711},{"x":13,"y":953.6688},{"x":14,"y":954.406},{"x":15,"y":946.2501},{"x":16,"y":941.4819},{"x":17,"y":937.8259},{"x":18,"y":931.7584},{"x":19,"y":930.3836},{"x":20,"y":923.0986},{"x":21,"y":923.6782},{"x":22,"y":938.3746},{"x":23,"y":947.7402},{"x":24,"y":948.2214},{"x":25,"y":953.8739},{"x":26,"y":962.4483},{"x":27,"y":970.1679},{"x":28,"y":978.8258},{"x":29,"y":992.4646},{"x":30,"y":1008.7311},{"x":31,"y":1017.1603},{"x":32,"y":1025.7543},{"x":33,"y":1031.6309},{"x":34,"y":1040.599},{"x":35,"y":1043.4077},{"x":36,"y":1041.2253},{"x":37,"y":1045.4147},{"x":38,"y":1053.6018},{"x":39,"y":1067.3037},{"x":40,"y":1080.9704},{"x":41,"y":1087.8732},{"x":42,"y":1099.4879},{"x":43,"y":1110.9138},{"x":44,"y":1115.5679},{"x":45,"y":1127.7745},{"x":46,"y":1137.1646},{"x":47,"y":1143.5387},{"x":48,"y":1151.5789},{"x":49,"y":1165.3944},{"x":50,"y":1177.7728},{"x":51,"y":1191.3442},{"x":52,"y":1208.9196},{"x":53,"y":1218.5714},{"x":54,"y":1225.3123},{"x":55,"y":1237.567},{"x":56,"y":1245.5211},{"x":57,"y":1250.3525},{"x":58,"y":1252.8015},{"x":59,"y":1256.9281},{"x":60,"y":1255.2233},{"x":61,"y":1256.4467},{"x":62,"y":1249.7518},{"x":63,"y":1240.9727},{"x":64,"y":1236.655},{"x":65,"y":1235.834},{"x":66,"y":1237.4067},{"x":67,"y":1238.0246},{"x":68,"y":1241.5674},{"x":69,"y":1243.809},{"x":70,"y":1241.4102},{"x":71,"y":1244.174},{"x":72,"y":1249.6207},{"x":73,"y":1252.3317},{"x":74,"y":1255.0968},{"x":75,"y":1253.6994},{"x":76,"y":1264.6417},{"x":77,"y":1281.7748},{"x":78,"y":1294.5093},{"x":79,"y":1300.1796},{"x":80,"y":1303.4348},{"x":81,"y":1302.8782},{"x":82,"y":1301.1223},{"x":83,"y":1298.1747},{"x":84,"y":1298.6703},{"x":85,"y":1285.2761},{"x":86,"y":1272.5903},{"x":87,"y":1267.3914},{"x":88,"y":1261.2636},{"x":89,"y":1253.4034},{"x":90,"y":1241.0226},{"x":91,"y":1236.1091},{"x":92,"y":1230.6918},{"x":93,"y":1219.3062},{"x":94,"y":1207.4386},{"x":95,"y":1194.7681},{"x":96,"y":1178.3724},{"x":97,"y":1147.7234},{"x":98,"y":1121.5922},{"x":99,"y":1107.9492},{"x":100,"y":1092.0591}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of M₂(ACh) in Area PFm","filename":"M₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M2 receptor in area PFm.** This profile plot shows examplary the course of the M2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₂(ACh) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₂(ACh) in Area PFm"],"datasets":[{"data":[{"x":0,"y":84.6477},{"x":1,"y":93.2695},{"x":2,"y":103.4352},{"x":3,"y":115.6859},{"x":4,"y":127.7598},{"x":5,"y":135.6121},{"x":6,"y":142.6476},{"x":7,"y":145.9338},{"x":8,"y":150.498},{"x":9,"y":155.1707},{"x":10,"y":156.9823},{"x":11,"y":157.7596},{"x":12,"y":157.8233},{"x":13,"y":157.6372},{"x":14,"y":158.8639},{"x":15,"y":158.7868},{"x":16,"y":158.7608},{"x":17,"y":157.914},{"x":18,"y":161.1105},{"x":19,"y":164.6396},{"x":20,"y":165.9435},{"x":21,"y":170.475},{"x":22,"y":176.8111},{"x":23,"y":179.0959},{"x":24,"y":178.736},{"x":25,"y":180.9806},{"x":26,"y":180.3764},{"x":27,"y":180.2802},{"x":28,"y":184.7803},{"x":29,"y":188.6613},{"x":30,"y":193.4912},{"x":31,"y":197.0957},{"x":32,"y":200.0429},{"x":33,"y":203.0107},{"x":34,"y":205.0235},{"x":35,"y":204.7353},{"x":36,"y":202.6343},{"x":37,"y":202.3725},{"x":38,"y":203.0957},{"x":39,"y":207.7596},{"x":40,"y":211.0369},{"x":41,"y":212.1601},{"x":42,"y":213.7542},{"x":43,"y":215.7543},{"x":44,"y":218.4313},{"x":45,"y":222.4281},{"x":46,"y":228.4705},{"x":47,"y":233.6961},{"x":48,"y":238.9946},{"x":49,"y":242.1399},{"x":50,"y":245.9088},{"x":51,"y":253.4642},{"x":52,"y":260.3492},{"x":53,"y":266.1818},{"x":54,"y":270.3434},{"x":55,"y":274.1293},{"x":56,"y":275.3021},{"x":57,"y":275.5601},{"x":58,"y":276.0092},{"x":59,"y":276.8751},{"x":60,"y":275.4816},{"x":61,"y":272.9742},{"x":62,"y":271.4523},{"x":63,"y":270.1365},{"x":64,"y":268.27},{"x":65,"y":266.6988},{"x":66,"y":262.7834},{"x":67,"y":259.8237},{"x":68,"y":254.7546},{"x":69,"y":249.7533},{"x":70,"y":245.4534},{"x":71,"y":241.7682},{"x":72,"y":239.8094},{"x":73,"y":238.0626},{"x":74,"y":235.8818},{"x":75,"y":230.7443},{"x":76,"y":228.0226},{"x":77,"y":226.4827},{"x":78,"y":222.9297},{"x":79,"y":220.2826},{"x":80,"y":215.0989},{"x":81,"y":210.7847},{"x":82,"y":205.7083},{"x":83,"y":196.8683},{"x":84,"y":191.1009},{"x":85,"y":187.6439},{"x":86,"y":185.2418},{"x":87,"y":182.5054},{"x":88,"y":178.8836},{"x":89,"y":175.7992},{"x":90,"y":171.9279},{"x":91,"y":166.7175},{"x":92,"y":157.6449},{"x":93,"y":147.1877},{"x":94,"y":139.3689},{"x":95,"y":134.1763},{"x":96,"y":129.1793},{"x":97,"y":126.9102},{"x":98,"y":126.3367},{"x":99,"y":122.3542},{"x":100,"y":116.9453}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of AMPA (Glu) in Area PFm","filename":"AMPA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of AMPA receptor in area PFm.** This profile plot shows examplary the course of the AMPA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of AMPA (Glu) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of AMPA (Glu) in Area PFm"],"datasets":[{"data":[{"x":0,"y":405.5729},{"x":1,"y":451.8444},{"x":2,"y":497.2293},{"x":3,"y":525.8658},{"x":4,"y":545.0973},{"x":5,"y":557.324},{"x":6,"y":575.845},{"x":7,"y":598.0745},{"x":8,"y":616.0735},{"x":9,"y":630.0659},{"x":10,"y":641.9863},{"x":11,"y":652.885},{"x":12,"y":659.1001},{"x":13,"y":669.1597},{"x":14,"y":675.6552},{"x":15,"y":668.1356},{"x":16,"y":652.8647},{"x":17,"y":635.8774},{"x":18,"y":626.3587},{"x":19,"y":618.4538},{"x":20,"y":605.7924},{"x":21,"y":591.05},{"x":22,"y":576.7722},{"x":23,"y":568.0839},{"x":24,"y":561.7794},{"x":25,"y":553.1086},{"x":26,"y":548.8052},{"x":27,"y":532.8971},{"x":28,"y":519.8256},{"x":29,"y":516.2577},{"x":30,"y":503.6507},{"x":31,"y":496.4829},{"x":32,"y":488.3557},{"x":33,"y":466.8666},{"x":34,"y":456.7964},{"x":35,"y":460.8351},{"x":36,"y":466.4865},{"x":37,"y":464.9287},{"x":38,"y":454.4103},{"x":39,"y":449.8788},{"x":40,"y":431.8908},{"x":41,"y":417.7714},{"x":42,"y":409.133},{"x":43,"y":416.0307},{"x":44,"y":427.5151},{"x":45,"y":431.7865},{"x":46,"y":438.3853},{"x":47,"y":433.6461},{"x":48,"y":428.7599},{"x":49,"y":420.7188},{"x":50,"y":424.8132},{"x":51,"y":426.0907},{"x":52,"y":436.9364},{"x":53,"y":445.7628},{"x":54,"y":447.0122},{"x":55,"y":434.5986},{"x":56,"y":419.1719},{"x":57,"y":410.0317},{"x":58,"y":393.2125},{"x":59,"y":379.621},{"x":60,"y":374.2348},{"x":61,"y":374.2654},{"x":62,"y":379.0425},{"x":63,"y":388.3258},{"x":64,"y":392.2651},{"x":65,"y":399.2769},{"x":66,"y":399.7033},{"x":67,"y":396.3172},{"x":68,"y":394.2565},{"x":69,"y":398.9991},{"x":70,"y":396.441},{"x":71,"y":391.3304},{"x":72,"y":383.9955},{"x":73,"y":390.3641},{"x":74,"y":402.8404},{"x":75,"y":401.4029},{"x":76,"y":395.845},{"x":77,"y":392.7307},{"x":78,"y":384.5419},{"x":79,"y":382.5594},{"x":80,"y":385.6433},{"x":81,"y":392.5939},{"x":82,"y":403.0249},{"x":83,"y":405.9239},{"x":84,"y":399.9345},{"x":85,"y":391.6423},{"x":86,"y":393.2337},{"x":87,"y":396.4047},{"x":88,"y":399.3001},{"x":89,"y":399.894},{"x":90,"y":405.9114},{"x":91,"y":413.8407},{"x":92,"y":412.8103},{"x":93,"y":416.9961},{"x":94,"y":416.351},{"x":95,"y":410.828},{"x":96,"y":401.764},{"x":97,"y":397.6487},{"x":98,"y":386.7589},{"x":99,"y":366.2726},{"x":100,"y":344.3997}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of D₁(DA) in Area PFm","filename":"D₁(DA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of D1 receptor in area PFm.** This profile plot shows examplary the course of the D1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of D₁(DA) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of D₁(DA) in Area PFm"],"datasets":[{"data":[{"x":0,"y":71.7961},{"x":1,"y":96.0361},{"x":2,"y":121.9873},{"x":3,"y":148.5828},{"x":4,"y":169.607},{"x":5,"y":183.1485},{"x":6,"y":193.7369},{"x":7,"y":202.2761},{"x":8,"y":207.5636},{"x":9,"y":209.1416},{"x":10,"y":209.6546},{"x":11,"y":209.2487},{"x":12,"y":210.3938},{"x":13,"y":209.1629},{"x":14,"y":207.6902},{"x":15,"y":206.7537},{"x":16,"y":204.9011},{"x":17,"y":202.9269},{"x":18,"y":203.6056},{"x":19,"y":204.3025},{"x":20,"y":206.8464},{"x":21,"y":207.2218},{"x":22,"y":205.8387},{"x":23,"y":203.5968},{"x":24,"y":199.5774},{"x":25,"y":193.7339},{"x":26,"y":188.6019},{"x":27,"y":183.4718},{"x":28,"y":180.0857},{"x":29,"y":178.3286},{"x":30,"y":176.8736},{"x":31,"y":171.8384},{"x":32,"y":168.8552},{"x":33,"y":166.5311},{"x":34,"y":164.7591},{"x":35,"y":164.5351},{"x":36,"y":164.0599},{"x":37,"y":162.187},{"x":38,"y":161.5447},{"x":39,"y":160.8484},{"x":40,"y":159.9339},{"x":41,"y":157.7707},{"x":42,"y":159.0717},{"x":43,"y":159.6655},{"x":44,"y":159.7806},{"x":45,"y":163.0386},{"x":46,"y":166.6397},{"x":47,"y":169.43},{"x":48,"y":170.9491},{"x":49,"y":173.6838},{"x":50,"y":174.9978},{"x":51,"y":174.3716},{"x":52,"y":177.6136},{"x":53,"y":178.6717},{"x":54,"y":178.3596},{"x":55,"y":178.7765},{"x":56,"y":179.5655},{"x":57,"y":181.5343},{"x":58,"y":180.1617},{"x":59,"y":181.883},{"x":60,"y":182.7184},{"x":61,"y":181.9094},{"x":62,"y":182.0055},{"x":63,"y":181.4463},{"x":64,"y":180.1232},{"x":65,"y":181.4385},{"x":66,"y":180.6042},{"x":67,"y":181.7121},{"x":68,"y":182.9283},{"x":69,"y":182.7583},{"x":70,"y":179.6249},{"x":71,"y":177.1991},{"x":72,"y":176.6458},{"x":73,"y":176.831},{"x":74,"y":176.1423},{"x":75,"y":175.3482},{"x":76,"y":173.3404},{"x":77,"y":170.9682},{"x":78,"y":169.3456},{"x":79,"y":169.2848},{"x":80,"y":169.2037},{"x":81,"y":169.232},{"x":82,"y":165.9925},{"x":83,"y":162.5302},{"x":84,"y":162.7598},{"x":85,"y":161.8939},{"x":86,"y":160.9315},{"x":87,"y":157.2686},{"x":88,"y":152.5733},{"x":89,"y":150.7818},{"x":90,"y":149.7141},{"x":91,"y":149.2394},{"x":92,"y":148.6755},{"x":93,"y":147.1266},{"x":94,"y":147.1818},{"x":95,"y":145.8475},{"x":96,"y":143.4535},{"x":97,"y":137.7632},{"x":98,"y":133.8054},{"x":99,"y":124.6529},{"x":100,"y":117.0293}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of M₃(ACh) in Area PFm","filename":"M₃(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M3 receptor in area PFm.** This profile plot shows examplary the course of the M3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₃(ACh) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₃(ACh) in Area PFm"],"datasets":[{"data":[{"x":0,"y":1187.3566},{"x":1,"y":1323.5235},{"x":2,"y":1428.9562},{"x":3,"y":1486.5143},{"x":4,"y":1550.7895},{"x":5,"y":1603.5561},{"x":6,"y":1646.1602},{"x":7,"y":1676.798},{"x":8,"y":1695.4511},{"x":9,"y":1712.1351},{"x":10,"y":1732.3376},{"x":11,"y":1746.039},{"x":12,"y":1757.3188},{"x":13,"y":1764.7332},{"x":14,"y":1767.9907},{"x":15,"y":1771.4037},{"x":16,"y":1775.9087},{"x":17,"y":1778.1755},{"x":18,"y":1778.8636},{"x":19,"y":1789.6876},{"x":20,"y":1804.7697},{"x":21,"y":1808.8769},{"x":22,"y":1808.3629},{"x":23,"y":1805.0579},{"x":24,"y":1803.5057},{"x":25,"y":1798.2686},{"x":26,"y":1790.0578},{"x":27,"y":1783.3516},{"x":28,"y":1776.504},{"x":29,"y":1763.8394},{"x":30,"y":1748.0961},{"x":31,"y":1730.7008},{"x":32,"y":1715.2495},{"x":33,"y":1699.4509},{"x":34,"y":1691.9305},{"x":35,"y":1687.5653},{"x":36,"y":1685.895},{"x":37,"y":1683.7524},{"x":38,"y":1678.8643},{"x":39,"y":1667.4082},{"x":40,"y":1655.397},{"x":41,"y":1645.8773},{"x":42,"y":1634.125},{"x":43,"y":1627.5713},{"x":44,"y":1621.7817},{"x":45,"y":1620.5241},{"x":46,"y":1617.425},{"x":47,"y":1614.6611},{"x":48,"y":1610.3926},{"x":49,"y":1603.4878},{"x":50,"y":1598.6887},{"x":51,"y":1593.8563},{"x":52,"y":1587.7358},{"x":53,"y":1581.487},{"x":54,"y":1570.3626},{"x":55,"y":1558.6219},{"x":56,"y":1545.252},{"x":57,"y":1533.5059},{"x":58,"y":1525.0995},{"x":59,"y":1518.164},{"x":60,"y":1514.1891},{"x":61,"y":1510.3113},{"x":62,"y":1507.5093},{"x":63,"y":1508.0609},{"x":64,"y":1501.4626},{"x":65,"y":1498.8259},{"x":66,"y":1498.6077},{"x":67,"y":1497.1689},{"x":68,"y":1497.458},{"x":69,"y":1498.13},{"x":70,"y":1497.4811},{"x":71,"y":1498.9913},{"x":72,"y":1501.9641},{"x":73,"y":1504.9326},{"x":74,"y":1505.4971},{"x":75,"y":1501.024},{"x":76,"y":1495.4044},{"x":77,"y":1487.6982},{"x":78,"y":1477.4397},{"x":79,"y":1471.5396},{"x":80,"y":1467.5162},{"x":81,"y":1463.8119},{"x":82,"y":1459.0814},{"x":83,"y":1449.3861},{"x":84,"y":1435.3861},{"x":85,"y":1419.4158},{"x":86,"y":1403.7526},{"x":87,"y":1385.1055},{"x":88,"y":1359.1972},{"x":89,"y":1332.6952},{"x":90,"y":1300.6404},{"x":91,"y":1265.4414},{"x":92,"y":1229.3579},{"x":93,"y":1193.6507},{"x":94,"y":1152.3841},{"x":95,"y":1114.6689},{"x":96,"y":1073.1532},{"x":97,"y":1037.2619},{"x":98,"y":1007.3073},{"x":99,"y":968.4259},{"x":100,"y":926.7198}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of mGluR2/3 (Glu) in Area PFm","filename":"mGluR2\\/3 (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of mGluR2_3 receptor in area PFm.** This profile plot shows examplary the course of the mGluR2_3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of mGluR2/3 (Glu) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of mGluR2/3 (Glu) in Area PFm"],"datasets":[{"data":[{"x":0,"y":1527.3001},{"x":1,"y":1839.0984},{"x":2,"y":2189.7366},{"x":3,"y":2639.5104},{"x":4,"y":3131.3987},{"x":5,"y":3546.1502},{"x":6,"y":3968.0329},{"x":7,"y":4313.3664},{"x":8,"y":4629.8887},{"x":9,"y":4921.8474},{"x":10,"y":5182.0203},{"x":11,"y":5426.3305},{"x":12,"y":5630.5118},{"x":13,"y":5826.4645},{"x":14,"y":6018.1452},{"x":15,"y":6144.1827},{"x":16,"y":6230.8311},{"x":17,"y":6263.8153},{"x":18,"y":6295.1772},{"x":19,"y":6296.3602},{"x":20,"y":6294.3915},{"x":21,"y":6314.7012},{"x":22,"y":6362.3784},{"x":23,"y":6393.6048},{"x":24,"y":6420.5427},{"x":25,"y":6462.1369},{"x":26,"y":6503.4864},{"x":27,"y":6486.3374},{"x":28,"y":6458.1349},{"x":29,"y":6408.5281},{"x":30,"y":6308.3592},{"x":31,"y":6183.2181},{"x":32,"y":6088.2681},{"x":33,"y":5990.1512},{"x":34,"y":5911.5681},{"x":35,"y":5814.0018},{"x":36,"y":5734.8252},{"x":37,"y":5661.2506},{"x":38,"y":5574.9418},{"x":39,"y":5489.2553},{"x":40,"y":5425.5495},{"x":41,"y":5373.17},{"x":42,"y":5327.9416},{"x":43,"y":5299.4144},{"x":44,"y":5248.7505},{"x":45,"y":5200.1832},{"x":46,"y":5163.8114},{"x":47,"y":5144.2242},{"x":48,"y":5116.2263},{"x":49,"y":5087.371},{"x":50,"y":5045.9499},{"x":51,"y":4961.5553},{"x":52,"y":4864.9578},{"x":53,"y":4758.0079},{"x":54,"y":4660.895},{"x":55,"y":4598.5002},{"x":56,"y":4536.0734},{"x":57,"y":4461.2234},{"x":58,"y":4398.3649},{"x":59,"y":4355.6073},{"x":60,"y":4314.6257},{"x":61,"y":4267.4302},{"x":62,"y":4189.1331},{"x":63,"y":4131.0034},{"x":64,"y":4072.6532},{"x":65,"y":3997.7178},{"x":66,"y":3924.6518},{"x":67,"y":3860.0437},{"x":68,"y":3787.0319},{"x":69,"y":3704.1567},{"x":70,"y":3633.4575},{"x":71,"y":3567.382},{"x":72,"y":3512.4774},{"x":73,"y":3477.1785},{"x":74,"y":3454.906},{"x":75,"y":3445.1648},{"x":76,"y":3436.9216},{"x":77,"y":3436.4549},{"x":78,"y":3437.5753},{"x":79,"y":3415.6112},{"x":80,"y":3392.0835},{"x":81,"y":3375.1237},{"x":82,"y":3364.7892},{"x":83,"y":3354.9507},{"x":84,"y":3328.3289},{"x":85,"y":3303.3088},{"x":86,"y":3263.5839},{"x":87,"y":3211.2551},{"x":88,"y":3166.2806},{"x":89,"y":3117.2966},{"x":90,"y":3042.0249},{"x":91,"y":2985.2467},{"x":92,"y":2883.7574},{"x":93,"y":2773.0366},{"x":94,"y":2642.1972},{"x":95,"y":2502.4948},{"x":96,"y":2377.1516},{"x":97,"y":2268.729},{"x":98,"y":2177.3427},{"x":99,"y":2123.8062},{"x":100,"y":2083.8323}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of 5-HT₂(5-HT) in Area PFm","filename":"5-HT₂(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT2 receptor in area PFm.** This profile plot shows examplary the course of the 5-HT2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HT₂(5-HT) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HT₂(5-HT) in Area PFm"],"datasets":[{"data":[{"x":0,"y":350.924},{"x":1,"y":384.2545},{"x":2,"y":420.4888},{"x":3,"y":453.5182},{"x":4,"y":475.1151},{"x":5,"y":488.122},{"x":6,"y":501.9878},{"x":7,"y":527.154},{"x":8,"y":551.6976},{"x":9,"y":576.1593},{"x":10,"y":601.1472},{"x":11,"y":626.8803},{"x":12,"y":646.6886},{"x":13,"y":669.9733},{"x":14,"y":695.0681},{"x":15,"y":723.951},{"x":16,"y":751.1475},{"x":17,"y":779.3186},{"x":18,"y":811.9418},{"x":19,"y":841.6441},{"x":20,"y":870.2346},{"x":21,"y":902.4196},{"x":22,"y":933.2005},{"x":23,"y":955.4812},{"x":24,"y":973.7632},{"x":25,"y":994.3365},{"x":26,"y":1010.2058},{"x":27,"y":1032.3017},{"x":28,"y":1050.0611},{"x":29,"y":1070.9975},{"x":30,"y":1086.8784},{"x":31,"y":1092.7762},{"x":32,"y":1093.2012},{"x":33,"y":1087.0664},{"x":34,"y":1076.1617},{"x":35,"y":1061.3283},{"x":36,"y":1050.8619},{"x":37,"y":1038.326},{"x":38,"y":1026.0398},{"x":39,"y":1013.1174},{"x":40,"y":995.1291},{"x":41,"y":982.5762},{"x":42,"y":972.3553},{"x":43,"y":959.9188},{"x":44,"y":950.6932},{"x":45,"y":940.5263},{"x":46,"y":934.7189},{"x":47,"y":930.807},{"x":48,"y":929.6185},{"x":49,"y":931.1468},{"x":50,"y":932.5176},{"x":51,"y":934.2126},{"x":52,"y":931.8024},{"x":53,"y":929.4346},{"x":54,"y":928.0453},{"x":55,"y":923.7144},{"x":56,"y":915.6868},{"x":57,"y":908.9238},{"x":58,"y":899.4296},{"x":59,"y":886.0047},{"x":60,"y":873.9596},{"x":61,"y":865.4562},{"x":62,"y":856.5329},{"x":63,"y":845.7543},{"x":64,"y":834.0316},{"x":65,"y":816.9375},{"x":66,"y":798.7362},{"x":67,"y":782.2733},{"x":68,"y":768.0219},{"x":69,"y":756.9281},{"x":70,"y":749.4084},{"x":71,"y":738.0489},{"x":72,"y":726.5856},{"x":73,"y":718.8053},{"x":74,"y":710.0391},{"x":75,"y":704.2395},{"x":76,"y":697.6099},{"x":77,"y":691.1072},{"x":78,"y":683.6053},{"x":79,"y":665.6237},{"x":80,"y":650.4815},{"x":81,"y":640.1421},{"x":82,"y":633.3483},{"x":83,"y":629.3863},{"x":84,"y":630.3066},{"x":85,"y":628.2752},{"x":86,"y":620.8921},{"x":87,"y":613.1794},{"x":88,"y":604.1506},{"x":89,"y":594.4043},{"x":90,"y":581.6574},{"x":91,"y":568.0625},{"x":92,"y":556.0725},{"x":93,"y":542.6974},{"x":94,"y":527.2901},{"x":95,"y":516.9345},{"x":96,"y":508.7705},{"x":97,"y":491.4733},{"x":98,"y":470.0076},{"x":99,"y":454.3691},{"x":100,"y":443.1489}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null},{"name":"Sample profile of GABAᴃ(GABA) in Area PFm","filename":"GABAᴃ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAB receptor in area PFm.** This profile plot shows examplary the course of the GABAB receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area PFm in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴃ(GABA) in Area PFm"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴃ(GABA) in Area PFm"],"datasets":[{"data":[{"x":0,"y":573.1877},{"x":1,"y":804.0202},{"x":2,"y":1071.8902},{"x":3,"y":1339.0262},{"x":4,"y":1599.0561},{"x":5,"y":1891.4777},{"x":6,"y":2183.0962},{"x":7,"y":2471.9999},{"x":8,"y":2724.2566},{"x":9,"y":2973.4222},{"x":10,"y":3214.1044},{"x":11,"y":3428.8791},{"x":12,"y":3622.7196},{"x":13,"y":3802.703},{"x":14,"y":3941.5544},{"x":15,"y":4045.2755},{"x":16,"y":4122.2815},{"x":17,"y":4177.8563},{"x":18,"y":4229.1878},{"x":19,"y":4280.8852},{"x":20,"y":4311.9339},{"x":21,"y":4336.7753},{"x":22,"y":4367.9924},{"x":23,"y":4380.3107},{"x":24,"y":4376.6181},{"x":25,"y":4350.6657},{"x":26,"y":4315.2528},{"x":27,"y":4285.5},{"x":28,"y":4262.5087},{"x":29,"y":4253.2519},{"x":30,"y":4244.5886},{"x":31,"y":4197.4294},{"x":32,"y":4096.0252},{"x":33,"y":3982.8171},{"x":34,"y":3877.8225},{"x":35,"y":3790.9951},{"x":36,"y":3720.0325},{"x":37,"y":3672.8532},{"x":38,"y":3646.2768},{"x":39,"y":3623.06},{"x":40,"y":3608.05},{"x":41,"y":3579.1184},{"x":42,"y":3556.7084},{"x":43,"y":3518.7706},{"x":44,"y":3474.4283},{"x":45,"y":3421.4001},{"x":46,"y":3356.5385},{"x":47,"y":3296.1175},{"x":48,"y":3242.3036},{"x":49,"y":3203.5722},{"x":50,"y":3172.9243},{"x":51,"y":3152.7316},{"x":52,"y":3160.0208},{"x":53,"y":3182.0019},{"x":54,"y":3200.4349},{"x":55,"y":3210.4232},{"x":56,"y":3220.7546},{"x":57,"y":3231.9356},{"x":58,"y":3229.8094},{"x":59,"y":3199.2304},{"x":60,"y":3149.499},{"x":61,"y":3090.6089},{"x":62,"y":3041.8902},{"x":63,"y":3009.7549},{"x":64,"y":2986.3286},{"x":65,"y":2951.1689},{"x":66,"y":2913.7027},{"x":67,"y":2876.8481},{"x":68,"y":2851.3901},{"x":69,"y":2843.3843},{"x":70,"y":2848.4798},{"x":71,"y":2865.8639},{"x":72,"y":2890.695},{"x":73,"y":2907.7937},{"x":74,"y":2899.8862},{"x":75,"y":2881.5885},{"x":76,"y":2858.776},{"x":77,"y":2826.9979},{"x":78,"y":2796.5929},{"x":79,"y":2771.0312},{"x":80,"y":2743.2496},{"x":81,"y":2720.0674},{"x":82,"y":2700.2702},{"x":83,"y":2664.1631},{"x":84,"y":2616.6772},{"x":85,"y":2550.1042},{"x":86,"y":2489.7028},{"x":87,"y":2425.079},{"x":88,"y":2347.6158},{"x":89,"y":2275.0935},{"x":90,"y":2186.8813},{"x":91,"y":2112.803},{"x":92,"y":2051.0543},{"x":93,"y":1994.9916},{"x":94,"y":1942.902},{"x":95,"y":1875.2428},{"x":96,"y":1769.9738},{"x":97,"y":1668.7373},{"x":98,"y":1564.0407},{"x":99,"y":1444.2464},{"x":100,"y":1326.3748}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(238,238,14,0.2)"}]},"url":null}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas"},{"type":"Receptor Data","name":"Receptor Data for Area PFop","regionName":[{"regionName":"Area PFop (IPL)","relationship":"equals"}],"properties":{"description":null,"publications":[]},"files":[{"name":"Receptor density fingerprint of Area PFop","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["388","427","1065","3008","1524","2173","2744","550","159","968","48","374","661","414","430","92"]},{"label":"mean_sd","data":["204","187","118","1211","404","605","658","200","41","571","30","118","mg/mol","178","121","32"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area PFop (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(144,238,144,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas"},{"type":"Receptor Data","name":"Receptor Data for Area PFt","regionName":[{"regionName":"Area PFt (IPL)","relationship":"equals"}],"properties":{"description":null,"publications":[]},"files":[{"name":"Receptor density fingerprint of Area PFt","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["367","503","1085","3044","1555","2140","2630","499","175","872","47","364","429","319","416","82"]},{"label":"mean_sd","data":["171","217","189","985","454","519","661","154","47","431","25","103","237","140","129","32"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area PFt (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(144,238,144,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas"},{"type":"Receptor Data","name":"Receptor Data for Area PGa","regionName":[{"regionName":"Area PGa (IPL)","relationship":"equals"}],"properties":{"description":null,"publications":[]},"files":[{"name":"Receptor density fingerprint of Area PGa","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["463","635","1259","3957","1998","2742","2442","479","172","827","70","361","698","303","441","136"]},{"label":"mean_sd","data":["187","405","278","1655","577","291","876","192","77","348","34","169","mg/mol","123","238","55"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area PGa (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(5,198,198,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas"},{"type":"Receptor Data","name":"Receptor Data for Area PGp","regionName":[{"regionName":"Area PGp (IPL)","relationship":"equals"}],"properties":{"description":null,"publications":[]},"files":[{"name":"Receptor density fingerprint of Area PGp","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["428","518","1081","3416","1847","2374","2294","461","202","843","54","386","855","315","419","130"]},{"label":"mean_sd","data":["242","360","313","1572","767","790","830","180","74","432","31","165","mg/mol","169","233","58"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area PGp (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(42,60,252,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas"},{"type":"Receptor Data","name":"Receptor Data for Area Te1","regionName":[{"regionName":"Area TE 1.0 (HESCHL)","relationship":"is superset of"},{"regionName":"Area TE 1.1 (HESCHL)","relationship":"is superset of"},{"regionName":"Area TE 1.2 (HESCHL)","relationship":"is superset of"}],"properties":{"description":null,"publications":[]},"files":[{"name":"Receptor density fingerprint of Area Te1","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["364","372","856","2298","1518","1995","2404","459","216","910","61","256","644","197","344","97"]},{"label":"mean_sd","data":["77","90","200","331","281","484","658","62","38","180","30","90","123","49","77","33"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area Te1 (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(255,255,255,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas"},{"type":"Receptor Data","name":"Receptor Data for Area Te2","regionName":[{"regionName":"none","relationship":"none"}],"properties":{"description":null,"publications":[]},"files":[{"name":"Receptor density fingerprint of Area Te2","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["300","402","920","2615","1344","1931","2628","549","168","962","58","289","455","255","343","100"]},{"label":"mean_sd","data":["96","93","164","250","396","466","372","148","26","192","23","90","124","79","68","34"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area Te2 (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(255,255,255,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas"},{"type":"Receptor Data","name":"Receptor Data for Area hOc1","regionName":[{"regionName":"Area hOc1 (V1, 17, CalcS)","relationship":"equals"}],"properties":{"description":null,"publications":[]},"files":[{"name":"Receptor density fingerprint of Area hOc1","filename":"fingerprint","mimetype":"application/json","properties":{"description":"**Multireceptor fingerprint for area hOc1.** This polar plot shows the mean receptor densities in fmol/mg protein (solid shape) and standard deviation (dashed line) of 16 receptor binding sites in the area hOc1. The data is based on the left and right hemisphere of one female subject (brain id: hg0201, sample ids: ID07 and ID08, age: 77, cause of death: lung edema) and the right hemispheres of two male subjects (brain id: hg0500, sample ids: ID09, age: 72, cause of death: cardiac arrest | brain id: hg0100, sample ids: ID12, age: 77, cause of death: coronary heart disease).","publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["500","260","1348","NA ","2508","2187","3882","661","390","524","48","264","347","192","408","102"]},{"label":"mean_sd","data":["223","239","320","NA","828","274","1761","123","35","395","14","59","120","145","198","37"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Area hOc1 (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(250,30,250,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}},{"name":"Sample autoradiograph of GABAᴀ(BZ) in Area hOc1","filename":"GABAᴀ(BZ)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/hOc1_bm_BZ.jpg"},{"name":"Sample autoradiograph of α₁(NA) in Area hOc1","filename":"α₁(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/hOc1_bm_alpha1.jpg"},{"name":"Sample autoradiograph of NMDA (Glu) in Area hOc1","filename":"NMDA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/hOc1_bm_NMDA.jpg"},{"name":"Sample autoradiograph of GABAᴀ(GABA) in Area hOc1","filename":"GABAᴀ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/hOc1_bm_GABAA.jpg"},{"name":"Sample autoradiograph of α₂(NA) in Area hOc1","filename":"α₂(NA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/hOc1_bm_alpha2.jpg"},{"name":"Sample autoradiograph of α₄β₂(ACh) in Area hOc1","filename":"α₄β₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/hOc1_bm_alpha4beta2.jpg"},{"name":"Sample autoradiograph of M₁(ACh) in Area hOc1","filename":"M₁(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/hOc1_bm_M1.jpg"},{"name":"Sample autoradiograph of 5-HT₁ᴀ(5-HT) in Area hOc1","filename":"5-HT₁ᴀ(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/hOc1_bm_5-HT1A.jpg"},{"name":"Sample autoradiograph of kainate (Glu) in Area hOc1","filename":"kainate (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/hOc1_bm_kainate.jpg"},{"name":"Sample autoradiograph of M₂(ACh) in Area hOc1","filename":"M₂(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/hOc1_bm_M2.jpg"},{"name":"Sample autoradiograph of AMPA (Glu) in Area hOc1","filename":"AMPA (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/hOc1_bm_AMPA.jpg"},{"name":"Sample autoradiograph of D₁(DA) in Area hOc1","filename":"D₁(DA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/hOc1_bm_D1.jpg"},{"name":"Sample autoradiograph of M₃(ACh) in Area hOc1","filename":"M₃(ACh)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/hOc1_bm_M3.jpg"},{"name":"Sample autoradiograph of mGluR2/3 (Glu) in Area hOc1","filename":"mGluR2\\/3 (Glu)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/hOc1_bm_mGluR2_3.jpg"},{"name":"Sample autoradiograph of 5-HT₂(5-HT) in Area hOc1","filename":"5-HT₂(5-HT)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/hOc1_bm_5-HT2.jpg"},{"name":"Sample autoradiograph of GABAᴃ(GABA) in Area hOc1","filename":"GABAᴃ(GABA)/autoradiography","mimetype":"image/jpeg","properties":{"description":null,"publications":[]},"data":null,"url":"res/image/hOc1_bm_GABAB.jpg"},{"name":"Sample profile of GABAᴀ(BZ) in Area hOc1","filename":"GABAᴀ(BZ)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of BZ receptor in area hOc1.** This profile plot shows examplary the course of the BZ receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴀ(BZ) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴀ(BZ) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":2473.0437},{"x":1,"y":2709.9649},{"x":2,"y":2863.8033},{"x":3,"y":3020.3183},{"x":4,"y":3233.9841},{"x":5,"y":3468.3864},{"x":6,"y":3635.4238},{"x":7,"y":3809.6804},{"x":8,"y":3922.8191},{"x":9,"y":4019.787},{"x":10,"y":4145.7154},{"x":11,"y":4262.8654},{"x":12,"y":4359.3683},{"x":13,"y":4456.6648},{"x":14,"y":4547.5351},{"x":15,"y":4604.5476},{"x":16,"y":4656.1231},{"x":17,"y":4715.721},{"x":18,"y":4772.0907},{"x":19,"y":4824.9797},{"x":20,"y":4872.6302},{"x":21,"y":4899.9467},{"x":22,"y":4919.0758},{"x":23,"y":4943.3431},{"x":24,"y":4967.8908},{"x":25,"y":4992.6181},{"x":26,"y":5010.1393},{"x":27,"y":5022.2447},{"x":28,"y":5025.7343},{"x":29,"y":5018.2688},{"x":30,"y":4999.2744},{"x":31,"y":4980.2195},{"x":32,"y":4950.6731},{"x":33,"y":4911.5604},{"x":34,"y":4864.8777},{"x":35,"y":4814.1784},{"x":36,"y":4758.6408},{"x":37,"y":4700.4906},{"x":38,"y":4639.9174},{"x":39,"y":4574.9785},{"x":40,"y":4518.5558},{"x":41,"y":4445.2934},{"x":42,"y":4347.7528},{"x":43,"y":4266.0345},{"x":44,"y":4171.7632},{"x":45,"y":4066.8372},{"x":46,"y":3968.7016},{"x":47,"y":3893.0113},{"x":48,"y":3810.7725},{"x":49,"y":3722.9195},{"x":50,"y":3628.5303},{"x":51,"y":3522.0748},{"x":52,"y":3419.824},{"x":53,"y":3343.1842},{"x":54,"y":3284.7654},{"x":55,"y":3219.3612},{"x":56,"y":3160.9294},{"x":57,"y":3130.377},{"x":58,"y":3117.2719},{"x":59,"y":3124.664},{"x":60,"y":3149.251},{"x":61,"y":3181.78},{"x":62,"y":3245.5631},{"x":63,"y":3314.7894},{"x":64,"y":3404.5372},{"x":65,"y":3510.9699},{"x":66,"y":3600.425},{"x":67,"y":3682.2393},{"x":68,"y":3771.8579},{"x":69,"y":3851.3836},{"x":70,"y":3895.5587},{"x":71,"y":3909.6633},{"x":72,"y":3911.9156},{"x":73,"y":3885.9771},{"x":74,"y":3822.6901},{"x":75,"y":3726.9774},{"x":76,"y":3619.4826},{"x":77,"y":3509.3705},{"x":78,"y":3405.0033},{"x":79,"y":3311.1286},{"x":80,"y":3188.7399},{"x":81,"y":3074.0034},{"x":82,"y":2972.5357},{"x":83,"y":2888.1664},{"x":84,"y":2811.053},{"x":85,"y":2752.6464},{"x":86,"y":2708.332},{"x":87,"y":2647.6693},{"x":88,"y":2589.5925},{"x":89,"y":2538.7695},{"x":90,"y":2478.0323},{"x":91,"y":2402.2417},{"x":92,"y":2331.6322},{"x":93,"y":2242.612},{"x":94,"y":2123.8865},{"x":95,"y":2017.2915},{"x":96,"y":1867.9429},{"x":97,"y":1730.0878},{"x":98,"y":1630.6138},{"x":99,"y":1527.1209},{"x":100,"y":1383.8565}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of α₁(NA) in Area hOc1","filename":"α₁(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha1 receptor in area hOc1.** This profile plot shows examplary the course of the alpha1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the left hemisphere of one female subject (brain id: MR2, sample id: ID03, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₁(NA) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₁(NA) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":168.6749},{"x":1,"y":182.1696},{"x":2,"y":185.3947},{"x":3,"y":187.4005},{"x":4,"y":191.0936},{"x":5,"y":197.8342},{"x":6,"y":209.5895},{"x":7,"y":212.9179},{"x":8,"y":210.3358},{"x":9,"y":204.672},{"x":10,"y":198.3559},{"x":11,"y":192.2141},{"x":12,"y":184.6792},{"x":13,"y":176.5573},{"x":14,"y":167.6668},{"x":15,"y":155.016},{"x":16,"y":139.9113},{"x":17,"y":130.1627},{"x":18,"y":125.9382},{"x":19,"y":123.6029},{"x":20,"y":118.239},{"x":21,"y":113.5298},{"x":22,"y":110.5245},{"x":23,"y":108.3136},{"x":24,"y":102.8691},{"x":25,"y":101.3295},{"x":26,"y":102.7557},{"x":27,"y":101.7567},{"x":28,"y":99.6596},{"x":29,"y":96.9543},{"x":30,"y":93.9327},{"x":31,"y":91.7224},{"x":32,"y":88.1879},{"x":33,"y":85.0743},{"x":34,"y":83.9862},{"x":35,"y":83.5078},{"x":36,"y":83.7018},{"x":37,"y":85.1439},{"x":38,"y":85.7278},{"x":39,"y":86.1452},{"x":40,"y":84.2475},{"x":41,"y":82.1894},{"x":42,"y":78.456},{"x":43,"y":72.7331},{"x":44,"y":68.6578},{"x":45,"y":62.8413},{"x":46,"y":60.8788},{"x":47,"y":62.651},{"x":48,"y":64.8375},{"x":49,"y":64.6198},{"x":50,"y":62.7509},{"x":51,"y":61.7825},{"x":52,"y":57.3576},{"x":53,"y":56.1031},{"x":54,"y":56.3921},{"x":55,"y":58.7134},{"x":56,"y":60.9693},{"x":57,"y":62.4585},{"x":58,"y":59.0945},{"x":59,"y":53.9828},{"x":60,"y":50.213},{"x":61,"y":50.0645},{"x":62,"y":53.8254},{"x":63,"y":59.7737},{"x":64,"y":63.0181},{"x":65,"y":63.9535},{"x":66,"y":64.0462},{"x":67,"y":65.6225},{"x":68,"y":71.6348},{"x":69,"y":76.1939},{"x":70,"y":81.6869},{"x":71,"y":87.3107},{"x":72,"y":91.7488},{"x":73,"y":96.3965},{"x":74,"y":98.7351},{"x":75,"y":102.4217},{"x":76,"y":106.6856},{"x":77,"y":110.8446},{"x":78,"y":116.0606},{"x":79,"y":119.1487},{"x":80,"y":117.2004},{"x":81,"y":112.0626},{"x":82,"y":110.0738},{"x":83,"y":109.4078},{"x":84,"y":112.0437},{"x":85,"y":111.7614},{"x":86,"y":109.5021},{"x":87,"y":103.9489},{"x":88,"y":99.3451},{"x":89,"y":98.5225},{"x":90,"y":97.1939},{"x":91,"y":100.2859},{"x":92,"y":105.9594},{"x":93,"y":111.2528},{"x":94,"y":114.1552},{"x":95,"y":111.1529},{"x":96,"y":98.7504},{"x":97,"y":81.3371},{"x":98,"y":67.5288},{"x":99,"y":56.9752},{"x":100,"y":45.3638}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of NMDA (Glu) in Area hOc1","filename":"NMDA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of NMDA receptor in area hOc1.** This profile plot shows examplary the course of the NMDA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one male subject (brain id: MR3, sample id: ID06, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of NMDA (Glu) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of NMDA (Glu) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":572.0054},{"x":1,"y":614.2075},{"x":2,"y":649.1235},{"x":3,"y":690.7202},{"x":4,"y":711.4168},{"x":5,"y":727.3087},{"x":6,"y":738.8004},{"x":7,"y":739.6577},{"x":8,"y":740.3816},{"x":9,"y":743.605},{"x":10,"y":746.1732},{"x":11,"y":747.2647},{"x":12,"y":745.3762},{"x":13,"y":747.7438},{"x":14,"y":744.0118},{"x":15,"y":732.7667},{"x":16,"y":724.1488},{"x":17,"y":718.3944},{"x":18,"y":709.9797},{"x":19,"y":716.7964},{"x":20,"y":731.8721},{"x":21,"y":739.0177},{"x":22,"y":739.8535},{"x":23,"y":737.4356},{"x":24,"y":732.0279},{"x":25,"y":726.0898},{"x":26,"y":721.8319},{"x":27,"y":713.8019},{"x":28,"y":702.042},{"x":29,"y":685.841},{"x":30,"y":665.4271},{"x":31,"y":653.5912},{"x":32,"y":649.2724},{"x":33,"y":644.9724},{"x":34,"y":650.6951},{"x":35,"y":650.6101},{"x":36,"y":651.3148},{"x":37,"y":652.7863},{"x":38,"y":650.4579},{"x":39,"y":648.0021},{"x":40,"y":647.8156},{"x":41,"y":650.941},{"x":42,"y":650.3177},{"x":43,"y":645.8745},{"x":44,"y":641.2981},{"x":45,"y":635.7545},{"x":46,"y":624.975},{"x":47,"y":624.4013},{"x":48,"y":617.0492},{"x":49,"y":608.5372},{"x":50,"y":605.8666},{"x":51,"y":615.2715},{"x":52,"y":627.1219},{"x":53,"y":635.482},{"x":54,"y":644.3173},{"x":55,"y":649.9436},{"x":56,"y":665.8279},{"x":57,"y":672.7705},{"x":58,"y":674.4},{"x":59,"y":680.3973},{"x":60,"y":681.5213},{"x":61,"y":681.2878},{"x":62,"y":682.9132},{"x":63,"y":683.3346},{"x":64,"y":675.0873},{"x":65,"y":657.7742},{"x":66,"y":633.5167},{"x":67,"y":619.555},{"x":68,"y":600.2568},{"x":69,"y":581.369},{"x":70,"y":566.3398},{"x":71,"y":552.2866},{"x":72,"y":537.1043},{"x":73,"y":520.475},{"x":74,"y":504.502},{"x":75,"y":490.7681},{"x":76,"y":476.7009},{"x":77,"y":463.6569},{"x":78,"y":453.9446},{"x":79,"y":450.2859},{"x":80,"y":451.9531},{"x":81,"y":460.6127},{"x":82,"y":476.086},{"x":83,"y":481.1458},{"x":84,"y":475.1103},{"x":85,"y":458.0221},{"x":86,"y":439.422},{"x":87,"y":420.8552},{"x":88,"y":406.0399},{"x":89,"y":397.0358},{"x":90,"y":406.0541},{"x":91,"y":423.9473},{"x":92,"y":440.2471},{"x":93,"y":450.8751},{"x":94,"y":447.9673},{"x":95,"y":431.8788},{"x":96,"y":417.122},{"x":97,"y":403.7767},{"x":98,"y":382.1547},{"x":99,"y":364.2236},{"x":100,"y":342.4615}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of GABAᴀ(GABA) in Area hOc1","filename":"GABAᴀ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAA receptor in area hOc1.** This profile plot shows examplary the course of the GABAA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the left hemisphere of one female subject (brain id: MR2, sample id: ID03, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴀ(GABA) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴀ(GABA) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":1052.5885},{"x":1,"y":1101.1443},{"x":2,"y":1153.1879},{"x":3,"y":1213.3273},{"x":4,"y":1273.632},{"x":5,"y":1333.742},{"x":6,"y":1385.7007},{"x":7,"y":1427.3979},{"x":8,"y":1472.1368},{"x":9,"y":1517.0938},{"x":10,"y":1553.9951},{"x":11,"y":1584.5964},{"x":12,"y":1604.8042},{"x":13,"y":1620.4829},{"x":14,"y":1636.4992},{"x":15,"y":1648.9745},{"x":16,"y":1660.725},{"x":17,"y":1670.5646},{"x":18,"y":1681.9283},{"x":19,"y":1685.7565},{"x":20,"y":1689.3959},{"x":21,"y":1687.323},{"x":22,"y":1685.2188},{"x":23,"y":1684.2764},{"x":24,"y":1692.8372},{"x":25,"y":1694.5134},{"x":26,"y":1692.2493},{"x":27,"y":1690.2391},{"x":28,"y":1690.9645},{"x":29,"y":1693.1758},{"x":30,"y":1679.6812},{"x":31,"y":1661.967},{"x":32,"y":1642.9101},{"x":33,"y":1610.6031},{"x":34,"y":1577.8663},{"x":35,"y":1536.8259},{"x":36,"y":1490.2543},{"x":37,"y":1441.318},{"x":38,"y":1401.5537},{"x":39,"y":1364.837},{"x":40,"y":1342.4044},{"x":41,"y":1318.6012},{"x":42,"y":1300.8426},{"x":43,"y":1288.5195},{"x":44,"y":1276.976},{"x":45,"y":1274.4948},{"x":46,"y":1286.5711},{"x":47,"y":1290.7743},{"x":48,"y":1289.5208},{"x":49,"y":1293.9939},{"x":50,"y":1294.2422},{"x":51,"y":1299.954},{"x":52,"y":1321.752},{"x":53,"y":1343.3275},{"x":54,"y":1372.7546},{"x":55,"y":1394.0418},{"x":56,"y":1425.4556},{"x":57,"y":1452.2623},{"x":58,"y":1475.6817},{"x":59,"y":1499.9404},{"x":60,"y":1513.4978},{"x":61,"y":1518.5183},{"x":62,"y":1529.7354},{"x":63,"y":1541.8937},{"x":64,"y":1540.2387},{"x":65,"y":1528.4263},{"x":66,"y":1506.9652},{"x":67,"y":1476.3935},{"x":68,"y":1428.1851},{"x":69,"y":1362.8467},{"x":70,"y":1298.3711},{"x":71,"y":1233.893},{"x":72,"y":1189.039},{"x":73,"y":1139.1874},{"x":74,"y":1098.413},{"x":75,"y":1047.3563},{"x":76,"y":1020.0548},{"x":77,"y":987.2062},{"x":78,"y":957.9883},{"x":79,"y":934.2743},{"x":80,"y":908.8416},{"x":81,"y":896.0374},{"x":82,"y":889.6003},{"x":83,"y":876.6913},{"x":84,"y":853.6658},{"x":85,"y":840.4487},{"x":86,"y":822.7237},{"x":87,"y":807.963},{"x":88,"y":795.9198},{"x":89,"y":775.4862},{"x":90,"y":754.5063},{"x":91,"y":741.7523},{"x":92,"y":718.9533},{"x":93,"y":701.1496},{"x":94,"y":685.4908},{"x":95,"y":660.0061},{"x":96,"y":634.1871},{"x":97,"y":602.2557},{"x":98,"y":579.7194},{"x":99,"y":558.718},{"x":100,"y":529.4428}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of α₂(NA) in Area hOc1","filename":"α₂(NA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha2 receptor in area hOc1.** This profile plot shows examplary the course of the alpha2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₂(NA) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₂(NA) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":565.5327},{"x":1,"y":603.732},{"x":2,"y":657.7538},{"x":3,"y":714.4727},{"x":4,"y":771.9365},{"x":5,"y":819.6543},{"x":6,"y":867.7175},{"x":7,"y":896.3946},{"x":8,"y":913.7756},{"x":9,"y":951.6106},{"x":10,"y":991.8389},{"x":11,"y":1027.8739},{"x":12,"y":1054.4826},{"x":13,"y":1080.7762},{"x":14,"y":1105.0313},{"x":15,"y":1135.6738},{"x":16,"y":1165.7187},{"x":17,"y":1196.5823},{"x":18,"y":1216.0058},{"x":19,"y":1230.7155},{"x":20,"y":1252.3499},{"x":21,"y":1281.8855},{"x":22,"y":1304.6098},{"x":23,"y":1316.7398},{"x":24,"y":1326.0868},{"x":25,"y":1335.2385},{"x":26,"y":1343.1457},{"x":27,"y":1352.9938},{"x":28,"y":1361.8641},{"x":29,"y":1373.8431},{"x":30,"y":1380.7078},{"x":31,"y":1376.2216},{"x":32,"y":1373.659},{"x":33,"y":1370.9288},{"x":34,"y":1362.927},{"x":35,"y":1350.2114},{"x":36,"y":1342.8246},{"x":37,"y":1334.9764},{"x":38,"y":1317.2357},{"x":39,"y":1294.0315},{"x":40,"y":1277.1577},{"x":41,"y":1264.6251},{"x":42,"y":1244.698},{"x":43,"y":1211.2148},{"x":44,"y":1181.7519},{"x":45,"y":1157.1657},{"x":46,"y":1125.8638},{"x":47,"y":1102.6032},{"x":48,"y":1079.2901},{"x":49,"y":1042.8401},{"x":50,"y":1012.3251},{"x":51,"y":982.8416},{"x":52,"y":952.3972},{"x":53,"y":931.584},{"x":54,"y":913.6329},{"x":55,"y":892.8916},{"x":56,"y":879.4261},{"x":57,"y":876.1527},{"x":58,"y":872.8202},{"x":59,"y":860.8477},{"x":60,"y":862.2473},{"x":61,"y":863.4877},{"x":62,"y":860.7376},{"x":63,"y":863.6045},{"x":64,"y":866.3627},{"x":65,"y":869.9129},{"x":66,"y":876.2006},{"x":67,"y":882.1477},{"x":68,"y":890.1761},{"x":69,"y":900.7452},{"x":70,"y":910.7396},{"x":71,"y":919.7907},{"x":72,"y":928.5848},{"x":73,"y":942.6796},{"x":74,"y":953.8475},{"x":75,"y":965.6336},{"x":76,"y":977.4255},{"x":77,"y":992.9898},{"x":78,"y":1006.5748},{"x":79,"y":1014.3239},{"x":80,"y":1026.2165},{"x":81,"y":1037.2182},{"x":82,"y":1044.2283},{"x":83,"y":1042.6564},{"x":84,"y":1038.3188},{"x":85,"y":1027.9061},{"x":86,"y":1013.1014},{"x":87,"y":998.2893},{"x":88,"y":981.9831},{"x":89,"y":967.5264},{"x":90,"y":940.3067},{"x":91,"y":907.9457},{"x":92,"y":876.6847},{"x":93,"y":854.2001},{"x":94,"y":826.2766},{"x":95,"y":773.7516},{"x":96,"y":716.9934},{"x":97,"y":664.677},{"x":98,"y":620.8819},{"x":99,"y":577.8488},{"x":100,"y":544.7912}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of α₄β₂(ACh) in Area hOc1","filename":"α₄β₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of alpha4-beta2 receptor in area hOc1.** This profile plot shows examplary the course of the alpha4-beta2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one male subject (brain id: MR3, sample id: ID06, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of α₄β₂(ACh) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of α₄β₂(ACh) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":76.2683},{"x":1,"y":75.0167},{"x":2,"y":72.401},{"x":3,"y":68.6732},{"x":4,"y":65.4106},{"x":5,"y":62.2464},{"x":6,"y":58.66},{"x":7,"y":56.7985},{"x":8,"y":55.4758},{"x":9,"y":54.8986},{"x":10,"y":54.7289},{"x":11,"y":52.1096},{"x":12,"y":47.7716},{"x":13,"y":45.0727},{"x":14,"y":43.8235},{"x":15,"y":42.6596},{"x":16,"y":39.3104},{"x":17,"y":38.2129},{"x":18,"y":38.1269},{"x":19,"y":37.5034},{"x":20,"y":37.7552},{"x":21,"y":35.7274},{"x":22,"y":31.441},{"x":23,"y":27.0863},{"x":24,"y":22.9707},{"x":25,"y":19.3137},{"x":26,"y":17.0069},{"x":27,"y":17.7011},{"x":28,"y":20.7183},{"x":29,"y":21.6929},{"x":30,"y":21.8768},{"x":31,"y":22.9711},{"x":32,"y":25.6515},{"x":33,"y":27.2575},{"x":34,"y":27.7914},{"x":35,"y":27.1827},{"x":36,"y":26.2036},{"x":37,"y":25.8425},{"x":38,"y":25.5295},{"x":39,"y":24.9211},{"x":40,"y":26.0603},{"x":41,"y":28.3008},{"x":42,"y":28.9225},{"x":43,"y":29.8913},{"x":44,"y":31.3723},{"x":45,"y":31.8183},{"x":46,"y":31.4389},{"x":47,"y":31.73},{"x":48,"y":31.3142},{"x":49,"y":31.2948},{"x":50,"y":32.0832},{"x":51,"y":32.2978},{"x":52,"y":33.7697},{"x":53,"y":35.3707},{"x":54,"y":37.1318},{"x":55,"y":38.5971},{"x":56,"y":38.9624},{"x":57,"y":36.7528},{"x":58,"y":35.4657},{"x":59,"y":35.6939},{"x":60,"y":34.0771},{"x":61,"y":31.699},{"x":62,"y":30.5999},{"x":63,"y":30.4193},{"x":64,"y":31.6578},{"x":65,"y":37.2199},{"x":66,"y":41.7566},{"x":67,"y":45.7892},{"x":68,"y":49.1681},{"x":69,"y":51.6315},{"x":70,"y":53.3099},{"x":71,"y":51.8012},{"x":72,"y":48.6715},{"x":73,"y":45.9925},{"x":74,"y":44.5297},{"x":75,"y":42.6407},{"x":76,"y":42.1098},{"x":77,"y":41.197},{"x":78,"y":38.6238},{"x":79,"y":36.1996},{"x":80,"y":34.8974},{"x":81,"y":34.7944},{"x":82,"y":34.4504},{"x":83,"y":33.6926},{"x":84,"y":32.3961},{"x":85,"y":32.8857},{"x":86,"y":33.3565},{"x":87,"y":34.7668},{"x":88,"y":39.2503},{"x":89,"y":43.0034},{"x":90,"y":44.4437},{"x":91,"y":45.7973},{"x":92,"y":47.0563},{"x":93,"y":48.2226},{"x":94,"y":48.0095},{"x":95,"y":45.6135},{"x":96,"y":43.2989},{"x":97,"y":42.1107},{"x":98,"y":40.2421},{"x":99,"y":38.7997},{"x":100,"y":36.9082}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of M₁(ACh) in Area hOc1","filename":"M₁(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M1 receptor in area hOc1.** This profile plot shows examplary the course of the M1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₁(ACh) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₁(ACh) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":441.085},{"x":1,"y":453.4159},{"x":2,"y":464.3631},{"x":3,"y":471.2128},{"x":4,"y":476.2852},{"x":5,"y":483.4172},{"x":6,"y":494.5519},{"x":7,"y":503.1657},{"x":8,"y":511.3589},{"x":9,"y":517.8983},{"x":10,"y":521.7943},{"x":11,"y":525.6308},{"x":12,"y":528.1456},{"x":13,"y":528.6413},{"x":14,"y":528.7076},{"x":15,"y":527.3279},{"x":16,"y":525.7541},{"x":17,"y":525.8783},{"x":18,"y":526.8102},{"x":19,"y":525.2279},{"x":20,"y":522.1177},{"x":21,"y":521.1822},{"x":22,"y":518.7488},{"x":23,"y":516.2637},{"x":24,"y":514.3933},{"x":25,"y":511.2544},{"x":26,"y":508.4808},{"x":27,"y":507.0339},{"x":28,"y":505.6586},{"x":29,"y":503.0545},{"x":30,"y":498.4712},{"x":31,"y":496.9603},{"x":32,"y":494.469},{"x":33,"y":489.0884},{"x":34,"y":483.9921},{"x":35,"y":476.7346},{"x":36,"y":469.3484},{"x":37,"y":464.8594},{"x":38,"y":459.4245},{"x":39,"y":450.1533},{"x":40,"y":437.2998},{"x":41,"y":423.1184},{"x":42,"y":410.2341},{"x":43,"y":396.3509},{"x":44,"y":381.9339},{"x":45,"y":371.2945},{"x":46,"y":365.5805},{"x":47,"y":355.5038},{"x":48,"y":341.7607},{"x":49,"y":328.7836},{"x":50,"y":315.8527},{"x":51,"y":305.7668},{"x":52,"y":296.629},{"x":53,"y":288.6043},{"x":54,"y":284.6497},{"x":55,"y":283.4328},{"x":56,"y":281.6549},{"x":57,"y":278.3931},{"x":58,"y":277.779},{"x":59,"y":279.7791},{"x":60,"y":283.8625},{"x":61,"y":288.4781},{"x":62,"y":291.6397},{"x":63,"y":293.0356},{"x":64,"y":295.34},{"x":65,"y":300.0218},{"x":66,"y":304.016},{"x":67,"y":306.3743},{"x":68,"y":309.2145},{"x":69,"y":313.4108},{"x":70,"y":316.5417},{"x":71,"y":320.9665},{"x":72,"y":323.6716},{"x":73,"y":325.5495},{"x":74,"y":327.8367},{"x":75,"y":329.5919},{"x":76,"y":332.1727},{"x":77,"y":336.1006},{"x":78,"y":341.3651},{"x":79,"y":344.5652},{"x":80,"y":345.9074},{"x":81,"y":346.5085},{"x":82,"y":346.2388},{"x":83,"y":346.2171},{"x":84,"y":344.782},{"x":85,"y":340.1649},{"x":86,"y":334.1118},{"x":87,"y":328.4941},{"x":88,"y":326.0946},{"x":89,"y":323.1798},{"x":90,"y":318.4895},{"x":91,"y":311.8383},{"x":92,"y":304.786},{"x":93,"y":296.6544},{"x":94,"y":288.1467},{"x":95,"y":278.0743},{"x":96,"y":270.0905},{"x":97,"y":264.1711},{"x":98,"y":255.5504},{"x":99,"y":240.4933},{"x":100,"y":223.9617}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of 5-HT₁ᴀ(5-HT) in Area hOc1","filename":"5-HT₁ᴀ(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT1A receptor in area hOc1.** This profile plot shows examplary the course of the 5-HT1A receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one female subject (brain id: MR2, sample id: ID04, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HT₁ᴀ(5-HT) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HT₁ᴀ(5-HT) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":277.0141},{"x":1,"y":293.8962},{"x":2,"y":311.1592},{"x":3,"y":326.4593},{"x":4,"y":346.5845},{"x":5,"y":369.2813},{"x":6,"y":382.2811},{"x":7,"y":394.0113},{"x":8,"y":400.4228},{"x":9,"y":403.8859},{"x":10,"y":410.9967},{"x":11,"y":412.9813},{"x":12,"y":412.7875},{"x":13,"y":412.2535},{"x":14,"y":412.1029},{"x":15,"y":409.3777},{"x":16,"y":402.7065},{"x":17,"y":394.2997},{"x":18,"y":382.7924},{"x":19,"y":369.8792},{"x":20,"y":354.0808},{"x":21,"y":341.8975},{"x":22,"y":331.0868},{"x":23,"y":318.3883},{"x":24,"y":301.0037},{"x":25,"y":281.3906},{"x":26,"y":259.2463},{"x":27,"y":238.5027},{"x":28,"y":223.1992},{"x":29,"y":208.9446},{"x":30,"y":196.0971},{"x":31,"y":180.5171},{"x":32,"y":166.1122},{"x":33,"y":157.3355},{"x":34,"y":151.5574},{"x":35,"y":142.8464},{"x":36,"y":134.7217},{"x":37,"y":128.6889},{"x":38,"y":124.3928},{"x":39,"y":120.3172},{"x":40,"y":116.1346},{"x":41,"y":111.29},{"x":42,"y":108.477},{"x":43,"y":107.1111},{"x":44,"y":104.8382},{"x":45,"y":101.7875},{"x":46,"y":99.0924},{"x":47,"y":97.3351},{"x":48,"y":93.1004},{"x":49,"y":91.1935},{"x":50,"y":88.2579},{"x":51,"y":85.0275},{"x":52,"y":83.6336},{"x":53,"y":82.4392},{"x":54,"y":81.4082},{"x":55,"y":80.0332},{"x":56,"y":79.994},{"x":57,"y":79.63},{"x":58,"y":80.3098},{"x":59,"y":81.5769},{"x":60,"y":81.1647},{"x":61,"y":80.9678},{"x":62,"y":82.7681},{"x":63,"y":82.2918},{"x":64,"y":80.0518},{"x":65,"y":78.6589},{"x":66,"y":79.7955},{"x":67,"y":79.4244},{"x":68,"y":79.3766},{"x":69,"y":79.737},{"x":70,"y":77.8016},{"x":71,"y":78.0166},{"x":72,"y":79.6687},{"x":73,"y":79.755},{"x":74,"y":79.1304},{"x":75,"y":79.4092},{"x":76,"y":81.7275},{"x":77,"y":85.3492},{"x":78,"y":86.9633},{"x":79,"y":89.0619},{"x":80,"y":90.2202},{"x":81,"y":90.9334},{"x":82,"y":93.4774},{"x":83,"y":96.3332},{"x":84,"y":96.625},{"x":85,"y":97.2223},{"x":86,"y":98.333},{"x":87,"y":98.3652},{"x":88,"y":98.6111},{"x":89,"y":98.1908},{"x":90,"y":98.6281},{"x":91,"y":97.1698},{"x":92,"y":95.6972},{"x":93,"y":93.6332},{"x":94,"y":90.3818},{"x":95,"y":87.8648},{"x":96,"y":82.8942},{"x":97,"y":79.1579},{"x":98,"y":77.5917},{"x":99,"y":75.3425},{"x":100,"y":71.4874}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of M₂(ACh) in Area hOc1","filename":"M₂(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M2 receptor in area hOc1.** This profile plot shows examplary the course of the M2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the left hemisphere of one female subject (brain id: MR2, sample id: ID03, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₂(ACh) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₂(ACh) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":111.7024},{"x":1,"y":120.7676},{"x":2,"y":124.713},{"x":3,"y":128.666},{"x":4,"y":133.3706},{"x":5,"y":138.896},{"x":6,"y":146.7855},{"x":7,"y":152.7374},{"x":8,"y":159.7736},{"x":9,"y":166.8849},{"x":10,"y":169.8943},{"x":11,"y":170.3749},{"x":12,"y":168.1731},{"x":13,"y":167.2757},{"x":14,"y":170.4316},{"x":15,"y":172.5422},{"x":16,"y":178.5668},{"x":17,"y":186.3632},{"x":18,"y":190.8588},{"x":19,"y":193.3013},{"x":20,"y":194.0643},{"x":21,"y":197.1141},{"x":22,"y":203.1535},{"x":23,"y":212.6348},{"x":24,"y":216.715},{"x":25,"y":214.0611},{"x":26,"y":209.2847},{"x":27,"y":202.3903},{"x":28,"y":200.1492},{"x":29,"y":206.1437},{"x":30,"y":214.2428},{"x":31,"y":221.7666},{"x":32,"y":225.5812},{"x":33,"y":222.7095},{"x":34,"y":218.3648},{"x":35,"y":210.9264},{"x":36,"y":206.6764},{"x":37,"y":205.0837},{"x":38,"y":201.9195},{"x":39,"y":197.1396},{"x":40,"y":186.0637},{"x":41,"y":176.2788},{"x":42,"y":167.1833},{"x":43,"y":162.1711},{"x":44,"y":160.3854},{"x":45,"y":160.8925},{"x":46,"y":166.0948},{"x":47,"y":169.1525},{"x":48,"y":171.3924},{"x":49,"y":175.9716},{"x":50,"y":178.3272},{"x":51,"y":178.3115},{"x":52,"y":173.934},{"x":53,"y":168.2591},{"x":54,"y":159.7846},{"x":55,"y":156.036},{"x":56,"y":155.0899},{"x":57,"y":161.3088},{"x":58,"y":170.2551},{"x":59,"y":178.6887},{"x":60,"y":185.8098},{"x":61,"y":190.9348},{"x":62,"y":195.1153},{"x":63,"y":197.8296},{"x":64,"y":199.6482},{"x":65,"y":201.0436},{"x":66,"y":198.4942},{"x":67,"y":189.6844},{"x":68,"y":179.744},{"x":69,"y":168.5765},{"x":70,"y":161.2516},{"x":71,"y":158.3052},{"x":72,"y":161.4},{"x":73,"y":170.7534},{"x":74,"y":183.4262},{"x":75,"y":191.2723},{"x":76,"y":200.1538},{"x":77,"y":206.8902},{"x":78,"y":210.5596},{"x":79,"y":211.2033},{"x":80,"y":211.3832},{"x":81,"y":210.9054},{"x":82,"y":209.4243},{"x":83,"y":205.4435},{"x":84,"y":201.1329},{"x":85,"y":197.5022},{"x":86,"y":194.4099},{"x":87,"y":189.4452},{"x":88,"y":182.6296},{"x":89,"y":177.4467},{"x":90,"y":177.2075},{"x":91,"y":179.9399},{"x":92,"y":185.1795},{"x":93,"y":189.6287},{"x":94,"y":191.4508},{"x":95,"y":188.6204},{"x":96,"y":179.9949},{"x":97,"y":168.4251},{"x":98,"y":151.9648},{"x":99,"y":136.9735},{"x":100,"y":112.6901}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of AMPA (Glu) in Area hOc1","filename":"AMPA (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of AMPA receptor in area hOc1.** This profile plot shows examplary the course of the AMPA receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one male subject (brain id: MR3, sample id: ID06, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of AMPA (Glu) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of AMPA (Glu) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":296.5185},{"x":1,"y":310.0072},{"x":2,"y":323.6652},{"x":3,"y":341.0282},{"x":4,"y":349.2329},{"x":5,"y":356.5307},{"x":6,"y":357.9476},{"x":7,"y":352.3415},{"x":8,"y":344.777},{"x":9,"y":338.6273},{"x":10,"y":334.1112},{"x":11,"y":332.0932},{"x":12,"y":331.5188},{"x":13,"y":328.8927},{"x":14,"y":328.0489},{"x":15,"y":323.2791},{"x":16,"y":316.9786},{"x":17,"y":310.6167},{"x":18,"y":303.2973},{"x":19,"y":298.0369},{"x":20,"y":295.6883},{"x":21,"y":293.3655},{"x":22,"y":289.7928},{"x":23,"y":288.8423},{"x":24,"y":285.8074},{"x":25,"y":278.3854},{"x":26,"y":275.6608},{"x":27,"y":268.4886},{"x":28,"y":260.6856},{"x":29,"y":253.0161},{"x":30,"y":249.18},{"x":31,"y":245.06},{"x":32,"y":243.1107},{"x":33,"y":241.5847},{"x":34,"y":233.3878},{"x":35,"y":225.3179},{"x":36,"y":217.5141},{"x":37,"y":205.2174},{"x":38,"y":198.9368},{"x":39,"y":195.3924},{"x":40,"y":188.3596},{"x":41,"y":182.7604},{"x":42,"y":177.7724},{"x":43,"y":167.8532},{"x":44,"y":165.2347},{"x":45,"y":161.148},{"x":46,"y":156.3672},{"x":47,"y":154.1189},{"x":48,"y":153.6221},{"x":49,"y":149.8172},{"x":50,"y":147.2099},{"x":51,"y":144.5575},{"x":52,"y":144.755},{"x":53,"y":142.919},{"x":54,"y":145.3835},{"x":55,"y":147.7908},{"x":56,"y":146.9777},{"x":57,"y":146.862},{"x":58,"y":149.7686},{"x":59,"y":153.0596},{"x":60,"y":155.5628},{"x":61,"y":160.2682},{"x":62,"y":166.7621},{"x":63,"y":175.6181},{"x":64,"y":177.1999},{"x":65,"y":177.6232},{"x":66,"y":177.3875},{"x":67,"y":181.1511},{"x":68,"y":180.7511},{"x":69,"y":178.4602},{"x":70,"y":179.1944},{"x":71,"y":181.6564},{"x":72,"y":187.3608},{"x":73,"y":192.4361},{"x":74,"y":197.441},{"x":75,"y":204.5389},{"x":76,"y":211.8954},{"x":77,"y":219.3225},{"x":78,"y":221.5775},{"x":79,"y":226.2557},{"x":80,"y":227.5431},{"x":81,"y":226.7665},{"x":82,"y":229.3286},{"x":83,"y":229.5464},{"x":84,"y":233.8443},{"x":85,"y":234.6858},{"x":86,"y":240.5448},{"x":87,"y":247.6617},{"x":88,"y":252.0637},{"x":89,"y":257.513},{"x":90,"y":261.6658},{"x":91,"y":259.2819},{"x":92,"y":254.2516},{"x":93,"y":249.9736},{"x":94,"y":243.1471},{"x":95,"y":231.5393},{"x":96,"y":225.1279},{"x":97,"y":216.5944},{"x":98,"y":209.4079},{"x":99,"y":206.6908},{"x":100,"y":201.3045}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of D₁(DA) in Area hOc1","filename":"D₁(DA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of D1 receptor in area hOc1.** This profile plot shows examplary the course of the D1 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the left hemisphere of one male subject (brain id: MR3, sample id: ID05, age: 79, cause of death: cardiac arrest).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of D₁(DA) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of D₁(DA) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":207.7441},{"x":1,"y":215.511},{"x":2,"y":226.0892},{"x":3,"y":235.031},{"x":4,"y":238.9458},{"x":5,"y":241.4951},{"x":6,"y":245.7857},{"x":7,"y":252.3796},{"x":8,"y":254.8791},{"x":9,"y":259.0769},{"x":10,"y":264.0641},{"x":11,"y":268.4594},{"x":12,"y":273.8793},{"x":13,"y":279.9837},{"x":14,"y":282.8553},{"x":15,"y":284.6941},{"x":16,"y":289.7838},{"x":17,"y":293.2425},{"x":18,"y":293.798},{"x":19,"y":291.4762},{"x":20,"y":285.3904},{"x":21,"y":283.266},{"x":22,"y":281.3792},{"x":23,"y":278.3961},{"x":24,"y":277.8827},{"x":25,"y":276.6527},{"x":26,"y":271.455},{"x":27,"y":268.8769},{"x":28,"y":265.5565},{"x":29,"y":261.3125},{"x":30,"y":257.7901},{"x":31,"y":255.3523},{"x":32,"y":252.8395},{"x":33,"y":250.7056},{"x":34,"y":249.2335},{"x":35,"y":249.1512},{"x":36,"y":248.2857},{"x":37,"y":247.0389},{"x":38,"y":247.9175},{"x":39,"y":248.2511},{"x":40,"y":248.9341},{"x":41,"y":249.4854},{"x":42,"y":249.5802},{"x":43,"y":249.6495},{"x":44,"y":247.9311},{"x":45,"y":246.6846},{"x":46,"y":244.8176},{"x":47,"y":242.3142},{"x":48,"y":240.3888},{"x":49,"y":237.3486},{"x":50,"y":234.6358},{"x":51,"y":230.491},{"x":52,"y":226.5043},{"x":53,"y":222.2163},{"x":54,"y":219.9779},{"x":55,"y":215.9688},{"x":56,"y":214.1612},{"x":57,"y":212.1285},{"x":58,"y":211.9612},{"x":59,"y":212.3389},{"x":60,"y":211.5356},{"x":61,"y":212.6048},{"x":62,"y":216.3678},{"x":63,"y":221.0559},{"x":64,"y":223.8181},{"x":65,"y":226.5403},{"x":66,"y":227.4622},{"x":67,"y":227.9431},{"x":68,"y":230.2788},{"x":69,"y":233.2172},{"x":70,"y":237.4031},{"x":71,"y":239.3619},{"x":72,"y":241.897},{"x":73,"y":246.6127},{"x":74,"y":253.0889},{"x":75,"y":258.2004},{"x":76,"y":261.0606},{"x":77,"y":264.0636},{"x":78,"y":268.5683},{"x":79,"y":274.3705},{"x":80,"y":277.8342},{"x":81,"y":285.054},{"x":82,"y":290.7287},{"x":83,"y":292.6989},{"x":84,"y":292.3012},{"x":85,"y":290.8193},{"x":86,"y":289.8784},{"x":87,"y":292.4998},{"x":88,"y":297.0705},{"x":89,"y":298.7731},{"x":90,"y":299.3802},{"x":91,"y":299.2742},{"x":92,"y":298.5046},{"x":93,"y":300.3571},{"x":94,"y":299.3348},{"x":95,"y":295.7797},{"x":96,"y":290.9805},{"x":97,"y":282.4275},{"x":98,"y":266.5104},{"x":99,"y":253.4289},{"x":100,"y":243.1836}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of M₃(ACh) in Area hOc1","filename":"M₃(ACh)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of M3 receptor in area hOc1.** This profile plot shows examplary the course of the M3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the left hemisphere of one female subject (brain id: MR2, sample id: ID03, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of M₃(ACh) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of M₃(ACh) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":747.2266},{"x":1,"y":865.6087},{"x":2,"y":946.5255},{"x":3,"y":998.8131},{"x":4,"y":1041.1623},{"x":5,"y":1082.1014},{"x":6,"y":1113.3147},{"x":7,"y":1136.6045},{"x":8,"y":1152.5531},{"x":9,"y":1156.4684},{"x":10,"y":1161.711},{"x":11,"y":1164.093},{"x":12,"y":1163.7677},{"x":13,"y":1165.4596},{"x":14,"y":1167.5281},{"x":15,"y":1164.0925},{"x":16,"y":1159.3774},{"x":17,"y":1160.1835},{"x":18,"y":1164.7982},{"x":19,"y":1163.8683},{"x":20,"y":1155.6704},{"x":21,"y":1145.5185},{"x":22,"y":1140.9926},{"x":23,"y":1140.6158},{"x":24,"y":1141.4056},{"x":25,"y":1139.1365},{"x":26,"y":1134.0535},{"x":27,"y":1130.0171},{"x":28,"y":1117.8305},{"x":29,"y":1103.4632},{"x":30,"y":1078.4865},{"x":31,"y":1054.6395},{"x":32,"y":1036.7652},{"x":33,"y":1027.3206},{"x":34,"y":1013.9538},{"x":35,"y":994.1636},{"x":36,"y":973.5138},{"x":37,"y":947.6866},{"x":38,"y":904.1716},{"x":39,"y":844.7921},{"x":40,"y":773.3199},{"x":41,"y":706.9926},{"x":42,"y":652.7577},{"x":43,"y":616.1192},{"x":44,"y":588.1246},{"x":45,"y":562.5917},{"x":46,"y":543.9291},{"x":47,"y":532.2594},{"x":48,"y":527.498},{"x":49,"y":524.0085},{"x":50,"y":523.3199},{"x":51,"y":526.589},{"x":52,"y":536.6216},{"x":53,"y":551.9353},{"x":54,"y":576.6846},{"x":55,"y":607.8316},{"x":56,"y":638.6868},{"x":57,"y":661.2896},{"x":58,"y":678.8031},{"x":59,"y":689.3389},{"x":60,"y":695.9724},{"x":61,"y":693.1446},{"x":62,"y":681.0257},{"x":63,"y":663.0234},{"x":64,"y":648.1835},{"x":65,"y":636.9734},{"x":66,"y":628.1691},{"x":67,"y":632.0165},{"x":68,"y":645.8549},{"x":69,"y":683.0799},{"x":70,"y":735.4547},{"x":71,"y":784.1169},{"x":72,"y":816.0836},{"x":73,"y":831.1279},{"x":74,"y":824.7145},{"x":75,"y":813.242},{"x":76,"y":794.0377},{"x":77,"y":770.6568},{"x":78,"y":752.071},{"x":79,"y":731.3164},{"x":80,"y":709.231},{"x":81,"y":693.622},{"x":82,"y":678.3714},{"x":83,"y":670.9507},{"x":84,"y":672.3956},{"x":85,"y":674.3531},{"x":86,"y":680.4494},{"x":87,"y":681.3667},{"x":88,"y":681.4286},{"x":89,"y":673.1429},{"x":90,"y":660.9871},{"x":91,"y":649.7518},{"x":92,"y":637.4919},{"x":93,"y":629.1207},{"x":94,"y":618.5734},{"x":95,"y":589.9535},{"x":96,"y":548.6126},{"x":97,"y":511.9469},{"x":98,"y":472.9624},{"x":99,"y":433.5808},{"x":100,"y":387.2545}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of mGluR2/3 (Glu) in Area hOc1","filename":"mGluR2\\/3 (Glu)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of mGluR2_3 receptor in area hOc1.** This profile plot shows examplary the course of the mGluR2_3 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the right hemisphere of one male subject (brain id: MR1, sample id: ID02, age: 78, cause of death: multiorgan failure caused by sepsis and pneumonia).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of mGluR2/3 (Glu) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of mGluR2/3 (Glu) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":1996.4791},{"x":1,"y":1991.9309},{"x":2,"y":1991.5574},{"x":3,"y":1992.9584},{"x":4,"y":1989.7499},{"x":5,"y":1979.245},{"x":6,"y":1952.4576},{"x":7,"y":1928.766},{"x":8,"y":1899.0324},{"x":9,"y":1865.01},{"x":10,"y":1828.0118},{"x":11,"y":1791.4461},{"x":12,"y":1756.2043},{"x":13,"y":1721.0255},{"x":14,"y":1691.8148},{"x":15,"y":1658.0648},{"x":16,"y":1618.3138},{"x":17,"y":1573.6074},{"x":18,"y":1532.8729},{"x":19,"y":1509.9391},{"x":20,"y":1490.2826},{"x":21,"y":1474.6163},{"x":22,"y":1465.5071},{"x":23,"y":1455.6628},{"x":24,"y":1431.5574},{"x":25,"y":1395.7647},{"x":26,"y":1369.1576},{"x":27,"y":1342.4632},{"x":28,"y":1312.4197},{"x":29,"y":1298.4521},{"x":30,"y":1291.8523},{"x":31,"y":1279.4106},{"x":32,"y":1266.165},{"x":33,"y":1250.7491},{"x":34,"y":1228.2233},{"x":35,"y":1201.9093},{"x":36,"y":1177.4919},{"x":37,"y":1153.0602},{"x":38,"y":1124.7354},{"x":39,"y":1100.6607},{"x":40,"y":1080.107},{"x":41,"y":1051.4967},{"x":42,"y":1025.2485},{"x":43,"y":1013.5788},{"x":44,"y":995.9743},{"x":45,"y":978.1474},{"x":46,"y":976.2809},{"x":47,"y":965.7277},{"x":48,"y":945.6575},{"x":49,"y":929.7303},{"x":50,"y":923.0048},{"x":51,"y":902.8096},{"x":52,"y":879.9849},{"x":53,"y":858.0834},{"x":54,"y":841.089},{"x":55,"y":837.0503},{"x":56,"y":836.3678},{"x":57,"y":845.7571},{"x":58,"y":858.0552},{"x":59,"y":858.9432},{"x":60,"y":861.4869},{"x":61,"y":862.8272},{"x":62,"y":869.6961},{"x":63,"y":873.5004},{"x":64,"y":882.8428},{"x":65,"y":901.0304},{"x":66,"y":941.8052},{"x":67,"y":975.8809},{"x":68,"y":1009.0027},{"x":69,"y":1042.7596},{"x":70,"y":1085.387},{"x":71,"y":1117.7279},{"x":72,"y":1152.289},{"x":73,"y":1191.0298},{"x":74,"y":1224.914},{"x":75,"y":1256.1998},{"x":76,"y":1288.5968},{"x":77,"y":1315.6137},{"x":78,"y":1332.3173},{"x":79,"y":1341.2356},{"x":80,"y":1336.4158},{"x":81,"y":1336.1764},{"x":82,"y":1328.0444},{"x":83,"y":1315.1316},{"x":84,"y":1293.852},{"x":85,"y":1270.8022},{"x":86,"y":1261.7084},{"x":87,"y":1253.1999},{"x":88,"y":1241.4214},{"x":89,"y":1236.8467},{"x":90,"y":1229.6931},{"x":91,"y":1216.0618},{"x":92,"y":1191.2109},{"x":93,"y":1164.7855},{"x":94,"y":1130.8177},{"x":95,"y":1089.9143},{"x":96,"y":1043.555},{"x":97,"y":992.5167},{"x":98,"y":938.9935},{"x":99,"y":890.8645},{"x":100,"y":847.4022}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of 5-HT₂(5-HT) in Area hOc1","filename":"5-HT₂(5-HT)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of 5-HT2 receptor in area hOc1.** This profile plot shows examplary the course of the 5-HT2 receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the left hemisphere of one female subject (brain id: hg0201, sample id: ID07, age: 77, cause of death: lung edema).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of 5-HT₂(5-HT) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of 5-HT₂(5-HT) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":331.8035},{"x":1,"y":341.8175},{"x":2,"y":351.839},{"x":3,"y":361.9529},{"x":4,"y":372.8824},{"x":5,"y":384.1077},{"x":6,"y":393.6793},{"x":7,"y":398.3036},{"x":8,"y":401.2285},{"x":9,"y":402.6239},{"x":10,"y":403.1382},{"x":11,"y":403.5769},{"x":12,"y":404.2446},{"x":13,"y":404.5654},{"x":14,"y":404.309},{"x":15,"y":403.9007},{"x":16,"y":403.2127},{"x":17,"y":402.5041},{"x":18,"y":402.3908},{"x":19,"y":402.158},{"x":20,"y":401.2335},{"x":21,"y":399.807},{"x":22,"y":398.6523},{"x":23,"y":398.859},{"x":24,"y":401.93},{"x":25,"y":405.4041},{"x":26,"y":408.2006},{"x":27,"y":410.4632},{"x":28,"y":413.0316},{"x":29,"y":417.2912},{"x":30,"y":422.7087},{"x":31,"y":428.1427},{"x":32,"y":432.0671},{"x":33,"y":434.7887},{"x":34,"y":437.5058},{"x":35,"y":437.952},{"x":36,"y":438.2973},{"x":37,"y":438.9784},{"x":38,"y":441.1463},{"x":39,"y":443.2481},{"x":40,"y":444.6074},{"x":41,"y":443.973},{"x":42,"y":443.295},{"x":43,"y":442.7157},{"x":44,"y":441.9489},{"x":45,"y":440.7082},{"x":46,"y":439.0657},{"x":47,"y":437.3753},{"x":48,"y":435.3961},{"x":49,"y":433.5371},{"x":50,"y":431.7816},{"x":51,"y":430.3912},{"x":52,"y":429.2515},{"x":53,"y":428.2003},{"x":54,"y":426.5748},{"x":55,"y":425.349},{"x":56,"y":424.6872},{"x":57,"y":424.8024},{"x":58,"y":425.3623},{"x":59,"y":426.5301},{"x":60,"y":428.491},{"x":61,"y":430.8133},{"x":62,"y":433.1227},{"x":63,"y":434.5956},{"x":64,"y":435.1387},{"x":65,"y":435.9223},{"x":66,"y":437.5266},{"x":67,"y":438.9172},{"x":68,"y":439.8167},{"x":69,"y":439.6906},{"x":70,"y":438.5755},{"x":71,"y":437.6683},{"x":72,"y":435.9918},{"x":73,"y":433.0423},{"x":74,"y":429.5751},{"x":75,"y":424.4398},{"x":76,"y":418.0263},{"x":77,"y":411.0302},{"x":78,"y":404.3113},{"x":79,"y":398.0299},{"x":80,"y":391.7155},{"x":81,"y":386.2348},{"x":82,"y":380.4688},{"x":83,"y":373.7935},{"x":84,"y":365.6567},{"x":85,"y":356.9932},{"x":86,"y":348.8486},{"x":87,"y":342.0671},{"x":88,"y":335.9903},{"x":89,"y":329.1074},{"x":90,"y":321.5039},{"x":91,"y":314.0194},{"x":92,"y":308.2192},{"x":93,"y":303.7542},{"x":94,"y":298.8987},{"x":95,"y":293.8996},{"x":96,"y":289.5817},{"x":97,"y":285.4463},{"x":98,"y":281.4969},{"x":99,"y":277.2663},{"x":100,"y":273.0395}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null},{"name":"Sample profile of GABAᴃ(GABA) in Area hOc1","filename":"GABAᴃ(GABA)/profile","mimetype":"application/json","properties":{"description":"**Examplary laminar density profile of GABAB receptor in area hOc1.** This profile plot shows examplary the course of the GABAB receptor density (in fmol/mg protein on y axis) from the pial surface (0% on x axis) to the border between layer VI and the white matter (100% on x axis) for area hOc1 in the left hemisphere of one female subject (brain id: MR2, sample id: ID03, age: 75, cause of death: sudden cardiac failure).","publications":[]},"data":{"chartOptions":{"legend":{"display":false},"title":{"display":true,"text":"Example profile of GABAᴃ(GABA) in Area hOc1"},"scales":{"xAxes":[{"ticks":{"min":0,"max":100,"stepSize":20},"scaleLabel":{"display":true,"labelString":"cortical depth %"}}],"yAxes":[{"ticks":{"beginAtZero":true,"min":0},"scaleLabel":{"display":true,"labelString":"receptor density (fmol/mg protein)"}}]},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"chartType":"line","labels":["Example profile of GABAᴃ(GABA) in Area hOc1"],"datasets":[{"data":[{"x":0,"y":1950.3144},{"x":1,"y":2100.9605},{"x":2,"y":2203.5831},{"x":3,"y":2292.5689},{"x":4,"y":2374.8703},{"x":5,"y":2468.2905},{"x":6,"y":2533.873},{"x":7,"y":2562.5636},{"x":8,"y":2577.8818},{"x":9,"y":2584.4019},{"x":10,"y":2574.9019},{"x":11,"y":2548.707},{"x":12,"y":2528.7062},{"x":13,"y":2517.7172},{"x":14,"y":2514.4521},{"x":15,"y":2515.2127},{"x":16,"y":2526.5504},{"x":17,"y":2521.6832},{"x":18,"y":2514.001},{"x":19,"y":2508.318},{"x":20,"y":2503.7046},{"x":21,"y":2495.8885},{"x":22,"y":2489.0215},{"x":23,"y":2472.4367},{"x":24,"y":2453.2604},{"x":25,"y":2436.9792},{"x":26,"y":2426.0322},{"x":27,"y":2401.5488},{"x":28,"y":2367.3584},{"x":29,"y":2347.5592},{"x":30,"y":2345.3507},{"x":31,"y":2350.1742},{"x":32,"y":2364.6761},{"x":33,"y":2377.745},{"x":34,"y":2388.1031},{"x":35,"y":2392.8357},{"x":36,"y":2381.181},{"x":37,"y":2358.0164},{"x":38,"y":2338.2177},{"x":39,"y":2286.6437},{"x":40,"y":2215.0929},{"x":41,"y":2144.7276},{"x":42,"y":2055.18},{"x":43,"y":1975.3623},{"x":44,"y":1904.9242},{"x":45,"y":1863.8506},{"x":46,"y":1826.266},{"x":47,"y":1768.0006},{"x":48,"y":1703.9164},{"x":49,"y":1597.3341},{"x":50,"y":1487.9582},{"x":51,"y":1343.9926},{"x":52,"y":1223.3642},{"x":53,"y":1150.7738},{"x":54,"y":1064.9452},{"x":55,"y":1007.5237},{"x":56,"y":972.607},{"x":57,"y":964.5922},{"x":58,"y":970.2298},{"x":59,"y":974.8202},{"x":60,"y":973.0334},{"x":61,"y":970.4423},{"x":62,"y":974.261},{"x":63,"y":990.6322},{"x":64,"y":1010.2082},{"x":65,"y":1032.1683},{"x":66,"y":1057.9906},{"x":67,"y":1083.1967},{"x":68,"y":1107.8037},{"x":69,"y":1136.2589},{"x":70,"y":1170.6473},{"x":71,"y":1199.4241},{"x":72,"y":1226.9452},{"x":73,"y":1257.318},{"x":74,"y":1284.8221},{"x":75,"y":1314.6337},{"x":76,"y":1341.7336},{"x":77,"y":1373.7874},{"x":78,"y":1399.0182},{"x":79,"y":1408.6722},{"x":80,"y":1414.7962},{"x":81,"y":1422.997},{"x":82,"y":1424.5432},{"x":83,"y":1440.6695},{"x":84,"y":1482.6868},{"x":85,"y":1546.4933},{"x":86,"y":1599.4021},{"x":87,"y":1633.8173},{"x":88,"y":1645.4206},{"x":89,"y":1646.9337},{"x":90,"y":1633.9153},{"x":91,"y":1609.1376},{"x":92,"y":1575.6959},{"x":93,"y":1549.9751},{"x":94,"y":1529.5448},{"x":95,"y":1504.3475},{"x":96,"y":1465.7426},{"x":97,"y":1428.6712},{"x":98,"y":1390.4424},{"x":99,"y":1350.4479},{"x":100,"y":1318.5866}]}],"colors":[{"borderColor":"rgba(255,255,255,0.8)","backgroundColor":"rgba(250,30,250,0.2)"}]},"url":null}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas"},{"type":"Receptor Data","name":"Receptor Data for Nucleus ANG","regionName":[{"regionName":"none","relationship":"none"}],"properties":{"description":null,"publications":[]},"files":[{"name":"Receptor density fingerprint of Nucleus ANG","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["268","274","1084","NA","539","2042","1053","179","663","271","192","1213","77","57","218","23"]},{"label":"mean_sd","data":["138","189","231","NA","133","531","232","50","272","54","9","1083","60","32","127","8"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Nucleus ANG (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(255,255,255,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas"},{"type":"Receptor Data","name":"Receptor Data for Nucleus GP","regionName":[{"regionName":"none","relationship":"none"}],"properties":{"description":null,"publications":[]},"files":[{"name":"Receptor density fingerprint of Nucleus GP","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["98","115","439","NA","92","247","426","119","30","175","17","250","55","32","148","53"]},{"label":"mean_sd","data":["57","108","155","NA","14","142","108","62","10","93","7","216","37","24","84","38"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Nucleus GP (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(255,255,255,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas"},{"type":"Receptor Data","name":"Receptor Data for Nucleus MD","regionName":[{"regionName":"none","relationship":"none"}],"properties":{"description":null,"publications":[]},"files":[{"name":"Receptor density fingerprint of Nucleus MD","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["250","355","959","NA","387","1992","1015","217","588","254","144","933","83","64","217","19"]},{"label":"mean_sd","data":["141","292","229","NA","101","889","47","123","228","41","24","764","57","40","129","3"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Nucleus MD (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(255,255,255,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas"},{"type":"Receptor Data","name":"Receptor Data for Nucleus Pu","regionName":[{"regionName":"none","relationship":"none"}],"properties":{"description":null,"publications":[]},"files":[{"name":"Receptor density fingerprint of Nucleus Pu","filename":"fingerprint","mimetype":"application/json","properties":{"description":null,"publications":[]},"data":{"chartType":"radar","labels":["AMPA (Glu)","kainate (Glu)","NMDA (Glu)","mGluR2/3 (Glu)","GABAᴀ(GABA)","GABAᴃ(GABA)","GABAᴀ(BZ)","M₁(ACh)","M₂(ACh)","M₃(ACh)","α₄β₂(ACh)","α₁(NA)","α₂(NA)","5-HT₁ᴀ(5-HT)","5-HT₂(5-HT)","D₁(DA)"],"datasets":[{"label":"mean","data":["632","1332","869","NA","788","1604","647","823","734","692","176","442","100","422","450","252"]},{"label":"mean_sd","data":["542","1753","398","NA","507","1524","352","531","658","288","222","321","83","830","324","180"]}],"chartOptions":{"scale":{"ticks":{"showLabelBackdrop":false}},"legend":{"display":true},"title":{"text":"Receptor density fingerprint of Nucleus Pu (fmol/mg protein)","display":true},"elements":{"point":{"radius":0,"hoverRadius":8,"hitRadius":4}}},"colors":[{"borderColor":"rgba(255,255,255,1)","backgroundColor":"rgba(255,255,255,0.2)"},{"borderColor":"rgba(255,255,255,1)"}]}}],"targetParcellation":"JuBrain Cytoarchitectonic Atlas"}]
\ No newline at end of file
diff --git a/src/res/ext/swmAggregatedData.json b/src/res/ext/swmAggregatedData.json
new file mode 100644
index 000000000..6d2b24011
--- /dev/null
+++ b/src/res/ext/swmAggregatedData.json
@@ -0,0 +1 @@
+[[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_CAC-PrCu_0","regionName":[{"regionName":"lh_CAC-PrCu_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_CAC-PrCu_0","name":"Probabilistic Map for lh_CAC-PrCu_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_CAC-PrCu_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_CAC-PrCu_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_CMF-Op_0","regionName":[{"regionName":"lh_CMF-Op_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_CMF-Op_0","name":"Probabilistic Map for lh_CMF-Op_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_CMF-Op_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_CMF-Op_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_CMF-PoC_0","regionName":[{"regionName":"lh_CMF-PoC_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_CMF-PoC_0","name":"Probabilistic Map for lh_CMF-PoC_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_CMF-PoC_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_CMF-PoC_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_CMF-PrC_0","regionName":[{"regionName":"lh_CMF-PrC_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_CMF-PrC_0","name":"Probabilistic Map for lh_CMF-PrC_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_CMF-PrC_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_CMF-PrC_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for lh_CMF-PrC_1","regionName":[{"regionName":"lh_CMF-PrC_1","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_CMF-PrC_1","name":"Probabilistic Map for lh_CMF-PrC_1","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_CMF-PrC_1","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_CMF-PrC_1.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_CMF-RMF_0","regionName":[{"regionName":"lh_CMF-RMF_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_CMF-RMF_0","name":"Probabilistic Map for lh_CMF-RMF_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_CMF-RMF_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_CMF-RMF_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_CMF-SF_0","regionName":[{"regionName":"lh_CMF-SF_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_CMF-SF_0","name":"Probabilistic Map for lh_CMF-SF_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_CMF-SF_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_CMF-SF_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_Fu-LO_0","regionName":[{"regionName":"lh_Fu-LO_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_Fu-LO_0","name":"Probabilistic Map for lh_Fu-LO_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_Fu-LO_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_Fu-LO_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_IC-PrCu_0","regionName":[{"regionName":"lh_IC-PrCu_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_IC-PrCu_0","name":"Probabilistic Map for lh_IC-PrCu_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_IC-PrCu_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_IC-PrCu_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_IP-IT_0","regionName":[{"regionName":"lh_IP-IT_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_IP-IT_0","name":"Probabilistic Map for lh_IP-IT_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_IP-IT_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_IP-IT_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_IP-LO_1","regionName":[{"regionName":"lh_IP-LO_1","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_IP-LO_1","name":"Probabilistic Map for lh_IP-LO_1","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_IP-LO_1","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_IP-LO_1.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_IP-MT_0","regionName":[{"regionName":"lh_IP-MT_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_IP-MT_0","name":"Probabilistic Map for lh_IP-MT_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_IP-MT_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_IP-MT_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_IP-SM_0","regionName":[{"regionName":"lh_IP-SM_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_IP-SM_0","name":"Probabilistic Map for lh_IP-SM_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_IP-SM_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_IP-SM_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_IP-SP_0","regionName":[{"regionName":"lh_IP-SP_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_IP-SP_0","name":"Probabilistic Map for lh_IP-SP_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_IP-SP_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_IP-SP_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for lh_IP-SP_1","regionName":[{"regionName":"lh_IP-SP_1","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_IP-SP_1","name":"Probabilistic Map for lh_IP-SP_1","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_IP-SP_1","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_IP-SP_1.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_IT-MT_0","regionName":[{"regionName":"lh_IT-MT_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_IT-MT_0","name":"Probabilistic Map for lh_IT-MT_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_IT-MT_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_IT-MT_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_LOF-Or_0","regionName":[{"regionName":"lh_LOF-Or_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_LOF-Or_0","name":"Probabilistic Map for lh_LOF-Or_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_LOF-Or_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_LOF-Or_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_LOF-RMF_0","regionName":[{"regionName":"lh_LOF-RMF_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_LOF-RMF_0","name":"Probabilistic Map for lh_LOF-RMF_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_LOF-RMF_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_LOF-RMF_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for lh_LOF-RMF_1","regionName":[{"regionName":"lh_LOF-RMF_1","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_LOF-RMF_1","name":"Probabilistic Map for lh_LOF-RMF_1","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_LOF-RMF_1","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_LOF-RMF_1.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_LOF-ST_0","regionName":[{"regionName":"lh_LOF-ST_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_LOF-ST_0","name":"Probabilistic Map for lh_LOF-ST_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_LOF-ST_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_LOF-ST_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_MOF-ST_0","regionName":[{"regionName":"lh_MOF-ST_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_MOF-ST_0","name":"Probabilistic Map for lh_MOF-ST_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_MOF-ST_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_MOF-ST_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_MT-SM_0","regionName":[{"regionName":"lh_MT-SM_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_MT-SM_0","name":"Probabilistic Map for lh_MT-SM_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_MT-SM_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_MT-SM_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_MT-ST_0","regionName":[{"regionName":"lh_MT-ST_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_MT-ST_0","name":"Probabilistic Map for lh_MT-ST_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_MT-ST_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_MT-ST_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_Op-Ins_0","regionName":[{"regionName":"lh_Op-Ins_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_Op-Ins_0","name":"Probabilistic Map for lh_Op-Ins_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_Op-Ins_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_Op-Ins_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_Op-PrC_0","regionName":[{"regionName":"lh_Op-PrC_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_Op-PrC_0","name":"Probabilistic Map for lh_Op-PrC_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_Op-PrC_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_Op-PrC_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_Op-SF_0","regionName":[{"regionName":"lh_Op-SF_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_Op-SF_0","name":"Probabilistic Map for lh_Op-SF_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_Op-SF_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_Op-SF_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_Or-Ins_0","regionName":[{"regionName":"lh_Or-Ins_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_Or-Ins_0","name":"Probabilistic Map for lh_Or-Ins_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_Or-Ins_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_Or-Ins_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_PoC-Ins_0","regionName":[{"regionName":"lh_PoC-Ins_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_PoC-Ins_0","name":"Probabilistic Map for lh_PoC-Ins_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_PoC-Ins_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_PoC-Ins_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_PoCi-PrCu_0","regionName":[{"regionName":"lh_PoCi-PrCu_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_PoCi-PrCu_0","name":"Probabilistic Map for lh_PoCi-PrCu_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_PoCi-PrCu_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_PoCi-PrCu_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for lh_PoCi-PrCu_1","regionName":[{"regionName":"lh_PoCi-PrCu_1","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_PoCi-PrCu_1","name":"Probabilistic Map for lh_PoCi-PrCu_1","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_PoCi-PrCu_1","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_PoCi-PrCu_1.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_PoCi-RAC_0","regionName":[{"regionName":"lh_PoCi-RAC_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_PoCi-RAC_0","name":"Probabilistic Map for lh_PoCi-RAC_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_PoCi-RAC_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_PoCi-RAC_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_PoCi-SF_0","regionName":[{"regionName":"lh_PoCi-SF_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_PoCi-SF_0","name":"Probabilistic Map for lh_PoCi-SF_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_PoCi-SF_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_PoCi-SF_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_PoC-PrC_0","regionName":[{"regionName":"lh_PoC-PrC_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_PoC-PrC_0","name":"Probabilistic Map for lh_PoC-PrC_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_PoC-PrC_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_PoC-PrC_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for lh_PoC-PrC_1","regionName":[{"regionName":"lh_PoC-PrC_1","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_PoC-PrC_1","name":"Probabilistic Map for lh_PoC-PrC_1","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_PoC-PrC_1","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_PoC-PrC_1.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for lh_PoC-PrC_2","regionName":[{"regionName":"lh_PoC-PrC_2","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_PoC-PrC_2","name":"Probabilistic Map for lh_PoC-PrC_2","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_PoC-PrC_2","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_PoC-PrC_2.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for lh_PoC-PrC_3","regionName":[{"regionName":"lh_PoC-PrC_3","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_PoC-PrC_3","name":"Probabilistic Map for lh_PoC-PrC_3","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_PoC-PrC_3","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_PoC-PrC_3.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_PoC-SM_0","regionName":[{"regionName":"lh_PoC-SM_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_PoC-SM_0","name":"Probabilistic Map for lh_PoC-SM_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_PoC-SM_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_PoC-SM_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for lh_PoC-SM_1","regionName":[{"regionName":"lh_PoC-SM_1","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_PoC-SM_1","name":"Probabilistic Map for lh_PoC-SM_1","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_PoC-SM_1","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_PoC-SM_1.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_PrC-Ins_0","regionName":[{"regionName":"lh_PrC-Ins_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_PrC-Ins_0","name":"Probabilistic Map for lh_PrC-Ins_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_PrC-Ins_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_PrC-Ins_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_PrC-SF_0","regionName":[{"regionName":"lh_PrC-SF_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_PrC-SF_0","name":"Probabilistic Map for lh_PrC-SF_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_PrC-SF_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_PrC-SF_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_PrC-SM_0","regionName":[{"regionName":"lh_PrC-SM_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_PrC-SM_0","name":"Probabilistic Map for lh_PrC-SM_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_PrC-SM_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_PrC-SM_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_RAC-SF_1","regionName":[{"regionName":"lh_RAC-SF_1","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_RAC-SF_1","name":"Probabilistic Map for lh_RAC-SF_1","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_RAC-SF_1","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_RAC-SF_1.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_RMF-SF_0","regionName":[{"regionName":"lh_RMF-SF_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_RMF-SF_0","name":"Probabilistic Map for lh_RMF-SF_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_RMF-SF_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_RMF-SF_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for lh_RMF-SF_1","regionName":[{"regionName":"lh_RMF-SF_1","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_RMF-SF_1","name":"Probabilistic Map for lh_RMF-SF_1","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_RMF-SF_1","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_RMF-SF_1.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_SM-Ins_0","regionName":[{"regionName":"lh_SM-Ins_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_SM-Ins_0","name":"Probabilistic Map for lh_SM-Ins_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_SM-Ins_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_SM-Ins_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_SP-SM_0","regionName":[{"regionName":"lh_SP-SM_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_SP-SM_0","name":"Probabilistic Map for lh_SP-SM_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_SP-SM_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_SP-SM_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_ST-Ins_0","regionName":[{"regionName":"lh_ST-Ins_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_ST-Ins_0","name":"Probabilistic Map for lh_ST-Ins_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_ST-Ins_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_ST-Ins_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_ST-TT_0","regionName":[{"regionName":"lh_ST-TT_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_ST-TT_0","name":"Probabilistic Map for lh_ST-TT_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_ST-TT_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_ST-TT_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_Tr-Ins_0","regionName":[{"regionName":"lh_Tr-Ins_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_Tr-Ins_0","name":"Probabilistic Map for lh_Tr-Ins_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_Tr-Ins_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_Tr-Ins_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for lh_Tr-SF_0","regionName":[{"regionName":"lh_Tr-SF_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for lh_Tr-SF_0","name":"Probabilistic Map for lh_Tr-SF_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"lh_Tr-SF_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/left-hemisphere/Probability_Maps/lh_Tr-SF_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_CAC-PoCi_0","regionName":[{"regionName":"rh_CAC-PoCi_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_CAC-PoCi_0","name":"Probabilistic Map for rh_CAC-PoCi_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_CAC-PoCi_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_CAC-PoCi_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_CAC-PrCu_0","regionName":[{"regionName":"rh_CAC-PrCu_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_CAC-PrCu_0","name":"Probabilistic Map for rh_CAC-PrCu_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_CAC-PrCu_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_CAC-PrCu_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_CMF-PrC_0","regionName":[{"regionName":"rh_CMF-PrC_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_CMF-PrC_0","name":"Probabilistic Map for rh_CMF-PrC_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_CMF-PrC_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_CMF-PrC_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for rh_CMF-PrC_1","regionName":[{"regionName":"rh_CMF-PrC_1","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_CMF-PrC_1","name":"Probabilistic Map for rh_CMF-PrC_1","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_CMF-PrC_1","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_CMF-PrC_1.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_CMF-RMF_0","regionName":[{"regionName":"rh_CMF-RMF_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_CMF-RMF_0","name":"Probabilistic Map for rh_CMF-RMF_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_CMF-RMF_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_CMF-RMF_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_CMF-SF_0","regionName":[{"regionName":"rh_CMF-SF_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_CMF-SF_0","name":"Probabilistic Map for rh_CMF-SF_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_CMF-SF_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_CMF-SF_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_CMF-SF_1","regionName":[{"regionName":"rh_CMF-SF_1","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_CMF-SF_1","name":"Probabilistic Map for rh_CMF-SF_1","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_CMF-SF_1","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_CMF-SF_1.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_Cu-Li_0","regionName":[{"regionName":"rh_Cu-Li_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_Cu-Li_0","name":"Probabilistic Map for rh_Cu-Li_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_Cu-Li_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_Cu-Li_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_Fu-LO_1","regionName":[{"regionName":"rh_Fu-LO_1","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_Fu-LO_1","name":"Probabilistic Map for rh_Fu-LO_1","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_Fu-LO_1","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_Fu-LO_1.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_IC-PrCu_0","regionName":[{"regionName":"rh_IC-PrCu_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_IC-PrCu_0","name":"Probabilistic Map for rh_IC-PrCu_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_IC-PrCu_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_IC-PrCu_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_IP-IT_0","regionName":[{"regionName":"rh_IP-IT_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_IP-IT_0","name":"Probabilistic Map for rh_IP-IT_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_IP-IT_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_IP-IT_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_IP-LO_0","regionName":[{"regionName":"rh_IP-LO_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_IP-LO_0","name":"Probabilistic Map for rh_IP-LO_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_IP-LO_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_IP-LO_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_IP-MT_0","regionName":[{"regionName":"rh_IP-MT_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_IP-MT_0","name":"Probabilistic Map for rh_IP-MT_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_IP-MT_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_IP-MT_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_IP-SM_0","regionName":[{"regionName":"rh_IP-SM_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_IP-SM_0","name":"Probabilistic Map for rh_IP-SM_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_IP-SM_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_IP-SM_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_IP-SP_0","regionName":[{"regionName":"rh_IP-SP_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_IP-SP_0","name":"Probabilistic Map for rh_IP-SP_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_IP-SP_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_IP-SP_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_IT-MT_1","regionName":[{"regionName":"rh_IT-MT_1","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_IT-MT_1","name":"Probabilistic Map for rh_IT-MT_1","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_IT-MT_1","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_IT-MT_1.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for rh_IT-MT_2","regionName":[{"regionName":"rh_IT-MT_2","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_IT-MT_2","name":"Probabilistic Map for rh_IT-MT_2","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_IT-MT_2","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_IT-MT_2.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_LOF-MOF_0","regionName":[{"regionName":"rh_LOF-MOF_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_LOF-MOF_0","name":"Probabilistic Map for rh_LOF-MOF_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_LOF-MOF_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_LOF-MOF_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_LOF-RMF_0","regionName":[{"regionName":"rh_LOF-RMF_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_LOF-RMF_0","name":"Probabilistic Map for rh_LOF-RMF_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_LOF-RMF_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_LOF-RMF_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for rh_LOF-RMF_1","regionName":[{"regionName":"rh_LOF-RMF_1","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_LOF-RMF_1","name":"Probabilistic Map for rh_LOF-RMF_1","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_LOF-RMF_1","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_LOF-RMF_1.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_LOF-ST_0","regionName":[{"regionName":"rh_LOF-ST_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_LOF-ST_0","name":"Probabilistic Map for rh_LOF-ST_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_LOF-ST_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_LOF-ST_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_LO-SP_0","regionName":[{"regionName":"rh_LO-SP_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_LO-SP_0","name":"Probabilistic Map for rh_LO-SP_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_LO-SP_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_LO-SP_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_MOF-ST_0","regionName":[{"regionName":"rh_MOF-ST_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_MOF-ST_0","name":"Probabilistic Map for rh_MOF-ST_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_MOF-ST_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_MOF-ST_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_MT-SM_0","regionName":[{"regionName":"rh_MT-SM_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_MT-SM_0","name":"Probabilistic Map for rh_MT-SM_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_MT-SM_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_MT-SM_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_MT-ST_0","regionName":[{"regionName":"rh_MT-ST_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_MT-ST_0","name":"Probabilistic Map for rh_MT-ST_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_MT-ST_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_MT-ST_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_Op-Ins_0","regionName":[{"regionName":"rh_Op-Ins_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_Op-Ins_0","name":"Probabilistic Map for rh_Op-Ins_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_Op-Ins_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_Op-Ins_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_Op-PrC_0","regionName":[{"regionName":"rh_Op-PrC_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_Op-PrC_0","name":"Probabilistic Map for rh_Op-PrC_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_Op-PrC_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_Op-PrC_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_Op-SF_0","regionName":[{"regionName":"rh_Op-SF_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_Op-SF_0","name":"Probabilistic Map for rh_Op-SF_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_Op-SF_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_Op-SF_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_Op-Tr_0","regionName":[{"regionName":"rh_Op-Tr_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_Op-Tr_0","name":"Probabilistic Map for rh_Op-Tr_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_Op-Tr_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_Op-Tr_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_Or-Ins_0","regionName":[{"regionName":"rh_Or-Ins_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_Or-Ins_0","name":"Probabilistic Map for rh_Or-Ins_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_Or-Ins_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_Or-Ins_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_PoCi-PrCu_1","regionName":[{"regionName":"rh_PoCi-PrCu_1","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_PoCi-PrCu_1","name":"Probabilistic Map for rh_PoCi-PrCu_1","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_PoCi-PrCu_1","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_PoCi-PrCu_1.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for rh_PoCi-PrCu_2","regionName":[{"regionName":"rh_PoCi-PrCu_2","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_PoCi-PrCu_2","name":"Probabilistic Map for rh_PoCi-PrCu_2","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_PoCi-PrCu_2","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_PoCi-PrCu_2.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_PoCi-RAC_0","regionName":[{"regionName":"rh_PoCi-RAC_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_PoCi-RAC_0","name":"Probabilistic Map for rh_PoCi-RAC_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_PoCi-RAC_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_PoCi-RAC_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_PoC-PrC_0","regionName":[{"regionName":"rh_PoC-PrC_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_PoC-PrC_0","name":"Probabilistic Map for rh_PoC-PrC_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_PoC-PrC_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_PoC-PrC_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for rh_PoC-PrC_1","regionName":[{"regionName":"rh_PoC-PrC_1","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_PoC-PrC_1","name":"Probabilistic Map for rh_PoC-PrC_1","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_PoC-PrC_1","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_PoC-PrC_1.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for rh_PoC-PrC_2","regionName":[{"regionName":"rh_PoC-PrC_2","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_PoC-PrC_2","name":"Probabilistic Map for rh_PoC-PrC_2","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_PoC-PrC_2","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_PoC-PrC_2.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_PoC-SM_0","regionName":[{"regionName":"rh_PoC-SM_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_PoC-SM_0","name":"Probabilistic Map for rh_PoC-SM_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_PoC-SM_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_PoC-SM_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_PoC-SP_0","regionName":[{"regionName":"rh_PoC-SP_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_PoC-SP_0","name":"Probabilistic Map for rh_PoC-SP_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_PoC-SP_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_PoC-SP_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for rh_PoC-SP_1","regionName":[{"regionName":"rh_PoC-SP_1","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_PoC-SP_1","name":"Probabilistic Map for rh_PoC-SP_1","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_PoC-SP_1","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_PoC-SP_1.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_PrC-Ins_0","regionName":[{"regionName":"rh_PrC-Ins_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_PrC-Ins_0","name":"Probabilistic Map for rh_PrC-Ins_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_PrC-Ins_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_PrC-Ins_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_PrC-SM_0","regionName":[{"regionName":"rh_PrC-SM_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_PrC-SM_0","name":"Probabilistic Map for rh_PrC-SM_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_PrC-SM_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_PrC-SM_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_PrC-SP_0","regionName":[{"regionName":"rh_PrC-SP_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_PrC-SP_0","name":"Probabilistic Map for rh_PrC-SP_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_PrC-SP_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_PrC-SP_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_RAC-SF_0","regionName":[{"regionName":"rh_RAC-SF_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_RAC-SF_0","name":"Probabilistic Map for rh_RAC-SF_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_RAC-SF_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_RAC-SF_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_RMF-SF_0","regionName":[{"regionName":"rh_RMF-SF_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_RMF-SF_0","name":"Probabilistic Map for rh_RMF-SF_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_RMF-SF_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_RMF-SF_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"},{"type":"Probabilistic Map","name":"Probabilistic Map for rh_RMF-SF_1","regionName":[{"regionName":"rh_RMF-SF_1","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_RMF-SF_1","name":"Probabilistic Map for rh_RMF-SF_1","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_RMF-SF_1","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_RMF-SF_1.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_SM-Ins_0","regionName":[{"regionName":"rh_SM-Ins_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_SM-Ins_0","name":"Probabilistic Map for rh_SM-Ins_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_SM-Ins_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_SM-Ins_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_SP-SM_0","regionName":[{"regionName":"rh_SP-SM_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_SP-SM_0","name":"Probabilistic Map for rh_SP-SM_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_SP-SM_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_SP-SM_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_ST-TT_0","regionName":[{"regionName":"rh_ST-TT_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_ST-TT_0","name":"Probabilistic Map for rh_ST-TT_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_ST-TT_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_ST-TT_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_Tr-Ins_0","regionName":[{"regionName":"rh_Tr-Ins_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_Tr-Ins_0","name":"Probabilistic Map for rh_Tr-Ins_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_Tr-Ins_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_Tr-Ins_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}],[{"type":"Probabilistic Map","name":"Probabilistic Map for rh_Tr-SF_0","regionName":[{"regionName":"rh_Tr-SF_0","relationship":"equals"}],"files":[{"filename":"Probabilistic Map for rh_Tr-SF_0","name":"Probabilistic Map for rh_Tr-SF_0","mimetype":"application/nifti","properties":{"name":null,"description":"","publications":[],"associatedRegion":"rh_Tr-SF_0","associatedParcellation":"Fibre Bundle Atlas - Short Bundle","datasetInfo":"MNIColin27_PMap.json"},"url":"https://neuroglancer-dev.humanbrainproject.org/precomputed/Fiber_Bundle/SWM_atlas/right-hemisphere/Probability_Maps/rh_Tr-SF_0.nii"}],"targetParcellation":"Fibre Bundle Atlas - Short Bundle"}]]
\ No newline at end of file
diff --git a/src/services/stateStore.service.ts b/src/services/stateStore.service.ts
index e685d8395..55fb393ce 100644
--- a/src/services/stateStore.service.ts
+++ b/src/services/stateStore.service.ts
@@ -1,14 +1,19 @@
 import { Action } from '@ngrx/store'
 import { filter } from 'rxjs/operators';
+import { NgAnalyzeModulesHost } from '@angular/compiler';
 
 export const NEWVIEWER = 'NEWVIEWER'
 
 export const FETCHED_TEMPLATES = 'FETCHED_TEMPLATES'
 export const SELECT_PARCELLATION = `SELECT_PARCELLATION`
 export const SELECT_REGIONS = `SELECT_REGIONS`
+export const LABELIDX_MAP = 'LABELIDX_MAP'
 
 export const CHANGE_NAVIGATION = 'CHANGE_NAVIGATION'
 
+export const FETCHED_DATAENTRIES = 'FETCHED_DATAENTRIES'
+export const FETCHED_METADATA = 'FETCHED_METADATA'
+
 export interface ViewerStateInterface{
   fetchedTemplates : any[]
 
@@ -34,19 +39,34 @@ export interface NewViewerAction extends Action{
   selectParcellation :any
 }
 
+export interface DatasetAction extends Action{
+  fetchedDataEntries : DataEntry[]
+  fetchedMetadataMap : Map<string,Map<string,{properties:Property}>>
+}
+
+export interface DataStateInterface{
+  fetchedDataEntries : DataEntry[]
+
+  /**
+   * Map that maps parcellation name to a Map, which maps datasetname to Property Object
+   */
+  fetchedMetadataMap : Map<string,Map<string,{properties:Property}>>
+}
+
 export function newViewer(state:any,action:NewViewerAction){
   switch(action.type){
     case NEWVIEWER:
       return Object.assign({},state,{
         templateSelected:action.selectTemplate,
-        parcellationSelected : action.selectParcellation
+        parcellationSelected : action.selectParcellation,
+        regionsSelected : []
       })
     default :
       return state
   }
 }
 
-export function changeState(state:ViewerStateInterface,action:AtlasAction){
+export function viewerState(state:ViewerStateInterface,action:AtlasAction){
   switch(action.type){
     case FETCHED_TEMPLATES : {
       return Object.assign({},state,{fetchedTemplates:action.fetchedTemplate})
@@ -54,26 +74,41 @@ export function changeState(state:ViewerStateInterface,action:AtlasAction){
     case CHANGE_NAVIGATION : {
       return Object.assign({},state,{navigation : action.changeNavigation})
     }
-    // case SELECT_TEMPLATE : {
-    //   /* check for query param */
-    //   return Object.assign({},state,{
-    //     templateSelected : action.selectTemplate,
-    //     parcellationSelected : action.selectTemplate.parcellations[0]
-    //   })
-    // }
     case SELECT_PARCELLATION : {
-      return Object.assign({},state,{parcellationSelected : action.selectParcellation})
+      return Object.assign({},state,{
+        parcellationSelected : action.selectParcellation,
+        regionsSelected : []
+      })
     }
     case SELECT_REGIONS : {
       return Object.assign({},state,{regionsSelected : action.selectRegions})
     }
+    case LABELIDX_MAP : {
+      return Object.assign({},state,{
+      })
+    }
     default :
       return state
   }
 }
 
+export function dataStore(state:any,action:DatasetAction){
+  switch (action.type){
+    case FETCHED_DATAENTRIES: {
+      return Object.assign({},state,{
+        fetchedDataEntries : action.fetchedDataEntries
+      })
+    }
+    case FETCHED_METADATA : {
+      return Object.assign({},state,{
+        fetchedMetadataMap : action.fetchedMetadataMap
+      })
+    }
+  }
+}
+
 export function safeFilter(key:string){
-  return filter((state:ViewerStateInterface)=>
+  return filter((state:any)=>
     typeof state !== 'undefined' &&
     typeof state[key] !== 'undefined')
 }
@@ -82,4 +117,40 @@ export function extractLabelIdx(region:any):number[]{
   return region.children.reduce((acc,item)=>{
     return acc.concat(extractLabelIdx(item))
   },[]).concat( region.labelIndex ? region.labelIndex : [] )
+}
+
+export interface DataEntry{
+  type : string
+  name : string
+  regionName : {
+    regionName : string,
+    relationship : string
+  }[]
+
+  properties : Property
+
+  files : File[]
+}
+
+export interface File{
+  filename : string
+  name : string
+  mimetype : string
+  url? : string
+  data? : any
+  targetParcellation : string
+}
+
+export interface Property{
+  description : string
+  publications : Publication[]
+}
+
+export interface Publication{
+  doi : string
+  citation : string
+}
+
+export interface DataTypeMetadata{
+
 }
\ No newline at end of file
diff --git a/src/ui/banner/banner.component.ts b/src/ui/banner/banner.component.ts
index b9d185fa8..42a930934 100644
--- a/src/ui/banner/banner.component.ts
+++ b/src/ui/banner/banner.component.ts
@@ -3,6 +3,7 @@ import { Store, select } from "@ngrx/store";
 import { ViewerStateInterface, safeFilter, SELECT_PARCELLATION, extractLabelIdx, SELECT_REGIONS, NEWVIEWER } from "../../services/stateStore.service";
 import { Observable } from "rxjs";
 import { map, filter } from "rxjs/operators";
+import { FilterNameBySearch } from "../../util/pipes/filterNameBySearch.pipe";
 
 @Component({
   selector : 'atlas-banner',
@@ -78,7 +79,8 @@ export class AtlasBanner{
     })
   }
 
-  handleClickRegion(region:any){
+  handleClickRegion(obj:any){
+    const region = obj.inputItem
     const selectedSet = new Set(extractLabelIdx(region))
     const intersection = new Set([...this.selectedRegions.map(r=>r.labelIndex)].filter(v=>selectedSet.has(v)))
 
@@ -119,6 +121,14 @@ export class AtlasBanner{
     return ''
   }
 
+  filterTreeBySearch(node:any):boolean{
+    return this.filterNameBySearchPipe.transform([node.name],this.searchTerm)
+  }
+
+  temp_filterTreeBySearch(node:any):boolean{
+    return
+  }
+
   clearRegions(event:Event){
     event.stopPropagation()
     event.preventDefault()
@@ -127,4 +137,6 @@ export class AtlasBanner{
       selectRegions : []
     })
   }
+
+  filterNameBySearchPipe = new FilterNameBySearch()
 }
\ No newline at end of file
diff --git a/src/ui/banner/banner.style.css b/src/ui/banner/banner.style.css
index 972d387fe..30f37e29a 100644
--- a/src/ui/banner/banner.style.css
+++ b/src/ui/banner/banner.style.css
@@ -52,7 +52,7 @@ div[treeContainer]
 :host-context([darktheme="true"]) div[treeContainer]
 {
   background-color:rgba(30,30,30,0.8);
-  color:rgba(255,255,255,0.8);
+  color:rgba(255,255,255,1.0);
 }
 
 div[hideScrollbarcontainer]
diff --git a/src/ui/banner/banner.template.html b/src/ui/banner/banner.template.html
index e694207f3..2b09f5ad1 100644
--- a/src/ui/banner/banner.template.html
+++ b/src/ui/banner/banner.template.html
@@ -46,6 +46,7 @@
         *ngFor = "let child of selectedParcellation.regions"
         (mouseclicktree) = "handleClickRegion($event)"
         [renderNode]="(displayTreeNode).bind(this)"
+        [searchFilter]="(filterTreeBySearch).bind(this)"
         [inputItem]="child">
       </tree>
     </div>
diff --git a/src/ui/databrowser/databrowser.component.ts b/src/ui/databrowser/databrowser.component.ts
new file mode 100644
index 000000000..2e43a976b
--- /dev/null
+++ b/src/ui/databrowser/databrowser.component.ts
@@ -0,0 +1,138 @@
+import { Component, ChangeDetectionStrategy } from "@angular/core";
+import { Store, select } from "@ngrx/store";
+import { DataStateInterface, Property, safeFilter, DataEntry, File, SELECT_REGIONS } from "../../services/stateStore.service";
+import { map, filter } from "rxjs/operators";
+import { PathToNestedChildren, HasPathProperty } from "../../util/pipes/pathToNestedChildren.pipe";
+import { CopyPropertyPipe } from "../../util/pipes/copyProperty.pipe";
+import { TreeComponent } from "../../components/tree/tree.component";
+
+@Component({
+  selector : 'data-browser',
+  templateUrl : './databrowser.template.html',
+  styleUrls : [
+    `./databrowser.style.css`
+  ]
+})
+
+export class DataBrowserUI{
+
+  hitsPerPage : number = 15
+  currentPage :  number = 0
+
+  selectedRegions : any[] = []
+
+  metadataMap : Map<string,Map<string,{properties:Property}>>
+  dataEntries : DataEntry[] = []
+  hideDataTypes : Set<string> = new Set()
+
+  private regionsLabelIndexMap : Map<number,any> = new Map()
+
+  constructor(private store : Store<DataStateInterface>){
+
+    this.store.pipe(
+      select('viewerState'),
+      safeFilter('regionsSelected'),
+      map(state=>state.regionsSelected)
+    )
+      .subscribe(rs=>this.selectedRegions = rs)
+
+    /* TODO may need to unsubscribe later */
+    this.store.pipe(
+      select('dataStore'),
+      safeFilter('fetchedMetadataMap'),
+      map(v=>v.fetchedMetadataMap)
+    )
+      .subscribe(map=>this.metadataMap = map)
+
+    /* TODO may need to unsubscribe later */
+    this.store.pipe(
+      select('dataStore'),
+      safeFilter('fetchedDataEntries'),
+      map(v=>v.fetchedDataEntries)
+    )
+      .subscribe(arr=>(this.dataEntries = arr,this.TEMP()))
+
+    /* TODO may need to unsubscribe later */
+    this.store.pipe(
+      select('newViewer'),
+      filter(state=>typeof state !== 'undefined')
+    )
+      .subscribe(data=>
+        this.handleParcellationSelection(data.parcellationSelected.regions))
+
+    this.store.pipe(
+      select('viewerState'),
+      safeFilter('parcellationSelected')
+    )
+      .subscribe(parcellation=>
+        this.handleParcellationSelection(parcellation.regions))
+  }
+
+  regions : any[] = []
+
+  handleParcellationSelection(regions:any[]){
+    this.mapRegions(regions)
+    this.regions = Array.from(this.regionsLabelIndexMap.values())
+  }
+
+  paginationChange(pageNum:number){
+    this.currentPage = pageNum
+  }
+
+  serchResultFilesIsArray(files:any){
+    return typeof files !== 'undefined' && 
+      files !== null &&
+      files.constructor === Array
+  }
+
+  renderNode(file:HasPathProperty&File){
+    return `${file.name ? file.name : file.path}`
+  }
+
+  TEMP(){
+  }
+
+  handleTreeNodeClick(obj:{inputItem:any,node:TreeComponent}){
+    obj.node.childrenExpanded = !obj.node.childrenExpanded
+  }
+
+  /* TODO transform this into functional */
+  private mapRegions(regions:any[]){
+    regions.forEach((region:any)=>{
+      if(region.labelIndex){
+        this.regionsLabelIndexMap.set(region.labelIndex,region)
+      }
+      if(region.children){
+        this.mapRegions(region.children)
+      }
+    })
+  }
+
+  get databrowserHeaderText() : string{
+    return this.selectedRegions.length === 0 ?
+      `No regions selected. Listing all datasets grouped by associated regions.` :
+      `${this.selectedRegions.length} region${this.selectedRegions.length > 1 ? 's' : ''} selected.`
+  }
+
+  clearAllRegions(){
+    this.store.dispatch({
+      type : SELECT_REGIONS,
+      selectRegions : []
+    })
+  }
+
+  typeVisible(type:string){
+    return !this.hideDataTypes.has(type)
+  }
+
+  toggleTypeVisibility(type:string){
+    this.hideDataTypes.has(type) ?
+      this.hideDataTypes.delete(type) :
+      this.hideDataTypes.add(type)
+
+    /* Somehow necessary, or else Angular will not mark for change */
+    this.hideDataTypes = new Set(
+      [...this.hideDataTypes]
+    )
+  }
+}
\ No newline at end of file
diff --git a/src/ui/databrowser/databrowser.style.css b/src/ui/databrowser/databrowser.style.css
new file mode 100644
index 000000000..7b8c15c0b
--- /dev/null
+++ b/src/ui/databrowser/databrowser.style.css
@@ -0,0 +1,53 @@
+div[heading]
+{
+  padding : 0.5em 1em;
+  white-space: nowrap;
+  overflow: hidden;
+}
+
+[dataentry]
+{
+  width:100%;
+}
+
+[dataentry] div[heading]
+{
+  padding : 0.4em 1.6em;
+  background-color:rgba(0,0,0,0.2);
+}
+
+[dataentry] div[body]
+{
+  padding : 0.4em 2.0em;
+  background-color:rgba(0,0,0,0.3);
+} 
+
+div[databrowserheader]
+{
+  padding : 0.5em 1.0em;
+  background-color:rgba(128,128,128,0.2);
+}
+
+div[databrowserheader] > *
+{
+  padding : 0;
+  margin : 0 ;
+  border : 0 ;
+}
+
+div[filterBlock]
+{
+  padding : 0.5em 1em;
+}
+
+div.clickable:hover
+{
+  color:#dbb556;
+  cursor:default;
+}
+
+div.noResultClass
+{
+  color:rgba(128,128,128,0.8);
+  text-decoration: line-through;
+}
\ No newline at end of file
diff --git a/src/ui/databrowser/databrowser.template.html b/src/ui/databrowser/databrowser.template.html
new file mode 100644
index 000000000..4b95ec135
--- /dev/null
+++ b/src/ui/databrowser/databrowser.template.html
@@ -0,0 +1,87 @@
+<!-- Header -->
+<div databrowserheader>
+  <span>
+    {{ databrowserHeaderText }} 
+  </span>
+  <small
+    *ngIf = "selectedRegions.length > 0"
+    class = "btn btn-link"
+    (click) = "clearAllRegions()">
+    clear all
+  </small>
+</div>
+
+<!-- Filter -->
+<div filterBlock>
+  <div>
+    Filter
+  </div>
+  <div
+    *ngFor = "let type of dataEntries | getUniqueProperty : 'type' "
+    class = "clickable"
+    (click)="toggleTypeVisibility(type)">
+    <small>
+      <i
+        *ngIf = "typeVisible(type)" 
+        class = "glyphicon glyphicon-check">
+      </i>
+      <i
+        *ngIf = "!typeVisible(type)" 
+        class = "glyphicon glyphicon-unchecked">
+      </i>
+    </small>
+    <small>
+      {{ type }}
+    </small>
+  </div>
+</div>
+
+<!-- Data -->
+<div
+  *ngFor = "let data of dataEntries | groupDatasetByRegion : regions | filterRegionDataEntries : selectedRegions | searchResultPagination  : currentPage : hitsPerPage">
+  <panel 
+    [collapseBody] = "true"
+    [bodyCollapsable] = "true">
+    <div [ngClass] = "(data.searchResults | filterDataEntriesByType : hideDataTypes).length === 0 ? 'noResultClass' : ''" heading>
+      <span>
+        {{ data.region ? data.region.name : 'Not associated with any region' }}
+      </span>
+      <span class = "mute-text">
+        ({{ (data.searchResults | filterDataEntriesByType : hideDataTypes).length }})
+      </span>
+    </div>
+    <div body>
+      <panel
+        *ngFor = "let searchResult of data.searchResults | filterDataEntriesByType : hideDataTypes"
+        [collapseBody] = "true"
+        [bodyCollapsable] = "true"
+        dataentry>
+
+        <div heading>
+          {{ searchResult.name }}
+        </div>
+
+        <div body>
+          <tree
+            *ngFor = "let item of searchResult.files | copyProperty : 'filename' : 'path' | pathToNestedChildren"
+            [childrenExpanded] = "false"
+            [renderNode] = "renderNode"
+            (mouseclicktree) = "handleTreeNodeClick($event)"
+            [inputItem] = " item ">
+
+          </tree>
+        </div>
+      </panel>
+    </div>
+  </panel>
+</div>
+
+<!-- pagination -->
+<pagination-component
+  *ngIf = "(dataEntries | groupDatasetByRegion : regions).length > 0"
+  [hitsPerPage]="hitsPerPage"
+  [total] = "(dataEntries | groupDatasetByRegion : regions| filterRegionDataEntries : selectedRegions).length"
+  [currentPage]="currentPage"
+  (paginationChange)="paginationChange($event)">
+
+</pagination-component>
\ No newline at end of file
diff --git a/src/ui/fileviewer/chart.interface.ts b/src/ui/fileviewer/chart.interface.ts
new file mode 100644
index 000000000..4a1371704
--- /dev/null
+++ b/src/ui/fileviewer/chart.interface.ts
@@ -0,0 +1,74 @@
+import { ChartOptions } from "chart.js";
+
+import merge from 'lodash.merge'
+
+export interface ScaleOptionInterface{
+  type? : string
+  display? : boolean
+  gridLines? : GridLinesOptionInterface
+  ticks? :ScaleTickOptionInterface
+  scaleLabel? : ScaleLabelInterface
+}
+
+export interface GridLinesOptionInterface{
+  display? : boolean
+  color? : string
+}
+
+export interface ScaleTickOptionInterface{
+  min? : number
+  max? : number
+  stepSize? : number
+  backdropColor? : string
+  showLabelBackdrop? : boolean
+  suggestedMin? : number
+  suggestedMax? : number
+  beginAtZero? : boolean
+  fontColor? : string
+}
+
+export interface ChartColor{
+  backgroundColor? : string
+  borderColor? : string
+  pointBackgroundColor? : string
+  pointBorderColor? : string
+  pointHoverBackgroundColor? : string
+  pointHoverBorderColor? : string 
+}
+
+export interface DatasetInterface{
+  labels : string[] | number[]
+  datasets : Dataset[]
+}
+
+export interface Dataset{
+  data : number[]
+  label? : string
+  borderWidth? : number
+  borderDash? : number[]
+  fill? :string|number|boolean
+  backgroundColor : string
+}
+
+export interface LegendInterface{
+  display? : boolean
+  labels? : {
+    fontColor? : string
+  }
+}
+
+export interface TitleInterfacce{
+  display? : boolean
+  text? : string
+  fontColor? : string
+}
+
+export interface ScaleLabelInterface{
+  labelString? : string
+  fontColor? : string
+  display? : boolean
+}
+
+export const applyOption = (defaultOption:ChartOptions,option?:Partial<ChartOptions>)=>{
+  merge(defaultOption,option)
+}
\ No newline at end of file
diff --git a/src/ui/fileviewer/fileviewer.component.ts b/src/ui/fileviewer/fileviewer.component.ts
new file mode 100644
index 000000000..0a3f5ff8b
--- /dev/null
+++ b/src/ui/fileviewer/fileviewer.component.ts
@@ -0,0 +1,75 @@
+import { Component, Input, OnChanges, OnDestroy, AfterViewInit, ViewChild, ElementRef } from '@angular/core'
+
+import { DomSanitizer } from '@angular/platform-browser';
+import { DataEntry, File } from '../../services/stateStore.service';
+
+@Component({
+  selector : 'file-viewer',
+  templateUrl : './fileviewer.template.html' ,
+  styleUrls : [ 
+    './fileviewer.style.css'
+   ] 
+})
+
+export class FileViewer implements OnChanges,OnDestroy,AfterViewInit{
+  @Input() searchResultFile : File
+  @ViewChild('childChart') childChart : ChartComponentInterface
+
+  constructor(private sanitizer:DomSanitizer){
+  }
+
+  private _downloadUrl : string
+  private _pngDownloadUrl : string
+
+  ngOnDestroy(){
+    if(this._downloadUrl){
+      URL.revokeObjectURL(this._downloadUrl)
+    }
+    if(this._pngDownloadUrl){
+      URL.revokeObjectURL(this._pngDownloadUrl)
+    }
+  }
+
+  ngOnChanges(){
+    if(this._downloadUrl){
+      URL.revokeObjectURL(this._downloadUrl)
+    }
+    if(!this.searchResultFile.url && this.searchResultFile.data){
+      const stringJson = JSON.stringify(this.searchResultFile.data)
+      const newBlob = new Blob([stringJson],{type:'application/octet-stream'})
+      this._downloadUrl = URL.createObjectURL(newBlob)
+    }
+  }
+
+  /* seems a bit buggy right now */
+  ngAfterViewInit(){
+    if(this.childChart){
+      (<HTMLCanvasElement>this.childChart.canvas.nativeElement).toBlob((blob)=>{
+        this._pngDownloadUrl = URL.createObjectURL(blob)
+      },'image/png')
+    }
+  }
+  
+  get downloadUrl(){
+    return this.searchResultFile.url ? 
+      this.searchResultFile.url : 
+      this._downloadUrl ? 
+        this.sanitizer.bypassSecurityTrustResourceUrl(this._downloadUrl)  :
+        null
+  }
+
+  get downloadName(){
+    return this.searchResultFile.filename
+  }
+
+  get downloadPng(){
+    return this._pngDownloadUrl ?
+      this.sanitizer.bypassSecurityTrustResourceUrl(this._pngDownloadUrl) :
+      null
+  }
+}
+
+interface ChartComponentInterface{
+  canvas : ElementRef
+}
+
diff --git a/src/ui/fileviewer/fileviewer.style.css b/src/ui/fileviewer/fileviewer.style.css
new file mode 100644
index 000000000..b5791c17b
--- /dev/null
+++ b/src/ui/fileviewer/fileviewer.style.css
@@ -0,0 +1,10 @@
+small#captions
+{
+  display:inline-block;
+  margin:0 1em;
+}
+
+div[emptyRow]
+{
+  margin-bottom:-1em;
+}
\ No newline at end of file
diff --git a/src/ui/fileviewer/fileviewer.template.html b/src/ui/fileviewer/fileviewer.template.html
new file mode 100644
index 000000000..02ef18d7f
--- /dev/null
+++ b/src/ui/fileviewer/fileviewer.template.html
@@ -0,0 +1,73 @@
+
+<!-- file viewer -->
+<div 
+  *ngIf = "searchResultFile"
+  [ngSwitch]="searchResultFile.mimetype">
+
+  <div emptyRow *ngSwitchCase = "'application/octet-stream'">
+    <!-- downloadable data -->
+  </div>
+
+  <!-- image  -->
+  <div *ngSwitchCase="'image/jpeg'" >
+    <!-- TODO figure out a more elegant way of dealing with draggable img -->
+    <img draggable = "false" [src] = "searchResultFile.url" />
+  </div>
+
+  <!-- data container -->
+  <div [ngSwitch]="searchResultFile.data.chartType" *ngSwitchCase="'application/json'">
+    <radar-chart
+      #childChart
+      [colors] = "searchResultFile.data.colors"
+      [options] = "searchResultFile.data.chartOptions"
+      [labels]="searchResultFile.data.labels"
+      [radarDatasets]="searchResultFile.data.datasets"
+      *ngSwitchCase="'radar'">
+
+    </radar-chart>
+    <line-chart
+      #childChart
+      [colors] = "searchResultFile.data.colors"
+      [options] = "searchResultFile.data.chartOptions"
+      [lineDatasets] = "searchResultFile.data.datasets"
+      *ngSwitchCase = "'line'">
+
+    </line-chart>
+    <div *ngSwitchDefault>
+      The json file is not a chart. I mean, we could dump the json, but would it really help?
+    </div>
+  </div>
+  <div *ngSwitchCase = "'application/nifti'">
+    APPLICATION NIFTI
+    <!-- <dedicated-view-controller
+      [dedicatedViewString]="'nifti://'+searchResultFile.url">
+
+    </dedicated-view-controller> -->
+  </div>
+  <div *ngSwitchCase = "'application/nehuba-layer'">
+    APPLICATION NEHUBA LAYER
+    <!-- <dedicated-view-controller
+      [dedicatedViewString]="'nehuba-layer://'+searchResultFile.url"
+      [dedicatedViewNehubaLayerObject]="searchResultFile.data">
+
+    </dedicated-view-controller> -->
+  </div>
+  <div *ngSwitchDefault>
+    The selected file with the mimetype {{ searchResultFile.mimetype }} could not be displayed.
+  </div>
+</div>
+
+<!-- caption -->
+<readmore *ngIf = "searchResultFile.properties.description">
+  <small id = "captions">
+    {{ searchResultFile.properties.description }}
+  </small>
+</readmore>
+
+<div *ngIf = "downloadUrl">
+  <a [href]="downloadUrl" target = "_blank" class = "btn btn-link" download>Download File</a>
+</div>
+
+<div *ngIf = "downloadPng">
+  <a [href] = "downloadPng" target = "_blank" class = "btn btn-link" download>Download Chart as Image</a>
+</div>
\ No newline at end of file
diff --git a/src/ui/fileviewer/line/line.chart.component.ts b/src/ui/fileviewer/line/line.chart.component.ts
new file mode 100644
index 000000000..3ff42f591
--- /dev/null
+++ b/src/ui/fileviewer/line/line.chart.component.ts
@@ -0,0 +1,149 @@
+import { Component, Input, OnChanges, ElementRef, ViewChild } from '@angular/core'
+import {  DatasetInterface, ChartColor, ScaleOptionInterface, LegendInterface, TitleInterfacce, applyOption } from '../chart.interface'
+
+import { ChartOptions, LinearTickOptions,ChartDataSets } from 'chart.js';
+import { Color } from 'ng2-charts';
+@Component({
+  selector : `line-chart`,
+  templateUrl : './line.chart.template.html',
+  styleUrls : [ 
+    `./line.chart.style.css`
+   ],
+})
+export class LineChart implements OnChanges{
+  @ViewChild('canvas') canvas : ElementRef
+
+  /**
+   * labels of each of the columns, spider web edges
+   */
+  @Input() labels : string[]
+
+  /**
+   * shown on the legend, different lines
+   */
+  @Input() lineDatasets : LineDatasetInputInterface[] = []
+
+  /**
+   * colors of the datasetes
+  */
+  @Input() colors : ChartColor[] = []
+
+  @Input() options : any
+
+  mousescroll(_ev:MouseWheelEvent){
+
+    /**
+     * temporarily disabled
+    */
+
+  }
+
+  maxY : number
+
+  xAxesTicks : LinearTickOptions = {
+    stepSize : 20,
+    fontColor : 'white'
+  }
+  chartOption : LineChartOption = {
+    scales : {
+      xAxes : [{
+        type : 'linear',
+        gridLines : {
+          color : 'rgba(128,128,128,0.5)'
+        },
+        ticks : this.xAxesTicks,
+        scaleLabel : {
+          display : true,
+          labelString : 'X Axes label',
+          fontColor : 'rgba(200,200,200,1.0)'
+        }
+      }],
+      yAxes : [{
+        gridLines : {
+          color : 'rgba(128,128,128,0.5)'
+        },
+        ticks : {
+          fontColor : 'white',
+        },
+        scaleLabel : {
+          display : true,
+          labelString : 'Y Axes label',
+          fontColor : 'rgba(200,200,200,1.0)'
+        }
+      }],
+    },
+    legend : {
+      display : true
+    },
+    title : {
+      display : true,
+      text : 'Title',
+      fontColor : 'rgba(255,255,255,1.0)'
+    },
+    color : [{
+      backgroundColor : `rgba(255,255,255,0.2)`
+    }],
+    animation :undefined,
+    elements : 
+    {
+      point : {
+        radius : 0,
+        hoverRadius : 8,
+        hitRadius : 4
+      }
+    }
+    
+  }
+
+  chartDataset : DatasetInterface = {
+    labels : [],
+    datasets : []
+  }
+
+  shapedLineChartDatasets : ChartDataSets[]
+  
+  ngOnChanges(){
+    this.shapedLineChartDatasets = this.lineDatasets.map(lineDataset=>({
+      data : lineDataset.data.map((v,idx)=>({
+        x : idx,
+        y : v
+      })),
+      fill : 'origin'
+    }))
+    
+    this.maxY = this.chartDataset.datasets.reduce((max,dataset)=>{
+      return Math.max(
+        max,
+        dataset.data.reduce((max,number)=>{
+          return Math.max(number,max)
+        },0))
+    },0)
+
+    applyOption(this.chartOption,this.options)
+
+    // this.colors = 
+    // this.colors = [{
+    //     backgroundColor : 'rgba(0,255,0,0.2)'
+    //   }]
+  }
+}
+
+
+export interface LineDatasetInputInterface{
+  label? : string
+  data : number[]
+}
+
+export interface LinearChartOptionInterface{
+  scales? : {
+    xAxes? : ScaleOptionInterface[]
+    yAxes? : ScaleOptionInterface[]
+  }
+  legend? : LegendInterface
+  title? : TitleInterfacce
+  color? : Color[]
+}
+
+interface LineChartOption extends ChartOptions{
+  color? : Color[]
+}
\ No newline at end of file
diff --git a/src/ui/fileviewer/line/line.chart.style.css b/src/ui/fileviewer/line/line.chart.style.css
new file mode 100644
index 000000000..4a9f715af
--- /dev/null
+++ b/src/ui/fileviewer/line/line.chart.style.css
@@ -0,0 +1,5 @@
+:host
+{
+  display:block;
+  margin:1em;
+}
\ No newline at end of file
diff --git a/src/ui/fileviewer/line/line.chart.template.html b/src/ui/fileviewer/line/line.chart.template.html
new file mode 100644
index 000000000..545db5429
--- /dev/null
+++ b/src/ui/fileviewer/line/line.chart.template.html
@@ -0,0 +1,17 @@
+<canvas 
+  *ngIf = "shapedLineChartDatasets"
+  (mousewheel)="mousescroll($event)"
+  width = '100%'
+  height = '100%'
+  baseChart 
+  chartType="line"
+  [options]="chartOption"
+  [colors]="colors"
+  [datasets]="shapedLineChartDatasets"
+  [labels]="chartDataset.labels"
+  #canvas>
+</canvas>
+<span
+  *ngIf = "!shapedLineChartDatasets">
+  datasets are required to display linear graph
+</span>
\ No newline at end of file
diff --git a/src/ui/fileviewer/radar/radar.chart.component.ts b/src/ui/fileviewer/radar/radar.chart.component.ts
new file mode 100644
index 000000000..846eb22f7
--- /dev/null
+++ b/src/ui/fileviewer/radar/radar.chart.component.ts
@@ -0,0 +1,151 @@
+import { Component, Input, OnChanges, ViewChild, ElementRef } from '@angular/core'
+
+import { DatasetInterface, ChartColor, ScaleOptionInterface, TitleInterfacce, LegendInterface, applyOption } from '../chart.interface';
+import { Color } from 'ng2-charts';
+@Component({
+  selector : `radar-chart`,
+  templateUrl : './radar.chart.template.html',
+  styleUrls : [ 
+    `./radar.chart.style.css`
+   ],
+})
+export class RadarChart implements OnChanges{
+
+  @ViewChild('canvas') canvas : ElementRef
+  /**
+   * labels of each of the columns, spider web edges
+   */
+  @Input() labels : string[] = []
+
+  /**
+   * shown on the legend, different lines
+   */
+  @Input() radarDatasets : RadarDatasetInputInterface[] = []
+
+  /**
+   * colors of the datasetes
+  */
+  @Input() colors : ChartColor[] = []
+
+  @Input() options : any
+
+  mousescroll(_ev:MouseWheelEvent){
+
+    /**
+     * mouse wheel zooming disabled for now
+     */
+    /**
+     * TODO the sroll up event sometimes does not get prevented for some reasons...
+     */
+
+    // ev.stopPropagation()
+    // ev.preventDefault()
+
+    // this.maxY *= ev.deltaY > 0 ? 1.2 : 0.8
+    // const newTicksObj = {
+    //   stepSize : Math.ceil( this.maxY / 500 ) * 100,
+    //   max : this.maxY
+    // }
+
+    // const combineTicksObj = Object.assign({},this.chartOption.scale!.ticks,newTicksObj)
+    // const combineScale = Object.assign({},this.chartOption.scale,{ticks:combineTicksObj})
+    // this.chartOption = Object.assign({},this.chartOption,{scale : combineScale,animation : false})
+  }
+
+  maxY : number
+
+  chartOption : RadarChartOptionInterface = {
+    scale : {
+      gridLines : {
+        color : 'rgba(128,128,128,0.5)'
+      },
+      ticks : {
+        showLabelBackdrop : false,
+        fontColor : 'white'
+      },
+      angleLines : {
+        color : 'rgba(128,128,128,0.2)'
+      },
+      pointLabels : {
+        fontColor : 'white'
+      }
+    },
+    legend : {
+      display: true,
+      labels : {
+        fontColor : 'white'
+      }
+    },
+    title :{
+      text : 'Radar graph',
+      display : true,
+      fontColor : 'rgba(255,255,255,1.0)'
+    },
+    color : [{
+      backgroundColor : `rgba(255,255,255,0.2)`
+    }],
+    animation : false
+  }
+
+  chartDataset : DatasetInterface = {
+    labels : [],
+    datasets : []
+  }
+
+  
+  ngOnChanges(){
+    this.chartDataset = {
+      labels : this.labels,
+      datasets : this.radarDatasets.map(ds=>Object.assign({},ds,{backgroundColor : 'rgba(255,255,255,0.2)'}))
+    }
+    // this.chartDataset.datasets[0]
+
+    this.maxY = this.chartDataset.datasets.reduce((max,dataset)=>{
+      return Math.max(
+        max,
+        dataset.data.reduce((max,number)=>{
+          return Math.max(number,max)
+        },0))
+    },0)
+
+    applyOption(this.chartOption,this.options)
+    // this.colors = [
+    //   {
+    //     borderColor : 'rgba(255,255,255,1)'
+    //   },
+    //   {
+    //     borderColor : ' rgba(255,255,255,1)',
+    //   }
+    // ]
+
+    // console.log(this.chartDataset)
+  }
+}
+
+export interface RadarDatasetInputInterface{
+  label : string
+  data : number[]
+}
+
+export interface RadarChartOptionInterface{
+  scale? : ScaleOptionInterface&RadarScaleOptionAdditionalInterface
+  animation? : any
+  legend? : LegendInterface
+  title? : TitleInterfacce
+  color? :Color[]
+}
+
+interface RadarScaleOptionAdditionalInterface{
+  angleLines? :AngleLineInterface
+  pointLabels?:PointLabelInterface
+}
+
+interface AngleLineInterface{
+  display? : boolean
+  color? : string
+  lineWidth? : number
+}
+
+interface PointLabelInterface{
+  fontColor? : string
+}
\ No newline at end of file
diff --git a/src/ui/fileviewer/radar/radar.chart.style.css b/src/ui/fileviewer/radar/radar.chart.style.css
new file mode 100644
index 000000000..4a9f715af
--- /dev/null
+++ b/src/ui/fileviewer/radar/radar.chart.style.css
@@ -0,0 +1,5 @@
+:host
+{
+  display:block;
+  margin:1em;
+}
\ No newline at end of file
diff --git a/src/ui/fileviewer/radar/radar.chart.template.html b/src/ui/fileviewer/radar/radar.chart.template.html
new file mode 100644
index 000000000..b45ae2442
--- /dev/null
+++ b/src/ui/fileviewer/radar/radar.chart.template.html
@@ -0,0 +1,17 @@
+<canvas 
+  #canvas
+  (mousewheel)="mousescroll($event)"
+  width = '100%'
+  height = '100%'
+  *ngIf = "chartDataset.datasets.length > 0 && chartDataset.labels.length > 0"
+  baseChart 
+  chartType="radar"
+  [options]="chartOption"
+  [colors]="colors"
+  [datasets]="chartDataset.datasets"
+  [labels]="chartDataset.labels">
+</canvas>
+<span
+  *ngIf = "chartDataset.datasets.length == 0 || chartDataset.labels.length == 0">
+  datasets and labels are required to display radar
+</span>
\ No newline at end of file
diff --git a/src/ui/nehubaContainer/nehubaContainer.component.ts b/src/ui/nehubaContainer/nehubaContainer.component.ts
index 844163494..1be0b7208 100644
--- a/src/ui/nehubaContainer/nehubaContainer.component.ts
+++ b/src/ui/nehubaContainer/nehubaContainer.component.ts
@@ -68,6 +68,7 @@ export class NehubaContainner implements OnInit{
     this.loadedParcellation$.subscribe(this.handleParcellation)
 
     this.selectedRegions$.subscribe(regions=>{
+      if(!this.nehubaViewer) return
       this.selectedRegionIndexSet = new Set(regions.map(r=>r.labelIndex))
       this.selectedRegionIndexSet.size > 0 ?
         this.nehubaViewer.showSegs([...this.selectedRegionIndexSet]) :
@@ -114,9 +115,11 @@ export class NehubaContainner implements OnInit{
   }
 
   private handleParcellation(parcellation:any){
+    if(!this.nehubaViewer) return
     this.mapRegions(parcellation.regions)
     this.nehubaViewer.regionsLabelIndexMap = this.regionsLabelIndexMap
     this.nehubaViewer.parcellationId = parcellation.ngId
+
   }
 
   private createNewNehuba(template:any){
@@ -138,4 +141,58 @@ export class NehubaContainner implements OnInit{
       }
     })
   }
+
+  /* related to info-card */
+
+  statusPanelRealSpace : boolean = true
+
+  get mouseCoord():string{
+    return this.nehubaViewer ?
+      this.statusPanelRealSpace ? 
+        this.nehubaViewer.mousePosReal ? 
+          Array.from(this.nehubaViewer.mousePosReal.map(n=> isNaN(n) ? 0 : n/1e6))
+            .map(n=>n.toFixed(3)+'mm').join(' , ') : 
+          '0mm , 0mm , 0mm (mousePosReal not yet defined)' :
+        this.nehubaViewer.mousePosVoxel ? 
+          this.nehubaViewer.mousePosVoxel.join(' , ') :
+          '0 , 0 , 0 (mousePosVoxel not yet defined)' :
+      '0 , 0 , 0 (nehubaViewer not defined)'
+  }
+
+  get onHoverSegment():string{
+    if(!this.nehubaViewer) return 'nehubaViewer not yet initialised'
+    const region = this.regionsLabelIndexMap.get(this.nehubaViewer.mouseOverSegment)
+    return region ? 
+      region.name : 
+      this.nehubaViewer.mouseOverSegment ? 
+        `Segment labelIndex: ${this.nehubaViewer.mouseOverSegment}` : 
+        ``
+  }
+
+  editingNavState : boolean = false
+  textNavigateTo(string:string){
+    if(string.split(/[\s|,]+/).length>=3 && string.split(/[\s|,]+/).slice(0,3).every(entry=>!isNaN(Number(entry.replace(/mm/,''))))){
+      const pos = (string.split(/[\s|,]+/).slice(0,3).map((entry,idx)=>Number(entry.replace(/mm/,''))*(this.statusPanelRealSpace ? 1000000 : 1)))
+      this.nehubaViewer.setNavigationState({
+        position : (pos as [number,number,number]),
+        positionReal : this.statusPanelRealSpace
+      })
+      // this.navigate(
+      //   string.split(/[\s|,]+/).slice(0,3).map(entry=>Number(entry.replace(/mm/,''))*(this.statusPanelRealSpace ? 1000000 : 1)),
+      //   0,
+      //   this.statusPanelRealSpace
+      // )
+    }else{
+      console.log('input did not parse to coordinates ',string)
+    }
+  }
+
+  navigationValue(){
+    return this.nehubaViewer ? 
+      this.statusPanelRealSpace ? 
+        Array.from(this.nehubaViewer.navPosReal.map(n=> isNaN(n) ? 0 : n/1e6))
+          .map(n=>n.toFixed(3)+'mm').join(' , ') :
+        Array.from(this.nehubaViewer.navPosVoxel.map(n=> isNaN(n) ? 0 : n)).join(' , ') :
+      `[0,0,0] (neubaViewer is undefined)`
+  }
 }
\ No newline at end of file
diff --git a/src/ui/nehubaContainer/nehubaContainer.style.css b/src/ui/nehubaContainer/nehubaContainer.style.css
index ad3ebc005..8e7cf156d 100644
--- a/src/ui/nehubaContainer/nehubaContainer.style.css
+++ b/src/ui/nehubaContainer/nehubaContainer.style.css
@@ -2,4 +2,51 @@
 {
   width:100%;
   height:100%;
+  position:relative;
+}
+
+div[textContainer]
+{
+  padding-left:1em;
+}
+
+input[navigateInput]
+{
+  background:none;
+  width : 16em;
+  padding-left: 0.5em;
+  font-size:85%;
+  box-shadow: inset 0px 2px 2px 2px rgba(0,0,0,0.05);
+}
+
+
+:host-context([darktheme=false]) input[navigateInput]
+{
+  border:rgba(0,0,0,0.2) solid 1px;
+}
+
+:host-context([darktheme=true]) input[navigateInput]
+{
+  border:rgba(255,255,255,0.2) solid 1px;
+}
+
+div[statusCard]
+{
+  position:absolute;
+  left:1em;
+  bottom:1em;
+  width : 20em;
+  height:7em;
+  pointer-events: all;
+}
+
+:host-context([darktheme=false]) div[statusCard]
+{
+  background-color:rgba(230,230,230,0.8);
+}
+
+:host-context([darktheme=true]) div[statusCard]
+{
+  background-color:rgba(20,20,20,0.8);
+  color : rgba(250,250,250,0.8);
 }
\ No newline at end of file
diff --git a/src/ui/nehubaContainer/nehubaContainer.template.html b/src/ui/nehubaContainer/nehubaContainer.template.html
index 56b1e3694..ec4140c09 100644
--- a/src/ui/nehubaContainer/nehubaContainer.template.html
+++ b/src/ui/nehubaContainer/nehubaContainer.template.html
@@ -1,4 +1,37 @@
 <ng-template #container>
 </ng-template>
 <ui-splashscreen *ngIf = "!viewerLoaded">
-</ui-splashscreen>
\ No newline at end of file
+</ui-splashscreen>
+<layout-floating-container
+  *ngIf = "viewerLoaded">
+  <div statusCard>
+
+    <span 
+      class = "btn btn-link"
+      (click)="statusPanelRealSpace = !statusPanelRealSpace">
+      {{statusPanelRealSpace ? 'RealSpace' : 'VoxelSpace'}}
+    </span>
+  
+    <br />
+    <div textContainer>
+      Navigation: 
+        <input 
+          (keydown.enter) = "textNavigateTo(navigateInput.value)"
+          (keydown.tab) = "textNavigateTo(navigateInput.value)"
+          [ngModel] = "navigationValue()" 
+          spellcheck = "false"
+          #navigateInput
+          navigateInput/>
+    
+      <br />
+      Mouse: 
+      <small>
+        {{ mouseCoord }}
+      </small> 
+      <br />
+      <small>
+        &nbsp;&nbsp;{{ onHoverSegment }}
+      </small>
+    </div>
+  </div>
+</layout-floating-container>
\ No newline at end of file
diff --git a/src/ui/nehubaContainer/nehubaViewer/nehubaViewer.component.ts b/src/ui/nehubaContainer/nehubaViewer/nehubaViewer.component.ts
index 5ba7f04b6..afcae1ca1 100644
--- a/src/ui/nehubaContainer/nehubaViewer/nehubaViewer.component.ts
+++ b/src/ui/nehubaContainer/nehubaViewer/nehubaViewer.component.ts
@@ -2,8 +2,8 @@ import { Component, AfterViewInit, OnDestroy } from "@angular/core";
 import * as export_nehuba from 'export_nehuba'
 
 import 'export_nehuba/dist/min/chunk_worker.bundle.js'
-import { Observable, Observer } from "rxjs";
-import { takeUntil } from 'rxjs/operators'
+import { Observable,Subject, Subscription } from 'rxjs'
+import { combineLatest } from 'rxjs/operators'
 
 @Component({
   templateUrl : './nehubaViewer.template.html',
@@ -16,10 +16,34 @@ export class NehubaViewerUnit implements AfterViewInit,OnDestroy{
   config : any
   nehubaViewer : any
 
+  _s1$ : any
+  _s2$ : any
+  _s3$ : any
+  _s4$ : any
+  _s5$ : any
+  _s6$ : any
+  _s7$ : any
+
+  _s$ : any[] = [
+    this._s1$,
+    this._s2$,
+    this._s3$,
+    this._s4$,
+    this._s5$,
+    this._s6$,
+    this._s7$
+  ]
+
   parcellationId : string
   regionsLabelIndexMap : Map<number,any>
-  shownSegment$ : any
-  mouseoverSegment$ : any
+
+  navPosReal : [number,number,number] = [0,0,0]
+  navPosVoxel : [number,number,number] = [0,0,0]
+
+  mousePosReal : [number,number,number] = [0,0,0]
+  mousePosVoxel : [number,number,number] = [0,0,0]
+
+  viewerState : ViewerState
 
   private defaultColormap : Map<number,{red:number,green:number,blue:number}>
   public mouseOverSegment : number | null
@@ -30,35 +54,67 @@ export class NehubaViewerUnit implements AfterViewInit,OnDestroy{
     if(this.regionsLabelIndexMap){
       this.loadNewParcellation()
     }
+
+    window['nehubaViewer'] = this.nehubaViewer
   }
   ngOnDestroy(){
-    this.nehubaViewer.dispose()
-    this.shownSegment$.unsubscribe()
-    this.mouseoverSegment$.unsubscribe()
+    this._s$.forEach(_s$=>{
+      if(_s$) _s$.unsubscribe()
+    })
   }
 
   public hideAllSeg(){
-    this.showAllSeg()
+    Array.from(this.regionsLabelIndexMap.keys()).forEach(idx=>
+      this.nehubaViewer.hideSegment(idx,{
+        name : this.parcellationId
+      }))
     this.nehubaViewer.showSegment(0,{
       name : this.parcellationId
     })
   }
 
   public showAllSeg(){
-    Array.from(this.regionsLabelIndexMap.keys()).forEach(idx=>
-      this.nehubaViewer.hideSegment(idx,{
-        name : this.parcellationId
-      }))
+    this.hideAllSeg()
+    this.nehubaViewer.hideSegment(0,{
+      name : this.parcellationId
+    })
   }
 
   public showSegs(array:number[]){
-    this.showAllSeg()
+    this.hideAllSeg()
+
+    this.nehubaViewer.hideSegment(0,{
+      name : this.parcellationId
+    })
+
     array.forEach(idx=>
       this.nehubaViewer.showSegment(idx,{
         name : this.parcellationId
       }))
   }
 
+  public setNavigationState(newViewerState:Partial<ViewerState>){
+    const {
+      orientation,
+      perspectiveOrientation,
+      perspectiveZoom,
+      position,
+      positionReal,
+      zoom
+    } = newViewerState
+
+    if( perspectiveZoom ) 
+      this.nehubaViewer.ngviewer.perspectiveNavigationState.zoomFactor.restoreState(perspectiveZoom)
+    if( zoom ) 
+      this.nehubaViewer.ngviewer.navigationState.zoomFactor.restoreState(zoom)
+    if( perspectiveOrientation ) 
+      this.nehubaViewer.ngviewer.perspectiveNavigationState.pose.orientation.restoreState( perspectiveOrientation )
+    if( orientation )
+      this.nehubaViewer.ngviewer.navigationState.pose.orientation.restoreState( orientation )
+    if( position )
+      this.nehubaViewer.setPosition( position , positionReal ? true : false )
+  }
+
   private updateColorMap(arrayIdx:number[]){
     const set = new Set(arrayIdx)
     const newColorMap = new Map(
@@ -78,7 +134,10 @@ export class NehubaViewerUnit implements AfterViewInit,OnDestroy{
       [
         ...Array.from(this.regionsLabelIndexMap.keys()),
         ...[65535]
-      ]
+      ],
+      {
+        name : this.parcellationId
+      }
     )
 
     this.defaultColormap = new Map(
@@ -93,13 +152,41 @@ export class NehubaViewerUnit implements AfterViewInit,OnDestroy{
       this.defaultColormap,
       { name : this.parcellationId })
 
-    if(this.shownSegment$) this.shownSegment$.unsubscribe()
-    if(this.mouseoverSegment$) this.mouseoverSegment$.unsubscribe()
-    this.shownSegment$ = this.nehubaViewer.getShownSegmentsObservable({
+    this._s$.forEach(_s$=>{
+      if(_s$) _s$.unsubscribe()
+    })
+
+    this._s1$ = this.nehubaViewer.getShownSegmentsObservable({
       name : this.parcellationId
     }).subscribe(arrayIdx=>this.updateColorMap(arrayIdx))
-    this.mouseoverSegment$ = this.nehubaViewer.mouseOver.segment
+
+    this._s2$ = this.nehubaViewer.mouseOver.segment
       .subscribe(obj=>this.mouseOverSegment = obj.segment)
+    this._s3$ = this.nehubaViewer.navigationState.all
+      .debounceTime(300)
+      .subscribe(({ orientation, perspectiveOrientation, perspectiveZoom, position, zoom })=>{
+        this.viewerState = {
+          orientation,
+          perspectiveOrientation,
+          perspectiveZoom,
+          zoom,
+          position,
+          positionReal : false
+        }
+      })
+
+    this._s4$ = this.nehubaViewer.navigationState.position.inRealSpace
+      .filter(v=>typeof v !== 'undefined' && v !== null)
+      .subscribe(v=>this.navPosReal=v)
+    this._s5$ = this.nehubaViewer.navigationState.position.inVoxels
+      .filter(v=>typeof v !== 'undefined' && v !== null)
+      .subscribe(v=>this.navPosVoxel=v)
+    this._s6$ = this.nehubaViewer.mousePosition.inRealSpace
+      .filter(v=>typeof v !== 'undefined' && v !== null)
+      .subscribe(v=>(this.mousePosReal=v))
+    this._s7$ = this.nehubaViewer.mousePosition.inVoxels
+      .filter(v=>typeof v !== 'undefined' && v !== null)
+      .subscribe(v=>(this.mousePosVoxel=v))
   }
 
   private getRgb(rgb?:number[]):{red:number,green:number,blue:number}{
@@ -115,4 +202,13 @@ export class NehubaViewerUnit implements AfterViewInit,OnDestroy{
       blue : rgb[2]
     }
   }
-}
\ No newline at end of file
+}
+
+export interface ViewerState{
+  orientation : [number,number,number,number]
+  perspectiveOrientation : [number,number,number,number]
+  perspectiveZoom : number
+  position : [number,number,number]
+  positionReal : boolean
+  zoom : number
+}
diff --git a/src/ui/ui.module.ts b/src/ui/ui.module.ts
index fa6c84d4d..c0f49352e 100644
--- a/src/ui/ui.module.ts
+++ b/src/ui/ui.module.ts
@@ -6,10 +6,25 @@ import { NehubaViewerUnit } from "./nehubaContainer/nehubaViewer/nehubaViewer.co
 import { NehubaContainner } from "./nehubaContainer/nehubaContainer.component";
 import { SplashScreen } from "./nehubaContainer/splashScreen/splashScreen.component";
 import { LayoutModule } from "../layouts/layout.module";
+import { FormsModule } from "@angular/forms";
+import { DataBrowserUI } from "./databrowser/databrowser.component";
+import { GroupDatasetByRegion } from "../util/pipes/groupDataEntriesByRegion.pipe";
+import { filterRegionDataEntries } from "../util/pipes/filterRegionDataEntries.pipe";
+import { FileViewer } from "./fileviewer/fileviewer.component";
+
+import { ChartsModule } from 'ng2-charts'
+import { RadarChart } from "./fileviewer/radar/radar.chart.component";
+import { LineChart } from "./fileviewer/line/line.chart.component";
+import { PathToNestedChildren } from "../util/pipes/pathToNestedChildren.pipe";
+import { CopyPropertyPipe } from "../util/pipes/copyProperty.pipe";
+import { GetUniqueProperty } from "../util/pipes/getUniqueProperty.pipe";
+import { FilterDataEntriesbyType } from "../util/pipes/filterDataEntriesByType.pipe";
 
 
 @NgModule({
   imports : [
+    ChartsModule,
+    FormsModule,
     BrowserModule,
     LayoutModule,
     ComponentsModule
@@ -17,7 +32,19 @@ import { LayoutModule } from "../layouts/layout.module";
   declarations : [
     NehubaContainner,
     NehubaViewerUnit,
-    SplashScreen
+    SplashScreen,
+    DataBrowserUI,
+    FileViewer,
+    RadarChart,
+    LineChart,
+
+    /* pipes */
+    GroupDatasetByRegion,
+    filterRegionDataEntries,
+    PathToNestedChildren,
+    CopyPropertyPipe,
+    GetUniqueProperty,
+    FilterDataEntriesbyType
   ],
   entryComponents : [
 
@@ -26,7 +53,9 @@ import { LayoutModule } from "../layouts/layout.module";
   ],
   exports : [
     NehubaContainner,
-    NehubaViewerUnit
+    NehubaViewerUnit,
+    DataBrowserUI,
+    FileViewer
   ]
 })
 
diff --git a/src/util/pipes/copyProperty.pipe.ts b/src/util/pipes/copyProperty.pipe.ts
new file mode 100644
index 000000000..2b599c629
--- /dev/null
+++ b/src/util/pipes/copyProperty.pipe.ts
@@ -0,0 +1,16 @@
+import { PipeTransform, Pipe } from "@angular/core";
+
+
+@Pipe({
+  name : 'copyProperty'
+})
+
+export class CopyPropertyPipe implements PipeTransform{
+  public transform(inputArray:any[],src:string,dest:string):any[]{
+    return inputArray.map(item=>{
+      const newObj = Object.assign({},item)
+      newObj[dest] = item[src]
+      return newObj
+    })
+  }
+}
\ No newline at end of file
diff --git a/src/util/pipes/filterDataEntries.pipe.ts b/src/util/pipes/filterDataEntries.pipe.ts
new file mode 100644
index 000000000..252b4611c
--- /dev/null
+++ b/src/util/pipes/filterDataEntries.pipe.ts
@@ -0,0 +1,15 @@
+import { Pipe, PipeTransform } from "@angular/core";
+import { DataEntry } from "../../services/stateStore.service";
+
+@Pipe({
+  name : 'filterDatasetSearchResult'
+})
+
+export class FilterDatasetSearchResult implements PipeTransform{
+  public transform(datasets:DataEntry[],filterArr:{name:string,enabled:boolean}[]):DataEntry[]{
+    return datasets.filter(dataset=>{
+      const filter = filterArr.find(obj=>obj.name == dataset.type)
+      return filter ? filter.enabled : false
+    })
+  }
+}
\ No newline at end of file
diff --git a/src/util/pipes/filterDataEntriesByType.pipe.ts b/src/util/pipes/filterDataEntriesByType.pipe.ts
new file mode 100644
index 000000000..f343173f3
--- /dev/null
+++ b/src/util/pipes/filterDataEntriesByType.pipe.ts
@@ -0,0 +1,13 @@
+import { PipeTransform, Pipe } from "@angular/core";
+import { DataEntry } from "../../services/stateStore.service";
+
+
+@Pipe({
+  name : 'filterDataEntriesByType'
+})
+
+export class FilterDataEntriesbyType implements PipeTransform{
+  public transform(dataEntries:DataEntry[],hideTypeSet:Set<string>):DataEntry[]{
+    return dataEntries.filter(dataEntry=>!hideTypeSet.has(dataEntry.type))
+  }
+}
\ No newline at end of file
diff --git a/src/util/pipes/filterNameBySearch.pipe.ts b/src/util/pipes/filterNameBySearch.pipe.ts
new file mode 100644
index 000000000..bc4413857
--- /dev/null
+++ b/src/util/pipes/filterNameBySearch.pipe.ts
@@ -0,0 +1,15 @@
+import { Pipe, PipeTransform } from "@angular/core";
+
+
+@Pipe({
+  name : 'filterNameBySearch'
+})
+
+export class FilterNameBySearch implements PipeTransform{
+  public transform(searchFields:string[],searchTerm:string){
+    return searchFields.some(searchField=>{
+      const regex = new RegExp(searchTerm,'i')
+      return regex.test(searchField)
+    })
+  }
+}
\ No newline at end of file
diff --git a/src/util/pipes/filterRegionDataEntries.pipe.ts b/src/util/pipes/filterRegionDataEntries.pipe.ts
new file mode 100644
index 000000000..ef2c4db67
--- /dev/null
+++ b/src/util/pipes/filterRegionDataEntries.pipe.ts
@@ -0,0 +1,15 @@
+import { Pipe, PipeTransform } from "@angular/core";
+import { DataEntry } from "../../services/stateStore.service";
+
+
+@Pipe({
+  name : 'filterRegionDataEntries'
+})
+
+export class filterRegionDataEntries implements PipeTransform{
+  public transform(arr:{region:any|null,searchResults:DataEntry[]}[],selectedRegions:any[]):{region:any|null,searchResults:DataEntry[]}[]{
+    return selectedRegions.length > 0 ? 
+      arr.filter(obj=> obj.region !== null && selectedRegions.findIndex(r=>obj.region.name === r.name) >= 0) :
+      arr
+  }
+}
\ No newline at end of file
diff --git a/src/util/pipes/getUniqueProperty.pipe.ts b/src/util/pipes/getUniqueProperty.pipe.ts
new file mode 100644
index 000000000..b7754ccaa
--- /dev/null
+++ b/src/util/pipes/getUniqueProperty.pipe.ts
@@ -0,0 +1,18 @@
+import { Pipe, PipeTransform } from "@angular/core";
+
+
+@Pipe({
+  name : 'getUniqueProperty'
+})
+
+export class GetUniqueProperty implements PipeTransform{
+  public transform(arr:any[],prop:string):string[]{
+    return [...arr.reduce((acc:Set<string>,curr)=>{
+      return curr[prop] && typeof curr[prop] === 'string' ? 
+        acc.has(curr[prop]) ?
+          acc :
+          acc.add(curr[prop]) :
+        acc
+    },new Set())]
+  }
+}
\ No newline at end of file
diff --git a/src/util/pipes/groupDataEntriesByRegion.pipe.ts b/src/util/pipes/groupDataEntriesByRegion.pipe.ts
new file mode 100644
index 000000000..3d2ab267d
--- /dev/null
+++ b/src/util/pipes/groupDataEntriesByRegion.pipe.ts
@@ -0,0 +1,48 @@
+import { Pipe, PipeTransform } from "@angular/core";
+import { DataEntry } from "../../services/stateStore.service";
+
+@Pipe({
+  name : 'groupDatasetByRegion'
+})
+export class GroupDatasetByRegion implements PipeTransform{
+  public transform(
+    datasets:DataEntry[],
+    regions:any[]
+  ) : {region:any|null,searchResults:DataEntry[]}[]
+  {
+    
+    return datasets.reduce((acc,curr)=>{
+      return (curr.regionName && curr.regionName.length > 0) ?
+        curr.regionName.reduce((acc2,reName)=>{
+          const idx = acc
+            .findIndex(it => it.region === null ? 
+              reName.regionName === 'none' :
+              it.region.name === reName.regionName )
+
+          return idx >= 0 ? 
+            acc2.map((v,i)=> i === idx ? Object.assign({},v,{searchResults : v.searchResults.concat(curr)}) : v ) :
+            acc2.concat({
+              region : this.getRegionFromRegionName(reName.regionName, regions),
+              searchResults : [ curr ]
+            })
+        },acc) :
+        acc.findIndex(it=>it.region==null) >= 0 ?
+          acc.map(it=>it.region === null ? 
+            Object.assign({},it,{
+              searchResults:it.searchResults.concat(curr)
+            }) : 
+          it) : 
+          acc.concat({
+            region : null,
+            searchResults : [curr]
+          })
+        
+    },[] as {region:any|null,searchResults:DataEntry[]}[])
+  }
+
+  private getRegionFromRegionName(regionName:string,regions:any[]):any|null{
+    const idx =  regions.findIndex(re=>re.name == regionName) 
+    return idx >= 0 ? regions[idx] : null
+  }
+
+}
\ No newline at end of file
diff --git a/src/util/pipes/pagination.pipe.ts b/src/util/pipes/pagination.pipe.ts
new file mode 100644
index 000000000..31f177c2e
--- /dev/null
+++ b/src/util/pipes/pagination.pipe.ts
@@ -0,0 +1,15 @@
+import { Pipe, PipeTransform } from "@angular/core";
+
+@Pipe({
+  name : 'searchResultPagination'
+})
+
+export class SearchResultPaginationPipe implements PipeTransform{
+  private _hitsPerPage:number = 15
+  private _pageNumber:number = 0
+  public transform(arr:any[],pageNumber?:number,hitsPerPage?:number){
+    return arr.filter((_,idx)=>
+      (idx >= (pageNumber === undefined ? this._pageNumber : pageNumber) * (hitsPerPage === undefined ? this._hitsPerPage : hitsPerPage)) &&
+      idx < ((pageNumber === undefined ? this._pageNumber : pageNumber) + 1) * (hitsPerPage === undefined ? this._hitsPerPage : hitsPerPage))
+  }
+}
\ No newline at end of file
diff --git a/src/util/pipes/pathToNestedChildren.pipe.spec.ts b/src/util/pipes/pathToNestedChildren.pipe.spec.ts
new file mode 100644
index 000000000..90819fdbc
--- /dev/null
+++ b/src/util/pipes/pathToNestedChildren.pipe.spec.ts
@@ -0,0 +1,3 @@
+/**
+ * path to nested children should successfully convert flat array to nested objects
+ */
\ No newline at end of file
diff --git a/src/util/pipes/pathToNestedChildren.pipe.ts b/src/util/pipes/pathToNestedChildren.pipe.ts
new file mode 100644
index 000000000..2ab5d634c
--- /dev/null
+++ b/src/util/pipes/pathToNestedChildren.pipe.ts
@@ -0,0 +1,110 @@
+import { PipeTransform, Pipe } from "@angular/core";
+
+/**
+ * The pipe transforms a flat array to a nested array, based on the path property, following Unix file path rule
+ */
+
+@Pipe({
+  name : 'pathToNestedChildren'
+})
+
+export class PathToNestedChildren implements PipeTransform{
+  public transform(array:HasPathProperty[],prop?:string):NestedChildren[]{
+    return this.constructDoubleHeirachy(array)
+  }
+
+  private constructDoubleHeirachy(array:HasPathProperty[]):NestedChildren[]{
+    return array.reduce((acc:NestedChildren[],curr:HasPathProperty)=>{
+      return this.checkEntryExist(acc,curr) ?
+        acc.map(item=>
+          this.checkEntryExist([item],curr) ?
+            this.concatItem(item,curr) :
+            item ) as NestedChildren[] :
+        acc.concat(
+          this.constructNewItem(curr)
+        ) as NestedChildren[]
+    },[] as NestedChildren[])
+  }
+
+  private constructNewItem(curr:HasPathProperty):NestedChildren{
+    const finalPath = this.getCurrentPath(curr) === curr.path
+    return Object.assign({},
+      finalPath ? 
+        curr : 
+        {},{
+          path : this.getCurrentPath(curr),
+          children : finalPath ? 
+            [] :
+            this.constructDoubleHeirachy(
+              [ this.getNextLevelHeirachy(curr) ]
+            )
+        })
+  }
+
+  private concatItem(item:NestedChildren,curr:HasPathProperty):NestedChildren{
+    const finalPath = this.getCurrentPath(curr) === curr.path
+    return Object.assign({},
+      item,
+      finalPath ? 
+        curr :
+        {},
+      {
+        children : item.children.concat(
+          finalPath ? 
+            [] :
+            this.constructDoubleHeirachy(
+              [ this.getNextLevelHeirachy(curr) ]
+            )
+        )
+      })
+  }
+
+  private checkEntryExist(acc:NestedChildren[],curr:HasPathProperty):boolean{
+    const path = this.getCurrentPath(curr)
+    return acc.findIndex(it=>it.path === path) >= 0
+  }
+
+  private getNextLevelHeirachy(file:HasPathProperty):HasPathProperty{
+    return Object.assign({},file,
+      {
+        path:file.path.slice(this.findRealIndex(file.path)+1)
+      })
+  }
+
+  private getNextPath(curr:HasPathProperty):string{
+    const realIdx = this.findRealIndex(curr.path)
+    return realIdx > 0 ? 
+      curr.path.slice(realIdx + 1) :
+      realIdx == 0 ? 
+        ' ' :
+        curr.path
+  }
+
+  private getCurrentPath(curr:HasPathProperty):string{
+    const realIdx = this.findRealIndex(curr.path)
+    return realIdx > 0 ? 
+      curr.path.slice(0,realIdx) :
+      realIdx == 0 ? 
+        ' ' :
+        curr.path
+  }
+
+  private findRealIndex(path:string):number{
+
+    let idx = path.indexOf('/')
+    while(path[idx-1] === '\\' && idx >= 0){
+      idx = path.indexOf('/',idx + 1)
+    }
+    return idx
+  }
+
+}
+
+export interface HasPathProperty{
+  path : string
+}
+
+export interface NestedChildren{
+  path : string
+  children : NestedChildren[]
+}
\ No newline at end of file
-- 
GitLab