diff --git a/.gitignore b/.gitignore
index 1278fe7eab77d49c0340f2ff492c77c8121364cf..383fd21c639c75b1cbbdcc8002bef28be69ec4c4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,3 +4,5 @@ package-lock.json
 src/res/raw
 src/plugin_examples/*/
 .vscode
+.idea
+deploy/datasets/data/
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 0000000000000000000000000000000000000000..7073e92f60c04685964761920c916969cee8c876
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,17 @@
+{
+    // Use IntelliSense to learn about possible attributes.
+    // Hover to view descriptions of existing attributes.
+    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
+    "version": "0.2.0",
+    "configurations": [
+        {
+            "type": "node",
+            "request": "launch",
+            "name": "Launch Program",
+            "program": "${workspaceFolder}/src/ui/databrowserModule/databrowser.service.ts",
+            "outFiles": [
+                "${workspaceFolder}/**/*.js"
+            ]
+        }
+    ]
+}
\ No newline at end of file
diff --git a/deploy/app.js b/deploy/app.js
index 7f77c725f5eaed6f71cc70dbc79466ebf24e61e0..e2260239c9dc507b9079e7a510b2750c20c5d27d 100644
--- a/deploy/app.js
+++ b/deploy/app.js
@@ -55,11 +55,13 @@ const templateRouter = require('./templates')
 const nehubaConfigRouter = require('./nehubaConfig')
 const datasetRouter = require('./datasets')
 const pluginRouter = require('./plugins')
+const previewRouter = require('./preview')
 
 app.use('/templates', templateRouter)
 app.use('/nehubaConfig', nehubaConfigRouter)
 app.use('/datasets', datasetRouter)
 app.use('/plugins', pluginRouter)
+app.use('/preview', previewRouter)
 
 const catchError = require('./catchError')
 app.use(catchError)
diff --git a/deploy/datasets/index.js b/deploy/datasets/index.js
index 0eb0b18e955f4d6e77c25061caae26a04bde6a79..abb1ef174225f58b62f5e9afdb3c9696589a5f05 100644
--- a/deploy/datasets/index.js
+++ b/deploy/datasets/index.js
@@ -3,6 +3,13 @@ const path = require('path')
 const fs = require('fs')
 const datasetsRouter = express.Router()
 const { init, getDatasets, getPreview } = require('./query')
+const url = require('url')
+const qs = require('querystring')
+
+const bodyParser = require('body-parser')
+datasetsRouter.use(bodyParser.urlencoded({ extended: false }))
+datasetsRouter.use(bodyParser.json())
+
 
 init().catch(e => {
   console.warn(`dataset init failed`, e)
@@ -13,6 +20,8 @@ datasetsRouter.use((req, res, next) => {
   next()
 })
 
+
+
 datasetsRouter.use('/spatialSearch', require('./spatialRouter'))
 
 datasetsRouter.get('/templateName/:templateName', (req, res, next) => {
@@ -49,7 +58,10 @@ datasetsRouter.get('/parcellationName/:parcellationName', (req, res, next) => {
 
 datasetsRouter.get('/preview/:datasetName', (req, res, next) => {
   const { datasetName } = req.params
-  getPreview({ datasetName })
+  const ref = url.parse(req.headers.referer)
+  const { templateSelected, parcellationSelected } = qs.parse(ref.query)
+  
+  getPreview({ datasetName, templateSelected })
     .then(preview => {
       if (preview) {
         res.status(200).json(preview)
@@ -95,4 +107,47 @@ datasetsRouter.get('/previewFile', (req, res) => {
   }
 })
 
+
+
+var JSZip = require("jszip");
+
+datasetsRouter.post("/downloadParcellationThemself", (req,res, next) => {
+
+
+  //ToDo We can add termsOfUse Text file somewhere - will be better
+  const termsOfUse = 'Access to the data and metadata provided through HBP Knowledge Graph Data Platform ' +
+      '("KG") requires that you cite and acknowledge said data and metadata according to the Terms and' +
+      ' Conditions of the Platform.\r\n## Citation requirements are outlined - https://www.humanbrainproject.eu/en/explore-the-brain/search-terms-of-use#citations' +
+      '\r\n## Acknowledgement requirements are outlined - https://www.humanbrainproject.eu/en/explore-the-brain/search-terms-of-use#acknowledgements' +
+      '\r\n## These outlines are based on the authoritative Terms and Conditions are found - https://www.humanbrainproject.eu/en/explore-the-brain/search-terms-of-use' +
+      '\r\n## If you do not accept the Terms & Conditions you are not permitted to access or use the KG to search for, to submit, to post, or to download any materials found there-in.'
+
+
+  var zip = new JSZip();
+
+  zip.file("credits.txt", req.body['publicationsText'])
+  zip.file("Terms of use.txt", termsOfUse)
+
+
+
+
+  //ToDo: Need to download files dynamically. Nii folder should be removed
+  if (req.body['niiFiles']) {
+    var nii = zip.folder("nifti")
+    const filepath = process.env.STORAGE_PATH || path.join(__dirname, 'nii')
+    req.body['niiFiles'].forEach(file => {
+      nii.file(file['file'], fs.readFileSync(path.join(filepath, file['file'])))
+    })
+  }
+
+  zip.generateAsync({type:"base64"})
+      .then(function (content) {
+        // location.href="data:application/zip;base64,"+content;
+        res.end(content)
+      });
+
+
+
+});
+
 module.exports = datasetsRouter
\ No newline at end of file
diff --git a/deploy/datasets/nii/jubrain-max-pmap-v22c_space-mnicolin27.nii b/deploy/datasets/nii/jubrain-max-pmap-v22c_space-mnicolin27.nii
new file mode 100644
index 0000000000000000000000000000000000000000..502dcb1e31b901ea3191c86717795d91880b9e3e
Binary files /dev/null and b/deploy/datasets/nii/jubrain-max-pmap-v22c_space-mnicolin27.nii differ
diff --git a/deploy/datasets/query.js b/deploy/datasets/query.js
index d35fd789deef6c8d57478671fe0cdca069f9e8da..17ee2c7b7832b51017d247ea667c9ccffe57d91d 100644
--- a/deploy/datasets/query.js
+++ b/deploy/datasets/query.js
@@ -189,17 +189,17 @@ exports.init = async () => {
 exports.getDatasets = ({ templateName, parcellationName, user }) => getDs({ user })
     .then(json => filter(json, {templateName, parcellationName}))
 
-exports.getPreview = ({ datasetName }) => getPreviewFile({ datasetName })
+exports.getPreview = ({ datasetName, templateSelected }) => getPreviewFile({ datasetName, templateSelected })
 
 /**
  * TODO
  * change to real spatial query
  */
 const cachedMap = new Map()
-const fetchSpatialDataFromKg = async ({ templateName }) => {
-  const cachedResult = cachedMap.get(templateName)
-  if (cachedResult) 
-    return cachedResult
+const fetchSpatialDataFromKg = async ({ templateName, queryArg }) => {
+  // const cachedResult = cachedMap.get(templateName)
+  // if (cachedResult) 
+  //   return cachedResult
     
   try {
     const filename = path.join(STORAGE_PATH, templateName + '.json')
@@ -210,8 +210,14 @@ const fetchSpatialDataFromKg = async ({ templateName }) => {
     
     const data = fs.readFileSync(filename, 'utf-8')
     const json = JSON.parse(data)
-    cachedMap.set(templateName, json)
-    return json
+    var splitQueryArg = queryArg.split('__');
+    const cubeDots = []    
+    splitQueryArg.forEach(element => {
+      cubeDots.push(element.split('_'))
+    });
+
+    // cachedMap.set(templateName, json.filter(filterByqueryArg(cubeDots)))
+    return json.filter(filterByqueryArg(cubeDots))
   } catch (e) {
     console.log('datasets#query.js#fetchSpatialDataFromKg', 'read file and parse json failed', e)
     return []
@@ -219,5 +225,21 @@ const fetchSpatialDataFromKg = async ({ templateName }) => {
 }
 
 exports.getSpatialDatasets = async ({ templateName, queryGeometry, queryArg }) => {
-  return await fetchSpatialDataFromKg({ templateName })
-}
\ No newline at end of file
+  return await fetchSpatialDataFromKg({ templateName, queryArg })
+}
+
+
+function filterByqueryArg(cubeDots) {
+  return function (item) {
+    const px = item.geometry.position[0]
+    const py = item.geometry.position[1]
+    const pz = item.geometry.position[2]
+    if (cubeDots[0][0] <= px && px <= cubeDots[1][0] 
+      && cubeDots[0][1] <= py && py <= cubeDots[1][1] 
+      && cubeDots[0][2] <= pz && pz <= cubeDots[1][2]) {
+      return true;
+    }
+  } 
+  return false;   
+}
+    
diff --git a/deploy/datasets/supplements/data/pmapJuBrainV17Preview.json b/deploy/datasets/supplements/data/pmapJuBrainV17Preview.json
new file mode 100644
index 0000000000000000000000000000000000000000..b75b00c83a118e77f837d3c76282e328ffb7819e
--- /dev/null
+++ b/deploy/datasets/supplements/data/pmapJuBrainV17Preview.json
@@ -0,0 +1,3599 @@
+[
+  [
+    "Probabilistic cytoarchitectonic map of Area Fp2 (FPole) (v2.4)",
+    [
+      {
+        "filename": "Area Fp2 (FPole) [v2.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area Fp2 (FPole) [v2.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/FrontalPole_Fp2_l_N10_nlin2MNI152ASYM2009C_2.4_publicP_b8d8440ba6ff4ee72e8184b4a71d44d2.nii.gz"
+      },
+      {
+        "filename": "Area Fp2 (FPole) [v2.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area Fp2 (FPole) [v2.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/FrontalPole_Fp2_l_N10_nlin2Stdcolin27_2.4_publicP_15ceb771b7ce41cf5db287ca4d09ef13.nii.gz"
+      },
+      {
+        "filename": "Area Fp2 (FPole) [v2.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area Fp2 (FPole) [v2.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/FrontalPole_Fp2_r_N10_nlin2MNI152ASYM2009C_2.4_publicP_78d77928de1e288d9fc00d23eee7de12.nii.gz"
+      },
+      {
+        "filename": "Area Fp2 (FPole) [v2.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area Fp2 (FPole) [v2.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/FrontalPole_Fp2_r_N10_nlin2Stdcolin27_2.4_publicP_8590239cbabdbb022a92cf2d783b5525.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area Fp1 (FPole) (v2.4)",
+    [
+      {
+        "filename": "Area Fp1 (FPole) [v2.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area Fp1 (FPole) [v2.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/FrontalPole_Fp1_l_N10_nlin2MNI152ASYM2009C_2.4_publicP_21db93ae699b350d3f7fe2e9637a09d3.nii.gz"
+      },
+      {
+        "filename": "Area Fp1 (FPole) [v2.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area Fp1 (FPole) [v2.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/FrontalPole_Fp1_l_N10_nlin2Stdcolin27_2.4_publicP_649d51f8daede7444548e13722b688ef.nii.gz"
+      },
+      {
+        "filename": "Area Fp1 (FPole) [v2.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area Fp1 (FPole) [v2.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/FrontalPole_Fp1_r_N10_nlin2MNI152ASYM2009C_2.4_publicP_640c94e1dcb94d8921a6e6236ea90243.nii.gz"
+      },
+      {
+        "filename": "Area Fp1 (FPole) [v2.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area Fp1 (FPole) [v2.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/FrontalPole_Fp1_r_N10_nlin2Stdcolin27_2.4_publicP_aaf0923c7315332fd3c14bbe15360aca.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area hIP1 (IPS) (v6.1)",
+    [
+      {
+        "filename": "Area hIP1 (IPS) [v6.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hIP1 (IPS) [v6.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/AIPS_IP1_l_N10_nlin2MNI152ASYM2009C_6.1_publicP_5c0b00a1393dc8c54505db7207f1097c.nii.gz"
+      },
+      {
+        "filename": "Area hIP1 (IPS) [v6.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hIP1 (IPS) [v6.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/AIPS_IP1_l_N10_nlin2Stdcolin27_6.1_publicP_828db42625a675c3a954c6be2e2b3b88.nii.gz"
+      },
+      {
+        "filename": "Area hIP1 (IPS) [v6.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hIP1 (IPS) [v6.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/AIPS_IP1_r_N10_nlin2MNI152ASYM2009C_6.1_publicP_a411667d98b0ebc9b772565131414de1.nii.gz"
+      },
+      {
+        "filename": "Area hIP1 (IPS) [v6.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hIP1 (IPS) [v6.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/AIPS_IP1_r_N10_nlin2Stdcolin27_6.1_publicP_667c85bcddc6c019b2bdd45fc499737a.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area hIP2 (IPS) (v6.1)",
+    [
+      {
+        "filename": "Area hIP2 (IPS) [v6.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hIP2 (IPS) [v6.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/AIPS_IP2_l_N10_nlin2MNI152ASYM2009C_6.1_publicP_1ae25994cd5faa62178a54a4110cac1e.nii.gz"
+      },
+      {
+        "filename": "Area hIP2 (IPS) [v6.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hIP2 (IPS) [v6.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/AIPS_IP2_l_N10_nlin2Stdcolin27_6.1_publicP_1c0b051794d33c3042124e8ff29838a0.nii.gz"
+      },
+      {
+        "filename": "Area hIP2 (IPS) [v6.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hIP2 (IPS) [v6.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/AIPS_IP2_r_N10_nlin2MNI152ASYM2009C_6.1_publicP_fff0207eaabf4a9e3e019f94a7782922.nii.gz"
+      },
+      {
+        "filename": "Area hIP2 (IPS) [v6.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hIP2 (IPS) [v6.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/AIPS_IP2_r_N10_nlin2Stdcolin27_6.1_publicP_ddcac02713410823e3545a59be530553.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area hIP3 (IPS) (v8.4)",
+    [
+      {
+        "filename": "Area hIP3 (IPS) [v8.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hIP3 (IPS) [v8.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/AIPS_IP3_l_N10_nlin2MNI152ASYM2009C_8.4_publicP_b125d0e714a3b435ecb517fb1af63842.nii.gz"
+      },
+      {
+        "filename": "Area hIP3 (IPS) [v8.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hIP3 (IPS) [v8.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/AIPS_IP3_l_N10_nlin2Stdcolin27_8.4_publicP_5894ab3681e1b909971d902f17707d8a.nii.gz"
+      },
+      {
+        "filename": "Area hIP3 (IPS) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hIP3 (IPS) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/AIPS_IP3_r_N10_nlin2MNI152ASYM2009C_8.4_publicP_2d3134fd35e30da41ab4395a8f120b31.nii.gz"
+      },
+      {
+        "filename": "Area hIP3 (IPS) [v8.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hIP3 (IPS) [v8.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/AIPS_IP3_r_N10_nlin2Stdcolin27_8.4_publicP_c74eb8ebcf63468f544e4086d2b21348.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of CM (Amygdala) (v6.4)",
+    [
+      {
+        "filename": "CM (Amygdala) [v6.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "CM (Amygdala) [v6.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Amygdala_CM_l_N10_nlin2MNI152ASYM2009C_6.4_publicP_7f0156fe3f198f6502765e260d0fc906.nii.gz"
+      },
+      {
+        "filename": "CM (Amygdala) [v6.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "CM (Amygdala) [v6.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Amygdala_CM_l_N10_nlin2Stdcolin27_6.4_publicP_8d55f13bab6c2faa29a1d3754369254a.nii.gz"
+      },
+      {
+        "filename": "CM (Amygdala) [v6.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "CM (Amygdala) [v6.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Amygdala_CM_r_N10_nlin2MNI152ASYM2009C_6.4_publicP_eb34fb429d4eb1a6d86d0afda626e456.nii.gz"
+      },
+      {
+        "filename": "CM (Amygdala) [v6.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "CM (Amygdala) [v6.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Amygdala_CM_r_N10_nlin2Stdcolin27_6.4_publicP_77b53c30c9eeccd49eacfeabf1b1749b.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area Id6 (Insula) (v3.1)",
+    [
+      {
+        "filename": "Area Id6 (Insula) [v3.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area Id6 (Insula) [v3.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Id6_l_N10_nlin2MNI152ASYM2009C_3.1_publicDOI_f9be3b6ea62c4a0e9ee3b360c504be5b.nii.gz"
+      },
+      {
+        "filename": "Area Id6 (Insula) [v3.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area Id6 (Insula) [v3.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Id6_l_N10_nlin2Stdcolin27_3.1_publicDOI_faf17b46bcdda12944790fc12f5f91ff.nii.gz"
+      },
+      {
+        "filename": "Area Id6 (Insula) [v3.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area Id6 (Insula) [v3.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Id6_r_N10_nlin2MNI152ASYM2009C_3.1_publicDOI_dc6814386bbab79325bc1bfb4ca9aa1e.nii.gz"
+      },
+      {
+        "filename": "Area Id6 (Insula) [v3.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area Id6 (Insula) [v3.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Id6_r_N10_nlin2Stdcolin27_3.1_publicDOI_13a51145c04f8ff160009f50c312b834.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area Id7 (Insula) (v6.1)",
+    [
+      {
+        "filename": "Area Id7 (Insula) [v6.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area Id7 (Insula) [v6.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Id7_l_N10_nlin2MNI152ASYM2009C_6.1_publicDOI_ff4f0b96f9355bd5e924191a126e7faa.nii.gz"
+      },
+      {
+        "filename": "Area Id7 (Insula) [v6.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area Id7 (Insula) [v6.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Id7_l_N10_nlin2Stdcolin27_6.1_publicDOI_f2f17c06c0a643ce49d98b126a619601.nii.gz"
+      },
+      {
+        "filename": "Area Id7 (Insula) [v6.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area Id7 (Insula) [v6.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Id7_r_N10_nlin2MNI152ASYM2009C_6.1_publicDOI_02b5d10dbbb00b886a864301521bdd9c.nii.gz"
+      },
+      {
+        "filename": "Area Id7 (Insula) [v6.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area Id7 (Insula) [v6.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Id7_r_N10_nlin2Stdcolin27_6.1_publicDOI_683c76c33eaea809fcf576f4e8dcbbb3.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of IF (Amygdala) (v6.4)",
+    [
+      {
+        "filename": "IF (Amygdala) [v6.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "IF (Amygdala) [v6.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Amygdala_IF_l_N10_nlin2MNI152ASYM2009C_6.4_publicP_7ed573bb867fd5b59b89ff3fe66f934a.nii.gz"
+      },
+      {
+        "filename": "IF (Amygdala) [v6.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "IF (Amygdala) [v6.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Amygdala_IF_l_N10_nlin2Stdcolin27_6.4_publicP_84f75af1298ba054b19f5c5b437cd279.nii.gz"
+      },
+      {
+        "filename": "IF (Amygdala) [v6.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "IF (Amygdala) [v6.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Amygdala_IF_r_N10_nlin2MNI152ASYM2009C_6.4_publicP_74b5ee9c4204b0512afa6ce3199a033a.nii.gz"
+      },
+      {
+        "filename": "IF (Amygdala) [v6.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "IF (Amygdala) [v6.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Amygdala_IF_r_N10_nlin2Stdcolin27_6.4_publicP_547c4687931539b4eab1883219f1eeed.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area Ig1 (Insula) (v13.1)",
+    [
+      {
+        "filename": "Area Ig1 (Insula) [v13.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area Ig1 (Insula) [v13.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Ig1_l_N10_nlin2MNI152ASYM2009C_13.1_publicP_b659cb9b754d41229061b52f2dbeeff0.nii.gz"
+      },
+      {
+        "filename": "Area Ig1 (Insula) [v13.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area Ig1 (Insula) [v13.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Ig1_l_N10_nlin2Stdcolin27_13.1_publicP_c2f1f49fa6544f1c6386897250d0b3cf.nii.gz"
+      },
+      {
+        "filename": "Area Ig1 (Insula) [v13.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area Ig1 (Insula) [v13.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Ig1_r_N10_nlin2MNI152ASYM2009C_13.1_publicP_1bf5001025e34de9da6ff59cd3ba048e.nii.gz"
+      },
+      {
+        "filename": "Area Ig1 (Insula) [v13.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area Ig1 (Insula) [v13.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Ig1_r_N10_nlin2Stdcolin27_13.1_publicP_3143abb5953077f77f51e2f2231e557e.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of LB (Amygdala) (v6.4)",
+    [
+      {
+        "filename": "LB (Amygdala) [v6.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "LB (Amygdala) [v6.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Amygdala_LB_l_N10_nlin2MNI152ASYM2009C_6.4_publicP_b636640a2282a29523d1e1d531b866d3.nii.gz"
+      },
+      {
+        "filename": "LB (Amygdala) [v6.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "LB (Amygdala) [v6.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Amygdala_LB_l_N10_nlin2Stdcolin27_6.4_publicP_c0f3b866f2fbd0e69e19594e2b49bc87.nii.gz"
+      },
+      {
+        "filename": "LB (Amygdala) [v6.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "LB (Amygdala) [v6.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Amygdala_LB_r_N10_nlin2MNI152ASYM2009C_6.4_publicP_2f610b4be8af8aff267024117f550ddf.nii.gz"
+      },
+      {
+        "filename": "LB (Amygdala) [v6.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "LB (Amygdala) [v6.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Amygdala_LB_r_N10_nlin2Stdcolin27_6.4_publicP_d5f2f1207c0d4990e06267f0c8262d53.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area Ig2 (Insula) (v13.1)",
+    [
+      {
+        "filename": "Area Ig2 (Insula) [v13.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area Ig2 (Insula) [v13.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Ig2_l_N10_nlin2MNI152ASYM2009C_13.1_publicP_e1defc10cb006c64ad31bf10ddb5b1a1.nii.gz"
+      },
+      {
+        "filename": "Area Ig2 (Insula) [v13.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area Ig2 (Insula) [v13.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Ig2_l_N10_nlin2Stdcolin27_13.1_publicP_f02dd3446cff31f94e4f75b1dd145122.nii.gz"
+      },
+      {
+        "filename": "Area Ig2 (Insula) [v13.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area Ig2 (Insula) [v13.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Ig2_r_N10_nlin2MNI152ASYM2009C_13.1_publicP_cf1b3cc5b32d89ea8937c189f218f726.nii.gz"
+      },
+      {
+        "filename": "Area Ig2 (Insula) [v13.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area Ig2 (Insula) [v13.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Ig2_r_N10_nlin2Stdcolin27_13.1_publicP_d7cbe960f4d01de62a6621ba53084fae.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of MF (Amygdala) (v6.4)",
+    [
+      {
+        "filename": "MF (Amygdala) [v6.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "MF (Amygdala) [v6.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Amygdala_MF_l_N10_nlin2MNI152ASYM2009C_6.4_publicP_f7f3ec6cff03ca0a9e6556fab15e0d86.nii.gz"
+      },
+      {
+        "filename": "MF (Amygdala) [v6.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "MF (Amygdala) [v6.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Amygdala_MF_l_N10_nlin2Stdcolin27_6.4_publicP_68bfc4e1ca51ebd1e8f37cd28b43a2c1.nii.gz"
+      },
+      {
+        "filename": "MF (Amygdala) [v6.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "MF (Amygdala) [v6.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Amygdala_MF_r_N10_nlin2MNI152ASYM2009C_6.4_publicP_ef50d13c143d16b3e1f06cfdd57badbc.nii.gz"
+      },
+      {
+        "filename": "MF (Amygdala) [v6.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "MF (Amygdala) [v6.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Amygdala_MF_r_N10_nlin2Stdcolin27_6.4_publicP_39ae43f234d7908175c30bda61f59d55.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area 4a (PreCG) (v9.4)",
+    [
+      {
+        "filename": "Area 4a (PreCG) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 4a (PreCG) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Motor_4a_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_01413787435fa644af34b2913b9771ed.nii.gz"
+      },
+      {
+        "filename": "Area 4a (PreCG) [v9.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 4a (PreCG) [v9.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Motor_4a_l_N10_nlin2Stdcolin27_9.4_publicP_967ad34852b2b9fe3c92d8c17097a66a.nii.gz"
+      },
+      {
+        "filename": "Area 4a (PreCG) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 4a (PreCG) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Motor_4a_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_f91dc988bd91110bcc58057f905dfd3c.nii.gz"
+      },
+      {
+        "filename": "Area 4a (PreCG) [v9.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 4a (PreCG) [v9.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Motor_4a_r_N10_nlin2Stdcolin27_9.4_publicP_a8ae6146c4f0e1a7062686fd8828c149.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of SF (Amygdala) (v6.4)",
+    [
+      {
+        "filename": "SF (Amygdala) [v6.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "SF (Amygdala) [v6.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Amygdala_SF_l_N10_nlin2MNI152ASYM2009C_6.4_publicP_e0f70d4f3183532bad53cc9b7ab096dd.nii.gz"
+      },
+      {
+        "filename": "SF (Amygdala) [v6.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "SF (Amygdala) [v6.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Amygdala_SF_l_N10_nlin2Stdcolin27_6.4_publicP_a9119350394bdd2f70dfebe720f5128b.nii.gz"
+      },
+      {
+        "filename": "SF (Amygdala) [v6.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "SF (Amygdala) [v6.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Amygdala_SF_r_N10_nlin2MNI152ASYM2009C_6.4_publicP_7e65240d20a4c28139b3012d401c3bb0.nii.gz"
+      },
+      {
+        "filename": "SF (Amygdala) [v6.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "SF (Amygdala) [v6.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Amygdala_SF_r_N10_nlin2Stdcolin27_6.4_publicP_abd7559e74f7167161273c1c394027d4.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area 4p (PreCG) (v9.4)",
+    [
+      {
+        "filename": "Area 4p (PreCG) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 4p (PreCG) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Motor_4p_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_647ca28e87fc9be073617bbe8b5bad86.nii.gz"
+      },
+      {
+        "filename": "Area 4p (PreCG) [v9.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 4p (PreCG) [v9.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Motor_4p_l_N10_nlin2Stdcolin27_9.4_publicP_fae2f48dfd8b980f3818a7145d0d4dde.nii.gz"
+      },
+      {
+        "filename": "Area 4p (PreCG) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 4p (PreCG) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Motor_4p_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_2725e886a126b53cfe63447ade13fa56.nii.gz"
+      },
+      {
+        "filename": "Area 4p (PreCG) [v9.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 4p (PreCG) [v9.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Motor_4p_r_N10_nlin2Stdcolin27_9.4_publicP_b99378d72b97c81ef4f4f2f9e7c6ac19.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of VTM (Amygdala) (v6.4)",
+    [
+      {
+        "filename": "VTM (Amygdala) [v6.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "VTM (Amygdala) [v6.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Amygdala_VTM_l_N10_nlin2MNI152ASYM2009C_6.4_publicP_3b1ee29b8db55ee9a9bf4229bf24d656.nii.gz"
+      },
+      {
+        "filename": "VTM (Amygdala) [v6.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "VTM (Amygdala) [v6.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Amygdala_VTM_l_N10_nlin2Stdcolin27_6.4_publicP_e9cc71b8b7cadcb07a9fb45099934d06.nii.gz"
+      },
+      {
+        "filename": "VTM (Amygdala) [v6.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "VTM (Amygdala) [v6.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Amygdala_VTM_r_N10_nlin2MNI152ASYM2009C_6.4_publicP_8607d965d235dfa99b8c3f060676bd14.nii.gz"
+      },
+      {
+        "filename": "VTM (Amygdala) [v6.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "VTM (Amygdala) [v6.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Amygdala_VTM_r_N10_nlin2Stdcolin27_6.4_publicP_dbfa70d00d5a54048d9ca8d94aadd1c2.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area Fo1 (OFC) (v3.4)",
+    [
+      {
+        "filename": "Area Fo1 (OFC) [v3.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area Fo1 (OFC) [v3.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo1_l_N10_nlin2MNI152ASYM2009C_3.4_publicP_b76752e4ec43a64644f4a66658fed730.nii.gz"
+      },
+      {
+        "filename": "Area Fo1 (OFC) [v3.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area Fo1 (OFC) [v3.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo1_l_N10_nlin2Stdcolin27_3.4_publicP_960a53948ed107f3d09f6adf79cbb80a.nii.gz"
+      },
+      {
+        "filename": "Area Fo1 (OFC) [v3.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area Fo1 (OFC) [v3.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo1_r_N10_nlin2MNI152ASYM2009C_3.4_publicP_dc994a89413230daa7a59d4104903cb9.nii.gz"
+      },
+      {
+        "filename": "Area Fo1 (OFC) [v3.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area Fo1 (OFC) [v3.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo1_r_N10_nlin2Stdcolin27_3.4_publicP_aaa29c0e90498575ad47fb91c00248ad.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area STS1 (STS) (v3.1)",
+    [
+      {
+        "filename": "Area STS1 (STS) [v3.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area STS1 (STS) [v3.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Auditory_STS1_l_N10_nlin2MNI152ASYM2009C_3.1_publicDOI_35e08e97ab66dad36d8f02ac0c9b1dd5.nii.gz"
+      },
+      {
+        "filename": "Area STS1 (STS) [v3.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area STS1 (STS) [v3.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Auditory_STS1_l_N10_nlin2Stdcolin27_3.1_publicDOI_08e75c6446f93d9bc7c39fa4a2a715da.nii.gz"
+      },
+      {
+        "filename": "Area STS1 (STS) [v3.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area STS1 (STS) [v3.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Auditory_STS1_r_N10_nlin2MNI152ASYM2009C_3.1_publicDOI_e3f43aa517e0b1ccee53510ac28d73f7.nii.gz"
+      },
+      {
+        "filename": "Area STS1 (STS) [v3.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area STS1 (STS) [v3.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Auditory_STS1_r_N10_nlin2Stdcolin27_3.1_publicDOI_63fc6556f6555e1eb5cf57200a7a6677.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area Fo2 (OFC) (v3.4)",
+    [
+      {
+        "filename": "Area Fo2 (OFC) [v3.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area Fo2 (OFC) [v3.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo2_l_N10_nlin2MNI152ASYM2009C_3.4_publicP_9057b123cfeca54e02e5e9efc5a04dc9.nii.gz"
+      },
+      {
+        "filename": "Area Fo2 (OFC) [v3.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area Fo2 (OFC) [v3.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo2_l_N10_nlin2Stdcolin27_3.4_publicP_51dd6cb82eb566bb0a87a2bd61ba549f.nii.gz"
+      },
+      {
+        "filename": "Area Fo2 (OFC) [v3.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area Fo2 (OFC) [v3.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo2_r_N10_nlin2MNI152ASYM2009C_3.4_publicP_abfaca459f6612336d3c6bda36e4d1db.nii.gz"
+      },
+      {
+        "filename": "Area Fo2 (OFC) [v3.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area Fo2 (OFC) [v3.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo2_r_N10_nlin2Stdcolin27_3.4_publicP_2993d715ed11871738e21953c1b93134.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area STS2 (STS) (v3.1)",
+    [
+      {
+        "filename": "Area STS2 (STS) [v3.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area STS2 (STS) [v3.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Auditory_STS2_l_N10_nlin2MNI152ASYM2009C_3.1_publicDOI_9863d498fad2329d136af9b25e10a93f.nii.gz"
+      },
+      {
+        "filename": "Area STS2 (STS) [v3.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area STS2 (STS) [v3.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Auditory_STS2_l_N10_nlin2Stdcolin27_3.1_publicDOI_4bab85dc8ab1547e1dcf842a06ed1efa.nii.gz"
+      },
+      {
+        "filename": "Area STS2 (STS) [v3.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area STS2 (STS) [v3.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Auditory_STS2_r_N10_nlin2MNI152ASYM2009C_3.1_publicDOI_7a0524e4cf9b00435a6a8171436b8100.nii.gz"
+      },
+      {
+        "filename": "Area STS2 (STS) [v3.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area STS2 (STS) [v3.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Auditory_STS2_r_N10_nlin2Stdcolin27_3.1_publicDOI_cd667b25d5535ff74ce57baecd64a272.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area Fo3 (OFC) (v3.4)",
+    [
+      {
+        "filename": "Area Fo3 (OFC) [v3.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area Fo3 (OFC) [v3.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo3_l_N10_nlin2MNI152ASYM2009C_3.4_publicP_b35caf53bd38ac05bc10de2a73ec516a.nii.gz"
+      },
+      {
+        "filename": "Area Fo3 (OFC) [v3.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area Fo3 (OFC) [v3.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo3_l_N10_nlin2Stdcolin27_3.4_publicP_e314f4e0944f6f0dc273af9a69645b35.nii.gz"
+      },
+      {
+        "filename": "Area Fo3 (OFC) [v3.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area Fo3 (OFC) [v3.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo3_r_N10_nlin2MNI152ASYM2009C_3.4_publicP_c326c00231994112cd4d31e430e76ae5.nii.gz"
+      },
+      {
+        "filename": "Area Fo3 (OFC) [v3.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area Fo3 (OFC) [v3.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo3_r_N10_nlin2Stdcolin27_3.4_publicP_765b825bdf19beaade700c86b65a27ac.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area TE 1.0 (HESCHL) (v5.1)",
+    [
+      {
+        "filename": "Area TE 1.0 (HESCHL) [v5.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area TE 1.0 (HESCHL) [v5.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Auditory_Te10_l_N10_nlin2MNI152ASYM2009C_5.1_publicP_f5231652a1e4874e2b5aefb147324d99.nii.gz"
+      },
+      {
+        "filename": "Area TE 1.0 (HESCHL) [v5.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area TE 1.0 (HESCHL) [v5.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Auditory_Te10_l_N10_nlin2Stdcolin27_5.1_publicP_be05cf2a0b23ccd1cdf2271345cbe45d.nii.gz"
+      },
+      {
+        "filename": "Area TE 1.0 (HESCHL) [v5.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area TE 1.0 (HESCHL) [v5.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Auditory_Te10_r_N10_nlin2MNI152ASYM2009C_5.1_publicP_6c782e3d47b34522a2c7c86736785154.nii.gz"
+      },
+      {
+        "filename": "Area TE 1.0 (HESCHL) [v5.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area TE 1.0 (HESCHL) [v5.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Auditory_Te10_r_N10_nlin2Stdcolin27_5.1_publicP_12e3532cc654e44a531eadb30caf0051.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area Fo4 (OFC) (v2.1)",
+    [
+      {
+        "filename": "Area Fo4 (OFC) [v2.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area Fo4 (OFC) [v2.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo4_l_N10_nlin2MNI152ASYM2009C_2.1_publicDOI_859db429081144422ef1ebe055725a08.nii.gz"
+      },
+      {
+        "filename": "Area Fo4 (OFC) [v2.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area Fo4 (OFC) [v2.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo4_l_N10_nlin2Stdcolin27_2.1_publicDOI_2df70e06cfd5cfa015ca9558ff732dae.nii.gz"
+      },
+      {
+        "filename": "Area Fo4 (OFC) [v2.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area Fo4 (OFC) [v2.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo4_r_N10_nlin2MNI152ASYM2009C_2.1_publicDOI_71a978cf4004bbc4a5e82338412b2e08.nii.gz"
+      },
+      {
+        "filename": "Area Fo4 (OFC) [v2.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area Fo4 (OFC) [v2.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo4_r_N10_nlin2Stdcolin27_2.1_publicDOI_b61321e1759cee1e45c2208e678a3943.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area TE 1.1 (HESCHL) (v5.1)",
+    [
+      {
+        "filename": "Area TE 1.1 (HESCHL) [v5.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area TE 1.1 (HESCHL) [v5.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Auditory_Te11_l_N10_nlin2MNI152ASYM2009C_5.1_publicP_581d86297fa5d38371013e6c8fd0dddf.nii.gz"
+      },
+      {
+        "filename": "Area TE 1.1 (HESCHL) [v5.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area TE 1.1 (HESCHL) [v5.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Auditory_Te11_l_N10_nlin2Stdcolin27_5.1_publicP_7bb30fe3a0a0cf415780103440b15dbe.nii.gz"
+      },
+      {
+        "filename": "Area TE 1.1 (HESCHL) [v5.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area TE 1.1 (HESCHL) [v5.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Auditory_Te11_r_N10_nlin2MNI152ASYM2009C_5.1_publicP_ecf57e88c589320863218aa0e19dd47f.nii.gz"
+      },
+      {
+        "filename": "Area TE 1.1 (HESCHL) [v5.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area TE 1.1 (HESCHL) [v5.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Auditory_Te11_r_N10_nlin2Stdcolin27_5.1_publicP_6eb19b3b79d6ff1f27500016ed215dc1.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area Fo5 (OFC) (v2.1)",
+    [
+      {
+        "filename": "Area Fo5 (OFC) [v2.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area Fo5 (OFC) [v2.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo5_l_N10_nlin2MNI152ASYM2009C_2.1_publicDOI_80964dd50cce23aa6e01dfe8e0467452.nii.gz"
+      },
+      {
+        "filename": "Area Fo5 (OFC) [v2.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area Fo5 (OFC) [v2.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo5_l_N10_nlin2Stdcolin27_2.1_publicDOI_74ea50aa11cb4d70f5f8e76e595c2e30.nii.gz"
+      },
+      {
+        "filename": "Area Fo5 (OFC) [v2.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area Fo5 (OFC) [v2.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo5_r_N10_nlin2MNI152ASYM2009C_2.1_publicDOI_6e4b48db27652889ee3d45efbe0b0465.nii.gz"
+      },
+      {
+        "filename": "Area Fo5 (OFC) [v2.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area Fo5 (OFC) [v2.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo5_r_N10_nlin2Stdcolin27_2.1_publicDOI_d31f76f366fcbce1ecefd0d1c681c0fe.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area TE 1.2 (HESCHL) (v5.1)",
+    [
+      {
+        "filename": "Area TE 1.2 (HESCHL) [v5.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area TE 1.2 (HESCHL) [v5.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Auditory_Te12_l_N10_nlin2MNI152ASYM2009C_5.1_publicP_bda66ce8906251c75ef771084941709f.nii.gz"
+      },
+      {
+        "filename": "Area TE 1.2 (HESCHL) [v5.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area TE 1.2 (HESCHL) [v5.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Auditory_Te12_l_N10_nlin2Stdcolin27_5.1_publicP_ae0c6a3a2c11d13f70e25df33dde9f86.nii.gz"
+      },
+      {
+        "filename": "Area TE 1.2 (HESCHL) [v5.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area TE 1.2 (HESCHL) [v5.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Auditory_Te12_r_N10_nlin2MNI152ASYM2009C_5.1_publicP_c4445d58dc84a7f8214f0888cf46c153.nii.gz"
+      },
+      {
+        "filename": "Area TE 1.2 (HESCHL) [v5.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area TE 1.2 (HESCHL) [v5.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Auditory_Te12_r_N10_nlin2Stdcolin27_5.1_publicP_1e94be7f543a6aa668fb776361b6e58a.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area Fo6 (OFC) (v2.1)",
+    [
+      {
+        "filename": "Area Fo6 (OFC) [v2.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area Fo6 (OFC) [v2.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo6_l_N10_nlin2MNI152ASYM2009C_2.1_publicDOI_374b5da5692230b1dde61b8f24e5a869.nii.gz"
+      },
+      {
+        "filename": "Area Fo6 (OFC) [v2.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area Fo6 (OFC) [v2.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo6_l_N10_nlin2Stdcolin27_2.1_publicDOI_e0280f196fcc134583b19342a2b4b407.nii.gz"
+      },
+      {
+        "filename": "Area Fo6 (OFC) [v2.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area Fo6 (OFC) [v2.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo6_r_N10_nlin2MNI152ASYM2009C_2.1_publicDOI_af30bdb7baf3287cd9f417c9e70992e2.nii.gz"
+      },
+      {
+        "filename": "Area Fo6 (OFC) [v2.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area Fo6 (OFC) [v2.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo6_r_N10_nlin2Stdcolin27_2.1_publicDOI_db7ea44b1acf9a9a11c471874ae702cf.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area TE 3 (STG) (v5.1)",
+    [
+      {
+        "filename": "Area TE 3 (STG) [v5.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area TE 3 (STG) [v5.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Auditory_Te3_l_N10_nlin2MNI152ASYM2009C_5.1_publicP_20343504909e5d586f6c6afb53aede2d.nii.gz"
+      },
+      {
+        "filename": "Area TE 3 (STG) [v5.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area TE 3 (STG) [v5.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Auditory_Te3_l_N10_nlin2Stdcolin27_5.1_publicP_ee94f5c173aaf6496d93f5ebc621a740.nii.gz"
+      },
+      {
+        "filename": "Area TE 3 (STG) [v5.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area TE 3 (STG) [v5.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Auditory_Te3_r_N10_nlin2MNI152ASYM2009C_5.1_publicP_7f5ec1e2a1b9f2ce861d5b99273925b6.nii.gz"
+      },
+      {
+        "filename": "Area TE 3 (STG) [v5.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area TE 3 (STG) [v5.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Auditory_Te3_r_N10_nlin2Stdcolin27_5.1_publicP_83d1cf7a0c3717f030a7c8920887bc00.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area Fo7 (OFC) (v2.1)",
+    [
+      {
+        "filename": "Area Fo7 (OFC) [v2.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area Fo7 (OFC) [v2.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo7_l_N10_nlin2MNI152ASYM2009C_2.1_publicDOI_964a532cb5853aa4d2c7a059559902cc.nii.gz"
+      },
+      {
+        "filename": "Area Fo7 (OFC) [v2.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area Fo7 (OFC) [v2.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo7_l_N10_nlin2Stdcolin27_2.1_publicDOI_297152bbde864baaf7a26011d61a93df.nii.gz"
+      },
+      {
+        "filename": "Area Fo7 (OFC) [v2.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area Fo7 (OFC) [v2.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/OFC_Fo7_r_N10_nlin2MNI152ASYM2009C_2.1_publicDOI_233826baa502af5501d24aa815fa91ee.nii.gz"
+      },
+      {
+        "filename": "Area Fo7 (OFC) [v2.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area Fo7 (OFC) [v2.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/OFC_Fo7_r_N10_nlin2Stdcolin27_2.1_publicDOI_14d60086cddf17c0923499b5197b374a.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Ch 123 (Basal Forebrain) (v4.2)",
+    [
+      {
+        "filename": "Ch 123 (Basal Forebrain) [v4.2, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Ch 123 (Basal Forebrain) [v4.2, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Bforebrain_123_l_N10_nlin2MNI152ASYM2009C_4.2_publicP_2ee34ae3e4b3d88ead80c2ca66cbd91a.nii.gz"
+      },
+      {
+        "filename": "Ch 123 (Basal Forebrain) [v4.2, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Ch 123 (Basal Forebrain) [v4.2, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Bforebrain_123_l_N10_nlin2Stdcolin27_4.2_publicP_276e61aa375a96aa30727b96fdbcb359.nii.gz"
+      },
+      {
+        "filename": "Ch 123 (Basal Forebrain) [v4.2, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Ch 123 (Basal Forebrain) [v4.2, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Bforebrain_123_r_N10_nlin2MNI152ASYM2009C_4.2_publicP_5150e72146b5a751407c4dc28ba1703b.nii.gz"
+      },
+      {
+        "filename": "Ch 123 (Basal Forebrain) [v4.2, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Ch 123 (Basal Forebrain) [v4.2, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Bforebrain_123_r_N10_nlin2Stdcolin27_4.2_publicP_08a22f59a0ef477bcd6839aa94654d41.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Ch 4 (Basal Forebrain) (v4.2)",
+    [
+      {
+        "filename": "Ch 4 (Basal Forebrain) [v4.2, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Ch 4 (Basal Forebrain) [v4.2, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Bforebrain_4_l_N10_nlin2MNI152ASYM2009C_4.2_publicP_29a2440c314f295d548cbb0996fe3252.nii.gz"
+      },
+      {
+        "filename": "Ch 4 (Basal Forebrain) [v4.2, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Ch 4 (Basal Forebrain) [v4.2, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Bforebrain_4_l_N10_nlin2Stdcolin27_4.2_publicP_b92bf6270f6426059d719a6ff4d46aa7.nii.gz"
+      },
+      {
+        "filename": "Ch 4 (Basal Forebrain) [v4.2, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Ch 4 (Basal Forebrain) [v4.2, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Bforebrain_4_r_N10_nlin2MNI152ASYM2009C_4.2_publicP_aca0b12b3a3f42b5ae08fb7d1e8d43c5.nii.gz"
+      },
+      {
+        "filename": "Ch 4 (Basal Forebrain) [v4.2, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Ch 4 (Basal Forebrain) [v4.2, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Bforebrain_4_r_N10_nlin2Stdcolin27_4.2_publicP_a38a48076577c2c94ed7aad80c625952.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area OP1 (POperc) (v9.4)",
+    [
+      {
+        "filename": "Area OP1 (POperc) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area OP1 (POperc) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Operculum_OP1_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_09f37b8616fa6fa74f59826ece9ba380.nii.gz"
+      },
+      {
+        "filename": "Area OP1 (POperc) [v9.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area OP1 (POperc) [v9.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Operculum_OP1_l_N10_nlin2Stdcolin27_9.4_publicP_45c04bd91a3a2027b2d3c6c266bb90e7.nii.gz"
+      },
+      {
+        "filename": "Area OP1 (POperc) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area OP1 (POperc) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Operculum_OP1_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_8b2c48b662c5e6df1958feb0fc6976c3.nii.gz"
+      },
+      {
+        "filename": "Area OP1 (POperc) [v9.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area OP1 (POperc) [v9.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Operculum_OP1_r_N10_nlin2Stdcolin27_9.4_publicP_30c32326b70316dcb9ddea7b64c3adfe.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area 44 (IFG) (v7.4)",
+    [
+      {
+        "filename": "Area 44 (IFG) [v7.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 44 (IFG) [v7.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Broca_44_l_N10_nlin2MNI152ASYM2009C_7.4_publicP_1a7ee2bd006ecd2b0afec1294b1edc4f.nii.gz"
+      },
+      {
+        "filename": "Area 44 (IFG) [v7.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 44 (IFG) [v7.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Broca_44_l_N10_nlin2Stdcolin27_7.4_publicP_e59cf54b21c0c5b6bc9f28238caca480.nii.gz"
+      },
+      {
+        "filename": "Area 44 (IFG) [v7.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 44 (IFG) [v7.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Broca_44_r_N10_nlin2MNI152ASYM2009C_7.4_publicP_ecd680988f3750c6003e02836832a9c9.nii.gz"
+      },
+      {
+        "filename": "Area 44 (IFG) [v7.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 44 (IFG) [v7.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Broca_44_r_N10_nlin2Stdcolin27_7.4_publicP_a654ac4a5ffb29e71ea8ba6607d8d636.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area OP2 (POperc) (v9.4)",
+    [
+      {
+        "filename": "Area OP2 (POperc) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area OP2 (POperc) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Operculum_OP2_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_8eb1862721707ee0a0d09c3492b947ca.nii.gz"
+      },
+      {
+        "filename": "Area OP2 (POperc) [v9.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area OP2 (POperc) [v9.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Operculum_OP2_l_N10_nlin2Stdcolin27_9.4_publicP_1e664b1d4576c31315365aad04e9dc25.nii.gz"
+      },
+      {
+        "filename": "Area OP2 (POperc) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area OP2 (POperc) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Operculum_OP2_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_9ab95451711065d019b3a27312213d18.nii.gz"
+      },
+      {
+        "filename": "Area OP2 (POperc) [v9.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area OP2 (POperc) [v9.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Operculum_OP2_r_N10_nlin2Stdcolin27_9.4_publicP_ede1b5a176315095e131e0791a00f1f5.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area 45 (IFG) (v7.4)",
+    [
+      {
+        "filename": "Area 45 (IFG) [v7.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 45 (IFG) [v7.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Broca_45_l_N10_nlin2MNI152ASYM2009C_7.4_publicP_6d43de9c7bb9817691ec792334a3152c.nii.gz"
+      },
+      {
+        "filename": "Area 45 (IFG) [v7.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 45 (IFG) [v7.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Broca_45_l_N10_nlin2Stdcolin27_7.4_publicP_08da4129fea7c04d5608bded93dfda10.nii.gz"
+      },
+      {
+        "filename": "Area 45 (IFG) [v7.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 45 (IFG) [v7.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Broca_45_r_N10_nlin2MNI152ASYM2009C_7.4_publicP_45869e9e77064496f151048475e0716d.nii.gz"
+      },
+      {
+        "filename": "Area 45 (IFG) [v7.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 45 (IFG) [v7.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Broca_45_r_N10_nlin2Stdcolin27_7.4_publicP_b9da1fa5cada59f4d42bac9f59e8eafe.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area OP3 (POperc) (v9.4)",
+    [
+      {
+        "filename": "Area OP3 (POperc) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area OP3 (POperc) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Operculum_OP3_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_4ce38061bc18f309b8195c6dcf1ef1be.nii.gz"
+      },
+      {
+        "filename": "Area OP3 (POperc) [v9.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area OP3 (POperc) [v9.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Operculum_OP3_l_N10_nlin2Stdcolin27_9.4_publicP_c92d37026fafed1a509eb680c6503d7c.nii.gz"
+      },
+      {
+        "filename": "Area OP3 (POperc) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area OP3 (POperc) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Operculum_OP3_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_56be809cb09e6ec59bf5331f228a2ae1.nii.gz"
+      },
+      {
+        "filename": "Area OP3 (POperc) [v9.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area OP3 (POperc) [v9.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Operculum_OP3_r_N10_nlin2Stdcolin27_9.4_publicP_d42f39d7978a6678b4778dba5fae7718.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Dorsal Dentate Nucleus (Cerebellum) (v6.2)",
+    [
+      {
+        "filename": "Dorsal Dentate Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Dorsal Dentate Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cerebellum_Ndentd_l_N10_nlin2MNI152ASYM2009C_6.2_publicP_3a764725c01a90a232d8cf70bdbc7add.nii.gz"
+      },
+      {
+        "filename": "Dorsal Dentate Nucleus (Cerebellum) [v6.2, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Dorsal Dentate Nucleus (Cerebellum) [v6.2, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cerebellum_Ndentd_l_N10_nlin2Stdcolin27_6.2_publicP_e4005dbb191bf6e7d186a59d7054f585.nii.gz"
+      },
+      {
+        "filename": "Dorsal Dentate Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Dorsal Dentate Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cerebellum_Ndentd_r_N10_nlin2MNI152ASYM2009C_6.2_publicP_4211130f95a204cfd747f2cbed179536.nii.gz"
+      },
+      {
+        "filename": "Dorsal Dentate Nucleus (Cerebellum) [v6.2, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Dorsal Dentate Nucleus (Cerebellum) [v6.2, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cerebellum_Ndentd_r_N10_nlin2Stdcolin27_6.2_publicP_1f16cdf30a2b987c7f6dd013b08b73ad.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area OP4 (POperc) (v9.4)",
+    [
+      {
+        "filename": "Area OP4 (POperc) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area OP4 (POperc) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Operculum_OP4_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_0a5b380ef43ab7bc87198206a1a02353.nii.gz"
+      },
+      {
+        "filename": "Area OP4 (POperc) [v9.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area OP4 (POperc) [v9.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Operculum_OP4_l_N10_nlin2Stdcolin27_9.4_publicP_d23daf7663d8febb3aa0d092e350f570.nii.gz"
+      },
+      {
+        "filename": "Area OP4 (POperc) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area OP4 (POperc) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Operculum_OP4_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_748101beb3152bc7f2991094971c1f3a.nii.gz"
+      },
+      {
+        "filename": "Area OP4 (POperc) [v9.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area OP4 (POperc) [v9.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Operculum_OP4_r_N10_nlin2Stdcolin27_9.4_publicP_82f74a89a06e43d8e64ffec0b6ef473f.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Ventral Dentate Nucleus (Cerebellum) (v6.2)",
+    [
+      {
+        "filename": "Ventral Dentate Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Ventral Dentate Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cerebellum_Ndentv_l_N10_nlin2MNI152ASYM2009C_6.2_publicP_0cb86cca6476c331a50318f46208a2a9.nii.gz"
+      },
+      {
+        "filename": "Ventral Dentate Nucleus (Cerebellum) [v6.2, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Ventral Dentate Nucleus (Cerebellum) [v6.2, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cerebellum_Ndentv_l_N10_nlin2Stdcolin27_6.2_publicP_66c0eabf5055063dc9c4e26745bc39d0.nii.gz"
+      },
+      {
+        "filename": "Ventral Dentate Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Ventral Dentate Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cerebellum_Ndentv_r_N10_nlin2MNI152ASYM2009C_6.2_publicP_fc8be37b4b948d2aa1a7e94d00e3310e.nii.gz"
+      },
+      {
+        "filename": "Ventral Dentate Nucleus (Cerebellum) [v6.2, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Ventral Dentate Nucleus (Cerebellum) [v6.2, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cerebellum_Ndentv_r_N10_nlin2Stdcolin27_6.2_publicP_0a940b0c0455d9073942ab515304ead9.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area OP8 (Frontal Operculum) (v5.1)",
+    [
+      {
+        "filename": "Area OP8 (Frontal Operculum) [v5.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area OP8 (Frontal Operculum) [v5.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Operculum_OP8_l_N10_nlin2MNI152ASYM2009C_5.1_publicDOI_cac2827254edba301e8dc491d78df49a.nii.gz"
+      },
+      {
+        "filename": "Area OP8 (Frontal Operculum) [v5.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area OP8 (Frontal Operculum) [v5.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Operculum_OP8_l_N10_nlin2Stdcolin27_5.1_publicDOI_1d25df23892ebedebbf9ffe115a0f202.nii.gz"
+      },
+      {
+        "filename": "Area OP8 (Frontal Operculum) [v5.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area OP8 (Frontal Operculum) [v5.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Operculum_OP8_r_N10_nlin2MNI152ASYM2009C_5.1_publicDOI_3ca7868161d7378b7b3493e7b9eab16d.nii.gz"
+      },
+      {
+        "filename": "Area OP8 (Frontal Operculum) [v5.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area OP8 (Frontal Operculum) [v5.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Operculum_OP8_r_N10_nlin2Stdcolin27_5.1_publicDOI_a3118794ab13bf97592444a1eeca8f9f.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Fastigial Nucleus (Cerebellum) (v6.2)",
+    [
+      {
+        "filename": "Fastigial Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Fastigial Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cerebellum_Nfast_l_N10_nlin2MNI152ASYM2009C_6.2_publicP_d42e05acf865e8478e5fe97385a78d00.nii.gz"
+      },
+      {
+        "filename": "Fastigial Nucleus (Cerebellum) [v6.2, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Fastigial Nucleus (Cerebellum) [v6.2, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cerebellum_Nfast_l_N10_nlin2Stdcolin27_6.2_publicP_c18475ec9af75fe8a1f5dce004278e55.nii.gz"
+      },
+      {
+        "filename": "Fastigial Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Fastigial Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cerebellum_Nfast_r_N10_nlin2MNI152ASYM2009C_6.2_publicP_6d0b43f4d2b4981735164ac4d52a4d6d.nii.gz"
+      },
+      {
+        "filename": "Fastigial Nucleus (Cerebellum) [v6.2, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Fastigial Nucleus (Cerebellum) [v6.2, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cerebellum_Nfast_r_N10_nlin2Stdcolin27_6.2_publicP_6745e48df4cef0ef4cd9c1e9f9d114b3.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Interposed Nucleus (Cerebellum) (v6.2)",
+    [
+      {
+        "filename": "Interposed Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Interposed Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cerebellum_Ninterp_l_N10_nlin2MNI152ASYM2009C_6.2_publicP_be17425dcfd546aaf5ec80e315d642d9.nii.gz"
+      },
+      {
+        "filename": "Interposed Nucleus (Cerebellum) [v6.2, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Interposed Nucleus (Cerebellum) [v6.2, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cerebellum_Ninterp_l_N10_nlin2Stdcolin27_6.2_publicP_2f9237309b1e61c190196401e9a11c7f.nii.gz"
+      },
+      {
+        "filename": "Interposed Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Interposed Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cerebellum_Ninterp_r_N10_nlin2MNI152ASYM2009C_6.2_publicP_793abbe42c2a952e6e728f8250f1f54c.nii.gz"
+      },
+      {
+        "filename": "Interposed Nucleus (Cerebellum) [v6.2, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Interposed Nucleus (Cerebellum) [v6.2, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cerebellum_Ninterp_r_N10_nlin2Stdcolin27_6.2_publicP_58293b82b27045ef76bc1a0ef3428afc.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area OP9 (Frontal Operculum) (v5.1)",
+    [
+      {
+        "filename": "Area OP9 (Frontal Operculum) [v5.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area OP9 (Frontal Operculum) [v5.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Operculum_OP9_l_N10_nlin2MNI152ASYM2009C_5.1_publicDOI_45982890da26f7e740fc6bc2e9325ff3.nii.gz"
+      },
+      {
+        "filename": "Area OP9 (Frontal Operculum) [v5.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area OP9 (Frontal Operculum) [v5.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Operculum_OP9_l_N10_nlin2Stdcolin27_5.1_publicDOI_ec9bf05b99fa3460ea63073a38693826.nii.gz"
+      },
+      {
+        "filename": "Area OP9 (Frontal Operculum) [v5.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area OP9 (Frontal Operculum) [v5.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Operculum_OP9_r_N10_nlin2MNI152ASYM2009C_5.1_publicDOI_1ec9370a2dc7b55a2a26d86da01d88e5.nii.gz"
+      },
+      {
+        "filename": "Area OP9 (Frontal Operculum) [v5.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area OP9 (Frontal Operculum) [v5.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Operculum_OP9_r_N10_nlin2Stdcolin27_5.1_publicDOI_6f622eda1620ccab62d46c4d95b396bb.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area 25 (sACC) (v16.1)",
+    [
+      {
+        "filename": "Area 25 (sACC) [v16.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 25 (sACC) [v16.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_25_l_N10_nlin2MNI152ASYM2009C_16.1_publicP_bc3b69f445a7d6db586b15476c88b2de.nii.gz"
+      },
+      {
+        "filename": "Area 25 (sACC) [v16.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 25 (sACC) [v16.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_25_l_N10_nlin2Stdcolin27_16.1_publicP_84abfca40abffa2dffd2e7743f8a6ab3.nii.gz"
+      },
+      {
+        "filename": "Area 25 (sACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 25 (sACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_25_r_N10_nlin2MNI152ASYM2009C_16.1_publicP_6e2e70f1c2693df95f1f8c65d9ab6cef.nii.gz"
+      },
+      {
+        "filename": "Area 25 (sACC) [v16.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 25 (sACC) [v16.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_25_r_N10_nlin2Stdcolin27_16.1_publicP_976b0f40ea5674a178c1c4560b4d56e7.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area 33 (ACC) (v16.1)",
+    [
+      {
+        "filename": "Area 33 (ACC) [v16.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 33 (ACC) [v16.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_33_l_N10_nlin2MNI152ASYM2009C_16.1_publicP_9832e9c4ee8ed764f11c12e68e84f790.nii.gz"
+      },
+      {
+        "filename": "Area 33 (ACC) [v16.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 33 (ACC) [v16.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_33_l_N10_nlin2Stdcolin27_16.1_publicP_9effbeac2461fdf77b2d49619f168d75.nii.gz"
+      },
+      {
+        "filename": "Area 33 (ACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 33 (ACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_33_r_N10_nlin2MNI152ASYM2009C_16.1_publicP_0a2943971f268fce0cc9e5f59e6fe55c.nii.gz"
+      },
+      {
+        "filename": "Area 33 (ACC) [v16.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 33 (ACC) [v16.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_33_r_N10_nlin2Stdcolin27_16.1_publicP_94750db9a4bede8ee6b6970d7ccd8f17.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area hIP4 (IPS) (v7.1)",
+    [
+      {
+        "filename": "Area hIP4 (IPS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hIP4 (IPS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PIPS_hIP4_l_N10_nlin2MNI152ASYM2009C_7.1_publicP_95a503dc474773d76ea6bc295bb14cb1.nii.gz"
+      },
+      {
+        "filename": "Area hIP4 (IPS) [v7.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hIP4 (IPS) [v7.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PIPS_hIP4_l_N10_nlin2Stdcolin27_7.1_publicP_511ed7fad34d51f367f33e8938e47ba4.nii.gz"
+      },
+      {
+        "filename": "Area hIP4 (IPS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hIP4 (IPS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PIPS_hIP4_r_N10_nlin2MNI152ASYM2009C_7.1_publicP_0c36e58e56b65c803270b83dc677c35e.nii.gz"
+      },
+      {
+        "filename": "Area hIP4 (IPS) [v7.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hIP4 (IPS) [v7.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PIPS_hIP4_r_N10_nlin2Stdcolin27_7.1_publicP_6fd00fe205e860d895e79132747d2713.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area p24ab (pACC) (v16.1)",
+    [
+      {
+        "filename": "Area p24ab (pACC) [v16.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area p24ab (pACC) [v16.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_p24ab_l_N10_nlin2MNI152ASYM2009C_16.1_publicP_b004997e409abb7655a9f4a52d352e6c.nii.gz"
+      },
+      {
+        "filename": "Area p24ab (pACC) [v16.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area p24ab (pACC) [v16.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_p24ab_l_N10_nlin2Stdcolin27_16.1_publicP_444aa7585813722d798a82dbe79e1c9a.nii.gz"
+      },
+      {
+        "filename": "Area p24ab (pACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area p24ab (pACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_p24ab_r_N10_nlin2MNI152ASYM2009C_16.1_publicP_d5ca48b6f8408bcc485e957c01499681.nii.gz"
+      },
+      {
+        "filename": "Area p24ab (pACC) [v16.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area p24ab (pACC) [v16.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_p24ab_r_N10_nlin2Stdcolin27_16.16c52469cebca3f350d92d20020c62e87.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area hIP5 (IPS) (v7.1)",
+    [
+      {
+        "filename": "Area hIP5 (IPS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hIP5 (IPS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PIPS_hIP5_l_N10_nlin2MNI152ASYM2009C_7.1_publicP_76c140b3be6a72b8c969ee82d3427019.nii.gz"
+      },
+      {
+        "filename": "Area hIP5 (IPS) [v7.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hIP5 (IPS) [v7.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PIPS_hIP5_l_N10_nlin2Stdcolin27_7.1_publicP_f4d4897056aa0e68c6f79d32dd059b0d.nii.gz"
+      },
+      {
+        "filename": "Area hIP5 (IPS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hIP5 (IPS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PIPS_hIP5_r_N10_nlin2MNI152ASYM2009C_7.1_publicP_dd7a3a18d34fa1294a1c0691a9540d9a.nii.gz"
+      },
+      {
+        "filename": "Area hIP5 (IPS) [v7.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hIP5 (IPS) [v7.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PIPS_hIP5_r_N10_nlin2Stdcolin27_7.1_publicP_70cec9386200f81db1eca7667ce0e208.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area p24c (pACC) (v16.1)",
+    [
+      {
+        "filename": "Area p24c (pACC) [v16.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area p24c (pACC) [v16.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_p24c_l_N10_nlin2MNI152ASYM2009C_16.1_publicP_e440a4a4eee9203abcc4aac8f6381216.nii.gz"
+      },
+      {
+        "filename": "Area p24c (pACC) [v16.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area p24c (pACC) [v16.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_p24c_l_N10_nlin2Stdcolin27_16.1_publicP_9c9d82fb9bfe36b1bce38672bdb4740a.nii.gz"
+      },
+      {
+        "filename": "Area p24c (pACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area p24c (pACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_p24c_r_N10_nlin2MNI152ASYM2009C_16.1_publicP_795c9d7ed029f33449d4d41098cd51dc.nii.gz"
+      },
+      {
+        "filename": "Area p24c (pACC) [v16.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area p24c (pACC) [v16.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_p24c_r_N10_nlin2Stdcolin27_16.1_publicP_beb8c3fb63fe05540e87a2007acc40af.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area hIP6 (IPS) (v7.1)",
+    [
+      {
+        "filename": "Area hIP6 (IPS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hIP6 (IPS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PIPS_hIP6_l_N10_nlin2MNI152ASYM2009C_7.1_publicP_1032d08a95d8735b03b41de55118631a.nii.gz"
+      },
+      {
+        "filename": "Area hIP6 (IPS) [v7.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hIP6 (IPS) [v7.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PIPS_hIP6_l_N10_nlin2Stdcolin27_7.1_publicP_ba9a8054c3e2430d74d51b88da896aef.nii.gz"
+      },
+      {
+        "filename": "Area hIP6 (IPS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hIP6 (IPS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PIPS_hIP6_r_N10_nlin2MNI152ASYM2009C_7.1_publicP_c339fe027afa1f985af1f062b0a03014.nii.gz"
+      },
+      {
+        "filename": "Area hIP6 (IPS) [v7.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hIP6 (IPS) [v7.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PIPS_hIP6_r_N10_nlin2Stdcolin27_7.1_publicP_e268e88709a2c36a2861204c3566f63b.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area p32 (pACC) (v16.1)",
+    [
+      {
+        "filename": "Area p32 (pACC) [v16.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area p32 (pACC) [v16.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_p32_l_N10_nlin2MNI152ASYM2009C_16.1_publicP_bce14f798627873c1f117df0141f35ca.nii.gz"
+      },
+      {
+        "filename": "Area p32 (pACC) [v16.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area p32 (pACC) [v16.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_p32_l_N10_nlin2Stdcolin27_16.1_publicP_0f60df84cc5f99ea1dd97d1b025707a6.nii.gz"
+      },
+      {
+        "filename": "Area p32 (pACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area p32 (pACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_p32_r_N10_nlin2MNI152ASYM2009C_16.1_publicP_0431a46ee288499cc60db2685889b56d.nii.gz"
+      },
+      {
+        "filename": "Area p32 (pACC) [v16.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area p32 (pACC) [v16.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_p32_r_N10_nlin2Stdcolin27_16.1_publicP_84d50c4187b65ff997e92bd334553f98.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area s24 (sACC) (v16.1)",
+    [
+      {
+        "filename": "Area s24 (sACC) [v16.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area s24 (sACC) [v16.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_s24_l_N10_nlin2MNI152ASYM2009C_16.1_publicP_6194d2467924e498b62b367a118db468.nii.gz"
+      },
+      {
+        "filename": "Area s24 (sACC) [v16.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area s24 (sACC) [v16.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_s24_l_N10_nlin2Stdcolin27_16.1_publicP_4c14280cc9c6d43bb5b7c25981828311.nii.gz"
+      },
+      {
+        "filename": "Area s24 (sACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area s24 (sACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_s24_r_N10_nlin2MNI152ASYM2009C_16.1_publicP_cc3351d4b652a47f4e23c9fe980f55ed.nii.gz"
+      },
+      {
+        "filename": "Area s24 (sACC) [v16.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area s24 (sACC) [v16.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_s24_r_N10_nlin2Stdcolin27_16.1_publicP_ae32c2acd10da0c3cba50800ced302e6.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area hIP7 (IPS) (v7.1)",
+    [
+      {
+        "filename": "Area hIP7 (IPS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hIP7 (IPS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PIPS_hIP7_l_N10_nlin2MNI152ASYM2009C_7.1_publicP_01279b11f7257b593960584b6e3a567a.nii.gz"
+      },
+      {
+        "filename": "Area hIP7 (IPS) [v7.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hIP7 (IPS) [v7.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PIPS_hIP7_l_N10_nlin2Stdcolin27_7.1_publicP_7e7b8d7878cc99b15f8f1515966166e1.nii.gz"
+      },
+      {
+        "filename": "Area hIP7 (IPS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hIP7 (IPS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PIPS_hIP7_r_N10_nlin2MNI152ASYM2009C_7.1_publicP_77a72d8d813cf367572aa6841e360f00.nii.gz"
+      },
+      {
+        "filename": "Area hIP7 (IPS) [v7.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hIP7 (IPS) [v7.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PIPS_hIP7_r_N10_nlin2Stdcolin27_7.1_publicP_07b80edd2afed887351766ddc6cfbcfa.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area s32 (sACC) (v16.1)",
+    [
+      {
+        "filename": "Area s32 (sACC) [v16.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area s32 (sACC) [v16.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_s32_l_N10_nlin2MNI152ASYM2009C_16.1_publicP_c123300e746ae0b2a68198747b7c8b39.nii.gz"
+      },
+      {
+        "filename": "Area s32 (sACC) [v16.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area s32 (sACC) [v16.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_s32_l_N10_nlin2Stdcolin27_16.1_publicP_cfdb1e6e4d0f7f0636e30669917bd3b8.nii.gz"
+      },
+      {
+        "filename": "Area s32 (sACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area s32 (sACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Cingulum_s32_r_N10_nlin2MNI152ASYM2009C_16.1_publicP_670b2d5859f33ce2264adf0864930347.nii.gz"
+      },
+      {
+        "filename": "Area s32 (sACC) [v16.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area s32 (sACC) [v16.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Cingulum_s32_r_N10_nlin2Stdcolin27_16.1_publicP_af05582934888efe929b28dda1b672ec.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area hIP8 (IPS) (v7.1)",
+    [
+      {
+        "filename": "Area hIP8 (IPS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hIP8 (IPS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PIPS_hIP8_l_N10_nlin2MNI152ASYM2009C_7.1_publicP_a759b709141aecb734964c73df1cce45.nii.gz"
+      },
+      {
+        "filename": "Area hIP8 (IPS) [v7.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hIP8 (IPS) [v7.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PIPS_hIP8_l_N10_nlin2Stdcolin27_7.1_publicP_7defaa4bb2de378b12a92982ffaabfa9.nii.gz"
+      },
+      {
+        "filename": "Area hIP8 (IPS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hIP8 (IPS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PIPS_hIP8_r_N10_nlin2MNI152ASYM2009C_7.1_publicP_57d552da2aaefda7bb6c70e40ca43aab.nii.gz"
+      },
+      {
+        "filename": "Area hIP8 (IPS) [v7.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hIP8 (IPS) [v7.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PIPS_hIP8_r_N10_nlin2Stdcolin27_7.1_publicP_cd21b04dab60b31f1b7c409a60bd8144.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of CA (Hippocampus) (v11.1)",
+    [
+      {
+        "filename": "CA (Hippocampus) [v11.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "CA (Hippocampus) [v11.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Hippocampus_CA_l_N10_nlin2MNI152ASYM2009C_11.1_publicP_fd49776deee300e6dd94db513592d716.nii.gz"
+      },
+      {
+        "filename": "CA (Hippocampus) [v11.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "CA (Hippocampus) [v11.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Hippocampus_CA_l_N10_nlin2Stdcolin27_11.1_publicP_171cb45e2e19686d663f24ede52ef4d5.nii.gz"
+      },
+      {
+        "filename": "CA (Hippocampus) [v11.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "CA (Hippocampus) [v11.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Hippocampus_CA_r_N10_nlin2MNI152ASYM2009C_11.1_publicP_15fe605957c7968f858481c082673d8f.nii.gz"
+      },
+      {
+        "filename": "CA (Hippocampus) [v11.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "CA (Hippocampus) [v11.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Hippocampus_CA_r_N10_nlin2Stdcolin27_11.1_publicP_0852971ef836a0f321ed9f16ef1a26db.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area hPO1 (POS) (v7.1)",
+    [
+      {
+        "filename": "Area hPO1 (POS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hPO1 (POS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PIPS_hPO1_l_N10_nlin2MNI152ASYM2009C_7.1_publicP_20a70c234cb120fb4a7ed16b9a23cdfb.nii.gz"
+      },
+      {
+        "filename": "Area hPO1 (POS) [v7.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hPO1 (POS) [v7.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PIPS_hPO1_l_N10_nlin2Stdcolin27_7.1_publicP_1756f24793fb8a34d206aa15ae8c1031.nii.gz"
+      },
+      {
+        "filename": "Area hPO1 (POS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hPO1 (POS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PIPS_hPO1_r_N10_nlin2MNI152ASYM2009C_7.1_publicP_f137efe6e7e30006a286764b0708afd4.nii.gz"
+      },
+      {
+        "filename": "Area hPO1 (POS) [v7.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hPO1 (POS) [v7.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PIPS_hPO1_r_N10_nlin2Stdcolin27_7.1_publicP_4dbcc62e2fb44101eb2c4d032be1ba5b.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of DG (Hippocampus) (v11.1)",
+    [
+      {
+        "filename": "DG (Hippocampus) [v11.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "DG (Hippocampus) [v11.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Hippocampus_DG_l_N10_nlin2MNI152ASYM2009C_11.1_publicP_f56d6af9b18d378060c91acd2189f5b2.nii.gz"
+      },
+      {
+        "filename": "DG (Hippocampus) [v11.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "DG (Hippocampus) [v11.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Hippocampus_DG_l_N10_nlin2Stdcolin27_11.1_publicP_4d4162b28b535e77fe7ef3d85ee658cb.nii.gz"
+      },
+      {
+        "filename": "DG (Hippocampus) [v11.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "DG (Hippocampus) [v11.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Hippocampus_DG_r_N10_nlin2MNI152ASYM2009C_11.1_publicP_6fe4e1ff07604e82573426ff9d507757.nii.gz"
+      },
+      {
+        "filename": "DG (Hippocampus) [v11.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "DG (Hippocampus) [v11.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Hippocampus_DG_r_N10_nlin2Stdcolin27_11.1_publicP_e3fa939acecddade8c39c1c55a421c28.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area 1 (PostCG) (v8.4)",
+    [
+      {
+        "filename": "Area 1 (PostCG) [v8.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 1 (PostCG) [v8.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PSC_1_l_N10_nlin2MNI152ASYM2009C_8.4_publicP_a9fedffac41cadad59359dc8b602ef95.nii.gz"
+      },
+      {
+        "filename": "Area 1 (PostCG) [v8.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 1 (PostCG) [v8.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PSC_1_l_N10_nlin2Stdcolin27_8.4_publicP_8ffb7eeab7118f647e972259c9d3247d.nii.gz"
+      },
+      {
+        "filename": "Area 1 (PostCG) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 1 (PostCG) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PSC_1_r_N10_nlin2MNI152ASYM2009C_8.4_publicP_e8d32d9779cbacab28b0a21d92e5c098.nii.gz"
+      },
+      {
+        "filename": "Area 1 (PostCG) [v8.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 1 (PostCG) [v8.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PSC_1_r_N10_nlin2Stdcolin27_8.4_publicP_9456a4c195570c19d6d8cf9fd9e964d1.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Entorhinal Cortex (v11.1)",
+    [
+      {
+        "filename": "Entorhinal Cortex [v11.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Entorhinal Cortex [v11.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Hippocampus_EC_l_N10_nlin2MNI152ASYM2009C_11.1_publicP_67c7cc903d9847c1e0ba7b2bd042de48.nii.gz"
+      },
+      {
+        "filename": "Entorhinal Cortex [v11.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Entorhinal Cortex [v11.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Hippocampus_EC_l_N10_nlin2Stdcolin27_11.1_publicP_dc4cead53434d7d9cc2545815a575a37.nii.gz"
+      },
+      {
+        "filename": "Entorhinal Cortex [v11.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Entorhinal Cortex [v11.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Hippocampus_EC_r_N10_nlin2MNI152ASYM2009C_11.1_publicP_239306c24449da501573917ad567a9de.nii.gz"
+      },
+      {
+        "filename": "Entorhinal Cortex [v11.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Entorhinal Cortex [v11.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Hippocampus_EC_r_N10_nlin2Stdcolin27_11.1_publicP_63cabbcc6e81767942bee38595ebb234.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area 2 (PostCS) (v3.4)",
+    [
+      {
+        "filename": "Area 2 (PostCS) [v3.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 2 (PostCS) [v3.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PSC_2_l_N9_nlin2MNI152ASYM2009C_3.4_publicP_7526b786324a9bc0d0cf4b2942cacad7.nii.gz"
+      },
+      {
+        "filename": "Area 2 (PostCS) [v3.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 2 (PostCS) [v3.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PSC_2_l_N9_nlin2Stdcolin27_3.4_publicP_e6e0da89a546443ab761cc23fafdaa92.nii.gz"
+      },
+      {
+        "filename": "Area 2 (PostCS) [v3.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 2 (PostCS) [v3.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PSC_2_r_N9_nlin2MNI152ASYM2009C_3.4_publicP_c529c51f6c6e6ed10e8b2f46ebb8550a.nii.gz"
+      },
+      {
+        "filename": "Area 2 (PostCS) [v3.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 2 (PostCS) [v3.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PSC_2_r_N9_nlin2Stdcolin27_3.4_publicP_6494012cddba7185bab87cb36ea8f69c.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of HATA (Hippocampus) (v11.1)",
+    [
+      {
+        "filename": "HATA (Hippocampus) [v11.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "HATA (Hippocampus) [v11.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Hippocampus_HATA_l_N10_nlin2MNI152ASYM2009C_11.1_publicP_cd1178d271dfb2a4fe7c26cd21c76cab.nii.gz"
+      },
+      {
+        "filename": "HATA (Hippocampus) [v11.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "HATA (Hippocampus) [v11.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Hippocampus_HATA_l_N10_nlin2Stdcolin27_11.1_publicP_69c99510ed9618dcf2dec7f75c7097e5.nii.gz"
+      },
+      {
+        "filename": "HATA (Hippocampus) [v11.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "HATA (Hippocampus) [v11.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Hippocampus_HATA_r_N10_nlin2MNI152ASYM2009C_11.1_publicP_b68796684358ad9cec6b7ca719575e48.nii.gz"
+      },
+      {
+        "filename": "HATA (Hippocampus) [v11.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "HATA (Hippocampus) [v11.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Hippocampus_HATA_r_N10_nlin2Stdcolin27_11.1_publicP_e32109435541023150892d6244db83a8.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area 3a (PostCG) (v8.4)",
+    [
+      {
+        "filename": "Area 3a (PostCG) [v8.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 3a (PostCG) [v8.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PSC_3a_l_N10_nlin2MNI152ASYM2009C_8.4_publicP_21c814255639c5a26e2e67ee4201f3a3.nii.gz"
+      },
+      {
+        "filename": "Area 3a (PostCG) [v8.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 3a (PostCG) [v8.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PSC_3a_l_N10_nlin2Stdcolin27_8.4_publicP_9312aac3b742096e56db0acecf0dfd37.nii.gz"
+      },
+      {
+        "filename": "Area 3a (PostCG) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 3a (PostCG) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PSC_3a_r_N10_nlin2MNI152ASYM2009C_8.4_publicP_4a0f0ebb63caf309c661bd550229a26e.nii.gz"
+      },
+      {
+        "filename": "Area 3a (PostCG) [v8.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 3a (PostCG) [v8.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PSC_3a_r_N10_nlin2Stdcolin27_8.4_publicP_207f7b2221c3112d391d19c3932ec0f2.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area 3b (PostCG) (v8.4)",
+    [
+      {
+        "filename": "Area 3b (PostCG) [v8.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 3b (PostCG) [v8.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PSC_3b_l_N10_nlin2MNI152ASYM2009C_8.4_publicP_e77fb21b2a8fa6b90a791acdd0c8f690.nii.gz"
+      },
+      {
+        "filename": "Area 3b (PostCG) [v8.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 3b (PostCG) [v8.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PSC_3b_l_N10_nlin2Stdcolin27_8.4_publicP_5286409024d66bf87a9033052b3169bf.nii.gz"
+      },
+      {
+        "filename": "Area 3b (PostCG) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 3b (PostCG) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/PSC_3b_r_N10_nlin2MNI152ASYM2009C_8.4_publicP_789bbc4124edc3f32b9058473b70ce62.nii.gz"
+      },
+      {
+        "filename": "Area 3b (PostCG) [v8.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 3b (PostCG) [v8.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/PSC_3b_r_N10_nlin2Stdcolin27_8.4_publicP_4b88129088fd1b5dabcab0dffc15a2e7.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Subiculum (Hippocampus) (v11.1)",
+    [
+      {
+        "filename": "Subiculum (Hippocampus) [v11.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Subiculum (Hippocampus) [v11.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Hippocampus_Subc_l_N10_nlin2MNI152ASYM2009C_11.1_publicP_febae932d584834b5365ece4a3a311cc.nii.gz"
+      },
+      {
+        "filename": "Subiculum (Hippocampus) [v11.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Subiculum (Hippocampus) [v11.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Hippocampus_Subc_l_N10_nlin2Stdcolin27_11.1_publicP_b049e4690de44f9cf0e0091f2f1ae328.nii.gz"
+      },
+      {
+        "filename": "Subiculum (Hippocampus) [v11.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Subiculum (Hippocampus) [v11.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Hippocampus_Subc_r_N10_nlin2MNI152ASYM2009C_11.1_publicP_e6c2e76f622d20d65d1021f6d1a89eef.nii.gz"
+      },
+      {
+        "filename": "Subiculum (Hippocampus) [v11.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Subiculum (Hippocampus) [v11.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Hippocampus_Subc_r_N10_nlin2Stdcolin27_11.1_publicP_386adc58f1ebd7a13ef6eb64978fef65.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area 6d1 (PreCG) (v4.1)",
+    [
+      {
+        "filename": "Area 6d1 (PreCG) [v4.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 6d1 (PreCG) [v4.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Premotor_6d1_l_N10_nlin2MNI152ASYM2009C_4.1_publicDOI_13de44a2c2d75bdc01f4e4f3c33ab70c.nii.gz"
+      },
+      {
+        "filename": "Area 6d1 (PreCG) [v4.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 6d1 (PreCG) [v4.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Premotor_6d1_l_N10_nlin2Stdcolin27_4.1_publicDOI_d53dd5b69506097a3c256cdd50ffd0a6.nii.gz"
+      },
+      {
+        "filename": "Area 6d1 (PreCG) [v4.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 6d1 (PreCG) [v4.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Premotor_6d1_r_N10_nlin2MNI152ASYM2009C_4.1_publicDOI_2a4509c2f0c6bdc52863e376049c3fde.nii.gz"
+      },
+      {
+        "filename": "Area 6d1 (PreCG) [v4.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 6d1 (PreCG) [v4.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Premotor_6d1_r_N10_nlin2Stdcolin27_4.1_publicDOI_4d0ff72e36020299b349d8a494917373.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area ifj1 (IFS/PreCS) (v2.2)",
+    [
+      {
+        "filename": "Area ifj1 (IFS/PreCS) [v2.2, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area ifj1 (IFS/PreCS) [v2.2, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IFS_ifj1_l_N10_nlin2MNI152ASYM2009C_2.2_publicDOI_51cf544971b79d4b9a10fe5b9da00576.nii.gz"
+      },
+      {
+        "filename": "Area ifj1 (IFS/PreCS) [v2.2, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area ifj1 (IFS/PreCS) [v2.2, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IFS_ifj1_l_N10_nlin2Stdcolin27_2.2_publicDOI_cb45fad7eaa1423aa4dd807529a3f689.nii.gz"
+      },
+      {
+        "filename": "Area ifj1 (IFS/PreCS) [v2.2, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area ifj1 (IFS/PreCS) [v2.2, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IFS_ifj1_r_N10_nlin2MNI152ASYM2009C_2.2_publicDOI_00c617b20263b7e98ba4f25e5cf11a1f.nii.gz"
+      },
+      {
+        "filename": "Area ifj1 (IFS/PreCS) [v2.2, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area ifj1 (IFS/PreCS) [v2.2, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IFS_ifj1_r_N10_nlin2Stdcolin27_2.2_publicDOI_c09b6c65860aecdd6c7243bf89270e75.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area ifj2 (IFS/PreCS) (v2.2)",
+    [
+      {
+        "filename": "Area ifj2 (IFS/PreCS) [v2.2, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area ifj2 (IFS/PreCS) [v2.2, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IFS_ifj2_l_N10_nlin2MNI152ASYM2009C_2.2_publicDOI_0c3fa7a162ff6d09b5d7127d68750969.nii.gz"
+      },
+      {
+        "filename": "Area ifj2 (IFS/PreCS) [v2.2, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area ifj2 (IFS/PreCS) [v2.2, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IFS_ifj2_l_N10_nlin2Stdcolin27_2.2_publicDOI_86b9e91d54b288198f3604075196534f.nii.gz"
+      },
+      {
+        "filename": "Area ifj2 (IFS/PreCS) [v2.2, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area ifj2 (IFS/PreCS) [v2.2, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IFS_ifj2_r_N10_nlin2MNI152ASYM2009C_2.2_publicDOI_a988cbde839a0399e767be7ef02cc95c.nii.gz"
+      },
+      {
+        "filename": "Area ifj2 (IFS/PreCS) [v2.2, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area ifj2 (IFS/PreCS) [v2.2, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IFS_ifj2_r_N10_nlin2Stdcolin27_2.2_publicDOI_346dca14e393e290b70807d4e30cd835.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area 6d2 (PreCG) (v4.1)",
+    [
+      {
+        "filename": "Area 6d2 (PreCG) [v4.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 6d2 (PreCG) [v4.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Premotor_6d2_l_N10_nlin2MNI152ASYM2009C_4.1_publicDOI_e8a157e7d4005c001c54b0ea29378393.nii.gz"
+      },
+      {
+        "filename": "Area 6d2 (PreCG) [v4.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 6d2 (PreCG) [v4.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Premotor_6d2_l_N10_nlin2Stdcolin27_4.1_publicDOI_3ace355865b7a75fb43f17e1d6807219.nii.gz"
+      },
+      {
+        "filename": "Area 6d2 (PreCG) [v4.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 6d2 (PreCG) [v4.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Premotor_6d2_r_N10_nlin2MNI152ASYM2009C_4.1_publicDOI_d027403f16747e0ac6f67dc3649f84a8.nii.gz"
+      },
+      {
+        "filename": "Area 6d2 (PreCG) [v4.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 6d2 (PreCG) [v4.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Premotor_6d2_r_N10_nlin2Stdcolin27_4.1_publicDOI_8a089876227dcbbd0b5223446ac46263.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area ifs1 (IFS) (v2.2)",
+    [
+      {
+        "filename": "Area ifs1 (IFS) [v2.2, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area ifs1 (IFS) [v2.2, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IFS_ifs1_l_N10_nlin2MNI152ASYM2009C_2.2_publicDOI_77901443edc477e83f2bb6b47a363873.nii.gz"
+      },
+      {
+        "filename": "Area ifs1 (IFS) [v2.2, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area ifs1 (IFS) [v2.2, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IFS_ifs1_l_N10_nlin2Stdcolin27_2.2_publicDOI_2fbed54a956057637fdba19857b48e9f.nii.gz"
+      },
+      {
+        "filename": "Area ifs1 (IFS) [v2.2, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area ifs1 (IFS) [v2.2, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IFS_ifs1_r_N10_nlin2MNI152ASYM2009C_2.2_publicDOI_144113cffdeb98e2b16d713a6b7502e4.nii.gz"
+      },
+      {
+        "filename": "Area ifs1 (IFS) [v2.2, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area ifs1 (IFS) [v2.2, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IFS_ifs1_r_N10_nlin2Stdcolin27_2.2_publicDOI_baf7f7a7c7d00a2044f409b92b78b926.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area 6d3 (SFS) (v4.1)",
+    [
+      {
+        "filename": "Area 6d3 (SFS) [v4.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 6d3 (SFS) [v4.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Premotor_6d3_l_N10_nlin2MNI152ASYM2009C_4.1_publicDOI_285f0f08aca736a967a265f27b78f267.nii.gz"
+      },
+      {
+        "filename": "Area 6d3 (SFS) [v4.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 6d3 (SFS) [v4.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Premotor_6d3_l_N10_nlin2Stdcolin27_4.1_publicDOI_20d31470e7af79c7af8918d842904696.nii.gz"
+      },
+      {
+        "filename": "Area 6d3 (SFS) [v4.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 6d3 (SFS) [v4.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Premotor_6d3_r_N10_nlin2MNI152ASYM2009C_4.1_publicDOI_49949fbd2006bb6a9f3f6032f79fc1e7.nii.gz"
+      },
+      {
+        "filename": "Area 6d3 (SFS) [v4.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 6d3 (SFS) [v4.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Premotor_6d3_r_N10_nlin2Stdcolin27_4.1_publicDOI_1087f075fb1d7c254046f74f77f67bc5.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area ifs2 (IFS) (v2.2)",
+    [
+      {
+        "filename": "Area ifs2 (IFS) [v2.2, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area ifs2 (IFS) [v2.2, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IFS_ifs2_l_N10_nlin2MNI152ASYM2009C_2.2_publicDOI_3b1bdcf898eaa037f9cfed73620493e0.nii.gz"
+      },
+      {
+        "filename": "Area ifs2 (IFS) [v2.2, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area ifs2 (IFS) [v2.2, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IFS_ifs2_l_N10_nlin2Stdcolin27_2.2_publicDOI_5ca6ef9bbc75f8785f3ca7701919d6d2.nii.gz"
+      },
+      {
+        "filename": "Area ifs2 (IFS) [v2.2, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area ifs2 (IFS) [v2.2, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IFS_ifs2_r_N10_nlin2MNI152ASYM2009C_2.2_publicDOI_022d278402aab813fcb610330f53c4e7.nii.gz"
+      },
+      {
+        "filename": "Area ifs2 (IFS) [v2.2, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area ifs2 (IFS) [v2.2, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IFS_ifs2_r_N10_nlin2Stdcolin27_2.2_publicDOI_fa175bc55a78d67a6b90011fecd7ade5.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area ifs3 (IFS) (v2.2)",
+    [
+      {
+        "filename": "Area ifs3 (IFS) [v2.2, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area ifs3 (IFS) [v2.2, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IFS_ifs3_l_N10_nlin2MNI152ASYM2009C_2.2_publicDOI_163dfd8bdc1ea401267827a07fe3c938.nii.gz"
+      },
+      {
+        "filename": "Area ifs3 (IFS) [v2.2, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area ifs3 (IFS) [v2.2, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IFS_ifs3_l_N10_nlin2Stdcolin27_2.2_publicDOI_a6839437711ba9eb50fd17baf7c6a562.nii.gz"
+      },
+      {
+        "filename": "Area ifs3 (IFS) [v2.2, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area ifs3 (IFS) [v2.2, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IFS_ifs3_r_N10_nlin2MNI152ASYM2009C_2.2_publicDOI_e664da66c465b00af07d0d53e6300b17.nii.gz"
+      },
+      {
+        "filename": "Area ifs3 (IFS) [v2.2, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area ifs3 (IFS) [v2.2, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IFS_ifs3_r_N10_nlin2Stdcolin27_2.2_publicDOI_634ba65855c32e73a6d9848f6512f62a.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area 5Ci (SPL) (v8.4)",
+    [
+      {
+        "filename": "Area 5Ci (SPL) [v8.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 5Ci (SPL) [v8.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_5Ci_l_N10_nlin2MNI152ASYM2009C_8.4_publicP_c87b6ceb439d4f1598d5c77cb8479a1e.nii.gz"
+      },
+      {
+        "filename": "Area 5Ci (SPL) [v8.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 5Ci (SPL) [v8.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_5Ci_l_N10_nlin2Stdcolin27_8.4_publicP_19a32582858cc57b7fe1834b22bd118a.nii.gz"
+      },
+      {
+        "filename": "Area 5Ci (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 5Ci (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_5Ci_r_N10_nlin2MNI152ASYM2009C_8.4_publicP_6b7ea73932bf60acbe2bf9c395381f55.nii.gz"
+      },
+      {
+        "filename": "Area 5Ci (SPL) [v8.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 5Ci (SPL) [v8.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_5Ci_r_N10_nlin2Stdcolin27_8.4_publicP_b9fefdaa91a8382c7839fd5182e37f5c.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area ifs4 (IFS) (v2.2)",
+    [
+      {
+        "filename": "Area ifs4 (IFS) [v2.2, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area ifs4 (IFS) [v2.2, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IFS_ifs4_l_N10_nlin2MNI152ASYM2009C_2.2_publicDOI_57c4832619f167ab18995996c02d8295.nii.gz"
+      },
+      {
+        "filename": "Area ifs4 (IFS) [v2.2, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area ifs4 (IFS) [v2.2, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IFS_ifs4_l_N10_nlin2Stdcolin27_2.2_publicDOI_9c0d663426f3c3fe44dc19c2e4c524f7.nii.gz"
+      },
+      {
+        "filename": "Area ifs4 (IFS) [v2.2, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area ifs4 (IFS) [v2.2, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IFS_ifs4_r_N10_nlin2MNI152ASYM2009C_2.2_publicDOI_0d57128ee2cd1878ec1c0b36a390ea82.nii.gz"
+      },
+      {
+        "filename": "Area ifs4 (IFS) [v2.2, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area ifs4 (IFS) [v2.2, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IFS_ifs4_r_N10_nlin2Stdcolin27_2.2_publicDOI_9dc7b73fc32e0ace1895b041827fa134.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area 5L (SPL) (v8.4)",
+    [
+      {
+        "filename": "Area 5L (SPL) [v8.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 5L (SPL) [v8.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_5L_l_N10_nlin2MNI152ASYM2009C_8.4_publicP_ee264b92d11f2a43b0ed49f9e7bfffd4.nii.gz"
+      },
+      {
+        "filename": "Area 5L (SPL) [v8.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 5L (SPL) [v8.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_5L_l_N10_nlin2Stdcolin27_8.4_publicP_b200762900ac415160ab4f0ea4c97ff8.nii.gz"
+      },
+      {
+        "filename": "Area 5L (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 5L (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_5L_r_N10_nlin2MNI152ASYM2009C_8.4_publicP_86b905ed83404e843f135f497cf484a9.nii.gz"
+      },
+      {
+        "filename": "Area 5L (SPL) [v8.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 5L (SPL) [v8.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_5L_r_N10_nlin2Stdcolin27_8.4_publicP_51222bf8c65bb707a787a659fbdbc655.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area PF (IPL) (v9.4)",
+    [
+      {
+        "filename": "Area PF (IPL) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area PF (IPL) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PF_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_a10eb8515cb0f7b434137ce6f04eb00b.nii.gz"
+      },
+      {
+        "filename": "Area PF (IPL) [v9.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area PF (IPL) [v9.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PF_l_N10_nlin2Stdcolin27_9.4_publicP_74d941df6a0b70295896125e27f1072b.nii.gz"
+      },
+      {
+        "filename": "Area PF (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area PF (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PF_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_d8f88811f56dbc28045070aaf370d0ed.nii.gz"
+      },
+      {
+        "filename": "Area PF (IPL) [v9.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area PF (IPL) [v9.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PF_r_N10_nlin2Stdcolin27_9.4_publicP_d715b06e48a51a04939d084ce5a3d7c1.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area 5M (SPL) (v8.4)",
+    [
+      {
+        "filename": "Area 5M (SPL) [v8.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 5M (SPL) [v8.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_5M_l_N10_nlin2MNI152ASYM2009C_8.4_publicP_b8d9fc804f57f2a6bd1116f02acffec8.nii.gz"
+      },
+      {
+        "filename": "Area 5M (SPL) [v8.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 5M (SPL) [v8.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_5M_l_N10_nlin2Stdcolin27_8.4_publicP_3531d80a4f71b30b4c45468af8fa3307.nii.gz"
+      },
+      {
+        "filename": "Area 5M (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 5M (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_5M_r_N10_nlin2MNI152ASYM2009C_8.4_publicP_21ee1551a3c30324f42ca0bb903eaae1.nii.gz"
+      },
+      {
+        "filename": "Area 5M (SPL) [v8.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 5M (SPL) [v8.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_5M_r_N10_nlin2Stdcolin27_8.4_publicP_e6d90903b848aebfa656c909f1766a66.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area PFcm (IPL) (v9.4)",
+    [
+      {
+        "filename": "Area PFcm (IPL) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area PFcm (IPL) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PFcm_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_e4c354cb14a007545e1c43189fb196e2.nii.gz"
+      },
+      {
+        "filename": "Area PFcm (IPL) [v9.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area PFcm (IPL) [v9.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PFcm_l_N10_nlin2Stdcolin27_9.4_publicP_de6698f167f750bb781dc1d94ac9c428.nii.gz"
+      },
+      {
+        "filename": "Area PFcm (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area PFcm (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PFcm_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_e83b1b144fa6d3e72e61b29a4757001d.nii.gz"
+      },
+      {
+        "filename": "Area PFcm (IPL) [v9.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area PFcm (IPL) [v9.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PFcm_r_N10_nlin2Stdcolin27_9.4_publicP_da886451f173415a44331d3eb80a2386.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area PFm (IPL) (v9.4)",
+    [
+      {
+        "filename": "Area PFm (IPL) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area PFm (IPL) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PFm_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_c82d509502b39957d20e5aa6989c8ca0.nii.gz"
+      },
+      {
+        "filename": "Area PFm (IPL) [v9.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area PFm (IPL) [v9.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PFm_l_N10_nlin2Stdcolin27_9.4_publicP_e1feae26309f20f208adf341fe5db53f.nii.gz"
+      },
+      {
+        "filename": "Area PFm (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area PFm (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PFm_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_7758af8727da3ced2d840afdef6f2495.nii.gz"
+      },
+      {
+        "filename": "Area PFm (IPL) [v9.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area PFm (IPL) [v9.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PFm_r_N10_nlin2Stdcolin27_9.4_publicP_99fefc475d6c934e896cb0a5055f8c1b.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area 7A (SPL) (v8.4)",
+    [
+      {
+        "filename": "Area 7A (SPL) [v8.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 7A (SPL) [v8.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_7A_l_N10_nlin2MNI152ASYM2009C_8.4_publicP_0120e6ac53deea83a5203a7368a35b31.nii.gz"
+      },
+      {
+        "filename": "Area 7A (SPL) [v8.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 7A (SPL) [v8.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_7A_l_N10_nlin2Stdcolin27_8.4_publicP_8d57d1cf5be46a085868adc403ad297f.nii.gz"
+      },
+      {
+        "filename": "Area 7A (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 7A (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_7A_r_N10_nlin2MNI152ASYM2009C_8.4_publicP_b5a68034a7ab7caabf5fe1909cbb87dd.nii.gz"
+      },
+      {
+        "filename": "Area 7A (SPL) [v8.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 7A (SPL) [v8.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_7A_r_N10_nlin2Stdcolin27_8.4_publicP_1c5f7d8bdc2a3fcce61ed23e3ed2e292.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area PFop (IPL) (v9.4)",
+    [
+      {
+        "filename": "Area PFop (IPL) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area PFop (IPL) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PFop_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_35417f04bfb29680c7afe881261e9105.nii.gz"
+      },
+      {
+        "filename": "Area PFop (IPL) [v9.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area PFop (IPL) [v9.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PFop_l_N10_nlin2Stdcolin27_9.4_publicP_9088f650ae3c0cc599550c9ad9e7c2fa.nii.gz"
+      },
+      {
+        "filename": "Area PFop (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area PFop (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PFop_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_bd4eaecba1988bc31a745cf4e1f85ef5.nii.gz"
+      },
+      {
+        "filename": "Area PFop (IPL) [v9.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area PFop (IPL) [v9.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PFop_r_N10_nlin2Stdcolin27_9.4_publicP_08ee99acfb5bc508cfbf18685554bd3d.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area 7M (SPL) (v8.4)",
+    [
+      {
+        "filename": "Area 7M (SPL) [v8.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 7M (SPL) [v8.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_7M_l_N10_nlin2MNI152ASYM2009C_8.4_publicP_46e88581204e26ce7ba9e597c08f9901.nii.gz"
+      },
+      {
+        "filename": "Area 7M (SPL) [v8.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 7M (SPL) [v8.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_7M_l_N10_nlin2Stdcolin27_8.4_publicP_28a7a8c33070d0e9b3c1d5dcf17e85e3.nii.gz"
+      },
+      {
+        "filename": "Area 7M (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 7M (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_7M_r_N10_nlin2MNI152ASYM2009C_8.4_publicP_9bd981fd9aae90aa1751a39c62cb1f57.nii.gz"
+      },
+      {
+        "filename": "Area 7M (SPL) [v8.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 7M (SPL) [v8.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_7M_r_N10_nlin2Stdcolin27_8.4_publicP_a9c108b2081c8086b63d247c2f8942ef.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area PFt (IPL) (v9.4)",
+    [
+      {
+        "filename": "Area PFt (IPL) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area PFt (IPL) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PFt_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_2f30461bc406dfda445b68b5edd8950f.nii.gz"
+      },
+      {
+        "filename": "Area PFt (IPL) [v9.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area PFt (IPL) [v9.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PFt_l_N10_nlin2Stdcolin27_9.4_publicP_ae4814e8e10a39f2226cbe0e40d5898d.nii.gz"
+      },
+      {
+        "filename": "Area PFt (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area PFt (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PFt_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_28f7d67ec4042c21c459d44566c13c5c.nii.gz"
+      },
+      {
+        "filename": "Area PFt (IPL) [v9.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area PFt (IPL) [v9.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PFt_r_N10_nlin2Stdcolin27_9.4_publicP_fbac57b455b0c33989a35f2201126cb2.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area PGa (IPL) (v9.4)",
+    [
+      {
+        "filename": "Area PGa (IPL) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area PGa (IPL) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PGa_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_aefd1d612523c56e9d11b1b33d2d1373.nii.gz"
+      },
+      {
+        "filename": "Area PGa (IPL) [v9.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area PGa (IPL) [v9.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PGa_l_N10_nlin2Stdcolin27_9.4_publicP_655596fcf8594262ae9c7f305b2b4b30.nii.gz"
+      },
+      {
+        "filename": "Area PGa (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area PGa (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PGa_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_a381916e2df422a0c89db5471c9c4d41.nii.gz"
+      },
+      {
+        "filename": "Area PGa (IPL) [v9.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area PGa (IPL) [v9.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PGa_r_N10_nlin2Stdcolin27_9.4_publicP_4e7ecd6470da24e8ec1545022ba7bf4c.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area 7PC (SPL) (v8.4)",
+    [
+      {
+        "filename": "Area 7PC (SPL) [v8.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 7PC (SPL) [v8.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_7PC_l_N10_nlin2MNI152ASYM2009C_8.4_publicP_cad4c9dd53f23303d2a4528613035cd7.nii.gz"
+      },
+      {
+        "filename": "Area 7PC (SPL) [v8.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 7PC (SPL) [v8.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_7PC_l_N10_nlin2Stdcolin27_8.4_publicP_483e2a5a539829e9649282df4d175613.nii.gz"
+      },
+      {
+        "filename": "Area 7PC (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 7PC (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_7PC_r_N10_nlin2MNI152ASYM2009C_8.4_publicP_d49e9f09d2c83787b8b287b7799b2288.nii.gz"
+      },
+      {
+        "filename": "Area 7PC (SPL) [v8.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 7PC (SPL) [v8.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_7PC_r_N10_nlin2Stdcolin27_8.4_publicP_00436b9550b3a0706826b44a31e38b01.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area PGp (IPL) (v9.4)",
+    [
+      {
+        "filename": "Area PGp (IPL) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area PGp (IPL) [v9.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PGp_l_N10_nlin2MNI152ASYM2009C_9.4_publicP_65aec0498dabf336f51f1ab5a5e1e173.nii.gz"
+      },
+      {
+        "filename": "Area PGp (IPL) [v9.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area PGp (IPL) [v9.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PGp_l_N10_nlin2Stdcolin27_9.4_publicP_147e4c8a390add242ab474108811d45e.nii.gz"
+      },
+      {
+        "filename": "Area PGp (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area PGp (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/IPL_PGp_r_N10_nlin2MNI152ASYM2009C_9.4_publicP_94fab0bde3d23f23ff0554b7d426c912.nii.gz"
+      },
+      {
+        "filename": "Area PGp (IPL) [v9.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area PGp (IPL) [v9.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/IPL_PGp_r_N10_nlin2Stdcolin27_9.4_publicP_43784aadc4d7a4f7f853ed4a09253161.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area 7P (SPL) (v8.4)",
+    [
+      {
+        "filename": "Area 7P (SPL) [v8.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 7P (SPL) [v8.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_7P_l_N10_nlin2MNI152ASYM2009C_8.4_publicP_39e6e34f2218b19b39dc7fae4d00b548.nii.gz"
+      },
+      {
+        "filename": "Area 7P (SPL) [v8.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 7P (SPL) [v8.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_7P_l_N10_nlin2Stdcolin27_8.4_publicP_273286deb524b6db60c55aef828b39b7.nii.gz"
+      },
+      {
+        "filename": "Area 7P (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 7P (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/SPL_7P_r_N10_nlin2MNI152ASYM2009C_8.4_publicP_bc14a93165a26089f5ca0150f3116b02.nii.gz"
+      },
+      {
+        "filename": "Area 7P (SPL) [v8.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 7P (SPL) [v8.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/SPL_7P_r_N10_nlin2Stdcolin27_8.4_publicP_4985145e131f3b2db24765767d8ad833.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area Ia (Insula) (v3.1)",
+    [
+      {
+        "filename": "Area Ia (Insula) [v3.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area Ia (Insula) [v3.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Ia_l_N10_nlin2MNI152ASYM2009C_3.1_publicDOI_3ecba4e28455cd52544127ad4efce4ca.nii.gz"
+      },
+      {
+        "filename": "Area Ia (Insula) [v3.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area Ia (Insula) [v3.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Ia_l_N10_nlin2Stdcolin27_3.1_publicDOI_a1dc222eaef902176bb1a87e51cb57a9.nii.gz"
+      },
+      {
+        "filename": "Area Ia (Insula) [v3.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area Ia (Insula) [v3.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Ia_r_N10_nlin2MNI152ASYM2009C_3.1_publicDOI_190a0e68cec5c6c22f8afca48aa861c8.nii.gz"
+      },
+      {
+        "filename": "Area Ia (Insula) [v3.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area Ia (Insula) [v3.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Ia_r_N10_nlin2Stdcolin27_3.1_publicDOI_75c6474e570337081abb1929e73752a2.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area 6ma (preSMA, mesial SFG) (v9.1)",
+    [
+      {
+        "filename": "Area 6ma (preSMA, mesial SFG) [v9.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 6ma (preSMA, mesial SFG) [v9.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Supplementarymotor_presma_l_N10_nlin2MNI152ASYM2009C_9.1_publicP_64a7846e7444bfc427baffe0d5dd606f.nii.gz"
+      },
+      {
+        "filename": "Area 6ma (preSMA, mesial SFG) [v9.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 6ma (preSMA, mesial SFG) [v9.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Supplementarymotor_presma_l_N10_nlin2Stdcolin27_9.1_publicP_c4e110a68942904a829ce1a6abb28bd1.nii.gz"
+      },
+      {
+        "filename": "Area 6ma (preSMA, mesial SFG) [v9.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 6ma (preSMA, mesial SFG) [v9.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Supplementarymotor_presma_r_N10_nlin2MNI152ASYM2009C_9.1_publicP_e6a4f1fe3062ba205a426d5f759a95f9.nii.gz"
+      },
+      {
+        "filename": "Area 6ma (preSMA, mesial SFG) [v9.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 6ma (preSMA, mesial SFG) [v9.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Supplementarymotor_presma_r_N10_nlin2Stdcolin27_9.1_publicP_d7e68149ee548516d2e3f63158253c5f.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area Id1 (Insula) (v13.1)",
+    [
+      {
+        "filename": "Area Id1 (Insula) [v13.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area Id1 (Insula) [v13.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Id1_l_N10_nlin2MNI152ASYM2009C_13.1_publicP_d5d83b0e83b5f1315d7c452f48475a08.nii.gz"
+      },
+      {
+        "filename": "Area Id1 (Insula) [v13.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area Id1 (Insula) [v13.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Id1_l_N10_nlin2Stdcolin27_13.1_publicP_4849992227f5c257e1a9f7666fe1ad7b.nii.gz"
+      },
+      {
+        "filename": "Area Id1 (Insula) [v13.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area Id1 (Insula) [v13.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Id1_r_N10_nlin2MNI152ASYM2009C_13.1_publicP_91c85673b4f142ddaca21d81c9b487ec.nii.gz"
+      },
+      {
+        "filename": "Area Id1 (Insula) [v13.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area Id1 (Insula) [v13.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Id1_r_N10_nlin2Stdcolin27_13.1_publicP_a053eee829eb22d5266c402ad29f98cb.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area Id4 (Insula) (v3.1)",
+    [
+      {
+        "filename": "Area Id4 (Insula) [v3.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area Id4 (Insula) [v3.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Id4_l_N10_nlin2MNI152ASYM2009C_3.1_publicDOI_e96ae430032349aac6a4a61aaee79b4d.nii.gz"
+      },
+      {
+        "filename": "Area Id4 (Insula) [v3.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area Id4 (Insula) [v3.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Id4_l_N10_nlin2Stdcolin27_3.1_publicDOI_f18ef7c60cb32c3641014f0909f93e02.nii.gz"
+      },
+      {
+        "filename": "Area Id4 (Insula) [v3.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area Id4 (Insula) [v3.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Id4_r_N10_nlin2MNI152ASYM2009C_3.1_publicDOI_5389bc4c23b416171b9f8defacac1a0a.nii.gz"
+      },
+      {
+        "filename": "Area Id4 (Insula) [v3.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area Id4 (Insula) [v3.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Id4_r_N10_nlin2Stdcolin27_3.1_publicDOI_2a6668950e5a00f4a74bf38acca581aa.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area 6mp (SMA, mesial SFG) (v9.1)",
+    [
+      {
+        "filename": "Area 6mp (SMA, mesial SFG) [v9.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 6mp (SMA, mesial SFG) [v9.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Supplementarymotor_sma_l_N10_nlin2MNI152ASYM2009C_9.1_publicP_70b04cf0590767ac0261524c4f4c791a.nii.gz"
+      },
+      {
+        "filename": "Area 6mp (SMA, mesial SFG) [v9.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 6mp (SMA, mesial SFG) [v9.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Supplementarymotor_sma_l_N10_nlin2Stdcolin27_9.1_publicP_1d38ab9abb3e1e48cca85f22de5b6336.nii.gz"
+      },
+      {
+        "filename": "Area 6mp (SMA, mesial SFG) [v9.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area 6mp (SMA, mesial SFG) [v9.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Supplementarymotor_sma_r_N10_nlin2MNI152ASYM2009C_9.1_publicP_9f44531c44b109bd3899ee4c5c654a12.nii.gz"
+      },
+      {
+        "filename": "Area 6mp (SMA, mesial SFG) [v9.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area 6mp (SMA, mesial SFG) [v9.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Supplementarymotor_sma_r_N10_nlin2Stdcolin27_9.1_publicP_a587671b8f0fbf0a2b8f3ae5d75ec32a.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area Id5 (Insula) (v3.1)",
+    [
+      {
+        "filename": "Area Id5 (Insula) [v3.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area Id5 (Insula) [v3.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Id5_l_N10_nlin2MNI152ASYM2009C_3.1_publicDOI_c4cac3c40faf5b360f496c93d228a5f7.nii.gz"
+      },
+      {
+        "filename": "Area Id5 (Insula) [v3.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area Id5 (Insula) [v3.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Id5_l_N10_nlin2Stdcolin27_3.1_publicDOI_b2b955819205633599cce414a0175604.nii.gz"
+      },
+      {
+        "filename": "Area Id5 (Insula) [v3.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area Id5 (Insula) [v3.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Insula_Id5_r_N10_nlin2MNI152ASYM2009C_3.1_publicDOI_9c6734478af4d58b09478ea8a0f4f2ca.nii.gz"
+      },
+      {
+        "filename": "Area Id5 (Insula) [v3.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area Id5 (Insula) [v3.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Insula_Id5_r_N10_nlin2Stdcolin27_3.1_publicDOI_2baf1d46de3dc9859c78fc1b034d1855.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area FG1 (FusG) (v1.4)",
+    [
+      {
+        "filename": "Area FG1 (FusG) [v1.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area FG1 (FusG) [v1.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_FG1_l_N10_nlin2MNI152ASYM2009C_1.4_publicP_bce8572815ce38ebf2348113c526316b.nii.gz"
+      },
+      {
+        "filename": "Area FG1 (FusG) [v1.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area FG1 (FusG) [v1.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_FG1_l_N10_nlin2Stdcolin27_1.4_publicP_f15aef925b85cdda07a24cd5df5bb2fa.nii.gz"
+      },
+      {
+        "filename": "Area FG1 (FusG) [v1.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area FG1 (FusG) [v1.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_FG1_r_N10_nlin2MNI152ASYM2009C_1.4_publicP_0d97288189f30b47b6d46a4641c6aaca.nii.gz"
+      },
+      {
+        "filename": "Area FG1 (FusG) [v1.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area FG1 (FusG) [v1.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_FG1_r_N10_nlin2Stdcolin27_1.4_publicP_db04aa33e7871003968694b1876d0a54.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area FG2 (FusG) (v1.4)",
+    [
+      {
+        "filename": "Area FG2 (FusG) [v1.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area FG2 (FusG) [v1.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_FG2_l_N10_nlin2MNI152ASYM2009C_1.4_publicP_f4ec7bdd50b94de8e24d588f921fe24f.nii.gz"
+      },
+      {
+        "filename": "Area FG2 (FusG) [v1.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area FG2 (FusG) [v1.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_FG2_l_N10_nlin2Stdcolin27_1.4_publicP_795615fc9a62df9aabc1b4184fc26b60.nii.gz"
+      },
+      {
+        "filename": "Area FG2 (FusG) [v1.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area FG2 (FusG) [v1.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_FG2_r_N10_nlin2MNI152ASYM2009C_1.4_publicP_c1ec4350fea589df56fdcdc451202997.nii.gz"
+      },
+      {
+        "filename": "Area FG2 (FusG) [v1.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area FG2 (FusG) [v1.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_FG2_r_N10_nlin2Stdcolin27_1.4_publicP_b6d8306c22a2872d2010aaaed2a09e7a.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area FG3 (FusG) (v6.1)",
+    [
+      {
+        "filename": "Area FG3 (FusG) [v6.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area FG3 (FusG) [v6.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_FG3_l_N10_nlin2MNI152ASYM2009C_6.1_publicP_821be84fb0820b15066242a2e9bfd144.nii.gz"
+      },
+      {
+        "filename": "Area FG3 (FusG) [v6.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area FG3 (FusG) [v6.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_FG3_l_N10_nlin2Stdcolin27_6.1_publicP_cf55dcdaad33d8a1b493fb6e74b44588.nii.gz"
+      },
+      {
+        "filename": "Area FG3 (FusG) [v6.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area FG3 (FusG) [v6.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_FG3_r_N10_nlin2MNI152ASYM2009C_6.1_publicP_6471455ff336127c39e73465265c8dae.nii.gz"
+      },
+      {
+        "filename": "Area FG3 (FusG) [v6.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area FG3 (FusG) [v6.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_FG3_r_N10_nlin2Stdcolin27_6.1_publicP_06d27f91c81bee534e4fe646b1cbbbc1.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area FG4 (FusG) (v6.1)",
+    [
+      {
+        "filename": "Area FG4 (FusG) [v6.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area FG4 (FusG) [v6.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_FG4_l_N10_nlin2MNI152ASYM2009C_6.1_publicP_2cd9d3a99ed5b800e8c27ab6dd33a5de.nii.gz"
+      },
+      {
+        "filename": "Area FG4 (FusG) [v6.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area FG4 (FusG) [v6.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_FG4_l_N10_nlin2Stdcolin27_6.1_publicP_1c321f02425aa7828dce7a5b042bda82.nii.gz"
+      },
+      {
+        "filename": "Area FG4 (FusG) [v6.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area FG4 (FusG) [v6.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_FG4_r_N10_nlin2MNI152ASYM2009C_6.1_publicP_f0a0c573824a033925bd4af891146e5c.nii.gz"
+      },
+      {
+        "filename": "Area FG4 (FusG) [v6.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area FG4 (FusG) [v6.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_FG4_r_N10_nlin2Stdcolin27_6.1_publicP_683f9ce4bb17648f79caaafb95e3a967.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area hOc1 (V1, 17, CalcS) (v2.4)",
+    [
+      {
+        "filename": "Area hOc1 (V1, 17, CalcS) [v2.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hOc1 (V1, 17, CalcS) [v2.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc1_l_N10_nlin2MNI152ASYM2009C_2.4_publicP_d3045ee3c0c4de9820eb1516d2cc72bb.nii.gz"
+      },
+      {
+        "filename": "Area hOc1 (V1, 17, CalcS) [v2.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hOc1 (V1, 17, CalcS) [v2.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc1_l_N10_nlin2Stdcolin27_2.4_publicP_788fe1ea663b1fa4e7e9a8b5cf26c5d6.nii.gz"
+      },
+      {
+        "filename": "Area hOc1 (V1, 17, CalcS) [v2.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hOc1 (V1, 17, CalcS) [v2.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc1_r_N10_nlin2MNI152ASYM2009C_2.4_publicP_a48ca5d938781ebaf1eaa25f59df74d0.nii.gz"
+      },
+      {
+        "filename": "Area hOc1 (V1, 17, CalcS) [v2.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hOc1 (V1, 17, CalcS) [v2.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc1_r_N10_nlin2Stdcolin27_2.4_publicP_b3b742528b1d1a933c89b2604d23028d.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area hOc2 (V2, 18) (v2.4)",
+    [
+      {
+        "filename": "Area hOc2 (V2, 18) [v2.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hOc2 (V2, 18) [v2.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc2_l_N10_nlin2MNI152ASYM2009C_2.4_publicP_df81c453f3cf5b8092f52723b348b1e9.nii.gz"
+      },
+      {
+        "filename": "Area hOc2 (V2, 18) [v2.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hOc2 (V2, 18) [v2.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc2_l_N10_nlin2Stdcolin27_2.4_publicP_107c22563c6a2e866be63e0fa46dc438.nii.gz"
+      },
+      {
+        "filename": "Area hOc2 (V2, 18) [v2.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hOc2 (V2, 18) [v2.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc2_r_N10_nlin2MNI152ASYM2009C_2.4_publicP_ce802616d4367d2869dd4bbd3f11f1cb.nii.gz"
+      },
+      {
+        "filename": "Area hOc2 (V2, 18) [v2.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hOc2 (V2, 18) [v2.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc2_r_N10_nlin2Stdcolin27_2.4_publicP_a06dd5eab4720f7e81c5940c36f9af41.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area hOc3d (Cuneus) (v2.4)",
+    [
+      {
+        "filename": "Area hOc3d (Cuneus) [v2.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hOc3d (Cuneus) [v2.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc3d_l_N10_nlin2MNI152ASYM2009C_2.4_publicP_a79ba6482dee871a17b26451912fc724.nii.gz"
+      },
+      {
+        "filename": "Area hOc3d (Cuneus) [v2.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hOc3d (Cuneus) [v2.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc3d_l_N10_nlin2Stdcolin27_2.4_publicP_635ec81714dba724ca5da95e03ff2f40.nii.gz"
+      },
+      {
+        "filename": "Area hOc3d (Cuneus) [v2.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hOc3d (Cuneus) [v2.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc3d_r_N10_nlin2MNI152ASYM2009C_2.4_publicP_1a84fb38fc980635c9428b549b3c510c.nii.gz"
+      },
+      {
+        "filename": "Area hOc3d (Cuneus) [v2.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hOc3d (Cuneus) [v2.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc3d_r_N10_nlin2Stdcolin27_2.4_publicP_9263f0e0b2aafbd5e3f8eb672ab49353.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area hOc3v (LingG) (v3.4)",
+    [
+      {
+        "filename": "Area hOc3v (LingG) [v3.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hOc3v (LingG) [v3.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc3v_l_N10_nlin2MNI152ASYM2009C_3.4_publicP_65e888ad8a2a691d651f0404947518fb.nii.gz"
+      },
+      {
+        "filename": "Area hOc3v (LingG) [v3.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hOc3v (LingG) [v3.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc3v_l_N10_nlin2Stdcolin27_3.4_publicP_1a697c6ce10e7244d6a934a45c5dc79c.nii.gz"
+      },
+      {
+        "filename": "Area hOc3v (LingG) [v3.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hOc3v (LingG) [v3.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc3v_r_N10_nlin2MNI152ASYM2009C_3.4_publicP_8ce4868d81d4785cc2ac6a8d0b7a670b.nii.gz"
+      },
+      {
+        "filename": "Area hOc3v (LingG) [v3.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hOc3v (LingG) [v3.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc3v_r_N10_nlin2Stdcolin27_3.4_publicP_5ac50d54d3501d4acffbbe89b8b3521b.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area hOc4d (Cuneus) (v2.4)",
+    [
+      {
+        "filename": "Area hOc4d (Cuneus) [v2.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hOc4d (Cuneus) [v2.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc4d_l_N10_nlin2MNI152ASYM2009C_2.4_publicP_85c7f5168facd3330e23ac4af64a4275.nii.gz"
+      },
+      {
+        "filename": "Area hOc4d (Cuneus) [v2.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hOc4d (Cuneus) [v2.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc4d_l_N10_nlin2Stdcolin27_2.4_publicP_61837c79a744d456c34d3af946b676a3.nii.gz"
+      },
+      {
+        "filename": "Area hOc4d (Cuneus) [v2.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hOc4d (Cuneus) [v2.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc4d_r_N10_nlin2MNI152ASYM2009C_2.4_publicP_cb49cab793d13a0886b57da4d8585e53.nii.gz"
+      },
+      {
+        "filename": "Area hOc4d (Cuneus) [v2.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hOc4d (Cuneus) [v2.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc4d_r_N10_nlin2Stdcolin27_2.4_publicP_d4018904740da8830742474d5e8f94e0.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area hOc4la (LOC) (v3.4)",
+    [
+      {
+        "filename": "Area hOc4la (LOC) [v3.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hOc4la (LOC) [v3.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc4la_l_N10_nlin2MNI152ASYM2009C_3.4_publicP_4b22039a9e6b5d46c63af27028c3eb2c.nii.gz"
+      },
+      {
+        "filename": "Area hOc4la (LOC) [v3.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hOc4la (LOC) [v3.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc4la_l_N10_nlin2Stdcolin27_3.4_publicP_16f642398096ac1344ca8f41bcd72cfe.nii.gz"
+      },
+      {
+        "filename": "Area hOc4la (LOC) [v3.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hOc4la (LOC) [v3.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc4la_r_N10_nlin2MNI152ASYM2009C_3.4_publicP_4216964f14a3201ed0e59f698e071935.nii.gz"
+      },
+      {
+        "filename": "Area hOc4la (LOC) [v3.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hOc4la (LOC) [v3.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc4la_r_N10_nlin2Stdcolin27_3.4_publicP_18a6ea6984f712e91c0de10b2bb9a407.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area hOc4lp (LOC) (v3.4)",
+    [
+      {
+        "filename": "Area hOc4lp (LOC) [v3.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hOc4lp (LOC) [v3.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc4lp_l_N10_nlin2MNI152ASYM2009C_3.4_publicP_505d832a41fdf69427cedbbca146705e.nii.gz"
+      },
+      {
+        "filename": "Area hOc4lp (LOC) [v3.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hOc4lp (LOC) [v3.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc4lp_l_N10_nlin2Stdcolin27_3.4_publicP_fabcd708723f7c86e6cac4e4128e2c4d.nii.gz"
+      },
+      {
+        "filename": "Area hOc4lp (LOC) [v3.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hOc4lp (LOC) [v3.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc4lp_r_N10_nlin2MNI152ASYM2009C_3.4_publicP_fa5a9ca0badef71585a2c9ab40ce1ddf.nii.gz"
+      },
+      {
+        "filename": "Area hOc4lp (LOC) [v3.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hOc4lp (LOC) [v3.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc4lp_r_N10_nlin2Stdcolin27_3.4_publicP_1b5e1b3ae596329a1cdbb2d93d525507.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area hOc4v (LingG) (v3.4)",
+    [
+      {
+        "filename": "Area hOc4v (LingG) [v3.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hOc4v (LingG) [v3.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc4v_l_N10_nlin2MNI152ASYM2009C_3.4_publicP_411fef399d0549ef7e4b5a717fdd4c23.nii.gz"
+      },
+      {
+        "filename": "Area hOc4v (LingG) [v3.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hOc4v (LingG) [v3.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc4v_l_N10_nlin2Stdcolin27_3.4_publicP_45fabb5f075b26870141ef823fa15afb.nii.gz"
+      },
+      {
+        "filename": "Area hOc4v (LingG) [v3.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hOc4v (LingG) [v3.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc4v_r_N10_nlin2MNI152ASYM2009C_3.4_publicP_520fad8687876ce9cbbb2d4ef43de4d2.nii.gz"
+      },
+      {
+        "filename": "Area hOc4v (LingG) [v3.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hOc4v (LingG) [v3.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc4v_r_N10_nlin2Stdcolin27_3.4_publicP_82034ecd08bd39b16df0f465c94ceac0.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area hOc5 (LOC) (v2.4)",
+    [
+      {
+        "filename": "Area hOc5 (LOC) [v2.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hOc5 (LOC) [v2.4, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc5_l_N10_nlin2MNI152ASYM2009C_2.4_publicP_8711958bf427c07b36e28d6687bd7003.nii.gz"
+      },
+      {
+        "filename": "Area hOc5 (LOC) [v2.4, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hOc5 (LOC) [v2.4, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc5_l_N10_nlin2Stdcolin27_2.4_publicP_6ed980373c276947f90f58eefe410f96.nii.gz"
+      },
+      {
+        "filename": "Area hOc5 (LOC) [v2.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hOc5 (LOC) [v2.4, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc5_r_N10_nlin2MNI152ASYM2009C_2.4_publicP_f5d20a1ad3db354a5b9a6f13beb905b6.nii.gz"
+      },
+      {
+        "filename": "Area hOc5 (LOC) [v2.4, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hOc5 (LOC) [v2.4, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc5_r_N10_nlin2Stdcolin27_2.4_publicP_7542c361d311176986f0dbab9561b2f6.nii.gz"
+      }
+    ]
+  ],
+  [
+    "Probabilistic cytoarchitectonic map of Area hOc6 (POS) (v7.1)",
+    [
+      {
+        "filename": "Area hOc6 (POS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hOc6 (POS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc6_l_N10_nlin2MNI152ASYM2009C_7.1_publicP_768ea7470e377af487c4bab30b5e3f5a.nii.gz"
+      },
+      {
+        "filename": "Area hOc6 (POS) [v7.1, Colin 27, left hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hOc6 (POS) [v7.1, Colin 27, left hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc6_l_N10_nlin2Stdcolin27_7.1_publicP_be904a3989a71a4a202110ff3c6bc446.nii.gz"
+      },
+      {
+        "filename": "Area hOc6 (POS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "templateSpace": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+        "name": "Area hOc6 (POS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/icbm152casym/pmaps/Visual_hOc6_r_N10_nlin2MNI152ASYM2009C_7.1_publicP_abac2ae4767d3c4a3dbf7d9558d9f789.nii.gz"
+      },
+      {
+        "filename": "Area hOc6 (POS) [v7.1, Colin 27, right hemisphere]",
+        "templateSpace": "MNI Colin 27",
+        "name": "Area hOc6 (POS) [v7.1, Colin 27, right hemisphere]",
+        "mimetype": "application/nifti",
+        "url": "https://neuroglancer.humanbrainproject.eu/precomputed/JuBrain/17/colin27/pmaps/Visual_hOc6_r_N10_nlin2Stdcolin27_7.1_publicP_d39518619b83c18a818916c2d96bca68.nii.gz"
+      }
+    ]
+  ]
+]
\ No newline at end of file
diff --git a/deploy/datasets/supplements/previewFile.js b/deploy/datasets/supplements/previewFile.js
index dcdf4db88c076e45b4f11cf10c82eba348b82238..ea178530c1ed118387393dd8754f325b2ff521a2 100644
--- a/deploy/datasets/supplements/previewFile.js
+++ b/deploy/datasets/supplements/previewFile.js
@@ -3,6 +3,7 @@ const path = require('path')
 
 const DISABLE_RECEPTOR_PREVIEW = process.env.DISABLE_RECEPTOR_PREVIEW
 const DISABLE_JUBRAIN_PMAP = process.env.DISABLE_JUBRAIN_PMAP
+const DISABLE_JUBRAIN_PMAP_V17 = process.env.DISABLE_JUBRAIN_PMAP_V17
 const DISABLE_DWM_PMAP = process.env.DISABLE_DWM_PMAP
 const HOSTNAME = process.env.HOSTNAME || 'http://localhost:3000'
 
@@ -22,7 +23,8 @@ const readFile = (filename) => new Promise((resolve) => {
 Promise.all([
   DISABLE_RECEPTOR_PREVIEW ? Promise.resolve([]) : readFile('receptorPreview.json'),
   DISABLE_JUBRAIN_PMAP ? Promise.resolve([]) : readFile('pmapJubrainPreview.json'),
-  DISABLE_DWM_PMAP ? Promise.resolve([]) : readFile('pmapDWMPreview.json')
+  DISABLE_DWM_PMAP ? Promise.resolve([]) : readFile('pmapDWMPreview.json'),
+  DISABLE_JUBRAIN_PMAP_V17 ? Promise.resolve([]) : readFile('pmapJuBrainV17Preview.json')
 ])
   .then(arrOfA => arrOfA.reduce((acc, item) => acc.concat(item), []))
   .then(iterable => {
@@ -33,8 +35,13 @@ Promise.all([
     console.error('preview file error', e)
   })
 
-exports.getPreviewFile = ({ datasetName }) => Promise.resolve(
+exports.getPreviewFile = ({ datasetName, templateSelected }) => Promise.resolve(
   previewMap.get(datasetName)
+    .filter(({ templateSpace }) => {
+      if (!templateSpace) return true
+      if (!templateSelected) return true
+      return templateSpace === templateSelected
+    })
     .map(file => {
       return {
         ...file,
diff --git a/deploy/package.json b/deploy/package.json
index e76b3d9bbe32d2aae33a3d7ae39d7ae3740f50e1..72d3c417e28cb9541e4f1c1b0d947875dcda953b 100644
--- a/deploy/package.json
+++ b/deploy/package.json
@@ -13,8 +13,10 @@
   "author": "",
   "license": "ISC",
   "dependencies": {
+    "body-parser": "^1.19.0",
     "express": "^4.16.4",
     "express-session": "^1.15.6",
+    "jszip": "^3.2.1",
     "jwt-decode": "^2.2.0",
     "memorystore": "^1.6.1",
     "openid-client": "^2.4.5",
diff --git a/deploy/preview/index.js b/deploy/preview/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..508cae3bb79b1a947ffcc748b2f8b1fd69eb6eaa
--- /dev/null
+++ b/deploy/preview/index.js
@@ -0,0 +1,27 @@
+const router = require('express').Router()
+const request = require('request')
+const url = require('url')
+const stream = require('stream')
+
+let PROXY_HOSTNAME_WHITELIST
+
+try{
+  PROXY_HOSTNAME_WHITELIST = JSON.parse(process.env.PROXY_HOSTNAME_WHITELIST)
+}catch(e){
+  PROXY_HOSTNAME_WHITELIST = []
+}
+
+const whiteList = new Set([
+  'object.cscs.ch',
+  ...PROXY_HOSTNAME_WHITELIST
+])
+
+router.get('/file', (req, res) => {
+  const { fileUrl } = req.query
+  const f = url.parse(fileUrl)
+  if(f && f.hostname && whiteList.has(f.hostname))
+    return request(fileUrl).pipe(res)
+  else res.status(400).send()
+})
+
+module.exports = router
\ No newline at end of file
diff --git a/package.json b/package.json
index b49118e6391468c7484a242ccf1757fdb1c90abd..2acb48676fed72ee9fa9639abe26b48488e7a0f4 100644
--- a/package.json
+++ b/package.json
@@ -34,6 +34,7 @@
     "@angular/language-service": "^7.2.15",
     "@angular/platform-browser": "^7.2.15",
     "@angular/platform-browser-dynamic": "^7.2.15",
+    "@ngrx/effects": "^7.4.0",
     "@ngrx/store": "^6.0.1",
     "@ngtools/webpack": "^6.0.5",
     "@types/chart.js": "^2.7.20",
@@ -79,7 +80,6 @@
     "@angular/cdk": "^7.3.7",
     "@angular/material": "^7.3.7",
     "@angular/router": "^7.2.15",
-    "hammerjs": "^2.0.8",
     "zone.js": "^0.9.1"
   }
 }
diff --git a/src/atlasViewer/atlasViewer.apiService.service.ts b/src/atlasViewer/atlasViewer.apiService.service.ts
index bdaf63c10763e0cf58075995cb2f570262a40552..5173ec7a7825790bb058a09b56aa5cf0cb8c6c11 100644
--- a/src/atlasViewer/atlasViewer.apiService.service.ts
+++ b/src/atlasViewer/atlasViewer.apiService.service.ts
@@ -172,6 +172,10 @@ export interface InteractiveViewerInterface{
 
     mouseEvent : Observable<{eventName:string,event:MouseEvent}>
     mouseOverNehuba : Observable<{labelIndex : number, foundRegion : any | null}>
+    /**
+     * TODO add to documentation
+     */
+    mouseOverNehubaLayers: Observable<{layer:{name:string}, segment: any | number }[]>
 
     getNgHash : () => string
   }
diff --git a/src/atlasViewer/atlasViewer.component.ts b/src/atlasViewer/atlasViewer.component.ts
index c220280cf6e8e3619d89bbb45e5f0d6251beae87..f2dac903f512b6be381c220af79f39029407cc6f 100644
--- a/src/atlasViewer/atlasViewer.component.ts
+++ b/src/atlasViewer/atlasViewer.component.ts
@@ -1,8 +1,8 @@
-import { Component, HostBinding, ViewChild, ViewContainerRef, OnDestroy, OnInit, TemplateRef, AfterViewInit } from "@angular/core";
+import { Component, HostBinding, ViewChild, ViewContainerRef, OnDestroy, OnInit, TemplateRef, AfterViewInit, ElementRef } from "@angular/core";
 import { Store, select, ActionsSubject } from "@ngrx/store";
 import { ViewerStateInterface, isDefined, FETCHED_SPATIAL_DATA, UPDATE_SPATIAL_DATA, TOGGLE_SIDE_PANEL, safeFilter, UIStateInterface, OPEN_SIDE_PANEL, CLOSE_SIDE_PANEL } from "../services/stateStore.service";
-import { Observable, Subscription, combineLatest, interval, merge, of } from "rxjs";
-import { map, filter, distinctUntilChanged, delay, concatMap, debounceTime, withLatestFrom } from "rxjs/operators";
+import { Observable, Subscription, combineLatest, interval, merge, of, fromEvent } from "rxjs";
+import { map, filter, distinctUntilChanged, delay, concatMap, debounceTime, withLatestFrom, switchMap, takeUntil, scan, takeLast } from "rxjs/operators";
 import { AtlasViewerDataService } from "./atlasViewer.dataService.service";
 import { WidgetServices } from "./widgetUnit/widgetService.service";
 import { LayoutMainSide } from "../layouts/mainside/mainside.component";
@@ -19,6 +19,13 @@ import { FixedMouseContextualContainerDirective } from "src/util/directives/Fixe
 import { DatabrowserService } from "src/ui/databrowserModule/databrowser.service";
 import { AGREE_COOKIE, AGREE_KG_TOS, SHOW_KG_TOS } from "src/services/state/uiState.store";
 import { TabsetComponent } from "ngx-bootstrap/tabs";
+import { ToastService } from "src/services/toastService.service";
+
+/**
+ * TODO
+ * check against auxlillary mesh indicies, to only filter out aux indicies
+ */
+const filterFn = (segment) => typeof segment.segment !== 'string'
 
 @Component({
   selector: 'atlas-viewer',
@@ -45,6 +52,8 @@ export class AtlasViewer implements OnDestroy, OnInit, AfterViewInit {
   @ViewChild(FixedMouseContextualContainerDirective) rClContextualMenu: FixedMouseContextualContainerDirective
 
   @ViewChild('mobileMenuTabs') mobileMenuTabs: TabsetComponent
+  @ViewChild('publications') publications: TemplateRef<any>
+  @ViewChild('sidenav', { read: ElementRef} ) mobileSideNav: ElementRef
 
   /**
    * required for styling of all child components
@@ -67,8 +76,8 @@ export class AtlasViewer implements OnDestroy, OnInit, AfterViewInit {
   private showHelp$: Observable<any>
 
   public dedicatedView$: Observable<string | null>
-  public onhoverSegment$: Observable<string>
-  public onhoverSegmentForFixed$: Observable<string>
+  public onhoverSegments$: Observable<string[]>
+  public onhoverSegmentsForFixed$: Observable<string[]>
   public onhoverLandmark$ : Observable<string | null>
   private subscriptions: Subscription[] = []
 
@@ -85,6 +94,7 @@ export class AtlasViewer implements OnDestroy, OnInit, AfterViewInit {
 
   public sidePanelOpen$: Observable<boolean>
 
+
   get toggleMessage(){
     return this.constantsService.toggleMessage
   }
@@ -98,7 +108,8 @@ export class AtlasViewer implements OnDestroy, OnInit, AfterViewInit {
     public apiService: AtlasViewerAPIServices,
     private modalService: BsModalService,
     private databrowserService: DatabrowserService,
-    private dispatcher$: ActionsSubject
+    private dispatcher$: ActionsSubject,
+    private toastService: ToastService,
   ) {
     this.ngLayerNames$ = this.store.pipe(
       select('viewerState'),
@@ -179,23 +190,28 @@ export class AtlasViewer implements OnDestroy, OnInit, AfterViewInit {
     )
 
     // TODO temporary hack. even though the front octant is hidden, it seems if a mesh is present, hover will select the said mesh
-    this.onhoverSegment$ = combineLatest(
+    this.onhoverSegments$ = combineLatest(
       this.store.pipe(
         select('uiState'),
+        select('mouseOverSegments'),
+        filter(v => !!v),
+        distinctUntilChanged((o, n) => o.length === n.length && n.every(segment => o.find(oSegment => oSegment.layer.name === segment.layer.name && oSegment.segment === segment.segment) ) )
         /* cannot filter by state, as the template expects a default value, or it will throw ExpressionChangedAfterItHasBeenCheckedError */
-        map(state => state
-            && state.mouseOverSegment
-            && (isNaN(state.mouseOverSegment)
-              ? state.mouseOverSegment
-              : state.mouseOverSegment.toString())),
-        distinctUntilChanged((o, n) => o === n || (o && n && o.name && n.name && o.name === n.name))
+
       ),
       this.onhoverLandmark$
     ).pipe(
-      map(([segment, onhoverLandmark]) => onhoverLandmark ? null : segment )
+      map(([segments, onhoverLandmark]) => onhoverLandmark ? null : segments ),
+      map(segments => {
+        if (!segments)
+          return null
+        const filteredSeg = segments.filter(filterFn)
+        return filteredSeg.length > 0
+          ? segments.map(s => s.segment) 
+          : null
+        })
     )
 
-
     this.selectedParcellation$ = this.store.pipe(
       select('viewerState'),
       safeFilter('parcellationSelected'),
@@ -203,15 +219,35 @@ export class AtlasViewer implements OnDestroy, OnInit, AfterViewInit {
       distinctUntilChanged(),
     )
 
+
     this.subscriptions.push(
-      this.selectedParcellation$.subscribe(parcellation => this.selectedParcellation = parcellation)
+      this.newViewer$.subscribe(template => this.selectedTemplate = template)
     )
 
     this.subscriptions.push(
-      this.newViewer$.subscribe(template => this.selectedTemplate = template)
+      this.selectedParcellation$.subscribe(parcellation => {
+        this.selectedParcellation = parcellation
+        this.niiFileSize = 0
+
+
+
+        if ((this.selectedParcellation['properties'] &&
+            (this.selectedParcellation['properties']['publications'] || this.selectedParcellation['properties']['description']))
+            || (this.selectedTemplate['properties'] &&
+                (this.selectedTemplate['properties']['publications'] || this.selectedTemplate['properties']['description']))) {
+          if (this.handleToast) {
+            this.handleToast()
+            this.handleToast = null
+          }
+          this.handleToast = this.toastService.showToast(this.publications, {
+              timeout: 7000
+          })
+        }
+      })
     )
   }
 
+
   private selectedParcellation$: Observable<any>
   private selectedParcellation: any
 
@@ -338,10 +374,12 @@ export class AtlasViewer implements OnDestroy, OnInit, AfterViewInit {
       })
     })
 
-    this.onhoverSegmentForFixed$ = this.rClContextualMenu.onShow.pipe(
-      withLatestFrom(this.onhoverSegment$),
-      map(([_flag, onhoverSegment]) => onhoverSegment)
+    this.onhoverSegmentsForFixed$ = this.rClContextualMenu.onShow.pipe(
+      withLatestFrom(this.onhoverSegments$),
+      map(([_flag, onhoverSegments]) => onhoverSegments || [])
     )
+
+    this.closeMenuWithSwipe(this.mobileSideNav)
   }
 
   /**
@@ -457,6 +495,30 @@ export class AtlasViewer implements OnDestroy, OnInit, AfterViewInit {
       type: TOGGLE_SIDE_PANEL
     })
   }
+
+
+  closeMenuWithSwipe(documentToSwipe: ElementRef) {
+    if (documentToSwipe && documentToSwipe.nativeElement) {
+      const swipeDistance = 150; // swipe distance
+      const swipeLeft$ = fromEvent(documentToSwipe.nativeElement, 'touchstart')
+          .pipe(
+              switchMap(startEvent =>
+                  fromEvent(documentToSwipe.nativeElement, 'touchmove')
+                      .pipe(
+                          takeUntil(fromEvent(documentToSwipe.nativeElement, 'touchend')),
+                          map(event => event['touches'][0].pageX),
+                          scan((acc, pageX) => Math.round(startEvent['touches'][0].pageX - pageX), 0),
+                          takeLast(1),
+                          filter(difference => difference >= swipeDistance)
+                      )))
+      this.subscriptions.push(
+        swipeLeft$.subscribe(() => {
+          this.changeMenuState({close: true})
+        })
+      )
+    }
+  }
+
 }
 
 export interface NgLayerInterface{
diff --git a/src/atlasViewer/atlasViewer.dataService.service.ts b/src/atlasViewer/atlasViewer.dataService.service.ts
index 149b02e0ab80a488c0781cbc4a23e9c9ba5c1c46..b974d8536374bc1d38c467e935d5543ee2691352 100644
--- a/src/atlasViewer/atlasViewer.dataService.service.ts
+++ b/src/atlasViewer/atlasViewer.dataService.service.ts
@@ -83,8 +83,8 @@ export class AtlasViewerDataService implements OnDestroy{
     
     if (templateSpace === 'MNI 152 ICBM 2009c Nonlinear Asymmetric'){
       return Promise.all([
-        fetch('res/json/***REMOVED***.json').then(res=>res.json()),
-        fetch('res/json/***REMOVED***.json').then(res=>res.json())
+        fetch('res/json/**removed**.json').then(res=>res.json()),
+        fetch('res/json/**removed**.json').then(res=>res.json())
       ])
         .then(arr => {
           this.store.dispatch({
diff --git a/src/atlasViewer/atlasViewer.style.css b/src/atlasViewer/atlasViewer.style.css
index b56b1579651b45235cf8f5cc43f5c4f5a2f05be9..75604388751f3a6d86c5f39da18550cadd18c118 100644
--- a/src/atlasViewer/atlasViewer.style.css
+++ b/src/atlasViewer/atlasViewer.style.css
@@ -1,5 +1,3 @@
-/* @import '~@angular/material/prebuilt-themes/indigo-pink.css'; */
-
 :host, :host > .atlas-container
 {
   display:block;
@@ -21,9 +19,10 @@ ui-nehuba-container
   height:100%;
 }
 
+/* zindex of banner wrapper needs to be lower than zindex of floating layer */
 div[bannerWrapper]
 {
-  z-index:1000;
+  z-index:12;
   position:absolute;
 
   width:100%;
@@ -174,6 +173,6 @@ mat-sidenav {
   box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
 }
 
-.mpobileMenuTabs {
+.mobileMenuTabs {
   margin: 40px 0 0 5px;
 }
\ No newline at end of file
diff --git a/src/atlasViewer/atlasViewer.template.html b/src/atlasViewer/atlasViewer.template.html
index aff1c05c70a4f41d8355a9d54188b323f47306af..045fe85dfe3b204a3a2f70ac37bacf1013a54682 100644
--- a/src/atlasViewer/atlasViewer.template.html
+++ b/src/atlasViewer/atlasViewer.template.html
@@ -23,9 +23,17 @@
         <button mat-button style="height: 0; position: absolute;"></button>
         <logo-container class="logoContainerMobile"></logo-container>
   
-        <tabset #mobileMenuTabs [justified]="true" class="mpobileMenuTabs" >
+        <tabset #mobileMenuTabs [justified]="true" class="mobileMenuTabs" >
           <tab heading="Template">
             <signin-banner [darktheme] = "darktheme" signinWrapper></signin-banner>
+            <layout-floating-container *ngIf="this.nehubaContainer && this.nehubaContainer.nehubaViewer">
+              <ui-status-card 
+                  [selectedTemplate]="selectedTemplate" 
+                  [isMobile]="isMobile"
+                  [onHoverSegmentName]="this.nehubaContainer.onHoverSegmentName$ | async"
+                  [nehubaViewer]="this.nehubaContainer.nehubaViewer">
+              </ui-status-card>
+            </layout-floating-container>
           </tab>
           <tab heading="Containers">
             <menu-icons iconWrapper hidden #MenuIcons>
@@ -119,7 +127,7 @@
     <ui-nehuba-container (contextmenu)="nehubaClickHandler($event)">
     </ui-nehuba-container>
   
-    <div *ngIf="!isMobile" bannerWrapper>
+    <div *ngIf="!isMobile && selectedTemplate" bannerWrapper>
       <menu-icons iconWrapper>
       </menu-icons>
       <signin-banner signinWrapper>
@@ -127,7 +135,7 @@
     </div>
   
     <layout-floating-container
-      zIndex = "9"
+      zIndex="13"
       #floatingOverlayContainer>
       <div floatingContainerDirective>
   
@@ -141,26 +149,38 @@
           </h5>
         </div>
         <div body>
+
+          <div
+            *ngIf="(onhoverSegmentsForFixed$ | async)?.length > 0 || (selectedRegions$ | async)?.length > 0"
+            class="p-2">
+            Search for data relating to:
+          </div>
+          
           <div
-            *ngIf="onhoverSegmentForFixed$ | async; let onhoverSegmentFixed"
+            *ngFor="let onhoverSegmentFixed of (onhoverSegmentsForFixed$ | async)"
             (click)="searchRegion([onhoverSegmentFixed])"
-            class="ws-no-wrap text-left pe-all btn btn-sm btn-secondary btn-block"
+            class="ws-no-wrap text-left pe-all btn btn-sm btn-secondary btn-block mt-0"
             data-toggle="tooltip" 
             data-placement="top" 
             [title]="onhoverSegmentFixed.name">
-            Search for data related to {{ onhoverSegmentFixed.name }}
+            <small class="text-semi-transparent">(hovering)</small> {{ onhoverSegmentFixed.name }}
           </div>
   
           <div
             *ngIf="(selectedRegions$ | async)?.length > 0 && (selectedRegions$ | async); let selectedRegions"
             (click)="searchRegion(selectedRegions)"
             class="ws-no-wrap text-left pe-all mt-0 btn btn-sm btn-secondary btn-block">
-            Search for data related to all {{ selectedRegions && selectedRegions.length }} selected regions
+            <ng-container *ngIf="selectedRegions.length > 1">
+              <small class="text-semi-transparent">(selected)</small> {{ selectedRegions.length }} selected regions
+            </ng-container>
+            <ng-container *ngIf="selectedRegions.length === 1">
+              <small class="text-semi-transparent">(selected)</small> {{ selectedRegions[0].name }}
+            </ng-container>
           </div>
           
           <div
             class="p-2 text-muted"
-            *ngIf="!(onhoverSegmentForFixed$ | async) && (selectedRegions$ | async)?.length === 0">
+            *ngIf="(onhoverSegmentsForFixed$ | async)?.length === 0 && (selectedRegions$ | async)?.length === 0">
             Right click on a parcellation region or select parcellation regions to search KG for associated datasets.
           </div>
   
@@ -182,9 +202,13 @@
           {{ onhoverLandmark$ | async }} <i><small class = "mute-text">{{ toggleMessage }}</small></i>
         </div>
         <div 
-          *ngIf="onhoverSegment$ | async; let onhoverSegment" 
+          *ngIf="onhoverSegments$ | async; let onhoverSegments"
           contextualBlock>
-          {{ onhoverSegment.name }} <i><small class = "mute-text">{{ toggleMessage }}</small></i>
+          <div
+            *ngFor="let segment of onhoverSegments"
+            [innerHtml]="segment | transformOnhoverSegment">
+          </div>
+          <i><small class = "mute-text">{{ toggleMessage }}</small></i>
         </div>
         <!-- TODO Potentially implementing plugin contextual info -->
       </div>
@@ -209,7 +233,8 @@
           <i class="fas fa-exclamation-triangle"></i> Unsupported browser detected
         </h1>
         <p>
-          We recommend using the latest version of <a target="_blank" href="https://www.google.com/chrome/">Google Chrome</a> or <a target="_blank" href="https://www.mozilla.org/firefox/">Mozilla Firefox</a> for viewing the interactive viewer.
+          We recommend using the latest version of <a target="_blank" href="https://www.google.com/chrome/">Google Chrome</a>
+          or <a target="_blank" href="https://www.mozilla.org/firefox/">Mozilla Firefox)</a> for viewing the interactive viewer.
         </p>
         <div class="col-6 d-inline-block text-left">
           <readmore-component
@@ -232,4 +257,16 @@
       </div>
     </ng-container>
   </div>
+</ng-template>
+
+<ng-template #publications >
+  <reference-toast-component
+          [templateName] = "selectedTemplate['name']? selectedTemplate['name'] : null"
+          [parcellationName] = "selectedParcellation['name']? selectedParcellation['name'] : null"
+          [templateDescription] = "selectedTemplate['properties'] && selectedTemplate['properties']['description']? selectedTemplate['properties']['description'] : null"
+          [parcellationDescription] = "selectedParcellation['properties'] && selectedParcellation['properties']['description']? selectedParcellation['properties']['description'] : null"
+          [templatePublications] = "selectedTemplate['properties'] && selectedTemplate['properties']['publications']? selectedTemplate['properties']['publications']: null"
+          [parcellationPublications] = "selectedParcellation['properties'] && selectedParcellation['properties']['publications']? selectedParcellation['properties']['publications']: null"
+          [parcellationNifti] = "selectedParcellation['properties'] && selectedParcellation['properties']['nifti']? selectedParcellation['properties']['nifti'] : null">
+  </reference-toast-component>
 </ng-template>
\ No newline at end of file
diff --git a/src/atlasViewer/atlasViewer.urlService.service.ts b/src/atlasViewer/atlasViewer.urlService.service.ts
index 5cd06b1ba499e34537cce32dc2caa872250c53a3..b548c96f292bfa89fa808beccd7b2c5b16778a2a 100644
--- a/src/atlasViewer/atlasViewer.urlService.service.ts
+++ b/src/atlasViewer/atlasViewer.urlService.service.ts
@@ -1,12 +1,13 @@
 import { Injectable } from "@angular/core";
 import { Store, select } from "@ngrx/store";
-import { ViewerStateInterface, isDefined, NEWVIEWER, getLabelIndexMap, SELECT_REGIONS, CHANGE_NAVIGATION, ADD_NG_LAYER } from "../services/stateStore.service";
+import { ViewerStateInterface, isDefined, NEWVIEWER, CHANGE_NAVIGATION, ADD_NG_LAYER, generateLabelIndexId } from "../services/stateStore.service";
 import { PluginInitManifestInterface } from 'src/services/state/pluginState.store'
 import { Observable,combineLatest } from "rxjs";
 import { filter, map, scan, distinctUntilChanged, skipWhile, take } from "rxjs/operators";
 import { PluginServices } from "./atlasViewer.pluginService.service";
 import { AtlasViewerConstantsServices } from "./atlasViewer.constantService.service";
 import { ToastService } from "src/services/toastService.service";
+import { SELECT_REGIONS_WITH_ID } from "src/services/state/viewerState.store";
 
 declare var window
 
@@ -147,14 +148,13 @@ export class AtlasViewerURLService{
         /**
          * either or both parcellationToLoad and .regions maybe empty
          */
-        const labelIndexMap = getLabelIndexMap(parcellationToLoad.regions)
-        const selectedRegions = searchparams.get('regionsSelected')
-        if(selectedRegions){
+        const selectedRegionsParam = searchparams.get('regionsSelected')
+        if(selectedRegionsParam){
+          const ids = selectedRegionsParam.split('_')
+
           this.store.dispatch({
-            type : SELECT_REGIONS,
-            selectRegions : selectedRegions.split('_')
-              .map(labelIndex=>labelIndexMap.get(Number(labelIndex)))
-              .filter(region => !!region)
+            type : SELECT_REGIONS_WITH_ID,
+            selectRegionIds: ids
           })
         }
       }
@@ -223,7 +223,7 @@ export class AtlasViewerURLService{
                   }
                   break;
                 case 'regionsSelected':
-                  _[key] = state[key].map(region=>region.labelIndex).join('_')
+                  _[key] = state[key].map(({ ngId, labelIndex })=> generateLabelIndexId({ ngId,labelIndex })).join('_')
                   break;
                 case 'templateSelected':
                 case 'parcellationSelected':
diff --git a/src/atlasViewer/atlasViewer.workerService.service.ts b/src/atlasViewer/atlasViewer.workerService.service.ts
index 304b291958d3cb37f952fa2d7c13eceaf18ca27f..aefcfa162bae82f253c2325cfaf198712bcf39f7 100644
--- a/src/atlasViewer/atlasViewer.workerService.service.ts
+++ b/src/atlasViewer/atlasViewer.workerService.service.ts
@@ -1,11 +1,16 @@
 import { Injectable } from "@angular/core";
 
+/**
+ * export the worker, so that services that does not require dependency injection can import the worker
+ */
+export const worker = new Worker('worker.js')
+
 @Injectable({
   providedIn:'root'
 })
 
 export class AtlasWorkerService{
-  public worker = new Worker('worker.js')
+  public worker = worker
   public safeMeshSet : Map<string, Set<number>> = new Map()
 }
 
diff --git a/src/atlasViewer/onhoverSegment.pipe.ts b/src/atlasViewer/onhoverSegment.pipe.ts
new file mode 100644
index 0000000000000000000000000000000000000000..baff7b9d5d1de04b0d6c5327aabf2a41a532ff4f
--- /dev/null
+++ b/src/atlasViewer/onhoverSegment.pipe.ts
@@ -0,0 +1,25 @@
+import { PipeTransform, Pipe, SecurityContext } from "@angular/core";
+import { DomSanitizer } from "@angular/platform-browser";
+
+@Pipe({
+  name: 'transformOnhoverSegment'
+})
+
+export class TransformOnhoverSegmentPipe implements PipeTransform{
+  constructor(private sanitizer:DomSanitizer){
+
+  }
+
+  private getStatus(text:string) {
+    return ` <span class="text-muted">(${this.sanitizer.sanitize(SecurityContext.HTML, text)})</span>`
+  }
+
+  public transform(segment: any | number){
+    return this.sanitizer.bypassSecurityTrustHtml((
+      (segment.name || segment) +
+      (segment.status
+        ? this.getStatus(segment.status)
+        : '')
+    ))
+  }
+}
\ No newline at end of file
diff --git a/src/components/components.module.ts b/src/components/components.module.ts
index deeed608e8648a00074b0aae7edc17119613e5b0..e435687fd0541445a7989f8f87f1bb3eb392bae9 100644
--- a/src/components/components.module.ts
+++ b/src/components/components.module.ts
@@ -27,6 +27,8 @@ import { TimerComponent } from './timer/timer.component';
 import { PillComponent } from './pill/pill.component';
 import { CommonModule } from '@angular/common';
 import { RadioList } from './radiolist/radiolist.component';
+import { AngularMaterialModule } from 'src/ui/sharedModules/angularMaterial.module';
+import { FilterCollapsePipe } from './flatTree/filterCollapse.pipe';
 
 
 @NgModule({
@@ -35,6 +37,7 @@ import { RadioList } from './radiolist/radiolist.component';
     ScrollingModule,
     FormsModule,
     BrowserAnimationsModule,
+    AngularMaterialModule
   ],
   declarations : [
     /* components */
@@ -63,7 +66,8 @@ import { RadioList } from './radiolist/radiolist.component';
     HighlightPipe,
     FitlerRowsByVisibilityPipe,
     AppendSiblingFlagPipe,
-    ClusteringPipe
+    ClusteringPipe,
+    FilterCollapsePipe
   ],
   exports : [
     BrowserAnimationsModule,
diff --git a/src/components/dropdown/dropdown.component.ts b/src/components/dropdown/dropdown.component.ts
index 2300de68002fbf970b03de45c1e746679537ca84..78ca10f1e31f217ebb9bbc25f79a76ab9ed540c6 100644
--- a/src/components/dropdown/dropdown.component.ts
+++ b/src/components/dropdown/dropdown.component.ts
@@ -17,14 +17,13 @@ export class DropdownComponent{
 
   @Input() inputArray : any[] = []
   @Input() selectedItem : any | null = null
+  @Input() checkSelected: (selectedItem:any, item:any) => boolean = (si,i) => si === i
 
   @Input() listDisplay : (obj:any)=>string = (obj)=>obj.name
   @Input() activeDisplay : (obj:any|null)=>string = (obj)=>obj ? obj.name : `Please select an item.`
 
-  @Input() isMobile: boolean
-  @Input() darktheme: boolean
-
   @Output() itemSelected : EventEmitter<any> = new EventEmitter()
+  @Output() listItemButtonClicked: EventEmitter<any> = new EventEmitter()
 
   @ViewChild('dropdownToggle',{read:ElementRef}) dropdownToggle : ElementRef
 
diff --git a/src/components/dropdown/dropdown.style.css b/src/components/dropdown/dropdown.style.css
index e13bd32eb58f18b15d6de37040e1547df1360f30..4391abae2dda2103486cc847912b72b533b40adb 100644
--- a/src/components/dropdown/dropdown.style.css
+++ b/src/components/dropdown/dropdown.style.css
@@ -56,3 +56,21 @@ radio-list
   overflow-x:hidden;
   display:block;
 }
+
+
+.dropdownTitle {
+  border: 1px solid !important;
+}
+
+.dropdownTitleOpen {
+  border: solid !important;
+  border-width: 1px 1px 0 1px !important;
+}
+
+:host-context([darktheme="true"][isMobile="true"]) .dropdownTitle {
+  border-color: white !important;
+}
+
+:host-context([darktheme="false"][isMobile="true"]) .dropdownTitle {
+  border-color: black !important;
+}
\ No newline at end of file
diff --git a/src/components/dropdown/dropdown.template.html b/src/components/dropdown/dropdown.template.html
index e448400b8324b98dcfc159263517856732694cfc..0f5866d162c27ff2c8dd284985bf73ac640c05ab 100644
--- a/src/components/dropdown/dropdown.template.html
+++ b/src/components/dropdown/dropdown.template.html
@@ -1,13 +1,11 @@
 <!-- TODO remove dependency on ismobile -->
 <span
-  class = "btn btn-default"
-  [innerHTML] = "activeDisplay(selectedItem)"
-  hoverable
+  class="btn btn-default dropdownTitle"
+  [innerHTML]="activeDisplay(selectedItem)"
+  [hoverable]="{translateY:-2}"
   #dropdownToggle
   dropdownToggle
-              
-  [ngStyle]="{'border': isMobile? 'none' : 'none', 'border-color': darktheme? 'white' : 'black', 'border-width': openState? '1px 1px 0 1px' : ''}">
-
+  [ngClass]="openState ? 'dropdownTitleOpen' : 'dropdownTitle'">
 </span>
 
 <!-- needed to ensure dropdown width matches  -->
@@ -20,10 +18,9 @@
   [ulClass]="'dropdown-menu shadow'"
   (itemSelected)="itemSelected.emit($event)"
   [listDisplay]="listDisplay"
+  [checkSelected]="checkSelected"
   [selectedItem]="selectedItem"
   [inputArray]="inputArray"
   [@showState]="openState ? 'show' : 'hide'"
-  [isMobile] = "isMobile"
-  [darktheme] = "darktheme">
-
+  (listItemButtonClicked) = listItemButtonClicked.emit($event)>
 </radio-list>
diff --git a/src/components/flatTree/filterCollapse.pipe.ts b/src/components/flatTree/filterCollapse.pipe.ts
new file mode 100644
index 0000000000000000000000000000000000000000..00ce53d406e06c316d6b9027b5570f068578e69e
--- /dev/null
+++ b/src/components/flatTree/filterCollapse.pipe.ts
@@ -0,0 +1,28 @@
+import { PipeTransform, Pipe } from "@angular/core";
+
+@Pipe({
+  name: 'filterCollapsePipe'
+})
+
+export class FilterCollapsePipe implements PipeTransform{
+  public transform(array: any[], collapsedLevels: Set<string>, uncollapsedLevels: Set<string>, defaultCollapse: boolean ){
+    const isCollapsedById = (id) => {
+
+      return collapsedLevels.has(id) 
+      ? true
+      : uncollapsedLevels.has(id)
+        ? false
+        : !defaultCollapse
+    }
+    const returnArray =  array.filter(item => {
+      return !item.lvlId.split('_')
+        .filter((v,idx,arr) => idx < arr.length -1 )
+        .reduce((acc,curr) => acc
+          .concat(acc.length === 0 
+            ? curr 
+            : acc[acc.length -1].concat(`_${curr}`)), [])
+        .some(id => isCollapsedById(id))
+    })
+    return returnArray
+  }
+}
\ No newline at end of file
diff --git a/src/components/flatTree/flatTree.component.ts b/src/components/flatTree/flatTree.component.ts
index bf1efd663bf2bb3f9af5615fb5284057f341be7c..d6002b13089f56e10b96b5b49463b4b3e7694b68 100644
--- a/src/components/flatTree/flatTree.component.ts
+++ b/src/components/flatTree/flatTree.component.ts
@@ -43,9 +43,15 @@ export class FlatTreeComponent{
   uncollapsedLevels : Set<string> = new Set()
 
   toggleCollapse(flattenedItem:FlattenedTreeInterface){
-    this.isCollapsed(flattenedItem)
-      ? (this.collapsedLevels.delete(flattenedItem.lvlId), this.uncollapsedLevels.add(flattenedItem.lvlId))
-      : (this.collapsedLevels.add(flattenedItem.lvlId), this.uncollapsedLevels.delete(flattenedItem.lvlId))
+    if (this.isCollapsed(flattenedItem)) {
+      this.collapsedLevels.delete(flattenedItem.lvlId)
+      this.uncollapsedLevels.add(flattenedItem.lvlId)
+    } else {
+      this.collapsedLevels.add(flattenedItem.lvlId)
+      this.uncollapsedLevels.delete(flattenedItem.lvlId)
+    }
+    this.collapsedLevels = new Set(this.collapsedLevels)
+    this.uncollapsedLevels = new Set(this.uncollapsedLevels)
   }
 
   isCollapsed(flattenedItem:FlattenedTreeInterface):boolean{
diff --git a/src/components/flatTree/flatTree.template.html b/src/components/flatTree/flatTree.template.html
index 6340f50b7992ab68a9b01213699fb5cd2db666a5..3dc5601046cb636f23482dbe2025df86a6c7c4c1 100644
--- a/src/components/flatTree/flatTree.template.html
+++ b/src/components/flatTree/flatTree.template.html
@@ -4,13 +4,12 @@
   itemSize="15">
 
   <div
-    *cdkVirtualFor="let flattenedItem of (inputItem | flattenTreePipe : findChildren | filterRowsByVisbilityPipe : findChildren : searchFilter | appendSiblingFlagPipe )" 
+    *cdkVirtualFor="let flattenedItem of (inputItem | flattenTreePipe : findChildren | filterRowsByVisbilityPipe : findChildren : searchFilter | appendSiblingFlagPipe | filterCollapsePipe : collapsedLevels : uncollapsedLevels : childrenExpanded )" 
     [ngClass]="getClass(flattenedItem.flattenedTreeLevel)"
     class="text-nowrap"
     [attr.flattenedtreelevel]="flattenedItem.flattenedTreeLevel" 
     [attr.collapsed]="flattenedItem.collapsed ? flattenedItem.collapsed : false"
     [attr.lvlId]="flattenedItem.lvlId"
-    [hidden]="collapseRow(flattenedItem) "
     renderNode>
 
     <span class="padding-block-container">
diff --git a/src/components/hoverableBlock.directive.ts b/src/components/hoverableBlock.directive.ts
index e05dc260d0f2693500c98318b5deb2c7350c56d3..bc0da29e43f6b99d73108d3db6f63633a659e922 100644
--- a/src/components/hoverableBlock.directive.ts
+++ b/src/components/hoverableBlock.directive.ts
@@ -1,4 +1,4 @@
-import { Directive, HostListener, HostBinding } from "@angular/core";
+import { Directive, HostListener, HostBinding, Input } from "@angular/core";
 import { DomSanitizer } from "@angular/platform-browser";
 
 @Directive({
@@ -15,6 +15,26 @@ import { DomSanitizer } from "@angular/platform-browser";
 
 export class HoverableBlockDirective{
 
+  @Input('hoverable')
+  config:any = {
+    disable: false,
+    translateY: -5
+  }
+
+  private _disable = false
+  private _translateY = -5
+
+  ngOnChanges(){
+    this._disable = this.config && !!this.config.disable
+    /**
+     * 0 is evaluated as falsy, but a valid number
+     * conditional tests for whether we need to fall back to default
+     */
+    this._translateY = this.config && this.config.translateY !== 0 && !!Number(this.config.translateY)
+      ? Number(this.config.translateY)
+      : -5
+  }
+
   @HostBinding('style.opacity')
   opacity : number = 0.9
 
@@ -26,13 +46,19 @@ export class HoverableBlockDirective{
 
   @HostListener('mouseenter')
   onMouseenter(){
+    if (this._disable) return
     this.opacity = 1.0
     this.boxShadow = this.sanitizer.bypassSecurityTrustStyle(`0 4px 6px 0 rgba(5,5,5,0.25)`)
-    this.transform = this.sanitizer.bypassSecurityTrustStyle(`translateY(-2%)`)
+    /**
+     * n.b. risk of XSS. But sincle translate Y is passed through Number, and corerced into a number,
+     * and using 5 as a fallback, it should be safe
+     */
+    this.transform = this.sanitizer.bypassSecurityTrustStyle(`translateY(${this._translateY}px)`)
   }
 
   @HostListener('mouseleave')
   onmouseleave(){
+    if (this._disable) return
     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/panel/panel.template.html b/src/components/panel/panel.template.html
index a510270894b020794b9f010fc683d7c1ce27ab4c..d2c55e22b6daed1c0b223e86492e6429e34a143d 100644
--- a/src/components/panel/panel.template.html
+++ b/src/components/panel/panel.template.html
@@ -11,7 +11,7 @@
       *ngIf="showHeading"
       class="l-card-title"
       (click)="toggleCollapseBody($event)"
-      hoverable>
+      [hoverable]="{disable:!bodyCollapsable}">
       <ng-content select="[heading]">
       </ng-content>
     </div>
diff --git a/src/components/radiolist/radiolist.component.ts b/src/components/radiolist/radiolist.component.ts
index 62859b0dc588ba6102b61e93770c25fcccd8ae58..7b0314f06bb7be2d6230e385465a1a31b216ded0 100644
--- a/src/components/radiolist/radiolist.component.ts
+++ b/src/components/radiolist/radiolist.component.ts
@@ -1,4 +1,4 @@
-import { Component, ChangeDetectionStrategy, Input, Output, EventEmitter } from "@angular/core";
+import { Component, ChangeDetectionStrategy, Input, Output, EventEmitter, OnInit, ViewChild, TemplateRef } from "@angular/core";
 
 @Component({
   selector: 'radio-list',
@@ -6,22 +6,6 @@ import { Component, ChangeDetectionStrategy, Input, Output, EventEmitter } from
   styleUrls: [
     './radiolist.style.css'
   ],
-  styles: [
-    `
-    ul > li.selected > span:before
-    {
-      content: '\u2022';
-      width : 1em;
-      display:inline-block;
-    }
-    ul > li:not(.selected) > span:before
-    {
-      content: ' ';
-      width : 1em;
-      display:inline-block;
-    }  
-    `
-  ],
   changeDetection: ChangeDetectionStrategy.OnPush
 })
 
@@ -40,8 +24,16 @@ export class RadioList{
 
   @Input()
   ulClass: string = ''
+  
+  @Input() checkSelected: (selectedItem:any, item:any) => boolean = (si,i) => si === i
+
+  @Output() listItemButtonClicked = new EventEmitter<string>();
 
-  @Input() isMobile: boolean
-  @Input() darktheme: boolean
+  clickListButton(i) {
+    this.listItemButtonClicked.emit(i)
+  }
 
+  overflowText(event) {
+    return (event.offsetWidth < event.scrollWidth)
+  }
 }
\ No newline at end of file
diff --git a/src/components/radiolist/radiolist.style.css b/src/components/radiolist/radiolist.style.css
index d264f83b0676a602570939980e60c9abc93c2294..c6ee787207299fff88b50d856d84dcfb0fd0621d 100644
--- a/src/components/radiolist/radiolist.style.css
+++ b/src/components/radiolist/radiolist.style.css
@@ -1,3 +1,4 @@
+/*@import "~@angular/material/prebuilt-themes/indigo-pink.css";*/
 
 :host-context([darktheme="true"]) ul
 {
@@ -54,4 +55,34 @@ ul,span.dropdown-item-1
   border-radius:0px;
   white-space: nowrap;
   border:none;
+  overflow: hidden;
+  text-overflow: ellipsis
 }
+
+
+.infoIcon {
+  margin-left: 5px;
+  display: inline-block;
+  border: 1px solid gray;
+  border-radius: 15px;
+  width: 24px;
+  height: 24px;
+  min-width: 24px;
+  cursor: pointer;
+  text-align: center;
+}
+
+:host-context([darktheme="true"]) .radioListMenu {
+  border-color: white;
+}
+:host-context([darktheme="false"]) .radioListMenu {
+  border-color: black;
+}
+:host-context([isMobile="true"]) .radioListMenu {
+  opacity: 1;
+  border-style: solid;
+  border-width: 0px 1px 1px 1px;
+}
+:host-context([isMobile="false"]) radioListMenu {
+  opacity: 0.8;
+}
\ No newline at end of file
diff --git a/src/components/radiolist/radiolist.template.html b/src/components/radiolist/radiolist.template.html
index 3562d8685015d63191472420e4bf47423df80d5c..eb1d111ba65c6fef07f5e135905ea1af38621c20 100644
--- a/src/components/radiolist/radiolist.template.html
+++ b/src/components/radiolist/radiolist.template.html
@@ -1,16 +1,25 @@
 <ul
   [ngClass]="ulClass"
-  [ngStyle]="{'opacity': isMobile? '1' : '0.8', 'border-color': darktheme? 'white' : 'black'}"
+  class="radioListMenu"
   role="menu">
-  <li 
-    *ngFor="let input of inputArray" 
-    [ngClass]="selectedItem === input ? 'selected' : 'notselected'" 
-    (click)="itemSelected.emit({previous: selectedItem, current: input})" 
-    role="menuitem">
+
+  <li
+    *ngFor="let input of inputArray; let i = index"
+    class="d-flex justify-content-between"
+    [ngClass]="checkSelected(selectedItem, input) ? 'selected' : 'notselected'"
+    role="menuitem"
+    (click)="itemSelected.emit({previous: selectedItem, current: input})">
     
-    <span 
-      class="dropdown-item-1" 
-      [innerHTML] = "listDisplay(input)">
+    <span class="dropdown-item-1 textSpan"
+          #DropDownText
+          [innerHTML] = "listDisplay(input)"
+          [style.fontWeight] = "checkSelected(selectedItem, input)? 'bold' : ''"
+          [matTooltip]="overflowText(DropDownText)? DropDownText.innerText: ''">
+    </span>
+
+    <span *ngIf="input['properties'] && (input['properties']['publications'] || input['properties']['description'])"
+          class="infoIcon align-self-end" (click)="clickListButton(i);$event.stopPropagation()">
+      i
     </span>
   </li>
 </ul>
\ No newline at end of file
diff --git a/src/components/readmoore/readmore.template.html b/src/components/readmoore/readmore.template.html
index 8572b5e2e175f1d3e068a989f6c6ddd9f7e4c75f..20fdb98aeca3cfb760d23090d3cde70888b5c63c 100644
--- a/src/components/readmoore/readmore.template.html
+++ b/src/components/readmoore/readmore.template.html
@@ -9,7 +9,7 @@
 <div 
   (click)="toggle($event)" 
   sliver
-  hoverable>
+  [hoverable]="{translateY:-1}">
 
   <i 
     [ngClass] = "show ? 'fa-chevron-up' : 'fa-chevron-down'" 
diff --git a/src/index.html b/src/index.html
index 3a45da9bca5a8f7038f93470f1089bdfe3d696b6..3cd64e66e8db5f00b99f0cdf2a6a97b985fc9a92 100644
--- a/src/index.html
+++ b/src/index.html
@@ -8,6 +8,8 @@
   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
   <link rel = "stylesheet" href = "extra_styles.css">
   <link rel = "stylesheet" href = "plugin_styles.css">
+  <link rel = "stylesheet" href = "../node_modules/@angular/material/prebuilt-themes/indigo-pink.css">
+
   <title>Interactive Atlas Viewer</title>
 </head>
 <body>
diff --git a/src/main.module.ts b/src/main.module.ts
index 78bbdebe0dc0280d92f9154caa701ce51879a321..daf52879997c91f152b4e8d66cf0b921dd82ad24 100644
--- a/src/main.module.ts
+++ b/src/main.module.ts
@@ -37,6 +37,11 @@ import { AuthService } from "./services/auth.service";
 import { ViewerConfiguration } from "./services/state/viewerConfig.store";
 import { FixedMouseContextualContainerDirective } from "./util/directives/FixedMouseContextualContainerDirective.directive";
 import { DatabrowserService } from "./ui/databrowserModule/databrowser.service";
+import { TransformOnhoverSegmentPipe } from "./atlasViewer/onhoverSegment.pipe";
+import { ZipFileDownloadService } from "./services/zipFileDownload.service";
+import {HttpClientModule} from "@angular/common/http";
+import { EffectsModule } from "@ngrx/effects";
+import { UseEffects } from "./services/effect/effect";
 
 @NgModule({
   imports : [
@@ -50,6 +55,9 @@ import { DatabrowserService } from "./ui/databrowserModule/databrowser.service";
     ModalModule.forRoot(),
     TooltipModule.forRoot(),
     TabsModule.forRoot(),
+    EffectsModule.forRoot([
+      UseEffects
+    ]),
     StoreModule.forRoot({
       pluginState,
       viewerConfigState,
@@ -58,7 +66,8 @@ import { DatabrowserService } from "./ui/databrowserModule/databrowser.service";
       dataStore,
       spatialSearchState,
       uiState,
-    })
+    }),
+    HttpClientModule
   ],
   declarations : [
     AtlasViewer,
@@ -85,6 +94,7 @@ import { DatabrowserService } from "./ui/databrowserModule/databrowser.service";
     /* pipes */
     GetNamesPipe,
     GetNamePipe,
+    TransformOnhoverSegmentPipe,
     GetFilenameFromPathnamePipe,
     NewViewerDisctinctViewToLayer
   ],
@@ -102,7 +112,8 @@ import { DatabrowserService } from "./ui/databrowserModule/databrowser.service";
     ToastService,
     AtlasWorkerService,
     AuthService,
-
+    ZipFileDownloadService,
+    
     /**
      * TODO
      * once nehubacontainer is separated into viewer + overlay, migrate to nehubaContainer module
diff --git a/src/res/css/extra_styles.css b/src/res/css/extra_styles.css
index 1f176a851b20e3cf30cd70b363cc1c2730eefa4c..2269aed7e731b97f5f97020cce0911ca1df34ea0 100644
--- a/src/res/css/extra_styles.css
+++ b/src/res/css/extra_styles.css
@@ -24,6 +24,7 @@ div.scale-bar-container
   padding: 2px;
   font-weight: 700;
   pointer-events: none;
+  user-select: none;
 }
 
 div.scale-bar
@@ -325,7 +326,18 @@ markdown-dom pre code
 {
   height:100%;
 }
+
 .overflow-x-hidden
 {
   overflow-x:hidden;
+}
+
+.muted
+{
+  opacity : 0.5!important;
+}
+
+.text-semi-transparent
+{
+  opacity: 0.5;
 }
\ No newline at end of file
diff --git a/src/res/cvtPtsToSpatial.js b/src/res/cvtPtsToSpatial.js
index 6765f731841cfbdbdb78313cf9824ab8d8b2fd71..903a1b8dba05c0fdf5f53c016651a1fd12de75b0 100644
--- a/src/res/cvtPtsToSpatial.js
+++ b/src/res/cvtPtsToSpatial.js
@@ -1,8 +1,8 @@
 const fs = require('fs')
 
 const filenames = [
-  '***REMOVED***_MNI.pts',
-  '***REMOVED***_MNI.pts'
+  '**removed**.pts',
+  '**removed**.pts'
 ]
 
 const descContactPts = 'This spatial point represent a contact point in an electrode. Brain activity was recorded while the subject conduct several tasks.'
diff --git a/src/res/ext/MNI152.json b/src/res/ext/MNI152.json
index 204f5bb8f44a11e7819ce0c1f2ccbd3d891c4159..657e54448a563c3824f615d880f980a6abeac658 100644
--- a/src/res/ext/MNI152.json
+++ b/src/res/ext/MNI152.json
@@ -1 +1,6921 @@
-{"name":"MNI 152 ICBM 2009c Nonlinear Asymmetric","type":"template","species":"Human","useTheme":"dark","ngId":"mni152","nehubaConfigURL":"nehubaConfig/MNI152NehubaConfig","parcellations":[{"ngId":"fibre bundle long","type":"parcellation","surfaceParcellation":true,"ngData":null,"name":"Fibre Bundle Atlas - Long Bundle","regions":[{"name":"Arcuate - Left","children":[],"labelIndex":"1"},{"name":"Arcuate - Right","children":[],"labelIndex":"31"},{"name":"Arcuate_Anterior - Left","children":[],"labelIndex":"2"},{"name":"Arcuate_Anterior - Right","children":[],"labelIndex":"32"},{"name":"Arcuate_Posterior - Left","children":[],"labelIndex":"3"},{"name":"Arcuate_Posterior - Right","children":[],"labelIndex":"33"},{"name":"Cingulum_Long - Left","children":[],"labelIndex":"4"},{"name":"Cingulum_Long - Right","children":[],"labelIndex":"34"},{"name":"Cingulum_Short - Left","children":[],"labelIndex":"5"},{"name":"Cingulum_Short - Right","children":[],"labelIndex":"35"},{"name":"Cingulum_Temporal - Left","children":[],"labelIndex":"6"},{"name":"Cingulum_Temporal - Right","children":[],"labelIndex":"36"},{"name":"CorpusCallosum_Body","children":[],"labelIndex":"7"},{"name":"CorpusCallosum_Genu","children":[],"labelIndex":"8"},{"name":"CorpusCallosum_Rostrum","children":[],"labelIndex":"9"},{"name":"CorpusCallosum_Splenium","children":[],"labelIndex":"10"},{"name":"CorticoSpinalTract - Left","children":[],"labelIndex":"11"},{"name":"CorticoSpinalTract - Right","children":[],"labelIndex":"41"},{"name":"ExternalCapsule - Left","children":[],"labelIndex":"12"},{"name":"ExternalCapsule - Right","children":[],"labelIndex":"42"},{"name":"Fornix - Left","children":[],"labelIndex":"13"},{"name":"Fornix - Right","children":[],"labelIndex":"43"},{"name":"InferiorFrontoOccipital - Left","children":[],"labelIndex":"14"},{"name":"InferiorFrontoOccipital - Right","children":[],"labelIndex":"44"},{"name":"InferiorLongitudinal - Left","children":[],"labelIndex":"15"},{"name":"InferiorLongitudinal - Right","children":[],"labelIndex":"45"},{"name":"InferiorLongitudinal_Lateral - Left","children":[],"labelIndex":"16"},{"name":"InferiorLongitudinal_Lateral - Right","children":[],"labelIndex":"46"},{"name":"MediumLongitudinal - Left","children":[],"labelIndex":"17"},{"name":"MediumLongitudinal - Right","children":[],"labelIndex":"47"},{"name":"SpinoThalamicTract - Left","children":[],"labelIndex":"18"},{"name":"SpinoThalamicTract - Right","children":[],"labelIndex":"48"},{"name":"ThalamicRadiations_Anterior - Left","children":[],"labelIndex":"19"},{"name":"ThalamicRadiations_Anterior - Right","children":[],"labelIndex":"49"},{"name":"ThalamicRadiations_Posterior - Left","children":[],"labelIndex":"20"},{"name":"ThalamicRadiations_Posterior - Right","children":[],"labelIndex":"50"},{"name":"Uncinate - Left","children":[],"labelIndex":"21"},{"name":"Uncinate - Right","children":[],"labelIndex":"51"}]},{"ngId":"fibre bundle short","type":"parcellation","surfaceParcellation":true,"ngData":null,"name":"Fibre Bundle Atlas - Short Bundle","regions":[{"name":"Left Hemisphere","children":[{"name":"Caudal Middle Frontal - Precuneus","children":[{"name":"lh_CAC-PrCu_0","children":[],"labelIndex":"38","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_CAC-PrCu_0.nii"}]},{"name":"Caudal Middle Frontal – Pars Opercularis","children":[{"name":"lh_CMF-Op_0","children":[],"labelIndex":"37","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_CMF-Op_0.nii"}]},{"name":"Caudal Middle Frontal - Poscentral","children":[{"name":"lh_CMF-PoC_0","children":[],"labelIndex":"62","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_CMF-PoC_0.nii"}]},{"name":"Caudal Middle Frontal - Precentral","children":[{"name":"lh_CMF-PrC_0","children":[],"labelIndex":"97","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_CMF-PrC_0.nii"},{"name":"lh_CMF-PrC_1","children":[],"labelIndex":"99","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_CMF-PrC_1.nii"}]},{"name":"Caudal Middle Frontal – Rostral Middle Frontal","children":[{"name":"lh_CMF-RMF_0","children":[],"labelIndex":"49","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_CMF-RMF_0.nii"}]},{"name":"Caudal Middle Frontal – Superior Frontal","children":[{"name":"lh_CMF-SF_0","children":[],"labelIndex":"68","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_CMF-SF_0.nii"}]},{"name":"Fusiform – Lateral Occipital","children":[{"name":"lh_Fu-LO_0","children":[],"labelIndex":"51","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_Fu-LO_0.nii"}]},{"name":"Isthmus Cingulate - Precuneus","children":[{"name":"lh_IC-PrCu_0","children":[],"labelIndex":"40","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_IC-PrCu_0.nii"}]},{"name":"Inferior Parietal – Inferior Temporal","children":[{"name":"lh_IP-IT_0","children":[],"labelIndex":"59","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_IP-IT_0.nii"}]},{"name":"Inferior Parietal – Lateral Occipital","children":[{"name":"lh_IP-LO_1","children":[],"labelIndex":"86","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_IP-LO_1.nii"}]},{"name":"Inferior Parietal – Middle Temporal\t","children":[{"name":"lh_IP-MT_0","children":[],"labelIndex":"33","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_IP-MT_0.nii"}]},{"name":"Inferior Parietal - Supramarginal","children":[{"name":"lh_IP-SM_0","children":[],"labelIndex":"80","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_IP-SM_0.nii"}]},{"name":"Inferior Pariertal – Superior Parietal","children":[{"name":"lh_IP-SP_0","children":[],"labelIndex":"82","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_IP-SP_0.nii"},{"name":"lh_IP-SP_1","children":[],"labelIndex":"84","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_IP-SP_1.nii"}]},{"name":"Inferior Temporal – Middle Temporal","children":[{"name":"lh_IT-MT_0","children":[],"labelIndex":"89","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_IT-MT_0.nii"}]},{"name":"Lateral Orbitofrontal – Pars Orbitalis","children":[{"name":"lh_LOF-Or_0","children":[],"labelIndex":"48","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_LOF-Or_0.nii"}]},{"name":"Lateral Orbitofrontal – Rostral Middle Frontal","children":[{"name":"lh_LOF-RMF_0","children":[],"labelIndex":"29","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_LOF-RMF_0.nii"},{"name":"lh_LOF-RMF_1","children":[],"labelIndex":"31","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_LOF-RMF_1.nii"}]},{"name":"Lateral Orbitofrontal – Superior Temporal","children":[{"name":"lh_LOF-ST_0","children":[],"labelIndex":"25","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_LOF-ST_0.nii"}]},{"name":"Middle Orbitofrontal – Superior Temporal","children":[{"name":"lh_MOF-ST_0","children":[],"labelIndex":"12","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_MOF-ST_0.nii"}]},{"name":"Middle Temporal - Supramarginal","children":[{"name":"lh_MT-SM_0","children":[],"labelIndex":"72","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_MT-SM_0.nii"}]},{"name":"Middle Temporal – Superior Temporal","children":[{"name":"lh_MT-ST_0","children":[],"labelIndex":"95","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_MT-ST_0.nii"}]},{"name":"Pars Opercularis - Insula","children":[{"name":"lh_Op-Ins_0","children":[],"labelIndex":"27","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_Op-Ins_0.nii"}]},{"name":"Pars Opercularis - Precentral`","children":[{"name":"lh_Op-PrC_0","children":[],"labelIndex":"18","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_Op-PrC_0.nii"}]},{"name":"Pars Opercularis – Superior Frontal","children":[{"name":"lh_Op-SF_0","children":[],"labelIndex":"42","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_Op-SF_0.nii"}]},{"name":"Pars Orbitalis - Insula","children":[{"name":"lh_Or-Ins_0","children":[],"labelIndex":"16","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_Or-Ins_0.nii"}]},{"name":"Postcentral - Insula","children":[{"name":"lh_PoC-Ins_0","children":[],"labelIndex":"53","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_PoC-Ins_0.nii"}]},{"name":"Poscentral - Precuneus","children":[{"name":"lh_PoCi-PrCu_0","children":[],"labelIndex":"44","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_PoCi-PrCu_0.nii"},{"name":"lh_PoCi-PrCu_1","children":[],"labelIndex":"45","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_PoCi-PrCu_1.nii"}]},{"name":"Posterior Cingulate – Rostral Anterior Cingulate","children":[{"name":"lh_PoCi-RAC_0","children":[],"labelIndex":"10","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_PoCi-RAC_0.nii"}]},{"name":"Posterior Cingulate – Superior Frontal","children":[{"name":"lh_PoCi-SF_0","children":[],"labelIndex":"79","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_PoCi-SF_0.nii"}]},{"name":"Poscentral - Precentral","children":[{"name":"lh_PoC-PrC_0","children":[],"labelIndex":"1","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_PoC-PrC_0.nii"},{"name":"lh_PoC-PrC_1","children":[],"labelIndex":"3","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_PoC-PrC_1.nii"},{"name":"lh_PoC-PrC_2","children":[],"labelIndex":"5","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_PoC-PrC_2.nii"},{"name":"lh_PoC-PrC_3","children":[],"labelIndex":"7","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_PoC-PrC_3.nii"}]},{"name":"Poscentral - Supramarginal","children":[{"name":"lh_PoC-SM_0","children":[],"labelIndex":"74","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_PoC-SM_0.nii"},{"name":"lh_PoC-SM_1","children":[],"labelIndex":"76","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_PoC-SM_1.nii"}]},{"name":"Precentral - Insula","children":[{"name":"lh_PrC-Ins_0","children":[],"labelIndex":"66","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_PrC-Ins_0.nii"}]},{"name":"Precentral – Superior Frontal","children":[{"name":"lh_PrC-SF_0","children":[],"labelIndex":"20","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_PrC-SF_0.nii"}]},{"name":"Precentral - Supramarginal","children":[{"name":"lh_PrC-SM_0","children":[],"labelIndex":"15","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_PrC-SM_0.nii"}]},{"name":"Rostral Anterior Cingulate – Superior Frontal","children":[{"name":"lh_RAC-SF_1","children":[],"labelIndex":"78","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_RAC-SF_1.nii"}]},{"name":"Rostral Middle Frontal – Superior Frontal","children":[{"name":"lh_RMF-SF_0","children":[],"labelIndex":"21","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_RMF-SF_0.nii"},{"name":"lh_RMF-SF_1","children":[],"labelIndex":"23","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_RMF-SF_1.nii"}]},{"name":"Supramarginal - Insula","children":[{"name":"lh_SM-Ins_0","children":[],"labelIndex":"57","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_SM-Ins_0.nii"}]},{"name":"Superior Parietal - Supramarginal","children":[{"name":"lh_SP-SM_0","children":[],"labelIndex":"93","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_SP-SM_0.nii"}]},{"name":"Superior Temporal - Insula","children":[{"name":"lh_ST-Ins_0","children":[],"labelIndex":"92","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_ST-Ins_0.nii"}]},{"name":"Superior Temporal – Transverse Temporal","children":[{"name":"lh_ST-TT_0","children":[],"labelIndex":"35","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_ST-TT_0.nii"}]},{"name":"Pars Triangularis - Insula","children":[{"name":"lh_Tr-Ins_0","children":[],"labelIndex":"64","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_Tr-Ins_0.nii"}]},{"name":"Pars Triangularis – Superior Frontal","children":[{"name":"lh_Tr-SF_0","children":[],"labelIndex":"55","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_Tr-SF_0.nii"}]}]},{"name":"Right Hemisphere","children":[{"name":"Caudal Middle Frontal – Posterior Cingulate","children":[{"name":"rh_CAC-PoCi_0","children":[],"labelIndex":"8","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_CAC-PoCi_0.nii"}]},{"name":"Caudal Middle Frontal - Precuneus","children":[{"name":"rh_CAC-PrCu_0","children":[],"labelIndex":"39","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_CAC-PrCu_0.nii"}]},{"name":"Caudal Middle Frontal - Precentral","children":[{"name":"rh_CMF-PrC_0","children":[],"labelIndex":"98","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_CMF-PrC_0.nii"},{"name":"rh_CMF-PrC_1","children":[],"labelIndex":"100","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_CMF-PrC_1.nii"}]},{"name":"Caudal Middle Frontal – Rostral Middle Frontal","children":[{"name":"rh_CMF-RMF_0","children":[],"labelIndex":"50","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_CMF-RMF_0.nii"}]},{"name":"Caudal Middle Frontal – Superior Frontal","children":[{"name":"rh_CMF-SF_0","children":[],"labelIndex":"69","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_CMF-SF_0.nii"}]},{"name":"Caudal Middle Frontal – Superior Frontal\t\t","children":[{"name":"rh_CMF-SF_1","children":[],"labelIndex":"70","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_CMF-SF_1.nii"}]},{"name":"Cuneus - Lingual","children":[{"name":"rh_Cu-Li_0","children":[],"labelIndex":"61","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_Cu-Li_0.nii"}]},{"name":"Fusiform – Lateral Occipital","children":[{"name":"rh_Fu-LO_1","children":[],"labelIndex":"52","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_Fu-LO_1.nii"}]},{"name":"Isthmus Cingulate - Precuneus","children":[{"name":"rh_IC-PrCu_0","children":[],"labelIndex":"41","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_IC-PrCu_0.nii"}]},{"name":"Inferior Parietal – Inferior Temporal ","children":[{"name":"rh_IP-IT_0","children":[],"labelIndex":"60","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_IP-IT_0.nii"}]},{"name":"Inferior Parietal – Lateral Occipital","children":[{"name":"rh_IP-LO_0","children":[],"labelIndex":"85","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_IP-LO_0.nii"}]},{"name":"Inferior Parietal – Middle Temporal","children":[{"name":"rh_IP-MT_0","children":[],"labelIndex":"34","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_IP-MT_0.nii"}]},{"name":"Inferior Parietal - Supramarginal","children":[{"name":"rh_IP-SM_0","children":[],"labelIndex":"81","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_IP-SM_0.nii"}]},{"name":"Inferior Parietal – Superior Parietal","children":[{"name":"rh_IP-SP_0","children":[],"labelIndex":"83","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_IP-SP_0.nii"}]},{"name":"Inferior Temporal – Middle Temporal","children":[{"name":"rh_IT-MT_1","children":[],"labelIndex":"90","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_IT-MT_1.nii"},{"name":"rh_IT-MT_2","children":[],"labelIndex":"91","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_IT-MT_2.nii"}]},{"name":"Lateral Orbitofrontal – Middle Orbitofrontal","children":[{"name":"rh_LOF-MOF_0","children":[],"labelIndex":"71","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_LOF-MOF_0.nii"}]},{"name":"Lateral Orbitofrontal – Rostral Middle Frontal","children":[{"name":"rh_LOF-RMF_0","children":[],"labelIndex":"30","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_LOF-RMF_0.nii"},{"name":"rh_LOF-RMF_1","children":[],"labelIndex":"32","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_LOF-RMF_1.nii"}]},{"name":"Lateral Orbitofrontal – Superior Temporal","children":[{"name":"rh_LOF-ST_0","children":[],"labelIndex":"26","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_LOF-ST_0.nii"}]},{"name":"Lateral Orbitofrontal – Superior Parietal","children":[{"name":"rh_LO-SP_0","children":[],"labelIndex":"54","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_LO-SP_0.nii"}]},{"name":"Middle Orbitofrontal – Superior Temporal","children":[{"name":"rh_MOF-ST_0","children":[],"labelIndex":"13","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_MOF-ST_0.nii"}]},{"name":"Middle Temporal - Supramarginal","children":[{"name":"rh_MT-SM_0","children":[],"labelIndex":"73","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_MT-SM_0.nii"}]},{"name":"Middle Temporal – Superior Temporal","children":[{"name":"rh_MT-ST_0","children":[],"labelIndex":"96","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_MT-ST_0.nii"}]},{"name":"Pars Opercularis - Insula","children":[{"name":"rh_Op-Ins_0","children":[],"labelIndex":"28","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_Op-Ins_0.nii"}]},{"name":"Pars Opercularis - Precentral","children":[{"name":"rh_Op-PrC_0","children":[],"labelIndex":"19","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_Op-PrC_0.nii"}]},{"name":"Pars Opercularis – Superior Frontal","children":[{"name":"rh_Op-SF_0","children":[],"labelIndex":"43","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_Op-SF_0.nii"}]},{"name":"Pars Opercularis – Pars Triangularis","children":[{"name":"rh_Op-Tr_0","children":[],"labelIndex":"63","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_Op-Tr_0.nii"}]},{"name":"Pars Orbitalis - Insula","children":[{"name":"rh_Or-Ins_0","children":[],"labelIndex":"17","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_Or-Ins_0.nii"}]},{"name":"Posterior Cingulate - Precuneus","children":[{"name":"rh_PoCi-PrCu_1","children":[],"labelIndex":"46","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_PoCi-PrCu_1.nii"},{"name":"rh_PoCi-PrCu_2","children":[],"labelIndex":"47","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_PoCi-PrCu_2.nii"}]},{"name":"Posterior Cingulate – Rostral Anterior Cingulate","children":[{"name":"rh_PoCi-RAC_0","children":[],"labelIndex":"11","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_PoCi-RAC_0.nii"}]},{"name":"Poscentral - Precentral","children":[{"name":"rh_PoC-PrC_0","children":[],"labelIndex":"2","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_PoC-PrC_0.nii"},{"name":"rh_PoC-PrC_1","children":[],"labelIndex":"4","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_PoC-PrC_1.nii"},{"name":"rh_PoC-PrC_2","children":[],"labelIndex":"6","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_PoC-PrC_2.nii"}]},{"name":"Postcentral - Supramarginal","children":[{"name":"rh_PoC-SM_0","children":[],"labelIndex":"75","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_PoC-SM_0.nii"}]},{"name":"Postcentral – Superior Parietal","children":[{"name":"rh_PoC-SP_0","children":[],"labelIndex":"87","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_PoC-SP_0.nii"},{"name":"rh_PoC-SP_1","children":[],"labelIndex":"88","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_PoC-SP_1.nii"}]},{"name":"Precentral - Insula","children":[{"name":"rh_PrC-Ins_0","children":[],"labelIndex":"67","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_PrC-Ins_0.nii"}]},{"name":"Precentral - Supramarginal\t","children":[{"name":"rh_PrC-SM_0","children":[],"labelIndex":"14","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_PrC-SM_0.nii"}]},{"name":"Precentral – Superior Parietal","children":[{"name":"rh_PrC-SP_0","children":[],"labelIndex":"9","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_PrC-SP_0.nii"}]},{"name":"Rostral Anterior Cingulate","children":[{"name":"rh_RAC-SF_0","children":[],"labelIndex":"77","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_RAC-SF_0.nii"}]},{"name":"Rostral Middle Frontal – Superior Frontal","children":[{"name":"rh_RMF-SF_0","children":[],"labelIndex":"22","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_RMF-SF_0.nii"},{"name":"rh_RMF-SF_1","children":[],"labelIndex":"24","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_RMF-SF_1.nii"}]},{"name":"Supramarginal - Insula","children":[{"name":"rh_SM-Ins_0","children":[],"labelIndex":"58","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_SM-Ins_0.nii"}]},{"name":"Superior Parietal - Supramarginal","children":[{"name":"rh_SP-SM_0","children":[],"labelIndex":"94","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_SP-SM_0.nii"}]},{"name":"Superior Temporal – Transverse Temporal","children":[{"name":"rh_ST-TT_0","children":[],"labelIndex":"36","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_ST-TT_0.nii"}]},{"name":"Pars Triangularis - Insula","children":[{"name":"rh_Tr-Ins_0","children":[],"labelIndex":"65","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_Tr-Ins_0.nii"}]},{"name":"Pars Triangularis – Superior Frontal","children":[{"name":"rh_Tr-SF_0","children":[],"labelIndex":"56","PMapURL":"https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_Tr-SF_0.nii"}]}]}]}],"properties":{"name":"MNI 152","description":"Description of MNI152 (Probably also be more specific on which MNI152)"}}
\ No newline at end of file
+{
+  "name": "ICBM 2009c Nonlinear Asymmetric",
+  "type": "template",
+  "species": "Human",
+  "useTheme": "dark",
+  "ngId": "mni152",
+  "nehubaConfigURL": "nehubaConfig/MNI152NehubaConfig",
+  "parcellations": [
+    {
+      "name": "JuBrain Cytoarchitectonic Atlas",
+      "ngId": "jubrain v17 left",
+      "properties": {
+        "version": "1.0",
+        "description": "not yet",
+        "publications": [],
+        "nifti": [{"file":  "jubrain-max-pmap-v22c_space-mnicolin27.nii", "size": "4400000"}]
+      },
+      "regions": [
+        {
+          "name": "telencephalon",
+          "status": null,
+          "labelIndex": null,
+          "synonyms": [],
+          "rgb": null,
+          "children": [
+            {
+              "name": "cerebral nuclei",
+              "status": null,
+              "labelIndex": null,
+              "synonyms": [],
+              "rgb": null,
+              "children": [
+                {
+                  "name": "basal forebrain",
+                  "status": null,
+                  "labelIndex": null,
+                  "synonyms": [],
+                  "rgb": null,
+                  "children": [
+                    {
+                      "name": "magnocellular group within septum",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Ch 123 (Basal Forebrain)",
+                          "arealabel": "Ch-123",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            124,
+                            233,
+                            167
+                          ],
+                          "children": [
+                            {
+                              "name": "Ch 123 (Basal Forebrain) - left hemisphere",
+                              "rgb": [
+                                124,
+                                233,
+                                167
+                              ],
+                              "labelIndex": 286,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -3648265,
+                                3367508,
+                                -8957413
+                              ]
+                            },
+                            {
+                              "name": "Ch 123 (Basal Forebrain) - right hemisphere",
+                              "rgb": [
+                                124,
+                                233,
+                                167
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 286,
+                              "children": [],
+                              "position": [
+                                1687097,
+                                4148387,
+                                -8461290
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "sublenticular part of basal forebrain",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Ch 4 (Basal Forebrain)",
+                          "arealabel": "Ch-4",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            116,
+                            243,
+                            12
+                          ],
+                          "children": [
+                            {
+                              "name": "Ch 4 (Basal Forebrain) - left hemisphere",
+                              "rgb": [
+                                116,
+                                243,
+                                12
+                              ],
+                              "labelIndex": 264,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -17620275,
+                                -2290378,
+                                -12609966
+                              ]
+                            },
+                            {
+                              "name": "Ch 4 (Basal Forebrain) - right hemisphere",
+                              "rgb": [
+                                116,
+                                243,
+                                12
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 264,
+                              "children": [],
+                              "position": [
+                                15978528,
+                                -1288344,
+                                -12582822
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "magnocellular group within horizontal limb of diagnoal band",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Ch 123 (Basal Forebrain)",
+                          "arealabel": "Ch-123",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            124,
+                            233,
+                            167
+                          ],
+                          "children": [
+                            {
+                              "name": "Ch 123 (Basal Forebrain) - left hemisphere",
+                              "rgb": [
+                                124,
+                                233,
+                                167
+                              ],
+                              "labelIndex": 286,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -3648265,
+                                3367508,
+                                -8957413
+                              ]
+                            },
+                            {
+                              "name": "Ch 123 (Basal Forebrain) - right hemisphere",
+                              "rgb": [
+                                124,
+                                233,
+                                167
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 286,
+                              "children": [],
+                              "position": [
+                                1687097,
+                                4148387,
+                                -8461290
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    }
+                  ]
+                },
+                {
+                  "name": "amygdala",
+                  "status": null,
+                  "labelIndex": null,
+                  "synonyms": [],
+                  "rgb": null,
+                  "children": [
+                    {
+                      "name": "laterobasal group",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "LB (Amygdala)",
+                          "arealabel": "LB",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            188,
+                            16,
+                            222
+                          ],
+                          "children": [
+                            {
+                              "name": "LB (Amygdala) - left hemisphere",
+                              "rgb": [
+                                188,
+                                16,
+                                222
+                              ],
+                              "labelIndex": 187,
+                              "ngId": "jubrain v17 left",
+                              "children": []
+                            },
+                            {
+                              "name": "LB (Amygdala) - right hemisphere",
+                              "rgb": [
+                                188,
+                                16,
+                                222
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 187,
+                              "children": []
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "superficial group",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "CM (Amygdala)",
+                          "arealabel": "CM",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            102,
+                            180,
+                            202
+                          ],
+                          "children": [
+                            {
+                              "name": "CM (Amygdala) - left hemisphere",
+                              "rgb": [
+                                102,
+                                180,
+                                202
+                              ],
+                              "labelIndex": 22,
+                              "ngId": "jubrain v17 left",
+                              "children": []
+                            },
+                            {
+                              "name": "CM (Amygdala) - right hemisphere",
+                              "rgb": [
+                                102,
+                                180,
+                                202
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 22,
+                              "children": []
+                            }
+                          ]
+                        },
+                        {
+                          "name": "SF (Amygdala)",
+                          "arealabel": "SF",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            18,
+                            168,
+                            22
+                          ],
+                          "children": [
+                            {
+                              "name": "SF (Amygdala) - left hemisphere",
+                              "rgb": [
+                                18,
+                                168,
+                                22
+                              ],
+                              "labelIndex": 186,
+                              "ngId": "jubrain v17 left",
+                              "children": []
+                            },
+                            {
+                              "name": "SF (Amygdala) - right hemisphere",
+                              "rgb": [
+                                18,
+                                168,
+                                22
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 186,
+                              "children": []
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "fiber masses",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "MF (Amygdala)",
+                          "arealabel": "MF",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            190,
+                            200,
+                            9
+                          ],
+                          "children": [
+                            {
+                              "name": "MF (Amygdala) - left hemisphere",
+                              "rgb": [
+                                190,
+                                200,
+                                9
+                              ],
+                              "labelIndex": 235,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -19722222,
+                                -8722222,
+                                -16222222
+                              ]
+                            },
+                            {
+                              "name": "MF (Amygdala) - right hemisphere",
+                              "rgb": [
+                                190,
+                                200,
+                                9
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 235,
+                              "children": [],
+                              "position": [
+                                19157143,
+                                -6585714,
+                                -15985714
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "VTM (Amygdala)",
+                          "arealabel": "VTM",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            89,
+                            178,
+                            185
+                          ],
+                          "children": [
+                            {
+                              "name": "VTM (Amygdala) - left hemisphere",
+                              "rgb": [
+                                89,
+                                178,
+                                185
+                              ],
+                              "labelIndex": 228,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -24442675,
+                                -12143312,
+                                -15697452
+                              ]
+                            },
+                            {
+                              "name": "VTM (Amygdala) - right hemisphere",
+                              "rgb": [
+                                89,
+                                178,
+                                185
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 228,
+                              "children": [],
+                              "position": [
+                                23257426,
+                                -10816832,
+                                -17326733
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "IF (Amygdala)",
+                          "arealabel": "IF",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            120,
+                            190,
+                            129
+                          ],
+                          "children": [
+                            {
+                              "name": "IF (Amygdala) - left hemisphere",
+                              "rgb": [
+                                120,
+                                190,
+                                129
+                              ],
+                              "labelIndex": 237,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -29180412,
+                                -3664948,
+                                -18242268
+                              ]
+                            },
+                            {
+                              "name": "IF (Amygdala) - right hemisphere",
+                              "rgb": [
+                                120,
+                                190,
+                                129
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 237,
+                              "children": [],
+                              "position": [
+                                27247368,
+                                -2310526,
+                                -17973684
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "centromedial group",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "CM (Amygdala)",
+                          "arealabel": "CM",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            89,
+                            4,
+                            190
+                          ],
+                          "children": [
+                            {
+                              "name": "CM (Amygdala) - left hemisphere",
+                              "rgb": [
+                                89,
+                                4,
+                                190
+                              ],
+                              "labelIndex": 16,
+                              "ngId": "jubrain v17 left",
+                              "children": []
+                            },
+                            {
+                              "name": "CM (Amygdala) - right hemisphere",
+                              "rgb": [
+                                89,
+                                4,
+                                190
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 16,
+                              "children": []
+                            }
+                          ]
+                        },
+                        {
+                          "name": "CM (Amygdala)",
+                          "arealabel": "CM",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            9,
+                            120,
+                            220
+                          ],
+                          "children": [
+                            {
+                              "name": "CM (Amygdala) - left hemisphere",
+                              "rgb": [
+                                9,
+                                120,
+                                220
+                              ],
+                              "labelIndex": 21,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -22534091,
+                                -5320076,
+                                -13793561
+                              ]
+                            },
+                            {
+                              "name": "CM (Amygdala) - right hemisphere",
+                              "rgb": [
+                                9,
+                                120,
+                                220
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 21,
+                              "children": [],
+                              "position": [
+                                21343972,
+                                -4488180,
+                                -13743499
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    }
+                  ]
+                }
+              ]
+            },
+            {
+              "name": "cerebral cortex",
+              "status": null,
+              "labelIndex": null,
+              "synonyms": [],
+              "rgb": null,
+              "children": [
+                {
+                  "name": "parietal lobe",
+                  "status": null,
+                  "labelIndex": null,
+                  "synonyms": [],
+                  "rgb": null,
+                  "children": [
+                    {
+                      "name": "superior parietal lobule",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area 7P (SPL)",
+                          "arealabel": "Area-7P",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            52,
+                            20,
+                            106
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 7P (SPL) - left hemisphere",
+                              "rgb": [
+                                52,
+                                20,
+                                106
+                              ],
+                              "labelIndex": 208,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -8012999,
+                                -74699164,
+                                53070102
+                              ]
+                            },
+                            {
+                              "name": "Area 7P (SPL) - right hemisphere",
+                              "rgb": [
+                                52,
+                                20,
+                                106
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 208,
+                              "children": [],
+                              "position": [
+                                14174790,
+                                -74087955,
+                                55690476
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area 5M (SPL)",
+                          "arealabel": "Area-5M",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            225,
+                            245,
+                            76
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 5M (SPL) - left hemisphere",
+                              "rgb": [
+                                225,
+                                245,
+                                76
+                              ],
+                              "labelIndex": 131,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -8469145,
+                                -40822964,
+                                57099393
+                              ]
+                            },
+                            {
+                              "name": "Area 5M (SPL) - right hemisphere",
+                              "rgb": [
+                                225,
+                                245,
+                                76
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 131,
+                              "children": [],
+                              "position": [
+                                5921975,
+                                -43433519,
+                                59763933
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area 7PC (SPL)",
+                          "arealabel": "Area-7PC",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            252,
+                            89,
+                            28
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 7PC (SPL) - left hemisphere",
+                              "rgb": [
+                                252,
+                                89,
+                                28
+                              ],
+                              "labelIndex": 132,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -33528332,
+                                -47472312,
+                                63389891
+                              ]
+                            },
+                            {
+                              "name": "Area 7PC (SPL) - right hemisphere",
+                              "rgb": [
+                                252,
+                                89,
+                                28
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 132,
+                              "children": [],
+                              "position": [
+                                29759690,
+                                -46534053,
+                                62336656
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area 5L (SPL)",
+                          "arealabel": "Area-5L",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            184,
+                            185,
+                            58
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 5L (SPL) - left hemisphere",
+                              "rgb": [
+                                184,
+                                185,
+                                58
+                              ],
+                              "labelIndex": 130,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -18756077,
+                                -45216005,
+                                67108905
+                              ]
+                            },
+                            {
+                              "name": "Area 5L (SPL) - right hemisphere",
+                              "rgb": [
+                                184,
+                                185,
+                                58
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 130,
+                              "children": [],
+                              "position": [
+                                14224079,
+                                -48937984,
+                                69561773
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area 7M (SPL)",
+                          "arealabel": "Area-7M",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            205,
+                            61,
+                            236
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 7M (SPL) - left hemisphere",
+                              "rgb": [
+                                205,
+                                61,
+                                236
+                              ],
+                              "labelIndex": 135,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -2488934,
+                                -78308853,
+                                35074447
+                              ]
+                            },
+                            {
+                              "name": "Area 7M (SPL) - right hemisphere",
+                              "rgb": [
+                                205,
+                                61,
+                                236
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 135,
+                              "children": [],
+                              "position": [
+                                2937879,
+                                -75031818,
+                                38515152
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area 7A (SPL)",
+                          "arealabel": "Area-7A",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            38,
+                            204,
+                            19
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 7A (SPL) - left hemisphere",
+                              "rgb": [
+                                38,
+                                204,
+                                19
+                              ],
+                              "labelIndex": 134,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -20931652,
+                                -61293975,
+                                62298721
+                              ]
+                            },
+                            {
+                              "name": "Area 7A (SPL) - right hemisphere",
+                              "rgb": [
+                                38,
+                                204,
+                                19
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 134,
+                              "children": [],
+                              "position": [
+                                20754675,
+                                -61621387,
+                                62051683
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area 5Ci (SPL)",
+                          "arealabel": "Area-5Ci",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            79,
+                            242,
+                            146
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 5Ci (SPL) - left hemisphere",
+                              "rgb": [
+                                79,
+                                242,
+                                146
+                              ],
+                              "labelIndex": 136,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -15736664,
+                                -35457926,
+                                42264087
+                              ]
+                            },
+                            {
+                              "name": "Area 5Ci (SPL) - right hemisphere",
+                              "rgb": [
+                                79,
+                                242,
+                                146
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 136,
+                              "children": [],
+                              "position": [
+                                11398622,
+                                -35143701,
+                                45477854
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "parietal operculum",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area OP2 (POperc)",
+                          "arealabel": "Area-OP2",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            36,
+                            47,
+                            221
+                          ],
+                          "children": [
+                            {
+                              "name": "Area OP2 (POperc) - left hemisphere",
+                              "rgb": [
+                                36,
+                                47,
+                                221
+                              ],
+                              "labelIndex": 74,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -37009402,
+                                -24886325,
+                                19503419
+                              ]
+                            },
+                            {
+                              "name": "Area OP2 (POperc) - right hemisphere",
+                              "rgb": [
+                                36,
+                                47,
+                                221
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 74,
+                              "children": [],
+                              "position": [
+                                35239706,
+                                -21379412,
+                                18500000
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area OP4 (POperc)",
+                          "arealabel": "Area-OP4",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            89,
+                            80,
+                            132
+                          ],
+                          "children": [
+                            {
+                              "name": "Area OP4 (POperc) - left hemisphere",
+                              "rgb": [
+                                89,
+                                80,
+                                132
+                              ],
+                              "labelIndex": 72,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -61452452,
+                                -11957958,
+                                14987487
+                              ]
+                            },
+                            {
+                              "name": "Area OP4 (POperc) - right hemisphere",
+                              "rgb": [
+                                89,
+                                80,
+                                132
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 72,
+                              "children": [],
+                              "position": [
+                                61825815,
+                                -8262531,
+                                12300125
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area OP3 (POperc)",
+                          "arealabel": "Area-OP3",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            58,
+                            122,
+                            80
+                          ],
+                          "children": [
+                            {
+                              "name": "Area OP3 (POperc) - left hemisphere",
+                              "rgb": [
+                                58,
+                                122,
+                                80
+                              ],
+                              "labelIndex": 75,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -41843266,
+                                -14720501,
+                                18247318
+                              ]
+                            },
+                            {
+                              "name": "Area OP3 (POperc) - right hemisphere",
+                              "rgb": [
+                                58,
+                                122,
+                                80
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 75,
+                              "children": [],
+                              "position": [
+                                40261521,
+                                -11390553,
+                                18514977
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area OP1 (POperc)",
+                          "arealabel": "Area-OP1",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            250,
+                            182,
+                            34
+                          ],
+                          "children": [
+                            {
+                              "name": "Area OP1 (POperc) - left hemisphere",
+                              "rgb": [
+                                250,
+                                182,
+                                34
+                              ],
+                              "labelIndex": 73,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -52293320,
+                                -24316468,
+                                18030093
+                              ]
+                            },
+                            {
+                              "name": "Area OP1 (POperc) - right hemisphere",
+                              "rgb": [
+                                250,
+                                182,
+                                34
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 73,
+                              "children": [],
+                              "position": [
+                                51168165,
+                                -19477523,
+                                18151001
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "postcentral gyrus",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area 1 (PostCG)",
+                          "arealabel": "Area-1",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            232,
+                            185,
+                            250
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 1 (PostCG) - left hemisphere",
+                              "rgb": [
+                                232,
+                                185,
+                                250
+                              ],
+                              "labelIndex": 125,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -47975865,
+                                -26902730,
+                                58870063
+                              ]
+                            },
+                            {
+                              "name": "Area 1 (PostCG) - right hemisphere",
+                              "rgb": [
+                                232,
+                                185,
+                                250
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 125,
+                              "children": [],
+                              "position": [
+                                48161578,
+                                -22485924,
+                                56291435
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area 3b (PostCG)",
+                          "arealabel": "Area-3b",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            239,
+                            246,
+                            155
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 3b (PostCG) - left hemisphere",
+                              "rgb": [
+                                239,
+                                246,
+                                155
+                              ],
+                              "labelIndex": 127,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -46100804,
+                                -21517231,
+                                46289585
+                              ]
+                            },
+                            {
+                              "name": "Area 3b (PostCG) - right hemisphere",
+                              "rgb": [
+                                239,
+                                246,
+                                155
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 127,
+                              "children": [],
+                              "position": [
+                                39338624,
+                                -21564818,
+                                47310887
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area 3a (PostCG)",
+                          "arealabel": "Area-3a",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            187,
+                            133,
+                            50
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 3a (PostCG) - left hemisphere",
+                              "rgb": [
+                                187,
+                                133,
+                                50
+                              ],
+                              "labelIndex": 126,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -32589090,
+                                -25737826,
+                                44292752
+                              ]
+                            },
+                            {
+                              "name": "Area 3a (PostCG) - right hemisphere",
+                              "rgb": [
+                                187,
+                                133,
+                                50
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 126,
+                              "children": [],
+                              "position": [
+                                38084107,
+                                -18062645,
+                                36367169
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area 2 (PostCS)",
+                          "arealabel": "Area-2",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            23,
+                            13,
+                            35
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 2 (PostCS) - left hemisphere",
+                              "rgb": [
+                                23,
+                                13,
+                                35
+                              ],
+                              "labelIndex": 252,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -43927866,
+                                -31926548,
+                                51956851
+                              ]
+                            },
+                            {
+                              "name": "Area 2 (PostCS) - right hemisphere",
+                              "rgb": [
+                                23,
+                                13,
+                                35
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 252,
+                              "children": [],
+                              "position": [
+                                38456046,
+                                -31522535,
+                                52910085
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "inferior parietal lobule",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area PFm (IPL)",
+                          "arealabel": "Area-PFm",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            53,
+                            76,
+                            145
+                          ],
+                          "children": [
+                            {
+                              "name": "Area PFm (IPL) - left hemisphere",
+                              "rgb": [
+                                53,
+                                76,
+                                145
+                              ],
+                              "labelIndex": 112,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -56791928,
+                                -53657866,
+                                40055933
+                              ]
+                            },
+                            {
+                              "name": "Area PFm (IPL) - right hemisphere",
+                              "rgb": [
+                                53,
+                                76,
+                                145
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 112,
+                              "children": [],
+                              "position": [
+                                57321981,
+                                -44055488,
+                                39537196
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area PFop (IPL)",
+                          "arealabel": "Area-PFop",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            146,
+                            153,
+                            177
+                          ],
+                          "children": [
+                            {
+                              "name": "Area PFop (IPL) - left hemisphere",
+                              "rgb": [
+                                146,
+                                153,
+                                177
+                              ],
+                              "labelIndex": 111,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -62520113,
+                                -25681018,
+                                24621307
+                              ]
+                            },
+                            {
+                              "name": "Area PFop (IPL) - right hemisphere",
+                              "rgb": [
+                                146,
+                                153,
+                                177
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 111,
+                              "children": [],
+                              "position": [
+                                57801693,
+                                -19413543,
+                                26279323
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area PF (IPL)",
+                          "arealabel": "Area-PF",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            226,
+                            211,
+                            61
+                          ],
+                          "children": [
+                            {
+                              "name": "Area PF (IPL) - left hemisphere",
+                              "rgb": [
+                                226,
+                                211,
+                                61
+                              ],
+                              "labelIndex": 206,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -62326709,
+                                -38492101,
+                                37676006
+                              ]
+                            },
+                            {
+                              "name": "Area PF (IPL) - right hemisphere",
+                              "rgb": [
+                                226,
+                                211,
+                                61
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 206,
+                              "children": [],
+                              "position": [
+                                64184952,
+                                -31767876,
+                                31797118
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area PGp (IPL)",
+                          "arealabel": "Area-PGp",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            92,
+                            116,
+                            83
+                          ],
+                          "children": [
+                            {
+                              "name": "Area PGp (IPL) - left hemisphere",
+                              "rgb": [
+                                92,
+                                116,
+                                83
+                              ],
+                              "labelIndex": 108,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -46213502,
+                                -75081229,
+                                30404363
+                              ]
+                            },
+                            {
+                              "name": "Area PGp (IPL) - right hemisphere",
+                              "rgb": [
+                                92,
+                                116,
+                                83
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 108,
+                              "children": [],
+                              "position": [
+                                47682598,
+                                -70326680,
+                                31755974
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area PGa (IPL)",
+                          "arealabel": "Area-PGa",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            42,
+                            236,
+                            131
+                          ],
+                          "children": [
+                            {
+                              "name": "Area PGa (IPL) - left hemisphere",
+                              "rgb": [
+                                42,
+                                236,
+                                131
+                              ],
+                              "labelIndex": 110,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -50169585,
+                                -63561531,
+                                38956978
+                              ]
+                            },
+                            {
+                              "name": "Area PGa (IPL) - right hemisphere",
+                              "rgb": [
+                                42,
+                                236,
+                                131
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 110,
+                              "children": [],
+                              "position": [
+                                55106872,
+                                -54828987,
+                                31733304
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area PFt (IPL)",
+                          "arealabel": "Area-PFt",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            120,
+                            135,
+                            232
+                          ],
+                          "children": [
+                            {
+                              "name": "Area PFt (IPL) - left hemisphere",
+                              "rgb": [
+                                120,
+                                135,
+                                232
+                              ],
+                              "labelIndex": 109,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -57342169,
+                                -28159557,
+                                38579423
+                              ]
+                            },
+                            {
+                              "name": "Area PFt (IPL) - right hemisphere",
+                              "rgb": [
+                                120,
+                                135,
+                                232
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 109,
+                              "children": [],
+                              "position": [
+                                55074906,
+                                -22994639,
+                                39924515
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area PFcm (IPL)",
+                          "arealabel": "Area-PFcm",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            98,
+                            128,
+                            120
+                          ],
+                          "children": [
+                            {
+                              "name": "Area PFcm (IPL) - left hemisphere",
+                              "rgb": [
+                                98,
+                                128,
+                                120
+                              ],
+                              "labelIndex": 113,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -53295618,
+                                -39421369,
+                                23142857
+                              ]
+                            },
+                            {
+                              "name": "Area PFcm (IPL) - right hemisphere",
+                              "rgb": [
+                                98,
+                                128,
+                                120
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 113,
+                              "children": [],
+                              "position": [
+                                52927071,
+                                -29776768,
+                                24592525
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "parieto-occipital sulcus",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area hPO1 (POS)",
+                          "arealabel": "Area-hPO1",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            153,
+                            232,
+                            235
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hPO1 (POS) - left hemisphere",
+                              "rgb": [
+                                153,
+                                232,
+                                235
+                              ],
+                              "labelIndex": 297,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -16522864,
+                                -81584154,
+                                36346936
+                              ]
+                            },
+                            {
+                              "name": "Area hPO1 (POS) - right hemisphere",
+                              "rgb": [
+                                153,
+                                232,
+                                235
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 297,
+                              "children": [],
+                              "position": [
+                                21240705,
+                                -81149825,
+                                37156498
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "intraparietal sulcus",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area hIP5 (IPS)",
+                          "arealabel": "Area-hIP5",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            217,
+                            87,
+                            210
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hIP5 (IPS) - left hemisphere",
+                              "rgb": [
+                                217,
+                                87,
+                                210
+                              ],
+                              "labelIndex": 295,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -29185032,
+                                -74634355,
+                                36823512
+                              ]
+                            },
+                            {
+                              "name": "Area hIP5 (IPS) - right hemisphere",
+                              "rgb": [
+                                217,
+                                87,
+                                210
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 295,
+                              "children": [],
+                              "position": [
+                                33939891,
+                                -69259563,
+                                34275566
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area hIP3 (IPS)",
+                          "arealabel": "Area-hIP3",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            113,
+                            172,
+                            229
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hIP3 (IPS) - left hemisphere",
+                              "rgb": [
+                                113,
+                                172,
+                                229
+                              ],
+                              "labelIndex": 133,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -31442940,
+                                -54720825,
+                                48220503
+                              ]
+                            },
+                            {
+                              "name": "Area hIP3 (IPS) - right hemisphere",
+                              "rgb": [
+                                113,
+                                172,
+                                229
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 133,
+                              "children": [],
+                              "position": [
+                                33068074,
+                                -49000000,
+                                50509215
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area hIP8 (IPS)",
+                          "arealabel": "Area-hIP8",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            223,
+                            109,
+                            3
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hIP8 (IPS) - left hemisphere",
+                              "rgb": [
+                                223,
+                                109,
+                                3
+                              ],
+                              "labelIndex": 293,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -18598696,
+                                -73068715,
+                                43463501
+                              ]
+                            },
+                            {
+                              "name": "Area hIP8 (IPS) - right hemisphere",
+                              "rgb": [
+                                223,
+                                109,
+                                3
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 293,
+                              "children": [],
+                              "position": [
+                                24977204,
+                                -71433131,
+                                41158435
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area hIP4 (IPS)",
+                          "arealabel": "Area-hIP4",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            254,
+                            52,
+                            184
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hIP4 (IPS) - left hemisphere",
+                              "rgb": [
+                                254,
+                                52,
+                                184
+                              ],
+                              "labelIndex": 294,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -31264133,
+                                -81080409,
+                                24906920
+                              ]
+                            },
+                            {
+                              "name": "Area hIP4 (IPS) - right hemisphere",
+                              "rgb": [
+                                254,
+                                52,
+                                184
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 294,
+                              "children": [],
+                              "position": [
+                                37282609,
+                                -76348814,
+                                22440217
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area hIP7 (IPS)",
+                          "arealabel": "Area-hIP7",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            71,
+                            196,
+                            218
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hIP7 (IPS) - left hemisphere",
+                              "rgb": [
+                                71,
+                                196,
+                                218
+                              ],
+                              "labelIndex": 296,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -24182639,
+                                -81016889,
+                                28962687
+                              ]
+                            },
+                            {
+                              "name": "Area hIP7 (IPS) - right hemisphere",
+                              "rgb": [
+                                71,
+                                196,
+                                218
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 296,
+                              "children": [],
+                              "position": [
+                                29594078,
+                                -79106072,
+                                27718516
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area hIP1 (IPS)",
+                          "arealabel": "Area-hIP1",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            66,
+                            149,
+                            82
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hIP1 (IPS) - left hemisphere",
+                              "rgb": [
+                                66,
+                                149,
+                                82
+                              ],
+                              "labelIndex": 128,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -37649600,
+                                -50042430,
+                                40308099
+                              ]
+                            },
+                            {
+                              "name": "Area hIP1 (IPS) - right hemisphere",
+                              "rgb": [
+                                66,
+                                149,
+                                82
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 128,
+                              "children": [],
+                              "position": [
+                                40174687,
+                                -47498075,
+                                39221848
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area hIP6 (IPS)",
+                          "arealabel": "Area-hIP6",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            237,
+                            233,
+                            37
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hIP6 (IPS) - left hemisphere",
+                              "rgb": [
+                                237,
+                                233,
+                                37
+                              ],
+                              "labelIndex": 292,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -32177576,
+                                -67578743,
+                                47685353
+                              ]
+                            },
+                            {
+                              "name": "Area hIP6 (IPS) - right hemisphere",
+                              "rgb": [
+                                237,
+                                233,
+                                37
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 292,
+                              "children": [],
+                              "position": [
+                                37140789,
+                                -63130263,
+                                45176974
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area hIP2 (IPS)",
+                          "arealabel": "Area-hIP2",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            127,
+                            245,
+                            203
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hIP2 (IPS) - left hemisphere",
+                              "rgb": [
+                                127,
+                                245,
+                                203
+                              ],
+                              "labelIndex": 129,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -48109229,
+                                -42174005,
+                                43577477
+                              ]
+                            },
+                            {
+                              "name": "Area hIP2 (IPS) - right hemisphere",
+                              "rgb": [
+                                127,
+                                245,
+                                203
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 129,
+                              "children": [],
+                              "position": [
+                                44102535,
+                                -39182604,
+                                45742512
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    }
+                  ]
+                },
+                {
+                  "name": "occiptal lobe",
+                  "status": null,
+                  "labelIndex": null,
+                  "synonyms": [],
+                  "rgb": null,
+                  "children": [
+                    {
+                      "name": "dorsal occipital cortex",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area hOc4d (Cuneus)",
+                          "arealabel": "Area-hOc4d",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            109,
+                            218,
+                            10
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hOc4d (Cuneus) - left hemisphere",
+                              "rgb": [
+                                109,
+                                218,
+                                10
+                              ],
+                              "labelIndex": 119,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -18518125,
+                                -89169571,
+                                25335483
+                              ]
+                            },
+                            {
+                              "name": "Area hOc4d (Cuneus) - right hemisphere",
+                              "rgb": [
+                                109,
+                                218,
+                                10
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 119,
+                              "children": [],
+                              "position": [
+                                19552047,
+                                -87379086,
+                                27567915
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area hOc3d (Cuneus)",
+                          "arealabel": "Area-hOc3d",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            105,
+                            191,
+                            48
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hOc3d (Cuneus) - left hemisphere",
+                              "rgb": [
+                                105,
+                                191,
+                                48
+                              ],
+                              "labelIndex": 120,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -14416089,
+                                -92302582,
+                                21786681
+                              ]
+                            },
+                            {
+                              "name": "Area hOc3d (Cuneus) - right hemisphere",
+                              "rgb": [
+                                105,
+                                191,
+                                48
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 120,
+                              "children": [],
+                              "position": [
+                                14188075,
+                                -89168467,
+                                24647659
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area hOc6 (POS)",
+                          "arealabel": "Area-hOc6",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            239,
+                            66,
+                            26
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hOc6 (POS) - left hemisphere",
+                              "rgb": [
+                                239,
+                                66,
+                                26
+                              ],
+                              "labelIndex": 291,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -17598229,
+                                -72213366,
+                                15094203
+                              ]
+                            },
+                            {
+                              "name": "Area hOc6 (POS) - right hemisphere",
+                              "rgb": [
+                                239,
+                                66,
+                                26
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 291,
+                              "children": [],
+                              "position": [
+                                17851310,
+                                -68066256,
+                                18144838
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "ventral occipital cortex",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area hOc4v (LingG)",
+                          "arealabel": "Area-hOc4v",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            222,
+                            77,
+                            155
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hOc4v (LingG) - left hemisphere",
+                              "rgb": [
+                                222,
+                                77,
+                                155
+                              ],
+                              "labelIndex": 9,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -27885066,
+                                -80622049,
+                                -13384313
+                              ]
+                            },
+                            {
+                              "name": "Area hOc4v (LingG) - right hemisphere",
+                              "rgb": [
+                                222,
+                                77,
+                                155
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 9,
+                              "children": [],
+                              "position": [
+                                31875471,
+                                -78011213,
+                                -12568268
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area hOc3v (LingG)",
+                          "arealabel": "Area-hOc3v",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            83,
+                            179,
+                            155
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hOc3v (LingG) - left hemisphere",
+                              "rgb": [
+                                83,
+                                179,
+                                155
+                              ],
+                              "labelIndex": 10,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -19368217,
+                                -87017481,
+                                -10849154
+                              ]
+                            },
+                            {
+                              "name": "Area hOc3v (LingG) - right hemisphere",
+                              "rgb": [
+                                83,
+                                179,
+                                155
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 10,
+                              "children": [],
+                              "position": [
+                                22758654,
+                                -83233966,
+                                -10415129
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "occipital cortex",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area hOc2 (V2, 18)",
+                          "arealabel": "Area-hOc2",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            84,
+                            110,
+                            22
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hOc2 (V2, 18) - left hemisphere",
+                              "rgb": [
+                                84,
+                                110,
+                                22
+                              ],
+                              "labelIndex": 7,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -10978138,
+                                -87917881,
+                                3523276
+                              ]
+                            },
+                            {
+                              "name": "Area hOc2 (V2, 18) - right hemisphere",
+                              "rgb": [
+                                84,
+                                110,
+                                22
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 7,
+                              "children": [],
+                              "position": [
+                                12703537,
+                                -86800460,
+                                3658074
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area hOc1 (V1, 17, CalcS)",
+                          "arealabel": "Area-hOc1",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            190,
+                            132,
+                            147
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hOc1 (V1, 17, CalcS) - left hemisphere",
+                              "rgb": [
+                                190,
+                                132,
+                                147
+                              ],
+                              "labelIndex": 8,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -10265298,
+                                -84434623,
+                                2016671
+                              ]
+                            },
+                            {
+                              "name": "Area hOc1 (V1, 17, CalcS) - right hemisphere",
+                              "rgb": [
+                                190,
+                                132,
+                                147
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 8,
+                              "children": [],
+                              "position": [
+                                13123488,
+                                -81803556,
+                                2052487
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "lateral occipital cortex",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area hOc5 (LOC)",
+                          "arealabel": "Area-hOc5",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            255,
+                            0,
+                            0
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hOc5 (LOC) - left hemisphere",
+                              "rgb": [
+                                255,
+                                0,
+                                0
+                              ],
+                              "labelIndex": 6,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -43339493,
+                                -73484161,
+                                1403907
+                              ]
+                            },
+                            {
+                              "name": "Area hOc5 (LOC) - right hemisphere",
+                              "rgb": [
+                                255,
+                                0,
+                                0
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 6,
+                              "children": [],
+                              "position": [
+                                47686640,
+                                -66001965,
+                                4126719
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area hOc4la (LOC)",
+                          "arealabel": "Area-hOc4la",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            233,
+                            168,
+                            189
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hOc4la (LOC) - left hemisphere",
+                              "rgb": [
+                                233,
+                                168,
+                                189
+                              ],
+                              "labelIndex": 118,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -47307308,
+                                -79566994,
+                                -653781
+                              ]
+                            },
+                            {
+                              "name": "Area hOc4la (LOC) - right hemisphere",
+                              "rgb": [
+                                233,
+                                168,
+                                189
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 118,
+                              "children": [],
+                              "position": [
+                                47940691,
+                                -74716566,
+                                251812
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area hOc4lp (LOC)",
+                          "arealabel": "Area-hOc4lp",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            96,
+                            113,
+                            253
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hOc4lp (LOC) - left hemisphere",
+                              "rgb": [
+                                96,
+                                113,
+                                253
+                              ],
+                              "labelIndex": 117,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -34774834,
+                                -90654982,
+                                6585904
+                              ]
+                            },
+                            {
+                              "name": "Area hOc4lp (LOC) - right hemisphere",
+                              "rgb": [
+                                96,
+                                113,
+                                253
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 117,
+                              "children": [],
+                              "position": [
+                                37344111,
+                                -86863972,
+                                4946882
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    }
+                  ]
+                },
+                {
+                  "name": "frontal lobe",
+                  "status": null,
+                  "labelIndex": null,
+                  "synonyms": [],
+                  "rgb": null,
+                  "children": [
+                    {
+                      "name": "inferior frontal sulcus",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area ifj1 (IFS/PreS)",
+                          "arealabel": "Area-ifj1",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            71,
+                            244,
+                            160
+                          ],
+                          "children": [
+                            {
+                              "name": "Area ifj1 (IFS/PreS) - left hemisphere",
+                              "rgb": [
+                                71,
+                                244,
+                                160
+                              ],
+                              "labelIndex": 248,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -39114634,
+                                13825203,
+                                28231707
+                              ]
+                            },
+                            {
+                              "name": "Area ifj1 (IFS/PreS) - right hemisphere",
+                              "rgb": [
+                                71,
+                                244,
+                                160
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 248,
+                              "children": [],
+                              "position": [
+                                42958484,
+                                16095668,
+                                26297834
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area ifs4 (IFS)",
+                          "arealabel": "Area-ifs4",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            86,
+                            17,
+                            211
+                          ],
+                          "children": [
+                            {
+                              "name": "Area ifs4 (IFS) - left hemisphere",
+                              "rgb": [
+                                86,
+                                17,
+                                211
+                              ],
+                              "labelIndex": 247,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -45664223,
+                                18206745,
+                                23127566
+                              ]
+                            },
+                            {
+                              "name": "Area ifs4 (IFS) - right hemisphere",
+                              "rgb": [
+                                86,
+                                17,
+                                211
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 247,
+                              "children": [],
+                              "position": [
+                                42233716,
+                                20120690,
+                                28285441
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area ifs1 (IFS)",
+                          "arealabel": "Area-ifs1",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            172,
+                            20,
+                            136
+                          ],
+                          "children": [
+                            {
+                              "name": "Area ifs1 (IFS) - left hemisphere",
+                              "rgb": [
+                                172,
+                                20,
+                                136
+                              ],
+                              "labelIndex": 244,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -41240214,
+                                26505338,
+                                21403915
+                              ]
+                            },
+                            {
+                              "name": "Area ifs1 (IFS) - right hemisphere",
+                              "rgb": [
+                                172,
+                                20,
+                                136
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 244,
+                              "children": [],
+                              "position": [
+                                37182877,
+                                25882979,
+                                24050152
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area ifj2 (IFS/PreS)",
+                          "arealabel": "Area-ifj2",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            14,
+                            247,
+                            132
+                          ],
+                          "children": [
+                            {
+                              "name": "Area ifj2 (IFS/PreS) - left hemisphere",
+                              "rgb": [
+                                14,
+                                247,
+                                132
+                              ],
+                              "labelIndex": 249,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -41304065,
+                                7595935,
+                                29817073
+                              ]
+                            },
+                            {
+                              "name": "Area ifj2 (IFS/PreS) - right hemisphere",
+                              "rgb": [
+                                14,
+                                247,
+                                132
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 249,
+                              "children": [],
+                              "position": [
+                                42472872,
+                                11106174,
+                                24003274
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area ifs2 (IFS)",
+                          "arealabel": "Area-ifs2",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            183,
+                            42,
+                            247
+                          ],
+                          "children": [
+                            {
+                              "name": "Area ifs2 (IFS) - left hemisphere",
+                              "rgb": [
+                                183,
+                                42,
+                                247
+                              ],
+                              "labelIndex": 245,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -46574074,
+                                23629630,
+                                20222222
+                              ]
+                            },
+                            {
+                              "name": "Area ifs2 (IFS) - right hemisphere",
+                              "rgb": [
+                                183,
+                                42,
+                                247
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 245,
+                              "children": [],
+                              "position": [
+                                43901709,
+                                23803419,
+                                22797009
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area ifs3 (IFS)",
+                          "arealabel": "Area-ifs3",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            144,
+                            30,
+                            126
+                          ],
+                          "children": [
+                            {
+                              "name": "Area ifs3 (IFS) - left hemisphere",
+                              "rgb": [
+                                144,
+                                30,
+                                126
+                              ],
+                              "labelIndex": 246,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -42019070,
+                                19604186,
+                                28443256
+                              ]
+                            },
+                            {
+                              "name": "Area ifs3 (IFS) - right hemisphere",
+                              "rgb": [
+                                144,
+                                30,
+                                126
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 246,
+                              "children": [],
+                              "position": [
+                                38801055,
+                                21694631,
+                                32716683
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "inferior frontal gyrus",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area 44 (IFG)",
+                          "arealabel": "Area-44",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            54,
+                            74,
+                            75
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 44 (IFG) - left hemisphere",
+                              "rgb": [
+                                54,
+                                74,
+                                75
+                              ],
+                              "labelIndex": 2,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -54134365,
+                                11216664,
+                                15641040
+                              ]
+                            },
+                            {
+                              "name": "Area 44 (IFG) - right hemisphere",
+                              "rgb": [
+                                54,
+                                74,
+                                75
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 2,
+                              "children": [],
+                              "position": [
+                                53627432,
+                                13897917,
+                                11532612
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area 45 (IFG)",
+                          "arealabel": "Area-45",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            167,
+                            103,
+                            146
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 45 (IFG) - left hemisphere",
+                              "rgb": [
+                                167,
+                                103,
+                                146
+                              ],
+                              "labelIndex": 1,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -54741552,
+                                27110876,
+                                13391235
+                              ]
+                            },
+                            {
+                              "name": "Area 45 (IFG) - right hemisphere",
+                              "rgb": [
+                                167,
+                                103,
+                                146
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 1,
+                              "children": [],
+                              "position": [
+                                52598442,
+                                28512366,
+                                11201622
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "dorsal precentral gyrus",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area 6d1 (PreG)",
+                          "arealabel": "Area-6d1",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            45,
+                            33,
+                            27
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 6d1 (PreG) - left hemisphere",
+                              "rgb": [
+                                45,
+                                33,
+                                27
+                              ],
+                              "labelIndex": 287,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -21374190,
+                                -13807593,
+                                67532003
+                              ]
+                            },
+                            {
+                              "name": "Area 6d1 (PreG) - right hemisphere",
+                              "rgb": [
+                                45,
+                                33,
+                                27
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 287,
+                              "children": [],
+                              "position": [
+                                18459790,
+                                -13929543,
+                                67653920
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area 6d2 (PreG)",
+                          "arealabel": "Area-6d2",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            170,
+                            151,
+                            180
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 6d2 (PreG) - left hemisphere",
+                              "rgb": [
+                                170,
+                                151,
+                                180
+                              ],
+                              "labelIndex": 288,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -16167826,
+                                3331479,
+                                67316412
+                              ]
+                            },
+                            {
+                              "name": "Area 6d2 (PreG) - right hemisphere",
+                              "rgb": [
+                                170,
+                                151,
+                                180
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 288,
+                              "children": [],
+                              "position": [
+                                13586847,
+                                5159934,
+                                67533325
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "posterior medial superior frontal gyrus",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area 6ma (preSMA, mesial SFG)",
+                          "arealabel": "Area-6ma",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            204,
+                            108,
+                            222
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 6ma (preSMA, mesial SFG) - left hemisphere",
+                              "rgb": [
+                                204,
+                                108,
+                                222
+                              ],
+                              "labelIndex": 299,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -5793912,
+                                6001050,
+                                57168300
+                              ]
+                            },
+                            {
+                              "name": "Area 6ma (preSMA, mesial SFG) - right hemisphere",
+                              "rgb": [
+                                204,
+                                108,
+                                222
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 299,
+                              "children": [],
+                              "position": [
+                                5128280,
+                                6328025,
+                                57073758
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "superior frontal sulcus",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area 6d3 (SFS)",
+                          "arealabel": "Area-6d3",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            55,
+                            239,
+                            21
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 6d3 (SFS) - left hemisphere",
+                              "rgb": [
+                                55,
+                                239,
+                                21
+                              ],
+                              "labelIndex": 289,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -24754304,
+                                4064945,
+                                51648670
+                              ]
+                            },
+                            {
+                              "name": "Area 6d3 (SFS) - right hemisphere",
+                              "rgb": [
+                                55,
+                                239,
+                                21
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 289,
+                              "children": [],
+                              "position": [
+                                23956070,
+                                3653802,
+                                53205165
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "frontal pole",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area Fp1 (FPole)",
+                          "arealabel": "Area-Fp1",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            226,
+                            14,
+                            200
+                          ],
+                          "children": [
+                            {
+                              "name": "Area Fp1 (FPole) - left hemisphere",
+                              "rgb": [
+                                226,
+                                14,
+                                200
+                              ],
+                              "labelIndex": 212,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -19102858,
+                                63747679,
+                                -1631986
+                              ]
+                            },
+                            {
+                              "name": "Area Fp1 (FPole) - right hemisphere",
+                              "rgb": [
+                                226,
+                                14,
+                                200
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 212,
+                              "children": [],
+                              "position": [
+                                17092523,
+                                64510614,
+                                -2304434
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area Fp2 (FPole)",
+                          "arealabel": "Area-Fp2",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            239,
+                            137,
+                            211
+                          ],
+                          "children": [
+                            {
+                              "name": "Area Fp2 (FPole) - left hemisphere",
+                              "rgb": [
+                                239,
+                                137,
+                                211
+                              ],
+                              "labelIndex": 211,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -6503595,
+                                59384951,
+                                -3961993
+                              ]
+                            },
+                            {
+                              "name": "Area Fp2 (FPole) - right hemisphere",
+                              "rgb": [
+                                239,
+                                137,
+                                211
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 211,
+                              "children": [],
+                              "position": [
+                                4778743,
+                                61080225,
+                                -3022228
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "precentral gyrus ",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area 4p (PreCG)",
+                          "arealabel": "Area-4p",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            116,
+                            92,
+                            124
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 4p (PreCG) - left hemisphere",
+                              "rgb": [
+                                116,
+                                92,
+                                124
+                              ],
+                              "labelIndex": 123,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -37145015,
+                                -22255287,
+                                49007049
+                              ]
+                            },
+                            {
+                              "name": "Area 4p (PreCG) - right hemisphere",
+                              "rgb": [
+                                116,
+                                92,
+                                124
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 123,
+                              "children": [],
+                              "position": [
+                                36616185,
+                                -18949518,
+                                46248351
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area 4a (PreCG)",
+                          "arealabel": "Area-4a",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            118,
+                            239,
+                            183
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 4a (PreCG) - left hemisphere",
+                              "rgb": [
+                                118,
+                                239,
+                                183
+                              ],
+                              "labelIndex": 124,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -17759520,
+                                -26329160,
+                                66684048
+                              ]
+                            },
+                            {
+                              "name": "Area 4a (PreCG) - right hemisphere",
+                              "rgb": [
+                                118,
+                                239,
+                                183
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 124,
+                              "children": [],
+                              "position": [
+                                9561296,
+                                -29536520,
+                                67748853
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "mesial precentral gyrus",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area 6mp (SMA, mesial SFG)",
+                          "arealabel": "Area-6mp",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            75,
+                            95,
+                            87
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 6mp (SMA, mesial SFG) - left hemisphere",
+                              "rgb": [
+                                75,
+                                95,
+                                87
+                              ],
+                              "labelIndex": 298,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -5060089,
+                                -12636499,
+                                57999629
+                              ]
+                            },
+                            {
+                              "name": "Area 6mp (SMA, mesial SFG) - right hemisphere",
+                              "rgb": [
+                                75,
+                                95,
+                                87
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 298,
+                              "children": [],
+                              "position": [
+                                4281209,
+                                -12118010,
+                                56050065
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "medial orbitofrontal cortex",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area Fo3 (OFC)",
+                          "arealabel": "Area-Fo3",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            182,
+                            189,
+                            250
+                          ],
+                          "children": [
+                            {
+                              "name": "Area Fo3 (OFC) - left hemisphere",
+                              "rgb": [
+                                182,
+                                189,
+                                250
+                              ],
+                              "labelIndex": 5,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -22798035,
+                                32470959,
+                                -20700499
+                              ]
+                            },
+                            {
+                              "name": "Area Fo3 (OFC) - right hemisphere",
+                              "rgb": [
+                                182,
+                                189,
+                                250
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 5,
+                              "children": [],
+                              "position": [
+                                20788728,
+                                33338701,
+                                -20253609
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area Fo1 (OFC)",
+                          "arealabel": "Area-Fo1",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            7,
+                            255,
+                            179
+                          ],
+                          "children": [
+                            {
+                              "name": "Area Fo1 (OFC) - left hemisphere",
+                              "rgb": [
+                                7,
+                                255,
+                                179
+                              ],
+                              "labelIndex": 3,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -8931833,
+                                40936870,
+                                -25550705
+                              ]
+                            },
+                            {
+                              "name": "Area Fo1 (OFC) - right hemisphere",
+                              "rgb": [
+                                7,
+                                255,
+                                179
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 3,
+                              "children": [],
+                              "position": [
+                                7452738,
+                                40856484,
+                                -25066859
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area Fo2 (OFC)",
+                          "arealabel": "Area-Fo2",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            0,
+                            255,
+                            0
+                          ],
+                          "children": [
+                            {
+                              "name": "Area Fo2 (OFC) - left hemisphere",
+                              "rgb": [
+                                0,
+                                255,
+                                0
+                              ],
+                              "labelIndex": 4,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -10107850,
+                                20731801,
+                                -22045790
+                              ]
+                            },
+                            {
+                              "name": "Area Fo2 (OFC) - right hemisphere",
+                              "rgb": [
+                                0,
+                                255,
+                                0
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 4,
+                              "children": [],
+                              "position": [
+                                7453208,
+                                20602446,
+                                -21936370
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "frontal operculum ",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area OP9 (Frontal Operculum)",
+                          "arealabel": "Area-OP9",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            175,
+                            123,
+                            34
+                          ],
+                          "children": [
+                            {
+                              "name": "Area OP9 (Frontal Operculum) - left hemisphere",
+                              "rgb": [
+                                175,
+                                123,
+                                34
+                              ],
+                              "labelIndex": 274,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -45695111,
+                                26848756,
+                                3249018
+                              ]
+                            },
+                            {
+                              "name": "Area OP9 (Frontal Operculum) - right hemisphere",
+                              "rgb": [
+                                175,
+                                123,
+                                34
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 274,
+                              "children": [],
+                              "position": [
+                                41290819,
+                                28113597,
+                                1086868
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area OP8 (Frontal Operculum)",
+                          "arealabel": "Area-OP8",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            29,
+                            76,
+                            168
+                          ],
+                          "children": [
+                            {
+                              "name": "Area OP8 (Frontal Operculum) - left hemisphere",
+                              "rgb": [
+                                29,
+                                76,
+                                168
+                              ],
+                              "labelIndex": 273,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -42412158,
+                                17741884,
+                                5519733
+                              ]
+                            },
+                            {
+                              "name": "Area OP8 (Frontal Operculum) - right hemisphere",
+                              "rgb": [
+                                29,
+                                76,
+                                168
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 273,
+                              "children": [],
+                              "position": [
+                                40480213,
+                                18898782,
+                                6836377
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "lateral orbitofrontal cortex",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area Fo5 (OFC)",
+                          "arealabel": "Area-Fo5",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            219,
+                            11,
+                            91
+                          ],
+                          "children": [
+                            {
+                              "name": "Area Fo5 (OFC) - left hemisphere",
+                              "rgb": [
+                                219,
+                                11,
+                                91
+                              ],
+                              "labelIndex": 325,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -39738252,
+                                56611294,
+                                -10218054
+                              ]
+                            },
+                            {
+                              "name": "Area Fo5 (OFC) - right hemisphere",
+                              "rgb": [
+                                219,
+                                11,
+                                91
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 325,
+                              "children": [],
+                              "position": [
+                                38497105,
+                                57087145,
+                                -6858425
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area Fo7 (OFC)",
+                          "arealabel": "Area-Fo7",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            64,
+                            211,
+                            186
+                          ],
+                          "children": [
+                            {
+                              "name": "Area Fo7 (OFC) - left hemisphere",
+                              "rgb": [
+                                64,
+                                211,
+                                186
+                              ],
+                              "labelIndex": 327,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -37151362,
+                                38147830,
+                                -12621090
+                              ]
+                            },
+                            {
+                              "name": "Area Fo7 (OFC) - right hemisphere",
+                              "rgb": [
+                                64,
+                                211,
+                                186
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 327,
+                              "children": [],
+                              "position": [
+                                35554006,
+                                39868546,
+                                -13535015
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area Fo4 (OFC)",
+                          "arealabel": "Area-Fo4",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            163,
+                            204,
+                            53
+                          ],
+                          "children": [
+                            {
+                              "name": "Area Fo4 (OFC) - left hemisphere",
+                              "rgb": [
+                                163,
+                                204,
+                                53
+                              ],
+                              "labelIndex": 324,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -29237908,
+                                52508436,
+                                -15236783
+                              ]
+                            },
+                            {
+                              "name": "Area Fo4 (OFC) - right hemisphere",
+                              "rgb": [
+                                163,
+                                204,
+                                53
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 324,
+                              "children": [],
+                              "position": [
+                                31156863,
+                                53829721,
+                                -15390093
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area Fo6 (OFC)",
+                          "arealabel": "Area-Fo6",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            199,
+                            156,
+                            187
+                          ],
+                          "children": [
+                            {
+                              "name": "Area Fo6 (OFC) - left hemisphere",
+                              "rgb": [
+                                199,
+                                156,
+                                187
+                              ],
+                              "labelIndex": 326,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -45788648,
+                                42884347,
+                                -14819256
+                              ]
+                            },
+                            {
+                              "name": "Area Fo6 (OFC) - right hemisphere",
+                              "rgb": [
+                                199,
+                                156,
+                                187
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 326,
+                              "children": [],
+                              "position": [
+                                46408524,
+                                41220374,
+                                -14205821
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    }
+                  ]
+                },
+                {
+                  "name": "insula",
+                  "status": null,
+                  "labelIndex": null,
+                  "synonyms": [],
+                  "rgb": null,
+                  "children": [
+                    {
+                      "name": "granular insula",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area Ig1 (Insula)",
+                          "arealabel": "Area-Ig1",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            18,
+                            111,
+                            40
+                          ],
+                          "children": [
+                            {
+                              "name": "Area Ig1 (Insula) - left hemisphere",
+                              "rgb": [
+                                18,
+                                111,
+                                40
+                              ],
+                              "labelIndex": 115,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -33927907,
+                                -25610078,
+                                9513953
+                              ]
+                            },
+                            {
+                              "name": "Area Ig1 (Insula) - right hemisphere",
+                              "rgb": [
+                                18,
+                                111,
+                                40
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 115,
+                              "children": [],
+                              "position": [
+                                33261224,
+                                -23922449,
+                                8838776
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area Ig2 (Insula)",
+                          "arealabel": "Area-Ig2",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            105,
+                            61,
+                            82
+                          ],
+                          "children": [
+                            {
+                              "name": "Area Ig2 (Insula) - left hemisphere",
+                              "rgb": [
+                                105,
+                                61,
+                                82
+                              ],
+                              "labelIndex": 114,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -38185879,
+                                -19442363,
+                                5011527
+                              ]
+                            },
+                            {
+                              "name": "Area Ig2 (Insula) - right hemisphere",
+                              "rgb": [
+                                105,
+                                61,
+                                82
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 114,
+                              "children": [],
+                              "position": [
+                                37140230,
+                                -17412644,
+                                5868966
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "agranular insula",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area Ia (Insula)",
+                          "arealabel": "Area-Ia",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            71,
+                            217,
+                            62
+                          ],
+                          "children": [
+                            {
+                              "name": "Area Ia (Insula) - left hemisphere",
+                              "rgb": [
+                                71,
+                                217,
+                                62
+                              ],
+                              "labelIndex": 339,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -41710811,
+                                -3478378,
+                                -8602703
+                              ]
+                            },
+                            {
+                              "name": "Area Ia (Insula) - right hemisphere",
+                              "rgb": [
+                                71,
+                                217,
+                                62
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 339,
+                              "children": [],
+                              "position": [
+                                40271008,
+                                -306723,
+                                -8955882
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "dys-/agranular insula",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area Id7 (Insula)",
+                          "arealabel": "Area-Id7",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            101,
+                            202,
+                            38
+                          ],
+                          "children": [
+                            {
+                              "name": "Area Id7 (Insula) - left hemisphere",
+                              "rgb": [
+                                101,
+                                202,
+                                38
+                              ],
+                              "labelIndex": 159,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -32161180,
+                                23947874,
+                                2868999
+                              ]
+                            },
+                            {
+                              "name": "Area Id7 (Insula) - right hemisphere",
+                              "rgb": [
+                                101,
+                                202,
+                                38
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 159,
+                              "children": [],
+                              "position": [
+                                32412012,
+                                26220735,
+                                1550497
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "dysgranular insula",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area Id1 (Insula)",
+                          "arealabel": "Area-Id1",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            141,
+                            112,
+                            216
+                          ],
+                          "children": [
+                            {
+                              "name": "Area Id1 (Insula) - left hemisphere",
+                              "rgb": [
+                                141,
+                                112,
+                                216
+                              ],
+                              "labelIndex": 116,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -41135158,
+                                -19816750,
+                                -5491708
+                              ]
+                            },
+                            {
+                              "name": "Area Id1 (Insula) - right hemisphere",
+                              "rgb": [
+                                141,
+                                112,
+                                216
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 116,
+                              "children": [],
+                              "position": [
+                                38820470,
+                                -17815436,
+                                -5112416
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area Id5 (Insula)",
+                          "arealabel": "Area-Id5",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            112,
+                            6,
+                            50
+                          ],
+                          "children": [
+                            {
+                              "name": "Area Id5 (Insula) - left hemisphere",
+                              "rgb": [
+                                112,
+                                6,
+                                50
+                              ],
+                              "labelIndex": 338,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -40449519,
+                                -4582933,
+                                382212
+                              ]
+                            },
+                            {
+                              "name": "Area Id5 (Insula) - right hemisphere",
+                              "rgb": [
+                                112,
+                                6,
+                                50
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 338,
+                              "children": [],
+                              "position": [
+                                38537963,
+                                -2796296,
+                                165741
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area Id4 (Insula)",
+                          "arealabel": "Area-Id4",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            38,
+                            174,
+                            113
+                          ],
+                          "children": [
+                            {
+                              "name": "Area Id4 (Insula) - left hemisphere",
+                              "rgb": [
+                                38,
+                                174,
+                                113
+                              ],
+                              "labelIndex": 337,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -37849096,
+                                -4693324,
+                                11819889
+                              ]
+                            },
+                            {
+                              "name": "Area Id4 (Insula) - right hemisphere",
+                              "rgb": [
+                                38,
+                                174,
+                                113
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 337,
+                              "children": [],
+                              "position": [
+                                36201613,
+                                -3791475,
+                                10987327
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area Id6 (Insula)",
+                          "arealabel": "Area-Id6",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            138,
+                            127,
+                            119
+                          ],
+                          "children": [
+                            {
+                              "name": "Area Id6 (Insula) - left hemisphere",
+                              "rgb": [
+                                138,
+                                127,
+                                119
+                              ],
+                              "labelIndex": 340,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -37077741,
+                                9330986,
+                                2058685
+                              ]
+                            },
+                            {
+                              "name": "Area Id6 (Insula) - right hemisphere",
+                              "rgb": [
+                                138,
+                                127,
+                                119
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 340,
+                              "children": [],
+                              "position": [
+                                35516562,
+                                11115104,
+                                2772938
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    }
+                  ]
+                },
+                {
+                  "name": "temporal lobe",
+                  "status": null,
+                  "labelIndex": null,
+                  "synonyms": [],
+                  "rgb": null,
+                  "children": [
+                    {
+                      "name": "superior temporal sulcus",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area STS1 (STS)",
+                          "arealabel": "Area-STS1",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            205,
+                            228,
+                            4
+                          ],
+                          "children": [
+                            {
+                              "name": "Area STS1 (STS) - left hemisphere",
+                              "rgb": [
+                                205,
+                                228,
+                                4
+                              ],
+                              "labelIndex": 271,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -55442669,
+                                -18314601,
+                                -6381831
+                              ]
+                            },
+                            {
+                              "name": "Area STS1 (STS) - right hemisphere",
+                              "rgb": [
+                                205,
+                                228,
+                                4
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 271,
+                              "children": [],
+                              "position": [
+                                52602966,
+                                -18339402,
+                                -5666868
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area STS2 (STS)",
+                          "arealabel": "Area-STS2",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            62,
+                            117,
+                            123
+                          ],
+                          "children": [
+                            {
+                              "name": "Area STS2 (STS) - left hemisphere",
+                              "rgb": [
+                                62,
+                                117,
+                                123
+                              ],
+                              "labelIndex": 272,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -57958891,
+                                -8931681,
+                                -16581483
+                              ]
+                            },
+                            {
+                              "name": "Area STS2 (STS) - right hemisphere",
+                              "rgb": [
+                                62,
+                                117,
+                                123
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 272,
+                              "children": [],
+                              "position": [
+                                55536716,
+                                -8701651,
+                                -16698805
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "superior temporal gyrus",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area TE 3 (STG)",
+                          "arealabel": "Area-TE-3",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            159,
+                            104,
+                            108
+                          ],
+                          "children": [
+                            {
+                              "name": "Area TE 3 (STG) - left hemisphere",
+                              "rgb": [
+                                159,
+                                104,
+                                108
+                              ],
+                              "labelIndex": 31,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -65021452,
+                                -13798267,
+                                691213
+                              ]
+                            },
+                            {
+                              "name": "Area TE 3 (STG) - right hemisphere",
+                              "rgb": [
+                                159,
+                                104,
+                                108
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 31,
+                              "children": [],
+                              "position": [
+                                63517180,
+                                -9223240,
+                                -1006136
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "Heschl's gyrus",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area TE 1.2 (HESCHL)",
+                          "arealabel": "Area-TE-1.2",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            202,
+                            251,
+                            192
+                          ],
+                          "children": [
+                            {
+                              "name": "Area TE 1.2 (HESCHL) - left hemisphere",
+                              "rgb": [
+                                202,
+                                251,
+                                192
+                              ],
+                              "labelIndex": 30,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -51139794,
+                                -7275300,
+                                2604631
+                              ]
+                            },
+                            {
+                              "name": "Area TE 1.2 (HESCHL) - right hemisphere",
+                              "rgb": [
+                                202,
+                                251,
+                                192
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 30,
+                              "children": [],
+                              "position": [
+                                53854260,
+                                -2428251,
+                                -1426009
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area TE 1.1 (HESCHL)",
+                          "arealabel": "Area-TE-1.1",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            8,
+                            113,
+                            68
+                          ],
+                          "children": [
+                            {
+                              "name": "Area TE 1.1 (HESCHL) - left hemisphere",
+                              "rgb": [
+                                8,
+                                113,
+                                68
+                              ],
+                              "labelIndex": 33,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -39537206,
+                                -29185649,
+                                11225133
+                              ]
+                            },
+                            {
+                              "name": "Area TE 1.1 (HESCHL) - right hemisphere",
+                              "rgb": [
+                                8,
+                                113,
+                                68
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 33,
+                              "children": [],
+                              "position": [
+                                40353878,
+                                -24757143,
+                                10842857
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area TE 1.0 (HESCHL)",
+                          "arealabel": "Area-TE-1.0",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            252,
+                            84,
+                            222
+                          ],
+                          "children": [
+                            {
+                              "name": "Area TE 1.0 (HESCHL) - left hemisphere",
+                              "rgb": [
+                                252,
+                                84,
+                                222
+                              ],
+                              "labelIndex": 27,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -47745772,
+                                -19329763,
+                                7810034
+                              ]
+                            },
+                            {
+                              "name": "Area TE 1.0 (HESCHL) - right hemisphere",
+                              "rgb": [
+                                252,
+                                84,
+                                222
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 27,
+                              "children": [],
+                              "position": [
+                                49200565,
+                                -12937288,
+                                5319209
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "fusiform gyrus",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area FG1 (FusG)",
+                          "arealabel": "Area-FG1",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            131,
+                            183,
+                            58
+                          ],
+                          "children": [
+                            {
+                              "name": "Area FG1 (FusG) - left hemisphere",
+                              "rgb": [
+                                131,
+                                183,
+                                58
+                              ],
+                              "labelIndex": 107,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -30094949,
+                                -68384410,
+                                -12800146
+                              ]
+                            },
+                            {
+                              "name": "Area FG1 (FusG) - right hemisphere",
+                              "rgb": [
+                                131,
+                                183,
+                                58
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 107,
+                              "children": [],
+                              "position": [
+                                32164756,
+                                -65600287,
+                                -12459885
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area FG4 (FusG)",
+                          "arealabel": "Area-FG4",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            170,
+                            220,
+                            175
+                          ],
+                          "children": [
+                            {
+                              "name": "Area FG4 (FusG) - left hemisphere",
+                              "rgb": [
+                                170,
+                                220,
+                                175
+                              ],
+                              "labelIndex": 238,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -44817844,
+                                -46757217,
+                                -19517597
+                              ]
+                            },
+                            {
+                              "name": "Area FG4 (FusG) - right hemisphere",
+                              "rgb": [
+                                170,
+                                220,
+                                175
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 238,
+                              "children": [],
+                              "position": [
+                                42929445,
+                                -44444275,
+                                -21712296
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area FG3 (FusG)",
+                          "arealabel": "Area-FG3",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            120,
+                            147,
+                            37
+                          ],
+                          "children": [
+                            {
+                              "name": "Area FG3 (FusG) - left hemisphere",
+                              "rgb": [
+                                120,
+                                147,
+                                37
+                              ],
+                              "labelIndex": 239,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -31763265,
+                                -47519967,
+                                -14980126
+                              ]
+                            },
+                            {
+                              "name": "Area FG3 (FusG) - right hemisphere",
+                              "rgb": [
+                                120,
+                                147,
+                                37
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 239,
+                              "children": [],
+                              "position": [
+                                30835007,
+                                -45941176,
+                                -15743424
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area FG2 (FusG)",
+                          "arealabel": "Area-FG2",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            67,
+                            94,
+                            149
+                          ],
+                          "children": [
+                            {
+                              "name": "Area FG2 (FusG) - left hemisphere",
+                              "rgb": [
+                                67,
+                                94,
+                                149
+                              ],
+                              "labelIndex": 106,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -44484053,
+                                -67922326,
+                                -16558015
+                              ]
+                            },
+                            {
+                              "name": "Area FG2 (FusG) - right hemisphere",
+                              "rgb": [
+                                67,
+                                94,
+                                149
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 106,
+                              "children": [],
+                              "position": [
+                                44057346,
+                                -64586582,
+                                -16661544
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    }
+                  ]
+                },
+                {
+                  "name": "limbic lobe",
+                  "status": null,
+                  "labelIndex": null,
+                  "synonyms": [],
+                  "rgb": null,
+                  "children": [
+                    {
+                      "name": "cingulate gyrus, frontal part",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area p24c (pACC)",
+                          "arealabel": "Area-p24c",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            241,
+                            164,
+                            195
+                          ],
+                          "children": [
+                            {
+                              "name": "Area p24c (pACC) - left hemisphere",
+                              "rgb": [
+                                241,
+                                164,
+                                195
+                              ],
+                              "labelIndex": 232,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -10315842,
+                                41083498,
+                                11735644
+                              ]
+                            },
+                            {
+                              "name": "Area p24c (pACC) - right hemisphere",
+                              "rgb": [
+                                241,
+                                164,
+                                195
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 232,
+                              "children": [],
+                              "position": [
+                                9082066,
+                                42907018,
+                                11145614
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area p24ab (pACC)",
+                          "arealabel": "Area-p24ab",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            153,
+                            195,
+                            229
+                          ],
+                          "children": [
+                            {
+                              "name": "Area p24ab (pACC) - left hemisphere",
+                              "rgb": [
+                                153,
+                                195,
+                                229
+                              ],
+                              "labelIndex": 231,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -3951741,
+                                38786470,
+                                4481049
+                              ]
+                            },
+                            {
+                              "name": "Area p24ab (pACC) - right hemisphere",
+                              "rgb": [
+                                153,
+                                195,
+                                229
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 231,
+                              "children": [],
+                              "position": [
+                                2508004,
+                                39161686,
+                                6891142
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area s32 (sACC)",
+                          "arealabel": "Area-s32",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            193,
+                            94,
+                            250
+                          ],
+                          "children": [
+                            {
+                              "name": "Area s32 (sACC) - left hemisphere",
+                              "rgb": [
+                                193,
+                                94,
+                                250
+                              ],
+                              "labelIndex": 46,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -7960610,
+                                35317027,
+                                -14716010
+                              ]
+                            },
+                            {
+                              "name": "Area s32 (sACC) - right hemisphere",
+                              "rgb": [
+                                193,
+                                94,
+                                250
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 46,
+                              "children": [],
+                              "position": [
+                                2693907,
+                                34682777,
+                                -15008494
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area 25 (sACC)",
+                          "arealabel": "Area-25",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            170,
+                            68,
+                            220
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 25 (sACC) - left hemisphere",
+                              "rgb": [
+                                170,
+                                68,
+                                220
+                              ],
+                              "labelIndex": 184,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -5565878,
+                                12434122,
+                                -13119932
+                              ]
+                            },
+                            {
+                              "name": "Area 25 (sACC) - right hemisphere",
+                              "rgb": [
+                                170,
+                                68,
+                                220
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 184,
+                              "children": [],
+                              "position": [
+                                3297386,
+                                11678649,
+                                -13530501
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area s24 (sACC)",
+                          "arealabel": "Area-s24",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            133,
+                            34,
+                            201
+                          ],
+                          "children": [
+                            {
+                              "name": "Area s24 (sACC) - left hemisphere",
+                              "rgb": [
+                                133,
+                                34,
+                                201
+                              ],
+                              "labelIndex": 183,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -4719528,
+                                24562540,
+                                -11547224
+                              ]
+                            },
+                            {
+                              "name": "Area s24 (sACC) - right hemisphere",
+                              "rgb": [
+                                133,
+                                34,
+                                201
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 183,
+                              "children": [],
+                              "position": [
+                                2316712,
+                                23962938,
+                                -10923181
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area p32 (pACC)",
+                          "arealabel": "Area-p32",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            87,
+                            135,
+                            14
+                          ],
+                          "children": [
+                            {
+                              "name": "Area p32 (pACC) - left hemisphere",
+                              "rgb": [
+                                87,
+                                135,
+                                14
+                              ],
+                              "labelIndex": 47,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -8368982,
+                                49719698,
+                                10114173
+                              ]
+                            },
+                            {
+                              "name": "Area p32 (pACC) - right hemisphere",
+                              "rgb": [
+                                87,
+                                135,
+                                14
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 47,
+                              "children": [],
+                              "position": [
+                                6403235,
+                                50410059,
+                                10022042
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area 33 (ACC)",
+                          "arealabel": "Area-33",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            51,
+                            57,
+                            245
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 33 (ACC) - left hemisphere",
+                              "rgb": [
+                                51,
+                                57,
+                                245
+                              ],
+                              "labelIndex": 39,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -6094628,
+                                15035613,
+                                15966015
+                              ]
+                            },
+                            {
+                              "name": "Area 33 (ACC) - right hemisphere",
+                              "rgb": [
+                                51,
+                                57,
+                                245
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 39,
+                              "children": [],
+                              "position": [
+                                4398596,
+                                17026911,
+                                15680187
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "hippocampal formation",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Entorhinal Cortex",
+                          "arealabel": "Entorhinal-Cortex",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            35,
+                            159,
+                            214
+                          ],
+                          "children": [
+                            {
+                              "name": "Entorhinal Cortex - left hemisphere",
+                              "rgb": [
+                                35,
+                                159,
+                                214
+                              ],
+                              "labelIndex": 60,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -23891483,
+                                -7276972,
+                                -35148896
+                              ]
+                            },
+                            {
+                              "name": "Entorhinal Cortex - right hemisphere",
+                              "rgb": [
+                                35,
+                                159,
+                                214
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 60,
+                              "children": [],
+                              "position": [
+                                21129607,
+                                -4977075,
+                                -34844921
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "CA (Hippocampus)",
+                          "arealabel": "CA",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            250,
+                            191,
+                            217
+                          ],
+                          "children": [
+                            {
+                              "name": "CA (Hippocampus) - left hemisphere",
+                              "rgb": [
+                                250,
+                                191,
+                                217
+                              ],
+                              "labelIndex": 191,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -28408447,
+                                -27605379,
+                                -12640617
+                              ]
+                            },
+                            {
+                              "name": "CA (Hippocampus) - right hemisphere",
+                              "rgb": [
+                                250,
+                                191,
+                                217
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 191,
+                              "children": [],
+                              "position": [
+                                27668137,
+                                -26314056,
+                                -11735266
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "DG (Hippocampus)",
+                          "arealabel": "DG",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            149,
+                            55,
+                            120
+                          ],
+                          "children": [
+                            {
+                              "name": "DG (Hippocampus) - left hemisphere",
+                              "rgb": [
+                                149,
+                                55,
+                                120
+                              ],
+                              "labelIndex": 61,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -27551185,
+                                -28070616,
+                                -11281043
+                              ]
+                            },
+                            {
+                              "name": "DG (Hippocampus) - right hemisphere",
+                              "rgb": [
+                                149,
+                                55,
+                                120
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 61,
+                              "children": [],
+                              "position": [
+                                26996134,
+                                -25789948,
+                                -11462629
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Subiculum (Hippocampus)",
+                          "arealabel": "Subiculum",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            111,
+                            125,
+                            219
+                          ],
+                          "children": [
+                            {
+                              "name": "Subiculum (Hippocampus) - left hemisphere",
+                              "rgb": [
+                                111,
+                                125,
+                                219
+                              ],
+                              "labelIndex": 192,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -22231264,
+                                -25557482,
+                                -18551904
+                              ]
+                            },
+                            {
+                              "name": "Subiculum (Hippocampus) - right hemisphere",
+                              "rgb": [
+                                111,
+                                125,
+                                219
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 192,
+                              "children": [],
+                              "position": [
+                                21763286,
+                                -24252804,
+                                -18015846
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "HATA (Hippocampus)",
+                          "arealabel": "HATA",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            137,
+                            12,
+                            73
+                          ],
+                          "children": [
+                            {
+                              "name": "HATA (Hippocampus) - left hemisphere",
+                              "rgb": [
+                                137,
+                                12,
+                                73
+                              ],
+                              "labelIndex": 68,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -14934109,
+                                -11686047,
+                                -20011628
+                              ]
+                            },
+                            {
+                              "name": "HATA (Hippocampus) - right hemisphere",
+                              "rgb": [
+                                137,
+                                12,
+                                73
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 68,
+                              "children": [],
+                              "position": [
+                                13262963,
+                                -10581481,
+                                -18866667
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    }
+                  ]
+                }
+              ]
+            }
+          ]
+        },
+        {
+          "name": "metencephalon",
+          "status": null,
+          "labelIndex": null,
+          "synonyms": [],
+          "rgb": null,
+          "children": [
+            {
+              "name": "cerebellum",
+              "status": null,
+              "labelIndex": null,
+              "synonyms": [],
+              "rgb": null,
+              "children": [
+                {
+                  "name": "cerebellar nuclei",
+                  "status": null,
+                  "labelIndex": null,
+                  "synonyms": [],
+                  "rgb": null,
+                  "children": [
+                    {
+                      "name": "globose nucleus",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Interposed Nucleus (Cerebellum)",
+                          "arealabel": "Interposed-Nucleus",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            170,
+                            29,
+                            10
+                          ],
+                          "children": [
+                            {
+                              "name": "Interposed Nucleus (Cerebellum) - left hemisphere",
+                              "rgb": [
+                                170,
+                                29,
+                                10
+                              ],
+                              "labelIndex": 251,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -9205882,
+                                -57128342,
+                                -32224599
+                              ]
+                            },
+                            {
+                              "name": "Interposed Nucleus (Cerebellum) - right hemisphere",
+                              "rgb": [
+                                170,
+                                29,
+                                10
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 251,
+                              "children": [],
+                              "position": [
+                                6034375,
+                                -56068750,
+                                -32600000
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "dentate nucleus",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Dorsal Dentate Nucleus (Cerebellum)",
+                          "arealabel": "Dorsal-Dentate-Nucleus",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            89,
+                            201,
+                            99
+                          ],
+                          "children": [
+                            {
+                              "name": "Dorsal Dentate Nucleus (Cerebellum) - left hemisphere",
+                              "rgb": [
+                                89,
+                                201,
+                                99
+                              ],
+                              "labelIndex": 240,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -17069823,
+                                -58618780,
+                                -38297753
+                              ]
+                            },
+                            {
+                              "name": "Dorsal Dentate Nucleus (Cerebellum) - right hemisphere",
+                              "rgb": [
+                                89,
+                                201,
+                                99
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 240,
+                              "children": [],
+                              "position": [
+                                13542553,
+                                -60120346,
+                                -37750665
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Ventral Dentate Nucleus (Cerebellum)",
+                          "arealabel": "Ventral-Dentate-Nucleus",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            39,
+                            129,
+                            9
+                          ],
+                          "children": [
+                            {
+                              "name": "Ventral Dentate Nucleus (Cerebellum) - left hemisphere",
+                              "rgb": [
+                                39,
+                                129,
+                                9
+                              ],
+                              "labelIndex": 241,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -13748954,
+                                -58276151,
+                                -31782427
+                              ]
+                            },
+                            {
+                              "name": "Ventral Dentate Nucleus (Cerebellum) - right hemisphere",
+                              "rgb": [
+                                39,
+                                129,
+                                9
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 241,
+                              "children": [],
+                              "position": [
+                                10255877,
+                                -57747740,
+                                -32527125
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "fastigial nucleus",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Fastigial Nucleus (Cerebellum)",
+                          "arealabel": "Fastigial-Nucleus",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            200,
+                            100,
+                            10
+                          ],
+                          "children": [
+                            {
+                              "name": "Fastigial Nucleus (Cerebellum) - left hemisphere",
+                              "rgb": [
+                                200,
+                                100,
+                                10
+                              ],
+                              "labelIndex": 219,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -4666667,
+                                -54963333,
+                                -30763333
+                              ]
+                            },
+                            {
+                              "name": "Fastigial Nucleus (Cerebellum) - right hemisphere",
+                              "rgb": [
+                                200,
+                                100,
+                                10
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 219,
+                              "children": [],
+                              "position": [
+                                1261658,
+                                -54932642,
+                                -30598446
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "emboliform nucleus",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Interposed Nucleus (Cerebellum)",
+                          "arealabel": "Interposed-Nucleus",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            170,
+                            29,
+                            10
+                          ],
+                          "children": [
+                            {
+                              "name": "Interposed Nucleus (Cerebellum) - left hemisphere",
+                              "rgb": [
+                                170,
+                                29,
+                                10
+                              ],
+                              "labelIndex": 251,
+                              "ngId": "jubrain v17 left",
+                              "children": [],
+                              "position": [
+                                -9205882,
+                                -57128342,
+                                -32224599
+                              ]
+                            },
+                            {
+                              "name": "Interposed Nucleus (Cerebellum) - right hemisphere",
+                              "rgb": [
+                                170,
+                                29,
+                                10
+                              ],
+                              "ngId": "jubrain v17 right",
+                              "labelIndex": 251,
+                              "children": [],
+                              "position": [
+                                6034375,
+                                -56068750,
+                                -32600000
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    }
+                  ]
+                }
+              ]
+            }
+          ]
+        }
+      ]
+    },
+    {
+      "ngId": "fibre bundle long",
+      "type": "parcellation",
+      "surfaceParcellation": true,
+      "ngData": null,
+      "name": "Fibre Bundle Atlas - Long Bundle",
+      "regions": [
+        {
+          "name": "Arcuate - Left",
+          "children": [],
+          "labelIndex": "1"
+        },
+        {
+          "name": "Arcuate - Right",
+          "children": [],
+          "labelIndex": "31"
+        },
+        {
+          "name": "Arcuate_Anterior - Left",
+          "children": [],
+          "labelIndex": "2"
+        },
+        {
+          "name": "Arcuate_Anterior - Right",
+          "children": [],
+          "labelIndex": "32"
+        },
+        {
+          "name": "Arcuate_Posterior - Left",
+          "children": [],
+          "labelIndex": "3"
+        },
+        {
+          "name": "Arcuate_Posterior - Right",
+          "children": [],
+          "labelIndex": "33"
+        },
+        {
+          "name": "Cingulum_Long - Left",
+          "children": [],
+          "labelIndex": "4"
+        },
+        {
+          "name": "Cingulum_Long - Right",
+          "children": [],
+          "labelIndex": "34"
+        },
+        {
+          "name": "Cingulum_Short - Left",
+          "children": [],
+          "labelIndex": "5"
+        },
+        {
+          "name": "Cingulum_Short - Right",
+          "children": [],
+          "labelIndex": "35"
+        },
+        {
+          "name": "Cingulum_Temporal - Left",
+          "children": [],
+          "labelIndex": "6"
+        },
+        {
+          "name": "Cingulum_Temporal - Right",
+          "children": [],
+          "labelIndex": "36"
+        },
+        {
+          "name": "CorpusCallosum_Body",
+          "children": [],
+          "labelIndex": "7"
+        },
+        {
+          "name": "CorpusCallosum_Genu",
+          "children": [],
+          "labelIndex": "8"
+        },
+        {
+          "name": "CorpusCallosum_Rostrum",
+          "children": [],
+          "labelIndex": "9"
+        },
+        {
+          "name": "CorpusCallosum_Splenium",
+          "children": [],
+          "labelIndex": "10"
+        },
+        {
+          "name": "CorticoSpinalTract - Left",
+          "children": [],
+          "labelIndex": "11"
+        },
+        {
+          "name": "CorticoSpinalTract - Right",
+          "children": [],
+          "labelIndex": "41"
+        },
+        {
+          "name": "ExternalCapsule - Left",
+          "children": [],
+          "labelIndex": "12"
+        },
+        {
+          "name": "ExternalCapsule - Right",
+          "children": [],
+          "labelIndex": "42"
+        },
+        {
+          "name": "Fornix - Left",
+          "children": [],
+          "labelIndex": "13"
+        },
+        {
+          "name": "Fornix - Right",
+          "children": [],
+          "labelIndex": "43"
+        },
+        {
+          "name": "InferiorFrontoOccipital - Left",
+          "children": [],
+          "labelIndex": "14"
+        },
+        {
+          "name": "InferiorFrontoOccipital - Right",
+          "children": [],
+          "labelIndex": "44"
+        },
+        {
+          "name": "InferiorLongitudinal - Left",
+          "children": [],
+          "labelIndex": "15"
+        },
+        {
+          "name": "InferiorLongitudinal - Right",
+          "children": [],
+          "labelIndex": "45"
+        },
+        {
+          "name": "InferiorLongitudinal_Lateral - Left",
+          "children": [],
+          "labelIndex": "16"
+        },
+        {
+          "name": "InferiorLongitudinal_Lateral - Right",
+          "children": [],
+          "labelIndex": "46"
+        },
+        {
+          "name": "MediumLongitudinal - Left",
+          "children": [],
+          "labelIndex": "17"
+        },
+        {
+          "name": "MediumLongitudinal - Right",
+          "children": [],
+          "labelIndex": "47"
+        },
+        {
+          "name": "SpinoThalamicTract - Left",
+          "children": [],
+          "labelIndex": "18"
+        },
+        {
+          "name": "SpinoThalamicTract - Right",
+          "children": [],
+          "labelIndex": "48"
+        },
+        {
+          "name": "ThalamicRadiations_Anterior - Left",
+          "children": [],
+          "labelIndex": "19"
+        },
+        {
+          "name": "ThalamicRadiations_Anterior - Right",
+          "children": [],
+          "labelIndex": "49"
+        },
+        {
+          "name": "ThalamicRadiations_Posterior - Left",
+          "children": [],
+          "labelIndex": "20"
+        },
+        {
+          "name": "ThalamicRadiations_Posterior - Right",
+          "children": [],
+          "labelIndex": "50"
+        },
+        {
+          "name": "Uncinate - Left",
+          "children": [],
+          "labelIndex": "21"
+        },
+        {
+          "name": "Uncinate - Right",
+          "children": [],
+          "labelIndex": "51"
+        }
+      ]
+    },
+    {
+      "ngId": "fibre bundle short",
+      "type": "parcellation",
+      "surfaceParcellation": true,
+      "ngData": null,
+      "name": "Fibre Bundle Atlas - Short Bundle",
+      "regions": [
+        {
+          "name": "Left Hemisphere",
+          "children": [
+            {
+              "name": "Caudal Middle Frontal - Precuneus",
+              "children": [
+                {
+                  "name": "lh_CAC-PrCu_0",
+                  "children": [],
+                  "labelIndex": "38",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_CAC-PrCu_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Caudal Middle Frontal – Pars Opercularis",
+              "children": [
+                {
+                  "name": "lh_CMF-Op_0",
+                  "children": [],
+                  "labelIndex": "37",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_CMF-Op_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Caudal Middle Frontal - Poscentral",
+              "children": [
+                {
+                  "name": "lh_CMF-PoC_0",
+                  "children": [],
+                  "labelIndex": "62",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_CMF-PoC_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Caudal Middle Frontal - Precentral",
+              "children": [
+                {
+                  "name": "lh_CMF-PrC_0",
+                  "children": [],
+                  "labelIndex": "97",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_CMF-PrC_0.nii"
+                },
+                {
+                  "name": "lh_CMF-PrC_1",
+                  "children": [],
+                  "labelIndex": "99",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_CMF-PrC_1.nii"
+                }
+              ]
+            },
+            {
+              "name": "Caudal Middle Frontal – Rostral Middle Frontal",
+              "children": [
+                {
+                  "name": "lh_CMF-RMF_0",
+                  "children": [],
+                  "labelIndex": "49",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_CMF-RMF_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Caudal Middle Frontal – Superior Frontal",
+              "children": [
+                {
+                  "name": "lh_CMF-SF_0",
+                  "children": [],
+                  "labelIndex": "68",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_CMF-SF_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Fusiform – Lateral Occipital",
+              "children": [
+                {
+                  "name": "lh_Fu-LO_0",
+                  "children": [],
+                  "labelIndex": "51",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_Fu-LO_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Isthmus Cingulate - Precuneus",
+              "children": [
+                {
+                  "name": "lh_IC-PrCu_0",
+                  "children": [],
+                  "labelIndex": "40",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_IC-PrCu_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Inferior Parietal – Inferior Temporal",
+              "children": [
+                {
+                  "name": "lh_IP-IT_0",
+                  "children": [],
+                  "labelIndex": "59",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_IP-IT_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Inferior Parietal – Lateral Occipital",
+              "children": [
+                {
+                  "name": "lh_IP-LO_1",
+                  "children": [],
+                  "labelIndex": "86",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_IP-LO_1.nii"
+                }
+              ]
+            },
+            {
+              "name": "Inferior Parietal – Middle Temporal\t",
+              "children": [
+                {
+                  "name": "lh_IP-MT_0",
+                  "children": [],
+                  "labelIndex": "33",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_IP-MT_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Inferior Parietal - Supramarginal",
+              "children": [
+                {
+                  "name": "lh_IP-SM_0",
+                  "children": [],
+                  "labelIndex": "80",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_IP-SM_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Inferior Pariertal – Superior Parietal",
+              "children": [
+                {
+                  "name": "lh_IP-SP_0",
+                  "children": [],
+                  "labelIndex": "82",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_IP-SP_0.nii"
+                },
+                {
+                  "name": "lh_IP-SP_1",
+                  "children": [],
+                  "labelIndex": "84",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_IP-SP_1.nii"
+                }
+              ]
+            },
+            {
+              "name": "Inferior Temporal – Middle Temporal",
+              "children": [
+                {
+                  "name": "lh_IT-MT_0",
+                  "children": [],
+                  "labelIndex": "89",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_IT-MT_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Lateral Orbitofrontal – Pars Orbitalis",
+              "children": [
+                {
+                  "name": "lh_LOF-Or_0",
+                  "children": [],
+                  "labelIndex": "48",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_LOF-Or_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Lateral Orbitofrontal – Rostral Middle Frontal",
+              "children": [
+                {
+                  "name": "lh_LOF-RMF_0",
+                  "children": [],
+                  "labelIndex": "29",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_LOF-RMF_0.nii"
+                },
+                {
+                  "name": "lh_LOF-RMF_1",
+                  "children": [],
+                  "labelIndex": "31",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_LOF-RMF_1.nii"
+                }
+              ]
+            },
+            {
+              "name": "Lateral Orbitofrontal – Superior Temporal",
+              "children": [
+                {
+                  "name": "lh_LOF-ST_0",
+                  "children": [],
+                  "labelIndex": "25",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_LOF-ST_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Middle Orbitofrontal – Superior Temporal",
+              "children": [
+                {
+                  "name": "lh_MOF-ST_0",
+                  "children": [],
+                  "labelIndex": "12",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_MOF-ST_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Middle Temporal - Supramarginal",
+              "children": [
+                {
+                  "name": "lh_MT-SM_0",
+                  "children": [],
+                  "labelIndex": "72",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_MT-SM_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Middle Temporal – Superior Temporal",
+              "children": [
+                {
+                  "name": "lh_MT-ST_0",
+                  "children": [],
+                  "labelIndex": "95",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_MT-ST_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Pars Opercularis - Insula",
+              "children": [
+                {
+                  "name": "lh_Op-Ins_0",
+                  "children": [],
+                  "labelIndex": "27",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_Op-Ins_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Pars Opercularis - Precentral`",
+              "children": [
+                {
+                  "name": "lh_Op-PrC_0",
+                  "children": [],
+                  "labelIndex": "18",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_Op-PrC_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Pars Opercularis – Superior Frontal",
+              "children": [
+                {
+                  "name": "lh_Op-SF_0",
+                  "children": [],
+                  "labelIndex": "42",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_Op-SF_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Pars Orbitalis - Insula",
+              "children": [
+                {
+                  "name": "lh_Or-Ins_0",
+                  "children": [],
+                  "labelIndex": "16",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_Or-Ins_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Postcentral - Insula",
+              "children": [
+                {
+                  "name": "lh_PoC-Ins_0",
+                  "children": [],
+                  "labelIndex": "53",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_PoC-Ins_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Poscentral - Precuneus",
+              "children": [
+                {
+                  "name": "lh_PoCi-PrCu_0",
+                  "children": [],
+                  "labelIndex": "44",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_PoCi-PrCu_0.nii"
+                },
+                {
+                  "name": "lh_PoCi-PrCu_1",
+                  "children": [],
+                  "labelIndex": "45",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_PoCi-PrCu_1.nii"
+                }
+              ]
+            },
+            {
+              "name": "Posterior Cingulate – Rostral Anterior Cingulate",
+              "children": [
+                {
+                  "name": "lh_PoCi-RAC_0",
+                  "children": [],
+                  "labelIndex": "10",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_PoCi-RAC_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Posterior Cingulate – Superior Frontal",
+              "children": [
+                {
+                  "name": "lh_PoCi-SF_0",
+                  "children": [],
+                  "labelIndex": "79",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_PoCi-SF_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Poscentral - Precentral",
+              "children": [
+                {
+                  "name": "lh_PoC-PrC_0",
+                  "children": [],
+                  "labelIndex": "1",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_PoC-PrC_0.nii"
+                },
+                {
+                  "name": "lh_PoC-PrC_1",
+                  "children": [],
+                  "labelIndex": "3",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_PoC-PrC_1.nii"
+                },
+                {
+                  "name": "lh_PoC-PrC_2",
+                  "children": [],
+                  "labelIndex": "5",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_PoC-PrC_2.nii"
+                },
+                {
+                  "name": "lh_PoC-PrC_3",
+                  "children": [],
+                  "labelIndex": "7",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_PoC-PrC_3.nii"
+                }
+              ]
+            },
+            {
+              "name": "Poscentral - Supramarginal",
+              "children": [
+                {
+                  "name": "lh_PoC-SM_0",
+                  "children": [],
+                  "labelIndex": "74",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_PoC-SM_0.nii"
+                },
+                {
+                  "name": "lh_PoC-SM_1",
+                  "children": [],
+                  "labelIndex": "76",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_PoC-SM_1.nii"
+                }
+              ]
+            },
+            {
+              "name": "Precentral - Insula",
+              "children": [
+                {
+                  "name": "lh_PrC-Ins_0",
+                  "children": [],
+                  "labelIndex": "66",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_PrC-Ins_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Precentral – Superior Frontal",
+              "children": [
+                {
+                  "name": "lh_PrC-SF_0",
+                  "children": [],
+                  "labelIndex": "20",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_PrC-SF_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Precentral - Supramarginal",
+              "children": [
+                {
+                  "name": "lh_PrC-SM_0",
+                  "children": [],
+                  "labelIndex": "15",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_PrC-SM_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Rostral Anterior Cingulate – Superior Frontal",
+              "children": [
+                {
+                  "name": "lh_RAC-SF_1",
+                  "children": [],
+                  "labelIndex": "78",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_RAC-SF_1.nii"
+                }
+              ]
+            },
+            {
+              "name": "Rostral Middle Frontal – Superior Frontal",
+              "children": [
+                {
+                  "name": "lh_RMF-SF_0",
+                  "children": [],
+                  "labelIndex": "21",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_RMF-SF_0.nii"
+                },
+                {
+                  "name": "lh_RMF-SF_1",
+                  "children": [],
+                  "labelIndex": "23",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_RMF-SF_1.nii"
+                }
+              ]
+            },
+            {
+              "name": "Supramarginal - Insula",
+              "children": [
+                {
+                  "name": "lh_SM-Ins_0",
+                  "children": [],
+                  "labelIndex": "57",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_SM-Ins_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Superior Parietal - Supramarginal",
+              "children": [
+                {
+                  "name": "lh_SP-SM_0",
+                  "children": [],
+                  "labelIndex": "93",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_SP-SM_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Superior Temporal - Insula",
+              "children": [
+                {
+                  "name": "lh_ST-Ins_0",
+                  "children": [],
+                  "labelIndex": "92",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_ST-Ins_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Superior Temporal – Transverse Temporal",
+              "children": [
+                {
+                  "name": "lh_ST-TT_0",
+                  "children": [],
+                  "labelIndex": "35",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_ST-TT_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Pars Triangularis - Insula",
+              "children": [
+                {
+                  "name": "lh_Tr-Ins_0",
+                  "children": [],
+                  "labelIndex": "64",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_Tr-Ins_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Pars Triangularis – Superior Frontal",
+              "children": [
+                {
+                  "name": "lh_Tr-SF_0",
+                  "children": [],
+                  "labelIndex": "55",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/lh_Tr-SF_0.nii"
+                }
+              ]
+            }
+          ]
+        },
+        {
+          "name": "Right Hemisphere",
+          "children": [
+            {
+              "name": "Caudal Middle Frontal – Posterior Cingulate",
+              "children": [
+                {
+                  "name": "rh_CAC-PoCi_0",
+                  "children": [],
+                  "labelIndex": "8",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_CAC-PoCi_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Caudal Middle Frontal - Precuneus",
+              "children": [
+                {
+                  "name": "rh_CAC-PrCu_0",
+                  "children": [],
+                  "labelIndex": "39",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_CAC-PrCu_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Caudal Middle Frontal - Precentral",
+              "children": [
+                {
+                  "name": "rh_CMF-PrC_0",
+                  "children": [],
+                  "labelIndex": "98",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_CMF-PrC_0.nii"
+                },
+                {
+                  "name": "rh_CMF-PrC_1",
+                  "children": [],
+                  "labelIndex": "100",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_CMF-PrC_1.nii"
+                }
+              ]
+            },
+            {
+              "name": "Caudal Middle Frontal – Rostral Middle Frontal",
+              "children": [
+                {
+                  "name": "rh_CMF-RMF_0",
+                  "children": [],
+                  "labelIndex": "50",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_CMF-RMF_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Caudal Middle Frontal – Superior Frontal",
+              "children": [
+                {
+                  "name": "rh_CMF-SF_0",
+                  "children": [],
+                  "labelIndex": "69",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_CMF-SF_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Caudal Middle Frontal – Superior Frontal\t\t",
+              "children": [
+                {
+                  "name": "rh_CMF-SF_1",
+                  "children": [],
+                  "labelIndex": "70",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_CMF-SF_1.nii"
+                }
+              ]
+            },
+            {
+              "name": "Cuneus - Lingual",
+              "children": [
+                {
+                  "name": "rh_Cu-Li_0",
+                  "children": [],
+                  "labelIndex": "61",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_Cu-Li_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Fusiform – Lateral Occipital",
+              "children": [
+                {
+                  "name": "rh_Fu-LO_1",
+                  "children": [],
+                  "labelIndex": "52",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_Fu-LO_1.nii"
+                }
+              ]
+            },
+            {
+              "name": "Isthmus Cingulate - Precuneus",
+              "children": [
+                {
+                  "name": "rh_IC-PrCu_0",
+                  "children": [],
+                  "labelIndex": "41",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_IC-PrCu_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Inferior Parietal – Inferior Temporal ",
+              "children": [
+                {
+                  "name": "rh_IP-IT_0",
+                  "children": [],
+                  "labelIndex": "60",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_IP-IT_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Inferior Parietal – Lateral Occipital",
+              "children": [
+                {
+                  "name": "rh_IP-LO_0",
+                  "children": [],
+                  "labelIndex": "85",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_IP-LO_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Inferior Parietal – Middle Temporal",
+              "children": [
+                {
+                  "name": "rh_IP-MT_0",
+                  "children": [],
+                  "labelIndex": "34",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_IP-MT_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Inferior Parietal - Supramarginal",
+              "children": [
+                {
+                  "name": "rh_IP-SM_0",
+                  "children": [],
+                  "labelIndex": "81",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_IP-SM_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Inferior Parietal – Superior Parietal",
+              "children": [
+                {
+                  "name": "rh_IP-SP_0",
+                  "children": [],
+                  "labelIndex": "83",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_IP-SP_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Inferior Temporal – Middle Temporal",
+              "children": [
+                {
+                  "name": "rh_IT-MT_1",
+                  "children": [],
+                  "labelIndex": "90",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_IT-MT_1.nii"
+                },
+                {
+                  "name": "rh_IT-MT_2",
+                  "children": [],
+                  "labelIndex": "91",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_IT-MT_2.nii"
+                }
+              ]
+            },
+            {
+              "name": "Lateral Orbitofrontal – Middle Orbitofrontal",
+              "children": [
+                {
+                  "name": "rh_LOF-MOF_0",
+                  "children": [],
+                  "labelIndex": "71",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_LOF-MOF_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Lateral Orbitofrontal – Rostral Middle Frontal",
+              "children": [
+                {
+                  "name": "rh_LOF-RMF_0",
+                  "children": [],
+                  "labelIndex": "30",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_LOF-RMF_0.nii"
+                },
+                {
+                  "name": "rh_LOF-RMF_1",
+                  "children": [],
+                  "labelIndex": "32",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_LOF-RMF_1.nii"
+                }
+              ]
+            },
+            {
+              "name": "Lateral Orbitofrontal – Superior Temporal",
+              "children": [
+                {
+                  "name": "rh_LOF-ST_0",
+                  "children": [],
+                  "labelIndex": "26",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_LOF-ST_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Lateral Orbitofrontal – Superior Parietal",
+              "children": [
+                {
+                  "name": "rh_LO-SP_0",
+                  "children": [],
+                  "labelIndex": "54",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_LO-SP_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Middle Orbitofrontal – Superior Temporal",
+              "children": [
+                {
+                  "name": "rh_MOF-ST_0",
+                  "children": [],
+                  "labelIndex": "13",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_MOF-ST_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Middle Temporal - Supramarginal",
+              "children": [
+                {
+                  "name": "rh_MT-SM_0",
+                  "children": [],
+                  "labelIndex": "73",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_MT-SM_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Middle Temporal – Superior Temporal",
+              "children": [
+                {
+                  "name": "rh_MT-ST_0",
+                  "children": [],
+                  "labelIndex": "96",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_MT-ST_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Pars Opercularis - Insula",
+              "children": [
+                {
+                  "name": "rh_Op-Ins_0",
+                  "children": [],
+                  "labelIndex": "28",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_Op-Ins_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Pars Opercularis - Precentral",
+              "children": [
+                {
+                  "name": "rh_Op-PrC_0",
+                  "children": [],
+                  "labelIndex": "19",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_Op-PrC_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Pars Opercularis – Superior Frontal",
+              "children": [
+                {
+                  "name": "rh_Op-SF_0",
+                  "children": [],
+                  "labelIndex": "43",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_Op-SF_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Pars Opercularis – Pars Triangularis",
+              "children": [
+                {
+                  "name": "rh_Op-Tr_0",
+                  "children": [],
+                  "labelIndex": "63",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_Op-Tr_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Pars Orbitalis - Insula",
+              "children": [
+                {
+                  "name": "rh_Or-Ins_0",
+                  "children": [],
+                  "labelIndex": "17",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_Or-Ins_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Posterior Cingulate - Precuneus",
+              "children": [
+                {
+                  "name": "rh_PoCi-PrCu_1",
+                  "children": [],
+                  "labelIndex": "46",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_PoCi-PrCu_1.nii"
+                },
+                {
+                  "name": "rh_PoCi-PrCu_2",
+                  "children": [],
+                  "labelIndex": "47",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_PoCi-PrCu_2.nii"
+                }
+              ]
+            },
+            {
+              "name": "Posterior Cingulate – Rostral Anterior Cingulate",
+              "children": [
+                {
+                  "name": "rh_PoCi-RAC_0",
+                  "children": [],
+                  "labelIndex": "11",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_PoCi-RAC_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Poscentral - Precentral",
+              "children": [
+                {
+                  "name": "rh_PoC-PrC_0",
+                  "children": [],
+                  "labelIndex": "2",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_PoC-PrC_0.nii"
+                },
+                {
+                  "name": "rh_PoC-PrC_1",
+                  "children": [],
+                  "labelIndex": "4",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_PoC-PrC_1.nii"
+                },
+                {
+                  "name": "rh_PoC-PrC_2",
+                  "children": [],
+                  "labelIndex": "6",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_PoC-PrC_2.nii"
+                }
+              ]
+            },
+            {
+              "name": "Postcentral - Supramarginal",
+              "children": [
+                {
+                  "name": "rh_PoC-SM_0",
+                  "children": [],
+                  "labelIndex": "75",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_PoC-SM_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Postcentral – Superior Parietal",
+              "children": [
+                {
+                  "name": "rh_PoC-SP_0",
+                  "children": [],
+                  "labelIndex": "87",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_PoC-SP_0.nii"
+                },
+                {
+                  "name": "rh_PoC-SP_1",
+                  "children": [],
+                  "labelIndex": "88",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_PoC-SP_1.nii"
+                }
+              ]
+            },
+            {
+              "name": "Precentral - Insula",
+              "children": [
+                {
+                  "name": "rh_PrC-Ins_0",
+                  "children": [],
+                  "labelIndex": "67",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_PrC-Ins_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Precentral - Supramarginal\t",
+              "children": [
+                {
+                  "name": "rh_PrC-SM_0",
+                  "children": [],
+                  "labelIndex": "14",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_PrC-SM_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Precentral – Superior Parietal",
+              "children": [
+                {
+                  "name": "rh_PrC-SP_0",
+                  "children": [],
+                  "labelIndex": "9",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_PrC-SP_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Rostral Anterior Cingulate",
+              "children": [
+                {
+                  "name": "rh_RAC-SF_0",
+                  "children": [],
+                  "labelIndex": "77",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_RAC-SF_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Rostral Middle Frontal – Superior Frontal",
+              "children": [
+                {
+                  "name": "rh_RMF-SF_0",
+                  "children": [],
+                  "labelIndex": "22",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_RMF-SF_0.nii"
+                },
+                {
+                  "name": "rh_RMF-SF_1",
+                  "children": [],
+                  "labelIndex": "24",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_RMF-SF_1.nii"
+                }
+              ]
+            },
+            {
+              "name": "Supramarginal - Insula",
+              "children": [
+                {
+                  "name": "rh_SM-Ins_0",
+                  "children": [],
+                  "labelIndex": "58",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_SM-Ins_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Superior Parietal - Supramarginal",
+              "children": [
+                {
+                  "name": "rh_SP-SM_0",
+                  "children": [],
+                  "labelIndex": "94",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_SP-SM_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Superior Temporal – Transverse Temporal",
+              "children": [
+                {
+                  "name": "rh_ST-TT_0",
+                  "children": [],
+                  "labelIndex": "36",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_ST-TT_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Pars Triangularis - Insula",
+              "children": [
+                {
+                  "name": "rh_Tr-Ins_0",
+                  "children": [],
+                  "labelIndex": "65",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_Tr-Ins_0.nii"
+                }
+              ]
+            },
+            {
+              "name": "Pars Triangularis – Superior Frontal",
+              "children": [
+                {
+                  "name": "rh_Tr-SF_0",
+                  "children": [],
+                  "labelIndex": "56",
+                  "PMapURL": "https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/ProbabilityMaps/rh_Tr-SF_0.nii"
+                }
+              ]
+            }
+          ]
+        }
+      ]
+    }
+  ],
+  "properties": {
+    "name": "MNI 152",
+    "description": "An unbiased non-linear average of multiple subjects from the MNI152 database, which provides high-spatial resolution and signal-to-noise while not being biased towards a single brain (Fonov et al., 2011). This template space is widely used as a reference space in neuroimaging. HBP provides the JuBrain probabilistic cytoarchitectonic atlas (Amunts/Zilles, 2015) as well as a probabilistic atlas of large fibre bundles (Guevara, Mangin et al., 2017) in this space."
+  }
+}
\ No newline at end of file
diff --git a/src/res/ext/MNI152NehubaConfig.json b/src/res/ext/MNI152NehubaConfig.json
index b33f9f3d308b0024abf841c774cc1f4b7f2e8e0e..832c4069c4e58766ddfee0262350cbb0c59b3793 100644
--- a/src/res/ext/MNI152NehubaConfig.json
+++ b/src/res/ext/MNI152NehubaConfig.json
@@ -1 +1 @@
-{"globals":{"hideNullImageValues":true,"useNehubaLayout":true,"useNehubaMeshLayer":true,"useCustomSegmentColors":true},"zoomWithoutCtrl":true,"hideNeuroglancerUI":true,"rightClickWithCtrl":true,"rotateAtViewCentre":true,"zoomAtViewCentre":true,"enableMeshLoadingControl":true,"layout":{"useNehubaPerspective":{"fixedZoomPerspectiveSlices":{"sliceViewportWidth":300,"sliceViewportHeight":300,"sliceZoom":724698.1843689409,"sliceViewportSizeMultiplier":2},"centerToOrigin":true,"mesh":{"removeBasedOnNavigation":true,"flipRemovedOctant":true,"surfaceParcellation":false},"removePerspectiveSlicesBackground":{"mode":"<","color":[0.1,0.1,0.1,1]},"waitForMesh":false,"drawSubstrates":{"color":[0.5,0.5,1,0.2]},"drawZoomLevels":{"cutOff":150000},"restrictZoomLevel":{"minZoom":2500000,"maxZoom":3500000}}},"dataset":{"imageBackground":[0,0,0,1],"initialNgState":{"showDefaultAnnotations":false,"layers":{"mni152":{"type":"image","visible":true,"source":"precomputed://https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/mni_icbm152_t1_tal_nlin_asym_09c_masked","transform":[[1,0,0,-96500000],[0,1,0,-132500000],[0,0,1,-78500000],[0,0,0,1]]},"fibre bundle long":{"type":"segmentation","source":"precomputed://https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/long-bundles_maxprob","transform":[[1,0,0,-96500000],[0,1,0,-132500000],[0,0,1,-78500000],[0,0,0,1]]},"fibre bundle short":{"visible":false,"type":"segmentation","source":"precomputed://https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/short-bundles_maxprob","transform":[[1,0,0,-96500000],[0,1,0,-132500000],[0,0,1,-78500000],[0,0,0,1]]}},"navigation":{"pose":{"position":{"voxelSize":[1000000,1000000,1000000],"voxelCoordinates":[0,-32,0]}},"zoomFactor":450000},"perspectiveOrientation":[-0.2753947079181671,0.6631333827972412,-0.6360703706741333,0.2825356423854828],"perspectiveZoom":3000000}}}
\ No newline at end of file
+{"globals":{"hideNullImageValues":true,"useNehubaLayout":true,"useNehubaMeshLayer":true,"useCustomSegmentColors":true},"zoomWithoutCtrl":true,"hideNeuroglancerUI":true,"rightClickWithCtrl":true,"rotateAtViewCentre":true,"zoomAtViewCentre":true,"enableMeshLoadingControl":true,"layout":{"useNehubaPerspective":{"fixedZoomPerspectiveSlices":{"sliceViewportWidth":300,"sliceViewportHeight":300,"sliceZoom":724698.1843689409,"sliceViewportSizeMultiplier":2},"centerToOrigin":true,"mesh":{"removeBasedOnNavigation":true,"flipRemovedOctant":true,"surfaceParcellation":false},"removePerspectiveSlicesBackground":{"mode":"<","color":[0.1,0.1,0.1,1]},"waitForMesh":false,"drawSubstrates":{"color":[0.5,0.5,1,0.2]},"drawZoomLevels":{"cutOff":150000},"restrictZoomLevel":{"minZoom":2500000,"maxZoom":3500000}}},"dataset":{"imageBackground":[0,0,0,1],"initialNgState":{"showDefaultAnnotations":false,"layers":{"mni152":{"type":"image","visible":true,"source":"precomputed://https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/mni_icbm152_t1_tal_nlin_asym_09c_masked","transform":[[1,0,0,-96500000],[0,1,0,-132500000],[0,0,1,-78500000],[0,0,0,1]]},"jubrain v17 left":{"type":"segmentation","visible":true,"source":"precomputed://https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/17/icbm152casym/left","transform":[[1,0,0,-96500000],[0,1,0,-132500000],[0,0,1,-78500000],[0,0,0,1]]},"jubrain v17 right":{"type":"segmentation","visible":true,"source":"precomputed://https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/17/icbm152casym/right","transform":[[1,0,0,-96500000],[0,1,0,-132500000],[0,0,1,-78500000],[0,0,0,1]]},"fibre bundle long":{"type":"segmentation","source":"precomputed://https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/long-bundles_maxprob","transform":[[1,0,0,-96500000],[0,1,0,-132500000],[0,0,1,-78500000],[0,0,0,1]]},"fibre bundle short":{"visible":false,"type":"segmentation","source":"precomputed://https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/short-bundles_maxprob","transform":[[1,0,0,-96500000],[0,1,0,-132500000],[0,0,1,-78500000],[0,0,0,1]]}},"navigation":{"pose":{"position":{"voxelSize":[1000000,1000000,1000000],"voxelCoordinates":[0,-32,0]}},"zoomFactor":450000},"perspectiveOrientation":[-0.2753947079181671,0.6631333827972412,-0.6360703706741333,0.2825356423854828],"perspectiveZoom":3000000}}}
\ No newline at end of file
diff --git a/src/res/ext/bigbrain.json b/src/res/ext/bigbrain.json
index 3ba8e8a8441dd516a129a432e3726465455855aa..e0d7fa074009c70a22aa086556cae70e47ca5201 100644
--- a/src/res/ext/bigbrain.json
+++ b/src/res/ext/bigbrain.json
@@ -1,251 +1 @@
-{
-    "name": "Big Brain (Histology)",
-    "type": "template",
-    "species": "Human",
-    "useTheme": "light",
-    "nehubaId": " grey value: ",
-    "nehubaConfigURL": "nehubaConfig/bigbrainNehubaConfig",
-    "parcellations": [
-        {
-            "name": "Grey/White matter",
-            "type": "parcellation",
-            "ngData": null,
-            "ngId": " tissue type: ",
-            "regions": [
-                {
-                    "name": "Grey matter",
-                    "labelIndex": 100,
-                    "rgb": [
-                        200,
-                        200,
-                        200
-                    ],
-                    "children": []
-                },
-                {
-                    "name": "White matter",
-                    "labelIndex": 200,
-                    "rgb": [
-                        255,
-                        255,
-                        255
-                    ],
-                    "children": []
-                }
-            ]
-        },
-        {
-            "name": "Area V1",
-            "type": "parcellation",
-            "visible": false,
-            "ngData": true,
-            "ngId": "v1",
-            "regions": [
-                {
-                    "name": "V1 - Root",
-                    "labelIndex": null,
-                    "children": [
-                        {
-                            "name": "V1 - Area",
-                            "rgb": [
-                                255,
-                                255,
-                                0
-                            ],
-                            "labelIndex": 1,
-                            "children": [],
-                            "position": [
-                                73858340,
-                                19562848,
-                                73433440
-                            ]
-                        }
-                    ]
-                }
-            ]
-        },
-        {
-            "name": "Area V2",
-            "type": "parcellation",
-            "visible": false,
-            "ngData": true,
-            "ngId": "v2",
-            "regions": [
-                {
-                    "name": "V2 - Root",
-                    "labelIndex": null,
-                    "children": [
-                        {
-                            "name": "V2 - Area",
-                            "rgb": [
-                                0,
-                                0,
-                                255
-                            ],
-                            "labelIndex": 1,
-                            "children": [],
-                            "position": [
-                                70941950,
-                                15307920,
-                                74208344
-                            ]
-                        }
-                    ]
-                }
-            ]
-        },
-        {
-            "name": "interpolated",
-            "type": "parcellation",
-            "visible": false,
-            "ngData": true,
-            "ngId": "interpolated",
-            "regions": [
-                {
-                    "name": "Area 6d1 (PreG)",
-                    "labelIndex": 19,
-                    "children": []
-                },
-                {
-                    "name": "Area 6d2 (PreG)",
-                    "labelIndex": 20,
-                    "children": []
-                },
-                {
-                    "name": "Area 6d3 (SFS)",
-                    "labelIndex": 21,
-                    "children": []
-                },
-                {
-                    "name": "Area TE 1.0 (HESCHL)",
-                    "labelIndex": 29,
-                    "children": []
-                },
-                {
-                    "name": "Area TE 1.1 (HESCHL)",
-                    "labelIndex": 30,
-                    "children": []
-                },
-                {
-                    "name": "Area TE 1.2 (HESCHL)",
-                    "labelIndex": 31,
-                    "children": []
-                },
-                {
-                    "name": "Area TE 3 (STG)",
-                    "labelIndex": 34,
-                    "children": []
-                },
-                {
-                    "name": "Entorhinal Cortex",
-                    "labelIndex": 82,
-                    "children": []
-                },
-                {
-                    "name": "HATA (Hippocampus)",
-                    "labelIndex": 84,
-                    "children": []
-                },
-                {
-                    "name": "Area ifj1 (IFS/PreS)",
-                    "labelIndex": 104,
-                    "children": []
-                },
-                {
-                    "name": "Area ifj2 (IFS/PreS)",
-                    "labelIndex": 105,
-                    "children": []
-                },
-                {
-                    "name": "Area ifs1 (IFS)",
-                    "labelIndex": 106,
-                    "children": []
-                },
-                {
-                    "name": "Area ifs2 (IFS)",
-                    "labelIndex": 107,
-                    "children": []
-                },
-                {
-                    "name": "Area ifs3 (IFS)",
-                    "labelIndex": 108,
-                    "children": []
-                },
-                {
-                    "name": "Area ifs4 (IFS)",
-                    "labelIndex": 109,
-                    "children": []
-                },
-                {
-                    "name": "Area hIP4 (IPS)",
-                    "labelIndex": 110,
-                    "children": []
-                },
-                {
-                    "name": "Area hIP5 (IPS)",
-                    "labelIndex": 111,
-                    "children": []
-                },
-                {
-                    "name": "Area hIP6 (IPS)",
-                    "labelIndex": 112,
-                    "children": []
-                },
-                {
-                    "name": "Area hIP7 (IPS)",
-                    "labelIndex": 113,
-                    "children": []
-                },
-                {
-                    "name": "Area hIP8 (IPS)",
-                    "labelIndex": 114,
-                    "children": []
-                },
-                {
-                    "name": "Area hOc6 (POS)",
-                    "labelIndex": 115,
-                    "children": []
-                },
-                {
-                    "name": "Area hPO1 (POS)",
-                    "labelIndex": 116,
-                    "children": []
-                },
-                {
-                    "name": "Area 6ma (preSMA, mesial SFG)",
-                    "labelIndex": 117,
-                    "children": []
-                },
-                {
-                    "name": "Area 6mp (SMA, mesial SFG)",
-                    "labelIndex": 118,
-                    "children": []
-                },
-                {
-                    "name": "Area STS1 (STS)",
-                    "labelIndex": 119,
-                    "children": []
-                },
-                {
-                    "name": "Area STS2 (STS)",
-                    "labelIndex": 120,
-                    "children": []
-                }
-            ]
-        }
-    ],
-    "properties": {
-        "name": "Big Brain (Histology)",
-        "description": "An ultrahigh resolution 3D model of a complete human brain (20 micron isotropic resolution), developed in a collaborative effort between the teams of Dr. Katrin Amunts and Dr. Karl Zilles (Forschungszentrum Jülich) and Dr. Alan Evans (Montreal Neurological Institute). Based on 7404 digitized histological brain sections, this so far unique reconstruction provides unprecedented neuroanatomical insight. The dataset contains a complete gray and white matter classification with corresponding surface reconstructions",
-        "publications": [
-            {
-                "doi": "https://doi.org/10.1126/science.1235381",
-                "citation": "K. Amunts, A. Evans et al.: BigBrain: An Ultrahigh-Resolution 3D Human Brain Model. Science 2013"
-            },
-            {
-                "doi": "http://bigbrain.loris.ca",
-                "citation": "http://bigbrain.loris.ca"
-            }
-        ]
-    }
-}
\ No newline at end of file
+{"name":"Big Brain (Histology)","type":"template","species":"Human","useTheme":"light","nehubaId":" grey value: ","nehubaConfigURL":"nehubaConfig/bigbrainNehubaConfig","parcellations":[{"name":"Grey/White matter","type":"parcellation","ngData":null,"ngId":" tissue type: ","regions":[{"name":"Grey matter","labelIndex":100,"rgb":[200,200,200],"children":[]},{"name":"White matter","labelIndex":200,"rgb":[255,255,255],"children":[]}]},{"name":"Cytoarchitectonic Maps","properties":{"description":"This dataset contains cytoarchitectonic maps of brain regions in the BigBrain space [Amunts et al. 2013]. The mappings were created using the semi-automatic method presented in Schleicher et al. 1999, based on coronal histological sections on 1 micron resolution. Mappings are available on approximately every 100th section for each region. They were then transformed to the sections of the 3D reconstructed BigBrain space using the transformations used in Amunts et al. 2013, which were provided by Claude Lepage (McGill). Only a few cytoarchitectonic maps in the Big Brain are currently **fully mapped**, based on a workflow that automatically fills in missing sections based on expert annotations. Other 3D maps are available in a preliminary version, in which the expert annotations in the Big Brain space were simply **interpolated**."},"regions":[{"name":"telencephalon","children":[{"name":"cerebral cortex","children":[{"name":"temporal lobe","children":[{"name":"Heschl's gyrus","children":[{"name":"Area TE 1.0 (HESCHL)","ngId":"interpolated","status":"interpolated","labelIndex":4,"rgb":[0,146,63],"children":[],"position":[4363384,836825,4887117]},{"name":"Area TE 1.1 (HESCHL)","ngId":"interpolated","status":"interpolated","labelIndex":5,"rgb":[132,194,37],"children":[],"position":[-11860944,-3841071,6062770]},{"name":"Area TE 1.2 (HESCHL)","ngId":"interpolated","status":"interpolated","labelIndex":6,"rgb":[117,197,240],"children":[],"position":[19474750,7932494,3511322]}]},{"name":"superior temporal gyrus","children":[{"name":"Area TE 3 (STG)","ngId":"interpolated","status":"interpolated","labelIndex":7,"rgb":[231,120,23],"children":[],"position":[3479937,2702958,3819372]}]},{"name":"superior temporal sulcus","children":[{"name":"Area STS1 (STS)","ngId":"interpolated","status":"interpolated","labelIndex":24,"children":[],"position":[-3185950,3919067,-8346900]},{"name":"Area STS2 (STS)","ngId":"interpolated","status":"interpolated","labelIndex":25,"children":[],"position":[8584703,6170348,-11790982]}]}]},{"name":"frontal lobe","children":[{"name":"precentral gyrus","children":[{"name":"Area 6d1 (PreCG)","ngId":"interpolated","status":"interpolated","labelIndex":1,"children":[],"position":[-10496194,13643679,42286812]},{"name":"Area 6d2 (PreCG)","ngId":"interpolated","status":"interpolated","labelIndex":2,"children":[],"position":[-9255504,27432072,43445689]},{"name":"Area 6ma (preSMA, mesial SFG)","ngId":"interpolated","status":"interpolated","labelIndex":22,"children":[],"position":[-9349145,27783957,38734627]},{"name":"Area 6mp (SMA, mesial SFG)","ngId":"interpolated","status":"interpolated","labelIndex":23,"children":[],"position":[-11566856,15797100,42172031]}]},{"name":"superior frontal sulcus","children":[{"name":"Area 6d3 (SFS)","ngId":"interpolated","status":"interpolated","labelIndex":3,"children":[],"position":[-8973604,28973429,35691250]}]},{"name":"inferior frontal sulcus","children":[{"name":"Area ifj1 (IFS/PreCS)","ngId":"interpolated","status":"interpolated","labelIndex":9,"children":[],"position":[-7394436,33562602,19086364]},{"name":"Area ifj2 (IFS/PreCS)","ngId":"interpolated","status":"interpolated","labelIndex":10,"children":[],"position":[-26787581,30975651,16855869]},{"name":"Area ifs1 (IFS)","ngId":"interpolated","status":"interpolated","labelIndex":11,"children":[],"position":[-4044465,40212624,17596493]},{"name":"Area ifs2 (IFS)","ngId":"interpolated","status":"interpolated","labelIndex":12,"children":[],"position":[6807265,40114241,18114896]},{"name":"Area ifs3 (IFS)","ngId":"interpolated","status":"interpolated","labelIndex":13,"children":[],"position":[-2260366,37593844,19960703]},{"name":"Area ifs4 (IFS)","ngId":"interpolated","status":"interpolated","labelIndex":14,"children":[],"position":[-3440565,37895181,17378851]}]}]},{"name":"limbic lobe","children":[{"name":"hippocampal formation","children":[{"name":"Entorhinal Cortex","ngId":"interpolated","status":"interpolated","labelIndex":8,"rgb":[153,153,255],"children":[],"position":[4800238,8859989,-24872710]}]}]},{"name":"parietal lobe","children":[{"name":"intraparietal sulcus","children":[{"name":"Area hIP4 (IPS)","ngId":"interpolated","status":"interpolated","labelIndex":15,"children":[],"position":[-5671181,-44793673,21692004]},{"name":"Area hIP5 (IPS)","ngId":"interpolated","status":"interpolated","labelIndex":16,"children":[],"position":[-13546343,-38230309,26252296]},{"name":"Area hIP6 (IPS)","ngId":"interpolated","status":"interpolated","labelIndex":17,"children":[],"position":[-3723403,-33064127,32569712]},{"name":"Area hIP7 (IPS)","ngId":"interpolated","status":"interpolated","labelIndex":18,"children":[],"position":[-5344588,-43655931,24702722]}]},{"name":"parieto-occipital sulcus","children":[{"name":"Area hPO1 (POS)","ngId":"interpolated","status":"interpolated","labelIndex":21,"children":[],"position":[-4455614,-44097379,28855803]}]}]},{"name":"occipital lobe","children":[{"name":"occipital cortex","children":[{"name":"Area hOc1 (V1, 17, CalcS)","ngId":"v1","status":"fully mapped","labelIndex":1,"position":[3187941,-50436479,3430986],"rgb":[250,30,250],"children":[]},{"name":"Area hOc2 (V2, 18)","ngId":"v2","status":"fully mapped","labelIndex":1,"position":[311768,-54882875,4142912],"rgb":[155,100,250],"children":[]},{"name":"dorsal occipital cortex","children":[{"name":"Area hOc6 (POS)","ngId":"interpolated","status":"interpolated","labelIndex":20,"children":[],"position":[-4399437,-36706104,15113374]}]}]}]}]}]}]},{"name":"BigBrain Cortical Layers Segmentation","ngId":"cortical layers","properties":{"description":"The cerebral isocortex has six cytoarchitectonic layers that vary depending on cortical area and local morphology. This datasets provides a 3D segmentation of all cortical and laminar surfaces in the BigBrain, a high-resolution, 3D histological model of the human brain. The segmentation has been computed automatically based on histological intensities along 3D cortical profiles which were sampled between the pial and white matter throughout the dataset. These cortical profiles were segmented into layers using a convolutional neural network. Training profiles were generated from examples of manually segmented layers on cortical regions from 2D histological sections of the BigBrain. From the segmented intensity profiles, surface meshes and voxel masks of all six cortical layers in the space of the Big Brain have been computed.","publications":[{"doi":"https://doi.org/10.1101/580597","citation":"Konrad Wagstyl, Stéphanie Larocque, Guillem Cucurull, Claude Lepage, Joseph Paul Cohen, Sebastian Bludau, Nicola Palomero-Gallagher, Thomas Funck, Hannah Spitzer, Timo Dicksheid, Paul C Fletcher, Adriana Romero, Karl Zilles, Katrin Amunts, Yoshua Bengio, Alan C. Evans (2019) Automated segmentation of cortical layers in BigBrain reveals divergent cortical and laminar thickness gradients in sensory and motor cortices. bioRxiv 580597; doi: https://doi.org/10.1101/580597"}]},"regions":[{"name":"telencephalon","children":[{"name":"cortical layer 1","labelIndex":1,"rgb":[128,128,0],"children":[]},{"name":"cortical layer 2","labelIndex":2,"rgb":[250,190,190],"children":[]},{"name":"cortical layer 3","labelIndex":3,"rgb":[255,215,180],"children":[]},{"name":"cortical layer 4","labelIndex":4,"rgb":[255,250,200],"children":[]},{"name":"cortical layer 5","labelIndex":5,"rgb":[0,128,128],"children":[]},{"name":"cortical layer 6","labelIndex":6,"rgb":[230,190,255],"children":[]},{"name":"non-cortical structures","labelIndex":7,"rgb":[255,255,255],"children":[]}]}]}],"properties":{"name":"Big Brain (Histology)","description":"A microscopic resolution 3D model of a complete human brain, based on a 3D reconstruction from 7404 digitized histological brain sections (Amunts, Evans et al., Science 2013). The BigBrain model provides a highly detailed anatomical reference space which resolves individual cortical layers and large cell bodies. Maps of cytoarchitectonic areas (Amunts et al.) and cortical layers (Wagstyl et al.) are available.","publications":[{"doi":"https://doi.org/10.1126/science.1235381","citation":"K. Amunts, A. Evans et al.: BigBrain: An Ultrahigh-Resolution 3D Human Brain Model. Science 2013"},{"doi":"http://bigbrain.loris.ca","citation":"http://bigbrain.loris.ca"}]}}
\ No newline at end of file
diff --git a/src/res/ext/bigbrainNehubaConfig.json b/src/res/ext/bigbrainNehubaConfig.json
index 8a5e639eed9925c906f0caffed6fb2a14f2efc45..185ac5077ab33ef3004edf4e326602aefa446020 100644
--- a/src/res/ext/bigbrainNehubaConfig.json
+++ b/src/res/ext/bigbrainNehubaConfig.json
@@ -1,302 +1 @@
-{
-    "configName": "",
-    "globals": {
-        "hideNullImageValues": true,
-        "useNehubaLayout": {
-            "keepDefaultLayouts": false
-        },
-        "useNehubaMeshLayer": true,
-        "rightClickWithCtrlGlobal": false,
-        "zoomWithoutCtrlGlobal": false,
-        "useCustomSegmentColors": true
-    },
-    "zoomWithoutCtrl": true,
-    "hideNeuroglancerUI": true,
-    "rightClickWithCtrl": true,
-    "rotateAtViewCentre": true,
-    "enableMeshLoadingControl": true,
-    "zoomAtViewCentre": true,
-    "restrictUserNavigation": true,
-    "disableSegmentSelection": false,
-    "dataset": {
-        "imageBackground": [
-            1,
-            1,
-            1,
-            1
-        ],
-        "initialNgState": {
-            "showDefaultAnnotations": false,
-            "layers": {
-                " grey value: ": {
-                    "type": "image",
-                    "source": "precomputed://https://neuroglancer.humanbrainproject.org/precomputed/BigBrainRelease.2015/8bit",
-                    "transform": [
-                        [
-                            1,
-                            0,
-                            0,
-                            -70677184
-                        ],
-                        [
-                            0,
-                            1,
-                            0,
-                            -70010000
-                        ],
-                        [
-                            0,
-                            0,
-                            1,
-                            -58788284
-                        ],
-                        [
-                            0,
-                            0,
-                            0,
-                            1
-                        ]
-                    ]
-                },
-                " tissue type: ": {
-                    "type": "segmentation",
-                    "source": "precomputed://https://neuroglancer.humanbrainproject.org/precomputed/BigBrainRelease.2015/classif",
-                    "segments": [
-                        "0"
-                    ],
-                    "selectedAlpha": 0,
-                    "notSelectedAlpha": 0,
-                    "transform": [
-                        [
-                            1,
-                            0,
-                            0,
-                            -70666600
-                        ],
-                        [
-                            0,
-                            1,
-                            0,
-                            -72910000
-                        ],
-                        [
-                            0,
-                            0,
-                            1,
-                            -58777700
-                        ],
-                        [
-                            0,
-                            0,
-                            0,
-                            1
-                        ]
-                    ]
-                },
-                "v1": {
-                    "type": "segmentation",
-                    "source": "precomputed://https://neuroglancer-dev.humanbrainproject.org/precomputed/BigBrainRelease.2015/2019_05_01_v1",
-                    "segments": [
-                        "0"
-                    ],
-                    "selectedAlpha": 0.45,
-                    "notSelectedAlpha": 0,
-                    "transform": [
-                        [
-                            1,
-                            0,
-                            0,
-                            -70677184
-                        ],
-                        [
-                            0,
-                            1,
-                            0,
-                            -69390000
-                        ],
-                        [
-                            0,
-                            0,
-                            1,
-                            -58788284
-                        ],
-                        [
-                            0,
-                            0,
-                            0,
-                            1
-                        ]
-                    ]
-                },
-                "v2": {
-                    "type": "segmentation",
-                    "source": "precomputed://https://neuroglancer-dev.humanbrainproject.org/precomputed/BigBrainRelease.2015/2019_05_01_v2",
-                    "segments": [
-                        "0"
-                    ],
-                    "selectedAlpha": 0.45,
-                    "notSelectedAlpha": 0,
-                    "transform": [
-                        [
-                            1,
-                            0,
-                            0,
-                            -70677184
-                        ],
-                        [
-                            0,
-                            1,
-                            0,
-                            -69870000
-                        ],
-                        [
-                            0,
-                            0,
-                            1,
-                            -58788284
-                        ],
-                        [
-                            0,
-                            0,
-                            0,
-                            1
-                        ]
-                    ]
-                },
-                "interpolated": {
-                    "type": "segmentation",
-                    "source": "precomputed://https://neuroglancer-dev.humanbrainproject.org/precomputed/BigBrainRelease.2015/2019_05_22_interpolated_areas",
-                    "segments": [
-                        "0"
-                    ],
-                    "selectedAlpha": 0.45,
-                    "notSelectedAlpha": 0,
-                    "transform": [
-                        [
-                            1,
-                            0,
-                            0,
-                            -70677184
-                        ],
-                        [
-                            0,
-                            1,
-                            0,
-                            -51990000
-                        ],
-                        [
-                            0,
-                            0,
-                            1,
-                            -58788284
-                        ],
-                        [
-                            0,
-                            0,
-                            0,
-                            1
-                        ]
-                    ]
-                }
-            },
-            "navigation": {
-                "pose": {
-                    "position": {
-                        "voxelSize": [
-                            21166.666015625,
-                            20000,
-                            21166.666015625
-                        ],
-                        "voxelCoordinates": [
-                            -21.8844051361084,
-                            16.288618087768555,
-                            28.418994903564453
-                        ]
-                    }
-                },
-                "zoomFactor": 350000
-            },
-            "perspectiveOrientation": [
-                0.3140767216682434,
-                -0.7418519854545593,
-                0.4988985061645508,
-                -0.3195493221282959
-            ],
-            "perspectiveZoom": 1922235.5293810747
-        }
-    },
-    "layout": {
-        "views": "hbp-neuro",
-        "planarSlicesBackground": [
-            1,
-            1,
-            1,
-            1
-        ],
-        "useNehubaPerspective": {
-            "enableShiftDrag": false,
-            "doNotRestrictUserNavigation": false,
-            "perspectiveSlicesBackground": [
-                1,
-                1,
-                1,
-                1
-            ],
-            "removePerspectiveSlicesBackground": {
-                "color": [
-                    1,
-                    1,
-                    1,
-                    1
-                ],
-                "mode": "=="
-            },
-            "perspectiveBackground": [
-                1,
-                1,
-                1,
-                1
-            ],
-            "fixedZoomPerspectiveSlices": {
-                "sliceViewportWidth": 300,
-                "sliceViewportHeight": 300,
-                "sliceZoom": 563818.3562426177,
-                "sliceViewportSizeMultiplier": 2
-            },
-            "mesh": {
-                "backFaceColor": [
-                    1,
-                    1,
-                    1,
-                    1
-                ],
-                "removeBasedOnNavigation": true,
-                "flipRemovedOctant": true
-            },
-            "centerToOrigin": true,
-            "drawSubstrates": {
-                "color": [
-                    0,
-                    0,
-                    0.5,
-                    0.15
-                ]
-            },
-            "drawZoomLevels": {
-                "cutOff": 200000,
-                "color": [
-                    0.5,
-                    0,
-                    0,
-                    0.15
-                ]
-            },
-            "hideImages": false,
-            "waitForMesh": true,
-            "restrictZoomLevel": {
-                "minZoom": 1200000,
-                "maxZoom": 3500000
-            }
-        }
-    }
-}
\ No newline at end of file
+{"configName":"","globals":{"hideNullImageValues":true,"useNehubaLayout":{"keepDefaultLayouts":false},"useNehubaMeshLayer":true,"rightClickWithCtrlGlobal":false,"zoomWithoutCtrlGlobal":false,"useCustomSegmentColors":true},"zoomWithoutCtrl":true,"hideNeuroglancerUI":true,"rightClickWithCtrl":true,"rotateAtViewCentre":true,"enableMeshLoadingControl":true,"zoomAtViewCentre":true,"restrictUserNavigation":true,"disableSegmentSelection":false,"dataset":{"imageBackground":[1,1,1,1],"initialNgState":{"showDefaultAnnotations":false,"layers":{" grey value: ":{"type":"image","source":"precomputed://https://neuroglancer.humanbrainproject.org/precomputed/BigBrainRelease.2015/8bit","transform":[[1,0,0,-70677184],[0,1,0,-70010000],[0,0,1,-58788284],[0,0,0,1]]}," tissue type: ":{"type":"segmentation","source":"precomputed://https://neuroglancer.humanbrainproject.org/precomputed/BigBrainRelease.2015/classif","segments":["0"],"selectedAlpha":0,"notSelectedAlpha":0,"transform":[[1,0,0,-70666600],[0,1,0,-72910000],[0,0,1,-58777700],[0,0,0,1]]},"v1":{"type":"segmentation","source":"precomputed://https://neuroglancer-dev.humanbrainproject.org/precomputed/BigBrainRelease.2015/2019_05_01_v1","segments":["0"],"selectedAlpha":0.45,"notSelectedAlpha":0,"transform":[[1,0,0,-70677184],[0,1,0,-69390000],[0,0,1,-58788284],[0,0,0,1]]},"v2":{"type":"segmentation","source":"precomputed://https://neuroglancer-dev.humanbrainproject.org/precomputed/BigBrainRelease.2015/2019_05_01_v2","segments":["0"],"selectedAlpha":0.45,"notSelectedAlpha":0,"transform":[[1,0,0,-70677184],[0,1,0,-69870000],[0,0,1,-58788284],[0,0,0,1]]},"interpolated":{"type":"segmentation","source":"precomputed://https://neuroglancer-dev.humanbrainproject.org/precomputed/BigBrainRelease.2015/2019_05_22_interpolated_areas","segments":["0"],"selectedAlpha":0.45,"notSelectedAlpha":0,"transform":[[1,0,0,-70677184],[0,1,0,-51990000],[0,0,1,-58788284],[0,0,0,1]]},"cortical layers":{"type":"segmentation","source":"precomputed://https://neuroglancer-dev.humanbrainproject.org/precomputed/BigBrainRelease.2015/2019_05_27_cortical_layers","selectedAlpha":0.5,"notSelectedAlpha":0,"transform":[[1,0,0,-70677184],[0,1,0,-70010000],[0,0,1,-58788284],[0,0,0,1]]}},"navigation":{"pose":{"position":{"voxelSize":[21166.666015625,20000,21166.666015625],"voxelCoordinates":[-21.8844051361084,16.288618087768555,28.418994903564453]}},"zoomFactor":350000},"perspectiveOrientation":[0.3140767216682434,-0.7418519854545593,0.4988985061645508,-0.3195493221282959],"perspectiveZoom":1922235.5293810747}},"layout":{"views":"hbp-neuro","planarSlicesBackground":[1,1,1,1],"useNehubaPerspective":{"enableShiftDrag":false,"doNotRestrictUserNavigation":false,"perspectiveSlicesBackground":[1,1,1,1],"removePerspectiveSlicesBackground":{"color":[1,1,1,1],"mode":"=="},"perspectiveBackground":[1,1,1,1],"fixedZoomPerspectiveSlices":{"sliceViewportWidth":300,"sliceViewportHeight":300,"sliceZoom":563818.3562426177,"sliceViewportSizeMultiplier":2},"mesh":{"backFaceColor":[1,1,1,1],"removeBasedOnNavigation":true,"flipRemovedOctant":true},"centerToOrigin":true,"drawSubstrates":{"color":[0,0,0.5,0.15]},"drawZoomLevels":{"cutOff":200000,"color":[0.5,0,0,0.15]},"hideImages":false,"waitForMesh":true,"restrictZoomLevel":{"minZoom":1200000,"maxZoom":3500000}}}}
\ No newline at end of file
diff --git a/src/res/ext/colin.json b/src/res/ext/colin.json
index 10e5be246a4fac2872aae200b85815b5e31ffecc..4e6e3f948e7408a2bad396a3f971f842c2812b67 100644
--- a/src/res/ext/colin.json
+++ b/src/res/ext/colin.json
@@ -1 +1,5688 @@
-{"name":"MNI Colin 27","type":"template","species":"Human","useTheme":"dark","ngId":"colin","nehubaConfigURL":"nehubaConfig/colinNehubaConfig","parcellations":[{"ngId":"atlas","type":"parcellation","surfaceParcellation":true,"ngData":null,"name":"JuBrain Cytoarchitectonic Atlas","regions":[{"name":"JuBrain","labelIndex":null,"rgb":null,"children":[{"name":"telencephalon","labelIndex":null,"rgb":null,"children":[{"name":"cerebral cortex","labelIndex":null,"rgb":null,"children":[{"name":"parietal lobe","labelIndex":null,"rgb":null,"children":[{"name":"intraparietal sulcus","labelIndex":null,"rgb":null,"children":[{"name":"Area hIP1 (IPS)","labelIndex":128,"rgb":[85,107,47],"children":[],"ontologyMetadata":{"value":"JBA:128","_Id":128,"_index-v22c":20,"full name":"human intraparietal area 1","name":"Area hIP1 (IPS)","acronym":"hIP1","brodmann":"unknown","functionality":"multimodal association"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/AIPS_IP1.nii","position":[-37300000,-54400000,44900000]},{"name":"Area hIP2 (IPS)","labelIndex":129,"rgb":[148,0,211],"children":[],"ontologyMetadata":{"value":"JBA:129","_Id":129,"_index-v22c":81,"full name":"human intraparietal area 2","name":"Area hIP2 (IPS)","acronym":"hIP2","brodmann":"unknown","functionality":"multimodal association"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/AIPS_IP2.nii","position":[-46600000,-47100000,48200000]},{"name":"Area hIP3 (IPS)","labelIndex":133,"rgb":[238,232,170],"children":[],"ontologyMetadata":{"value":"JBA:133","_Id":133,"_index-v22c":37,"full name":"human intraparietal area 3","name":"Area hIP3 (IPS)","acronym":"hIP3","brodmann":"unknown","functionality":"multimodal association"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/AIPS_IP3.nii","position":[-32500000,-59200000,50500000]}],"ontologyMetadata":{"value":"JBA","name":"intraparietal sulcus","acronym":"IPS"},"PMapURL":null,"position":null},{"name":"inferior parietal lobule","labelIndex":null,"rgb":null,"children":[{"name":"Area PF (IPL)","labelIndex":206,"rgb":[239,134,0],"children":[],"ontologyMetadata":{"value":"JBA:206","_Id":206,"_index-v22c":23,"full name":"parietal area PF","name":"Area PF (IPL)","acronym":"PF","brodmann":"40","functionality":"multimodal association"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/IPL_PF.nii","position":[-58500000,-43100000,41100000]},{"name":"Area PFcm (IPL)","labelIndex":113,"rgb":[144,238,144],"children":[],"ontologyMetadata":{"value":"JBA:113","_Id":113,"_index-v22c":34,"full name":"parietal area PF, columnata magnocellularis","name":"Area PFcm (IPL)","acronym":"PFcm (IPL)","brodmann":"40","functionality":"multimodal association"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/IPL_PFcm.nii","position":[-51400000,-41600000,25800000]},{"name":"Area PFm (IPL)","labelIndex":112,"rgb":[238,238,14],"children":[],"ontologyMetadata":{"value":"JBA:112","_Id":112,"_index-v22c":18,"full name":"parietal area PF magnocellularis","name":"Area PFm (IPL)","acronym":"PFm","brodmann":"40","functionality":"multimodal association"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/IPL_PFm.nii","receptorData":"PFm","position":[-54400000,-56500000,41600000]},{"name":"Area PFop (IPL)","labelIndex":111,"rgb":[144,238,144],"children":[],"ontologyMetadata":{"value":"JBA:111","_Id":111,"_index-v22c":16,"full name":"parietal area PF opercular","name":"Area PFop (IPL)","acronym":"PFop","brodmann":"40","functionality":"multimodal association"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/IPL_PFop.nii","position":[-59900000,-29900000,28400000]},{"name":"Area PFt (IPL)","labelIndex":109,"rgb":[144,238,144],"children":[],"ontologyMetadata":{"value":"JBA:109","_Id":109,"_index-v22c":90,"full name":"parietal area PF tenuicorticalis","name":"Area PFt (IPL)","acronym":"PFt","brodmann":"40","functionality":"multimodal association"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/IPL_PFt.nii","position":[-54500000,-32500000,42400000]},{"name":"Area PGa (IPL)","labelIndex":110,"rgb":[5,198,198],"children":[],"ontologyMetadata":{"value":"JBA:110","_Id":110,"_index-v22c":65,"full name":"parietal area PG anterior","name":"Area PGa (IPL)","acronym":"PGa","brodmann":"39","functionality":"multimodal association"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/IPL_PGa.nii","position":[-47600000,-65400000.00000001,41600000]},{"name":"Area PGp (IPL)","labelIndex":108,"rgb":[42,60,252],"children":[],"ontologyMetadata":{"value":"JBA:108","_Id":108,"_index-v22c":63,"full name":"parietal area PG posterior","name":"Area PGp (IPL)","acronym":"PGp","brodmann":"39","functionality":"multimodal association"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/IPL_PGp.nii","position":[-44000000,-77900000,33000000]}],"ontologyMetadata":{"value":"JBA","name":"inferior parietal lobule","acronym":"IPL"},"PMapURL":null,"position":null},{"name":"parietal operculum","labelIndex":null,"rgb":null,"children":[{"name":"Area OP1 (POperc)","labelIndex":73,"rgb":[255,200,100],"children":[],"ontologyMetadata":{"value":"JBA:73","_Id":73,"_index-v22c":14,"full name":"opercular area 1 (parietal)","name":"Area OP1 (POperc)","acronym":"OP1","brodmann":"43","functionality":"secondary somatosensory"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Operculum_OP1.nii","position":[-51600000,-27400000,21000000]},{"name":"Area OP2 (POperc)","labelIndex":74,"rgb":[255,200,100],"children":[],"ontologyMetadata":{"value":"JBA:74","_Id":74,"_index-v22c":25,"full name":"opercular area 2 (parietal)","name":"Area OP2 (POperc)","acronym":"OP2 (POperc)","brodmann":"43","functionality":"secondary somatosensory"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Operculum_OP2.nii","position":[-36000000,-28500000,22700000]},{"name":"Area OP3 (POperc)","labelIndex":75,"rgb":[255,200,100],"children":[],"ontologyMetadata":{"value":"JBA:75","_Id":75,"_index-v22c":30,"full name":"opercular area 3 (parietal)","name":"Area OP3 (POperc)","acronym":"OP3","brodmann":"43","functionality":"secondary somatosensory"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Operculum_OP3.nii","position":[-40200000,-18300000,20700000]},{"name":"Area OP4 (POperc)","labelIndex":72,"rgb":[255,200,100],"children":[],"ontologyMetadata":{"value":"JBA:72","_Id":72,"_index-v22c":47,"full name":"opercular area 4 (parietal)","name":"Area OP4 (POperc)","acronym":"OP4","brodmann":"43","functionality":"secondary somatosensory"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Operculum_OP4.nii","position":[-59300000,-15600000,19100000]}],"ontologyMetadata":{"value":"JBA","name":"parietal operculum","acronym":"POperc"},"PMapURL":null,"position":null},{"name":"postcentral gyrus","labelIndex":null,"rgb":null,"children":[{"name":"Area 1 (PostCG)","labelIndex":125,"rgb":[0,255,127],"children":[],"ontologyMetadata":{"value":"JBA:125","_Id":125,"_index-v22c":4,"full name":"area 1","name":"Area 1 (PostCG)","acronym":"1","brodmann":"1","functionality":"primary somatosensory"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/PSC_1.nii","position":[-46800000,-32400000,60700000]},{"name":"Area 2 (PostCG)","labelIndex":252,"rgb":[19,255,80],"children":[],"ontologyMetadata":{"value":"JBA:252","_Id":252,"_index-v22c":92,"full name":"area 2","name":"Area 2 (PostCG)","acronym":"2","brodmann":"2","functionality":"primary somatosensory"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/PSC_2.nii","position":[-40700000,-39100000,56100000]},{"name":"Area 3a (PostCG)","labelIndex":126,"rgb":[19,255,120],"children":[],"ontologyMetadata":{"value":"JBA:126","_Id":126,"_index-v22c":97,"full name":"area 3a","name":"Area 3a (PostCG)","acronym":"3a","brodmann":"3","functionality":"primary somatosensory"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/PSC_3a.nii","position":[-32700000.000000004,-29700000,48100000]},{"name":"Area 3b (PostCG)","labelIndex":127,"rgb":[17,250,140],"children":[],"ontologyMetadata":{"value":"JBA:127","_Id":127,"_index-v22c":56,"full name":"area 3b","name":"Area 3b (PostCG)","acronym":"3b","brodmann":"3","functionality":"primary somatosensory"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/PSC_3b.nii","position":[-45000000,-26300000,49500000]}],"ontologyMetadata":{"value":"JBA","name":"postcentral gyrus","acronym":"PostCG"},"PMapURL":null,"position":null},{"name":"superior parietal lobule","labelIndex":null,"rgb":null,"children":[{"name":"Area 5Ci (SPL)","labelIndex":136,"rgb":[218,112,214],"children":[],"ontologyMetadata":{"value":"JBA:136","_Id":136,"_index-v22c":55,"full name":"area 5 within cingulate sulcus","name":"Area 5Ci (SPL)","acronym":"5Ci","brodmann":"5","functionality":"multimodal association"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/SPL_5Ci.nii","position":[-13200000,-40600000,48800000]},{"name":"Area 5L (SPL)","labelIndex":130,"rgb":[255,165,0],"children":[],"ontologyMetadata":{"value":"JBA:130","_Id":130,"_index-v22c":38,"full name":"area 5 lateral","name":"Area 5L (SPL)","acronym":"5L","brodmann":"5","functionality":"multimodal association"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/SPL_5L.nii","position":[-18600000,-52300000,71300000]},{"name":"Area 5M (SPL)","labelIndex":131,"rgb":[255,69,0],"children":[],"ontologyMetadata":{"value":"JBA:131","_Id":131,"_index-v22c":91,"full name":"area 5 medial","name":"Area 5M (SPL)","acronym":"5M","brodmann":"5","functionality":"multimodal association"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/SPL_5M.nii","position":[-6900000,-46300000,62200000]},{"name":"Area 7A (SPL)","labelIndex":134,"rgb":[175,238,238],"children":[],"ontologyMetadata":{"value":"JBA:134","_Id":134,"_index-v22c":42,"full name":"area 7 anterior","name":"Area 7A (SPL)","acronym":"7A","brodmann":"7","functionality":"multimodal association"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/SPL_7A.nii","position":[-20500000,-66900000,64300000]},{"name":"Area 7M (SPL)","labelIndex":135,"rgb":[175,238,238],"children":[],"ontologyMetadata":{"value":"JBA:135","_Id":135,"_index-v22c":13,"full name":"area 7 medial","name":"Area 7M (SPL)","acronym":"7M","brodmann":"7","functionality":"multimodal association"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/SPL_7M.nii","position":[-600000,-81900000,40300000]},{"name":"Area 7P (SPL)","labelIndex":208,"rgb":[0,0,153],"children":[],"ontologyMetadata":{"value":"JBA:208","_Id":208,"_index-v22c":80,"full name":"area 7 posterior","name":"Area 7P (SPL)","acronym":"7P","brodmann":"7","functionality":"multimodal association"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/SPL_7P.nii","position":[-7300000,-80600000,54500000]},{"name":"Area 7PC (SPL)","labelIndex":132,"rgb":[152,251,152],"children":[],"ontologyMetadata":{"value":"JBA:132","_Id":132,"_index-v22c":43,"full name":"area 7 within postcentral sulcus","name":"Area 7PC (SPL)","acronym":"7PC","brodmann":"7","functionality":"multimodal association"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/SPL_7PC.nii","position":[-33000000,-53600000,64000000]}],"ontologyMetadata":{"value":"JBA","name":"superior parietal lobule","acronym":"SPL"},"PMapURL":null,"position":null}],"ontologyMetadata":{"value":"JBA","name":"parietal lobe","acronym":"PL"},"PMapURL":null,"position":null},{"name":"temporal lobe","labelIndex":null,"rgb":null,"children":[{"name":"Heschl's gyrus","labelIndex":null,"rgb":null,"children":[{"name":"Area TE 1.0 (HESCHL)","labelIndex":27,"rgb":[0,146,63],"children":[],"ontologyMetadata":{"value":"JBA:27","_Id":27,"_index-v22c":71,"full name":"temporal area 1.0","name":"Area TE 1.0 (HESCHL)","acronym":"TE 1.0","brodmann":"41","functionality":"primary auditory"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Auditory_Te10.nii","position":[-47500000,-22100000,11300000]},{"name":"Area TE 1.1 (HESCHL)","labelIndex":33,"rgb":[132,194,37],"children":[],"ontologyMetadata":{"value":"JBA:33","_Id":33,"_index-v22c":73,"full name":"temporal area 1.1","name":"Area TE 1.1 (HESCHL)","acronym":"TE 1.1","brodmann":"41","functionality":"primary auditory"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Auditory_Te11.nii","position":[-38500000,-32900000,15200000]},{"name":"Area TE 1.2 (HESCHL)","labelIndex":30,"rgb":[117,197,240],"children":[],"ontologyMetadata":{"value":"JBA:30","_Id":30,"_index-v22c":76,"full name":"temporal area 1.2","name":"Area TE 1.2 (HESCHL)","acronym":"TE 1.2","brodmann":"41","functionality":"primary auditory"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Auditory_Te12.nii","position":[-52100000,-9800000,5800000]}],"ontologyMetadata":{"value":"JBA","name":"Heschl's gyrus","acronym":"HESCHL"},"PMapURL":null,"position":null},{"name":"superior temporal gyrus","labelIndex":null,"rgb":null,"children":[{"name":"Area TE 3 (STG)","labelIndex":31,"rgb":[231,120,23],"children":[],"ontologyMetadata":{"value":"JBA:31","_Id":31,"_index-v22c":52,"full name":"temporal area 3","name":"Area TE 3 (STG)","acronym":"TE 3","brodmann":"22","functionality":"Wernicke's speech region"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Auditory_Te3.nii","position":[-63200000,-17100000,4700000]}],"ontologyMetadata":{"value":"JBA","name":"superior temporal gyrus","acronym":"STG"},"PMapURL":null,"position":null},{"name":"fusiform gyrus","labelIndex":null,"rgb":null,"children":[{"name":"Area FG1 (FusG)","labelIndex":107,"rgb":[0,100,209],"children":[],"ontologyMetadata":{"value":"JBA:107","_Id":107,"_index-v22c":31,"full name":"fusiform gyrus area 1","name":"Area FG1 (FusG)","acronym":"FG1","brodmann":"19","functionality":"extrastriate visual"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Visual_FG1.nii","position":[-28900000,-71800000,-7500000]},{"name":"Area FG2 (FusG)","labelIndex":106,"rgb":[0,209,56],"children":[],"ontologyMetadata":{"value":"JBA:106","_Id":106,"_index-v22c":46,"full name":"fusiform gyrus area 2","name":"Area FG2 (FusG)","acronym":"FG2","brodmann":"19","functionality":"extrastriate visual"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Visual_FG2.nii","position":[-44100000,-70100000,-12600000]},{"name":"Area FG3 (FusG)","labelIndex":239,"rgb":[0,50,150],"children":[],"ontologyMetadata":{"value":"JBA:239","_Id":239,"_index-v22c":11,"full name":"fusiform gyrus area 3","name":"Area FG3 (FusG)","acronym":"FG3","brodmann":"37","functionality":"extrastriate visual"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Visual_FG3.nii","position":[-30100000,-50400000,-10200000]},{"name":"Area FG4 (FusG)","labelIndex":238,"rgb":[0,147,209],"children":[],"ontologyMetadata":{"value":"JBA:238","_Id":238,"_index-v22c":15,"full name":"fusiform gyrus area 4","name":"Area FG4 (FusG)","acronym":"FG4","brodmann":"37","functionality":"extrastriate visual"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Visual_FG4.nii","position":[-43200000,-49300000,-16000000]}],"ontologyMetadata":{"value":"JBA","name":"fusiform gyrus","acronym":"FusG"},"PMapURL":null,"position":null}],"ontologyMetadata":{"value":"JBA","name":"temporal lobe","acronym":"TL"},"PMapURL":null,"position":null},{"name":"frontal lobe","labelIndex":null,"rgb":null,"children":[{"name":"inferior frontal gyrus","labelIndex":null,"rgb":null,"children":[{"name":"Area 44 (IFG)","labelIndex":2,"rgb":[255,10,10],"children":[],"ontologyMetadata":{"value":"JBA:2","_Id":2,"_index-v22c":94,"full name":"area 44","name":"Area 44 (IFG)","acronym":"44","brodmann":"44","functionality":"Broca's region"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Broca_44.nii","position":[-54500000,6800000,21100000]},{"name":"Area 45 (IFG)","labelIndex":1,"rgb":[255,255,0],"children":[],"ontologyMetadata":{"value":"JBA:1","_Id":1,"_index-v22c":19,"full name":"area 45","name":"Area 45 (IFG)","acronym":"45","brodmann":"45","functionality":"Broca's region"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Broca_45.nii","receptorData":"45","position":[-54500000,21600000,19000000]}],"ontologyMetadata":{"value":"JBA","name":"inferior frontal gyrus","acronym":"IFG"},"PMapURL":null,"position":null},{"name":"frontal pole","labelIndex":null,"rgb":null,"children":[{"name":"Area Fp1 (Fpole)","labelIndex":212,"rgb":[0,147,209],"children":[],"ontologyMetadata":{"value":"JBA:212","_Id":212,"_index-v22c":77,"full name":"frontal pole area 1 (lateral)","name":"Area Fp1 (Fpole)","acronym":"Fp1","brodmann":"10","functionality":"multimodal association"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/FrontalPole_Fp1.nii","position":[-17000000,58500000,4400000]},{"name":"Area Fp2 (Fpole)","labelIndex":211,"rgb":[0,209,56],"children":[],"ontologyMetadata":{"value":"JBA:211","_Id":211,"_index-v22c":84,"full name":"frontal pole area 2 (medial)","name":"Area Fp2 (Fpole)","acronym":"Fp2","brodmann":"10","functionality":"multimodal association"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/FrontalPole_Fp2.nii","position":[-3700000,52900000,3300000]}],"ontologyMetadata":{"value":"JBA","name":"frontal pole","acronym":"Fpole"},"PMapURL":null,"position":null},{"name":"precentral gyrus","labelIndex":null,"rgb":null,"children":[{"name":"Area 4a (PreCG)","labelIndex":124,"rgb":[36,157,120],"children":[],"ontologyMetadata":{"value":"JBA:124","_Id":124,"_index-v22c":39,"full name":"area 4 anterior","name":"Area 4a (PreCG)","acronym":"4a","brodmann":"4","functionality":"primary motor"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Motor_4a.nii","position":[-16200000,-34100000,70700000]},{"name":"Area 4p (PreCG)","labelIndex":123,"rgb":[139,71,137],"children":[],"ontologyMetadata":{"value":"JBA:123","_Id":123,"_index-v22c":59,"full name":"area 4 posterior","name":"Area 4p (PreCG)","acronym":"4p","brodmann":"4","functionality":"primary motor"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Motor_4p.nii","receptorData":"4p","position":[-36700000,-26900000,52200000]}],"ontologyMetadata":{"value":"JBA","name":"precentral gyrus","acronym":"PreCG"},"PMapURL":null,"position":null},{"name":"medial orbitofrontal cortex","labelIndex":null,"rgb":null,"children":[{"name":"Area Fo1 (OFC)","labelIndex":3,"rgb":[34,200,240],"children":[],"ontologyMetadata":{"value":"JBA:3","_Id":3,"_index-v22c":45,"full name":"orbitofrontal area 1","name":"Area Fo1 (OFC)","acronym":"Fo1","brodmann":"11","functionality":"multimodal association"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/OFC_Fo1.nii","position":[-7200000,36900000,-18000000]},{"name":"Area Fo2 (OFC)","labelIndex":4,"rgb":[54,255,240],"children":[],"ontologyMetadata":{"value":"JBA:4","_Id":4,"_index-v22c":6,"full name":"orbitofrontal area 2","name":"Area Fo2 (OFC)","acronym":"Fo2","brodmann":"11","functionality":"multimodal association"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/OFC_Fo2.nii","position":[-8900000,16600000,-15400000]},{"name":"Area Fo3 (OFC)","labelIndex":5,"rgb":[34,200,100],"children":[],"ontologyMetadata":{"value":"JBA:5","_Id":5,"_index-v22c":29,"full name":"orbitofrontal area 3","name":"Area Fo3 (OFC)","acronym":"Fo3","brodmann":"11","functionality":"multimodal association"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/OFC_Fo3.nii","position":[-22500000,28400000,-15600000]}],"ontologyMetadata":{"value":"JBA","name":"medial orbitofrontal cortex","acronym":"OFC"},"PMapURL":null,"position":null}],"ontologyMetadata":{"value":"JBA","name":"frontal lobe","acronym":"FL"},"PMapURL":null,"position":null},{"name":"limbic lobe","labelIndex":null,"rgb":null,"children":[{"name":"cingulate gyrus, frontal part","labelIndex":null,"rgb":null,"children":[{"name":"Area 33 (ACC)","labelIndex":39,"rgb":[205,0,0],"children":[],"ontologyMetadata":{"value":"JBA:39","_Id":39,"_index-v22c":12,"full name":"area 33","name":"Area 33 (ACC)","acronym":"33","brodmann":"33","functionality":"anterior cingulate"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Cingulum_33.nii","position":[-4700000,9400000,18600000]},{"name":"Area 25 (sACC)","labelIndex":184,"rgb":[205,0,0],"children":[],"ontologyMetadata":{"value":"JBA:184","_Id":184,"_index-v22c":50,"full name":"area 25","name":"Area 25 (sACC)","acronym":"25","brodmann":"25","functionality":"subgenual anterior cingulate"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Cingulum_25.nii","position":[-3300000,8500000,-7600000]},{"name":"Area s24 (sACC)","labelIndex":183,"rgb":[205,0,0],"children":[],"ontologyMetadata":{"value":"JBA:183","_Id":183,"_index-v22c":99,"full name":"subgenual area 24","name":"Area s24 (sACC)","acronym":"s24 (sACC)","brodmann":"24","functionality":"subgenual anterior cingulate"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Cingulum_s24.nii","position":[-3100000,19500000,-5300000]},{"name":"Area s32 (sACC)","labelIndex":46,"rgb":[205,0,0],"children":[],"ontologyMetadata":{"value":"JBA:46","_Id":46,"_index-v22c":1,"full name":"subgenual area 32","name":"Area s32 (sACC)","acronym":"s32","brodmann":"32","functionality":"subgenual anterior cingulate"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Cingulum_s32.nii","position":[-5900000,30700000,-7500000]}],"ontologyMetadata":{"value":"JBA","name":"cingulate gyrus, frontal part","acronym":"ACC"},"PMapURL":null,"position":null},{"name":"hippocampal formation","labelIndex":null,"rgb":null,"children":[{"name":"CA1 (Hippocampus)","labelIndex":66,"rgb":[255,0,51],"children":[],"ontologyMetadata":{"value":"JBA:66","_Id":66,"_index-v22c":89,"full name":"Cornu ammonis area 1","name":"CA1 (Hippocampus)","acronym":"CA1","brodmann":"unknown","functionality":"limbic"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Hippocampus_CA1.nii","position":[-28800000,-24800000,-13000000]},{"name":"CA2 (Hippocampus)","labelIndex":58,"rgb":[255,153,0],"children":[],"ontologyMetadata":{"value":"JBA:58","_Id":58,"_index-v22c":10,"full name":"Cornu ammonis area 2","name":"CA2 (Hippocampus)","acronym":"CA2","brodmann":"unknown","functionality":"limbic"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Hippocampus_CA2.nii","position":[-30400000,-23200000,-10100000]},{"name":"CA3 (Hippocampus)","labelIndex":59,"rgb":[204,255,102],"children":[],"ontologyMetadata":{"value":"JBA:59","_Id":59,"_index-v22c":44,"full name":"Cornu ammonis area 3","name":"CA3 (Hippocampus)","acronym":"CA3","brodmann":"unknown","functionality":"limbic"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Hippocampus_CA3.nii","position":[-25600000,-21700000,-12700000]},{"name":"DG (Hippocampus)","labelIndex":61,"rgb":[255,204,204],"children":[],"ontologyMetadata":{"value":"JBA:61","_Id":61,"_index-v22c":32,"full name":"dentate gyrus","name":"DG (Hippocampus)","acronym":"DG","brodmann":"unknown","functionality":"limbic"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Hippocampus_DG.nii","position":[-28300000,-32500000,-6400000]},{"name":"Entorhinal Cortex","labelIndex":60,"rgb":[153,153,255],"children":[],"ontologyMetadata":{"value":"JBA:60","_Id":60,"_index-v22c":83,"full name":"entorhinal cortex","name":"Entorhinal Cortex","acronym":"EC","brodmann":"unknown","functionality":"limbic"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Hippocampus_EC.nii","position":[-21500000,-11100000,-29300000]},{"name":"HATA (Hippocampus)","labelIndex":68,"rgb":[255,255,51],"children":[],"ontologyMetadata":{"value":"JBA:68","_Id":68,"_index-v22c":48,"full name":"hippocampal-amygdaloid transition area","name":"HATA (Hippocampus)","acronym":"HATA","brodmann":"unknown","functionality":"limbic"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Hippocampus_HATA.nii","position":[-16400000,-15600000,-14900000]},{"name":"Subc (Hippocampus)","labelIndex":192,"rgb":[0,255,0],"children":[],"ontologyMetadata":{"value":"JBA:192","_Id":192,"_index-v22c":93,"full name":"subicular complex","name":"Subc (Hippocampus)","acronym":"Subc","brodmann":"unknown","functionality":"limbic"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Hippocampus_Subc.nii","position":[-22000000,-27100000,-15000000]}],"ontologyMetadata":{"value":"JBA","name":"hippocampal formation","acronym":"Hippocampus"},"PMapURL":null,"position":null}],"ontologyMetadata":{"value":"JBA","name":"limbic lobe","acronym":"LL"},"PMapURL":null,"position":null},{"name":"insular lobe","labelIndex":null,"rgb":null,"children":[{"name":"dysgranular insula","labelIndex":null,"rgb":null,"children":[{"name":"Area Id1 (Insula)","labelIndex":116,"rgb":[210,180,140],"children":[],"ontologyMetadata":{"value":"JBA:116","_Id":116,"_index-v22c":17,"full name":"dysgranular insula area 1","name":"Area Id1 (Insula)","acronym":"Id1","brodmann":"unknown","functionality":"multimodal association"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Insula_Id1.nii","position":[-41000000,-16300000,-4700000]}],"ontologyMetadata":{"value":"JBA","name":"dysgranular insula","acronym":"Id"},"PMapURL":null,"position":null},{"name":"granular insula","labelIndex":null,"rgb":null,"children":[{"name":"Area Ig1 (Insula)","labelIndex":115,"rgb":[216,191,216],"children":[],"ontologyMetadata":{"value":"JBA:115","_Id":115,"_index-v22c":88,"full name":"granular insula area 1","name":"Area Ig1 (Insula)","acronym":"Ig1","brodmann":"unknown","functionality":"multimodal association"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Insula_Ig1.nii","position":[-33700000,-28000000,12800000]},{"name":"Area Ig2 (Insula)","labelIndex":114,"rgb":[216,150,240],"children":[],"ontologyMetadata":{"value":"JBA:114","_Id":114,"_index-v22c":67,"full name":"granular insula area 2","name":"Area Ig2 (Insula)","acronym":"Ig2","brodmann":"unknown","functionality":"multimodal association"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Insula_Ig2.nii","position":[-38400000,-21700000,10800000]}],"ontologyMetadata":{"value":"JBA","full name":"granular insula","acronym":"Ig"},"PMapURL":null,"position":null}],"ontologyMetadata":{"value":"JBA","name":"insular lobe","acronym":"Insula"},"PMapURL":null,"position":null},{"name":"occipital lobe","labelIndex":null,"rgb":null,"children":[{"name":"occipital cortex","labelIndex":null,"rgb":null,"children":[{"name":"Area hOc1 (V1, 17, CalcS)","labelIndex":8,"rgb":[250,30,250],"children":[],"ontologyMetadata":{"value":"JBA:8","_Id":8,"_index-v22c":96,"full name":"human occipital area 1","name":"Area hOc1 (V1, 17, CalcS)","acronym":"hOc1","brodmann":"17","functionality":"primary visual"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Visual_hOc1.nii","position":[-8500000,-88000000,6100000]},{"name":"Area hOc2 (V2, 18)","labelIndex":7,"rgb":[155,100,250],"children":[],"ontologyMetadata":{"value":"JBA:7","_Id":7,"_index-v22c":98,"full name":"human occipital area 2","name":"Area hOc2 (V2, 18)","acronym":"hOc2","brodmann":"18","functionality":"secondary visual"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Visual_hOc2.nii","position":[-9500000,-90200000,8300000]}],"ontologyMetadata":{"value":"JBA","name":"occipital cortex","acronym":"OC"},"PMapURL":null,"position":null},{"name":"dorsal occipital cortex","labelIndex":null,"rgb":null,"children":[{"name":"Area hOc3d (Cuneus)","labelIndex":120,"rgb":[255,218,185],"children":[],"ontologyMetadata":{"value":"JBA:120","_Id":120,"_index-v22c":64,"full name":"human occipital area 3 dorsal","name":"Area hOc3d (Cuneus)","acronym":"hOc3d","brodmann":"19","functionality":"dorsal extrastriate visual"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Visual_hOc3d.nii","position":[-10700000,-94600000,25300000]},{"name":"Area hOc4d (Cuneus)","labelIndex":119,"rgb":[255,239,213],"children":[],"ontologyMetadata":{"value":"JBA:119","_Id":119,"_index-v22c":28,"full name":"human occipital area 4 dorsal","name":"Area hOc4d (Cuneus)","acronym":"hOc4d","brodmann":"19","functionality":"dorsal extrastriate visual"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Visual_hOc4d.nii","position":[-16400000,-91400000,33000000]}],"ontologyMetadata":{"value":"JBA","name":"dorsal occipital cortex","acronym":"DOC"},"PMapURL":null,"position":null},{"name":"ventral occipital cortex","labelIndex":null,"rgb":null,"children":[{"name":"Area hOc3v (LingG)","labelIndex":10,"rgb":[176,224,230],"children":[],"ontologyMetadata":{"value":"JBA:10","_Id":10,"_index-v22c":5,"full name":"human occipital area 3 ventral","name":"Area hOc3v (LingG)","acronym":"hOc3v","brodmann":"19","functionality":"ventral extrastriate visual"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Visual_hOc3v.nii","position":[-17800000,-90000000,-5700000]},{"name":"Area hOc4v (LingG)","labelIndex":9,"rgb":[221,160,221],"children":[],"ontologyMetadata":{"value":"JBA:9","_Id":9,"_index-v22c":2,"full name":"human occipital area 4 ventral","name":"Area hOc4v (LingG)","acronym":"hOc4v","brodmann":"19","functionality":"ventral extrastriate visual"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Visual_hOc4v.nii","position":[-26400000,-83500000,-8000000]}],"ontologyMetadata":{"value":"JBA","name":"ventral occipital cortex","acronym":"LingG"},"PMapURL":null,"position":null},{"name":"lateral occipital cortex","labelIndex":null,"rgb":null,"children":[{"name":"Area hOc4la (LOC)","labelIndex":118,"rgb":[205,133,63],"children":[],"ontologyMetadata":{"value":"JBA:118","_Id":118,"_index-v22c":40,"full name":"human occipital area 4 lateral anterior","name":"Area hOc4la (LOC)","acronym":"hOc4la","brodmann":"19","functionality":"lateral extrastriate visual"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Visual_hOc4la.nii","position":[-45200000,-81300000,4100000]},{"name":"Area hOc4lp (LOC)","labelIndex":117,"rgb":[255,192,203],"children":[],"ontologyMetadata":{"value":"JBA:117","_Id":117,"_index-v22c":86,"full name":"human occipital area 4 lateral posterior","name":"Area hOc4lp (LOC)","acronym":"hOc4lp","brodmann":"19","functionality":"lateral extrastriate visual"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Visual_hOc4lp.nii","position":[-32800000,-93800000,11000000]},{"name":"Area hOc5 (LOC)","labelIndex":6,"rgb":[0,0,255],"children":[],"ontologyMetadata":{"value":"JBA:6","_Id":6,"_index-v22c":3,"full name":"human occipital area 5","name":"Area hOc5 (LOC)","acronym":"hOc5","brodmann":"19","functionality":"lateral extrastriate visual"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Visual_hOc5.nii","position":[-42400000,-75500000,6500000]}],"ontologyMetadata":{"value":"JBA","name":"lateral occipital cortex","acronym":"LOC"},"PMapURL":null,"position":null}],"ontologyMetadata":{"value":"JBA","name":"occipital lobe","acronym":"OL"},"PMapURL":null,"position":null}],"ontologyMetadata":{"value":"JBA","name":"cerebral cortex","acronym":"Cx"},"PMapURL":null,"position":null},{"name":"cerebral nuclei","labelIndex":null,"rgb":null,"children":[{"name":"AStr (Amygdala)","labelIndex":18,"rgb":[102,0,102],"children":[],"ontologyMetadata":{"value":"JBA:18","_Id":18,"_index-v22c":60,"full name":"amygdalostriatal transition zone","name":"AStr (Amygdala)","acronym":"AStr","brodmann":"unknown","functionality":"unknown"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Amygdala_AStr.nii","position":[-27800000,-11000000,-10900000]},{"name":"amygdala","labelIndex":null,"rgb":null,"children":[{"name":"CM (Amygdala)","labelIndex":290,"rgb":[51,0,102],"children":[],"ontologyMetadata":{"value":"JBA:290","_Id":290,"_index-v22c":21,"full name":"anterior amygdaloid area, central nucleus, medial nucleus","name":"CM (Amygdala)","acronym":"CM","brodmann":"unknown","functionality":"unknown"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Amygdala_CM.nii","position":[-21400000,-10100000,-9300000]},{"name":"LB (Amygdala)","labelIndex":187,"rgb":[204,51,0],"children":[],"ontologyMetadata":{"value":"JBA:187","_Id":187,"_index-v22c":66,"full name":"basolateral nucleus, basomedial nucleus, lateral nucleus","name":"LB (Amygdala)","acronym":"LB","brodmann":"unknown","functionality":"unknown"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Amygdala_LB.nii","position":[-23300000,-6600000,-19600000]},{"name":"SF (Amygdala)","labelIndex":185,"rgb":[153,204,0],"children":[],"ontologyMetadata":{"value":"JBA:185","_Id":185,"_index-v22c":33,"full name":"amygdaloid-hippocampal area dorsal, amygdaloid-hippocampal area ventral, amygdalopiriform transition area, ventral cortical nuclei (dorsal part), ventral cortical nuclei (ventral part)","name":"SF (Amygdala)","acronym":"SF","brodmann":"unknown","functionality":"unknown"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Amygdala_SF.nii","position":[-15700000,-9500000,-14000000]}],"ontologyMetadata":{"value":"JBA","name":"amygdala","acronym":"Amg"},"PMapURL":null,"position":null},{"name":"basal forebrain","labelIndex":null,"rgb":null,"children":[{"name":"Ch 1-3 (Basal Forebrain)","labelIndex":286,"rgb":[250,128,114],"children":[],"ontologyMetadata":{"value":"JBA:286","_Id":286,"_index-v22c":9,"full name":"cholinergic cell group 1-3","name":"Ch 1-3 (Basal Forebrain)","acronym":"Ch 1-3","brodmann":"unknown","functionality":"unknown"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Bforebrain_123.nii","position":[-2200000,-200000,-4600000]},{"name":"Ch 4 (Basal Forebrain)","labelIndex":142,"rgb":[42,60,252],"children":[],"ontologyMetadata":{"value":"JBA:142","_Id":142,"_index-v22c":27,"full name":"cholinergic cell group 4","name":"Ch 4 (Basal Forebrain)","acronym":"Ch 4","brodmann":"unknown","functionality":"unknown"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Bforebrain_4.nii","position":[-17800000,-6700000,-7500000]}],"ontologyMetadata":{"value":"JBA","name":"basal forebrain","acronym":"BF"},"PMapURL":null,"position":null}],"ontologyMetadata":{"value":"JBA","name":"cerebral nuclei","acronym":""},"PMapURL":null,"position":null}],"ontologyMetadata":{"value":"JBA","name":"telencephalon","acronym":"T"},"PMapURL":null,"position":null},{"name":"metencephalon","labelIndex":null,"rgb":null,"children":[{"name":"cerebellum","labelIndex":null,"rgb":null,"children":[{"name":"cerebellar nuclei","labelIndex":null,"rgb":null,"children":[{"name":"dentate nucleus","labelIndex":null,"rgb":null,"children":[{"name":"Dorsal Dentate Nucleus (Cerebellum)","labelIndex":240,"rgb":[176,196,222],"children":[],"ontologyMetadata":{"value":"JBA:240","_Id":240,"_index-v22c":87,"full name":"dentate nucleus, new part","name":"Dorsal Dentate Nucleus (Cerebellum)","acronym":"NDentneo","brodmann":"unknown","functionality":"unknown"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Cerebellum_Ndentd.nii","position":[-16400000,-60900000,-31600000]},{"name":"Ventral Dentate Nucleus (Cerebellum)","labelIndex":241,"children":[],"ontologyMetadata":{"value":"JBA:241","_Id":241,"_index-v22c":61,"full name":"dentate nucleus, old part","name":"Ventral Dentate Nucleus (Cerebellum)","acronym":"Ndentarchi","brodmann":"unknown","functionality":"unknown"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Cerebellum_Ndentv.nii","position":[-13200000,-61700000,-26100000]}],"ontologyMetadata":{"value":"JBA","name":"dentate nucleus","acronym":""},"PMapURL":null,"position":null},{"name":"Fastigial Nucleus (Cerebellum)","labelIndex":219,"rgb":[255,20,147],"children":[],"ontologyMetadata":{"value":"JBA:219","_Id":219,"_index-v22c":100,"full name":"fastigial nucleus","name":"Fastigial Nucleus (Cerebellum)","acronym":"Nfast","brodmann":"unknown","functionality":"unknown"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Cerebellum_Nfast.nii","position":[-3300000,-58900000,-24200000]},{"name":"emboliform nucleus, globose nucleus","labelIndex":251,"rgb":[17,250,140],"children":[],"ontologyMetadata":{"value":"JBA:251","_Id":251,"_index-v22c":7,"full name":"emboliform nucleus, globose nucleus","acronym":"Ninterp","brodmann":"unknown","functionality":"unknown"},"PMapURL":"https://neuroglancer-dev.humanbrainproject.org/precomputed/JuBrain/v2.2c/PMaps/Cerebellum_Ninterp.nii","position":[-8600000,-60400000,-26300000]}],"ontologyMetadata":{"value":"JBA","name":"cerebellar nuclei","acronym":""},"PMapURL":null,"position":null}],"ontologyMetadata":{"value":"JBA","full name":"cerebellum","acronym":"Cb"},"PMapURL":null,"position":null}],"ontologyMetadata":{"value":"JBA","full name":"metencephalon","acronym":"Met"},"PMapURL":null,"position":null}],"ontologyMetadata":{"value":"JBA","version":"v22c","full name":"Jülich Cytoarchitechtonic Brain Atlas","name":"JuBrain","acronym":"JuBrain"},"PMapURL":null,"position":null}],"properties":{"publications":[{"doi":"https://doi.org/10.1038/nrn2776","citation":"Zilles K, Amunts K (2010) Centenary of Brodmann’s map – conception and fate. Nature Reviews Neuroscience 11(2): 139-145 "},{"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: 1061-1065"},{"doi":"http://dx.doi.org/10.1016/B978-012693019-1/50023-X","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."}]}}],"properties":{"name":"MNI Colin 27","description":"This is a stereotaxic average of 27 T1-weighted MRI scans of the same individual. In 1998, a new atlas with much higher definition than MNI305s was created at the MNI. One individual (CJH) was scanned 27 times and the images linearly registered to create an average with high SNR and structure definition (Holmes et al., 1998). This average was linearly registered to the average 305. Ironically, this dataset was not originally intended for use as a stereotaxic template but as the sub- strate for an ROI parcellation scheme to be used with ANIMAL non-linear spatial normalization (Collins et al., 1995), i.e. it was intended for the purpose of segmentation, NOT stereotaxy. As a single brain atlas, it did not capture anatomical variability and was, to some degree, a reversion to the Talairach approach. However, the high definition proved too attractive to the community and, after non-linear mapping to fit the MNI305 space, it has been adopted by many groups as a stereotaxic template (e.g., AFNI, Cox,; Brainstorm, Tadel et al., 2011; SPM, Litvak et al., 2011; Fieldtrip, Oostenveld et al., 2011)."}}
\ No newline at end of file
+{
+  "name": "MNI Colin 27",
+  "type": "template",
+  "species": "Human",
+  "useTheme": "dark",
+  "ngId": "colin",
+  "nehubaConfigURL": "nehubaConfig/colinNehubaConfig",
+  "parcellations": [
+    {
+      "name": "JuBrain Cytoarchitectonic Atlas",
+      "ngId": "jubrain colin v17 left",
+      "properties": {
+        "version": "1.0",
+        "description": "not yet",
+        "publications": [],
+        "nifti": [{"file":  "jubrain-max-pmap-v22c_space-mnicolin27.nii", "size": "4400000"}]
+      },
+      "regions": [
+        {
+          "name": "telencephalon",
+          "status": null,
+          "labelIndex": null,
+          "synonyms": [],
+          "rgb": null,
+          "children": [
+            {
+              "name": "cerebral nuclei",
+              "status": null,
+              "labelIndex": null,
+              "synonyms": [],
+              "rgb": null,
+              "children": [
+                {
+                  "name": "basal forebrain",
+                  "status": null,
+                  "labelIndex": null,
+                  "synonyms": [],
+                  "rgb": null,
+                  "children": [
+                    {
+                      "name": "magnocellular group within septum",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Ch 123 (Basal Forebrain)",
+                          "arealabel": "Ch-123",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            124,
+                            233,
+                            167
+                          ],
+                          "children": [
+                            {
+                              "name": "Ch 123 (Basal Forebrain) - left hemisphere",
+                              "rgb": [
+                                124,
+                                233,
+                                167
+                              ],
+                              "labelIndex": 286,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -2339339,
+                                4405405,
+                                -8804805
+                              ]
+                            },
+                            {
+                              "name": "Ch 123 (Basal Forebrain) - right hemisphere",
+                              "rgb": [
+                                124,
+                                233,
+                                167
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 286,
+                              "children": [],
+                              "position": [
+                                3240000,
+                                5153846,
+                                -8347692
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "sublenticular part of basal forebrain",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Ch 4 (Basal Forebrain)",
+                          "arealabel": "Ch-4",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            116,
+                            243,
+                            12
+                          ],
+                          "children": [
+                            {
+                              "name": "Ch 4 (Basal Forebrain) - left hemisphere",
+                              "rgb": [
+                                116,
+                                243,
+                                12
+                              ],
+                              "labelIndex": 264,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -16053628,
+                                -454259,
+                                -12470032
+                              ]
+                            },
+                            {
+                              "name": "Ch 4 (Basal Forebrain) - right hemisphere",
+                              "rgb": [
+                                116,
+                                243,
+                                12
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 264,
+                              "children": [],
+                              "position": [
+                                17655072,
+                                263768,
+                                -11539130
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "magnocellular group within horizontal limb of diagnoal band",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Ch 123 (Basal Forebrain)",
+                          "arealabel": "Ch-123",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            124,
+                            233,
+                            167
+                          ],
+                          "children": [
+                            {
+                              "name": "Ch 123 (Basal Forebrain) - left hemisphere",
+                              "rgb": [
+                                124,
+                                233,
+                                167
+                              ],
+                              "labelIndex": 286,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -2339339,
+                                4405405,
+                                -8804805
+                              ]
+                            },
+                            {
+                              "name": "Ch 123 (Basal Forebrain) - right hemisphere",
+                              "rgb": [
+                                124,
+                                233,
+                                167
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 286,
+                              "children": [],
+                              "position": [
+                                3240000,
+                                5153846,
+                                -8347692
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    }
+                  ]
+                },
+                {
+                  "name": "amygdala",
+                  "status": null,
+                  "labelIndex": null,
+                  "synonyms": [],
+                  "rgb": null,
+                  "children": [
+                    {
+                      "name": "laterobasal group",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "LB (Amygdala)",
+                          "arealabel": "LB",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            188,
+                            16,
+                            222
+                          ],
+                          "children": [
+                            {
+                              "name": "LB (Amygdala) - left hemisphere",
+                              "rgb": [
+                                188,
+                                16,
+                                222
+                              ],
+                              "labelIndex": 187,
+                              "ngId": "jubrain colin v17 left",
+                              "children": []
+                            },
+                            {
+                              "name": "LB (Amygdala) - right hemisphere",
+                              "rgb": [
+                                188,
+                                16,
+                                222
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 187,
+                              "children": []
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "superficial group",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "CM (Amygdala)",
+                          "arealabel": "CM",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            102,
+                            180,
+                            202
+                          ],
+                          "children": [
+                            {
+                              "name": "CM (Amygdala) - left hemisphere",
+                              "rgb": [
+                                102,
+                                180,
+                                202
+                              ],
+                              "labelIndex": 22,
+                              "ngId": "jubrain colin v17 left",
+                              "children": []
+                            },
+                            {
+                              "name": "CM (Amygdala) - right hemisphere",
+                              "rgb": [
+                                102,
+                                180,
+                                202
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 22,
+                              "children": []
+                            }
+                          ]
+                        },
+                        {
+                          "name": "SF (Amygdala)",
+                          "arealabel": "SF",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            18,
+                            168,
+                            22
+                          ],
+                          "children": [
+                            {
+                              "name": "SF (Amygdala) - left hemisphere",
+                              "rgb": [
+                                18,
+                                168,
+                                22
+                              ],
+                              "labelIndex": 186,
+                              "ngId": "jubrain colin v17 left",
+                              "children": []
+                            },
+                            {
+                              "name": "SF (Amygdala) - right hemisphere",
+                              "rgb": [
+                                18,
+                                168,
+                                22
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 186,
+                              "children": []
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "fiber masses",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "MF (Amygdala)",
+                          "arealabel": "MF",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            190,
+                            200,
+                            9
+                          ],
+                          "children": [
+                            {
+                              "name": "MF (Amygdala) - left hemisphere",
+                              "rgb": [
+                                190,
+                                200,
+                                9
+                              ],
+                              "labelIndex": 235,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -18714286,
+                                -6523810,
+                                -15428571
+                              ]
+                            },
+                            {
+                              "name": "MF (Amygdala) - right hemisphere",
+                              "rgb": [
+                                190,
+                                200,
+                                9
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 235,
+                              "children": [],
+                              "position": [
+                                20976744,
+                                -4930233,
+                                -14441860
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "VTM (Amygdala)",
+                          "arealabel": "VTM",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            89,
+                            178,
+                            185
+                          ],
+                          "children": [
+                            {
+                              "name": "VTM (Amygdala) - left hemisphere",
+                              "rgb": [
+                                89,
+                                178,
+                                185
+                              ],
+                              "labelIndex": 228,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -23377907,
+                                -9837209,
+                                -14848837
+                              ]
+                            },
+                            {
+                              "name": "VTM (Amygdala) - right hemisphere",
+                              "rgb": [
+                                89,
+                                178,
+                                185
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 228,
+                              "children": [],
+                              "position": [
+                                25513514,
+                                -8881081,
+                                -15551351
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "IF (Amygdala)",
+                          "arealabel": "IF",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            120,
+                            190,
+                            129
+                          ],
+                          "children": [
+                            {
+                              "name": "IF (Amygdala) - left hemisphere",
+                              "rgb": [
+                                120,
+                                190,
+                                129
+                              ],
+                              "labelIndex": 237,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -27588235,
+                                -1431373,
+                                -17460784
+                              ]
+                            },
+                            {
+                              "name": "IF (Amygdala) - right hemisphere",
+                              "rgb": [
+                                120,
+                                190,
+                                129
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 237,
+                              "children": [],
+                              "position": [
+                                29372549,
+                                -813725,
+                                -16578431
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "centromedial group",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "CM (Amygdala)",
+                          "arealabel": "CM",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            89,
+                            4,
+                            190
+                          ],
+                          "children": [
+                            {
+                              "name": "CM (Amygdala) - left hemisphere",
+                              "rgb": [
+                                89,
+                                4,
+                                190
+                              ],
+                              "labelIndex": 16,
+                              "ngId": "jubrain colin v17 left",
+                              "children": []
+                            },
+                            {
+                              "name": "CM (Amygdala) - right hemisphere",
+                              "rgb": [
+                                89,
+                                4,
+                                190
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 16,
+                              "children": []
+                            }
+                          ]
+                        },
+                        {
+                          "name": "CM (Amygdala)",
+                          "arealabel": "CM",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            9,
+                            120,
+                            220
+                          ],
+                          "children": [
+                            {
+                              "name": "CM (Amygdala) - left hemisphere",
+                              "rgb": [
+                                9,
+                                120,
+                                220
+                              ],
+                              "labelIndex": 21,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -21108108,
+                                -3376448,
+                                -13214286
+                              ]
+                            },
+                            {
+                              "name": "CM (Amygdala) - right hemisphere",
+                              "rgb": [
+                                9,
+                                120,
+                                220
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 21,
+                              "children": [],
+                              "position": [
+                                23157767,
+                                -2679612,
+                                -12555825
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    }
+                  ]
+                }
+              ]
+            },
+            {
+              "name": "cerebral cortex",
+              "status": null,
+              "labelIndex": null,
+              "synonyms": [],
+              "rgb": null,
+              "children": [
+                {
+                  "name": "parietal lobe",
+                  "status": null,
+                  "labelIndex": null,
+                  "synonyms": [],
+                  "rgb": null,
+                  "children": [
+                    {
+                      "name": "superior parietal lobule",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area 7P (SPL)",
+                          "arealabel": "Area-7P",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            52,
+                            20,
+                            106
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 7P (SPL) - left hemisphere",
+                              "rgb": [
+                                52,
+                                20,
+                                106
+                              ],
+                              "labelIndex": 208,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -7679310,
+                                -76043295,
+                                52631801
+                              ]
+                            },
+                            {
+                              "name": "Area 7P (SPL) - right hemisphere",
+                              "rgb": [
+                                52,
+                                20,
+                                106
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 208,
+                              "children": [],
+                              "position": [
+                                14232037,
+                                -74892094,
+                                56304919
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area 5M (SPL)",
+                          "arealabel": "Area-5M",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            225,
+                            245,
+                            76
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 5M (SPL) - left hemisphere",
+                              "rgb": [
+                                225,
+                                245,
+                                76
+                              ],
+                              "labelIndex": 131,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -7527881,
+                                -41962560,
+                                59221721
+                              ]
+                            },
+                            {
+                              "name": "Area 5M (SPL) - right hemisphere",
+                              "rgb": [
+                                225,
+                                245,
+                                76
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 131,
+                              "children": [],
+                              "position": [
+                                4642562,
+                                -44304959,
+                                60273140
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area 7PC (SPL)",
+                          "arealabel": "Area-7PC",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            252,
+                            89,
+                            28
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 7PC (SPL) - left hemisphere",
+                              "rgb": [
+                                252,
+                                89,
+                                28
+                              ],
+                              "labelIndex": 132,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -32056266,
+                                -48916454,
+                                60868713
+                              ]
+                            },
+                            {
+                              "name": "Area 7PC (SPL) - right hemisphere",
+                              "rgb": [
+                                252,
+                                89,
+                                28
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 132,
+                              "children": [],
+                              "position": [
+                                30055171,
+                                -49079568,
+                                61493485
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area 5L (SPL)",
+                          "arealabel": "Area-5L",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            184,
+                            185,
+                            58
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 5L (SPL) - left hemisphere",
+                              "rgb": [
+                                184,
+                                185,
+                                58
+                              ],
+                              "labelIndex": 130,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -18807832,
+                                -47524930,
+                                66950353
+                              ]
+                            },
+                            {
+                              "name": "Area 5L (SPL) - right hemisphere",
+                              "rgb": [
+                                184,
+                                185,
+                                58
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 130,
+                              "children": [],
+                              "position": [
+                                12970516,
+                                -51174624,
+                                70371695
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area 7M (SPL)",
+                          "arealabel": "Area-7M",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            205,
+                            61,
+                            236
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 7M (SPL) - left hemisphere",
+                              "rgb": [
+                                205,
+                                61,
+                                236
+                              ],
+                              "labelIndex": 135,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -777896,
+                                -78103082,
+                                35256111
+                              ]
+                            },
+                            {
+                              "name": "Area 7M (SPL) - right hemisphere",
+                              "rgb": [
+                                205,
+                                61,
+                                236
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 135,
+                              "children": [],
+                              "position": [
+                                4281250,
+                                -75882812,
+                                38312500
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area 7A (SPL)",
+                          "arealabel": "Area-7A",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            38,
+                            204,
+                            19
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 7A (SPL) - left hemisphere",
+                              "rgb": [
+                                38,
+                                204,
+                                19
+                              ],
+                              "labelIndex": 134,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -20856230,
+                                -62269710,
+                                61643512
+                              ]
+                            },
+                            {
+                              "name": "Area 7A (SPL) - right hemisphere",
+                              "rgb": [
+                                38,
+                                204,
+                                19
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 134,
+                              "children": [],
+                              "position": [
+                                20910951,
+                                -62880523,
+                                62944473
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area 5Ci (SPL)",
+                          "arealabel": "Area-5Ci",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            79,
+                            242,
+                            146
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 5Ci (SPL) - left hemisphere",
+                              "rgb": [
+                                79,
+                                242,
+                                146
+                              ],
+                              "labelIndex": 136,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -14033790,
+                                -35828311,
+                                43857534
+                              ]
+                            },
+                            {
+                              "name": "Area 5Ci (SPL) - right hemisphere",
+                              "rgb": [
+                                79,
+                                242,
+                                146
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 136,
+                              "children": [],
+                              "position": [
+                                10563961,
+                                -36194957,
+                                46892989
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "parietal operculum",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area OP2 (POperc)",
+                          "arealabel": "Area-OP2",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            36,
+                            47,
+                            221
+                          ],
+                          "children": [
+                            {
+                              "name": "Area OP2 (POperc) - left hemisphere",
+                              "rgb": [
+                                36,
+                                47,
+                                221
+                              ],
+                              "labelIndex": 74,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -36355372,
+                                -23452479,
+                                18938017
+                              ]
+                            },
+                            {
+                              "name": "Area OP2 (POperc) - right hemisphere",
+                              "rgb": [
+                                36,
+                                47,
+                                221
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 74,
+                              "children": [],
+                              "position": [
+                                35629457,
+                                -21159690,
+                                18021705
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area OP4 (POperc)",
+                          "arealabel": "Area-OP4",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            89,
+                            80,
+                            132
+                          ],
+                          "children": [
+                            {
+                              "name": "Area OP4 (POperc) - left hemisphere",
+                              "rgb": [
+                                89,
+                                80,
+                                132
+                              ],
+                              "labelIndex": 72,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -60514139,
+                                -10849614,
+                                15368038
+                              ]
+                            },
+                            {
+                              "name": "Area OP4 (POperc) - right hemisphere",
+                              "rgb": [
+                                89,
+                                80,
+                                132
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 72,
+                              "children": [],
+                              "position": [
+                                63398148,
+                                -9211111,
+                                12780864
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area OP3 (POperc)",
+                          "arealabel": "Area-OP3",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            58,
+                            122,
+                            80
+                          ],
+                          "children": [
+                            {
+                              "name": "Area OP3 (POperc) - left hemisphere",
+                              "rgb": [
+                                58,
+                                122,
+                                80
+                              ],
+                              "labelIndex": 75,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -40814044,
+                                -13737321,
+                                17669701
+                              ]
+                            },
+                            {
+                              "name": "Area OP3 (POperc) - right hemisphere",
+                              "rgb": [
+                                58,
+                                122,
+                                80
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 75,
+                              "children": [],
+                              "position": [
+                                41195980,
+                                -11633166,
+                                18002513
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area OP1 (POperc)",
+                          "arealabel": "Area-OP1",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            250,
+                            182,
+                            34
+                          ],
+                          "children": [
+                            {
+                              "name": "Area OP1 (POperc) - left hemisphere",
+                              "rgb": [
+                                250,
+                                182,
+                                34
+                              ],
+                              "labelIndex": 73,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -51566527,
+                                -22523828,
+                                17190240
+                              ]
+                            },
+                            {
+                              "name": "Area OP1 (POperc) - right hemisphere",
+                              "rgb": [
+                                250,
+                                182,
+                                34
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 73,
+                              "children": [],
+                              "position": [
+                                52888430,
+                                -20697107,
+                                17000826
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "postcentral gyrus",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area 1 (PostCG)",
+                          "arealabel": "Area-1",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            232,
+                            185,
+                            250
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 1 (PostCG) - left hemisphere",
+                              "rgb": [
+                                232,
+                                185,
+                                250
+                              ],
+                              "labelIndex": 125,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -47104485,
+                                -28297920,
+                                57798046
+                              ]
+                            },
+                            {
+                              "name": "Area 1 (PostCG) - right hemisphere",
+                              "rgb": [
+                                232,
+                                185,
+                                250
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 125,
+                              "children": [],
+                              "position": [
+                                48452543,
+                                -27132790,
+                                56150187
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area 3b (PostCG)",
+                          "arealabel": "Area-3b",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            239,
+                            246,
+                            155
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 3b (PostCG) - left hemisphere",
+                              "rgb": [
+                                239,
+                                246,
+                                155
+                              ],
+                              "labelIndex": 127,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -44439219,
+                                -21735041,
+                                46012387
+                              ]
+                            },
+                            {
+                              "name": "Area 3b (PostCG) - right hemisphere",
+                              "rgb": [
+                                239,
+                                246,
+                                155
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 127,
+                              "children": [],
+                              "position": [
+                                38765839,
+                                -25096118,
+                                48227174
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area 3a (PostCG)",
+                          "arealabel": "Area-3a",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            187,
+                            133,
+                            50
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 3a (PostCG) - left hemisphere",
+                              "rgb": [
+                                187,
+                                133,
+                                50
+                              ],
+                              "labelIndex": 126,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -31927553,
+                                -25650901,
+                                44513889
+                              ]
+                            },
+                            {
+                              "name": "Area 3a (PostCG) - right hemisphere",
+                              "rgb": [
+                                187,
+                                133,
+                                50
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 126,
+                              "children": [],
+                              "position": [
+                                38813714,
+                                -19184000,
+                                36284571
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area 2 (PostCS)",
+                          "arealabel": "Area-2",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            23,
+                            13,
+                            35
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 2 (PostCS) - left hemisphere",
+                              "rgb": [
+                                23,
+                                13,
+                                35
+                              ],
+                              "labelIndex": 252,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -42268059,
+                                -32424512,
+                                51210202
+                              ]
+                            },
+                            {
+                              "name": "Area 2 (PostCS) - right hemisphere",
+                              "rgb": [
+                                23,
+                                13,
+                                35
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 252,
+                              "children": [],
+                              "position": [
+                                38223619,
+                                -34651627,
+                                52535010
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "inferior parietal lobule",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area PFm (IPL)",
+                          "arealabel": "Area-PFm",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            53,
+                            76,
+                            145
+                          ],
+                          "children": [
+                            {
+                              "name": "Area PFm (IPL) - left hemisphere",
+                              "rgb": [
+                                53,
+                                76,
+                                145
+                              ],
+                              "labelIndex": 112,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -54527689,
+                                -52389045,
+                                38877207
+                              ]
+                            },
+                            {
+                              "name": "Area PFm (IPL) - right hemisphere",
+                              "rgb": [
+                                53,
+                                76,
+                                145
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 112,
+                              "children": [],
+                              "position": [
+                                56990022,
+                                -45541717,
+                                38606571
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area PFop (IPL)",
+                          "arealabel": "Area-PFop",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            146,
+                            153,
+                            177
+                          ],
+                          "children": [
+                            {
+                              "name": "Area PFop (IPL) - left hemisphere",
+                              "rgb": [
+                                146,
+                                153,
+                                177
+                              ],
+                              "labelIndex": 111,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -60026462,
+                                -24694986,
+                                24259053
+                              ]
+                            },
+                            {
+                              "name": "Area PFop (IPL) - right hemisphere",
+                              "rgb": [
+                                146,
+                                153,
+                                177
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 111,
+                              "children": [],
+                              "position": [
+                                58286575,
+                                -20617534,
+                                24917260
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area PF (IPL)",
+                          "arealabel": "Area-PF",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            226,
+                            211,
+                            61
+                          ],
+                          "children": [
+                            {
+                              "name": "Area PF (IPL) - left hemisphere",
+                              "rgb": [
+                                226,
+                                211,
+                                61
+                              ],
+                              "labelIndex": 206,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -59814938,
+                                -37432365,
+                                36569295
+                              ]
+                            },
+                            {
+                              "name": "Area PF (IPL) - right hemisphere",
+                              "rgb": [
+                                226,
+                                211,
+                                61
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 206,
+                              "children": [],
+                              "position": [
+                                64016699,
+                                -33052700,
+                                30153112
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area PGp (IPL)",
+                          "arealabel": "Area-PGp",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            92,
+                            116,
+                            83
+                          ],
+                          "children": [
+                            {
+                              "name": "Area PGp (IPL) - left hemisphere",
+                              "rgb": [
+                                92,
+                                116,
+                                83
+                              ],
+                              "labelIndex": 108,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -44673441,
+                                -73269937,
+                                29840224
+                              ]
+                            },
+                            {
+                              "name": "Area PGp (IPL) - right hemisphere",
+                              "rgb": [
+                                92,
+                                116,
+                                83
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 108,
+                              "children": [],
+                              "position": [
+                                47749459,
+                                -70528695,
+                                30721440
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area PGa (IPL)",
+                          "arealabel": "Area-PGa",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            42,
+                            236,
+                            131
+                          ],
+                          "children": [
+                            {
+                              "name": "Area PGa (IPL) - left hemisphere",
+                              "rgb": [
+                                42,
+                                236,
+                                131
+                              ],
+                              "labelIndex": 110,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -48873487,
+                                -60780569,
+                                37191889
+                              ]
+                            },
+                            {
+                              "name": "Area PGa (IPL) - right hemisphere",
+                              "rgb": [
+                                42,
+                                236,
+                                131
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 110,
+                              "children": [],
+                              "position": [
+                                55283797,
+                                -55333653,
+                                30316395
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area PFt (IPL)",
+                          "arealabel": "Area-PFt",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            120,
+                            135,
+                            232
+                          ],
+                          "children": [
+                            {
+                              "name": "Area PFt (IPL) - left hemisphere",
+                              "rgb": [
+                                120,
+                                135,
+                                232
+                              ],
+                              "labelIndex": 109,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -55015237,
+                                -27583919,
+                                38095874
+                              ]
+                            },
+                            {
+                              "name": "Area PFt (IPL) - right hemisphere",
+                              "rgb": [
+                                120,
+                                135,
+                                232
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 109,
+                              "children": [],
+                              "position": [
+                                54808632,
+                                -24626296,
+                                37973570
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area PFcm (IPL)",
+                          "arealabel": "Area-PFcm",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            98,
+                            128,
+                            120
+                          ],
+                          "children": [
+                            {
+                              "name": "Area PFcm (IPL) - left hemisphere",
+                              "rgb": [
+                                98,
+                                128,
+                                120
+                              ],
+                              "labelIndex": 113,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -51751410,
+                                -36954069,
+                                22546334
+                              ]
+                            },
+                            {
+                              "name": "Area PFcm (IPL) - right hemisphere",
+                              "rgb": [
+                                98,
+                                128,
+                                120
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 113,
+                              "children": [],
+                              "position": [
+                                53524370,
+                                -31637287,
+                                23177904
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "parieto-occipital sulcus",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area hPO1 (POS)",
+                          "arealabel": "Area-hPO1",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            153,
+                            232,
+                            235
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hPO1 (POS) - left hemisphere",
+                              "rgb": [
+                                153,
+                                232,
+                                235
+                              ],
+                              "labelIndex": 297,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -15069260,
+                                -80661951,
+                                37074565
+                              ]
+                            },
+                            {
+                              "name": "Area hPO1 (POS) - right hemisphere",
+                              "rgb": [
+                                153,
+                                232,
+                                235
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 297,
+                              "children": [],
+                              "position": [
+                                21853147,
+                                -80927739,
+                                37048660
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "intraparietal sulcus",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area hIP5 (IPS)",
+                          "arealabel": "Area-hIP5",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            217,
+                            87,
+                            210
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hIP5 (IPS) - left hemisphere",
+                              "rgb": [
+                                217,
+                                87,
+                                210
+                              ],
+                              "labelIndex": 295,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -28321120,
+                                -73162807,
+                                36664362
+                              ]
+                            },
+                            {
+                              "name": "Area hIP5 (IPS) - right hemisphere",
+                              "rgb": [
+                                217,
+                                87,
+                                210
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 295,
+                              "children": [],
+                              "position": [
+                                34614713,
+                                -68930590,
+                                33299252
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area hIP3 (IPS)",
+                          "arealabel": "Area-hIP3",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            113,
+                            172,
+                            229
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hIP3 (IPS) - left hemisphere",
+                              "rgb": [
+                                113,
+                                172,
+                                229
+                              ],
+                              "labelIndex": 133,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -30430769,
+                                -55031164,
+                                46842209
+                              ]
+                            },
+                            {
+                              "name": "Area hIP3 (IPS) - right hemisphere",
+                              "rgb": [
+                                113,
+                                172,
+                                229
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 133,
+                              "children": [],
+                              "position": [
+                                33538679,
+                                -49884591,
+                                50461950
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area hIP8 (IPS)",
+                          "arealabel": "Area-hIP8",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            223,
+                            109,
+                            3
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hIP8 (IPS) - left hemisphere",
+                              "rgb": [
+                                223,
+                                109,
+                                3
+                              ],
+                              "labelIndex": 293,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -18133307,
+                                -72231198,
+                                43245125
+                              ]
+                            },
+                            {
+                              "name": "Area hIP8 (IPS) - right hemisphere",
+                              "rgb": [
+                                223,
+                                109,
+                                3
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 293,
+                              "children": [],
+                              "position": [
+                                26220986,
+                                -71480127,
+                                41680048
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area hIP4 (IPS)",
+                          "arealabel": "Area-hIP4",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            254,
+                            52,
+                            184
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hIP4 (IPS) - left hemisphere",
+                              "rgb": [
+                                254,
+                                52,
+                                184
+                              ],
+                              "labelIndex": 294,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -29349066,
+                                -79948651,
+                                25849585
+                              ]
+                            },
+                            {
+                              "name": "Area hIP4 (IPS) - right hemisphere",
+                              "rgb": [
+                                254,
+                                52,
+                                184
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 294,
+                              "children": [],
+                              "position": [
+                                37324927,
+                                -76495150,
+                                22338021
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area hIP7 (IPS)",
+                          "arealabel": "Area-hIP7",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            71,
+                            196,
+                            218
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hIP7 (IPS) - left hemisphere",
+                              "rgb": [
+                                71,
+                                196,
+                                218
+                              ],
+                              "labelIndex": 296,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -22044741,
+                                -79989011,
+                                29353218
+                              ]
+                            },
+                            {
+                              "name": "Area hIP7 (IPS) - right hemisphere",
+                              "rgb": [
+                                71,
+                                196,
+                                218
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 296,
+                              "children": [],
+                              "position": [
+                                29041586,
+                                -79117828,
+                                27046207
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area hIP1 (IPS)",
+                          "arealabel": "Area-hIP1",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            66,
+                            149,
+                            82
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hIP1 (IPS) - left hemisphere",
+                              "rgb": [
+                                66,
+                                149,
+                                82
+                              ],
+                              "labelIndex": 128,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -36841999,
+                                -49449871,
+                                40584028
+                              ]
+                            },
+                            {
+                              "name": "Area hIP1 (IPS) - right hemisphere",
+                              "rgb": [
+                                66,
+                                149,
+                                82
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 128,
+                              "children": [],
+                              "position": [
+                                40629988,
+                                -48019372,
+                                39158853
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area hIP6 (IPS)",
+                          "arealabel": "Area-hIP6",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            237,
+                            233,
+                            37
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hIP6 (IPS) - left hemisphere",
+                              "rgb": [
+                                237,
+                                233,
+                                37
+                              ],
+                              "labelIndex": 292,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -31988131,
+                                -66522626,
+                                46155045
+                              ]
+                            },
+                            {
+                              "name": "Area hIP6 (IPS) - right hemisphere",
+                              "rgb": [
+                                237,
+                                233,
+                                37
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 292,
+                              "children": [],
+                              "position": [
+                                37069307,
+                                -63723479,
+                                45628006
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area hIP2 (IPS)",
+                          "arealabel": "Area-hIP2",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            127,
+                            245,
+                            203
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hIP2 (IPS) - left hemisphere",
+                              "rgb": [
+                                127,
+                                245,
+                                203
+                              ],
+                              "labelIndex": 129,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -46531100,
+                                -41482722,
+                                43278044
+                              ]
+                            },
+                            {
+                              "name": "Area hIP2 (IPS) - right hemisphere",
+                              "rgb": [
+                                127,
+                                245,
+                                203
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 129,
+                              "children": [],
+                              "position": [
+                                44605145,
+                                -39958613,
+                                45130872
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    }
+                  ]
+                },
+                {
+                  "name": "occiptal lobe",
+                  "status": null,
+                  "labelIndex": null,
+                  "synonyms": [],
+                  "rgb": null,
+                  "children": [
+                    {
+                      "name": "dorsal occipital cortex",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area hOc4d (Cuneus)",
+                          "arealabel": "Area-hOc4d",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            109,
+                            218,
+                            10
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hOc4d (Cuneus) - left hemisphere",
+                              "rgb": [
+                                109,
+                                218,
+                                10
+                              ],
+                              "labelIndex": 119,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -17209585,
+                                -87846006,
+                                25522684
+                              ]
+                            },
+                            {
+                              "name": "Area hOc4d (Cuneus) - right hemisphere",
+                              "rgb": [
+                                109,
+                                218,
+                                10
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 119,
+                              "children": [],
+                              "position": [
+                                20232373,
+                                -87193644,
+                                27253227
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area hOc3d (Cuneus)",
+                          "arealabel": "Area-hOc3d",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            105,
+                            191,
+                            48
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hOc3d (Cuneus) - left hemisphere",
+                              "rgb": [
+                                105,
+                                191,
+                                48
+                              ],
+                              "labelIndex": 120,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -12816505,
+                                -91289984,
+                                21840872
+                              ]
+                            },
+                            {
+                              "name": "Area hOc3d (Cuneus) - right hemisphere",
+                              "rgb": [
+                                105,
+                                191,
+                                48
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 120,
+                              "children": [],
+                              "position": [
+                                16129503,
+                                -88897084,
+                                23080617
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area hOc6 (POS)",
+                          "arealabel": "Area-hOc6",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            239,
+                            66,
+                            26
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hOc6 (POS) - left hemisphere",
+                              "rgb": [
+                                239,
+                                66,
+                                26
+                              ],
+                              "labelIndex": 291,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -15925775,
+                                -70685971,
+                                16518760
+                              ]
+                            },
+                            {
+                              "name": "Area hOc6 (POS) - right hemisphere",
+                              "rgb": [
+                                239,
+                                66,
+                                26
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 291,
+                              "children": [],
+                              "position": [
+                                17750454,
+                                -67625227,
+                                17755898
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "ventral occipital cortex",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area hOc4v (LingG)",
+                          "arealabel": "Area-hOc4v",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            222,
+                            77,
+                            155
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hOc4v (LingG) - left hemisphere",
+                              "rgb": [
+                                222,
+                                77,
+                                155
+                              ],
+                              "labelIndex": 9,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -26315808,
+                                -78419533,
+                                -12497238
+                              ]
+                            },
+                            {
+                              "name": "Area hOc4v (LingG) - right hemisphere",
+                              "rgb": [
+                                222,
+                                77,
+                                155
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 9,
+                              "children": [],
+                              "position": [
+                                32665897,
+                                -76519832,
+                                -12453305
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area hOc3v (LingG)",
+                          "arealabel": "Area-hOc3v",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            83,
+                            179,
+                            155
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hOc3v (LingG) - left hemisphere",
+                              "rgb": [
+                                83,
+                                179,
+                                155
+                              ],
+                              "labelIndex": 10,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -18685863,
+                                -85629087,
+                                -10106719
+                              ]
+                            },
+                            {
+                              "name": "Area hOc3v (LingG) - right hemisphere",
+                              "rgb": [
+                                83,
+                                179,
+                                155
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 10,
+                              "children": [],
+                              "position": [
+                                24296060,
+                                -81686611,
+                                -10031193
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "occipital cortex",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area hOc2 (V2, 18)",
+                          "arealabel": "Area-hOc2",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            84,
+                            110,
+                            22
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hOc2 (V2, 18) - left hemisphere",
+                              "rgb": [
+                                84,
+                                110,
+                                22
+                              ],
+                              "labelIndex": 7,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -10521334,
+                                -88185706,
+                                4055081
+                              ]
+                            },
+                            {
+                              "name": "Area hOc2 (V2, 18) - right hemisphere",
+                              "rgb": [
+                                84,
+                                110,
+                                22
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 7,
+                              "children": [],
+                              "position": [
+                                15409559,
+                                -86163484,
+                                2905309
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area hOc1 (V1, 17, CalcS)",
+                          "arealabel": "Area-hOc1",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            190,
+                            132,
+                            147
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hOc1 (V1, 17, CalcS) - left hemisphere",
+                              "rgb": [
+                                190,
+                                132,
+                                147
+                              ],
+                              "labelIndex": 8,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -8533787,
+                                -84646549,
+                                1855106
+                              ]
+                            },
+                            {
+                              "name": "Area hOc1 (V1, 17, CalcS) - right hemisphere",
+                              "rgb": [
+                                190,
+                                132,
+                                147
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 8,
+                              "children": [],
+                              "position": [
+                                14654595,
+                                -81416396,
+                                1637838
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "lateral occipital cortex",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area hOc5 (LOC)",
+                          "arealabel": "Area-hOc5",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            255,
+                            0,
+                            0
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hOc5 (LOC) - left hemisphere",
+                              "rgb": [
+                                255,
+                                0,
+                                0
+                              ],
+                              "labelIndex": 6,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -42484324,
+                                -71486486,
+                                1795676
+                              ]
+                            },
+                            {
+                              "name": "Area hOc5 (LOC) - right hemisphere",
+                              "rgb": [
+                                255,
+                                0,
+                                0
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 6,
+                              "children": [],
+                              "position": [
+                                48090700,
+                                -66172216,
+                                3121699
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area hOc4la (LOC)",
+                          "arealabel": "Area-hOc4la",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            233,
+                            168,
+                            189
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hOc4la (LOC) - left hemisphere",
+                              "rgb": [
+                                233,
+                                168,
+                                189
+                              ],
+                              "labelIndex": 118,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -46291484,
+                                -76947955,
+                                -372761
+                              ]
+                            },
+                            {
+                              "name": "Area hOc4la (LOC) - right hemisphere",
+                              "rgb": [
+                                233,
+                                168,
+                                189
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 118,
+                              "children": [],
+                              "position": [
+                                48566255,
+                                -73862041,
+                                -779202
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area hOc4lp (LOC)",
+                          "arealabel": "Area-hOc4lp",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            96,
+                            113,
+                            253
+                          ],
+                          "children": [
+                            {
+                              "name": "Area hOc4lp (LOC) - left hemisphere",
+                              "rgb": [
+                                96,
+                                113,
+                                253
+                              ],
+                              "labelIndex": 117,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -34066943,
+                                -88725728,
+                                6360721
+                              ]
+                            },
+                            {
+                              "name": "Area hOc4lp (LOC) - right hemisphere",
+                              "rgb": [
+                                96,
+                                113,
+                                253
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 117,
+                              "children": [],
+                              "position": [
+                                38538256,
+                                -86375516,
+                                4086228
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    }
+                  ]
+                },
+                {
+                  "name": "frontal lobe",
+                  "status": null,
+                  "labelIndex": null,
+                  "synonyms": [],
+                  "rgb": null,
+                  "children": [
+                    {
+                      "name": "inferior frontal sulcus",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area ifj1 (IFS/PreS)",
+                          "arealabel": "Area-ifj1",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            71,
+                            244,
+                            160
+                          ],
+                          "children": [
+                            {
+                              "name": "Area ifj1 (IFS/PreS) - left hemisphere",
+                              "rgb": [
+                                71,
+                                244,
+                                160
+                              ],
+                              "labelIndex": 248,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -38765766,
+                                14151351,
+                                29374775
+                              ]
+                            },
+                            {
+                              "name": "Area ifj1 (IFS/PreS) - right hemisphere",
+                              "rgb": [
+                                71,
+                                244,
+                                160
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 248,
+                              "children": [],
+                              "position": [
+                                44950769,
+                                13790769,
+                                27640000
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area ifs4 (IFS)",
+                          "arealabel": "Area-ifs4",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            86,
+                            17,
+                            211
+                          ],
+                          "children": [
+                            {
+                              "name": "Area ifs4 (IFS) - left hemisphere",
+                              "rgb": [
+                                86,
+                                17,
+                                211
+                              ],
+                              "labelIndex": 247,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -45241935,
+                                18912903,
+                                26316129
+                              ]
+                            },
+                            {
+                              "name": "Area ifs4 (IFS) - right hemisphere",
+                              "rgb": [
+                                86,
+                                17,
+                                211
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 247,
+                              "children": [],
+                              "position": [
+                                43070175,
+                                17662768,
+                                28884990
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area ifs1 (IFS)",
+                          "arealabel": "Area-ifs1",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            172,
+                            20,
+                            136
+                          ],
+                          "children": [
+                            {
+                              "name": "Area ifs1 (IFS) - left hemisphere",
+                              "rgb": [
+                                172,
+                                20,
+                                136
+                              ],
+                              "labelIndex": 244,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -39909399,
+                                27014395,
+                                23931414
+                              ]
+                            },
+                            {
+                              "name": "Area ifs1 (IFS) - right hemisphere",
+                              "rgb": [
+                                172,
+                                20,
+                                136
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 244,
+                              "children": [],
+                              "position": [
+                                38421729,
+                                23445093,
+                                24414720
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area ifj2 (IFS/PreS)",
+                          "arealabel": "Area-ifj2",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            14,
+                            247,
+                            132
+                          ],
+                          "children": [
+                            {
+                              "name": "Area ifj2 (IFS/PreS) - left hemisphere",
+                              "rgb": [
+                                14,
+                                247,
+                                132
+                              ],
+                              "labelIndex": 249,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -40777679,
+                                8421429,
+                                31152679
+                              ]
+                            },
+                            {
+                              "name": "Area ifj2 (IFS/PreS) - right hemisphere",
+                              "rgb": [
+                                14,
+                                247,
+                                132
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 249,
+                              "children": [],
+                              "position": [
+                                44411559,
+                                8760070,
+                                25188266
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area ifs2 (IFS)",
+                          "arealabel": "Area-ifs2",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            183,
+                            42,
+                            247
+                          ],
+                          "children": [
+                            {
+                              "name": "Area ifs2 (IFS) - left hemisphere",
+                              "rgb": [
+                                183,
+                                42,
+                                247
+                              ],
+                              "labelIndex": 245,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -45300578,
+                                24184971,
+                                23809249
+                              ]
+                            },
+                            {
+                              "name": "Area ifs2 (IFS) - right hemisphere",
+                              "rgb": [
+                                183,
+                                42,
+                                247
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 245,
+                              "children": [],
+                              "position": [
+                                45405759,
+                                21756545,
+                                24905759
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area ifs3 (IFS)",
+                          "arealabel": "Area-ifs3",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            144,
+                            30,
+                            126
+                          ],
+                          "children": [
+                            {
+                              "name": "Area ifs3 (IFS) - left hemisphere",
+                              "rgb": [
+                                144,
+                                30,
+                                126
+                              ],
+                              "labelIndex": 246,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -40949064,
+                                19720374,
+                                31260915
+                              ]
+                            },
+                            {
+                              "name": "Area ifs3 (IFS) - right hemisphere",
+                              "rgb": [
+                                144,
+                                30,
+                                126
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 246,
+                              "children": [],
+                              "position": [
+                                39614936,
+                                18494749,
+                                32861144
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "inferior frontal gyrus",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area 44 (IFG)",
+                          "arealabel": "Area-44",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            54,
+                            74,
+                            75
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 44 (IFG) - left hemisphere",
+                              "rgb": [
+                                54,
+                                74,
+                                75
+                              ],
+                              "labelIndex": 2,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -54242820,
+                                11425127,
+                                18292735
+                              ]
+                            },
+                            {
+                              "name": "Area 44 (IFG) - right hemisphere",
+                              "rgb": [
+                                54,
+                                74,
+                                75
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 2,
+                              "children": [],
+                              "position": [
+                                56359074,
+                                11741030,
+                                13444358
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area 45 (IFG)",
+                          "arealabel": "Area-45",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            167,
+                            103,
+                            146
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 45 (IFG) - left hemisphere",
+                              "rgb": [
+                                167,
+                                103,
+                                146
+                              ],
+                              "labelIndex": 1,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -54903012,
+                                26558233,
+                                15528514
+                              ]
+                            },
+                            {
+                              "name": "Area 45 (IFG) - right hemisphere",
+                              "rgb": [
+                                167,
+                                103,
+                                146
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 1,
+                              "children": [],
+                              "position": [
+                                55787613,
+                                26216770,
+                                12102941
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "dorsal precentral gyrus",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area 6d1 (PreG)",
+                          "arealabel": "Area-6d1",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            45,
+                            33,
+                            27
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 6d1 (PreG) - left hemisphere",
+                              "rgb": [
+                                45,
+                                33,
+                                27
+                              ],
+                              "labelIndex": 287,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -20332759,
+                                -14746524,
+                                68590141
+                              ]
+                            },
+                            {
+                              "name": "Area 6d1 (PreG) - right hemisphere",
+                              "rgb": [
+                                45,
+                                33,
+                                27
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 287,
+                              "children": [],
+                              "position": [
+                                20258981,
+                                -16559656,
+                                68870890
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area 6d2 (PreG)",
+                          "arealabel": "Area-6d2",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            170,
+                            151,
+                            180
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 6d2 (PreG) - left hemisphere",
+                              "rgb": [
+                                170,
+                                151,
+                                180
+                              ],
+                              "labelIndex": 288,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -15757793,
+                                2030353,
+                                68024610
+                              ]
+                            },
+                            {
+                              "name": "Area 6d2 (PreG) - right hemisphere",
+                              "rgb": [
+                                170,
+                                151,
+                                180
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 288,
+                              "children": [],
+                              "position": [
+                                14562976,
+                                2312675,
+                                68442439
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "posterior medial superior frontal gyrus",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area 6ma (preSMA, mesial SFG)",
+                          "arealabel": "Area-6ma",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            204,
+                            108,
+                            222
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 6ma (preSMA, mesial SFG) - left hemisphere",
+                              "rgb": [
+                                204,
+                                108,
+                                222
+                              ],
+                              "labelIndex": 299,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -4083913,
+                                4296092,
+                                58555023
+                              ]
+                            },
+                            {
+                              "name": "Area 6ma (preSMA, mesial SFG) - right hemisphere",
+                              "rgb": [
+                                204,
+                                108,
+                                222
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 299,
+                              "children": [],
+                              "position": [
+                                5230140,
+                                4042128,
+                                58355079
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "superior frontal sulcus",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area 6d3 (SFS)",
+                          "arealabel": "Area-6d3",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            55,
+                            239,
+                            21
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 6d3 (SFS) - left hemisphere",
+                              "rgb": [
+                                55,
+                                239,
+                                21
+                              ],
+                              "labelIndex": 289,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -23315931,
+                                4317151,
+                                51434008
+                              ]
+                            },
+                            {
+                              "name": "Area 6d3 (SFS) - right hemisphere",
+                              "rgb": [
+                                55,
+                                239,
+                                21
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 289,
+                              "children": [],
+                              "position": [
+                                25173639,
+                                1578188,
+                                53334281
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "frontal pole",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area Fp1 (FPole)",
+                          "arealabel": "Area-Fp1",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            226,
+                            14,
+                            200
+                          ],
+                          "children": [
+                            {
+                              "name": "Area Fp1 (FPole) - left hemisphere",
+                              "rgb": [
+                                226,
+                                14,
+                                200
+                              ],
+                              "labelIndex": 212,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -16331031,
+                                64168302,
+                                549101
+                              ]
+                            },
+                            {
+                              "name": "Area Fp1 (FPole) - right hemisphere",
+                              "rgb": [
+                                226,
+                                14,
+                                200
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 212,
+                              "children": [],
+                              "position": [
+                                18482225,
+                                63988011,
+                                -317043
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area Fp2 (FPole)",
+                          "arealabel": "Area-Fp2",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            239,
+                            137,
+                            211
+                          ],
+                          "children": [
+                            {
+                              "name": "Area Fp2 (FPole) - left hemisphere",
+                              "rgb": [
+                                239,
+                                137,
+                                211
+                              ],
+                              "labelIndex": 211,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -3739067,
+                                59074587,
+                                -1181973
+                              ]
+                            },
+                            {
+                              "name": "Area Fp2 (FPole) - right hemisphere",
+                              "rgb": [
+                                239,
+                                137,
+                                211
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 211,
+                              "children": [],
+                              "position": [
+                                6093420,
+                                59611191,
+                                -509606
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "precentral gyrus ",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area 4p (PreCG)",
+                          "arealabel": "Area-4p",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            116,
+                            92,
+                            124
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 4p (PreCG) - left hemisphere",
+                              "rgb": [
+                                116,
+                                92,
+                                124
+                              ],
+                              "labelIndex": 123,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -36140917,
+                                -22750424,
+                                49282965
+                              ]
+                            },
+                            {
+                              "name": "Area 4p (PreCG) - right hemisphere",
+                              "rgb": [
+                                116,
+                                92,
+                                124
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 123,
+                              "children": [],
+                              "position": [
+                                37510795,
+                                -21359659,
+                                46456250
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area 4a (PreCG)",
+                          "arealabel": "Area-4a",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            118,
+                            239,
+                            183
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 4a (PreCG) - left hemisphere",
+                              "rgb": [
+                                118,
+                                239,
+                                183
+                              ],
+                              "labelIndex": 124,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -17367391,
+                                -28669064,
+                                67404682
+                              ]
+                            },
+                            {
+                              "name": "Area 4a (PreCG) - right hemisphere",
+                              "rgb": [
+                                118,
+                                239,
+                                183
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 124,
+                              "children": [],
+                              "position": [
+                                9609157,
+                                -31334779,
+                                68068112
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "mesial precentral gyrus",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area 6mp (SMA, mesial SFG)",
+                          "arealabel": "Area-6mp",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            75,
+                            95,
+                            87
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 6mp (SMA, mesial SFG) - left hemisphere",
+                              "rgb": [
+                                75,
+                                95,
+                                87
+                              ],
+                              "labelIndex": 298,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -4094374,
+                                -14286751,
+                                59329220
+                              ]
+                            },
+                            {
+                              "name": "Area 6mp (SMA, mesial SFG) - right hemisphere",
+                              "rgb": [
+                                75,
+                                95,
+                                87
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 298,
+                              "children": [],
+                              "position": [
+                                4949202,
+                                -13788668,
+                                57534028
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "medial orbitofrontal cortex",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area Fo3 (OFC)",
+                          "arealabel": "Area-Fo3",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            182,
+                            189,
+                            250
+                          ],
+                          "children": [
+                            {
+                              "name": "Area Fo3 (OFC) - left hemisphere",
+                              "rgb": [
+                                182,
+                                189,
+                                250
+                              ],
+                              "labelIndex": 5,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -21866985,
+                                33732378,
+                                -19882472
+                              ]
+                            },
+                            {
+                              "name": "Area Fo3 (OFC) - right hemisphere",
+                              "rgb": [
+                                182,
+                                189,
+                                250
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 5,
+                              "children": [],
+                              "position": [
+                                22929678,
+                                33527877,
+                                -20231493
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area Fo1 (OFC)",
+                          "arealabel": "Area-Fo1",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            7,
+                            255,
+                            179
+                          ],
+                          "children": [
+                            {
+                              "name": "Area Fo1 (OFC) - left hemisphere",
+                              "rgb": [
+                                7,
+                                255,
+                                179
+                              ],
+                              "labelIndex": 3,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -7962771,
+                                41364968,
+                                -22537687
+                              ]
+                            },
+                            {
+                              "name": "Area Fo1 (OFC) - right hemisphere",
+                              "rgb": [
+                                7,
+                                255,
+                                179
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 3,
+                              "children": [],
+                              "position": [
+                                9705948,
+                                40760961,
+                                -22481988
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area Fo2 (OFC)",
+                          "arealabel": "Area-Fo2",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            0,
+                            255,
+                            0
+                          ],
+                          "children": [
+                            {
+                              "name": "Area Fo2 (OFC) - left hemisphere",
+                              "rgb": [
+                                0,
+                                255,
+                                0
+                              ],
+                              "labelIndex": 4,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -8588272,
+                                22532156,
+                                -20474464
+                              ]
+                            },
+                            {
+                              "name": "Area Fo2 (OFC) - right hemisphere",
+                              "rgb": [
+                                0,
+                                255,
+                                0
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 4,
+                              "children": [],
+                              "position": [
+                                9164379,
+                                21928964,
+                                -20593342
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "frontal operculum ",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area OP9 (Frontal Operculum)",
+                          "arealabel": "Area-OP9",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            175,
+                            123,
+                            34
+                          ],
+                          "children": [
+                            {
+                              "name": "Area OP9 (Frontal Operculum) - left hemisphere",
+                              "rgb": [
+                                175,
+                                123,
+                                34
+                              ],
+                              "labelIndex": 274,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -45090542,
+                                25998787,
+                                5597413
+                              ]
+                            },
+                            {
+                              "name": "Area OP9 (Frontal Operculum) - right hemisphere",
+                              "rgb": [
+                                175,
+                                123,
+                                34
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 274,
+                              "children": [],
+                              "position": [
+                                44374928,
+                                26272467,
+                                2966228
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area OP8 (Frontal Operculum)",
+                          "arealabel": "Area-OP8",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            29,
+                            76,
+                            168
+                          ],
+                          "children": [
+                            {
+                              "name": "Area OP8 (Frontal Operculum) - left hemisphere",
+                              "rgb": [
+                                29,
+                                76,
+                                168
+                              ],
+                              "labelIndex": 273,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -41777921,
+                                17183344,
+                                7912847
+                              ]
+                            },
+                            {
+                              "name": "Area OP8 (Frontal Operculum) - right hemisphere",
+                              "rgb": [
+                                29,
+                                76,
+                                168
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 273,
+                              "children": [],
+                              "position": [
+                                42725111,
+                                16774146,
+                                7832095
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "lateral orbitofrontal cortex",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area Fo5 (OFC)",
+                          "arealabel": "Area-Fo5",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            219,
+                            11,
+                            91
+                          ],
+                          "children": [
+                            {
+                              "name": "Area Fo5 (OFC) - left hemisphere",
+                              "rgb": [
+                                219,
+                                11,
+                                91
+                              ],
+                              "labelIndex": 325,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -38055351,
+                                56315867,
+                                -8720295
+                              ]
+                            },
+                            {
+                              "name": "Area Fo5 (OFC) - right hemisphere",
+                              "rgb": [
+                                219,
+                                11,
+                                91
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 325,
+                              "children": [],
+                              "position": [
+                                40545983,
+                                54504228,
+                                -4983615
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area Fo7 (OFC)",
+                          "arealabel": "Area-Fo7",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            64,
+                            211,
+                            186
+                          ],
+                          "children": [
+                            {
+                              "name": "Area Fo7 (OFC) - left hemisphere",
+                              "rgb": [
+                                64,
+                                211,
+                                186
+                              ],
+                              "labelIndex": 327,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -36046240,
+                                37308943,
+                                -11666667
+                              ]
+                            },
+                            {
+                              "name": "Area Fo7 (OFC) - right hemisphere",
+                              "rgb": [
+                                64,
+                                211,
+                                186
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 327,
+                              "children": [],
+                              "position": [
+                                37850755,
+                                37700302,
+                                -13777644
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area Fo4 (OFC)",
+                          "arealabel": "Area-Fo4",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            163,
+                            204,
+                            53
+                          ],
+                          "children": [
+                            {
+                              "name": "Area Fo4 (OFC) - left hemisphere",
+                              "rgb": [
+                                163,
+                                204,
+                                53
+                              ],
+                              "labelIndex": 324,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -27573653,
+                                52998204,
+                                -14510778
+                              ]
+                            },
+                            {
+                              "name": "Area Fo4 (OFC) - right hemisphere",
+                              "rgb": [
+                                163,
+                                204,
+                                53
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 324,
+                              "children": [],
+                              "position": [
+                                33636124,
+                                52034755,
+                                -15509742
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area Fo6 (OFC)",
+                          "arealabel": "Area-Fo6",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            199,
+                            156,
+                            187
+                          ],
+                          "children": [
+                            {
+                              "name": "Area Fo6 (OFC) - left hemisphere",
+                              "rgb": [
+                                199,
+                                156,
+                                187
+                              ],
+                              "labelIndex": 326,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -44272971,
+                                42876258,
+                                -12938967
+                              ]
+                            },
+                            {
+                              "name": "Area Fo6 (OFC) - right hemisphere",
+                              "rgb": [
+                                199,
+                                156,
+                                187
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 326,
+                              "children": [],
+                              "position": [
+                                48891176,
+                                40513824,
+                                -12457353
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    }
+                  ]
+                },
+                {
+                  "name": "insula",
+                  "status": null,
+                  "labelIndex": null,
+                  "synonyms": [],
+                  "rgb": null,
+                  "children": [
+                    {
+                      "name": "granular insula",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area Ig1 (Insula)",
+                          "arealabel": "Area-Ig1",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            18,
+                            111,
+                            40
+                          ],
+                          "children": [
+                            {
+                              "name": "Area Ig1 (Insula) - left hemisphere",
+                              "rgb": [
+                                18,
+                                111,
+                                40
+                              ],
+                              "labelIndex": 115,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -33211215,
+                                -24171963,
+                                9923364
+                              ]
+                            },
+                            {
+                              "name": "Area Ig1 (Insula) - right hemisphere",
+                              "rgb": [
+                                18,
+                                111,
+                                40
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 115,
+                              "children": [],
+                              "position": [
+                                33707983,
+                                -23338235,
+                                9071429
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area Ig2 (Insula)",
+                          "arealabel": "Area-Ig2",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            105,
+                            61,
+                            82
+                          ],
+                          "children": [
+                            {
+                              "name": "Area Ig2 (Insula) - left hemisphere",
+                              "rgb": [
+                                105,
+                                61,
+                                82
+                              ],
+                              "labelIndex": 114,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -37117338,
+                                -17859895,
+                                5094571
+                              ]
+                            },
+                            {
+                              "name": "Area Ig2 (Insula) - right hemisphere",
+                              "rgb": [
+                                105,
+                                61,
+                                82
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 114,
+                              "children": [],
+                              "position": [
+                                37843632,
+                                -16445145,
+                                5703657
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "agranular insula",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area Ia (Insula)",
+                          "arealabel": "Area-Ia",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            71,
+                            217,
+                            62
+                          ],
+                          "children": [
+                            {
+                              "name": "Area Ia (Insula) - left hemisphere",
+                              "rgb": [
+                                71,
+                                217,
+                                62
+                              ],
+                              "labelIndex": 339,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -41612827,
+                                -1876485,
+                                -7019002
+                              ]
+                            },
+                            {
+                              "name": "Area Ia (Insula) - right hemisphere",
+                              "rgb": [
+                                71,
+                                217,
+                                62
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 339,
+                              "children": [],
+                              "position": [
+                                43525000,
+                                36538,
+                                -7609615
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "dys-/agranular insula",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area Id7 (Insula)",
+                          "arealabel": "Area-Id7",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            101,
+                            202,
+                            38
+                          ],
+                          "children": [
+                            {
+                              "name": "Area Id7 (Insula) - left hemisphere",
+                              "rgb": [
+                                101,
+                                202,
+                                38
+                              ],
+                              "labelIndex": 159,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -30926962,
+                                23741297,
+                                4787031
+                              ]
+                            },
+                            {
+                              "name": "Area Id7 (Insula) - right hemisphere",
+                              "rgb": [
+                                101,
+                                202,
+                                38
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 159,
+                              "children": [],
+                              "position": [
+                                35034429,
+                                24873239,
+                                2446009
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "dysgranular insula",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area Id1 (Insula)",
+                          "arealabel": "Area-Id1",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            141,
+                            112,
+                            216
+                          ],
+                          "children": [
+                            {
+                              "name": "Area Id1 (Insula) - left hemisphere",
+                              "rgb": [
+                                141,
+                                112,
+                                216
+                              ],
+                              "labelIndex": 116,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -40090747,
+                                -18279359,
+                                -4567616
+                              ]
+                            },
+                            {
+                              "name": "Area Id1 (Insula) - right hemisphere",
+                              "rgb": [
+                                141,
+                                112,
+                                216
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 116,
+                              "children": [],
+                              "position": [
+                                40527825,
+                                -17443508,
+                                -4688027
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area Id5 (Insula)",
+                          "arealabel": "Area-Id5",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            112,
+                            6,
+                            50
+                          ],
+                          "children": [
+                            {
+                              "name": "Area Id5 (Insula) - left hemisphere",
+                              "rgb": [
+                                112,
+                                6,
+                                50
+                              ],
+                              "labelIndex": 338,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -40174302,
+                                -3354190,
+                                741899
+                              ]
+                            },
+                            {
+                              "name": "Area Id5 (Insula) - right hemisphere",
+                              "rgb": [
+                                112,
+                                6,
+                                50
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 338,
+                              "children": [],
+                              "position": [
+                                41094953,
+                                -2659538,
+                                607357
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area Id4 (Insula)",
+                          "arealabel": "Area-Id4",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            38,
+                            174,
+                            113
+                          ],
+                          "children": [
+                            {
+                              "name": "Area Id4 (Insula) - left hemisphere",
+                              "rgb": [
+                                38,
+                                174,
+                                113
+                              ],
+                              "labelIndex": 337,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -37055965,
+                                -3505155,
+                                11422680
+                              ]
+                            },
+                            {
+                              "name": "Area Id4 (Insula) - right hemisphere",
+                              "rgb": [
+                                38,
+                                174,
+                                113
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 337,
+                              "children": [],
+                              "position": [
+                                37461444,
+                                -3746634,
+                                10858017
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area Id6 (Insula)",
+                          "arealabel": "Area-Id6",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            138,
+                            127,
+                            119
+                          ],
+                          "children": [
+                            {
+                              "name": "Area Id6 (Insula) - left hemisphere",
+                              "rgb": [
+                                138,
+                                127,
+                                119
+                              ],
+                              "labelIndex": 340,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -36392282,
+                                9843698,
+                                3385341
+                              ]
+                            },
+                            {
+                              "name": "Area Id6 (Insula) - right hemisphere",
+                              "rgb": [
+                                138,
+                                127,
+                                119
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 340,
+                              "children": [],
+                              "position": [
+                                37750946,
+                                10762642,
+                                3041624
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    }
+                  ]
+                },
+                {
+                  "name": "temporal lobe",
+                  "status": null,
+                  "labelIndex": null,
+                  "synonyms": [],
+                  "rgb": null,
+                  "children": [
+                    {
+                      "name": "superior temporal sulcus",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area STS1 (STS)",
+                          "arealabel": "Area-STS1",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            205,
+                            228,
+                            4
+                          ],
+                          "children": [
+                            {
+                              "name": "Area STS1 (STS) - left hemisphere",
+                              "rgb": [
+                                205,
+                                228,
+                                4
+                              ],
+                              "labelIndex": 271,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -54514755,
+                                -16753913,
+                                -5260713
+                              ]
+                            },
+                            {
+                              "name": "Area STS1 (STS) - right hemisphere",
+                              "rgb": [
+                                205,
+                                228,
+                                4
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 271,
+                              "children": [],
+                              "position": [
+                                54536567,
+                                -17992636,
+                                -5712544
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area STS2 (STS)",
+                          "arealabel": "Area-STS2",
+                          "status": "publicDOI",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            62,
+                            117,
+                            123
+                          ],
+                          "children": [
+                            {
+                              "name": "Area STS2 (STS) - left hemisphere",
+                              "rgb": [
+                                62,
+                                117,
+                                123
+                              ],
+                              "labelIndex": 272,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -56352486,
+                                -8557380,
+                                -14844672
+                              ]
+                            },
+                            {
+                              "name": "Area STS2 (STS) - right hemisphere",
+                              "rgb": [
+                                62,
+                                117,
+                                123
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 272,
+                              "children": [],
+                              "position": [
+                                56942990,
+                                -8020716,
+                                -16067930
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "superior temporal gyrus",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area TE 3 (STG)",
+                          "arealabel": "Area-TE-3",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            159,
+                            104,
+                            108
+                          ],
+                          "children": [
+                            {
+                              "name": "Area TE 3 (STG) - left hemisphere",
+                              "rgb": [
+                                159,
+                                104,
+                                108
+                              ],
+                              "labelIndex": 31,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -64398501,
+                                -12497885,
+                                1316801
+                              ]
+                            },
+                            {
+                              "name": "Area TE 3 (STG) - right hemisphere",
+                              "rgb": [
+                                159,
+                                104,
+                                108
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 31,
+                              "children": [],
+                              "position": [
+                                65811519,
+                                -9018989,
+                                -1027621
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "Heschl's gyrus",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area TE 1.2 (HESCHL)",
+                          "arealabel": "Area-TE-1.2",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            202,
+                            251,
+                            192
+                          ],
+                          "children": [
+                            {
+                              "name": "Area TE 1.2 (HESCHL) - left hemisphere",
+                              "rgb": [
+                                202,
+                                251,
+                                192
+                              ],
+                              "labelIndex": 30,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -50810427,
+                                -6551343,
+                                1635071
+                              ]
+                            },
+                            {
+                              "name": "Area TE 1.2 (HESCHL) - right hemisphere",
+                              "rgb": [
+                                202,
+                                251,
+                                192
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 30,
+                              "children": [],
+                              "position": [
+                                55870330,
+                                -2672527,
+                                52747
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area TE 1.1 (HESCHL)",
+                          "arealabel": "Area-TE-1.1",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            8,
+                            113,
+                            68
+                          ],
+                          "children": [
+                            {
+                              "name": "Area TE 1.1 (HESCHL) - left hemisphere",
+                              "rgb": [
+                                8,
+                                113,
+                                68
+                              ],
+                              "labelIndex": 33,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -38219760,
+                                -27125577,
+                                10774700
+                              ]
+                            },
+                            {
+                              "name": "Area TE 1.1 (HESCHL) - right hemisphere",
+                              "rgb": [
+                                8,
+                                113,
+                                68
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 33,
+                              "children": [],
+                              "position": [
+                                40719340,
+                                -24106132,
+                                10308962
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area TE 1.0 (HESCHL)",
+                          "arealabel": "Area-TE-1.0",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            252,
+                            84,
+                            222
+                          ],
+                          "children": [
+                            {
+                              "name": "Area TE 1.0 (HESCHL) - left hemisphere",
+                              "rgb": [
+                                252,
+                                84,
+                                222
+                              ],
+                              "labelIndex": 27,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -46560150,
+                                -17508772,
+                                7622807
+                              ]
+                            },
+                            {
+                              "name": "Area TE 1.0 (HESCHL) - right hemisphere",
+                              "rgb": [
+                                252,
+                                84,
+                                222
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 27,
+                              "children": [],
+                              "position": [
+                                50392116,
+                                -12932573,
+                                5942946
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "fusiform gyrus",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area FG1 (FusG)",
+                          "arealabel": "Area-FG1",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            131,
+                            183,
+                            58
+                          ],
+                          "children": [
+                            {
+                              "name": "Area FG1 (FusG) - left hemisphere",
+                              "rgb": [
+                                131,
+                                183,
+                                58
+                              ],
+                              "labelIndex": 107,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -29006116,
+                                -66264526,
+                                -12290010
+                              ]
+                            },
+                            {
+                              "name": "Area FG1 (FusG) - right hemisphere",
+                              "rgb": [
+                                131,
+                                183,
+                                58
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 107,
+                              "children": [],
+                              "position": [
+                                32840456,
+                                -64340456,
+                                -12612536
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area FG4 (FusG)",
+                          "arealabel": "Area-FG4",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            170,
+                            220,
+                            175
+                          ],
+                          "children": [
+                            {
+                              "name": "Area FG4 (FusG) - left hemisphere",
+                              "rgb": [
+                                170,
+                                220,
+                                175
+                              ],
+                              "labelIndex": 238,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -43204016,
+                                -44325167,
+                                -20016734
+                              ]
+                            },
+                            {
+                              "name": "Area FG4 (FusG) - right hemisphere",
+                              "rgb": [
+                                170,
+                                220,
+                                175
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 238,
+                              "children": [],
+                              "position": [
+                                43609694,
+                                -43478025,
+                                -22392295
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area FG3 (FusG)",
+                          "arealabel": "Area-FG3",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            120,
+                            147,
+                            37
+                          ],
+                          "children": [
+                            {
+                              "name": "Area FG3 (FusG) - left hemisphere",
+                              "rgb": [
+                                120,
+                                147,
+                                37
+                              ],
+                              "labelIndex": 239,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -29844935,
+                                -45368421,
+                                -14184493
+                              ]
+                            },
+                            {
+                              "name": "Area FG3 (FusG) - right hemisphere",
+                              "rgb": [
+                                120,
+                                147,
+                                37
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 239,
+                              "children": [],
+                              "position": [
+                                31148061,
+                                -44485336,
+                                -15533822
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area FG2 (FusG)",
+                          "arealabel": "Area-FG2",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            67,
+                            94,
+                            149
+                          ],
+                          "children": [
+                            {
+                              "name": "Area FG2 (FusG) - left hemisphere",
+                              "rgb": [
+                                67,
+                                94,
+                                149
+                              ],
+                              "labelIndex": 106,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -43549584,
+                                -65531770,
+                                -16708135
+                              ]
+                            },
+                            {
+                              "name": "Area FG2 (FusG) - right hemisphere",
+                              "rgb": [
+                                67,
+                                94,
+                                149
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 106,
+                              "children": [],
+                              "position": [
+                                44839825,
+                                -63606518,
+                                -17316773
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    }
+                  ]
+                },
+                {
+                  "name": "limbic lobe",
+                  "status": null,
+                  "labelIndex": null,
+                  "synonyms": [],
+                  "rgb": null,
+                  "children": [
+                    {
+                      "name": "cingulate gyrus, frontal part",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Area p24c (pACC)",
+                          "arealabel": "Area-p24c",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            241,
+                            164,
+                            195
+                          ],
+                          "children": [
+                            {
+                              "name": "Area p24c (pACC) - left hemisphere",
+                              "rgb": [
+                                241,
+                                164,
+                                195
+                              ],
+                              "labelIndex": 232,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -8144989,
+                                41168443,
+                                14314854
+                              ]
+                            },
+                            {
+                              "name": "Area p24c (pACC) - right hemisphere",
+                              "rgb": [
+                                241,
+                                164,
+                                195
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 232,
+                              "children": [],
+                              "position": [
+                                9856593,
+                                40780558,
+                                12002406
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area p24ab (pACC)",
+                          "arealabel": "Area-p24ab",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            153,
+                            195,
+                            229
+                          ],
+                          "children": [
+                            {
+                              "name": "Area p24ab (pACC) - left hemisphere",
+                              "rgb": [
+                                153,
+                                195,
+                                229
+                              ],
+                              "labelIndex": 231,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -2244059,
+                                38783168,
+                                6389109
+                              ]
+                            },
+                            {
+                              "name": "Area p24ab (pACC) - right hemisphere",
+                              "rgb": [
+                                153,
+                                195,
+                                229
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 231,
+                              "children": [],
+                              "position": [
+                                3429274,
+                                38385609,
+                                7809963
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area s32 (sACC)",
+                          "arealabel": "Area-s32",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            193,
+                            94,
+                            250
+                          ],
+                          "children": [
+                            {
+                              "name": "Area s32 (sACC) - left hemisphere",
+                              "rgb": [
+                                193,
+                                94,
+                                250
+                              ],
+                              "labelIndex": 46,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -6738110,
+                                35256183,
+                                -11765377
+                              ]
+                            },
+                            {
+                              "name": "Area s32 (sACC) - right hemisphere",
+                              "rgb": [
+                                193,
+                                94,
+                                250
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 46,
+                              "children": [],
+                              "position": [
+                                4307795,
+                                34460360,
+                                -12141905
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area 25 (sACC)",
+                          "arealabel": "Area-25",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            170,
+                            68,
+                            220
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 25 (sACC) - left hemisphere",
+                              "rgb": [
+                                170,
+                                68,
+                                220
+                              ],
+                              "labelIndex": 184,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -3522692,
+                                13560250,
+                                -11860720
+                              ]
+                            },
+                            {
+                              "name": "Area 25 (sACC) - right hemisphere",
+                              "rgb": [
+                                170,
+                                68,
+                                220
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 184,
+                              "children": [],
+                              "position": [
+                                4564663,
+                                12954463,
+                                -12174863
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area s24 (sACC)",
+                          "arealabel": "Area-s24",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            133,
+                            34,
+                            201
+                          ],
+                          "children": [
+                            {
+                              "name": "Area s24 (sACC) - left hemisphere",
+                              "rgb": [
+                                133,
+                                34,
+                                201
+                              ],
+                              "labelIndex": 183,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -3247887,
+                                24596479,
+                                -9615493
+                              ]
+                            },
+                            {
+                              "name": "Area s24 (sACC) - right hemisphere",
+                              "rgb": [
+                                133,
+                                34,
+                                201
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 183,
+                              "children": [],
+                              "position": [
+                                3259899,
+                                23813535,
+                                -9257019
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area p32 (pACC)",
+                          "arealabel": "Area-p32",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            87,
+                            135,
+                            14
+                          ],
+                          "children": [
+                            {
+                              "name": "Area p32 (pACC) - left hemisphere",
+                              "rgb": [
+                                87,
+                                135,
+                                14
+                              ],
+                              "labelIndex": 47,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -6122937,
+                                49256108,
+                                11929896
+                              ]
+                            },
+                            {
+                              "name": "Area p32 (pACC) - right hemisphere",
+                              "rgb": [
+                                87,
+                                135,
+                                14
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 47,
+                              "children": [],
+                              "position": [
+                                7759613,
+                                48520792,
+                                12436058
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Area 33 (ACC)",
+                          "arealabel": "Area-33",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            51,
+                            57,
+                            245
+                          ],
+                          "children": [
+                            {
+                              "name": "Area 33 (ACC) - left hemisphere",
+                              "rgb": [
+                                51,
+                                57,
+                                245
+                              ],
+                              "labelIndex": 39,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -4861218,
+                                14163048,
+                                15911877
+                              ]
+                            },
+                            {
+                              "name": "Area 33 (ACC) - right hemisphere",
+                              "rgb": [
+                                51,
+                                57,
+                                245
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 39,
+                              "children": [],
+                              "position": [
+                                5087045,
+                                15562321,
+                                16125051
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "hippocampal formation",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Entorhinal Cortex",
+                          "arealabel": "Entorhinal-Cortex",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            35,
+                            159,
+                            214
+                          ],
+                          "children": [
+                            {
+                              "name": "Entorhinal Cortex - left hemisphere",
+                              "rgb": [
+                                35,
+                                159,
+                                214
+                              ],
+                              "labelIndex": 60,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -20926052,
+                                -6082765,
+                                -33357509
+                              ]
+                            },
+                            {
+                              "name": "Entorhinal Cortex - right hemisphere",
+                              "rgb": [
+                                35,
+                                159,
+                                214
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 60,
+                              "children": [],
+                              "position": [
+                                22877203,
+                                -3501469,
+                                -32577556
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "CA (Hippocampus)",
+                          "arealabel": "CA",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            250,
+                            191,
+                            217
+                          ],
+                          "children": [
+                            {
+                              "name": "CA (Hippocampus) - left hemisphere",
+                              "rgb": [
+                                250,
+                                191,
+                                217
+                              ],
+                              "labelIndex": 191,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -27476326,
+                                -26068931,
+                                -11082817
+                              ]
+                            },
+                            {
+                              "name": "CA (Hippocampus) - right hemisphere",
+                              "rgb": [
+                                250,
+                                191,
+                                217
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 191,
+                              "children": [],
+                              "position": [
+                                29426785,
+                                -24801145,
+                                -11142814
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "DG (Hippocampus)",
+                          "arealabel": "DG",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            149,
+                            55,
+                            120
+                          ],
+                          "children": [
+                            {
+                              "name": "DG (Hippocampus) - left hemisphere",
+                              "rgb": [
+                                149,
+                                55,
+                                120
+                              ],
+                              "labelIndex": 61,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -26946498,
+                                -26708171,
+                                -9589494
+                              ]
+                            },
+                            {
+                              "name": "DG (Hippocampus) - right hemisphere",
+                              "rgb": [
+                                149,
+                                55,
+                                120
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 61,
+                              "children": [],
+                              "position": [
+                                28316456,
+                                -24674684,
+                                -10596203
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Subiculum (Hippocampus)",
+                          "arealabel": "Subiculum",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            111,
+                            125,
+                            219
+                          ],
+                          "children": [
+                            {
+                              "name": "Subiculum (Hippocampus) - left hemisphere",
+                              "rgb": [
+                                111,
+                                125,
+                                219
+                              ],
+                              "labelIndex": 192,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -20352171,
+                                -24057796,
+                                -16326997
+                              ]
+                            },
+                            {
+                              "name": "Subiculum (Hippocampus) - right hemisphere",
+                              "rgb": [
+                                111,
+                                125,
+                                219
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 192,
+                              "children": [],
+                              "position": [
+                                22543982,
+                                -23195614,
+                                -15923499
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "HATA (Hippocampus)",
+                          "arealabel": "HATA",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            137,
+                            12,
+                            73
+                          ],
+                          "children": [
+                            {
+                              "name": "HATA (Hippocampus) - left hemisphere",
+                              "rgb": [
+                                137,
+                                12,
+                                73
+                              ],
+                              "labelIndex": 68,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -13947917,
+                                -9576389,
+                                -18975694
+                              ]
+                            },
+                            {
+                              "name": "HATA (Hippocampus) - right hemisphere",
+                              "rgb": [
+                                137,
+                                12,
+                                73
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 68,
+                              "children": [],
+                              "position": [
+                                15080586,
+                                -8358974,
+                                -17871795
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    }
+                  ]
+                }
+              ]
+            }
+          ]
+        },
+        {
+          "name": "metencephalon",
+          "status": null,
+          "labelIndex": null,
+          "synonyms": [],
+          "rgb": null,
+          "children": [
+            {
+              "name": "cerebellum",
+              "status": null,
+              "labelIndex": null,
+              "synonyms": [],
+              "rgb": null,
+              "children": [
+                {
+                  "name": "cerebellar nuclei",
+                  "status": null,
+                  "labelIndex": null,
+                  "synonyms": [],
+                  "rgb": null,
+                  "children": [
+                    {
+                      "name": "globose nucleus",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Interposed Nucleus (Cerebellum)",
+                          "arealabel": "Interposed-Nucleus",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            170,
+                            29,
+                            10
+                          ],
+                          "children": [
+                            {
+                              "name": "Interposed Nucleus (Cerebellum) - left hemisphere",
+                              "rgb": [
+                                170,
+                                29,
+                                10
+                              ],
+                              "labelIndex": 251,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -8457921,
+                                -55262376,
+                                -30235149
+                              ]
+                            },
+                            {
+                              "name": "Interposed Nucleus (Cerebellum) - right hemisphere",
+                              "rgb": [
+                                170,
+                                29,
+                                10
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 251,
+                              "children": [],
+                              "position": [
+                                7917989,
+                                -54201058,
+                                -31489418
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "dentate nucleus",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Dorsal Dentate Nucleus (Cerebellum)",
+                          "arealabel": "Dorsal-Dentate-Nucleus",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            89,
+                            201,
+                            99
+                          ],
+                          "children": [
+                            {
+                              "name": "Dorsal Dentate Nucleus (Cerebellum) - left hemisphere",
+                              "rgb": [
+                                89,
+                                201,
+                                99
+                              ],
+                              "labelIndex": 240,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -16612782,
+                                -56036341,
+                                -36064536
+                              ]
+                            },
+                            {
+                              "name": "Dorsal Dentate Nucleus (Cerebellum) - right hemisphere",
+                              "rgb": [
+                                89,
+                                201,
+                                99
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 240,
+                              "children": [],
+                              "position": [
+                                15388967,
+                                -58303395,
+                                -36586280
+                              ]
+                            }
+                          ]
+                        },
+                        {
+                          "name": "Ventral Dentate Nucleus (Cerebellum)",
+                          "arealabel": "Ventral-Dentate-Nucleus",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            39,
+                            129,
+                            9
+                          ],
+                          "children": [
+                            {
+                              "name": "Ventral Dentate Nucleus (Cerebellum) - left hemisphere",
+                              "rgb": [
+                                39,
+                                129,
+                                9
+                              ],
+                              "labelIndex": 241,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -13112867,
+                                -56176072,
+                                -29957111
+                              ]
+                            },
+                            {
+                              "name": "Ventral Dentate Nucleus (Cerebellum) - right hemisphere",
+                              "rgb": [
+                                39,
+                                129,
+                                9
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 241,
+                              "children": [],
+                              "position": [
+                                12107011,
+                                -55974170,
+                                -31385609
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "fastigial nucleus",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Fastigial Nucleus (Cerebellum)",
+                          "arealabel": "Fastigial-Nucleus",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            200,
+                            100,
+                            10
+                          ],
+                          "children": [
+                            {
+                              "name": "Fastigial Nucleus (Cerebellum) - left hemisphere",
+                              "rgb": [
+                                200,
+                                100,
+                                10
+                              ],
+                              "labelIndex": 219,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -3828877,
+                                -53149733,
+                                -29013369
+                              ]
+                            },
+                            {
+                              "name": "Fastigial Nucleus (Cerebellum) - right hemisphere",
+                              "rgb": [
+                                200,
+                                100,
+                                10
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 219,
+                              "children": [],
+                              "position": [
+                                3011287,
+                                -53069977,
+                                -29040632
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    },
+                    {
+                      "name": "emboliform nucleus",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null,
+                      "children": [
+                        {
+                          "name": "Interposed Nucleus (Cerebellum)",
+                          "arealabel": "Interposed-Nucleus",
+                          "status": "publicP",
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": [
+                            170,
+                            29,
+                            10
+                          ],
+                          "children": [
+                            {
+                              "name": "Interposed Nucleus (Cerebellum) - left hemisphere",
+                              "rgb": [
+                                170,
+                                29,
+                                10
+                              ],
+                              "labelIndex": 251,
+                              "ngId": "jubrain colin v17 left",
+                              "children": [],
+                              "position": [
+                                -8457921,
+                                -55262376,
+                                -30235149
+                              ]
+                            },
+                            {
+                              "name": "Interposed Nucleus (Cerebellum) - right hemisphere",
+                              "rgb": [
+                                170,
+                                29,
+                                10
+                              ],
+                              "ngId": "jubrain colin v17 right",
+                              "labelIndex": 251,
+                              "children": [],
+                              "position": [
+                                7917989,
+                                -54201058,
+                                -31489418
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    }
+                  ]
+                }
+              ]
+            }
+          ]
+        }
+      ]
+    }
+  ],
+  "properties": {
+    "name": "MNI Colin 27",
+    "description": "A stereotaxic average of 27 T1-weighted MRI scans of the same individual. (Holmes et al., 1998), mapped to fit the MNI305 space.  Although not capturing brain variability, it is well established in neuroscience due to its high definition. HBP provides the JuBrain probabilistic cytoarchitectonic atlas (Amunts et al.) in this space."
+  }
+}
\ No newline at end of file
diff --git a/src/res/ext/colinNehubaConfig.json b/src/res/ext/colinNehubaConfig.json
index e1596ffb4ed74a3f3e2ddce3c751e9a106ba6388..7b40174f13aa5e7e65e074d58372b3bc8e56e7c0 100644
--- a/src/res/ext/colinNehubaConfig.json
+++ b/src/res/ext/colinNehubaConfig.json
@@ -1 +1 @@
-{"globals":{"hideNullImageValues":true,"useNehubaLayout":true,"useNehubaMeshLayer":true,"useCustomSegmentColors":true},"zoomWithoutCtrl":true,"hideNeuroglancerUI":true,"rightClickWithCtrl":true,"rotateAtViewCentre":true,"zoomAtViewCentre":true,"enableMeshLoadingControl":true,"layout":{"useNehubaPerspective":{"fixedZoomPerspectiveSlices":{"sliceViewportWidth":300,"sliceViewportHeight":300,"sliceZoom":724698.1843689409,"sliceViewportSizeMultiplier":2},"centerToOrigin":true,"mesh":{"removeBasedOnNavigation":true,"flipRemovedOctant":true,"surfaceParcellation":true},"removePerspectiveSlicesBackground":{"mode":"=="},"waitForMesh":true,"drawSubstrates":{"color":[0.5,0.5,1,0.2]},"drawZoomLevels":{"cutOff":150000},"restrictZoomLevel":{"minZoom":2500000,"maxZoom":3500000}}},"dataset":{"imageBackground":[0,0,0,1],"initialNgState":{"showDefaultAnnotations":false,"layers":{"colin":{"type":"image","visible":true,"source":"precomputed://https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/colin27_seg","transform":[[1,0,0,-75500000],[0,1,0,-111500000],[0,0,1,-67500000],[0,0,0,1]]},"atlas":{"type":"segmentation","source":"precomputed://https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/MPM","transform":[[1,0,0,-75500000],[0,1,0,-111500000],[0,0,1,-67500000],[0,0,0,1]]}},"navigation":{"pose":{"position":{"voxelSize":[1000000,1000000,1000000],"voxelCoordinates":[0,-32,0]}},"zoomFactor":1000000},"perspectiveOrientation":[-0.2753947079181671,0.6631333827972412,-0.6360703706741333,0.2825356423854828],"perspectiveZoom":3000000}}}
\ No newline at end of file
+{"globals":{"hideNullImageValues":true,"useNehubaLayout":true,"useNehubaMeshLayer":true,"useCustomSegmentColors":true},"zoomWithoutCtrl":true,"hideNeuroglancerUI":true,"rightClickWithCtrl":true,"rotateAtViewCentre":true,"zoomAtViewCentre":true,"enableMeshLoadingControl":true,"layout":{"useNehubaPerspective":{"fixedZoomPerspectiveSlices":{"sliceViewportWidth":300,"sliceViewportHeight":300,"sliceZoom":724698.1843689409,"sliceViewportSizeMultiplier":2},"centerToOrigin":true,"mesh":{"removeBasedOnNavigation":true,"flipRemovedOctant":true,"surfaceParcellation":false},"removePerspectiveSlicesBackground":{"mode":"=="},"waitForMesh":false,"drawSubstrates":{"color":[0.5,0.5,1,0.2]},"drawZoomLevels":{"cutOff":150000},"restrictZoomLevel":{"minZoom":2500000,"maxZoom":3500000}}},"dataset":{"imageBackground":[0,0,0,1],"initialNgState":{"showDefaultAnnotations":false,"layers":{"colin":{"type":"image","visible":true,"source":"precomputed://https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/colin27_seg","transform":[[1,0,0,-75500000],[0,1,0,-111500000],[0,0,1,-67500000],[0,0,0,1]]},"jubrain v2_2c":{"type":"segmentation","source":"precomputed://https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/v2.2c/MPM","transform":[[1,0,0,-75500000],[0,1,0,-111500000],[0,0,1,-67500000],[0,0,0,1]]},"jubrain colin v17 left":{"type":"segmentation","visible":true,"source":"precomputed://https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/17/colin27/left","transform":[[1,0,0,-128500000],[0,1,0,-148500000],[0,0,1,-110500000],[0,0,0,1]]},"jubrain colin v17 right":{"type":"segmentation","visible":true,"source":"precomputed://https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/17/colin27/right","transform":[[1,0,0,-128500000],[0,1,0,-148500000],[0,0,1,-110500000],[0,0,0,1]]}},"navigation":{"pose":{"position":{"voxelSize":[1000000,1000000,1000000],"voxelCoordinates":[0,-32,0]}},"zoomFactor":1000000},"perspectiveOrientation":[-0.2753947079181671,0.6631333827972412,-0.6360703706741333,0.2825356423854828],"perspectiveZoom":3000000}}}
\ No newline at end of file
diff --git a/src/res/images/AllenadultmousebrainreferenceatlasV3BrainAtlas.png b/src/res/images/AllenadultmousebrainreferenceatlasV3BrainAtlas.png
new file mode 100644
index 0000000000000000000000000000000000000000..897168863448a2efce76cd5496cd4154cc48545e
Binary files /dev/null and b/src/res/images/AllenadultmousebrainreferenceatlasV3BrainAtlas.png differ
diff --git a/src/res/images/BigBrainHistology.png b/src/res/images/BigBrainHistology.png
new file mode 100644
index 0000000000000000000000000000000000000000..94cc67bd8cae7c3701d9c3c6c15f2dc9be8400b6
Binary files /dev/null and b/src/res/images/BigBrainHistology.png differ
diff --git a/src/res/images/ICBM2009cNonlinearAsymmetric.png b/src/res/images/ICBM2009cNonlinearAsymmetric.png
new file mode 100644
index 0000000000000000000000000000000000000000..a5d2276eff480aefe8ab7116c500d82b1201fbfa
Binary files /dev/null and b/src/res/images/ICBM2009cNonlinearAsymmetric.png differ
diff --git a/src/res/images/MNI152.png b/src/res/images/MNI152.png
new file mode 100644
index 0000000000000000000000000000000000000000..a5d2276eff480aefe8ab7116c500d82b1201fbfa
Binary files /dev/null and b/src/res/images/MNI152.png differ
diff --git a/src/res/images/MNIColin27.png b/src/res/images/MNIColin27.png
new file mode 100644
index 0000000000000000000000000000000000000000..6993e50d6ef7484530a7df17b8ca5bee7bdac249
Binary files /dev/null and b/src/res/images/MNIColin27.png differ
diff --git a/src/res/images/WaxholmSpaceratbrainatlasv20.png b/src/res/images/WaxholmSpaceratbrainatlasv20.png
new file mode 100644
index 0000000000000000000000000000000000000000..0a2b6cef1d493cad67ab3850d0bdd1969e7a6e21
Binary files /dev/null and b/src/res/images/WaxholmSpaceratbrainatlasv20.png differ
diff --git a/src/services/effect/effect.ts b/src/services/effect/effect.ts
new file mode 100644
index 0000000000000000000000000000000000000000..c8c7340f128af994e0eba0408d6ccb7c3c7761cb
--- /dev/null
+++ b/src/services/effect/effect.ts
@@ -0,0 +1,126 @@
+import { Injectable, OnDestroy } from "@angular/core";
+import { Effect, Actions, ofType } from "@ngrx/effects";
+import { Observable, Subscription, merge, fromEvent, combineLatest } from "rxjs";
+import { SHOW_KG_TOS } from "../state/uiState.store";
+import { withLatestFrom, map, tap, switchMap, filter } from "rxjs/operators";
+import { Store, select } from "@ngrx/store";
+import { SELECT_PARCELLATION, SELECT_REGIONS, NEWVIEWER, UPDATE_PARCELLATION, SELECT_REGIONS_WITH_ID } from "../state/viewerState.store";
+import { worker } from 'src/atlasViewer/atlasViewer.workerService.service'
+import { getNgIdLabelIndexFromId, generateLabelIndexId, recursiveFindRegionWithLabelIndexId } from '../stateStore.service';
+
+@Injectable({
+  providedIn: 'root'
+})
+export class UseEffects implements OnDestroy{
+
+  constructor(
+    private actions$: Actions,
+    private store$: Store<any>
+  ){
+    this.subscriptions.push(
+      this.newParcellationSelected$.subscribe(parcellation => {
+        worker.postMessage({
+          type: `PROPAGATE_NG_ID`,
+          parcellation
+        })
+      })
+    )
+  }
+
+  ngOnDestroy(){
+    while(this.subscriptions.length > 0) {
+      this.subscriptions.pop().unsubscribe()
+    }
+  }
+
+  private subscriptions: Subscription[] = []
+
+
+  private parcellationSelected$ = this.actions$.pipe(
+    ofType(SELECT_PARCELLATION),
+  )
+
+  private newViewer$ = this.actions$.pipe(
+    ofType(NEWVIEWER)
+  )
+
+  private newParcellationSelected$ = merge(
+    this.newViewer$,
+    this.parcellationSelected$
+  ).pipe(
+    map(({selectParcellation}) => selectParcellation)
+  )
+
+  private updatedParcellation$ = this.store$.pipe(
+    select('viewerState'),
+    select('parcellationSelected'),
+    filter(p => !!p && !!p.regions)
+  )
+
+  /**
+   * for backwards compatibility.
+   * older versions of atlas viewer may only have labelIndex as region identifier
+   */
+  @Effect()
+  onSelectRegionWithId = this.actions$.pipe(
+    ofType(SELECT_REGIONS_WITH_ID),
+    withLatestFrom(this.updatedParcellation$),
+    map(([action, parcellation]) => {
+      const { selectRegionIds } = action
+      const { ngId: defaultNgId } = parcellation
+
+      const selectRegions = (<any[]>selectRegionIds)
+        .map(labelIndexId => getNgIdLabelIndexFromId({ labelIndexId }))
+        .map(({ ngId, labelIndex }) => {
+          return {
+            labelIndexId: generateLabelIndexId({
+              ngId: ngId || defaultNgId,
+              labelIndex 
+            })
+          }
+        })
+        .map(({ labelIndexId }) => {
+          return recursiveFindRegionWithLabelIndexId({ 
+            regions: parcellation.regions,
+            labelIndexId,
+            inheritedNgId: defaultNgId
+          })
+        })
+        .filter(v => {
+          if (!v) console.log(`SELECT_REGIONS_WITH_ID, some ids cannot be parsed intto label index`)
+          return !!v
+        })
+      return {
+        type: SELECT_REGIONS,
+        selectRegions
+      }
+    })
+  )
+
+  /**
+   * side effect of selecting a parcellation means deselecting all regions
+   */
+  @Effect()
+  onParcellationSelected$ = this.newParcellationSelected$.pipe(
+    map(() => ({
+      type: SELECT_REGIONS,
+      selectRegions: []
+    }))
+  )
+
+  /**
+   * calculating propagating ngId from worker thread
+   */
+  @Effect()
+  updateParcellation$ = fromEvent(worker, 'message').pipe(
+    filter((message: MessageEvent) => message && message.data && message.data.type === 'UPDATE_PARCELLATION_REGIONS'),
+    map(({data}) => data.parcellation),
+    withLatestFrom(this.newParcellationSelected$),
+    filter(([ propagatedP, selectedP ] : [any, any]) => propagatedP.name === selectedP.name),
+    map(([ propagatedP, _ ]) => propagatedP),
+    map(parcellation => ({
+      type: UPDATE_PARCELLATION,
+      updatedParcellation: parcellation
+    }))
+  )
+}
\ No newline at end of file
diff --git a/src/services/state/uiState.store.ts b/src/services/state/uiState.store.ts
index bdf52506daf64fe0cc2d9da4352dad9fe25fbcee..fadd5b87fcc506e504ff011a429675648d85c303 100644
--- a/src/services/state/uiState.store.ts
+++ b/src/services/state/uiState.store.ts
@@ -4,6 +4,7 @@ const agreedCookieKey = 'agreed-cokies'
 const aggredKgTosKey = 'agreed-kg-tos'
 
 const defaultState : UIStateInterface = {
+  mouseOverSegments: [],
   mouseOverSegment: null,
   mouseOverLandmark: null,
   focusedSidePanel: null,
@@ -18,6 +19,12 @@ const defaultState : UIStateInterface = {
 
 export function uiState(state:UIStateInterface = defaultState,action:UIAction){
   switch(action.type){
+    case MOUSE_OVER_SEGMENTS:
+      const { segments } = action
+      return {
+        ...state,
+        mouseOverSegments: segments
+      }
     case MOUSE_OVER_SEGMENT:
       return {
         ...state,
@@ -71,6 +78,12 @@ export function uiState(state:UIStateInterface = defaultState,action:UIAction){
 }
 
 export interface UIStateInterface{
+  mouseOverSegments: {
+    layer: {
+      name: string
+    }
+    segment: any | null
+  }[]
   sidePanelOpen : boolean
   mouseOverSegment : any | number
   mouseOverLandmark : any 
@@ -81,12 +94,19 @@ export interface UIStateInterface{
 }
 
 export interface UIAction extends Action{
-  segment : any | number
-  landmark : any
+  segment: any | number
+  landmark: any
   focusedSidePanel? : string
+  segments?:{
+    layer: {
+      name: string
+    }
+    segment: any | null
+  }[]
 }
 
 export const MOUSE_OVER_SEGMENT = `MOUSE_OVER_SEGMENT`
+export const MOUSE_OVER_SEGMENTS = `MOUSE_OVER_SEGMENTS`
 export const MOUSE_OVER_LANDMARK = `MOUSE_OVER_LANDMARK`
 
 export const TOGGLE_SIDE_PANEL = 'TOGGLE_SIDE_PANEL'
diff --git a/src/services/state/viewerState.store.ts b/src/services/state/viewerState.store.ts
index a8ff3fdaade1c41dbd7b6f46215f7caabc400526..57ea4802e57cb243e34ac70bd50cd6eefa3ab97c 100644
--- a/src/services/state/viewerState.store.ts
+++ b/src/services/state/viewerState.store.ts
@@ -20,10 +20,13 @@ export interface AtlasAction extends Action{
 
   selectTemplate? : any
   selectParcellation? : any
-  selectRegions? : any[]
+  selectRegions?: any[]
+  selectRegionIds: string[]
   deselectRegions? : any[]
   dedicatedView? : string
 
+  updatedParcellation? : any
+
   landmarks : UserLandmark[]
   deselectLandmarks : UserLandmark[]
 
@@ -57,11 +60,18 @@ export function viewerState(
           : []
       }
     case NEWVIEWER:
+      const { selectParcellation: parcellation } = action
+      // const parcellation = propagateNgId( selectParcellation ): parcellation
+      const { regions, ...parcellationWORegions } = parcellation
       return {
         ...state,
         templateSelected : action.selectTemplate,
-        parcellationSelected : action.selectParcellation,
-        regionsSelected : [],
+        parcellationSelected : {
+          ...parcellationWORegions,
+          regions: null
+        },
+        // taken care of by effect.ts
+        // regionsSelected : [],
         landmarksSelected : [],
         navigation : {},
         dedicatedView : null
@@ -79,29 +89,28 @@ export function viewerState(
       }
     }
     case SELECT_PARCELLATION : {
+      const { selectParcellation:parcellation } = action
+      const { regions, ...parcellationWORegions } = parcellation
       return {
         ...state,
-        parcellationSelected : action.selectParcellation,
-        regionsSelected : []
+        parcellationSelected: parcellationWORegions,
+        // taken care of by effect.ts
+        // regionsSelected: []
       }
     }
-    case DESELECT_REGIONS : {
+    case UPDATE_PARCELLATION: {
+      const { updatedParcellation } = action
       return {
         ...state,
-        regionsSelected : state.regionsSelected.filter(re => action.deselectRegions.findIndex(dRe => dRe.name === re.name) < 0)
+        parcellationSelected: updatedParcellation
       }
     }
-    case SELECT_REGIONS : {
+    case SELECT_REGIONS:
+      const { selectRegions } = action
       return {
         ...state,
-        regionsSelected : action.selectRegions.map(region => {
-          return {
-            ...region,
-            labelIndex: Number(region.labelIndex)
-          }
-        })
+        regionsSelected: selectRegions
       }
-    }
     case DESELECT_LANDMARKS : {
       return {
         ...state,
@@ -134,8 +143,10 @@ export const FETCHED_TEMPLATE = 'FETCHED_TEMPLATE'
 export const CHANGE_NAVIGATION = 'CHANGE_NAVIGATION'
 
 export const SELECT_PARCELLATION = `SELECT_PARCELLATION`
+export const UPDATE_PARCELLATION = `UPDATE_PARCELLATION`
+
 export const SELECT_REGIONS = `SELECT_REGIONS`
-export const DESELECT_REGIONS = `DESELECT_REGIONS`
+export const SELECT_REGIONS_WITH_ID = `SELECT_REGIONS_WITH_ID`
 export const SELECT_LANDMARKS = `SELECT_LANDMARKS`
 export const DESELECT_LANDMARKS = `DESELECT_LANDMARKS`
 export const USER_LANDMARKS = `USER_LANDMARKS`
diff --git a/src/services/stateStore.service.ts b/src/services/stateStore.service.ts
index 7b08459e9ec56405aaf739997a2de4767fc86b63..96048ec2192d311c34a01528e4e24ee52ffa5dce 100644
--- a/src/services/stateStore.service.ts
+++ b/src/services/stateStore.service.ts
@@ -3,7 +3,7 @@ import { filter } from 'rxjs/operators';
 export { viewerConfigState } from './state/viewerConfig.store'
 export { pluginState } from './state/pluginState.store'
 export { NgViewerAction, NgViewerStateInterface, ngViewerState, ADD_NG_LAYER, FORCE_SHOW_SEGMENT, HIDE_NG_LAYER, REMOVE_NG_LAYER, SHOW_NG_LAYER } from './state/ngViewerState.store'
-export { CHANGE_NAVIGATION, AtlasAction, DESELECT_LANDMARKS, DESELECT_REGIONS, FETCHED_TEMPLATE, NEWVIEWER, SELECT_LANDMARKS, SELECT_PARCELLATION, SELECT_REGIONS, USER_LANDMARKS, ViewerStateInterface, viewerState } from './state/viewerState.store'
+export { CHANGE_NAVIGATION, AtlasAction, DESELECT_LANDMARKS, FETCHED_TEMPLATE, NEWVIEWER, SELECT_LANDMARKS, SELECT_PARCELLATION, SELECT_REGIONS, USER_LANDMARKS, ViewerStateInterface, viewerState } from './state/viewerState.store'
 export { DataEntry, ParcellationRegion, DataStateInterface, DatasetAction, FETCHED_DATAENTRIES, FETCHED_SPATIAL_DATA, Landmark, OtherLandmarkGeometry, PlaneLandmarkGeometry, PointLandmarkGeometry, Property, Publication, ReferenceSpace, dataStore, File, FileSupplementData } from './state/dataStore.store'
 export { CLOSE_SIDE_PANEL, MOUSE_OVER_LANDMARK, MOUSE_OVER_SEGMENT, OPEN_SIDE_PANEL, TOGGLE_SIDE_PANEL, UIAction, UIStateInterface, uiState } from './state/uiState.store'
 export { SPATIAL_GOTO_PAGE, SpatialDataEntries, SpatialDataStateInterface, UPDATE_SPATIAL_DATA, spatialSearchState } from './state/spatialSearchState.store'
@@ -25,6 +25,63 @@ export function extractLabelIdx(region:any):number[]{
   },[]).concat( region.labelIndex ? Number(region.labelIndex) : [] )
 }
 
+const inheritNgId = (region:any) => {
+  const {ngId = 'root', children = []} = region
+  return {
+    ngId,
+    ...region,
+    ...(children && children.map
+      ? {
+        children: children.map(c => inheritNgId({
+          ngId,
+          ...c
+        }))
+      }
+      : {})
+  }
+}
+
+export function getMultiNgIdsRegionsLabelIndexMap(parcellation: any = {}):Map<string,Map<number, any>>{
+  const map:Map<string,Map<number, any>> = new Map()
+  const { ngId = 'root'} = parcellation
+
+  const processRegion = (region:any) => {
+    const { ngId } = region
+    const existingMap = map.get(ngId)
+    const labelIndex = Number(region.labelIndex)
+    if (labelIndex) {
+      if (!existingMap) {
+        const newMap = new Map()
+        newMap.set(labelIndex, region)
+        map.set(ngId, newMap)
+      } else {
+        existingMap.set(labelIndex, region)
+      }
+    }
+
+    if (region.children && region.children.forEach) {
+      region.children.forEach(child => {
+        processRegion({
+          ngId,
+          ...child
+        })
+      })
+    }
+  }
+
+  if (parcellation && parcellation.regions && parcellation.regions.forEach) {
+    parcellation.regions.forEach(r => processRegion({
+      ngId,
+      ...r
+    }))
+  }
+
+  return map
+}
+
+/**
+ * labelIndexMap maps label index to region
+ */
 export function getLabelIndexMap(regions:any[]):Map<number,any>{
   const returnMap = new Map()
 
@@ -36,9 +93,23 @@ export function getLabelIndexMap(regions:any[]):Map<number,any>{
     })
   }
 
-  reduceRegions(regions)
+  if (regions && regions.forEach) reduceRegions(regions)
   return returnMap
-} 
+}
+
+/**
+ * 
+ * @param regions regions to deep iterate to find all ngId 's, filtering out falsy values
+ * n.b. returns non unique list
+ */
+export function getNgIds(regions: any[]): string[]{
+  return regions && regions.map
+    ? regions
+        .map(r => [r.ngId, ...getNgIds(r.children)])
+        .reduce((acc, item) => acc.concat(item), [])
+        .filter(ngId => !!ngId)
+    : []
+}
 
 export interface DedicatedViewState{
   dedicatedView : string | null
@@ -47,3 +118,38 @@ export interface DedicatedViewState{
 export function isDefined(obj){
   return typeof obj !== 'undefined' && obj !== null
 }
+
+export function generateLabelIndexId({ ngId, labelIndex }) {
+  return `${ngId}#${labelIndex}`
+}
+
+export function getNgIdLabelIndexFromId({ labelIndexId } = {labelIndexId: ''}) {
+  const _ = labelIndexId && labelIndexId.split && labelIndexId.split('#') || []
+  const ngId = _.length > 1
+    ? _[0]
+    : null
+  const labelIndex = _.length > 1
+    ? Number(_[1])
+    : _.length === 0
+      ? null
+      : Number(_[0])
+  return { ngId, labelIndex }
+}
+
+const recursiveFlatten = (region, {ngId}) => {
+  return [{
+    ngId,
+    ...region
+  }].concat(
+    ...((region.children && region.children.map && region.children.map(c => recursiveFlatten(c, { ngId : region.ngId || ngId })) )|| [])
+  )
+}
+
+export function recursiveFindRegionWithLabelIndexId({ regions, labelIndexId, inheritedNgId = 'root' }: {regions: any[], labelIndexId: string, inheritedNgId:string}) {
+  const { ngId, labelIndex } = getNgIdLabelIndexFromId({ labelIndexId })
+  const fr1 = regions.map(r => recursiveFlatten(r,{ ngId: inheritedNgId }))
+  const fr2 = fr1.reduce((acc, curr) => acc.concat(...curr), [])
+  const found = fr2.find(r => r.ngId === ngId && Number(r.labelIndex) === Number(labelIndex))
+  if (found) return found
+  return null
+}
diff --git a/src/services/zipFileDownload.service.ts b/src/services/zipFileDownload.service.ts
new file mode 100644
index 0000000000000000000000000000000000000000..68131c4bf6932e0dd8df8691936b3bd0d3563738
--- /dev/null
+++ b/src/services/zipFileDownload.service.ts
@@ -0,0 +1,58 @@
+import { Injectable } from "@angular/core";
+import {HttpClient} from "@angular/common/http";
+import {AtlasViewerConstantsServices} from "src/atlasViewer/atlasViewer.constantService.service";
+import {map} from "rxjs/operators";
+
+@Injectable({ providedIn: 'root' })
+export class ZipFileDownloadService {
+
+    constructor(private httpClient: HttpClient, private constantService: AtlasViewerConstantsServices) {}
+
+    downloadZip(publicationsText, fileName, niiFiles) {
+        const correctedName = fileName.replace(/[|&;$%@"<>()+,/]/g, "")
+        return this.httpClient.post(this.constantService.backendUrl + 'datasets/downloadParcellationThemself', {
+                fileName: correctedName,
+                publicationsText: publicationsText,
+                niiFiles: niiFiles === 0 ? null : niiFiles
+            },{responseType: "text"}
+        ).pipe(
+            map (data => {
+                this.downloadFile(data, correctedName)
+            })
+        )
+    }
+
+    downloadFile(data, fileName) {
+        const contentType = 'application/zip';
+        const b64Data = data
+
+        const b64toBlob = (b64Data, contentType='', sliceSize=512) => {
+            const byteCharacters = atob(b64Data);
+            const byteArrays = [];
+
+            for (let offset = 0; offset < byteCharacters.length; offset += sliceSize) {
+                const slice = byteCharacters.slice(offset, offset + sliceSize);
+
+                const byteNumbers = new Array(slice.length);
+                for (let i = 0; i < slice.length; i++) {
+                    byteNumbers[i] = slice.charCodeAt(i);
+                }
+
+                const byteArray = new Uint8Array(byteNumbers);
+                byteArrays.push(byteArray);
+            }
+
+            const blob = new Blob(byteArrays, {type: contentType});
+            return blob;
+        }
+
+        const blob = b64toBlob(b64Data, contentType);
+        const url= window.URL.createObjectURL(blob);
+        const anchor = document.createElement("a");
+        anchor.download = fileName + '.zip';
+        anchor.href = url;
+        anchor.click();
+    }
+
+
+}
\ No newline at end of file
diff --git a/src/ui/databrowserModule/databrowser/databrowser.style.css b/src/ui/databrowserModule/databrowser/databrowser.style.css
index eb0ddb2feb9c3f789cbafbc75c3a7956455303e7..cbed0d7d4ce53d523971d02ff5bf1f3d6323de87 100644
--- a/src/ui/databrowserModule/databrowser/databrowser.style.css
+++ b/src/ui/databrowserModule/databrowser/databrowser.style.css
@@ -114,8 +114,6 @@ div[noSelectedRegion]
 dataset-viewer
 {
   display: block;
-  padding: 0.3em 1em;
-  background-color: rgba(128, 128, 128, 0.2);
 }
 
 div[regionsContainer]
@@ -223,4 +221,10 @@ radio-list
   display: inline-block;
   border-radius: 50%;
   background-color:white;
+}
+
+div[regionTagsContainer]
+{
+  max-height: 4em;
+  overflow:hidden;
 }
\ No newline at end of file
diff --git a/src/ui/databrowserModule/datasetViewer/datasetViewer.component.ts b/src/ui/databrowserModule/datasetViewer/datasetViewer.component.ts
index d042842f54da23ceb81d56a4eca1ee3a9f398a0c..7be8d563234f7e854b1bda067e07a1a758471718 100644
--- a/src/ui/databrowserModule/datasetViewer/datasetViewer.component.ts
+++ b/src/ui/databrowserModule/datasetViewer/datasetViewer.component.ts
@@ -1,4 +1,4 @@
-import { Component, Input, Output, EventEmitter } from "@angular/core";
+import { Component, Input, Output, EventEmitter, ViewChild, ElementRef } from "@angular/core";
 import { DataEntry } from "src/services/stateStore.service";
 
 @Component({
@@ -11,15 +11,20 @@ export class DatasetViewerComponent{
   @Input() dataset : DataEntry
   
   @Output() showPreviewDataset: EventEmitter<{datasetName:string, event:MouseEvent}> = new EventEmitter()
-
+  @ViewChild('kgrRef', {read:ElementRef}) kgrRef: ElementRef
 
   previewDataset(event:MouseEvent){
+    if (!this.dataset.preview) return
     this.showPreviewDataset.emit({
       event,
       datasetName: this.dataset.name
     })
+    event.stopPropagation()
   }
 
+  clickMainCard(event:MouseEvent) {
+    if (this.kgrRef) this.kgrRef.nativeElement.click()
+  }
 
   get methods(): string[]{
     return this.dataset.activity.reduce((acc, act) => {
@@ -27,6 +32,10 @@ export class DatasetViewerComponent{
     }, [])
   }
 
+  get hasKgRef(): boolean{
+    return this.kgReference.length > 0
+  }
+
   get kgReference(): string[] {
     return this.dataset.kgReference.map(ref => `https://doi.org/${ref}`)
   }
diff --git a/src/ui/databrowserModule/datasetViewer/datasetViewer.style.css b/src/ui/databrowserModule/datasetViewer/datasetViewer.style.css
index 5c38860fd0db7140609c87ab55fb6039de22f32c..17836b855bb96876f0781e7a30e4974aca789d72 100644
--- a/src/ui/databrowserModule/datasetViewer/datasetViewer.style.css
+++ b/src/ui/databrowserModule/datasetViewer/datasetViewer.style.css
@@ -12,4 +12,15 @@ flat-tree-component
 .dataset-pill
 {
   font-size:80%;
+}
+
+.ds-container
+{
+
+  background-color: rgba(128, 128, 128, 0.2);
+}
+
+.preview-container
+{
+  flex: 0 0 2em;
 }
\ No newline at end of file
diff --git a/src/ui/databrowserModule/datasetViewer/datasetViewer.template.html b/src/ui/databrowserModule/datasetViewer/datasetViewer.template.html
index ec0e41cf8e078b5640e2fb16fd16975d0ae0e378..c1248259e4ac13b17b3395b63ef41d1d3396b277 100644
--- a/src/ui/databrowserModule/datasetViewer/datasetViewer.template.html
+++ b/src/ui/databrowserModule/datasetViewer/datasetViewer.template.html
@@ -1,42 +1,34 @@
-<div *ngIf = "dataset; else defaultDisplay">
-  <ng-content select="[regionTagsContainer]">
+<div class="d-flex">
+  <div
+    *ngIf="dataset; else defaultDisplay"
+    (click)="clickMainCard($event)"
+    [ngClass]="{'muted': !hasKgRef}"
+    class="p-2 ds-container main-container"
+    [hoverable]="{translateY:-2,disable:!hasKgRef}">
+    <ng-content select="[regionTagsContainer]">
 
-  </ng-content>
-  <div title>
-    {{ dataset.name }}
-  </div>
-
-  <div class="btn-group">
+    </ng-content>
+    <div title>
+      {{ dataset.name }}
+    </div>
 
     <a
       *ngFor="let kgr of kgReference"
-      class="btn btn-sm btn-outline-secondary"
+      class="btn btn-sm btn-link"
       target="_blank"
-      tooltip="show in knowledge graph"
-      [href]="kgr">
-      <i class="fas fa-brain"></i>
-    </a>
-  
-    <a
-      *ngIf="dataset.preview"
-      class="btn btn-sm btn-outline-secondary"
-      (click)="previewDataset($event)"
-      tooltip="preview dataset"
-      href="#">
-      <i class="fas fa-chart-pie"></i>
+      [href]="kgr"
+      hidden
+      #kgrRef>
+      Show more info on this dataset <i class="fas fa-external-link-alt"></i>
     </a>
   </div>
-  <!-- <kg-entry-viewer [dataset]="dataset">
-
-  </kg-entry-viewer> -->
-
-  <div *ngIf="false">
 
-    <hr />
-    <h5>
-      Preview Dataset
-    </h5>
-    <hr />
+  <div
+    *ngIf="dataset.preview"
+    (click)="previewDataset($event)"
+    class="ds-container ml-1 p-2 preview-container text-muted d-flex align-items-center"
+    [hoverable]="{translateY:-3}">
+    <i class="fas fa-eye"></i>
   </div>
 </div>
 
diff --git a/src/ui/databrowserModule/util/filterDataEntriesByRegion.pipe.ts b/src/ui/databrowserModule/util/filterDataEntriesByRegion.pipe.ts
index ac73e32cc06694bc8aaa0c5d179b002b6a5630a9..3f45fa9d105f4a34e47dd2d1e1f428670467aa13 100644
--- a/src/ui/databrowserModule/util/filterDataEntriesByRegion.pipe.ts
+++ b/src/ui/databrowserModule/util/filterDataEntriesByRegion.pipe.ts
@@ -1,7 +1,7 @@
 import { Pipe, PipeTransform } from "@angular/core";
 import { DataEntry } from "src/services/stateStore.service";
 
-const isSubRegion = (high, low) => high.name === low.name
+const isSubRegion = (high, low) => (high.id && low.id && high.id === low.id) || high.name === low.name
   ? true
   : high.children && high.children.some
     ? high.children.some(r => isSubRegion(r, low))
diff --git a/src/ui/layerbrowser/layerbrowser.component.ts b/src/ui/layerbrowser/layerbrowser.component.ts
index 8a8cdbd4a952a73e8e05a0b8cba3d2ac08e19cb5..ca537076ad572f367913f0e6ce0dc93df8391ba8 100644
--- a/src/ui/layerbrowser/layerbrowser.component.ts
+++ b/src/ui/layerbrowser/layerbrowser.component.ts
@@ -1,7 +1,7 @@
 import { Component,  OnDestroy } from "@angular/core";
 import { NgLayerInterface } from "../../atlasViewer/atlasViewer.component";
 import { Store, select } from "@ngrx/store";
-import { ViewerStateInterface, isDefined, REMOVE_NG_LAYER, FORCE_SHOW_SEGMENT, safeFilter } from "../../services/stateStore.service";
+import { ViewerStateInterface, isDefined, REMOVE_NG_LAYER, FORCE_SHOW_SEGMENT, safeFilter, getNgIds } from "../../services/stateStore.service";
 import { Subscription, Observable } from "rxjs";
 import { filter, distinctUntilChanged, map, delay, buffer } from "rxjs/operators";
 import { AtlasViewerConstantsServices } from "src/atlasViewer/atlasViewer.constantService.service";
@@ -42,12 +42,28 @@ export class LayerBrowser implements OnDestroy{
     this.ngLayers$ = store.pipe(
       select('viewerState'),
       select('templateSelected'),
-      map(templateSelected => (templateSelected && !this.advancedMode && [
-        templateSelected.ngId,
-        ...templateSelected.parcellations.map(p => p.ngId)
-      ]) || [])
+      map(templateSelected => {
+        if (!templateSelected) return []
+        if (this.advancedMode) return []
+        return [
+          templateSelected.ngId,
+          ...templateSelected.parcellations.reduce((acc, curr) => {
+            return acc.concat([
+              curr.ngId,
+              ...getNgIds(curr.regions)
+            ])
+          }, [])
+        ]
+      }),
+      /**
+       * get unique array
+       */
+      map(nonUniqueArray => Array.from(new Set(nonUniqueArray))),
+      /**
+       * remove falsy values
+       */
+      map(arr => arr.filter(v => !!v))
     )
-
     /**
      * TODO
      * this is no longer populated
@@ -73,6 +89,7 @@ export class LayerBrowser implements OnDestroy{
         select('viewerState'),
         select('templateSelected'),
         distinctUntilChanged((o,n) => o.templateSelected.name === n.templateSelected.name),
+        filter(templateSelected => !!templateSelected),
         map(templateSelected => Object.keys(templateSelected.nehubaConfig.dataset.initialNgState.layers)),
         buffer(this.store.pipe(
           select('ngViewerState'),
diff --git a/src/ui/layerbrowser/layerbrowser.style.css b/src/ui/layerbrowser/layerbrowser.style.css
index dc597ad085a5b4f8f21dc3d786a49086a97a5dc5..83bf14bb66993088b1d86f607e24784f07926bd4 100644
--- a/src/ui/layerbrowser/layerbrowser.style.css
+++ b/src/ui/layerbrowser/layerbrowser.style.css
@@ -16,11 +16,6 @@ div[body]
   background-color:rgba(0, 0, 0, 0.1);
 }
 
-.muted
-{
-  opacity : 0.5;
-}
-
 .muted-text
 {
   text-decoration: line-through;
diff --git a/src/ui/nehubaContainer/nehubaContainer.component.ts b/src/ui/nehubaContainer/nehubaContainer.component.ts
index 146d7a44649df836cdbbc57bf6b93d38e3fcda59..74849c89679efbafd7a776c58dabed4306d8f5b6 100644
--- a/src/ui/nehubaContainer/nehubaContainer.component.ts
+++ b/src/ui/nehubaContainer/nehubaContainer.component.ts
@@ -1,16 +1,78 @@
 import { Component, ViewChild, ViewContainerRef, ComponentFactoryResolver, ComponentFactory, ComponentRef, OnInit, OnDestroy, ElementRef } from "@angular/core";
 import { NehubaViewerUnit } from "./nehubaViewer/nehubaViewer.component";
 import { Store, select } from "@ngrx/store";
-import { ViewerStateInterface, safeFilter, SELECT_REGIONS, getLabelIndexMap, CHANGE_NAVIGATION, isDefined, MOUSE_OVER_SEGMENT, USER_LANDMARKS, ADD_NG_LAYER, REMOVE_NG_LAYER, NgViewerStateInterface, MOUSE_OVER_LANDMARK, SELECT_LANDMARKS, Landmark, PointLandmarkGeometry, PlaneLandmarkGeometry, OtherLandmarkGeometry } from "../../services/stateStore.service";
+import { ViewerStateInterface, safeFilter, CHANGE_NAVIGATION, isDefined, USER_LANDMARKS, ADD_NG_LAYER, REMOVE_NG_LAYER, NgViewerStateInterface, MOUSE_OVER_LANDMARK, SELECT_LANDMARKS, Landmark, PointLandmarkGeometry, PlaneLandmarkGeometry, OtherLandmarkGeometry, getNgIds, getMultiNgIdsRegionsLabelIndexMap, generateLabelIndexId } from "../../services/stateStore.service";
 import { Observable, Subscription, fromEvent, combineLatest, merge } from "rxjs";
-import { filter,map, take, scan, debounceTime, distinctUntilChanged, switchMap, skip, withLatestFrom, buffer, tap } from "rxjs/operators";
+import { filter,map, take, scan, debounceTime, distinctUntilChanged, switchMap, skip, withLatestFrom, buffer, tap, throttleTime, bufferTime } from "rxjs/operators";
 import { AtlasViewerAPIServices, UserLandmark } from "../../atlasViewer/atlasViewer.apiService.service";
 import { timedValues } from "../../util/generator";
-import { AtlasViewerDataService } from "../../atlasViewer/atlasViewer.dataService.service";
 import { AtlasViewerConstantsServices } from "../../atlasViewer/atlasViewer.constantService.service";
 import { ViewerConfiguration } from "src/services/state/viewerConfig.store";
 import { pipeFromArray } from "rxjs/internal/util/pipe";
 import { NEHUBA_READY } from "src/services/state/ngViewerState.store";
+import { MOUSE_OVER_SEGMENTS } from "src/services/state/uiState.store";
+import { SELECT_REGIONS_WITH_ID } from "src/services/state/viewerState.store";
+
+const getProxyUrl = (ngUrl) => `nifti://${BACKEND_URL}preview/file?fileUrl=${encodeURIComponent(ngUrl.replace(/^nifti:\/\//,''))}`
+const getProxyOther = ({source}) => /AUTH_227176556f3c4bb38df9feea4b91200c/.test(source)
+? {
+  transform: [
+    [
+      1e6,
+      0,
+      0,
+      0
+    ],
+    [
+      0,
+      1e6,
+      0,
+      0
+    ],
+    [
+      0,
+      0,
+      1e6,
+      0
+    ],
+    [
+      0,
+      0,
+      0,
+      1
+    ]
+  ]
+}: {}
+const isFirstRow = (cell: HTMLElement) => {
+  const { parentElement:row } = cell
+  const { parentElement:container } = row
+  return container.firstElementChild === row
+}
+
+const isFirstCell = (cell:HTMLElement) => {
+  const { parentElement:row } = cell
+  return row.firstElementChild === cell
+}
+
+const scanFn : (acc:[boolean, boolean, boolean], curr: CustomEvent) => [boolean, boolean, boolean] = (acc, curr) => {
+
+  const target = <HTMLElement>curr.target
+  const targetIsFirstRow = isFirstRow(target)
+  const targetIsFirstCell = isFirstCell(target)
+  const idx = targetIsFirstRow
+    ? targetIsFirstCell
+      ? 0
+      : 1
+    : targetIsFirstCell
+      ? 2
+      : null
+
+  const returnAcc = [...acc]
+  const num1 = typeof curr.detail.missingChunks === 'number' ? curr.detail.missingChunks : 0
+  const num2 = typeof curr.detail.missingImageChunks === 'number' ? curr.detail.missingImageChunks : 0
+  returnAcc[idx] = Math.max(num1, num2) > 0
+  return returnAcc as [boolean, boolean, boolean]
+}
 
 @Component({
   selector : 'ui-nehuba-container',
@@ -34,6 +96,7 @@ export class NehubaContainer implements OnInit, OnDestroy{
 
   private viewerPerformanceConfig$: Observable<ViewerConfiguration>
 
+  private sliceViewLoadingMain$: Observable<[boolean, boolean, boolean]>
   public sliceViewLoading0$: Observable<boolean>
   public sliceViewLoading1$: Observable<boolean>
   public sliceViewLoading2$: Observable<boolean>
@@ -50,6 +113,7 @@ export class NehubaContainer implements OnInit, OnDestroy{
   private userLandmarks$ : Observable<UserLandmark[]>
   public onHoverSegmentName$ : Observable<string>
   public onHoverSegment$ : Observable<any>
+  public onHoverSegments$: Observable<any[]>
   private onHoverLandmark$ : Observable<any|null>
 
   private navigationChanges$ : Observable<any>
@@ -57,7 +121,7 @@ export class NehubaContainer implements OnInit, OnDestroy{
   private spatialResultsVisible : boolean = false
 
   private selectedTemplate : any | null
-  private selectedRegionIndexSet : Set<number> = new Set()
+  private selectedRegionIndexSet : Set<string> = new Set()
   public fetchedSpatialData : Landmark[] = []
 
   private ngLayersRegister : Partial<NgViewerStateInterface> = {layers : [], forceShowSegment: null}
@@ -67,7 +131,7 @@ export class NehubaContainer implements OnInit, OnDestroy{
 
   private cr : ComponentRef<NehubaViewerUnit>
   public nehubaViewer : NehubaViewerUnit
-  private regionsLabelIndexMap : Map<number,any> = new Map()
+  private multiNgIdsRegionsLabelIndexMap: Map<string, Map<number, any>> = new Map()
   private landmarksLabelIndexMap : Map<number, any> = new Map()
   private landmarksNameMap : Map<string,number> = new Map()
   
@@ -81,7 +145,6 @@ export class NehubaContainer implements OnInit, OnDestroy{
 
   constructor(
     private constantService : AtlasViewerConstantsServices,
-    private atlasViewerDataService : AtlasViewerDataService,
     private apiService :AtlasViewerAPIServices,
     private csf:ComponentFactoryResolver,
     private store : Store<ViewerStateInterface>,
@@ -118,8 +181,8 @@ export class NehubaContainer implements OnInit, OnDestroy{
 
     this.selectedRegions$ = this.store.pipe(
       select('viewerState'),
-      safeFilter('regionsSelected'),
-      map(state=>state.regionsSelected)
+      select('regionsSelected'),
+      filter(rs => !!rs)
     )
 
     this.selectedLandmarks$ = this.store.pipe(
@@ -166,25 +229,86 @@ export class NehubaContainer implements OnInit, OnDestroy{
       distinctUntilChanged(userLmUnchanged)
     )
 
-    const segmentsUnchangedChanged = (s1,s2)=>
-      !(typeof s1 === typeof s2 ?
-        typeof s2 === 'undefined' ?
-          false :
-          typeof s2 === 'number' ?
-            s2 !== s1 :
-            s1 === s2 ?
-              false :
-              s1 === null || s2 === null ?
-                true :
-                s2.name !== s1.name :
-        true)
-    
-
-    this.onHoverSegment$ = this.store.pipe(
+    this.onHoverSegments$ = this.store.pipe(
       select('uiState'),
-      filter(state=>isDefined(state)),
-      map(state=>state.mouseOverSegment),
-      distinctUntilChanged(segmentsUnchangedChanged)
+      select('mouseOverSegments'),
+      filter(v => !!v),
+      distinctUntilChanged((o, n) => o.length === n.length
+        && n.every(segment =>
+          o.find(oSegment => oSegment.layer.name === segment.layer.name
+            && oSegment.segment === segment.segment)))
+    )
+
+    const sortByFreshness: (acc: any[], curr: any[]) => any[] = (acc, curr) => {
+
+      const getLayerName = ({layer} = {layer:{}}) => {
+        const { name } = <any>layer
+        return name
+      }
+
+      const newEntries = curr.filter(entry => {
+        const name = getLayerName(entry)
+        return acc.map(getLayerName).indexOf(name) < 0
+      })
+
+      const entryChanged: (itemPrevState, newArr) => boolean = (itemPrevState, newArr) => {
+        const layerName = getLayerName(itemPrevState)
+        const { segment } = itemPrevState
+        const foundItem = newArr.find((_item) =>
+          getLayerName(_item) === layerName)
+
+        if (foundItem) {
+          const { segment:foundSegment } = foundItem
+          return segment !== foundSegment 
+        } else {
+          /**
+           * if item was not found in the new array, meaning hovering nothing
+           */
+          return segment !== null
+        }
+      }
+
+      const getItemFromLayerName = (item, arr) => {
+        const foundItem = arr.find(i => getLayerName(i) === getLayerName(item))
+        return foundItem
+          ? foundItem
+          : {
+            layer: item.layer,
+            segment: null
+          }
+      }
+
+      const getReduceExistingLayers = (newArr) => ([changed, unchanged], _curr) => {
+        const changedFlag = entryChanged(_curr, newArr)
+        return changedFlag
+          ? [ changed.concat( getItemFromLayerName(_curr, newArr) ), unchanged ]
+          : [ changed, unchanged.concat(_curr) ]
+      }
+
+      /**
+       * now, for all the previous layers, separate into changed and unchanged layers
+       */
+      const [changed, unchanged] = acc.reduce(getReduceExistingLayers(curr), [[], []])
+      return [...newEntries, ...changed, ...unchanged]
+    } 
+
+    this.onHoverSegment$ = this.onHoverSegments$.pipe(
+      scan(sortByFreshness, []),
+      /**
+       * take the first element after sort by freshness
+       */
+      map(arr => arr[0]),
+      /**
+       * map to the older interface
+       */
+      filter(v => !!v),
+      map(({ segment }) => {
+
+        return {
+          labelIndex: (isNaN(segment) && Number(segment.labelIndex)) || null,
+          foundRegion: (isNaN(segment) && segment) || null
+        }
+      })
     )
 
     this.onHoverLandmark$ = this.store.pipe(
@@ -225,37 +349,23 @@ export class NehubaContainer implements OnInit, OnDestroy{
       [0,1,2].forEach(idx=>this.nanometersToOffsetPixelsFn[idx] = (events[idx] as any).detail.nanometersToOffsetPixels)
     })
 
-    this.sliceViewLoading0$ = fromEvent(this.elementRef.nativeElement, 'sliceRenderEvent')
+    this.sliceViewLoadingMain$ = fromEvent(this.elementRef.nativeElement, 'sliceRenderEvent').pipe(
+      scan(scanFn, [null, null, null]),
+    )
+
+    this.sliceViewLoading0$ = this.sliceViewLoadingMain$
       .pipe(
-        filter((event:Event) => (event.target as HTMLElement).offsetLeft < 5 && (event.target as HTMLElement).offsetTop < 5),
-        map(event => {
-          const e = (event as any);
-          const num1 = typeof e.detail.missingChunks === 'number' ? e.detail.missingChunks : 0
-          const num2 = typeof e.detail.missingImageChunks === 'number' ? e.detail.missingImageChunks : 0
-          return Math.max(num1, num2) > 0
-        })
+        map(arr => arr[0])
       )
 
-    this.sliceViewLoading1$ = fromEvent(this.elementRef.nativeElement, 'sliceRenderEvent')
+    this.sliceViewLoading1$ = this.sliceViewLoadingMain$
       .pipe(
-        filter((event:Event) => (event.target as HTMLElement).offsetLeft > 5 && (event.target as HTMLElement).offsetTop < 5),
-        map(event => {
-          const e = (event as any);
-          const num1 = typeof e.detail.missingChunks === 'number' ? e.detail.missingChunks : 0
-          const num2 = typeof e.detail.missingImageChunks === 'number' ? e.detail.missingImageChunks : 0
-          return Math.max(num1, num2) > 0
-        })
+        map(arr => arr[1])
       )
 
-    this.sliceViewLoading2$ = fromEvent(this.elementRef.nativeElement, 'sliceRenderEvent')
+    this.sliceViewLoading2$ = this.sliceViewLoadingMain$
       .pipe(
-        filter((event:Event) => (event.target as HTMLElement).offsetLeft < 5 && (event.target as HTMLElement).offsetTop > 5),
-        map(event => {
-          const e = (event as any);
-          const num1 = typeof e.detail.missingChunks === 'number' ? e.detail.missingChunks : 0
-          const num2 = typeof e.detail.missingImageChunks === 'number' ? e.detail.missingImageChunks : 0
-          return Math.max(num1, num2) > 0
-        })
+        map(arr => arr[2])
       )
 
     /* missing chunk perspective view */
@@ -267,15 +377,18 @@ export class NehubaContainer implements OnInit, OnDestroy{
           const e = (event as any)
           const lastLoadedIdString = e.detail.lastLoadedMeshId.split(',')[0]
           const lastLoadedIdNum = Number(lastLoadedIdString)
+          /**
+           * TODO dig into event detail to see if the exact mesh loaded
+           */
           return e.detail.meshesLoaded >= this.nehubaViewer.numMeshesToBeLoaded
             ? null
             : isNaN(lastLoadedIdNum)
               ? 'Loading unknown chunk'
               : lastLoadedIdNum >= 65500
                 ? 'Loading auxiliary chunk'
-                : this.regionsLabelIndexMap.get(lastLoadedIdNum)
-                  ? `Loading ${this.regionsLabelIndexMap.get(lastLoadedIdNum).name}`
-                  : 'Loading unknown chunk ...'
+                // : this.regionsLabelIndexMap.get(lastLoadedIdNum)
+                //   ? `Loading ${this.regionsLabelIndexMap.get(lastLoadedIdNum).name}`
+                  : 'Loading meshes ...'
         })
       )
 
@@ -452,7 +565,7 @@ export class NehubaContainer implements OnInit, OnDestroy{
           if(!this.nehubaViewer) return
 
           /* selectedregionindexset needs to be updated regardless of forceshowsegment */
-          this.selectedRegionIndexSet = new Set(regions.map(r=>Number(r.labelIndex)))
+          this.selectedRegionIndexSet = new Set(regions.map(({ngId, labelIndex})=>generateLabelIndexId({ ngId, labelIndex })))
 
           if( forceShowSegment === false || (forceShowSegment === null && hideSegmentFlag) ){
             this.nehubaViewer.hideAllSeg()
@@ -476,7 +589,12 @@ export class NehubaContainer implements OnInit, OnDestroy{
         
         if(newLayers.length > 0){
           const newLayersObj:any = {}
-          newLayers.forEach(obj => newLayersObj[obj.name] = obj)
+          newLayers.forEach(({ name, source, ...rest }) => newLayersObj[name] = {
+            ...rest,
+            source
+            // source: getProxyUrl(source),
+            // ...getProxyOther({source})
+          })
 
           if(!this.nehubaViewer.nehubaViewer || !this.nehubaViewer.nehubaViewer.ngviewer){
             this.nehubaViewer.initNiftiLayers.push(newLayersObj)
@@ -506,7 +624,7 @@ export class NehubaContainer implements OnInit, OnDestroy{
         Object.assign({},navigation,{
           positionReal : true
         })
-      this.nehubaViewer.initRegions = regions.map(re=>re.labelIndex)
+      this.nehubaViewer.initRegions = regions.map(({ ngId, labelIndex }) =>generateLabelIndexId({ ngId, labelIndex }))
     })
 
     this.subscriptions.push(
@@ -652,11 +770,21 @@ export class NehubaContainer implements OnInit, OnDestroy{
     if ( !(parcellation && parcellation.regions)) {
       return
     }
-    this.regionsLabelIndexMap = getLabelIndexMap(parcellation.regions)
-    this.nehubaViewer.regionsLabelIndexMap = this.regionsLabelIndexMap
+
+    /**
+     * first, get all all the ngIds, including parent id from parcellation (if defined)
+     */
+    const ngIds = getNgIds(parcellation.regions).concat( parcellation.ngId ? parcellation.ngId : [])
+
+    this.multiNgIdsRegionsLabelIndexMap = getMultiNgIdsRegionsLabelIndexMap(parcellation)
+
+    this.nehubaViewer.multiNgIdsLabelIndexMap = this.multiNgIdsRegionsLabelIndexMap
 
     /* TODO replace with proper KG id */
-    this.nehubaViewer.parcellationId = parcellation.ngId
+    /**
+     * need to set unique array of ngIds, or else workers will be overworked
+     */
+    this.nehubaViewer.ngIds = Array.from(new Set(ngIds))
     this.selectedParcellation = parcellation
   }
 
@@ -718,11 +846,34 @@ export class NehubaContainer implements OnInit, OnDestroy{
       ).subscribe(this.handleNavigationPositionAndNavigationZoomChange.bind(this))
     )
 
+    const accumulatorFn: (
+      acc:Map<string, { segment: string | null, segmentId: number | null }>,
+      arg: {layer: {name: string}, segmentId: number|null, segment: string | null}
+    ) => Map<string, {segment: string | null, segmentId: number|null}>
+    = (acc, arg) => {
+      const { layer, segment, segmentId } = arg
+      const { name } = layer
+      const newMap = new Map(acc)
+      newMap.set(name, {segment, segmentId})
+      return newMap
+    }
+
     this.nehubaViewerSubscriptions.push(
-      this.nehubaViewer.mouseoverSegmentEmitter.subscribe(emitted => {
+      
+      this.nehubaViewer.mouseoverSegmentEmitter.pipe(
+        scan(accumulatorFn, new Map()),
+        map(map => Array.from(map.entries()).filter(([_ngId, { segmentId }]) => segmentId))
+      ).subscribe(arrOfArr => {
         this.store.dispatch({
-          type : MOUSE_OVER_SEGMENT,
-          segment : emitted
+          type: MOUSE_OVER_SEGMENTS,
+          segments: arrOfArr.map( ([ngId, {segment, segmentId}]) => {
+            return {
+              layer: {
+                name: ngId,
+              },
+              segment: segment || `${ngId}#${segmentId}`
+            }
+          } )
         })
       })
     )
@@ -741,21 +892,29 @@ export class NehubaContainer implements OnInit, OnDestroy{
       this.nehubaViewer.regionSelectionEmitter.pipe(
         withLatestFrom(this.onHoverLandmark$),
         filter(results => results[1] === null),
-        map(results => results[0])
-      ).subscribe((region:any) => {
-        /**
-         * TODO
-         * region may have labelIndex as well as children
-         */
-        this.selectedRegionIndexSet.has(region.labelIndex) ?
-          this.store.dispatch({
-            type : SELECT_REGIONS,
-            selectRegions : [...this.selectedRegionIndexSet].filter(idx=>idx!==region.labelIndex).map(idx=>this.regionsLabelIndexMap.get(idx))
-          }) :
-          this.store.dispatch({
-            type : SELECT_REGIONS,
-            selectRegions : [...this.selectedRegionIndexSet].map(idx=>this.regionsLabelIndexMap.get(idx)).concat(region)
+        withLatestFrom(this.onHoverSegments$),
+        map(results => results[1]),
+        filter(arr => arr.length > 0),
+        map(arr => {
+          return arr.map(({ layer, segment }) => {
+            const ngId = segment.ngId || layer.name
+            const labelIndex = segment.labelIndex
+            return generateLabelIndexId({ ngId, labelIndex })
           })
+        })
+      ).subscribe((ids:string[]) => {
+        const deselectFlag = ids.some(id => this.selectedRegionIndexSet.has(id))
+
+        const set = new Set(this.selectedRegionIndexSet)
+        if (deselectFlag) {
+          ids.forEach(id => set.delete(id))
+        } else {
+          ids.forEach(id => set.add(id))
+        }
+        this.store.dispatch({
+          type: SELECT_REGIONS_WITH_ID,
+          selectRegionIds: [...set]
+        })
       })
     )
 
@@ -781,11 +940,16 @@ export class NehubaContainer implements OnInit, OnDestroy{
         orientation : quat
       }),
       showSegment : (labelIndex) => {
-        if(!this.selectedRegionIndexSet.has(labelIndex)) 
-          this.store.dispatch({
-            type : SELECT_REGIONS,
-            selectRegions :  [labelIndex, ...this.selectedRegionIndexSet]
-          })
+        /**
+         * TODO reenable with updated select_regions api
+         */
+        console.warn(`showSegment is temporarily disabled`)
+
+        // if(!this.selectedRegionIndexSet.has(labelIndex)) 
+        //   this.store.dispatch({
+        //     type : SELECT_REGIONS,
+        //     selectRegions :  [labelIndex, ...this.selectedRegionIndexSet]
+        //   })
       },
       add3DLandmarks : landmarks => {
         // TODO check uniqueness of ID
@@ -807,22 +971,33 @@ export class NehubaContainer implements OnInit, OnDestroy{
         })
       },
       hideSegment : (labelIndex) => {
-        if(this.selectedRegionIndexSet.has(labelIndex)){
-          this.store.dispatch({
-            type :SELECT_REGIONS,
-            selectRegions : [...this.selectedRegionIndexSet].filter(num=>num!==labelIndex)
-          })
-        }
+        /**
+         * TODO reenable with updated select_regions api
+         */
+        console.warn(`hideSegment is temporarily disabled`)
+
+        // if(this.selectedRegionIndexSet.has(labelIndex)){
+        //   this.store.dispatch({
+        //     type :SELECT_REGIONS,
+        //     selectRegions : [...this.selectedRegionIndexSet].filter(num=>num!==labelIndex)
+        //   })
+        // }
       },
       showAllSegments : () => {
+        const selectRegionIds = []
+        this.multiNgIdsRegionsLabelIndexMap.forEach((map, ngId) => {
+          Array.from(map.keys()).forEach(labelIndex => {
+            selectRegionIds.push(generateLabelIndexId({ ngId, labelIndex }))
+          })
+        })
         this.store.dispatch({
-          type : SELECT_REGIONS,
-          selectRegions : this.regionsLabelIndexMap.keys()
+          type : SELECT_REGIONS_WITH_ID,
+          selectRegionIds 
         })
       },
       hideAllSegments : () => {
         this.store.dispatch({
-          type : SELECT_REGIONS,
+          type : SELECT_REGIONS_WITH_ID,
           selectRegions : []
         })
       },
@@ -850,7 +1025,10 @@ export class NehubaContainer implements OnInit, OnDestroy{
           map((ev:MouseEvent)=>({eventName :'mouseup',event:ev}))
         ),
       ) ,
-      mouseOverNehuba : this.onHoverSegment$,
+      mouseOverNehuba : this.onHoverSegment$.pipe(
+        tap(() => console.warn('mouseOverNehuba observable is becoming deprecated. use mouseOverNehubaLayers instead.'))
+      ),
+      mouseOverNehubaLayers: this.onHoverSegments$,
       getNgHash : this.nehubaViewer.getNgHash
     }
   }
@@ -970,15 +1148,18 @@ export class NehubaContainer implements OnInit, OnDestroy{
 }
 
 export const identifySrcElement = (element:HTMLElement) => {
-  return element.offsetLeft < 5 && element.offsetTop < 5 ?
-  0 :
-  element.offsetLeft > 5 && element.offsetTop < 5 ?
-    1 :
-    element.offsetLeft < 5 && element.offsetTop > 5 ?
-    2 :
-      element.offsetLeft > 5 && element.offsetTop > 5 ?
-      3 :
-      4
+  const elementIsFirstRow = isFirstRow(element)
+  const elementIsFirstCell = isFirstCell(element)
+
+  return elementIsFirstCell && elementIsFirstRow
+    ? 0
+    : !elementIsFirstCell && elementIsFirstRow
+    ? 1
+    : elementIsFirstCell && !elementIsFirstRow
+      ? 2
+      : !elementIsFirstCell && !elementIsFirstRow
+        ? 3
+        : 4
 }
 
 export const takeOnePipe = [
diff --git a/src/ui/nehubaContainer/nehubaContainer.template.html b/src/ui/nehubaContainer/nehubaContainer.template.html
index 4356da032ab0fb41b1761d4ac770ed3cbfb31e4a..c453d302cb382720296e778641c7ef05465fab9f 100644
--- a/src/ui/nehubaContainer/nehubaContainer.template.html
+++ b/src/ui/nehubaContainer/nehubaContainer.template.html
@@ -69,7 +69,7 @@
   </div>
 </div>
 
-<layout-floating-container *ngIf="viewerLoaded">
+<layout-floating-container *ngIf="viewerLoaded && !isMobile">
   <!-- StatusCard container-->
   <ui-status-card [selectedTemplate]="selectedTemplate" [isMobile]="isMobile"
     [onHoverSegmentName]="onHoverSegmentName$ | async" [nehubaViewer]="nehubaViewer">
diff --git a/src/ui/nehubaContainer/nehubaViewer/nehubaViewer.component.ts b/src/ui/nehubaContainer/nehubaViewer/nehubaViewer.component.ts
index a15fd44271abe3d06b0db3fcd667ce6ae0a6b6b2..b0dbdd4c142815150892d2c7117fedc39287eded 100644
--- a/src/ui/nehubaContainer/nehubaViewer/nehubaViewer.component.ts
+++ b/src/ui/nehubaContainer/nehubaViewer/nehubaViewer.component.ts
@@ -8,7 +8,11 @@ import { AtlasViewerConstantsServices } from "../../../atlasViewer/atlasViewer.c
 import { takeOnePipe, identifySrcElement } from "../nehubaContainer.component";
 import { ViewerConfiguration } from "src/services/state/viewerConfig.store";
 import { pipeFromArray } from "rxjs/internal/util/pipe";
+import { getNgIdLabelIndexFromId } from "src/services/stateStore.service";
 
+/**
+ * no selector is needed, as currently, nehubaviewer is created dynamically
+ */
 @Component({
   templateUrl : './nehubaViewer.template.html',
   styleUrls : [
@@ -20,9 +24,17 @@ export class NehubaViewerUnit implements OnDestroy{
   
   @Output() nehubaReady: EventEmitter<null> = new EventEmitter()
   @Output() debouncedViewerPositionChange : EventEmitter<any> = new EventEmitter()
-  @Output() mouseoverSegmentEmitter : EventEmitter<any | number | null> = new EventEmitter()
+  @Output() mouseoverSegmentEmitter: 
+    EventEmitter<{
+      segmentId: number | null,
+      segment:string | null,
+      layer:{
+        name?: string,
+        url?: string
+      }
+    }> = new EventEmitter()
   @Output() mouseoverLandmarkEmitter : EventEmitter<number | null> = new EventEmitter()
-  @Output() regionSelectionEmitter : EventEmitter<any> = new EventEmitter()
+  @Output() regionSelectionEmitter : EventEmitter<{segment:number, layer:{name?: string, url?: string}}> = new EventEmitter()
   @Output() errorEmitter : EventEmitter<any> = new EventEmitter()
 
   /* only used to set initial navigation state */
@@ -47,6 +59,7 @@ export class NehubaViewerUnit implements OnDestroy{
   _s6$ : any
   _s7$ : any
   _s8$ : any
+  _s9$ : any
 
   _s$ : any[] = [
     this._s1$,
@@ -56,7 +69,8 @@ export class NehubaViewerUnit implements OnDestroy{
     this._s5$,
     this._s6$,
     this._s7$,
-    this._s8$
+    this._s8$,
+    this._s9$
   ]
 
   ondestroySubscriptions: any[] = []
@@ -223,9 +237,11 @@ export class NehubaViewerUnit implements OnDestroy{
           }
   
           /* if the active parcellation is the current parcellation, load the said mesh */
-          if(baseUrl === this._baseUrl){
-            this.nehubaViewer.setMeshesToLoad([...this.workerService.safeMeshSet.get(this._baseUrl)], {
-              name : this.parcellationId
+          const baseUrlIsInLoadedBaseUrlList = new Set([...this._baseUrls]).has(baseUrl)
+          const baseUrlParcellationId = this._baseUrlToParcellationIdMap.get(baseUrl)
+          if( baseUrlIsInLoadedBaseUrlList && baseUrlParcellationId){
+            this.nehubaViewer.setMeshesToLoad([...this.workerService.safeMeshSet.get(baseUrl)], {
+              name : baseUrlParcellationId
             })
           }
         })
@@ -233,15 +249,17 @@ export class NehubaViewerUnit implements OnDestroy{
     )
   }
 
-  private _baseUrl : string 
+  private _baseUrlToParcellationIdMap:Map<string, string> = new Map()
+  private _baseUrls: string[] = []
+
   get numMeshesToBeLoaded():number{
-    if(!this._baseUrl)
+    if(!this._baseUrls || this._baseUrls.length === 0)
       return 0
 
-    const set = this.workerService.safeMeshSet.get(this._baseUrl)
-    return set
-      ? set.size
-      : 0
+    return this._baseUrls.reduce((acc, curr) => {
+      const mappedSet = this.workerService.safeMeshSet.get(curr)
+      return acc + ((mappedSet && mappedSet.size) || 0)
+    } ,0)
   }
 
   public applyPerformanceConfig ({ gpuLimit }: Partial<ViewerConfiguration>) {
@@ -262,23 +280,28 @@ export class NehubaViewerUnit implements OnDestroy{
     this._templateId = id
   }
 
-  /* required to check if the correct meshes are being loaded */
-  private _parcellationId : string
-  get parcellationId(){
-    return this._parcellationId
+  /** compatible with multiple parcellation id selection */
+  private _ngIds: string[] = []
+  get ngIds(){
+    return this._ngIds
   }
-  set parcellationId(id:string){
 
-    if(this._parcellationId && this.nehubaViewer){
-      const oldlayer = this.nehubaViewer.ngviewer.layerManager.getLayerByName(this._parcellationId)
-      if(oldlayer)oldlayer.setVisible(false)
-      else console.warn('could not find old layer',this.parcellationId)
+  set ngIds(val:string[]){
+
+    if(this.nehubaViewer){
+      this._ngIds.forEach(id => {
+        const oldlayer = this.nehubaViewer.ngviewer.layerManager.getLayerByName(id)
+        if(oldlayer)oldlayer.setVisible(false)
+        else console.warn('could not find old layer', id)
+      })
     }
 
-    this._parcellationId = id
+    this._ngIds = val
     
-    if(this.nehubaViewer)
+    if(this.nehubaViewer){
       this.loadNewParcellation()
+      this.showAllSeg()
+    }
   }
 
   spatialLandmarkSelectionChanged(labels:number[]){
@@ -302,7 +325,7 @@ export class NehubaViewerUnit implements OnDestroy{
     }
   }
 
-  regionsLabelIndexMap : Map<number,any>
+  multiNgIdsLabelIndexMap: Map<string, Map<number, any>>
 
   navPosReal : [number,number,number] = [0,0,0]
   navPosVoxel : [number,number,number] = [0,0,0]
@@ -312,8 +335,9 @@ export class NehubaViewerUnit implements OnDestroy{
 
   viewerState : ViewerState
 
-  private defaultColormap : Map<number,{red:number,green:number,blue:number}>
-  public mouseOverSegment : number | null
+  private multiNgIdColorMap: Map<string, Map<number, {red: number, green:number, blue: number}>>
+  public mouseOverSegment: number | null
+  public mouseOverLayer: {name:string,url:string}| null
 
   private viewportToDatas : [any, any, any] = [null, null, null]
 
@@ -327,11 +351,18 @@ export class NehubaViewerUnit implements OnDestroy{
       console.log(err)
     })
 
-    if(this.regionsLabelIndexMap){
-      const managedLayers = this.nehubaViewer.ngviewer.layerManager.managedLayers
-      managedLayers.slice(1).forEach(layer=>layer.setVisible(false))
-      this.nehubaViewer.redraw()
-    }
+    /**
+     * Hide all layers except the base layer (template)
+     * Then show the layers referenced in multiNgIdLabelIndexMap
+     */
+    const managedLayers = this.nehubaViewer.ngviewer.layerManager.managedLayers
+    managedLayers.slice(1).forEach(layer=>layer.setVisible(false))
+    Array.from(this.multiNgIdsLabelIndexMap.keys()).forEach(ngId => {
+      const layer = this.nehubaViewer.ngviewer.layerManager.getLayerByName(ngId)
+      if (layer) layer.setVisible(true)
+      else console.log('layer unavailable', ngId)
+    })
+    this.nehubaViewer.redraw()
 
     /* creation of the layout is done on next frame, hence the settimeout */
     setTimeout(() => {
@@ -470,9 +501,15 @@ export class NehubaViewerUnit implements OnDestroy{
     
     /* TODO find a more permanent fix to disable double click */
     LayerManager.prototype.invokeAction = (arg) => {
-      const region = this.regionsLabelIndexMap.get(this.mouseOverSegment)
-      if (arg === 'select' && region) {
-        this.regionSelectionEmitter.emit(region)
+
+      /**
+       * The emitted value does not affect the region selection
+       * the region selection is taken care of in nehubaContainer
+       */
+      const map = this.multiNgIdsLabelIndexMap.get(this.mouseOverLayer.name)
+      const region = map && map.get(this.mouseOverSegment)
+      if (arg === 'select') {
+        this.regionSelectionEmitter.emit({ segment: region, layer: this.mouseOverLayer })
       }
     }
 
@@ -582,35 +619,78 @@ export class NehubaViewerUnit implements OnDestroy{
 
   public hideAllSeg(){
     if(!this.nehubaViewer) return
-    Array.from(this.regionsLabelIndexMap.keys()).forEach(idx=>
-      this.nehubaViewer.hideSegment(idx,{
-        name : this.parcellationId
-      }))
-    this.nehubaViewer.showSegment(0,{
-      name : this.parcellationId
+    Array.from(this.multiNgIdsLabelIndexMap.keys()).forEach(ngId => {
+      
+      Array.from(this.multiNgIdsLabelIndexMap.get(ngId).keys()).forEach(idx => {
+        this.nehubaViewer.hideSegment(idx, {
+          name: ngId
+        })
+      })
+      this.nehubaViewer.showSegment(0, {
+        name: ngId
+      })
     })
   }
 
   public showAllSeg(){
     if(!this.nehubaViewer) return
     this.hideAllSeg()
-    this.nehubaViewer.hideSegment(0,{
-      name : this.parcellationId
+    Array.from(this.multiNgIdsLabelIndexMap.keys()).forEach(ngId => {
+      this.nehubaViewer.hideSegment(0,{
+        name: ngId
+      })
     })
   }
 
-  public showSegs(array:number[]){
+  public showSegs(array: number[] | string[]){
+
     if(!this.nehubaViewer) return
+
     this.hideAllSeg()
 
-    this.nehubaViewer.hideSegment(0,{
-      name : this.parcellationId
-    })
+    
+    if (array.length === 0) return
+
+    /**
+     * TODO tobe deprecated
+     */
+
+    if (typeof array[0] === 'number') {
+      console.warn(`show seg with number indices has been deprecated`)
+      return
+    } 
+
+    const reduceFn:(acc:Map<string,number[]>,curr:string)=>Map<string,number[]> = (acc, curr) => {
 
-    array.forEach(idx=>
-      this.nehubaViewer.showSegment(idx,{
-        name : this.parcellationId
-      }))
+      const newMap = new Map(acc)
+      const { ngId, labelIndex } = getNgIdLabelIndexFromId({ labelIndexId: curr })
+      const exist = newMap.get(ngId)
+      if (!exist) newMap.set(ngId, [Number(labelIndex)])
+      else newMap.set(ngId, [...exist, Number(labelIndex)])
+      return newMap
+    }
+    
+    /**
+     * TODO 
+     * AAAAAAARG TYPESCRIPT WHY YOU SO MAD
+     */
+    //@ts-ignore
+    const newMap:Map<string, number[]> = array.reduce(reduceFn, new Map())
+    
+    /**
+     * TODO
+     * ugh, ugly code. cleanify
+     */
+    newMap.forEach((segs, ngId) => {
+      this.nehubaViewer.hideSegment(0, {
+        name: ngId
+      })
+      segs.forEach(seg => {
+        this.nehubaViewer.showSegment(seg, {
+          name: ngId
+        })
+      })
+    })
   }
 
   private vec3(pos:[number,number,number]){
@@ -658,17 +738,22 @@ export class NehubaViewerUnit implements OnDestroy{
     this.nehubaViewer.ngviewer.navigationState.pose.rotateRelative(this.vec3([0, 0, 1]), amount / 4.0 * Math.PI / 180.0)
   }
 
-  private updateColorMap(arrayIdx:number[]){
+  /**
+   * 
+   * @param arrayIdx label indices of the shown segment(s)
+   * @param ngId segmentation layer name
+   */
+  private updateColorMap(arrayIdx:number[], ngId: string){
     const set = new Set(arrayIdx)
     const newColorMap = new Map(
-      Array.from(this.defaultColormap.entries())
+      Array.from(this.multiNgIdColorMap.get(ngId).entries())
         .map(v=> set.has(v[0]) || set.size === 0 ? 
           v :
           [v[0],{red:255,green:255,blue:255}]) as any
     )
 
     this.nehubaViewer.batchAddAndUpdateSegmentColors(newColorMap,{
-      name:this.parcellationId
+      name: ngId
     })
   }
 
@@ -677,7 +762,10 @@ export class NehubaViewerUnit implements OnDestroy{
     /* isn't this layer specific? */
     /* TODO this is layer specific. need a way to distinguish between different segmentation layers */
     this._s2$ = this.nehubaViewer.mouseOver.segment
-      .subscribe(obj=>this.mouseOverSegment = obj.segment)
+      .subscribe(({ segment, layer })=>{
+        this.mouseOverSegment = segment
+        this.mouseOverLayer = { ...layer }
+      })
 
     if(this.initNav){
       this.setNavigationState(this.initNav)
@@ -693,12 +781,23 @@ export class NehubaViewerUnit implements OnDestroy{
       this.hideAllSeg()
     }
 
-    this._s8$ = this.nehubaViewer.mouseOver.segment.subscribe(({segment, ...rest})=>{
-      if( segment && segment < 65500 ) {
-        const region = this.regionsLabelIndexMap.get(segment)
-        this.mouseoverSegmentEmitter.emit(region ? region : segment)
+    this._s8$ = this.nehubaViewer.mouseOver.segment.subscribe(({segment: segmentId, layer, ...rest})=>{
+      
+      const {name = 'unnamed'} = layer
+      if( segmentId && segmentId < 65500 ) {
+        const map = this.multiNgIdsLabelIndexMap.get(name)
+        const region = map && map.get(segmentId)
+        this.mouseoverSegmentEmitter.emit({
+          layer,
+          segment: region,
+          segmentId
+        })
       }else{
-        this.mouseoverSegmentEmitter.emit(null)
+        this.mouseoverSegmentEmitter.emit({
+          layer,
+          segment: null,
+          segmentId
+        })
       }
     })
 
@@ -770,72 +869,97 @@ export class NehubaViewerUnit implements OnDestroy{
   private loadNewParcellation(){
 
     /* show correct segmentation layer */
-
-    const newlayer = this.nehubaViewer.ngviewer.layerManager.getLayerByName(this.parcellationId)
-    if(newlayer)newlayer.setVisible(true)
-    else console.warn('could not find new layer',this.parcellationId)
-
-    const regex = /^(\S.*?)\:\/\/(.*?)$/.exec(newlayer.sourceUrl)
-    
-    if(!regex || !regex[2]){
-      console.error('could not parse baseUrl')
-      return
-    }
-    if(regex[1] !== 'precomputed'){
-      console.error('sourceUrl is not precomputed')
-      return
-    }
-    
-    const baseUrl = regex[2]
-    this._baseUrl = baseUrl
-
-    /* load meshes */
-    /* TODO could be a bug where user loads new parcellation, but before the worker could completely populate the list */
-    const set = this.workerService.safeMeshSet.get(baseUrl)
-    if(set){
-      this.nehubaViewer.setMeshesToLoad([...set],{
-        name : this.parcellationId
-      })
-    }else{
-      if(newlayer){
-        this.zone.runOutsideAngular(() => 
-          this.workerService.worker.postMessage({
-            type : 'CHECK_MESHES',
-            parcellationId : this.parcellationId,
-            baseUrl,
-            indices : [
-              ...Array.from(this.regionsLabelIndexMap.keys()),
-              ...getAuxilliaryLabelIndices()
-            ]
-          })
-        )
+    this._baseUrls = []
+
+    this.ngIds.map(id => {
+      const newlayer = this.nehubaViewer.ngviewer.layerManager.getLayerByName(id)
+      if(newlayer)newlayer.setVisible(true)
+      else console.warn('could not find new layer',id)
+
+      const regex = /^(\S.*?)\:\/\/(.*?)$/.exec(newlayer.sourceUrl)
+      
+      if(!regex || !regex[2]){
+        console.error('could not parse baseUrl')
+        return
       }
-    }
+      if(regex[1] !== 'precomputed'){
+        console.error('sourceUrl is not precomputed')
+        return
+      }
+      
+      const baseUrl = regex[2]
+      this._baseUrls.push(baseUrl)
+      this._baseUrlToParcellationIdMap.set(baseUrl, id)
+
+      /* load meshes */
+      /* TODO could be a bug where user loads new parcellation, but before the worker could completely populate the list */
+      const set = this.workerService.safeMeshSet.get(baseUrl)
+      if(set){
+        this.nehubaViewer.setMeshesToLoad([...set],{
+          name : id
+        })
+      }else{
+        if(newlayer){
+          this.zone.runOutsideAngular(() => 
+            this.workerService.worker.postMessage({
+              type : 'CHECK_MESHES',
+              parcellationId : id,
+              baseUrl,
+              indices : [
+                ...Array.from(this.multiNgIdsLabelIndexMap.get(id).keys()),
+                ...getAuxilliaryLabelIndices()
+              ]
+            })
+          )
+        }
+      }
+    })
 
-    this.defaultColormap = new Map(
-      Array.from(
-        [
-          ...this.regionsLabelIndexMap.entries(),
-          ...getAuxilliaryLabelIndices().map(i=>([
-              i, {}
-            ]))
-          
-        ]
-      ).map((val:[number,any])=>([val[0],this.getRgb(val[0],val[1].rgb)])) as any)
+    const obj = Array.from(this.multiNgIdsLabelIndexMap.keys()).map(ngId => {
+      return [
+        ngId, 
+        new Map(Array.from(
+          [
+            ...this.multiNgIdsLabelIndexMap.get(ngId).entries(),
+            ...getAuxilliaryLabelIndices().map(i => {
+              return [i, {}]
+            })
+          ]
+        ).map((val:[number,any])=>([val[0],this.getRgb(val[0],val[1].rgb)])) as any)
+      ]
+    }) as [string, Map<number, {red:number, green: number, blue: number}>][]
+
+    this.multiNgIdColorMap = new Map(obj)
 
     /* load colour maps */
-    this.nehubaViewer.batchAddAndUpdateSegmentColors(
-      this.defaultColormap,
-      { name : this.parcellationId })
+
+    Array.from(this.multiNgIdColorMap.entries()).forEach(([ngId, map]) => {
+
+      this.nehubaViewer.batchAddAndUpdateSegmentColors(
+        map,
+        { name : ngId })
+    })
 
     this._s$.forEach(_s$=>{
       if(_s$) _s$.unsubscribe()
     })
 
     if(this._s1$)this._s1$.unsubscribe()
-    this._s1$ = this.nehubaViewer.getShownSegmentsObservable({
-      name : this.parcellationId
-    }).subscribe(arrayIdx=>this.updateColorMap(arrayIdx))
+    if(this._s9$)this._s9$.unsubscribe()
+
+    const arr = Array.from(this.multiNgIdsLabelIndexMap.keys()).map(ngId => {
+      return this.nehubaViewer.getShownSegmentsObservable({
+        name: ngId
+      }).subscribe(arrayIdx => this.updateColorMap(arrayIdx, ngId))
+    })
+
+    this._s9$ = {
+      unsubscribe: () => {
+        while(arr.length > 0) {
+          arr.pop().unsubscribe()
+        }
+      }
+    }
   }
 
   private getRgb(labelIndex:number,rgb?:number[]):{red:number,green:number,blue:number}{
diff --git a/src/ui/nehubaContainer/splashScreen/splashScreen.component.ts b/src/ui/nehubaContainer/splashScreen/splashScreen.component.ts
index f1178af037d26f65036bc8c02d54d6218f00a567..eb27393a77f1c284743cc34314d09db21040946f 100644
--- a/src/ui/nehubaContainer/splashScreen/splashScreen.component.ts
+++ b/src/ui/nehubaContainer/splashScreen/splashScreen.component.ts
@@ -17,8 +17,9 @@ export class SplashScreen{
   loadedTemplate$ : Observable<any[]>
   constructor(
     private store:Store<ViewerStateInterface>,
-    private constanceService: AtlasViewerConstantsServices  
-  ){
+    private constanceService: AtlasViewerConstantsServices,
+    private constantsService: AtlasViewerConstantsServices,
+){
     this.loadedTemplate$ = this.store.pipe(
       select('viewerState'),
       filter((state:ViewerStateInterface)=> typeof state !== 'undefined' && typeof state.fetchedTemplates !== 'undefined' && state.fetchedTemplates !== null),
@@ -36,4 +37,12 @@ export class SplashScreen{
   get totalTemplates(){
     return this.constanceService.templateUrls.length
   }
+
+  correctString(name){
+    return name.replace(/[|&;$%@()+,\s./]/g, '')
+  }
+
+  get isMobile(){
+    return this.constantsService.mobile
+  }
 }
\ No newline at end of file
diff --git a/src/ui/nehubaContainer/splashScreen/splashScreen.style.css b/src/ui/nehubaContainer/splashScreen/splashScreen.style.css
index d08929f3d9aaa5df9529eaf14714e71c60d7ca2a..23f295b2ea0e74248e2ac37b796d450b8215e034 100644
--- a/src/ui/nehubaContainer/splashScreen/splashScreen.style.css
+++ b/src/ui/nehubaContainer/splashScreen/splashScreen.style.css
@@ -1,8 +1,118 @@
 div[splashScreenContainer]
 {
-  height:100%;
+  height: 100%;
+  display:flex;
+  flex-direction: column;
+  justify-content: flex-start;
+  align-items: center;
+  overflow-y:auto;
+}
+
+div[splashScreenHeader] {
+  min-height: 90px;
+  max-height: 100px;
+  width: 100%;
+  background-color: #EF5450;
+  display: flex;
+  flex-direction: row;
+  justify-content: center;
+  align-items: center;
+  color: #FFFFFF;
+}
+
+
+.splashScreenHeaderTitle {
+  font-size: 45px;
 }
 
+
+.splashScreenHeaderLogoContainer {
+  flex: 1;
+}
+.splashScreenHeaderLogo {
+  margin-left: 50px;
+  width: 100px;
+  height: auto;
+}
+
+.spaceForFill {
+  flex: 1;
+}
+
+div[splashScreenTemplate] {
+
+  width: 100%;
+  margin: 20px 20px;
+  display: flex;
+  flex-wrap: wrap;
+  justify-content: center;
+
+}
+
+div[splashScreenTemplateItem] {
+  max-width: 600px;
+  width: 400px;
+  margin: 20px 20px;
+  display: flex;
+  flex-direction: row;
+  flex-wrap: wrap;
+  justify-content: center;
+
+}
+
+div[splashScreenTemplateHeader] {
+  align-self: center;
+  text-align: center;
+  font-size: 30px;
+  margin: 0 0 20px 0;
+
+}
+
+div[splashScreenTemplateBody] {
+  display: flex;
+  flex-direction: column;
+}
+
+div[splashScreenTemplateBodyDescription] {
+  flex: 1;
+  text-align: justify;
+  margin: 0 10px 10px 10px;
+}
+div[splashScreenTemplateBodyImage] {
+  flex: 1;
+}
+
+.template-image {
+  width: 100%;
+  height: auto;
+}
+
+.template-card {
+  width: 100%;
+  cursor: pointer;
+  background: #fff;
+  border-radius: 2px;
+  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
+  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
+}
+
+.template-card:hover {
+  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 5px 5px rgba(0,0,0,0.22);
+}
+
+@media screen and (max-width: 670px) {
+  .splashScreenHeaderTitle {
+    visibility: hidden;
+  }
+  div[splashScreenTemplate] {
+    margin: 20px 20px;
+  }
+  div[splashScreenTemplateBody] {
+    flex-direction: column;
+  }
+}
+
+/*
 div[templateCardContainer]
 {
   height:100%;
@@ -10,13 +120,10 @@ div[templateCardContainer]
   flex-direction: row;
   flex-wrap:nowrap;
   align-items: center;
-
   overflow-x:auto;
 }
-
 div[templateCard]
 {
-
   position:relative;
   flex: 0 1 25em;
   min-width: 20em;
@@ -25,12 +132,10 @@ div[templateCard]
   padding: 0em 1em;
   margin : 0em 1em;
   box-sizing: border-box;
-
   background-color:rgb(242,242,242);
   box-shadow: 0 4px 6px 0 rgba(0,0,0,0.12);
 }
-
 div[templateCard]:hover
 {
   background-color:rgba(242,242,242,0.8);
-}
\ No newline at end of file
+} */
diff --git a/src/ui/nehubaContainer/splashScreen/splashScreen.template.html b/src/ui/nehubaContainer/splashScreen/splashScreen.template.html
index 5ccf9fcc70d27efb6d52b2f8da7dc415691fa8b2..a59505918f5c5c1b253d35af8e1bbc244e9a99fb 100644
--- a/src/ui/nehubaContainer/splashScreen/splashScreen.template.html
+++ b/src/ui/nehubaContainer/splashScreen/splashScreen.template.html
@@ -1,14 +1,48 @@
+<div splashScreenContainer>
+  <div splashScreenHeader>
+    <div class="splashScreenHeaderLogoContainer"><img class="splashScreenHeaderLogo " src="./res/image/HBP_Primary_RGB_WhiteText.png"> </div>
+    <span class="splashScreenHeaderTitle" media="screen and (min-width: 670px)">HBP Atlas Viewer</span>
+    <div class="spaceForFill">
+      <signin-banner *ngIf="!isMobile">
+      </signin-banner>
+    </div>
+  </div>
+  <div splashScreenTemplate>
+    <div *ngFor="let template of loadedTemplate$ | async | filterNull" splashScreenTemplateItem>
+      <div class="template-card" (click) = "selectTemplate(template)">
+
+        <div splashScreenTemplateHeader>
+          {{template.properties.name}}
+        </div>
+        <div splashScreenTemplateBody>
+          <div splashScreenTemplateBodyImage>
+            <img class="template-image" [src]="'./res/image/' + correctString(template.properties.name) + '.png'">
+          </div>
+          <div splashScreenTemplateBodyDescription>
+            {{template.properties.description}}
+          </div>
+        </div>
+
+      </div>
+    </div>
+
+  </div>
+</div>
+
+
+
+<!--
 <div class = "container-fluid" splashScreenContainer>
-  <div 
-    class = "row" 
+  <div
+    class = "row"
     templateCardContainer>
-    
+
     <div
-      *ngFor = "let template of loadedTemplate$ | async | filterNull" 
+      *ngFor = "let template of loadedTemplate$ | async | filterNull"
       (click) = "selectTemplate(template)"
       templateCard
       hoverable>
-      
+
       <h2>{{ template.properties.name }}</h2>
       <readmore-component>
         <small>{{ template.properties.description }}</small>
@@ -25,4 +59,4 @@
       </h1>
     </div>
   </div>
-</div>
\ No newline at end of file
+</div> -->
\ No newline at end of file
diff --git a/src/ui/referenceToast/referenceToast.component.ts b/src/ui/referenceToast/referenceToast.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..9b68e7dcd4d449704f96147a42e4341ef3d1d410
--- /dev/null
+++ b/src/ui/referenceToast/referenceToast.component.ts
@@ -0,0 +1,91 @@
+import { Component, Input, OnInit } from "@angular/core";
+import { ZipFileDownloadService } from "src/services/zipFileDownload.service";
+
+@Component({
+    selector : 'reference-toast-component',
+    templateUrl : './referenceToast.template.html',
+    styleUrls : [
+        `./referenceToast.style.css`
+    ],
+})
+export class ReferenceToastComponent implements OnInit{
+    @Input() templateName? : string
+    @Input() parcellationName? : string
+    @Input() templateDescription? : string
+    @Input() parcellationDescription? : string
+    @Input() templatePublications? : any
+    @Input() parcellationPublications? : any
+    @Input() parcellationNifti? : any
+
+    downloadingProcess = false
+    niiFileSize = 0
+
+    constructor(private zipFileDownloadService: ZipFileDownloadService) {}
+
+    ngOnInit(): void {
+        if (this.parcellationNifti) {
+            this.parcellationNifti.forEach(nii => {
+                this.niiFileSize += nii['size']
+            })
+        }
+    }
+
+    downloadPublications() {
+        this.downloadingProcess = true
+
+        let fileName = ''
+        let publicationsText = ''
+
+        if (this.templatePublications || this.templateDescription) {
+            fileName += this.templateName? this.templateName : 'Template'
+
+            if (this.templateDescription) {
+                publicationsText += this.templateName + '\r\n'
+                this.templateDescription.split(" ").forEach((word, index) => {
+                    publicationsText += word + ' '
+                    if (index && index%15 === 0) publicationsText += '\r\n'
+                })
+                publicationsText += '\r\n'
+            }
+
+            if (this.templatePublications) {
+                if (!this.templateDescription) publicationsText += this.templateName
+                publicationsText += ' Publications:\r\n'
+                this.templatePublications.forEach((tp, i) => {
+                    publicationsText += '\t' + (i+1) + '. ' + tp['citation'] + ' - ' + tp['doi'] + '\r\n'
+                })
+            }
+        }
+
+        if (this.parcellationPublications || this.parcellationDescription) {
+            if (this.templateName) fileName += ' - '
+            fileName += this.parcellationName? this.parcellationName : 'Parcellation'
+            if (this.templateDescription || this.templatePublications) publicationsText += '\r\n\r\n'
+
+            if (this.parcellationDescription) {
+                publicationsText += this.parcellationName + '\r\n'
+                this.parcellationDescription.split(" ").forEach((word, index) => {
+                    publicationsText += word + ' '
+                    if (index && index%15 === 0) publicationsText += '\r\n'
+                })
+                publicationsText += '\r\n'
+            }
+
+            if (this.parcellationPublications) {
+                if (!this.parcellationDescription) publicationsText += this.parcellationName
+                publicationsText += ' Publications:\r\n'
+                this.parcellationPublications.forEach((pp, i) => {
+                    publicationsText += '\t' + (i+1) + '. ' + pp['citation'] + ' - ' + pp['doi'] + '\r\n'
+                })
+            }
+        }
+
+        this.zipFileDownloadService.downloadZip(
+            publicationsText,
+            fileName,
+            this.parcellationNifti? this.parcellationNifti : 0).subscribe(data => {
+            this.downloadingProcess = false
+        })
+        publicationsText = ''
+    }
+}
diff --git a/src/ui/referenceToast/referenceToast.style.css b/src/ui/referenceToast/referenceToast.style.css
new file mode 100644
index 0000000000000000000000000000000000000000..cf52094f562a63ff2034df2ee50b64240b889c00
--- /dev/null
+++ b/src/ui/referenceToast/referenceToast.style.css
@@ -0,0 +1,14 @@
+.timerToast {
+    max-width: 700px;
+    max-height: 500px;
+    padding-right: 10px;
+    overflow-y: auto;
+}
+
+.download-buttons-panel {
+    align-self: flex-end;
+}
+.downloadPublications {
+    margin: 5px;
+    outline: none;
+}
\ No newline at end of file
diff --git a/src/ui/referenceToast/referenceToast.template.html b/src/ui/referenceToast/referenceToast.template.html
new file mode 100644
index 0000000000000000000000000000000000000000..7db995f2b15468c795a0b31d404475a16fa8ee0a
--- /dev/null
+++ b/src/ui/referenceToast/referenceToast.template.html
@@ -0,0 +1,33 @@
+<div class="timerToast d-flex flex-column">
+    <div *ngIf="templateDescription">
+        <p *ngIf="templateName">{{templateName}}</p>
+        <p class="text-justify">{{templateDescription}}</p>
+    </div>
+    <div *ngIf="templatePublications">
+        <p>Publication(s)</p>
+        <div *ngFor="let tp of templatePublications" class="text-justify">
+            <a [href]="tp['doi']" target="_blank">{{tp['citation']}}</a>
+        </div>
+        <hr *ngIf="parcellationPublications">
+    </div>
+    <div *ngIf="parcellationDescription">
+        <p *ngIf="parcellationName">{{parcellationName}}</p>
+        <p class="text-justify">{{parcellationDescription}}</p>
+    </div>
+
+    <div *ngIf="parcellationPublications">
+        <p>Publication(s)</p>
+        <div *ngFor="let pp of parcellationPublications" class="text-justify">
+            <a [href]="pp['doi']" target="_blank">{{pp['citation']}}</a>
+        </div>
+    </div>
+
+    <div class="align-self-end">
+        <button mat-raised-button color="primary" class="downloadPublications" (click)="downloadPublications()">Explore &nbsp;<i class="fas fa-external-link-alt"></i></button>
+        <button mat-raised-button color="primary" class="downloadPublications" (click)="downloadPublications()" [disabled] = "downloadingProcess" >
+            Download &nbsp;
+            <span *ngIf="niiFileSize > 0">(.nii {{niiFileSize/1000000 | number:'.1-2'}} Mb) &nbsp;</span>
+            <i class="fas" [ngClass]="!downloadingProcess? 'fa-download' :'fa-spinner fa-pulse'"></i>
+        </button>
+    </div>
+</div>
\ No newline at end of file
diff --git a/src/ui/regionHierachy/regionHierarchy.component.ts b/src/ui/regionHierachy/regionHierarchy.component.ts
index 0555327a6837ba8b66db4e4d1d934f06803cc02e..f04dc7b1b501c71e5b5cc48ce5181cab4275e896 100644
--- a/src/ui/regionHierachy/regionHierarchy.component.ts
+++ b/src/ui/regionHierachy/regionHierarchy.component.ts
@@ -2,6 +2,7 @@ import { EventEmitter, Component, ElementRef, ViewChild, HostListener, OnInit, C
 import {  Subscription, Subject, fromEvent } from "rxjs";
 import { buffer, debounceTime } from "rxjs/operators";
 import { FilterNameBySearch } from "./filterNameBySearch.pipe";
+import { generateLabelIndexId } from "src/services/stateStore.service";
 
 const insertHighlight :(name:string, searchTerm:string) => string = (name:string, searchTerm:string = '') => {
   const regex = new RegExp(searchTerm, 'gi')
@@ -10,13 +11,17 @@ const insertHighlight :(name:string, searchTerm:string) => string = (name:string
     name.replace(regex, (s) => `<span class = "highlight">${s}</span>`)
 }
 
-const getDisplayTreeNode : (searchTerm:string, selectedRegions:any[]) => (item:any) => string = (searchTerm:string = '', selectedRegions:any[] = []) => (item:any) =>  {
-  return typeof item.labelIndex !== 'undefined' && selectedRegions.findIndex(re => re.labelIndex === Number(item.labelIndex)) >= 0 ?
-    `<span class = "regionSelected">${insertHighlight(item.name, searchTerm)}</span>` :
-    `<span class = "regionNotSelected">${insertHighlight(item.name, searchTerm)}</span>`
+const getDisplayTreeNode : (searchTerm:string, selectedRegions:any[]) => (item:any) => string = (searchTerm:string = '', selectedRegions:any[] = []) => ({ ngId, name, status, labelIndex }) =>  {
+  return !!labelIndex
+    && !!ngId
+    && selectedRegions.findIndex(re =>
+      generateLabelIndexId({ labelIndex: re.labelIndex, ngId: re.ngId }) === generateLabelIndexId({ ngId, labelIndex })
+    ) >= 0
+      ? `<span class="regionSelected">${insertHighlight(name, searchTerm)}</span>` + (status ? ` <span class="text-muted">(${insertHighlight(status, searchTerm)})</span>` : ``)
+      : `<span class="regionNotSelected">${insertHighlight(name, searchTerm)}</span>` + (status ? ` <span class="text-muted">(${insertHighlight(status, searchTerm)})</span>` : ``)
 }
 
-const getFilterTreeBySearch = (pipe:FilterNameBySearch, searchTerm:string) => (node:any) => pipe.transform([node.name], searchTerm)
+const getFilterTreeBySearch = (pipe:FilterNameBySearch, searchTerm:string) => (node:any) => pipe.transform([node.name, node.status], searchTerm)
 
 @Component({
   selector: 'region-hierarchy',
@@ -100,6 +105,8 @@ export class RegionHierarchy implements OnInit, AfterViewInit{
   }
 
   ngOnInit(){
+    this.displayTreeNode = getDisplayTreeNode(this.searchTerm, this.selectedRegions)
+    this.filterTreeBySearch = getFilterTreeBySearch(this.filterNameBySearchPipe, this.searchTerm)
 
     this.subscriptions.push(
       this.handleRegionTreeClickSubject.pipe(
@@ -113,6 +120,20 @@ export class RegionHierarchy implements OnInit, AfterViewInit{
   }
 
   ngAfterViewInit(){
+    /**
+     * TODO
+     * bandaid fix on
+     * when region search loses focus, the searchTerm is cleared,
+     * but hierarchy filter does not reset
+     */
+    this.subscriptions.push(
+      fromEvent(this.searchTermInput.nativeElement, 'focus').pipe(
+        
+      ).subscribe(() => {
+        this.displayTreeNode = getDisplayTreeNode(this.searchTerm, this.selectedRegions)
+        this.filterTreeBySearch = getFilterTreeBySearch(this.filterNameBySearchPipe, this.searchTerm)
+      })
+    )
     this.subscriptions.push(
       fromEvent(this.searchTermInput.nativeElement, 'input').pipe(
         debounceTime(200)
diff --git a/src/ui/sharedModules/angularMaterial.module.ts b/src/ui/sharedModules/angularMaterial.module.ts
index f5b4938579625c01795ae85e04c85adac4f6529e..b63e2dfaa5a37e5caa567efebe4bf1c135e00a4b 100644
--- a/src/ui/sharedModules/angularMaterial.module.ts
+++ b/src/ui/sharedModules/angularMaterial.module.ts
@@ -1,8 +1,15 @@
-import {MatButtonModule, MatCheckboxModule, MatSidenavModule, MatCardModule, MatTabsModule} from '@angular/material';
+import {
+  MatButtonModule,
+  MatCheckboxModule,
+  MatSidenavModule,
+  MatCardModule,
+  MatTabsModule,
+  MatTooltipModule
+} from '@angular/material';
 import { NgModule } from '@angular/core';
 
 @NgModule({
-  imports: [MatButtonModule, MatCheckboxModule, MatSidenavModule, MatCardModule, MatTabsModule],
-  exports: [MatButtonModule, MatCheckboxModule, MatSidenavModule, MatCardModule, MatTabsModule],
+  imports: [MatButtonModule, MatCheckboxModule, MatSidenavModule, MatCardModule, MatTabsModule, MatTooltipModule],
+  exports: [MatButtonModule, MatCheckboxModule, MatSidenavModule, MatCardModule, MatTabsModule, MatTooltipModule],
 })
 export class AngularMaterialModule { }
\ No newline at end of file
diff --git a/src/ui/signinBanner/signinBanner.components.ts b/src/ui/signinBanner/signinBanner.components.ts
index 798b5f1f157af82ca00c17f265ae55379bf7ede7..80fc79fb55464aaabb80b0afdaf40b06e70f46a3 100644
--- a/src/ui/signinBanner/signinBanner.components.ts
+++ b/src/ui/signinBanner/signinBanner.components.ts
@@ -1,4 +1,4 @@
-import { Component, ChangeDetectionStrategy, OnDestroy, OnInit, Input } from "@angular/core";
+import {Component, ChangeDetectionStrategy, OnDestroy, OnInit, Input, ViewChild, TemplateRef} from "@angular/core";
 import { AtlasViewerConstantsServices } from "src/atlasViewer/atlasViewer.constantService.service";
 import { AuthService, User } from "src/services/auth.service";
 import { Store, select } from "@ngrx/store";
@@ -9,6 +9,8 @@ import { map, filter, distinctUntilChanged } from "rxjs/operators";
 import { regionFlattener } from "src/util/regionFlattener";
 import { ToastService } from "src/services/toastService.service";
 
+const compareParcellation = (o, n) => o.name === n.name
+
 @Component({
   selector: 'signin-banner',
   templateUrl: './signinBanner.template.html',
@@ -21,14 +23,23 @@ import { ToastService } from "src/services/toastService.service";
 
 export class SigninBanner implements OnInit, OnDestroy{
 
+  public compareParcellation = compareParcellation
+
   private subscriptions: Subscription[] = []
   public loadedTemplates$: Observable<any[]>
   public selectedTemplate$: Observable<any>
   public selectedParcellation$: Observable<any>
   public selectedRegions$: Observable<any[]>
   private selectedRegions: any[] = []
+  selectedTemplate: any
   @Input() darktheme: boolean
 
+  @ViewChild('publicationTemplate', {read:TemplateRef}) publicationTemplate: TemplateRef<any>
+
+  dismissToastHandler: any
+  chosenTemplateIndex: number
+  chosenParcellationIndex: number
+
   constructor(
     private constantService: AtlasViewerConstantsServices,
     private authService: AuthService,
@@ -50,9 +61,7 @@ export class SigninBanner implements OnInit, OnDestroy{
 
     this.selectedParcellation$ = this.store.pipe(
       select('viewerState'),
-      safeFilter('parcellationSelected'),
-      map(state => state.parcellationSelected),
-      distinctUntilChanged((o, n) => o === n || (o && n && o.name === n.name)),
+      select('parcellationSelected'),
     )
 
     this.selectedRegions$ = this.store.pipe(
@@ -70,6 +79,9 @@ export class SigninBanner implements OnInit, OnDestroy{
         this.selectedRegions = regions
       })
     )
+    this.subscriptions.push(
+        this.selectedTemplate$.subscribe(template => this.selectedTemplate = template)
+    )
   }
 
   ngOnDestroy(){
@@ -168,6 +180,19 @@ export class SigninBanner implements OnInit, OnDestroy{
     })
   }
 
+  showInfoToast($event, toastType) {
+    this.chosenTemplateIndex = toastType === 'template'? $event : null
+    this.chosenParcellationIndex = toastType === 'parcellation'? $event : null
+
+    if (this.dismissToastHandler) {
+      this.dismissToastHandler()
+      this.dismissToastHandler = null
+    }
+    this.dismissToastHandler = this.toastService.showToast(this.publicationTemplate, {
+      timeout: 7000
+    })
+  }
+
   get isMobile(){
     return this.constantService.mobile
   }
diff --git a/src/ui/signinBanner/signinBanner.style.css b/src/ui/signinBanner/signinBanner.style.css
index 126c598d6d8544ae5e1727d105ac6e20dd089c26..1d53a9f509d6124afce0b454cc5826c211b4cfa6 100644
--- a/src/ui/signinBanner/signinBanner.style.css
+++ b/src/ui/signinBanner/signinBanner.style.css
@@ -46,12 +46,26 @@ dropdown-component
 
 .login-button-panel-mobile {
   order: -1;
-  align-self: flex-start; 
+  align-self: flex-start;
   width: 100%;
   display: flex;
   justify-content: space-between;
 }
 
+.login-button-panel-splash {
+  display: flex;
+  flex-direction: column;
+  justify-content: space-between;
+  margin-left: auto;
+  text-align: right
+}
+.login-button-splash > button {
+  color: #FFFFFF;
+  outline: none;
+  background-color: coral;
+  margin: 5px;
+}
+
 .login-button-mobile > button {
   outline: none;
   background-color: transparent;
diff --git a/src/ui/signinBanner/signinBanner.template.html b/src/ui/signinBanner/signinBanner.template.html
index 56856ec3daebcd4f3dd2d01c9267b24e86d823e4..d5991ef576160478525ef34583ca6ef697dae914 100644
--- a/src/ui/signinBanner/signinBanner.template.html
+++ b/src/ui/signinBanner/signinBanner.template.html
@@ -3,25 +3,25 @@
   [ngClass]="{ 'flex-column w-100 align-items-stretch' : isMobile}" >
 
   <dropdown-component
+    *ngIf="selectedTemplate || isMobile"
     (itemSelected)="changeTemplate($event)"
     [activeDisplay]="displayActiveTemplate"
     [selectedItem]="selectedTemplate$ | async"
     [inputArray]="loadedTemplates$ | async | filterNull"
-    [isMobile] = "isMobile"
     [ngClass]="isMobile ? flexItemIsMobileClass : flexItemIsDesktopClass"
-    [darktheme] ="darktheme">
+    (listItemButtonClicked)="showInfoToast($event, 'template')">
   </dropdown-component>
 
   <ng-container *ngIf="selectedTemplate$ | async as selectedTemplate">
     <dropdown-component
       *ngIf="selectedParcellation$ | async as selectedParcellation"
       (itemSelected)="changeParcellation($event)"
+      [checkSelected]="compareParcellation"
       [activeDisplay]="displayActiveParcellation"
       [selectedItem]="selectedParcellation"
       [inputArray]="selectedTemplate.parcellations"
-      [isMobile] = "isMobile"
       [ngClass]="isMobile ? flexItemIsMobileClass : flexItemIsDesktopClass"
-      [darktheme] ="darktheme">
+      (listItemButtonClicked)="showInfoToast($event, 'parcellation')">>
 
     </dropdown-component>
     <region-hierarchy
@@ -41,7 +41,7 @@
   <!-- help btn -->
   <div class="btnWrapper">
     <div
-      *ngIf="!isMobile" 
+      *ngIf="!isMobile && selectedTemplate"
       (click)="showHelp()" 
       class="btn btn-outline-secondary btn-sm rounded-circle login-icon">
       <i class="fas fa-question-circle"></i>
@@ -53,7 +53,7 @@
   <div class="btnWrapper">
 
     <div 
-      *ngIf="!isMobile" 
+      *ngIf="!isMobile && selectedTemplate"
       (click)="showSignin()"
       class="btn btn-outline-secondary btn-sm rounded-circle login-icon">
       <i
@@ -74,4 +74,28 @@
     </div>
 
   </div>
-</div>
\ No newline at end of file
+</div>
+
+<ng-template #publicationTemplate>
+  <div *ngIf="loadedTemplates$ | async as loadedTemplates">
+    <div *ngIf="chosenTemplateIndex !== null; else parcellationToast">
+      <reference-toast-component *ngIf="loadedTemplates[chosenTemplateIndex]['properties'] && (loadedTemplates[chosenTemplateIndex]['properties']['description'] || loadedTemplates[chosenTemplateIndex]['properties']['publications'])"
+                               [templateName] = "loadedTemplates[chosenTemplateIndex]['name'] ? loadedTemplates[chosenTemplateIndex]['name'] : null"
+                               [templateDescription] = "loadedTemplates[chosenTemplateIndex]['properties']['description']? loadedTemplates[chosenTemplateIndex]['properties']['description'] : null"
+                               [templatePublications] = "loadedTemplates[chosenTemplateIndex]['properties']['publications']? loadedTemplates[chosenTemplateIndex]['properties']['publications']: null">
+      </reference-toast-component>
+    </div>
+    <ng-template #parcellationToast>
+      <div *ngIf="(selectedTemplate$ | async) as selectedTemplate">
+        <div *ngIf="selectedTemplate.parcellations[chosenParcellationIndex]['properties'] && (selectedTemplate.parcellations[chosenParcellationIndex]['properties']['description'] || selectedTemplate.parcellations[chosenParcellationIndex]['properties']['publications'])">
+        <reference-toast-component
+              [parcellationName] = "selectedTemplate.parcellations[chosenParcellationIndex]['name']? selectedTemplate.parcellations[chosenParcellationIndex]['name'] : null"
+              [parcellationDescription] = "selectedTemplate.parcellations[chosenParcellationIndex]['properties']['description']? selectedTemplate.parcellations[chosenParcellationIndex]['properties']['description'] : null"
+              [parcellationPublications] = "selectedTemplate.parcellations[chosenParcellationIndex]['properties']['publications']? selectedTemplate.parcellations[chosenParcellationIndex]['properties']['publications']: null"
+              [parcellationNifti] = "selectedTemplate.parcellations[chosenParcellationIndex]['properties']['nifti']? selectedTemplate.parcellations[chosenParcellationIndex]['properties']['nifti'] : null">
+        </reference-toast-component>
+        </div>
+      </div>
+    </ng-template>
+  </div>
+</ng-template>
\ No newline at end of file
diff --git a/src/ui/ui.module.ts b/src/ui/ui.module.ts
index f385e39f89b37fa536cde92a2dae0ae215f1def3..868912b551cb0c72e77aac85ebca80204d0abf5d 100644
--- a/src/ui/ui.module.ts
+++ b/src/ui/ui.module.ts
@@ -46,6 +46,7 @@ import { StatusCardComponent } from "./nehubaContainer/statusCard/statusCard.com
 import { CookieAgreement } from "./cookieAgreement/cookieAgreement.component";
 import { KGToS } from "./kgtos/kgtos.component";
 import { AngularMaterialModule } from "./sharedModules/angularMaterial.module";
+import {ReferenceToastComponent} from "src/ui/referenceToast/referenceToast.component";
 
 
 @NgModule({
@@ -82,6 +83,7 @@ import { AngularMaterialModule } from "./sharedModules/angularMaterial.module";
     StatusCardComponent,
     CookieAgreement,
     KGToS,
+    ReferenceToastComponent,
 
     /* pipes */
     GroupDatasetByRegion,
@@ -125,7 +127,9 @@ import { AngularMaterialModule } from "./sharedModules/angularMaterial.module";
     SigninModal,
     CookieAgreement,
     KGToS,
-    AngularMaterialModule
+    AngularMaterialModule,
+    StatusCardComponent,
+    ReferenceToastComponent
   ]
 })
 
diff --git a/src/util/directives/FixedMouseContextualContainerDirective.directive.ts b/src/util/directives/FixedMouseContextualContainerDirective.directive.ts
index 47d15bb36b0b40d1a9c9f9f5f4a187ef6591d1d9..89409b75a48ac9cb797d4064e0e73887c6f21587 100644
--- a/src/util/directives/FixedMouseContextualContainerDirective.directive.ts
+++ b/src/util/directives/FixedMouseContextualContainerDirective.directive.ts
@@ -25,6 +25,9 @@ export class FixedMouseContextualContainerDirective {
   }
 
   public show(){
+    if ((window.innerWidth - this.mousePos[0]) < 220) {
+      this.mousePos[0] = window.innerWidth-220
+    }
     this.transform = `translate(${this.mousePos.map(v => v.toString() + 'px').join(', ')})`
     this.styleDisplay = 'block'
     this.isShown = true
diff --git a/src/util/pipes/filterNull.pipe.ts b/src/util/pipes/filterNull.pipe.ts
index 31a2f0c5c74313313720777f248e630fa109d26d..c9e28146f52756671270c82402db12a76efe0a89 100644
--- a/src/util/pipes/filterNull.pipe.ts
+++ b/src/util/pipes/filterNull.pipe.ts
@@ -6,6 +6,6 @@ import { Pipe, PipeTransform } from "@angular/core";
 
 export class FilterNullPipe implements PipeTransform{
   public transform(arr:any[]){
-    return arr.filter(obj => obj !== null)
+    return (arr && arr.filter(obj => obj !== null)) || []
   }
 }
\ No newline at end of file
diff --git a/src/util/worker.js b/src/util/worker.js
index 293d0908b1b145a0283f8bf51e9370c332854db3..44eeeeb5144cdee87833e80c3fb76c525551868d 100644
--- a/src/util/worker.js
+++ b/src/util/worker.js
@@ -1,5 +1,18 @@
-const validTypes = ['CHECK_MESHES', 'GET_LANDMARKS_VTK', 'GET_USERLANDMARKS_VTK', 'BUILD_REGION_SELECTION_TREE']
-const validOutType = ['CHECKED_MESH', 'ASSEMBLED_LANDMARKS_VTK', 'ASSEMBLED_USERLANDMARKS_VTK', 'RETURN_REBUILT_REGION_SELECTION_TREE']
+const validTypes = [
+  'CHECK_MESHES',
+  'GET_LANDMARKS_VTK',
+  'GET_USERLANDMARKS_VTK',
+  'BUILD_REGION_SELECTION_TREE',
+  'PROPAGATE_NG_ID'
+]
+
+const validOutType = [
+  'CHECKED_MESH',
+  'ASSEMBLED_LANDMARKS_VTK',
+  'ASSEMBLED_USERLANDMARKS_VTK',
+  'RETURN_REBUILT_REGION_SELECTION_TREE',
+  'UPDATE_PARCELLATION_REGIONS'
+]
 
 const checkMeshes = (action) => {
   
@@ -7,9 +20,12 @@ const checkMeshes = (action) => {
   const baseUrl = action.baseUrl
   fetch(`${baseUrl}/info`)
     .then(res => res.json())
-    .then(json => json.mesh
-      ? json.mesh
-      : new Error(`mesh does not exist on fetched info file: ${JSON.stringify(json)}`))
+    .then(({mesh}) => {
+      if (mesh)
+        return mesh
+      else 
+        throw new Error('mesh does not exist')
+    })
     .then(meshPath => action.indices.forEach(index => {
       fetch(`${baseUrl}/${meshPath}/${index}:0`)
         .then(res => res.json())
@@ -29,7 +45,7 @@ const checkMeshes = (action) => {
         })
     }))
     .catch(error => {
-      console.error('parsing info json error', error)
+      // console.error('parsing info json error', error)
     })
 }
 
@@ -268,6 +284,39 @@ const rebuildSelectedRegion = (payload) => {
   })
 }
 
+const propagateNgId = (parcellation) => {
+  const recursivePropagateNgId = (region, {ngId}) => {
+    return {
+      ngId,
+      ...region,
+      ...( region.children && region.children.map
+        ? {
+          children: region.children.map(c => recursivePropagateNgId(c, { ngId: region.ngId || ngId }))
+        }
+        : {} )
+    }
+  }
+  const regions = parcellation.regions && parcellation.regions.map
+    ? parcellation.regions.map(r => recursivePropagateNgId(r, { ngId: parcellation.ngId }))
+    : []
+
+  return {
+    ...parcellation,
+    regions
+  }
+}
+
+const processPropagateNgId = (payload) => {
+  const { parcellation } = payload
+  const p = parcellation.ngId
+    ? parcellation
+    : propagateNgId(parcellation)
+  postMessage({
+    type: 'UPDATE_PARCELLATION_REGIONS',
+    parcellation: p
+  })
+}
+
 onmessage = (message) => {
   
   if(validTypes.findIndex(type => type === message.data.type) >= 0){
@@ -284,8 +333,13 @@ onmessage = (message) => {
       case 'BUILD_REGION_SELECTION_TREE':
         rebuildSelectedRegion(message.data)
         return
+      case 'PROPAGATE_NG_ID':
+        processPropagateNgId(message.data)
+        return
       default:
         console.warn('unhandled worker action', message)
     }
+  } else {
+    console.warn('unhandled worker action', message)
   }
 }
diff --git a/third_party/export_nehuba/main.bundle.js b/third_party/export_nehuba/main.bundle.js
index 389df5d3214b606b69d46bc804ecd4d0d8d115a2..d2405e400e269303b2fe1ff742d074069b0b3764 100644
--- a/third_party/export_nehuba/main.bundle.js
+++ b/third_party/export_nehuba/main.bundle.js
@@ -755,7 +755,7 @@ y,n.viewer.visibleLayerRoles,n);n.offscreenFramebuffer=n.registerDisposer(new r.
 b,c,0);t.s.transformMat4(d,d,n.sliceView.viewportToData);a.changed.dispatch()})});Object(k.c)(b,"rotate-via-mouse-drag",function(a){var b=n.viewer.mouseState;if(b.updateUnconditionally()){var c=t.s.clone(b.position);Object(m.a)(a.detail,function(a,b,d){a=n.sliceView.viewportAxes;n.viewer.navigationState.pose.rotateAbsolute(a[1],b/4*Math.PI/180,c);n.viewer.navigationState.pose.rotateAbsolute(a[0],d/4*Math.PI/180,c)})}});n.registerDisposer(h);n.registerDisposer(v.crossSectionBackgroundColor.changed.add(function(){return n.scheduleRedraw()}));
 n.registerDisposer(h.visibility.add(n.visibility));n.registerDisposer(h.viewChanged.add(function(){n.visible&&a.scheduleRedraw()}));n.registerDisposer(v.showAxisLines.changed.add(function(){n.visible&&n.scheduleRedraw()}));n.registerDisposer(v.showScaleBar.changed.add(function(){n.visible&&n.context.scheduleRedraw()}));n.registerDisposer(v.scaleBarOptions.changed.add(function(){n.visible&&n.context.scheduleRedraw()}));return n}n(f,a);v(f,[{key:"isReady",value:function(){if(!this.visible||!this.sliceView.isReady())return!1;
 var a=this.visibleLayerTracker.getVisibleLayers();a=$jscomp.makeIterator(a);for(var b=a.next();!b.done;b=a.next())if(!b.value.isReady())return!1;return!0}},{key:"draw",value:function(){var a=this.sliceView;this.onResize();a.updateRendering();if(a.hasValidViewport){var c=this.gl,e=a.width,g=a.height,k=a.dataToDevice;this.offscreenFramebuffer.bind(e,g);c.disable(WebGL2RenderingContext.SCISSOR_TEST);this.gl.clearColor(0,0,0,0);c.clear(WebGL2RenderingContext.COLOR_BUFFER_BIT);var l=t.k.create(),m=this.viewer.crossSectionBackgroundColor.value;
-x[0]=m[0];x[1]=m[1];x[2]=m[2];x[3]=1;this.sliceViewRenderHelper.draw(a.offscreenFramebuffer.colorBuffers[0].texture,t.d,this.colorFactor,x,0,0,1,1);m=this.visibleLayerTracker.getVisibleLayers();var r=this.pickIDs;r.clear();this.offscreenFramebuffer.bindSingle(w.COLOR);r={dataToDevice:a.dataToDevice,pickIDs:r,emitter:d,emitColor:!0,emitPickID:!1,viewportWidth:e,viewportHeight:g,sliceView:a};c.enable(WebGL2RenderingContext.BLEND);c.blendFunc(WebGL2RenderingContext.SRC_ALPHA,WebGL2RenderingContext.ONE_MINUS_SRC_ALPHA);
+x[0]=m[0];x[1]=m[1];x[2]=m[2];x[3]=1;this.offscreenFramebuffer.bindSingle(w.COLOR);this.sliceViewRenderHelper.draw(a.offscreenFramebuffer.colorBuffers[0].texture,t.d,this.colorFactor,x,0,0,1,1);m=this.visibleLayerTracker.getVisibleLayers();var r=this.pickIDs;r.clear();r={dataToDevice:a.dataToDevice,pickIDs:r,emitter:d,emitColor:!0,emitPickID:!1,viewportWidth:e,viewportHeight:g,sliceView:a};c.enable(WebGL2RenderingContext.BLEND);c.blendFunc(WebGL2RenderingContext.SRC_ALPHA,WebGL2RenderingContext.ONE_MINUS_SRC_ALPHA);
 for(var f=$jscomp.makeIterator(m),u=f.next();!u.done;u=f.next())u.value.draw(r);c.disable(WebGL2RenderingContext.BLEND);this.offscreenFramebuffer.bindSingle(w.PICK);r.emitColor=!1;r.emitPickID=!0;r.emitter=b;m=$jscomp.makeIterator(m);for(u=m.next();!u.done;u=m.next())u.value.draw(r);if(this.viewer.showAxisLines.value||this.viewer.showScaleBar.value){if(this.viewer.showAxisLines.value){t.k.copy(l,k);for(k=0;3>k;++k)l[12+k]=0;for(k=0;4>k;++k)l[2+4*k]=0;g=Math.min(e,g)/4*1.5;k=a.pixelSize;for(m=0;12>
 m;++m)l[m]=l[m]*g*k}this.offscreenFramebuffer.bindSingle(w.COLOR);this.viewer.showAxisLines.value&&this.axesLineHelper.draw(l);this.viewer.showScaleBar.value&&(c.enable(WebGL2RenderingContext.BLEND),c.blendFunc(WebGL2RenderingContext.SRC_ALPHA,WebGL2RenderingContext.ONE_MINUS_SRC_ALPHA),l=this.viewer.scaleBarOptions.value,g=this.scaleBarTexture,k=g.dimensions,k.targetLengthInPixels=Math.min(l.maxWidthFraction*e,l.maxWidthInPixels*l.scaleFactor),k.nanometersPerPixel=a.pixelSize,g.update(l),c.viewport(l.leftPixelOffset*
 l.scaleFactor,l.bottomPixelOffset*l.scaleFactor,g.width,g.height),this.scaleBarCopyHelper.draw(g.texture),c.disable(WebGL2RenderingContext.BLEND))}this.offscreenFramebuffer.unbind();this.setGLViewport();this.offscreenCopyHelper.draw(this.offscreenFramebuffer.colorBuffers[w.COLOR].texture)}}},{key:"onResize",value:function(){this.sliceView.setViewportSizeDebounced(this.element.clientWidth,this.element.clientHeight)}},{key:"updateMouseState",value:function(a){a.pickedRenderLayer=null;var b=this.sliceView;
@@ -1442,71 +1442,71 @@ b){if("function"!==typeof b&&null!==b)throw new TypeError("Super expression must
 d.key,d)}}return function(b,c,d){c&&a(b.prototype,c);d&&a(b,d);return b}}(),d=function e(a,b,d){null===a&&(a=Function.prototype);var g=Object.getOwnPropertyDescriptor(a,b);if(void 0===g){if(a=Object.getPrototypeOf(a),null!==a)return e(a,b,d)}else{if("value"in g)return g.value;b=g.get;return void 0===b?void 0:b.call(d)}},b=function(a){function b(a,d,e){if(!(this instanceof b))throw new TypeError("Cannot call a class as a function");var g=(b.__proto__||Object.getPrototypeOf(b)).call(this);if(!this)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
 g=!g||"object"!==typeof g&&"function"!==typeof g?this:g;g.register=a;g.unregister=d;g.changed=new p.a;void 0===e?g.map=new Map:(g.map=new Map(e),g.map.forEach(g.register));return g}q(b,a);$jscomp.initSymbol();$jscomp.initSymbolIterator();n(b,[{key:"set",value:function(a,b){var d=this.map,e=d.get(a);void 0!==e&&this.unregister(e,a);d.set(a,b);this.register(b,a);this.changed.dispatch();return this}},{key:"delete",value:function(a){var b=this.map.get(a);return void 0!==b?(this.unregister(b,a),this.changed.dispatch(),
 !0):!1}},{key:"has",value:function(a){return this.map.has(a)}},{key:Symbol.iterator,value:function(){$jscomp.initSymbol();$jscomp.initSymbolIterator();return this.map[Symbol.iterator]()}},{key:"clear",value:function(){var a=this.map;0<a.size&&(a.forEach(this.unregister),a.clear(),this.changed.dispatch())}},{key:"values",value:function(){return this.map.values()}},{key:"keys",value:function(){return this.map.keys()}},{key:"disposed",value:function(){this.map.forEach(this.unregister);this.map.clear();
-d(b.prototype.__proto__||Object.getPrototypeOf(b.prototype),"disposed",this).call(this)}},{key:"size",get:function(){return this.map.size}}]);return b}(h.a)},function(h,f,a){var q=a(2);a.d(f,"g",function(){return q.s});a.d(f,"h",function(){return q.u});a.d(f,"e",function(){return q.n});var p=a(312);a.d(f,"b",function(){return p.b});a.d(f,"a",function(){return p.a});var n=a(191);a.d(f,"d",function(){return n.b});var d=a(121);a.d(f,"c",function(){return d.c});a.d(f,"f",function(){return d.d})},function(h,
-f,a){f.a=function(a){if(!window.getSelection().isCollapsed)return!0;a=a.target.tagName;return"TEXTAREA"===a||"INPUT"===a?!0:!1};f.b=function(a,f){f=void 0===f?"text/plain":f;var d=!1,b=Object(q.c)(document,"copy",function(b){b.clipboardData.setData(f,a);d=!0;b.stopPropagation();b.preventDefault()},!0);try{document.execCommand("copy")}finally{b()}return d};var q=a(1)},function(h,f,a){function q(a,b){if(!(a instanceof b))throw new TypeError("Cannot call a class as a function");}function p(a,b){if(!a)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
-return!b||"object"!==typeof b&&"function"!==typeof b?a:b}function n(a,b){if("function"!==typeof b&&null!==b)throw new TypeError("Super expression must either be null or a function, not "+typeof b);a.prototype=Object.create(b&&b.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}});b&&(Object.setPrototypeOf?Object.setPrototypeOf(a,b):a.__proto__=b)}a.d(f,"a",function(){return g});a.d(f,"b",function(){return l});h=a(33);a=a(1);var d=function t(a,b,c){null===a&&(a=Function.prototype);
-var d=Object.getOwnPropertyDescriptor(a,b);if(void 0===d){if(a=Object.getPrototypeOf(a),null!==a)return t(a,b,c)}else{if("value"in d)return d.value;b=d.get;return void 0===b?void 0:b.call(c)}},b=function(){function a(a,b){for(var c=0;c<b.length;c++){var d=b[c];d.enumerable=d.enumerable||!1;d.configurable=!0;"value"in d&&(d.writable=!0);Object.defineProperty(a,d.key,d)}}return function(b,c,d){c&&a(b.prototype,c);d&&a(b,d);return b}}();$jscomp.initSymbol();var c=Symbol("SingleTextureVolumeChunk.textureUnit");
-$jscomp.initSymbol();var e=Symbol("SingleTextureVolumeChunk.textureLayout"),g=function(a){function d(a){q(this,d);var b=p(this,(d.__proto__||Object.getPrototypeOf(d)).call(this));b.shaderKey=a;return b}n(d,a);b(d,[{key:"defineShader",value:function(a){a.addTextureSampler2D("uVolumeChunkSampler",c)}},{key:"beginDrawing",value:function(a,b){var d=b.textureUnit(c);a.activeTexture(a.TEXTURE0+d);b[e]=null}},{key:"endDrawing",value:function(a,b){a.bindTexture(a.TEXTURE_2D,null);b[e]=null}},{key:"bindChunk",
-value:function(a,b,c){var d=c.textureLayout;b[e]!==d&&(b[e]=d,this.setupTextureLayout(a,b,d));a.bindTexture(a.TEXTURE_2D,c.texture)}},{key:"beginSource",value:function(a,b){}}]);return d}(a.a),l=function(a){function c(a,b){q(this,c);a=p(this,(c.__proto__||Object.getPrototypeOf(c)).call(this,a,b));a.texture=null;a.data=b.data;return a}n(c,a);b(c,[{key:"copyToGPU",value:function(a){d(c.prototype.__proto__||Object.getPrototypeOf(c.prototype),"copyToGPU",this).call(this,a);var b=this.texture=a.createTexture();
-a.bindTexture(a.TEXTURE_2D,b);this.setTextureData(a);a.bindTexture(a.TEXTURE_2D,null)}},{key:"freeGPUMemory",value:function(a){d(c.prototype.__proto__||Object.getPrototypeOf(c.prototype),"freeGPUMemory",this).call(this,a);a.deleteTexture(this.texture);this.texture=null;this.textureLayout.dispose();this.textureLayout=null}}]);return c}(h.a)},function(h,f,a){f.a=function(a,f,h,d,b,c){for(var e=0,g=0,l=1,k=1,t=0;3>t;++t){var m=b[t],r=d[t],n=m%r;e+=Math.floor(m/r)*l;l*=Math.ceil(h[t]/r);g+=n*k;k*=r}d=
-f+2*e;h=a[d];d=a[d+1];b=h&16777215;h=h>>24&255;0<h&&(b+=c*(a[(f+d&16777215)+Math.floor(g*h/32)]>>g*h%32&(1<<h)-1));return b}},function(h,f,a){f.b=function(a,f){return function(h){h.style.flex=a;f(h)}};f.a=function(a,f){return function(h){h.style.display="flex";h.style.flexDirection=a;for(var d=$jscomp.makeIterator(f),b=d.next();!b.done;b=d.next()){b=b.value;var c=h.ownerDocument.createElement("div");h.appendChild(c);b(c)}}}},function(h,f,a){function q(a,b){if(!a)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
-return!b||"object"!==typeof b&&"function"!==typeof b?a:b}function p(a,b){if("function"!==typeof b&&null!==b)throw new TypeError("Super expression must either be null or a function, not "+typeof b);a.prototype=Object.create(b&&b.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}});b&&(Object.setPrototypeOf?Object.setPrototypeOf(a,b):a.__proto__=b)}a.d(f,"a",function(){return k});var n=a(27);h=a(47);var d=a(26),b=a(32),c=a(186),e=a(326),g=a(331),l=function(){function a(a,b){for(var c=
-0;c<b.length;c++){var d=b[c];d.enumerable=d.enumerable||!1;d.configurable=!0;"value"in d&&(d.writable=!0);Object.defineProperty(a,d.key,d)}}return function(b,c,d){c&&a(b.prototype,c);d&&a(b,d);return b}}();a(332);var k=function(a){function k(a,b){if(!(this instanceof k))throw new TypeError("Cannot call a class as a function");var d=q(this,(k.__proto__||Object.getPrototypeOf(k)).call(this));d.manager=a;d.existingLayer=b;d.statusElement=document.createElement("div");d.submitElement=document.createElement("button");
-d.namePromptElement=document.createElement("label");d.nameInputElement=document.createElement("input");d.volumeCancellationSource=void 0;d.sourceValid=!1;d.nameValid=!0;var l=d.content;l.classList.add("add-layer-overlay");var f=document.createElement("form");f.className="source-form";d.registerEventListener(f,"submit",function(a){a.preventDefault();d.validateSource(!0)});var m=document.createElement("label");m.textContent="Source:";a=d.sourceInput=d.registerDisposer(new e.a({completer:function(a,
-b){return d.manager.dataSourceProvider.volumeCompleter(a,d.manager.chunkManager,b).then(function(a){return{completions:a.completions,makeElement:e.b,offset:a.offset,showSingleResult:!0}})},delay:0}));a.element.classList.add("add-layer-source");a.inputElement.addEventListener("blur",function(){d.validateSource(!1)});d.submitElement.disabled=!0;a.inputChanged.add(function(){var a=d.volumeCancellationSource;void 0!==a&&(a.cancel(),d.volumeCancellationSource=void 0);d.sourceValid=!1;d.submitElement.disabled=
-!0;d.statusElement.textContent=""});f.appendChild(m);f.appendChild(a.element);Object(c.a)(m,a.inputElement);m=Object(g.a)();f.appendChild(m);l.appendChild(f);var h=d.statusElement,t=d.namePromptElement,r=d.nameInputElement;f=d.submitElement;h.className="dialog-status";m=document.createElement("form");m.className="name-form";t.textContent="Name:";r.className="add-layer-name";r.autocomplete="off";r.spellcheck=!1;r.type="text";d.registerEventListener(r,"input",function(){d.validateName()});f.type="submit";
-Object(c.a)(t,r);m.appendChild(t);m.appendChild(r);m.appendChild(f);l.appendChild(m);l.appendChild(h);void 0!==b?(void 0!==b.sourceUrl?(a.value=b.sourceUrl,d.validateSource()):d.sourceValid=!0,a.disabled=!0,r.value=b.name,d.validateName(),f.textContent="Save",r.focus()):(b=d.manager.layerManager.managedLayers,0<b.length&&(b=b[b.length-1],b instanceof n.b&&(b=b.sourceUrl,void 0!==b&&(l=d.manager.dataSourceProvider.findSourceGroup(b),a.value=b.substring(0,l),a.inputElement.setSelectionRange(0,l)))),
-a.inputElement.focus(),f.textContent="Add Layer");d.registerEventListener(m,"submit",function(a){a.preventDefault();d.submit()});return d}p(k,a);l(k,[{key:"isNameValid",value:function(){var a=this.nameInputElement.value;if(""===a)return!1;a=this.manager.layerManager.getLayerByName(a);return void 0===a||a===this.existingLayer}},{key:"submit",value:function(){this.sourceValid&&this.isNameValid()&&(this.existingLayer?(this.existingLayer.name=this.nameInputElement.value,this.manager.layerManager.layersChanged.dispatch()):
-this.manager.add(this.manager.getLayer(this.nameInputElement.value,this.sourceInput.value)),this.dispose())}},{key:"validateName",value:function(){var a=this.nameInputElement;(this.nameValid=this.isNameValid())?(a.classList.add("valid-input"),a.classList.remove("invalid-input")):(a.classList.remove("valid-input"),a.classList.add("invalid-input"));this.validityChanged()}},{key:"validityChanged",value:function(){this.submitElement.disabled=!(this.nameValid&&this.sourceValid)}},{key:"validateSource",
-value:function(a){var c=this;a=void 0===a?!1:a;var e=this.sourceInput.value;if(""!==e){try{var g=this.manager.dataSourceProvider.suggestLayerName(e),k=this.nameInputElement;if(""===this.nameInputElement.value){var l=this.manager.layerManager.getUniqueLayerName(g);k.value=l;k.setSelectionRange(0,l.length);this.validateName()}a&&k.focus()}catch(z){this.setError(z.message);return}this.setInfo("Validating volume source...");var f=this.volumeCancellationSource=new b.b;this.manager.dataSourceProvider.getVolume(this.manager.chunkManager,
-e,void 0,f).then(function(a){f.isCanceled||(c.volumeCancellationSource=void 0,c.sourceValid=!0,c.setInfo(d.c[a.volumeType].toLowerCase()+": "+(a.numChannels+"-channel "+d.a[a.dataType].toLowerCase())),c.validityChanged())}).catch(function(a){f.isCanceled||(c.volumeCancellationSource=void 0,c.setError(a.message))})}}},{key:"setInfo",value:function(a){this.statusElement.className="dialog-status dialog-status-info";this.statusElement.textContent=a}},{key:"setError",value:function(a){this.statusElement.className=
-"dialog-status dialog-status-error";this.statusElement.textContent=a}}]);return k}(h.a)},function(h,f,a){f.a=function(a,f){""===f.id&&(f.id="unique-id-for-association-"+q++);a.setAttribute("for",f.id)};var q=0},function(h,f,a){f.a=function(a){var f=-1;return Object.assign(function(){-1===f&&(f=requestAnimationFrame(function(){f=-1;a()}))},{flush:function(){-1!==f&&(f=-1,a())},cancel:function(){-1!==f&&(cancelAnimationFrame(f),f=-1)}})}},function(h,f,a){function q(a,b){if("function"!==typeof b&&null!==
-b)throw new TypeError("Super expression must either be null or a function, not "+typeof b);a.prototype=Object.create(b&&b.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}});b&&(Object.setPrototypeOf?Object.setPrototypeOf(a,b):a.__proto__=b)}function p(a,b){var c=document.documentElement.scrollTop+Math.min(document.documentElement.clientHeight-a.offsetHeight,b.clientY);a.style.left=document.documentElement.scrollLeft+Math.min(document.documentElement.clientWidth-a.offsetWidth,
-b.clientX)+"px";a.style.top=c+"px";a.style.visibility=null}a.d(f,"a",function(){return e});var n=a(1),d=a(8),b=a(7),c=function(){function a(a,b){for(var c=0;c<b.length;c++){var d=b[c];d.enumerable=d.enumerable||!1;d.configurable=!0;"value"in d&&(d.writable=!0);Object.defineProperty(a,d.key,d)}}return function(b,c,d){c&&a(b.prototype,c);d&&a(b,d);return b}}();a(338);var e=function(a){function e(a){if(!(this instanceof e))throw new TypeError("Cannot call a class as a function");var c=(e.__proto__||
-Object.getPrototypeOf(e)).call(this);if(!this)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");c=!c||"object"!==typeof c&&"function"!==typeof c?this:c;c.element=document.createElement("div");c.parentDisposers=new Map;c.disabledValue=!1;c.opened=new b.a;c.closed=new b.a;var d=c.element;d.className="neuroglancer-context-menu";d.style.visibility="hidden";d.tabIndex=-1;document.body.appendChild(d);void 0!==a&&c.registerParent(a);return c}q(e,a);c(e,[{key:"registerParent",
-value:function(a){var b=this,c=this.parentDisposers;c.has(a)||c.set(a,Object(n.c)(a,"contextmenu",function(a){b.show(a);a.stopPropagation();a.preventDefault()}))}},{key:"show",value:function(a){var b=this;if(!this.disabledValue){this.hide();var c=this.element,d=Object(n.c)(document,"mousedown",function(a){a.target instanceof Node&&!c.contains(a.target)&&b.hide()},!0),e=Object(n.c)(document,"keydown",function(a){"Escape"===a.code&&b.hide()},!0);c.style.display=null;c.style.visibility="hidden";this.opened.dispatch();
-p(c,a);this.menuDisposer=function(){e();d();c.style.display="none"}}}},{key:"unregisterParent",value:function(a){var b=this.parentDisposers,c=b.get(a);void 0!==c&&(c(),b.delete(a))}},{key:"disposed",value:function(){for(var a=this.parentDisposers,b=$jscomp.makeIterator(a.values()),c=b.next();!c.done;c=b.next())c=c.value,c();a.clear();Object(d.b)(this.element)}},{key:"hide",value:function(){void 0!==this.menuDisposer&&(this.menuDisposer(),this.menuDisposer=void 0,this.closed.dispatch())}},{key:"disabled",
-get:function(){return this.disabledValue},set:function(a){this.disabledValue!==a&&(this.disabledValue=a)&&this.hide()}},{key:"open",get:function(){return void 0!==this.menuDisposer}}]);return e}(n.a)},function(h,f,a){f.a=function(a,d){var b=Object(q.c)(a,"drop",function(a){a.preventDefault();if(-1!==a.dataTransfer.types.indexOf(p.d)){var b=JSON.parse(a.dataTransfer.getData(p.d));d.restoreState(b);a.stopPropagation()}}),c=Object(q.c)(a,"dragover",function(a){-1!==a.dataTransfer.types.indexOf(p.d)&&
-(a.dataTransfer.dropEffect="link",a.preventDefault(),a.stopPropagation())});return function(){c();b()}};var q=a(1),p=a(120)},function(h,f,a){(function(a){function f(b,e,g,l){function c(a){var c=f(b,e);if(!c||c.to.line-c.from.line<m)return null;for(var d=b.findMarksAt(c.from),g=0;g<d.length;++g)if(d[g].__isFold&&"fold"!==l){if(!a)return null;c.cleared=!0;d[g].clear()}return c}if(g&&g.call){var f=g;g=null}else f=d(b,g,"rangeFinder");"number"==typeof e&&(e=a.Pos(e,0));var m=d(b,g,"minFoldSize"),r=c(!0);
-if(d(b,g,"scanUp"))for(;!r&&e.line>b.firstLine();)e=a.Pos(e.line-1,0),r=c(!1);if(r&&!r.cleared&&"unfold"!==l){var n=h(b,g);a.on(n,"mousedown",function(b){p.clear();a.e_preventDefault(b)});var p=b.markText(r.from,r.to,{replacedWith:n,clearOnEnter:d(b,g,"clearOnEnter"),__isFold:!0});p.on("clear",function(c,d){a.signal(b,"unfold",b,c,d)});a.signal(b,"fold",b,r.from,r.to)}}function h(a,b){a=d(a,b,"widget");"string"==typeof a?(b=document.createTextNode(a),a=document.createElement("span"),a.appendChild(b),
-a.className="CodeMirror-foldmarker"):a&&(a=a.cloneNode(!0));return a}function d(a,d,g){return d&&void 0!==d[g]?d[g]:(a=a.options.foldOptions)&&void 0!==a[g]?a[g]:b[g]}a.newFoldFunction=function(a,b){return function(c,d){f(c,d,{rangeFinder:a,widget:b})}};a.defineExtension("foldCode",function(a,b,d){f(this,a,b,d)});a.defineExtension("isFolded",function(a){a=this.findMarksAt(a);for(var b=0;b<a.length;++b)if(a[b].__isFold)return!0});a.commands.toggleFold=function(a){a.foldCode(a.getCursor())};a.commands.fold=
-function(a){a.foldCode(a.getCursor(),null,"fold")};a.commands.unfold=function(a){a.foldCode(a.getCursor(),null,"unfold")};a.commands.foldAll=function(b){b.operation(function(){for(var c=b.firstLine(),d=b.lastLine();c<=d;c++)b.foldCode(a.Pos(c,0),null,"fold")})};a.commands.unfoldAll=function(b){b.operation(function(){for(var c=b.firstLine(),d=b.lastLine();c<=d;c++)b.foldCode(a.Pos(c,0),null,"unfold")})};a.registerHelper("fold","combine",function(){var a=Array.prototype.slice.call(arguments,0);return function(b,
-c){for(var d=0;d<a.length;++d){var e=a[d](b,c);if(e)return e}}});a.registerHelper("fold","auto",function(a,b){for(var c=a.getHelpers(b,"fold"),d=0;d<c.length;d++){var e=c[d](a,b);if(e)return e}});var b={rangeFinder:a.fold.auto,widget:"\u2194",minFoldSize:0,scanUp:!1,clearOnEnter:!0};a.defineOption("foldOptions",null);a.defineExtension("foldOption",function(a,b){return d(this,a,b)})})(a(48))},function(h,f,a){function q(a,b){if(!a)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
-return!b||"object"!==typeof b&&"function"!==typeof b?a:b}function p(a,b){if("function"!==typeof b&&null!==b)throw new TypeError("Super expression must either be null or a function, not "+typeof b);a.prototype=Object.create(b&&b.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}});b&&(Object.setPrototypeOf?Object.setPrototypeOf(a,b):a.__proto__=b)}a.d(f,"a",function(){return w});var n=a(2),d=a(80),b=a(22),c=a(82),e=a(360),g=a(29),l=a(192),k=a(35),t=a(9),m=function(){function a(a,
-b){for(var c=0;c<b.length;c++){var d=b[c];d.enumerable=d.enumerable||!1;d.configurable=!0;"value"in d&&(d.writable=!0);Object.defineProperty(a,d.key,d)}}return function(b,c,d){c&&a(b.prototype,c);d&&a(b,d);return b}}(),r=function x(a,b,c){null===a&&(a=Function.prototype);var d=Object.getOwnPropertyDescriptor(a,b);if(void 0===d){if(a=Object.getPrototypeOf(a),null!==a)return x(a,b,c)}else{if("value"in d)return d.value;b=d.get;return void 0===b?void 0:b.call(c)}},u=n.s.create(),v=n.k.create();f.b="perpspectiveRenderEvent";
-var w=function(a){function f(a,g,m,h){if(!(this instanceof f))throw new TypeError("Cannot call a class as a function");var r=q(this,(f.__proto__||Object.getPrototypeOf(f)).call(this,a,g,m));r.config=h;r.planarSlices=new Set;r.transparentPlaneRenderHelper=r.registerDisposer(e.b.get(r.gl,c.c));r.scaleBarWidget=r.registerDisposer(new l.a);Object(b.c)(g,"nehuba-translate-via-mouse-drag",function(a){Object(d.a)(a.detail,function(a,b,c){if(r.config.layout.useNehubaPerspective.enableShiftDrag){a=r.width;
-var d=r.height,e=r.viewer.navigationState.position,g=e.spatialCoordinates;n.s.transformMat4(u,g,r.projectionMat);u[0]=2*b/a;u[1]=-2*c/d;n.s.transformMat4(g,u,r.inverseProjectionMat);e.changed.dispatch()}})});a=h.layout.useNehubaPerspective.removePerspectiveSlicesBackground;r.nehubaSliceViewRenderHelper=r.registerDisposer(e.a.get(r.gl,c.c,a&&a.mode||"none"));r.registerDisposer(r.visibility.changed.add(function(){return Array.from(r.sliceViews.keys()).forEach(function(a){return a.visibility.value=r.visibility.value})}));
-a=r.scaleBarWidget.element;r.registerDisposer(new k.a(Object(t.g)(function(a,b){return a&&b},m.showScaleBar,m.orthographicProjection),a));g.appendChild(a);return r}p(f,a);m(f,[{key:"updateProjectionMatrix",value:function(){r(f.prototype.__proto__||Object.getPrototypeOf(f.prototype),"updateProjectionMatrix",this).call(this);this.config.layout.useNehubaPerspective.centerToOrigin&&(n.k.translate(this.projectionMat,this.projectionMat,this.navigationState.position.spatialCoordinates),n.k.invert(this.inverseProjectionMat,
-this.projectionMat))}},{key:"disposed",value:function(){for(var a=$jscomp.makeIterator(this.planarSlices),b=a.next();!b.done;b=a.next())b.value.dispose();this.planarSlices.clear();r(f.prototype.__proto__||Object.getPrototypeOf(f.prototype),"disposed",this).call(this)}},{key:"draw",value:function(){for(var a=$jscomp.makeIterator(this.sliceViews.keys()),b=a.next();!b.done;b=a.next())b.value.visibility.value=this.config.layout.useNehubaPerspective.disablePerspectiveSlicesPreloading?this.viewer.showSliceViews.value&&
-this.visibility.visible?g.b.VISIBLE:g.b.IGNORED:this.visibility.value;if(this.navigationState.valid){this.onResize();a=this.width;var d=this.height;if(0!==a&&0!==d){b=this.viewer.showSliceViews.value;for(var e=$jscomp.makeIterator(this.sliceViews),k=e.next();!k.done;k=e.next()){k=$jscomp.makeIterator(k.value);var l=k.next().value;(k.next().value||b)&&l.updateRendering()}e=$jscomp.makeIterator(this.planarSlices);for(b=e.next();!b.done;b=e.next())b.value.updateRendering();b=this.gl;this.offscreenFramebuffer.bind(a,
-d);b.disable(b.SCISSOR_TEST);e=this.config.layout.useNehubaPerspective;e=e.perspectiveBackground||e.perspectiveSlicesBackground||this.viewer.crossSectionBackgroundColor.value;this.gl.clearColor(e[0],e[1],e[2],1);b.clear(b.COLOR_BUFFER_BIT|b.DEPTH_BUFFER_BIT);b.enable(b.DEPTH_TEST);e=this.projectionMat;this.updateProjectionMatrix();k=n.s.create();Object(n.p)(k,n.e[2],this.modelViewMat);n.s.normalize(k,k);l=this.pickIDs;l.clear();e={dataToDevice:e,lightDirection:k,ambientLighting:.2,directionalLighting:.8,
-pickIDs:l,emitter:c.c,emitColor:!0,emitPickID:!0,alreadyEmittedPickID:!1,viewportWidth:a,viewportHeight:d,extra:{config:this.config,showSliceViewsCheckboxValue:this.viewer.showSliceViews.value,slicesPose:this.viewer.slicesNavigationState.pose,perspectiveNavigationState:this.viewer.navigationState,meshesLoaded:-1,meshFragmentsLoaded:-1,crossSectionBackground:this.viewer.crossSectionBackgroundColor.value}};k=this.visibleLayerTracker.getVisibleLayers();for(var f=l=!1,m=$jscomp.makeIterator(k),h=m.next();!h.done;h=
-m.next())h=h.value,h.isTransparent?l=!0:h.isAnnotation?f=!0:h.draw(e);this.config.layout.useNehubaPerspective.waitForMesh&&!e.extra.meshRendered||this.drawSliceViews(e);if(f){b.enable(WebGL2RenderingContext.BLEND);b.depthFunc(WebGL2RenderingContext.LEQUAL);b.blendFunc(WebGL2RenderingContext.SRC_ALPHA,WebGL2RenderingContext.ONE_MINUS_SRC_ALPHA);b.drawBuffers([b.COLOR_ATTACHMENT0,b.NONE,b.NONE]);e.emitPickID=!1;f=$jscomp.makeIterator(k);for(h=f.next();!h.done;h=f.next())h=h.value,h.isAnnotation&&h.draw(e);
-b.depthFunc(WebGL2RenderingContext.LESS);b.disable(WebGL2RenderingContext.BLEND);b.drawBuffers([b.COLOR_ATTACHMENT0,b.COLOR_ATTACHMENT1,b.COLOR_ATTACHMENT2]);e.emitPickID=!0}h=this.config.layout.useNehubaPerspective.disableAxisLinesInPerspective;this.viewer.showAxisLines.value&&!h&&this.drawAxisLines();if(l){b.depthMask(!1);b.enable(WebGL2RenderingContext.BLEND);l=this.transparentConfiguration;l.bind(a,d);this.gl.clearColor(0,0,0,1);b.clear(WebGL2RenderingContext.COLOR_BUFFER_BIT);e.emitter=c.d;b.blendFuncSeparate(WebGL2RenderingContext.ONE,
-WebGL2RenderingContext.ONE,WebGL2RenderingContext.ZERO,WebGL2RenderingContext.ONE_MINUS_SRC_ALPHA);e.emitPickID=!1;f=$jscomp.makeIterator(k);for(h=f.next();!h.done;h=f.next())h=h.value,h.isTransparent&&h.draw(e);b.disable(WebGL2RenderingContext.DEPTH_TEST);this.offscreenFramebuffer.bindSingle(c.a.COLOR);b.blendFunc(WebGL2RenderingContext.ONE_MINUS_SRC_ALPHA,WebGL2RenderingContext.SRC_ALPHA);this.transparencyCopyHelper.draw(l.colorBuffers[0].texture,l.colorBuffers[1].texture);b.depthMask(!0);b.disable(WebGL2RenderingContext.BLEND);
-b.enable(WebGL2RenderingContext.DEPTH_TEST);this.offscreenFramebuffer.bind(a,d)}b.drawBuffers([b.NONE,b.COLOR_ATTACHMENT1,b.COLOR_ATTACHMENT2]);e.emitter=c.c;e.emitPickID=!0;e.emitColor=!1;b.enable(WebGL2RenderingContext.POLYGON_OFFSET_FILL);b.polygonOffset(-1,-1);d=$jscomp.makeIterator(k);for(h=d.next();!h.done;h=d.next())k=h.value,e.alreadyEmittedPickID=!k.isTransparent&&!k.isAnnotation,k.draw(e);b.disable(WebGL2RenderingContext.POLYGON_OFFSET_FILL);this.viewer.showScaleBar.value&&this.viewer.orthographicProjection.value&&
-(d=this.scaleBarWidget.dimensions,d.targetLengthInPixels=Math.min(a/4,100),d.nanometersPerPixel=this.nanometersPerPixel,this.scaleBarWidget.update());this.offscreenFramebuffer.unbind();this.setGLViewport();this.offscreenCopyHelper.draw(this.offscreenFramebuffer.colorBuffers[c.a.COLOR].texture);a=new CustomEvent("perpspectiveRenderEvent",{bubbles:!0,detail:{meshesLoaded:e.extra.meshesLoaded,meshFragmentsLoaded:e.extra.meshFragmentsLoaded,lastLoadedMeshId:e.extra.lastMeshId}});this.element.dispatchEvent(a)}}}},
-{key:"drawSliceViews",value:function(a){var b=this.config.layout.useNehubaPerspective,c=this.sliceViewRenderHelper,d=this.nehubaSliceViewRenderHelper,e=this.transparentPlaneRenderHelper,g=a.lightDirection,k=a.ambientLighting,l=a.directionalLighting;a=a.dataToDevice;var f=this.viewer.showSliceViews.value;if(!b.hideImages){var m=b.removePerspectiveSlicesBackground;c=m?d:c;for(var h=$jscomp.makeIterator(this.sliceViews),t=h.next();!t.done;t=h.next()){var r=$jscomp.makeIterator(t.value);t=r.next().value;
-if((r.next().value||f)&&0!==t.width&&0!==t.height&&t.hasValidViewport){r=Math.abs(n.s.dot(g,t.viewportAxes[2]));r=k+r*l;var p=v;n.k.identity(p);p[0]=t.width/2;p[5]=-t.height/2;n.k.multiply(p,t.viewportToData,p);n.k.multiply(p,a,p);var q=n.u.create(),u=b.perspectiveSlicesBackground||this.viewer.crossSectionBackgroundColor.value;q[0]=u[0];q[1]=u[1];q[2]=u[2];q[3]=1;d.setDiscardColor(m&&m.color||q);c.draw(t.offscreenFramebuffer.colorBuffers[0].texture,p,n.u.fromValues(r,r,r,1),q,0,0,1,1)}}}if(b.drawSubstrates&&
-f)for(d=b.fixedZoomPerspectiveSlices&&b.fixedZoomPerspectiveSlices.sliceViewportSizeMultiplier||1,g=$jscomp.makeIterator(this.sliceViews.keys()),k=g.next();!k.done;k=g.next()){c=k.value;k=v;n.k.identity(k);k[0]=c.width/2/d;k[5]=-c.height/2/d;n.k.multiply(k,c.viewportToData,k);l=n.k.clone(a);m=n.s.clone(this.navigationState.position.spatialCoordinates);c=n.s.clone(c.viewportAxes[2]);h=this.viewer.slicesNavigationState.pose.orientation.orientation;t=n.n.invert(n.n.create(),h);n.s.transformQuat(c,c,
-t);n.s.transformQuat(m,m,t);t=n.s.create();for(r=0;3>r;r++)t[r]=0===Math.round(c[r])?-m[r]:0;n.s.transformQuat(t,t,h);n.k.translate(l,l,t);n.k.multiply(k,l,k);l=b.drawSubstrates.color||n.u.fromValues(0,0,1,.2);e.draw(k,l,{factor:3,units:1})}if(b.drawZoomLevels&&f&&(f=b.drawZoomLevels.cutOff)&&this.viewer.slicesNavigationState.zoomFactor.value<f)for(f=$jscomp.makeIterator(this.planarSlices),k=f.next();!k.done;k=f.next())g=k.value,d=v,n.k.identity(d),d[0]=g.width/2,d[5]=-g.height/2,n.k.multiply(d,g.viewportToData,
-d),n.k.multiply(d,a,d),g=b.drawZoomLevels.color||n.u.fromValues(1,0,0,.2),e.draw(d,g,{factor:-1,units:1})}},{key:"zoomByMouse",value:function(a){r(f.prototype.__proto__||Object.getPrototypeOf(f.prototype),"zoomByMouse",this).call(this,a);if(a=this.config.layout.useNehubaPerspective.restrictZoomLevel)a.minZoom&&this.navigationState.zoomFactor.value<a.minZoom&&(this.navigationState.zoomFactor.value=a.minZoom),a.maxZoom&&this.navigationState.zoomFactor.value>a.maxZoom&&(this.navigationState.zoomFactor.value=
-a.maxZoom)}}]);return f}(c.b)},function(h,f,a){function q(a,b){if("function"!==typeof b&&null!==b)throw new TypeError("Super expression must either be null or a function, not "+typeof b);a.prototype=Object.create(b&&b.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}});b&&(Object.setPrototypeOf?Object.setPrototypeOf(a,b):a.__proto__=b)}a.d(f,"a",function(){return b});h=a(1);var p=a(53),n=a(8),d=function(){function a(a,b){for(var c=0;c<b.length;c++){var d=b[c];d.enumerable=
-d.enumerable||!1;d.configurable=!0;"value"in d&&(d.writable=!0);Object.defineProperty(a,d.key,d)}}return function(b,c,d){c&&a(b.prototype,c);d&&a(b,d);return b}}();a(361);var b=function(a){function b(a){a=void 0===a?new p.a:a;if(!(this instanceof b))throw new TypeError("Cannot call a class as a function");var c=(b.__proto__||Object.getPrototypeOf(b)).call(this);if(!this)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");c=!c||"object"!==typeof c&&"function"!==typeof c?
-this:c;c.dimensions=a;c.element=document.createElement("div");c.textNode=document.createTextNode("");c.barElement=document.createElement("div");a=c.element;var d=c.textNode,e=c.barElement;a.className="scale-bar-container";a.appendChild(d);a.appendChild(e);e.className="scale-bar";return c}q(b,a);d(b,[{key:"update",value:function(){var a=this.dimensions;a.update()&&(this.textNode.textContent=a.physicalLength+" "+a.physicalUnit,this.barElement.style.width=a.lengthInPixels+"px")}},{key:"disposed",value:function(){Object(n.b)(this.element)}}]);
-return b}(h.a)},function(h,f,a){function q(a){if(!a[m]){a.registerDisposer(a.layerManager.layersChanged.add(function(){for(var b=!1,c=new g.b(g.s.fromValues(Infinity,Infinity,Infinity),g.s.fromValues(-Infinity,-Infinity,-Infinity)),d=$jscomp.makeIterator(a.layerManager.managedLayers),e=d.next();!e.done;e=d.next())if(e=e.value.layer,null!=e){e=$jscomp.makeIterator(e.renderLayers);for(var k=e.next();!k.done;k=e.next())k=k.value.boundingBox,null!=k&&(g.s.min(c.lower,c.lower,k.lower),g.s.max(c.upper,
-c.upper,k.upper),b=!0)}b&&(a.navigationState.position[t]=c);b&&(a.navigationState.pose[t]=c);b&&a.navigationState.position.changed.dispatch()}));var b=a.navigationState.position,c=b.changed.dispatch;b.changed.dispatch=function(){var a=b[t];if(a){var d=b.spatialCoordinates;g.s.min(d,d,a.upper);g.s.max(d,d,a.lower)}c()};a[m]=!0}}function p(a){d(a,function(a){a=a.displayState;a.segmentColorHash instanceof k.a||(a.segmentColorHash=k.a.from(a.segmentColorHash))})}function n(a,b){var c=a.display.onResize;
-a.display.onResize=function(){if(b.dedebounceUpdates){this.scheduleRedraw();for(var a=$jscomp.makeIterator(this.panels),d=a.next();!d.done;d=a.next())d.value.onResize()}else c.call(this)}}function d(a,c){b(a,c);var d=a.layerManager;d.registerDisposer(d.layersChanged.add(function(){b(a,c)}))}function b(a,b){a.layerManager.managedLayers.map(function(a){return a.layer}).filter(function(a){return!!a}).filter(function(a){return a instanceof l.SegmentationUserLayer}).map(function(a){return a}).forEach(function(a){b(a)})}
-function c(a,b){$jscomp.initSymbol();var c=Symbol("customEvent");a.addEventListener("wheel",function(a){if(!a[c]&&b.zoomWithoutCtrl){a.stopImmediatePropagation();a.stopPropagation();a.preventDefault();var d=new Proxy(a,{get:function(a,b){if("ctrlKey"===b)return!a[b];b=a[b];return"function"===typeof b?b.bind(a):b}});d=new WheelEvent(a.type,d);d[c]=!0;a.target.dispatchEvent(d)}},!0)}function e(a,b){a.addEventListener("mousedown",function(a){b.rightClickWithCtrl&&2===a.button&&!a.ctrlKey&&(a.stopImmediatePropagation(),
-a.stopPropagation(),a.preventDefault())},!0)}f.a=function(a,b){b.restrictUserNavigation&&q(a);b.globals&&b.globals.useCustomSegmentColors&&p(a);b.globals&&b.globals.useNehubaLayout&&(a.inputEventBindings.sliceView.set("at:shift+mousedown0",{action:"nehuba-rotate-via-mouse-drag",stopPropagation:!0}),b.layout&&b.layout.useNehubaPerspective&&a.inputEventBindings.perspectiveView.set("at:shift+mousedown0",{action:"nehuba-translate-via-mouse-drag",stopPropagation:!0}));b.dedebounceUpdates&&n(a,b)};f.b=
-function(a,b){c(a,b);e(a,b)};f.e=q;f.d=function(a){a.displayState.segmentSelectionState.set(null);a.displayState.segmentSelectionState.set=function(){}};f.c=function(a){a.displayState.segmentSelectionState.isSelected=function(){return!1}};var g=a(2),l=a(65),k=a(122);$jscomp.initSymbol();var t=Symbol("bbox");$jscomp.initSymbol();var m=Symbol("hooked")},function(h,f,a){h.exports=a(364)},function(h,f,a){f.isObject=function(a){return null!=a&&"object"===typeof a}},function(h,f,a){var q=this&&this.__extends||
-function(a,f){function d(){this.constructor=a}for(var b in f)f.hasOwnProperty(b)&&(a[b]=f[b]);a.prototype=null===f?Object.create(f):(d.prototype=f.prototype,new d)};h=function(a){function f(d){a.call(this);this.errors=d;d=Error.call(this,d?d.length+" errors occurred during unsubscription:\n  "+d.map(function(a,c){return c+1+") "+a.toString()}).join("\n  "):"");this.name=d.name="UnsubscriptionError";this.stack=d.stack;this.message=d.message}q(f,a);return f}(Error);f.UnsubscriptionError=h},function(h,
-f,a){f.empty={closed:!0,next:function(a){},error:function(a){throw a;},complete:function(){}}},function(h,f,a){var q=this&&this.__extends||function(a,f){function d(){this.constructor=a}for(var b in f)f.hasOwnProperty(b)&&(a[b]=f[b]);a.prototype=null===f?Object.create(f):(d.prototype=f.prototype,new d)};h=function(a){function f(d,b){a.call(this);this.subject=d;this.subscriber=b;this.closed=!1}q(f,a);f.prototype.unsubscribe=function(){if(!this.closed){this.closed=!0;var a=this.subject,b=a.observers;
-this.subject=null;!b||0===b.length||a.isStopped||a.closed||(a=b.indexOf(this.subscriber),-1!==a&&b.splice(a,1))}};return f}(a(11).Subscription);f.SubjectSubscription=h},function(h,f,a){f.isArrayLike=function(a){return a&&"number"===typeof a.length}},function(h,f,a){f.isPromise=function(a){return a&&"function"!==typeof a.subscribe&&"function"===typeof a.then}},function(h,f,a){var q=this&&this.__extends||function(a,b){function c(){this.constructor=a}for(var d in b)b.hasOwnProperty(d)&&(a[d]=b[d]);a.prototype=
-null===b?Object.create(b):(c.prototype=b.prototype,new c)},p=a(36),n=a(199),d=a(200),b=a(202),c=a(387),e=a(38),g=a(388),l=a(68),k=a(0),t=a(127),m=a(87);h=function(a){function f(b,c){a.call(this,null);this.ish=b;this.scheduler=c}q(f,a);f.create=function(a,h){if(null!=a){if("function"===typeof a[m.observable])return a instanceof k.Observable&&!h?a:new f(a,h);if(p.isArray(a))return new e.ArrayObservable(a,h);if(d.isPromise(a))return new b.PromiseObservable(a,h);if("function"===typeof a[l.iterator]||
-"string"===typeof a)return new c.IteratorObservable(a,h);if(n.isArrayLike(a))return new g.ArrayLikeObservable(a,h)}throw new TypeError((null!==a&&typeof a||a)+" is not observable");};f.prototype._subscribe=function(a){var b=this.ish,c=this.scheduler;return null==c?b[m.observable]().subscribe(a):b[m.observable]().subscribe(new t.ObserveOnSubscriber(a,c,0))};return f}(k.Observable);f.FromObservable=h},function(h,f,a){function q(a){var b=a.value;a=a.subscriber;a.closed||(a.next(b),a.complete())}function p(a){var b=
-a.err;a=a.subscriber;a.closed||a.error(b)}var n=this&&this.__extends||function(a,c){function b(){this.constructor=a}for(var d in c)c.hasOwnProperty(d)&&(a[d]=c[d]);a.prototype=null===c?Object.create(c):(b.prototype=c.prototype,new b)},d=a(16);h=function(a){function b(b,c){a.call(this);this.promise=b;this.scheduler=c}n(b,a);b.create=function(a,c){return new b(a,c)};b.prototype._subscribe=function(a){var b=this,c=this.promise,e=this.scheduler;if(null==e)this._isScalar?a.closed||(a.next(this.value),
-a.complete()):c.then(function(c){b.value=c;b._isScalar=!0;a.closed||(a.next(c),a.complete())},function(b){a.closed||a.error(b)}).then(null,function(a){d.root.setTimeout(function(){throw a;})});else if(this._isScalar){if(!a.closed)return e.schedule(q,0,{value:this.value,subscriber:a})}else c.then(function(c){b.value=c;b._isScalar=!0;a.closed||a.add(e.schedule(q,0,{value:c,subscriber:a}))},function(b){a.closed||a.add(e.schedule(p,0,{err:b,subscriber:a}))}).then(null,function(a){d.root.setTimeout(function(){throw a;
+d(b.prototype.__proto__||Object.getPrototypeOf(b.prototype),"disposed",this).call(this)}},{key:"size",get:function(){return this.map.size}}]);return b}(h.a)},function(h,f,a){var q=a(2);a.d(f,"h",function(){return q.s});a.d(f,"i",function(){return q.u});a.d(f,"f",function(){return q.n});a.d(f,"d",function(){return q.k});var p=a(312);a.d(f,"b",function(){return p.b});a.d(f,"a",function(){return p.a});var n=a(191);a.d(f,"e",function(){return n.b});var d=a(121);a.d(f,"c",function(){return d.c});a.d(f,
+"g",function(){return d.d})},function(h,f,a){f.a=function(a){if(!window.getSelection().isCollapsed)return!0;a=a.target.tagName;return"TEXTAREA"===a||"INPUT"===a?!0:!1};f.b=function(a,f){f=void 0===f?"text/plain":f;var d=!1,b=Object(q.c)(document,"copy",function(b){b.clipboardData.setData(f,a);d=!0;b.stopPropagation();b.preventDefault()},!0);try{document.execCommand("copy")}finally{b()}return d};var q=a(1)},function(h,f,a){function q(a,b){if(!(a instanceof b))throw new TypeError("Cannot call a class as a function");
+}function p(a,b){if(!a)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!b||"object"!==typeof b&&"function"!==typeof b?a:b}function n(a,b){if("function"!==typeof b&&null!==b)throw new TypeError("Super expression must either be null or a function, not "+typeof b);a.prototype=Object.create(b&&b.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}});b&&(Object.setPrototypeOf?Object.setPrototypeOf(a,b):a.__proto__=b)}a.d(f,"a",function(){return g});
+a.d(f,"b",function(){return l});h=a(33);a=a(1);var d=function t(a,b,c){null===a&&(a=Function.prototype);var d=Object.getOwnPropertyDescriptor(a,b);if(void 0===d){if(a=Object.getPrototypeOf(a),null!==a)return t(a,b,c)}else{if("value"in d)return d.value;b=d.get;return void 0===b?void 0:b.call(c)}},b=function(){function a(a,b){for(var c=0;c<b.length;c++){var d=b[c];d.enumerable=d.enumerable||!1;d.configurable=!0;"value"in d&&(d.writable=!0);Object.defineProperty(a,d.key,d)}}return function(b,c,d){c&&
+a(b.prototype,c);d&&a(b,d);return b}}();$jscomp.initSymbol();var c=Symbol("SingleTextureVolumeChunk.textureUnit");$jscomp.initSymbol();var e=Symbol("SingleTextureVolumeChunk.textureLayout"),g=function(a){function d(a){q(this,d);var b=p(this,(d.__proto__||Object.getPrototypeOf(d)).call(this));b.shaderKey=a;return b}n(d,a);b(d,[{key:"defineShader",value:function(a){a.addTextureSampler2D("uVolumeChunkSampler",c)}},{key:"beginDrawing",value:function(a,b){var d=b.textureUnit(c);a.activeTexture(a.TEXTURE0+
+d);b[e]=null}},{key:"endDrawing",value:function(a,b){a.bindTexture(a.TEXTURE_2D,null);b[e]=null}},{key:"bindChunk",value:function(a,b,c){var d=c.textureLayout;b[e]!==d&&(b[e]=d,this.setupTextureLayout(a,b,d));a.bindTexture(a.TEXTURE_2D,c.texture)}},{key:"beginSource",value:function(a,b){}}]);return d}(a.a),l=function(a){function c(a,b){q(this,c);a=p(this,(c.__proto__||Object.getPrototypeOf(c)).call(this,a,b));a.texture=null;a.data=b.data;return a}n(c,a);b(c,[{key:"copyToGPU",value:function(a){d(c.prototype.__proto__||
+Object.getPrototypeOf(c.prototype),"copyToGPU",this).call(this,a);var b=this.texture=a.createTexture();a.bindTexture(a.TEXTURE_2D,b);this.setTextureData(a);a.bindTexture(a.TEXTURE_2D,null)}},{key:"freeGPUMemory",value:function(a){d(c.prototype.__proto__||Object.getPrototypeOf(c.prototype),"freeGPUMemory",this).call(this,a);a.deleteTexture(this.texture);this.texture=null;this.textureLayout.dispose();this.textureLayout=null}}]);return c}(h.a)},function(h,f,a){f.a=function(a,f,h,d,b,c){for(var e=0,g=
+0,l=1,k=1,t=0;3>t;++t){var m=b[t],r=d[t],n=m%r;e+=Math.floor(m/r)*l;l*=Math.ceil(h[t]/r);g+=n*k;k*=r}d=f+2*e;h=a[d];d=a[d+1];b=h&16777215;h=h>>24&255;0<h&&(b+=c*(a[(f+d&16777215)+Math.floor(g*h/32)]>>g*h%32&(1<<h)-1));return b}},function(h,f,a){f.b=function(a,f){return function(h){h.style.flex=a;f(h)}};f.a=function(a,f){return function(h){h.style.display="flex";h.style.flexDirection=a;for(var d=$jscomp.makeIterator(f),b=d.next();!b.done;b=d.next()){b=b.value;var c=h.ownerDocument.createElement("div");
+h.appendChild(c);b(c)}}}},function(h,f,a){function q(a,b){if(!a)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!b||"object"!==typeof b&&"function"!==typeof b?a:b}function p(a,b){if("function"!==typeof b&&null!==b)throw new TypeError("Super expression must either be null or a function, not "+typeof b);a.prototype=Object.create(b&&b.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}});b&&(Object.setPrototypeOf?Object.setPrototypeOf(a,
+b):a.__proto__=b)}a.d(f,"a",function(){return k});var n=a(27);h=a(47);var d=a(26),b=a(32),c=a(186),e=a(326),g=a(331),l=function(){function a(a,b){for(var c=0;c<b.length;c++){var d=b[c];d.enumerable=d.enumerable||!1;d.configurable=!0;"value"in d&&(d.writable=!0);Object.defineProperty(a,d.key,d)}}return function(b,c,d){c&&a(b.prototype,c);d&&a(b,d);return b}}();a(332);var k=function(a){function k(a,b){if(!(this instanceof k))throw new TypeError("Cannot call a class as a function");var d=q(this,(k.__proto__||
+Object.getPrototypeOf(k)).call(this));d.manager=a;d.existingLayer=b;d.statusElement=document.createElement("div");d.submitElement=document.createElement("button");d.namePromptElement=document.createElement("label");d.nameInputElement=document.createElement("input");d.volumeCancellationSource=void 0;d.sourceValid=!1;d.nameValid=!0;var l=d.content;l.classList.add("add-layer-overlay");var f=document.createElement("form");f.className="source-form";d.registerEventListener(f,"submit",function(a){a.preventDefault();
+d.validateSource(!0)});var m=document.createElement("label");m.textContent="Source:";a=d.sourceInput=d.registerDisposer(new e.a({completer:function(a,b){return d.manager.dataSourceProvider.volumeCompleter(a,d.manager.chunkManager,b).then(function(a){return{completions:a.completions,makeElement:e.b,offset:a.offset,showSingleResult:!0}})},delay:0}));a.element.classList.add("add-layer-source");a.inputElement.addEventListener("blur",function(){d.validateSource(!1)});d.submitElement.disabled=!0;a.inputChanged.add(function(){var a=
+d.volumeCancellationSource;void 0!==a&&(a.cancel(),d.volumeCancellationSource=void 0);d.sourceValid=!1;d.submitElement.disabled=!0;d.statusElement.textContent=""});f.appendChild(m);f.appendChild(a.element);Object(c.a)(m,a.inputElement);m=Object(g.a)();f.appendChild(m);l.appendChild(f);var h=d.statusElement,t=d.namePromptElement,r=d.nameInputElement;f=d.submitElement;h.className="dialog-status";m=document.createElement("form");m.className="name-form";t.textContent="Name:";r.className="add-layer-name";
+r.autocomplete="off";r.spellcheck=!1;r.type="text";d.registerEventListener(r,"input",function(){d.validateName()});f.type="submit";Object(c.a)(t,r);m.appendChild(t);m.appendChild(r);m.appendChild(f);l.appendChild(m);l.appendChild(h);void 0!==b?(void 0!==b.sourceUrl?(a.value=b.sourceUrl,d.validateSource()):d.sourceValid=!0,a.disabled=!0,r.value=b.name,d.validateName(),f.textContent="Save",r.focus()):(b=d.manager.layerManager.managedLayers,0<b.length&&(b=b[b.length-1],b instanceof n.b&&(b=b.sourceUrl,
+void 0!==b&&(l=d.manager.dataSourceProvider.findSourceGroup(b),a.value=b.substring(0,l),a.inputElement.setSelectionRange(0,l)))),a.inputElement.focus(),f.textContent="Add Layer");d.registerEventListener(m,"submit",function(a){a.preventDefault();d.submit()});return d}p(k,a);l(k,[{key:"isNameValid",value:function(){var a=this.nameInputElement.value;if(""===a)return!1;a=this.manager.layerManager.getLayerByName(a);return void 0===a||a===this.existingLayer}},{key:"submit",value:function(){this.sourceValid&&
+this.isNameValid()&&(this.existingLayer?(this.existingLayer.name=this.nameInputElement.value,this.manager.layerManager.layersChanged.dispatch()):this.manager.add(this.manager.getLayer(this.nameInputElement.value,this.sourceInput.value)),this.dispose())}},{key:"validateName",value:function(){var a=this.nameInputElement;(this.nameValid=this.isNameValid())?(a.classList.add("valid-input"),a.classList.remove("invalid-input")):(a.classList.remove("valid-input"),a.classList.add("invalid-input"));this.validityChanged()}},
+{key:"validityChanged",value:function(){this.submitElement.disabled=!(this.nameValid&&this.sourceValid)}},{key:"validateSource",value:function(a){var c=this;a=void 0===a?!1:a;var e=this.sourceInput.value;if(""!==e){try{var g=this.manager.dataSourceProvider.suggestLayerName(e),k=this.nameInputElement;if(""===this.nameInputElement.value){var l=this.manager.layerManager.getUniqueLayerName(g);k.value=l;k.setSelectionRange(0,l.length);this.validateName()}a&&k.focus()}catch(z){this.setError(z.message);
+return}this.setInfo("Validating volume source...");var f=this.volumeCancellationSource=new b.b;this.manager.dataSourceProvider.getVolume(this.manager.chunkManager,e,void 0,f).then(function(a){f.isCanceled||(c.volumeCancellationSource=void 0,c.sourceValid=!0,c.setInfo(d.c[a.volumeType].toLowerCase()+": "+(a.numChannels+"-channel "+d.a[a.dataType].toLowerCase())),c.validityChanged())}).catch(function(a){f.isCanceled||(c.volumeCancellationSource=void 0,c.setError(a.message))})}}},{key:"setInfo",value:function(a){this.statusElement.className=
+"dialog-status dialog-status-info";this.statusElement.textContent=a}},{key:"setError",value:function(a){this.statusElement.className="dialog-status dialog-status-error";this.statusElement.textContent=a}}]);return k}(h.a)},function(h,f,a){f.a=function(a,f){""===f.id&&(f.id="unique-id-for-association-"+q++);a.setAttribute("for",f.id)};var q=0},function(h,f,a){f.a=function(a){var f=-1;return Object.assign(function(){-1===f&&(f=requestAnimationFrame(function(){f=-1;a()}))},{flush:function(){-1!==f&&(f=
+-1,a())},cancel:function(){-1!==f&&(cancelAnimationFrame(f),f=-1)}})}},function(h,f,a){function q(a,b){if("function"!==typeof b&&null!==b)throw new TypeError("Super expression must either be null or a function, not "+typeof b);a.prototype=Object.create(b&&b.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}});b&&(Object.setPrototypeOf?Object.setPrototypeOf(a,b):a.__proto__=b)}function p(a,b){var c=document.documentElement.scrollTop+Math.min(document.documentElement.clientHeight-
+a.offsetHeight,b.clientY);a.style.left=document.documentElement.scrollLeft+Math.min(document.documentElement.clientWidth-a.offsetWidth,b.clientX)+"px";a.style.top=c+"px";a.style.visibility=null}a.d(f,"a",function(){return e});var n=a(1),d=a(8),b=a(7),c=function(){function a(a,b){for(var c=0;c<b.length;c++){var d=b[c];d.enumerable=d.enumerable||!1;d.configurable=!0;"value"in d&&(d.writable=!0);Object.defineProperty(a,d.key,d)}}return function(b,c,d){c&&a(b.prototype,c);d&&a(b,d);return b}}();a(338);
+var e=function(a){function e(a){if(!(this instanceof e))throw new TypeError("Cannot call a class as a function");var c=(e.__proto__||Object.getPrototypeOf(e)).call(this);if(!this)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");c=!c||"object"!==typeof c&&"function"!==typeof c?this:c;c.element=document.createElement("div");c.parentDisposers=new Map;c.disabledValue=!1;c.opened=new b.a;c.closed=new b.a;var d=c.element;d.className="neuroglancer-context-menu";d.style.visibility=
+"hidden";d.tabIndex=-1;document.body.appendChild(d);void 0!==a&&c.registerParent(a);return c}q(e,a);c(e,[{key:"registerParent",value:function(a){var b=this,c=this.parentDisposers;c.has(a)||c.set(a,Object(n.c)(a,"contextmenu",function(a){b.show(a);a.stopPropagation();a.preventDefault()}))}},{key:"show",value:function(a){var b=this;if(!this.disabledValue){this.hide();var c=this.element,d=Object(n.c)(document,"mousedown",function(a){a.target instanceof Node&&!c.contains(a.target)&&b.hide()},!0),e=Object(n.c)(document,
+"keydown",function(a){"Escape"===a.code&&b.hide()},!0);c.style.display=null;c.style.visibility="hidden";this.opened.dispatch();p(c,a);this.menuDisposer=function(){e();d();c.style.display="none"}}}},{key:"unregisterParent",value:function(a){var b=this.parentDisposers,c=b.get(a);void 0!==c&&(c(),b.delete(a))}},{key:"disposed",value:function(){for(var a=this.parentDisposers,b=$jscomp.makeIterator(a.values()),c=b.next();!c.done;c=b.next())c=c.value,c();a.clear();Object(d.b)(this.element)}},{key:"hide",
+value:function(){void 0!==this.menuDisposer&&(this.menuDisposer(),this.menuDisposer=void 0,this.closed.dispatch())}},{key:"disabled",get:function(){return this.disabledValue},set:function(a){this.disabledValue!==a&&(this.disabledValue=a)&&this.hide()}},{key:"open",get:function(){return void 0!==this.menuDisposer}}]);return e}(n.a)},function(h,f,a){f.a=function(a,d){var b=Object(q.c)(a,"drop",function(a){a.preventDefault();if(-1!==a.dataTransfer.types.indexOf(p.d)){var b=JSON.parse(a.dataTransfer.getData(p.d));
+d.restoreState(b);a.stopPropagation()}}),c=Object(q.c)(a,"dragover",function(a){-1!==a.dataTransfer.types.indexOf(p.d)&&(a.dataTransfer.dropEffect="link",a.preventDefault(),a.stopPropagation())});return function(){c();b()}};var q=a(1),p=a(120)},function(h,f,a){(function(a){function f(b,e,g,l){function c(a){var c=f(b,e);if(!c||c.to.line-c.from.line<m)return null;for(var d=b.findMarksAt(c.from),g=0;g<d.length;++g)if(d[g].__isFold&&"fold"!==l){if(!a)return null;c.cleared=!0;d[g].clear()}return c}if(g&&
+g.call){var f=g;g=null}else f=d(b,g,"rangeFinder");"number"==typeof e&&(e=a.Pos(e,0));var m=d(b,g,"minFoldSize"),r=c(!0);if(d(b,g,"scanUp"))for(;!r&&e.line>b.firstLine();)e=a.Pos(e.line-1,0),r=c(!1);if(r&&!r.cleared&&"unfold"!==l){var n=h(b,g);a.on(n,"mousedown",function(b){p.clear();a.e_preventDefault(b)});var p=b.markText(r.from,r.to,{replacedWith:n,clearOnEnter:d(b,g,"clearOnEnter"),__isFold:!0});p.on("clear",function(c,d){a.signal(b,"unfold",b,c,d)});a.signal(b,"fold",b,r.from,r.to)}}function h(a,
+b){a=d(a,b,"widget");"string"==typeof a?(b=document.createTextNode(a),a=document.createElement("span"),a.appendChild(b),a.className="CodeMirror-foldmarker"):a&&(a=a.cloneNode(!0));return a}function d(a,d,g){return d&&void 0!==d[g]?d[g]:(a=a.options.foldOptions)&&void 0!==a[g]?a[g]:b[g]}a.newFoldFunction=function(a,b){return function(c,d){f(c,d,{rangeFinder:a,widget:b})}};a.defineExtension("foldCode",function(a,b,d){f(this,a,b,d)});a.defineExtension("isFolded",function(a){a=this.findMarksAt(a);for(var b=
+0;b<a.length;++b)if(a[b].__isFold)return!0});a.commands.toggleFold=function(a){a.foldCode(a.getCursor())};a.commands.fold=function(a){a.foldCode(a.getCursor(),null,"fold")};a.commands.unfold=function(a){a.foldCode(a.getCursor(),null,"unfold")};a.commands.foldAll=function(b){b.operation(function(){for(var c=b.firstLine(),d=b.lastLine();c<=d;c++)b.foldCode(a.Pos(c,0),null,"fold")})};a.commands.unfoldAll=function(b){b.operation(function(){for(var c=b.firstLine(),d=b.lastLine();c<=d;c++)b.foldCode(a.Pos(c,
+0),null,"unfold")})};a.registerHelper("fold","combine",function(){var a=Array.prototype.slice.call(arguments,0);return function(b,c){for(var d=0;d<a.length;++d){var e=a[d](b,c);if(e)return e}}});a.registerHelper("fold","auto",function(a,b){for(var c=a.getHelpers(b,"fold"),d=0;d<c.length;d++){var e=c[d](a,b);if(e)return e}});var b={rangeFinder:a.fold.auto,widget:"\u2194",minFoldSize:0,scanUp:!1,clearOnEnter:!0};a.defineOption("foldOptions",null);a.defineExtension("foldOption",function(a,b){return d(this,
+a,b)})})(a(48))},function(h,f,a){function q(a,b){if(!a)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!b||"object"!==typeof b&&"function"!==typeof b?a:b}function p(a,b){if("function"!==typeof b&&null!==b)throw new TypeError("Super expression must either be null or a function, not "+typeof b);a.prototype=Object.create(b&&b.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}});b&&(Object.setPrototypeOf?Object.setPrototypeOf(a,b):a.__proto__=
+b)}a.d(f,"a",function(){return w});var n=a(2),d=a(80),b=a(22),c=a(82),e=a(360),g=a(29),l=a(192),k=a(35),t=a(9),m=function(){function a(a,b){for(var c=0;c<b.length;c++){var d=b[c];d.enumerable=d.enumerable||!1;d.configurable=!0;"value"in d&&(d.writable=!0);Object.defineProperty(a,d.key,d)}}return function(b,c,d){c&&a(b.prototype,c);d&&a(b,d);return b}}(),r=function x(a,b,c){null===a&&(a=Function.prototype);var d=Object.getOwnPropertyDescriptor(a,b);if(void 0===d){if(a=Object.getPrototypeOf(a),null!==
+a)return x(a,b,c)}else{if("value"in d)return d.value;b=d.get;return void 0===b?void 0:b.call(c)}},u=n.s.create(),v=n.k.create();f.b="perpspectiveRenderEvent";var w=function(a){function f(a,g,m,h){if(!(this instanceof f))throw new TypeError("Cannot call a class as a function");var r=q(this,(f.__proto__||Object.getPrototypeOf(f)).call(this,a,g,m));r.config=h;r.planarSlices=new Set;r.transparentPlaneRenderHelper=r.registerDisposer(e.b.get(r.gl,c.c));r.scaleBarWidget=r.registerDisposer(new l.a);Object(b.c)(g,
+"nehuba-translate-via-mouse-drag",function(a){Object(d.a)(a.detail,function(a,b,c){if(r.config.layout.useNehubaPerspective.enableShiftDrag){a=r.width;var d=r.height,e=r.viewer.navigationState.position,g=e.spatialCoordinates;n.s.transformMat4(u,g,r.projectionMat);u[0]=2*b/a;u[1]=-2*c/d;n.s.transformMat4(g,u,r.inverseProjectionMat);e.changed.dispatch()}})});a=h.layout.useNehubaPerspective.removePerspectiveSlicesBackground;r.nehubaSliceViewRenderHelper=r.registerDisposer(e.a.get(r.gl,c.c,a&&a.mode||
+"none"));r.registerDisposer(r.visibility.changed.add(function(){return Array.from(r.sliceViews.keys()).forEach(function(a){return a.visibility.value=r.visibility.value})}));a=r.scaleBarWidget.element;r.registerDisposer(new k.a(Object(t.g)(function(a,b){return a&&b},m.showScaleBar,m.orthographicProjection),a));g.appendChild(a);return r}p(f,a);m(f,[{key:"updateProjectionMatrix",value:function(){r(f.prototype.__proto__||Object.getPrototypeOf(f.prototype),"updateProjectionMatrix",this).call(this);this.config.layout.useNehubaPerspective.centerToOrigin&&
+(n.k.translate(this.projectionMat,this.projectionMat,this.navigationState.position.spatialCoordinates),n.k.invert(this.inverseProjectionMat,this.projectionMat))}},{key:"disposed",value:function(){for(var a=$jscomp.makeIterator(this.planarSlices),b=a.next();!b.done;b=a.next())b.value.dispose();this.planarSlices.clear();r(f.prototype.__proto__||Object.getPrototypeOf(f.prototype),"disposed",this).call(this)}},{key:"draw",value:function(){for(var a=$jscomp.makeIterator(this.sliceViews.keys()),b=a.next();!b.done;b=
+a.next())b.value.visibility.value=this.config.layout.useNehubaPerspective.disablePerspectiveSlicesPreloading?this.viewer.showSliceViews.value&&this.visibility.visible?g.b.VISIBLE:g.b.IGNORED:this.visibility.value;if(this.navigationState.valid){this.onResize();a=this.width;var d=this.height;if(0!==a&&0!==d){b=this.viewer.showSliceViews.value;for(var e=$jscomp.makeIterator(this.sliceViews),k=e.next();!k.done;k=e.next()){k=$jscomp.makeIterator(k.value);var l=k.next().value;(k.next().value||b)&&l.updateRendering()}e=
+$jscomp.makeIterator(this.planarSlices);for(b=e.next();!b.done;b=e.next())b.value.updateRendering();b=this.gl;this.offscreenFramebuffer.bind(a,d);b.disable(b.SCISSOR_TEST);e=this.config.layout.useNehubaPerspective;e=e.perspectiveBackground||e.perspectiveSlicesBackground||this.viewer.crossSectionBackgroundColor.value;this.gl.clearColor(e[0],e[1],e[2],1);b.clear(b.COLOR_BUFFER_BIT|b.DEPTH_BUFFER_BIT);b.enable(b.DEPTH_TEST);e=this.projectionMat;this.updateProjectionMatrix();k=n.s.create();Object(n.p)(k,
+n.e[2],this.modelViewMat);n.s.normalize(k,k);l=this.pickIDs;l.clear();e={dataToDevice:e,lightDirection:k,ambientLighting:.2,directionalLighting:.8,pickIDs:l,emitter:c.c,emitColor:!0,emitPickID:!0,alreadyEmittedPickID:!1,viewportWidth:a,viewportHeight:d,extra:{config:this.config,showSliceViewsCheckboxValue:this.viewer.showSliceViews.value,slicesPose:this.viewer.slicesNavigationState.pose,perspectiveNavigationState:this.viewer.navigationState,meshesLoaded:-1,meshFragmentsLoaded:-1,crossSectionBackground:this.viewer.crossSectionBackgroundColor.value}};
+k=this.visibleLayerTracker.getVisibleLayers();for(var f=l=!1,m=$jscomp.makeIterator(k),h=m.next();!h.done;h=m.next())h=h.value,h.isTransparent?l=!0:h.isAnnotation?f=!0:h.draw(e);this.config.layout.useNehubaPerspective.waitForMesh&&!e.extra.meshRendered||this.drawSliceViews(e);if(f){b.enable(WebGL2RenderingContext.BLEND);b.depthFunc(WebGL2RenderingContext.LEQUAL);b.blendFunc(WebGL2RenderingContext.SRC_ALPHA,WebGL2RenderingContext.ONE_MINUS_SRC_ALPHA);b.drawBuffers([b.COLOR_ATTACHMENT0,b.NONE,b.NONE]);
+e.emitPickID=!1;f=$jscomp.makeIterator(k);for(h=f.next();!h.done;h=f.next())h=h.value,h.isAnnotation&&h.draw(e);b.depthFunc(WebGL2RenderingContext.LESS);b.disable(WebGL2RenderingContext.BLEND);b.drawBuffers([b.COLOR_ATTACHMENT0,b.COLOR_ATTACHMENT1,b.COLOR_ATTACHMENT2]);e.emitPickID=!0}h=this.config.layout.useNehubaPerspective.disableAxisLinesInPerspective;this.viewer.showAxisLines.value&&!h&&this.drawAxisLines();if(l){b.depthMask(!1);b.enable(WebGL2RenderingContext.BLEND);l=this.transparentConfiguration;
+l.bind(a,d);this.gl.clearColor(0,0,0,1);b.clear(WebGL2RenderingContext.COLOR_BUFFER_BIT);e.emitter=c.d;b.blendFuncSeparate(WebGL2RenderingContext.ONE,WebGL2RenderingContext.ONE,WebGL2RenderingContext.ZERO,WebGL2RenderingContext.ONE_MINUS_SRC_ALPHA);e.emitPickID=!1;f=$jscomp.makeIterator(k);for(h=f.next();!h.done;h=f.next())h=h.value,h.isTransparent&&h.draw(e);b.disable(WebGL2RenderingContext.DEPTH_TEST);this.offscreenFramebuffer.bindSingle(c.a.COLOR);b.blendFunc(WebGL2RenderingContext.ONE_MINUS_SRC_ALPHA,
+WebGL2RenderingContext.SRC_ALPHA);this.transparencyCopyHelper.draw(l.colorBuffers[0].texture,l.colorBuffers[1].texture);b.depthMask(!0);b.disable(WebGL2RenderingContext.BLEND);b.enable(WebGL2RenderingContext.DEPTH_TEST);this.offscreenFramebuffer.bind(a,d)}b.drawBuffers([b.NONE,b.COLOR_ATTACHMENT1,b.COLOR_ATTACHMENT2]);e.emitter=c.c;e.emitPickID=!0;e.emitColor=!1;b.enable(WebGL2RenderingContext.POLYGON_OFFSET_FILL);b.polygonOffset(-1,-1);d=$jscomp.makeIterator(k);for(h=d.next();!h.done;h=d.next())k=
+h.value,e.alreadyEmittedPickID=!k.isTransparent&&!k.isAnnotation,k.draw(e);b.disable(WebGL2RenderingContext.POLYGON_OFFSET_FILL);this.viewer.showScaleBar.value&&this.viewer.orthographicProjection.value&&(d=this.scaleBarWidget.dimensions,d.targetLengthInPixels=Math.min(a/4,100),d.nanometersPerPixel=this.nanometersPerPixel,this.scaleBarWidget.update());this.offscreenFramebuffer.unbind();this.setGLViewport();this.offscreenCopyHelper.draw(this.offscreenFramebuffer.colorBuffers[c.a.COLOR].texture);a=new CustomEvent("perpspectiveRenderEvent",
+{bubbles:!0,detail:{meshesLoaded:e.extra.meshesLoaded,meshFragmentsLoaded:e.extra.meshFragmentsLoaded,lastLoadedMeshId:e.extra.lastMeshId}});this.element.dispatchEvent(a)}}}},{key:"drawSliceViews",value:function(a){var b=this.config.layout.useNehubaPerspective,c=this.sliceViewRenderHelper,d=this.nehubaSliceViewRenderHelper,e=this.transparentPlaneRenderHelper,g=a.lightDirection,k=a.ambientLighting,l=a.directionalLighting;a=a.dataToDevice;var f=this.viewer.showSliceViews.value;if(!b.hideImages){var m=
+b.removePerspectiveSlicesBackground;c=m?d:c;for(var h=$jscomp.makeIterator(this.sliceViews),t=h.next();!t.done;t=h.next()){var r=$jscomp.makeIterator(t.value);t=r.next().value;if((r.next().value||f)&&0!==t.width&&0!==t.height&&t.hasValidViewport){r=Math.abs(n.s.dot(g,t.viewportAxes[2]));r=k+r*l;var p=v;n.k.identity(p);p[0]=t.width/2;p[5]=-t.height/2;n.k.multiply(p,t.viewportToData,p);n.k.multiply(p,a,p);var q=n.u.create(),u=b.perspectiveSlicesBackground||this.viewer.crossSectionBackgroundColor.value;
+q[0]=u[0];q[1]=u[1];q[2]=u[2];q[3]=1;d.setDiscardColor(m&&m.color||q);c.draw(t.offscreenFramebuffer.colorBuffers[0].texture,p,n.u.fromValues(r,r,r,1),q,0,0,1,1)}}}if(b.drawSubstrates&&f)for(d=b.fixedZoomPerspectiveSlices&&b.fixedZoomPerspectiveSlices.sliceViewportSizeMultiplier||1,g=$jscomp.makeIterator(this.sliceViews.keys()),k=g.next();!k.done;k=g.next()){c=k.value;k=v;n.k.identity(k);k[0]=c.width/2/d;k[5]=-c.height/2/d;n.k.multiply(k,c.viewportToData,k);l=n.k.clone(a);m=n.s.clone(this.navigationState.position.spatialCoordinates);
+c=n.s.clone(c.viewportAxes[2]);h=this.viewer.slicesNavigationState.pose.orientation.orientation;t=n.n.invert(n.n.create(),h);n.s.transformQuat(c,c,t);n.s.transformQuat(m,m,t);t=n.s.create();for(r=0;3>r;r++)t[r]=0===Math.round(c[r])?-m[r]:0;n.s.transformQuat(t,t,h);n.k.translate(l,l,t);n.k.multiply(k,l,k);l=b.drawSubstrates.color||n.u.fromValues(0,0,1,.2);e.draw(k,l,{factor:3,units:1})}if(b.drawZoomLevels&&f&&(f=b.drawZoomLevels.cutOff)&&this.viewer.slicesNavigationState.zoomFactor.value<f)for(f=$jscomp.makeIterator(this.planarSlices),
+k=f.next();!k.done;k=f.next())g=k.value,d=v,n.k.identity(d),d[0]=g.width/2,d[5]=-g.height/2,n.k.multiply(d,g.viewportToData,d),n.k.multiply(d,a,d),g=b.drawZoomLevels.color||n.u.fromValues(1,0,0,.2),e.draw(d,g,{factor:-1,units:1})}},{key:"zoomByMouse",value:function(a){r(f.prototype.__proto__||Object.getPrototypeOf(f.prototype),"zoomByMouse",this).call(this,a);if(a=this.config.layout.useNehubaPerspective.restrictZoomLevel)a.minZoom&&this.navigationState.zoomFactor.value<a.minZoom&&(this.navigationState.zoomFactor.value=
+a.minZoom),a.maxZoom&&this.navigationState.zoomFactor.value>a.maxZoom&&(this.navigationState.zoomFactor.value=a.maxZoom)}}]);return f}(c.b)},function(h,f,a){function q(a,b){if("function"!==typeof b&&null!==b)throw new TypeError("Super expression must either be null or a function, not "+typeof b);a.prototype=Object.create(b&&b.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}});b&&(Object.setPrototypeOf?Object.setPrototypeOf(a,b):a.__proto__=b)}a.d(f,"a",function(){return b});
+h=a(1);var p=a(53),n=a(8),d=function(){function a(a,b){for(var c=0;c<b.length;c++){var d=b[c];d.enumerable=d.enumerable||!1;d.configurable=!0;"value"in d&&(d.writable=!0);Object.defineProperty(a,d.key,d)}}return function(b,c,d){c&&a(b.prototype,c);d&&a(b,d);return b}}();a(361);var b=function(a){function b(a){a=void 0===a?new p.a:a;if(!(this instanceof b))throw new TypeError("Cannot call a class as a function");var c=(b.__proto__||Object.getPrototypeOf(b)).call(this);if(!this)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
+c=!c||"object"!==typeof c&&"function"!==typeof c?this:c;c.dimensions=a;c.element=document.createElement("div");c.textNode=document.createTextNode("");c.barElement=document.createElement("div");a=c.element;var d=c.textNode,e=c.barElement;a.className="scale-bar-container";a.appendChild(d);a.appendChild(e);e.className="scale-bar";return c}q(b,a);d(b,[{key:"update",value:function(){var a=this.dimensions;a.update()&&(this.textNode.textContent=a.physicalLength+" "+a.physicalUnit,this.barElement.style.width=
+a.lengthInPixels+"px")}},{key:"disposed",value:function(){Object(n.b)(this.element)}}]);return b}(h.a)},function(h,f,a){function q(a){if(!a[m]){a.registerDisposer(a.layerManager.layersChanged.add(function(){for(var b=!1,c=new g.b(g.s.fromValues(Infinity,Infinity,Infinity),g.s.fromValues(-Infinity,-Infinity,-Infinity)),d=$jscomp.makeIterator(a.layerManager.managedLayers),e=d.next();!e.done;e=d.next())if(e=e.value.layer,null!=e){e=$jscomp.makeIterator(e.renderLayers);for(var k=e.next();!k.done;k=e.next())k=
+k.value.boundingBox,null!=k&&(g.s.min(c.lower,c.lower,k.lower),g.s.max(c.upper,c.upper,k.upper),b=!0)}b&&(a.navigationState.position[t]=c);b&&(a.navigationState.pose[t]=c);b&&a.navigationState.position.changed.dispatch()}));var b=a.navigationState.position,c=b.changed.dispatch;b.changed.dispatch=function(){var a=b[t];if(a){var d=b.spatialCoordinates;g.s.min(d,d,a.upper);g.s.max(d,d,a.lower)}c()};a[m]=!0}}function p(a){d(a,function(a){a=a.displayState;a.segmentColorHash instanceof k.a||(a.segmentColorHash=
+k.a.from(a.segmentColorHash))})}function n(a,b){var c=a.display.onResize;a.display.onResize=function(){if(b.dedebounceUpdates){this.scheduleRedraw();for(var a=$jscomp.makeIterator(this.panels),d=a.next();!d.done;d=a.next())d.value.onResize()}else c.call(this)}}function d(a,c){b(a,c);var d=a.layerManager;d.registerDisposer(d.layersChanged.add(function(){b(a,c)}))}function b(a,b){a.layerManager.managedLayers.map(function(a){return a.layer}).filter(function(a){return!!a}).filter(function(a){return a instanceof
+l.SegmentationUserLayer}).map(function(a){return a}).forEach(function(a){b(a)})}function c(a,b){$jscomp.initSymbol();var c=Symbol("customEvent");a.addEventListener("wheel",function(a){if(!a[c]&&b.zoomWithoutCtrl){a.stopImmediatePropagation();a.stopPropagation();a.preventDefault();var d=new Proxy(a,{get:function(a,b){if("ctrlKey"===b)return!a[b];b=a[b];return"function"===typeof b?b.bind(a):b}});d=new WheelEvent(a.type,d);d[c]=!0;a.target.dispatchEvent(d)}},!0)}function e(a,b){a.addEventListener("mousedown",
+function(a){b.rightClickWithCtrl&&2===a.button&&!a.ctrlKey&&(a.stopImmediatePropagation(),a.stopPropagation(),a.preventDefault())},!0)}f.a=function(a,b){b.restrictUserNavigation&&q(a);b.globals&&b.globals.useCustomSegmentColors&&p(a);b.globals&&b.globals.useNehubaLayout&&(a.inputEventBindings.sliceView.set("at:shift+mousedown0",{action:"nehuba-rotate-via-mouse-drag",stopPropagation:!0}),b.layout&&b.layout.useNehubaPerspective&&a.inputEventBindings.perspectiveView.set("at:shift+mousedown0",{action:"nehuba-translate-via-mouse-drag",
+stopPropagation:!0}));b.dedebounceUpdates&&n(a,b)};f.b=function(a,b){c(a,b);e(a,b)};f.e=q;f.d=function(a){a.displayState.segmentSelectionState.set(null);a.displayState.segmentSelectionState.set=function(){}};f.c=function(a){a.displayState.segmentSelectionState.isSelected=function(){return!1}};var g=a(2),l=a(65),k=a(122);$jscomp.initSymbol();var t=Symbol("bbox");$jscomp.initSymbol();var m=Symbol("hooked")},function(h,f,a){h.exports=a(364)},function(h,f,a){f.isObject=function(a){return null!=a&&"object"===
+typeof a}},function(h,f,a){var q=this&&this.__extends||function(a,f){function d(){this.constructor=a}for(var b in f)f.hasOwnProperty(b)&&(a[b]=f[b]);a.prototype=null===f?Object.create(f):(d.prototype=f.prototype,new d)};h=function(a){function f(d){a.call(this);this.errors=d;d=Error.call(this,d?d.length+" errors occurred during unsubscription:\n  "+d.map(function(a,c){return c+1+") "+a.toString()}).join("\n  "):"");this.name=d.name="UnsubscriptionError";this.stack=d.stack;this.message=d.message}q(f,
+a);return f}(Error);f.UnsubscriptionError=h},function(h,f,a){f.empty={closed:!0,next:function(a){},error:function(a){throw a;},complete:function(){}}},function(h,f,a){var q=this&&this.__extends||function(a,f){function d(){this.constructor=a}for(var b in f)f.hasOwnProperty(b)&&(a[b]=f[b]);a.prototype=null===f?Object.create(f):(d.prototype=f.prototype,new d)};h=function(a){function f(d,b){a.call(this);this.subject=d;this.subscriber=b;this.closed=!1}q(f,a);f.prototype.unsubscribe=function(){if(!this.closed){this.closed=
+!0;var a=this.subject,b=a.observers;this.subject=null;!b||0===b.length||a.isStopped||a.closed||(a=b.indexOf(this.subscriber),-1!==a&&b.splice(a,1))}};return f}(a(11).Subscription);f.SubjectSubscription=h},function(h,f,a){f.isArrayLike=function(a){return a&&"number"===typeof a.length}},function(h,f,a){f.isPromise=function(a){return a&&"function"!==typeof a.subscribe&&"function"===typeof a.then}},function(h,f,a){var q=this&&this.__extends||function(a,b){function c(){this.constructor=a}for(var d in b)b.hasOwnProperty(d)&&
+(a[d]=b[d]);a.prototype=null===b?Object.create(b):(c.prototype=b.prototype,new c)},p=a(36),n=a(199),d=a(200),b=a(202),c=a(387),e=a(38),g=a(388),l=a(68),k=a(0),t=a(127),m=a(87);h=function(a){function f(b,c){a.call(this,null);this.ish=b;this.scheduler=c}q(f,a);f.create=function(a,h){if(null!=a){if("function"===typeof a[m.observable])return a instanceof k.Observable&&!h?a:new f(a,h);if(p.isArray(a))return new e.ArrayObservable(a,h);if(d.isPromise(a))return new b.PromiseObservable(a,h);if("function"===
+typeof a[l.iterator]||"string"===typeof a)return new c.IteratorObservable(a,h);if(n.isArrayLike(a))return new g.ArrayLikeObservable(a,h)}throw new TypeError((null!==a&&typeof a||a)+" is not observable");};f.prototype._subscribe=function(a){var b=this.ish,c=this.scheduler;return null==c?b[m.observable]().subscribe(a):b[m.observable]().subscribe(new t.ObserveOnSubscriber(a,c,0))};return f}(k.Observable);f.FromObservable=h},function(h,f,a){function q(a){var b=a.value;a=a.subscriber;a.closed||(a.next(b),
+a.complete())}function p(a){var b=a.err;a=a.subscriber;a.closed||a.error(b)}var n=this&&this.__extends||function(a,c){function b(){this.constructor=a}for(var d in c)c.hasOwnProperty(d)&&(a[d]=c[d]);a.prototype=null===c?Object.create(c):(b.prototype=c.prototype,new b)},d=a(16);h=function(a){function b(b,c){a.call(this);this.promise=b;this.scheduler=c}n(b,a);b.create=function(a,c){return new b(a,c)};b.prototype._subscribe=function(a){var b=this,c=this.promise,e=this.scheduler;if(null==e)this._isScalar?
+a.closed||(a.next(this.value),a.complete()):c.then(function(c){b.value=c;b._isScalar=!0;a.closed||(a.next(c),a.complete())},function(b){a.closed||a.error(b)}).then(null,function(a){d.root.setTimeout(function(){throw a;})});else if(this._isScalar){if(!a.closed)return e.schedule(q,0,{value:this.value,subscriber:a})}else c.then(function(c){b.value=c;b._isScalar=!0;a.closed||a.add(e.schedule(q,0,{value:c,subscriber:a}))},function(b){a.closed||a.add(e.schedule(p,0,{err:b,subscriber:a}))}).then(null,function(a){d.root.setTimeout(function(){throw a;
 })})};return b}(a(0).Observable);f.PromiseObservable=h},function(h,f,a){function q(){for(var a=[],e=0;e<arguments.length;e++)a[e-0]=arguments[e];e=Number.POSITIVE_INFINITY;var g=null,l=a[a.length-1];b.isScheduler(l)?(g=a.pop(),1<a.length&&"number"===typeof a[a.length-1]&&(e=a.pop())):"number"===typeof l&&(e=a.pop());return null===g&&1===a.length&&a[0]instanceof p.Observable?a[0]:(new n.ArrayObservable(a,g)).lift(new d.MergeAllOperator(e))}var p=a(0),n=a(38),d=a(90),b=a(37);f.merge=function(){for(var a=
 [],b=0;b<arguments.length;b++)a[b-0]=arguments[b];return this.lift.call(q.apply(void 0,[this].concat(a)))};f.mergeStatic=q},function(h,f,a){function q(){for(var a=[],b=0;b<arguments.length;b++)a[b-0]=arguments[b];if(1===a.length)if(n.isArray(a[0]))a=a[0];else return a[0];return(new d.ArrayObservable(a)).lift(new c)}var p=this&&this.__extends||function(a,b){function c(){this.constructor=a}for(var d in b)b.hasOwnProperty(d)&&(a[d]=b[d]);a.prototype=null===b?Object.create(b):(c.prototype=b.prototype,
 new c)},n=a(36),d=a(38);h=a(5);var b=a(6);f.race=function(){for(var a=[],b=0;b<arguments.length;b++)a[b-0]=arguments[b];1===a.length&&n.isArray(a[0])&&(a=a[0]);return this.lift.call(q.apply(void 0,[this].concat(a)))};f.raceStatic=q;var c=function(){function a(){}a.prototype.call=function(a,b){return b.subscribe(new e(a))};return a}();f.RaceOperator=c;var e=function(a){function c(b){a.call(this,b);this.hasFirst=!1;this.observables=[];this.subscriptions=[]}p(c,a);c.prototype._next=function(a){this.observables.push(a)};
@@ -1749,8 +1749,8 @@ typeof b);a.prototype=Object.create(b&&b.prototype,{constructor:{value:a,enumera
 b);if(void 0===d){if(a=Object.getPrototypeOf(a),null!==a)return E(a,b,c)}else{if("value"in d)return d.value;b=d.get;return void 0===b?void 0:b.call(c)}};a(171);a(172);var x=function(a){function e(a,f){q(this,e);var h=p(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,a,f));h.opacity=Object(g.a)(.5);h.lineWidth=Object(l.a)(10);h.color=Object(k.a)(t.s.fromValues(1,1,1));h.opacity.restoreState(f.opacity);h.lineWidth.restoreState(f.linewidth);h.color.restoreState(f.color);h.lineWidth.changed.add(function(){h.specificationChanged.dispatch()});
 h.color.changed.add(function(){h.specificationChanged.dispatch()});h.vectorGraphicsLayerType=Object(m.m)(f.type,b.b);f=h.vectorGraphicsPath=Object(m.y)(f.source);var r=0;void 0!==f&&(++r,h.vectorGraphicsLayerType===b.b.LINE&&d(a.dataSourceProvider,a.chunkManager,f).then(function(a){h.wasDisposed||(a=h.renderLayer=new c.a(a,{opacity:h.opacity,lineWidth:h.lineWidth,color:h.color,sourceOptions:{}}),h.addRenderLayer(a),0===--r&&(h.isReady=!0))}));h.tabs.add("rendering",{label:"Rendering",order:-100,getter:function(){return new A(h)}});
 h.tabs.default="rendering";return h}n(e,a);w(e,[{key:"toJSON",value:function(){var a=y(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"toJSON",this).call(this);a.type=this.getLayerType();a.source=this.vectorGraphicsPath;a.opacity=this.opacity.toJSON();a.linewidth=this.lineWidth.toJSON();a.color=this.color.toJSON();return a}},{key:"getLayerType",value:function(){return b.b[this.vectorGraphicsLayerType].toLowerCase()}}]);return e}(h.i),A=function(a){function b(a){q(this,b);var c=p(this,(b.__proto__||
-Object.getPrototypeOf(b)).call(this));c.layer=a;c.opacityWidget=c.registerDisposer(new r.a(c.layer.opacity));c.lineWidthWidget=c.registerDisposer(new r.a(c.layer.lineWidth,{min:0,max:50,step:1}));c.colorWidget=c.registerDisposer(new z(c.layer.color));a=c.element;a.classList.add("image-dropdown");var d=c.opacityWidget,e=c.lineWidthWidget,g=c.colorWidget,k=document.createElement("div");k.className="image-dropdown-top-row";d.promptElement.textContent="Opacity";e.promptElement.textContent="Line Width";
-g.promptElement.textContent="Color";d=document.createElement("div");d.style.flex="1";e=document.createElement("a");g=document.createElement("button");g.type="button";g.textContent="?";g.className="help-link";e.appendChild(g);e.title="Documentation on vector graphics layer rendering";e.target="_blank";e.href="https://github.com/google/neuroglancer/blob/master/src/neuroglancer/sliceview/vectorgraphics_layer_rendering.md";k.appendChild(d);k.appendChild(e);a.appendChild(k);a.appendChild(c.opacityWidget.element);
+Object.getPrototypeOf(b)).call(this));c.layer=a;c.opacityWidget=c.registerDisposer(new r.a(c.layer.opacity));c.lineWidthWidget=c.registerDisposer(new r.a(c.layer.lineWidth,{min:0,max:50,step:1}));c.colorWidget=c.registerDisposer(new z(c.layer.color));a=c.element;a.classList.add("image-dropdown");var d=c.opacityWidget,e=c.lineWidthWidget,g=c.colorWidget,f=document.createElement("div");f.className="image-dropdown-top-row";d.promptElement.textContent="Opacity";e.promptElement.textContent="Line Width";
+g.promptElement.textContent="Color";d=document.createElement("div");d.style.flex="1";e=document.createElement("a");g=document.createElement("button");g.type="button";g.textContent="?";g.className="help-link";e.appendChild(g);e.title="Documentation on vector graphics layer rendering";e.target="_blank";e.href="https://github.com/google/neuroglancer/blob/master/src/neuroglancer/sliceview/vectorgraphics_layer_rendering.md";f.appendChild(d);f.appendChild(e);a.appendChild(f);a.appendChild(c.opacityWidget.element);
 a.appendChild(c.lineWidthWidget.element);a.appendChild(c.colorWidget.element);return c}n(b,a);return b}(u.b),z=function(a){function b(a){q(this,b);return p(this,(b.__proto__||Object.getPrototypeOf(b)).call(this,a))}n(b,a);w(b,[{key:"verifyValue",value:function(a){a=Object(m.n)(a);a/=255;return 0>a?0:1<a?1:a}},{key:"updateInput",value:function(){this.inputx.valueAsNumber=Math.round(255*this.model.value[0]);this.inputy.valueAsNumber=Math.round(255*this.model.value[1]);this.inputz.valueAsNumber=Math.round(255*
 this.model.value[2])}}]);return b}(v.a);Object(f.e)("line",x)},function(h,f,a){function q(a,b){if(!a)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!b||"object"!==typeof b&&"function"!==typeof b?a:b}function p(a,b){if("function"!==typeof b&&null!==b)throw new TypeError("Super expression must either be null or a function, not "+typeof b);a.prototype=Object.create(b&&b.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}});b&&(Object.setPrototypeOf?
 Object.setPrototypeOf(a,b):a.__proto__=b)}a.d(f,"a",function(){return m});var n=a(30);h=a(156);var d=a(56),b=a(173),c=a(174),e=a(2),g=a(20),l=function(){function a(a,b){for(var c=0;c<b.length;c++){var d=b[c];d.enumerable=d.enumerable||!1;d.configurable=!0;"value"in d&&(d.writable=!0);Object.defineProperty(a,d.key,d)}}return function(b,c,d){c&&a(b.prototype,c);d&&a(b,d);return b}}(),k=function u(a,b,c){null===a&&(a=Function.prototype);var d=Object.getOwnPropertyDescriptor(a,b);if(void 0===d){if(a=
@@ -1759,9 +1759,9 @@ Object.getPrototypeOf(a),null!==a)return u(a,b,c)}else{if("value"in d)return d.v
 n.registerDisposer(g.a.fromData(a,k,a.ARRAY_BUFFER,a.STATIC_DRAW));return n}p(f,a);l(f,[{key:"getShaderKey",value:function(){return"vectorgraphics.VectorGraphicsLineRenderLayer"}},{key:"defineShader",value:function(a){k(f.prototype.__proto__||Object.getPrototypeOf(f.prototype),"defineShader",this).call(this,a);a.addUniform("highp float","uOpacity");a.addUniform("highp float","ulineWidth");a.addUniform("highp vec3","uColor");a.addVarying("vec3","vNormal");a.addAttribute("highp float","aNormalDirection");
 a.addAttribute("highp vec2","aVertexIndex");a.addAttribute("highp vec3","aVertexFirst");a.addAttribute("highp vec3","aVertexSecond");a.addUniform("highp mat4","uProjection");a.setFragmentMain("\nfloat distance = length(vNormal);\n\nfloat antialiasing = 0.5;\n\nif (distance >= 1.0 - antialiasing) {\n  emitRGBA(vec4(uColor, (distance - 1.0) / -antialiasing ));\n}\nelse if (distance < 1.0 - antialiasing) {\n  emitRGB(uColor);\n}\n");a.setVertexMain("\nvec3 direction = vec3(0., 0., 0.);\ndirection.z = aNormalDirection;\n\nvec3 difference = aVertexSecond - aVertexFirst;\ndifference.z = 0.;\n\nvec3 normal = cross(difference, direction);\nnormal = normalize(normal);\nvNormal = normal;\n\nvec4 delta = vec4(normal * ulineWidth, 0.0);\nvec4 pos = vec4(aVertexFirst * aVertexIndex.x + aVertexSecond * aVertexIndex.y, 1.0);\n\ngl_Position = uProjection * (pos + delta);\n")}},
 {key:"beginSlice",value:function(a){k(f.prototype.__proto__||Object.getPrototypeOf(f.prototype),"beginSlice",this).call(this,a);a=this.gl;var b=this.shader;a.uniform1f(b.uniform("uOpacity"),this.opacity.value);a.uniform1f(b.uniform("ulineWidth"),this.lineWidth.value);a.uniform3fv(b.uniform("uColor"),this.color.value);this.vertexIndexBuffer.bindToVertexAttrib(b.attribute("aVertexIndex"),2);this.normalDirectionBuffer.bindToVertexAttrib(b.attribute("aNormalDirection"),1);return b}},{key:"endSlice",value:function(a){var b=
-this.gl;b.disableVertexAttribArray(a.attribute("aVertexIndex"));b.disableVertexAttribArray(a.attribute("aNormalDirection"));b.disableVertexAttribArray(a.attribute("aVertexFirst"));b.disableVertexAttribArray(a.attribute("aVertexSecond"))}},{key:"draw",value:function(a){var b=a.visibleLayers.get(this);if(0!==b.length){var c=this.gl,d=this.beginSlice(a);if(void 0===d)console.log("error: shader undefined");else{b=$jscomp.makeIterator(b);for(var g=b.next();!g.done;g=b.next()){g=g.value;var k=g.chunkLayout,
-f=g.source,l=f.spec.voxelSize;g=f.chunks;var h=t;e.k.identity(h);f.vectorGraphicsCoordinatesInVoxels&&e.k.scale(h,h,l);e.k.multiply(h,k.transform,h);c.uniformMatrix4fv(d.uniform("uProjection"),!1,e.k.multiply(t,a.dataToDevice,h));if(k=a.visibleChunks.get(k))for(k=$jscomp.makeIterator(k),f=k.next();!f.done;f=k.next())if((f=g.get(f.value))&&f.state===n.d.GPU_MEMORY){l=f.numPoints/2;h=d.attribute("aVertexFirst");f.vertexBuffer.bindToVertexAttrib(h,3,WebGL2RenderingContext.FLOAT,!1,24,0);c.vertexAttribDivisor(h,
-1);var m=d.attribute("aVertexSecond");f.vertexBuffer.bindToVertexAttrib(m,3,WebGL2RenderingContext.FLOAT,!1,24,12);c.vertexAttribDivisor(m,1);c.drawArraysInstanced(c.TRIANGLE_STRIP,0,4,l);c.vertexAttribDivisor(h,0);c.vertexAttribDivisor(m,0)}}this.endSlice(d)}}}}]);return f}(h.a)},function(h,f,a){function q(a,b){if(!a)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!b||"object"!==typeof b&&"function"!==typeof b?a:b}function p(a,b){if("function"!==typeof b&&
+this.gl;b.disableVertexAttribArray(a.attribute("aVertexIndex"));b.disableVertexAttribArray(a.attribute("aNormalDirection"));b.disableVertexAttribArray(a.attribute("aVertexFirst"));b.disableVertexAttribArray(a.attribute("aVertexSecond"))}},{key:"draw",value:function(a){var b=a.visibleLayers.get(this);if(0!==b.length){var c=this.gl,d=this.beginSlice(a);if(void 0===d)console.log("error: shader undefined");else{b=$jscomp.makeIterator(b);for(var g=b.next();!g.done;g=b.next()){g=g.value;var f=g.chunkLayout,
+k=g.source,l=k.spec.voxelSize;g=k.chunks;var h=t;e.k.identity(h);k.vectorGraphicsCoordinatesInVoxels&&e.k.scale(h,h,l);e.k.multiply(h,f.transform,h);c.uniformMatrix4fv(d.uniform("uProjection"),!1,e.k.multiply(t,a.dataToDevice,h));if(f=a.visibleChunks.get(f))for(f=$jscomp.makeIterator(f),k=f.next();!k.done;k=f.next())if((k=g.get(k.value))&&k.state===n.d.GPU_MEMORY){l=k.numPoints/2;h=d.attribute("aVertexFirst");k.vertexBuffer.bindToVertexAttrib(h,3,WebGL2RenderingContext.FLOAT,!1,24,0);c.vertexAttribDivisor(h,
+1);var m=d.attribute("aVertexSecond");k.vertexBuffer.bindToVertexAttrib(m,3,WebGL2RenderingContext.FLOAT,!1,24,12);c.vertexAttribDivisor(m,1);c.drawArraysInstanced(c.TRIANGLE_STRIP,0,4,l);c.vertexAttribDivisor(h,0);c.vertexAttribDivisor(m,0)}}this.endSlice(d)}}}}]);return f}(h.a)},function(h,f,a){function q(a,b){if(!a)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!b||"object"!==typeof b&&"function"!==typeof b?a:b}function p(a,b){if("function"!==typeof b&&
 null!==b)throw new TypeError("Super expression must either be null or a function, not "+typeof b);a.prototype=Object.create(b&&b.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}});b&&(Object.setPrototypeOf?Object.setPrototypeOf(a,b):a.__proto__=b)}a.d(f,"a",function(){return g});h=a(1);var n=a(2),d=a(4),b=a(7),c=function(){function a(a,b){for(var c=0;c<b.length;c++){var d=b[c];d.enumerable=d.enumerable||!1;d.configurable=!0;"value"in d&&(d.writable=!0);Object.defineProperty(a,
 d.key,d)}}return function(b,c,d){c&&a(b.prototype,c);d&&a(b,d);return b}}(),e=function k(a,b,c){null===a&&(a=Function.prototype);var d=Object.getOwnPropertyDescriptor(a,b);if(void 0===d){if(a=Object.getPrototypeOf(a),null!==a)return k(a,b,c)}else{if("value"in d)return d.value;b=d.get;return void 0===b?void 0:b.call(c)}};a(297);var g=function(a){function g(a){if(!(this instanceof g))throw new TypeError("Cannot call a class as a function");var c=q(this,(g.__proto__||Object.getPrototypeOf(g)).call(this));
 c.model=a;c.promptElement=document.createElement("span");c.element=document.createElement("label");c.inputx=document.createElement("input");c.inputy=document.createElement("input");c.inputz=document.createElement("input");c.valueEntered=new b.b;a=c.inputx;var d=c.inputy,e=c.inputz,f=c.element,k=c.promptElement;f.className="vec3-input-row";k.className="vec3-input-label";f.appendChild(k);f.appendChild(a);f.appendChild(d);f.appendChild(e);a.type=d.type=e.type="number";c.updateInput();f=function(){c.model.value=
@@ -1810,19 +1810,19 @@ new p.a}n(a,[{key:"reset",value:function(){this.value=this.defaultValue}},{key:"
 d.enumerable=d.enumerable||!1;d.configurable=!0;"value"in d&&(d.writable=!0);Object.defineProperty(a,d.key,d)}}return function(b,c,d){c&&a(b.prototype,c);d&&a(b,d);return b}}(),c=function(a){function c(a){if(!(this instanceof c))throw new TypeError("Cannot call a class as a function");var b=q(this,(c.__proto__||Object.getPrototypeOf(c)).call(this));b.ref=a;b.element=document.createElement("label");b.selectElement=document.createElement("select");b.registerDisposer(a);a=b.selectElement;b.element.appendChild(a);
 b.updateView();b.registerEventListener(a,"change",function(){return b.updateModel()});b.registerDisposer(b.ref.changed.add(n()(function(){return b.updateView()},0)));return b}p(c,a);b(c,[{key:"updateModel",value:function(){this.ref.layerName=this.selectElement.value||void 0}},{key:"updateView",value:function(){var a=this.selectElement,b=this.ref,c=b.filter;Object(d.a)(a);var e=document.createElement("option");a.appendChild(e);e=$jscomp.makeIterator(this.ref.layerManager.managedLayers);for(var g=e.next();!g.done;g=
 e.next()){var f=g.value;c(f)&&(g=document.createElement("option"),f=f.name,g.textContent=f,g.value=f,a.appendChild(g))}a.value=b.layerName||""}}]);return c}(h.a)},function(h,f){},function(h,f,a){Object.defineProperty(f,"__esModule",{value:!0});a.d(f,"getNgPatchableObj",function(){return e});a.d(f,"getNgHash",function(){return g});var q=a(178),p=a(18),n=a(60),d=a(82),b=a(22),c=a(180);a.d(f,"createNehubaViewer",function(){return c.b});a.d(f,"NehubaViewer",function(){return c.a});a.d(f,"layoutEventType",
-function(){return c.c});a.d(f,"perspectiveRenderEventType",function(){return c.d});a.d(f,"quat",function(){return c.e});a.d(f,"sliceRenderEventType",function(){return c.f});a.d(f,"vec3",function(){return c.g});a.d(f,"vec4",function(){return c.h});a.d(f,"registerActionListener",function(){return b.c});var e=function(){return{UrlHashBinding:q.a,LayerManager:p.a,SliceViewPanel:n.a,PerspectivePanel:d.b}},g=function(){if(!window.viewer)return null;var a=JSON.stringify(window.viewer.state.toJSON());return"#!"+
-encodeURI(a).replace(/[!'()*;,]/g,function(a){return"%"+a.charCodeAt(0).toString(16).toUpperCase()})}},function(h,f,a){f.c="perspective_view/PerspectiveView";f.a="perspective_view/addLayer";f.b="perspective_view/removeLayer"},function(h,f){},function(h,f,a){function q(a){return a.map(function(a){return{name:a.name,value:a.layer}}).filter(function(a){return!!a.value}).map(function(a){return{name:a.name,userLayer:a.value}})}function p(a){return a.map(function(a){var b=a.layer.userLayer,c=b.getValueAt(a.mouse.position,
-a.mouse),d=b.volumePath;d||(d=b.parameters.meshSourceUrl);return{value:0===c?0:c?c:null,layer:{name:a.layer.name,url:d?d:void 0}}})}f.b=function(a,b){return w.create(a,b)};a.d(f,"a",function(){return w});var n=a(14),d=a(107),b=a(65),c=a(313),e=a(359),g=a(193),l=a(121),k=a(180),t=a(122),m=a(123),r=a(363),u=a(194);a.n(u);a(647);var v=function(){function a(a,b){for(var c=0;c<b.length;c++){var d=b[c];d.enumerable=d.enumerable||!1;d.configurable=!0;"value"in d&&(d.writable=!0);Object.defineProperty(a,
-d.key,d)}}return function(b,c,d){c&&a(b.prototype,c);d&&a(b,d);return b}}(),w=function(){function a(c,e,f){var l=this;if(!(this instanceof a))throw new TypeError("Cannot call a class as a function");this.errorHandler=f;this.onError=function(a){l.errorHandler&&(a instanceof Error?l.errorHandler(a):l.errorHandler(Error(a)))};this.ngviewer=c;this._config=e;var h=c.navigationState;this.navigationState={position:{inRealSpace:Object(r.a)(h.position,function(a){return k.g.clone(a.spatialCoordinates)}),inVoxels:Object(r.a)(h.position,
-function(a){var b=k.g.create();if(a.getVoxelCoordinates(b)){for(a=0;3>a;++a)b[a]=Math.floor(b[a]);return b}return null},{share:!1}).notNull().publishReplay(1).refCount()},orientation:Object(r.a)(h.pose.orientation,function(a){return k.e.clone(a.orientation)}),sliceZoom:Object(r.a)({s:h.zoomFactor,r:h},function(a){return a.value}),perspectiveZoom:Object(r.a)({s:c.perspectiveNavigationState.zoomFactor,r:c.perspectiveNavigationState},function(a){return a.value}),perspectiveOrientation:Object(r.a)(c.perspectiveNavigationState.pose.orientation,
-function(a){return k.e.clone(a.orientation)}),full:Object(r.a)(h,function(a){return{position:k.g.clone(a.position.spatialCoordinates),orientation:k.e.clone(a.pose.orientation.orientation),zoom:a.zoomFactor.value}}),get all(){var a=this.perspectiveZoom.combineLatest(this.perspectiveOrientation,function(a,b){return{perspectiveZoom:a,perspectiveOrientation:b}});return this.full.combineLatest(a,function(a,b){return Object.assign({},a,b)}).publishReplay(1).refCount()}};e=Object(r.a)({s:c.mouseState,r:c},
-function(a){return a.active?k.g.clone(a.position):null});this.mousePosition={inRealSpace:e,inVoxels:e.map(function(a){if(a){a=h.pose.position.voxelSize.voxelFromSpatial(k.g.create(),a);for(var b=0;3>b;++b)a[b]=Math.round(a[b])}return a}).publishReplay(1).refCount()};e=c.layerManager;e=Object(r.a)({s:{changed:e.layersChanged,layerManager:e},r:e},function(a){return a.layerManager}).concatMap(function(a){return u.Observable.from(a.managedLayers)});this._createdSegmentationUserLayers=e.map(function(a){return a.layer}).notNull().filter(function(a){return a instanceof
+function(){return c.c});a.d(f,"perspectiveRenderEventType",function(){return c.e});a.d(f,"quat",function(){return c.f});a.d(f,"sliceRenderEventType",function(){return c.g});a.d(f,"vec3",function(){return c.h});a.d(f,"vec4",function(){return c.i});a.d(f,"registerActionListener",function(){return b.c});a.d(f,"mat4",function(){return c.d});var e=function(){return{UrlHashBinding:q.a,LayerManager:p.a,SliceViewPanel:n.a,PerspectivePanel:d.b}},g=function(){if(!window.viewer)return null;var a=JSON.stringify(window.viewer.state.toJSON());
+return"#!"+encodeURI(a).replace(/[!'()*;,]/g,function(a){return"%"+a.charCodeAt(0).toString(16).toUpperCase()})}},function(h,f,a){f.c="perspective_view/PerspectiveView";f.a="perspective_view/addLayer";f.b="perspective_view/removeLayer"},function(h,f){},function(h,f,a){function q(a){return a.map(function(a){return{name:a.name,value:a.layer}}).filter(function(a){return!!a.value}).map(function(a){return{name:a.name,userLayer:a.value}})}function p(a){return a.map(function(a){var b=a.layer.userLayer,c=
+b.getValueAt(a.mouse.position,a.mouse),d=b.volumePath;d||(d=b.parameters.meshSourceUrl);return{value:0===c?0:c?c:null,layer:{name:a.layer.name,url:d?d:void 0}}})}f.b=function(a,b){return w.create(a,b)};a.d(f,"a",function(){return w});var n=a(14),d=a(107),b=a(65),c=a(313),e=a(359),g=a(193),l=a(121),k=a(180),t=a(122),m=a(123),r=a(363),u=a(194);a.n(u);a(647);var v=function(){function a(a,b){for(var c=0;c<b.length;c++){var d=b[c];d.enumerable=d.enumerable||!1;d.configurable=!0;"value"in d&&(d.writable=
+!0);Object.defineProperty(a,d.key,d)}}return function(b,c,d){c&&a(b.prototype,c);d&&a(b,d);return b}}(),w=function(){function a(c,e,f){var l=this;if(!(this instanceof a))throw new TypeError("Cannot call a class as a function");this.errorHandler=f;this.onError=function(a){l.errorHandler&&(a instanceof Error?l.errorHandler(a):l.errorHandler(Error(a)))};this.ngviewer=c;this._config=e;var h=c.navigationState;this.navigationState={position:{inRealSpace:Object(r.a)(h.position,function(a){return k.h.clone(a.spatialCoordinates)}),
+inVoxels:Object(r.a)(h.position,function(a){var b=k.h.create();if(a.getVoxelCoordinates(b)){for(a=0;3>a;++a)b[a]=Math.floor(b[a]);return b}return null},{share:!1}).notNull().publishReplay(1).refCount()},orientation:Object(r.a)(h.pose.orientation,function(a){return k.f.clone(a.orientation)}),sliceZoom:Object(r.a)({s:h.zoomFactor,r:h},function(a){return a.value}),perspectiveZoom:Object(r.a)({s:c.perspectiveNavigationState.zoomFactor,r:c.perspectiveNavigationState},function(a){return a.value}),perspectiveOrientation:Object(r.a)(c.perspectiveNavigationState.pose.orientation,
+function(a){return k.f.clone(a.orientation)}),full:Object(r.a)(h,function(a){return{position:k.h.clone(a.position.spatialCoordinates),orientation:k.f.clone(a.pose.orientation.orientation),zoom:a.zoomFactor.value}}),get all(){var a=this.perspectiveZoom.combineLatest(this.perspectiveOrientation,function(a,b){return{perspectiveZoom:a,perspectiveOrientation:b}});return this.full.combineLatest(a,function(a,b){return Object.assign({},a,b)}).publishReplay(1).refCount()}};e=Object(r.a)({s:c.mouseState,r:c},
+function(a){return a.active?k.h.clone(a.position):null});this.mousePosition={inRealSpace:e,inVoxels:e.map(function(a){if(a){a=h.pose.position.voxelSize.voxelFromSpatial(k.h.create(),a);for(var b=0;3>b;++b)a[b]=Math.round(a[b])}return a}).publishReplay(1).refCount()};e=c.layerManager;e=Object(r.a)({s:{changed:e.layersChanged,layerManager:e},r:e},function(a){return a.layerManager}).concatMap(function(a){return u.Observable.from(a.managedLayers)});this._createdSegmentationUserLayers=e.map(function(a){return a.layer}).notNull().filter(function(a){return a instanceof
 b.SegmentationUserLayer}).map(function(a){return a});this.createdSegmentationUserLayers.subscribe(function(a){l.config.disableSegmentSelection&&Object(g.d)(a)});this.createdSegmentationUserLayers.subscribe(function(a){l.config.disableSegmentHighlighting&&Object(g.c)(a)});this.createdSegmentationUserLayers.subscribe(function(a){l.config.enableMeshLoadingControl&&(a=a.displayState,a.visibleSegments instanceof m.b||(a.visibleSegments=new m.b(a.visibleSegments)))});e=e.let(q).filter(function(a){return a.userLayer instanceof
 b.SegmentationUserLayer}).map(function(a){return{name:a.name,layer:a.userLayer}}).unseen(function(a){return a.layer}).flatMap(function(a){var b=a.name,c=a.layer.volumePath;return Object(r.a)(a.layer.displayState.segmentSelectionState,function(a){return{segment:a.hasSelectedSegment?l.segmentToNumber(a.selectedSegment):null,layer:{name:b,url:c}}})}).publishReplay(1).refCount();f=Object(r.a)(c.layerSelectedValues,function(a){return a}).concatMap(function(a){return u.Observable.from(a.layerManager.managedLayers).filter(function(a){return a.visible}).let(q).map(function(b){return{mouse:a.mouseState,
 layer:b}})});c=f.filter(function(a){return a.layer.userLayer instanceof d.ImageUserLayer}).let(p).map(function(a){return Object.assign({},a,{layer:Object.assign({},a.layer,{url:a.layer.url})})});f=f.let(p);this.mouseOver={segment:e,image:c,layer:f}}v(a,[{key:"addMouseOverSegmentCallback",value:function(a){var b=this.mouseOver.segment.subscribe(function(b){return a(b.segment,b.layer)},this.onError);return function(){return b.unsubscribe()}}},{key:"addMouseEnterSegmentCallback",value:function(a){var b=
 this.mouseOver.segment.filter(function(a){return null!==a.segment}).subscribe(function(b){return a(b.segment,b.layer)},this.onError);return function(){return b.unsubscribe()}}},{key:"addMouseLeaveSegmentsCallback",value:function(a){var b=this.mouseOver.segment.filter(function(a){return null===a.segment}).subscribe(function(){return a()},this.onError);return function(){return b.unsubscribe()}}},{key:"addNavigationStateCallbackInRealSpaceCoordinates",value:function(a){var b=this.navigationState.position.inRealSpace.subscribe(function(b){return a(b)},
 this.onError);return function(){return b.unsubscribe()}}},{key:"addNavigationStateCallbackInVoxelCoordinates",value:function(a){var b=this.navigationState.position.inVoxels.subscribe(function(b){return a(b)},this.onError);return function(){return b.unsubscribe()}}},{key:"addMousePositionCallbackInRealSpaceCoordinates",value:function(a){var b=this.mousePosition.inRealSpace.subscribe(function(b){return a(b)},this.onError);return function(){return b.unsubscribe()}}},{key:"addMousePositionCallbackInVoxelCoordinates",
-value:function(a){var b=this.mousePosition.inVoxels.subscribe(function(b){return a(b)},this.onError);return function(){return b.unsubscribe()}}},{key:"setPosition",value:function(a,b){var c=this.ngviewer.navigationState.pose.position;b?(k.g.copy(c.spatialCoordinates,a),c.markSpatialCoordinatesChanged()):c.setVoxelCoordinates(a)}},{key:"showSegment",value:function(a,b){this.getSingleSegmentation(b).displayState.visibleSegments.add(new n.a(a))}},{key:"hideSegment",value:function(a,b){this.getSingleSegmentation(b).displayState.visibleSegments.delete(new n.a(a))}},
+value:function(a){var b=this.mousePosition.inVoxels.subscribe(function(b){return a(b)},this.onError);return function(){return b.unsubscribe()}}},{key:"setPosition",value:function(a,b){var c=this.ngviewer.navigationState.pose.position;b?(k.h.copy(c.spatialCoordinates,a),c.markSpatialCoordinatesChanged()):c.setVoxelCoordinates(a)}},{key:"showSegment",value:function(a,b){this.getSingleSegmentation(b).displayState.visibleSegments.add(new n.a(a))}},{key:"hideSegment",value:function(a,b){this.getSingleSegmentation(b).displayState.visibleSegments.delete(new n.a(a))}},
 {key:"getShownSegmentsNow",value:function(a){return Array.from(this.getSingleSegmentation(a).displayState.visibleSegments,this.segmentToNumber)}},{key:"getShownSegmentsObservable",value:function(a){var b=this;a=this.getSingleSegmentation(a);return Object(r.a)({s:a.displayState.visibleSegments,r:a},function(a){return Array.from(a,b.segmentToNumber)})}},{key:"setSegmentColor",value:function(a,b,c){this.checkRGB(b);this.getSingleSegmentationColors(c).setSegmentColor(a,b.red,b.green,b.blue)}},{key:"unsetSegmentColor",
 value:function(a,b){this.getSingleSegmentationColors(b).unsetSegmentColor(a)}},{key:"clearCustomSegmentColors",value:function(a){this.getSingleSegmentationColors(a).clearCustomSegmentColors()}},{key:"batchAddAndUpdateSegmentColors",value:function(a,b){this.getSingleSegmentationColors(b).batchUpdate(a)}},{key:"setMeshesToLoad",value:function(a,b){b=this.getSingleSegmentation(b).displayState.visibleSegments;b instanceof m.b?b.setMeshesToLoad(a):this.throwError("visibleSegments property is not wrapped by nehuba. Maybe mesh loading control is not enabled in config (enableMeshLoadingControl?: boolean) ")}},
 {key:"relayout",value:function(){this.ngviewer.layout.container.component.changed.dispatch()}},{key:"redraw",value:function(){this.ngviewer.display.scheduleRedraw()}},{key:"dispose",value:function(){this.ngviewer.dispose();this.ngviewer.display.container[l.b]=void 0}},{key:"applyInitialNgState",value:function(){a.restoreInitialState(this.ngviewer,this.config)}},{key:"hideNeuroglancerUI",value:function(){this.ngviewer.uiConfiguration.showUIControls.value=!1}},{key:"showNeuroglancerUI",value:function(){this.ngviewer.uiConfiguration.showUIControls.value=
@@ -2257,10 +2257,10 @@ function(a){for(var b=[],c=1;c<arguments.length;c++)b[c-1]=arguments[c];c=functi
 d));return d};a.instance=this;return a};a.prototype.createPostMessageSetImmediate=function(){var a=this.root,b="setImmediate$"+a.Math.random()+"$",c=function g(c){var d=g.instance;c.source===a&&"string"===typeof c.data&&0===c.data.indexOf(b)&&d.runIfPresent(+c.data.slice(b.length))};c.instance=this;a.addEventListener("message",c,!1);c=function l(){var a=l,b=a.messagePrefix;a=a.instance;var c=a.addFromSetImmediateArguments(arguments);a.root.postMessage(b+c,"*");return c};c.instance=this;c.messagePrefix=
 b;return c};a.prototype.runIfPresent=function(a){if(this.currentlyRunningATask)this.root.setTimeout(this.partiallyApplied(this.runIfPresent,a),0);else{var b=this.tasksByHandle[a];if(b){this.currentlyRunningATask=!0;try{b()}finally{this.clearImmediate(a),this.currentlyRunningATask=!1}}}};a.prototype.createMessageChannelSetImmediate=function(){var a=this,b=new this.root.MessageChannel;b.port1.onmessage=function(b){a.runIfPresent(b.data)};var c=function g(){var a=g,b=a.channel;a=a.instance.addFromSetImmediateArguments(arguments);
 b.port2.postMessage(a);return a};c.channel=b;c.instance=this;return c};a.prototype.createReadyStateChangeSetImmediate=function(){var a=function c(){var a=c.instance,d=a.root.document,f=d.documentElement,h=a.addFromSetImmediateArguments(arguments),n=d.createElement("script");n.onreadystatechange=function(){a.runIfPresent(h);n.onreadystatechange=null;f.removeChild(n);n=null};f.appendChild(n);return h};a.instance=this;return a};a.prototype.createSetTimeoutSetImmediate=function(){var a=function c(){var a=
-c.instance,d=a.addFromSetImmediateArguments(arguments);a.root.setTimeout(a.partiallyApplied(a.runIfPresent,d),0);return d};a.instance=this;return a};return a}();f.ImmediateDefinition=p;f.Immediate=new p(h.root)}).call(f,a(217).clearImmediate,a(217).setImmediate)},function(h,f,a){(function(a,f){(function(a,d){function b(a){delete q[a]}function c(a){if(v)setTimeout(c,0,a);else{var e=q[a];if(e){v=!0;try{var f=e.callback,g=e.args;switch(g.length){case 0:f();break;case 1:f(g[0]);break;case 2:f(g[0],g[1]);
+c.instance,d=a.addFromSetImmediateArguments(arguments);a.root.setTimeout(a.partiallyApplied(a.runIfPresent,d),0);return d};a.instance=this;return a};return a}();f.ImmediateDefinition=p;f.Immediate=new p(h.root)}).call(f,a(217).clearImmediate,a(217).setImmediate)},function(h,f,a){(function(a,f){(function(a,d){function b(a){delete p[a]}function c(a){if(v)setTimeout(c,0,a);else{var e=p[a];if(e){v=!0;try{var f=e.callback,g=e.args;switch(g.length){case 0:f();break;case 1:f(g[0]);break;case 2:f(g[0],g[1]);
 break;case 3:f(g[0],g[1],g[2]);break;default:f.apply(d,g)}}finally{b(a),v=!1}}}}function e(){y=function(a){f.nextTick(function(){c(a)})}}function g(){if(a.postMessage&&!a.importScripts){var b=!0,c=a.onmessage;a.onmessage=function(){b=!1};a.postMessage("","*");a.onmessage=c;return b}}function h(){var b="setImmediate$"+Math.random()+"$",d=function(d){d.source===a&&"string"===typeof d.data&&0===d.data.indexOf(b)&&c(+d.data.slice(b.length))};a.addEventListener?a.addEventListener("message",d,!1):a.attachEvent("onmessage",
-d);y=function(c){a.postMessage(b+c,"*")}}function k(){var a=new MessageChannel;a.port1.onmessage=function(a){c(a.data)};y=function(b){a.port2.postMessage(b)}}function n(){var a=w.documentElement;y=function(b){var d=w.createElement("script");d.onreadystatechange=function(){c(b);d.onreadystatechange=null;a.removeChild(d);d=null};a.appendChild(d)}}function m(){y=function(a){setTimeout(c,0,a)}}if(!a.setImmediate){var p=1,q={},v=!1,w=a.document,y,x=Object.getPrototypeOf&&Object.getPrototypeOf(a);x=x&&
-x.setTimeout?x:a;"[object process]"==={}.toString.call(a.process)?e():g()?h():a.MessageChannel?k():w&&"onreadystatechange"in w.createElement("script")?n():m();x.setImmediate=function(a){"function"!==typeof a&&(a=new Function(""+a));for(var b=Array(arguments.length-1),c=0;c<b.length;c++)b[c]=arguments[c+1];q[p]={callback:a,args:b};y(p);return p++};x.clearImmediate=b}})("undefined"===typeof self?"undefined"===typeof a?this:a:self)}).call(f,a(74),a(596))},function(h,f){function a(){throw Error("setTimeout has not been defined");
+d);y=function(c){a.postMessage(b+c,"*")}}function k(){var a=new MessageChannel;a.port1.onmessage=function(a){c(a.data)};y=function(b){a.port2.postMessage(b)}}function n(){var a=w.documentElement;y=function(b){var d=w.createElement("script");d.onreadystatechange=function(){c(b);d.onreadystatechange=null;a.removeChild(d);d=null};a.appendChild(d)}}function m(){y=function(a){setTimeout(c,0,a)}}if(!a.setImmediate){var q=1,p={},v=!1,w=a.document,y,x=Object.getPrototypeOf&&Object.getPrototypeOf(a);x=x&&
+x.setTimeout?x:a;"[object process]"==={}.toString.call(a.process)?e():g()?h():a.MessageChannel?k():w&&"onreadystatechange"in w.createElement("script")?n():m();x.setImmediate=function(a){"function"!==typeof a&&(a=new Function(""+a));for(var b=Array(arguments.length-1),c=0;c<b.length;c++)b[c]=arguments[c+1];p[q]={callback:a,args:b};y(q);return q++};x.clearImmediate=b}})("undefined"===typeof self?"undefined"===typeof a?this:a:self)}).call(f,a(74),a(596))},function(h,f){function a(){throw Error("setTimeout has not been defined");
 }function q(){throw Error("clearTimeout has not been defined");}function p(b){if(g===setTimeout)return setTimeout(b,0);if((g===a||!g)&&setTimeout)return g=setTimeout,setTimeout(b,0);try{return g(b,0)}catch(v){try{return g.call(null,b,0)}catch(w){return g.call(this,b,0)}}}function n(a){if(l===clearTimeout)return clearTimeout(a);if((l===q||!l)&&clearTimeout)return l=clearTimeout,clearTimeout(a);try{return l(a)}catch(v){try{return l.call(null,a)}catch(w){return l.call(this,a)}}}function d(){t&&m&&(t=
 !1,m.length?k=m.concat(k):r=-1,k.length&&b())}function b(){if(!t){var a=p(d);t=!0;for(var b=k.length;b;){m=k;for(k=[];++r<b;)m&&m[r].run();r=-1;b=k.length}m=null;t=!1;n(a)}}function c(a,b){this.fun=a;this.array=b}function e(){}h=h.exports={};try{var g="function"===typeof setTimeout?setTimeout:a}catch(u){g=a}try{var l="function"===typeof clearTimeout?clearTimeout:q}catch(u){l=q}var k=[],t=!1,m,r=-1;h.nextTick=function(a){var d=Array(arguments.length-1);if(1<arguments.length)for(var e=1;e<arguments.length;e++)d[e-
 1]=arguments[e];k.push(new c(a,d));1!==k.length||t||p(b)};c.prototype.run=function(){this.fun.apply(null,this.array)};h.title="browser";h.browser=!0;h.env={};h.argv=[];h.version="";h.versions={};h.on=e;h.addListener=e;h.once=e;h.off=e;h.removeListener=e;h.removeAllListeners=e;h.emit=e;h.prependListener=e;h.prependOnceListener=e;h.listeners=function(a){return[]};h.binding=function(a){throw Error("process.binding is not supported");};h.cwd=function(){return"/"};h.chdir=function(a){throw Error("process.chdir is not supported");