genoverse 3.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (148) hide show
  1. package/.eslintrc.js +197 -0
  2. package/.github/workflows/test.yml +24 -0
  3. package/LICENSE.TXT +24 -0
  4. package/README.md +11 -0
  5. package/css/controlPanel.css +200 -0
  6. package/css/fileDrop.css +22 -0
  7. package/css/font-awesome.css +3 -0
  8. package/css/fullscreen.css +19 -0
  9. package/css/genoverse.css +466 -0
  10. package/css/karyotype.css +85 -0
  11. package/css/resizer.css +36 -0
  12. package/css/tooltips.css +26 -0
  13. package/css/trackControls.css +111 -0
  14. package/expanded.html +120 -0
  15. package/fontawesome/css/fontawesome.min.css +5 -0
  16. package/fontawesome/css/regular.min.css +5 -0
  17. package/fontawesome/css/solid.min.css +5 -0
  18. package/fontawesome/webfonts/fa-brands-400.ttf +0 -0
  19. package/fontawesome/webfonts/fa-brands-400.woff +0 -0
  20. package/fontawesome/webfonts/fa-brands-400.woff2 +0 -0
  21. package/fontawesome/webfonts/fa-regular-400.ttf +0 -0
  22. package/fontawesome/webfonts/fa-regular-400.woff +0 -0
  23. package/fontawesome/webfonts/fa-regular-400.woff2 +0 -0
  24. package/fontawesome/webfonts/fa-solid-900.ttf +0 -0
  25. package/fontawesome/webfonts/fa-solid-900.woff +0 -0
  26. package/fontawesome/webfonts/fa-solid-900.woff2 +0 -0
  27. package/help.pdf +0 -0
  28. package/i/sort_handle.png +0 -0
  29. package/index.html +68 -0
  30. package/index.js +83 -0
  31. package/jest.config.js +4 -0
  32. package/js/Genoverse.js +1681 -0
  33. package/js/Track/Controller/Sequence.js +17 -0
  34. package/js/Track/Controller/Stranded.js +73 -0
  35. package/js/Track/Controller.js +620 -0
  36. package/js/Track/Model/File/BAM.js +44 -0
  37. package/js/Track/Model/File/BED.js +116 -0
  38. package/js/Track/Model/File/GFF.js +40 -0
  39. package/js/Track/Model/File/VCF.js +101 -0
  40. package/js/Track/Model/File/WIG.js +67 -0
  41. package/js/Track/Model/File.js +36 -0
  42. package/js/Track/Model/Gene/Ensembl.js +22 -0
  43. package/js/Track/Model/Gene.js +5 -0
  44. package/js/Track/Model/Sequence/Ensembl.js +4 -0
  45. package/js/Track/Model/Sequence/Fasta.js +60 -0
  46. package/js/Track/Model/Sequence.js +50 -0
  47. package/js/Track/Model/SequenceVariation.js +41 -0
  48. package/js/Track/Model/Stranded.js +28 -0
  49. package/js/Track/Model/Transcript/Ensembl.js +67 -0
  50. package/js/Track/Model/Transcript.js +5 -0
  51. package/js/Track/Model.js +303 -0
  52. package/js/Track/View/Gene/Ensembl.js +46 -0
  53. package/js/Track/View/Gene.js +6 -0
  54. package/js/Track/View/Sequence/Variation.js +115 -0
  55. package/js/Track/View/Sequence.js +63 -0
  56. package/js/Track/View/Transcript/Ensembl.js +12 -0
  57. package/js/Track/View/Transcript.js +28 -0
  58. package/js/Track/View.js +566 -0
  59. package/js/Track/library/Chromosome.js +145 -0
  60. package/js/Track/library/File/BAM.js +30 -0
  61. package/js/Track/library/File/BED.js +24 -0
  62. package/js/Track/library/File/BIGBED.js +47 -0
  63. package/js/Track/library/File/BIGWIG.js +52 -0
  64. package/js/Track/library/File/GFF.js +9 -0
  65. package/js/Track/library/File/VCF.js +71 -0
  66. package/js/Track/library/File/WIG.js +5 -0
  67. package/js/Track/library/File.js +10 -0
  68. package/js/Track/library/Gene.js +37 -0
  69. package/js/Track/library/Graph/Bar.js +235 -0
  70. package/js/Track/library/Graph/Line.js +296 -0
  71. package/js/Track/library/Graph.js +355 -0
  72. package/js/Track/library/HighlightRegion.js +292 -0
  73. package/js/Track/library/Legend.js +224 -0
  74. package/js/Track/library/Scalebar.js +227 -0
  75. package/js/Track/library/Scaleline.js +91 -0
  76. package/js/Track/library/Static.js +78 -0
  77. package/js/Track/library/dbSNP.js +142 -0
  78. package/js/Track.js +632 -0
  79. package/js/genomes/grch37.js +990 -0
  80. package/js/genomes/grch38.js +990 -0
  81. package/js/genoverse.min.js +2 -0
  82. package/js/genoverse.min.js.map +1 -0
  83. package/js/lib/BWReader.js +578 -0
  84. package/js/lib/Base.js +145 -0
  85. package/js/lib/VCFReader.js +286 -0
  86. package/js/lib/dalliance/js/bam.js +494 -0
  87. package/js/lib/dalliance/js/bin.js +185 -0
  88. package/js/lib/dalliance/js/das.js +749 -0
  89. package/js/lib/dalliance/js/utils.js +370 -0
  90. package/js/lib/dalliance-lib.js +3594 -0
  91. package/js/lib/dalliance-lib.min.js +68 -0
  92. package/js/lib/jDataView.js +2 -0
  93. package/js/lib/jParser.js +192 -0
  94. package/js/lib/jquery-ui.js +8 -0
  95. package/js/lib/jquery.js +2 -0
  96. package/js/lib/jquery.mousehold.js +53 -0
  97. package/js/lib/jquery.mousewheel.js +84 -0
  98. package/js/lib/jquery.tipsy.js +258 -0
  99. package/js/lib/rtree.js +1 -0
  100. package/js/plugins/controlPanel.js +395 -0
  101. package/js/plugins/fileDrop.js +62 -0
  102. package/js/plugins/focusRegion.js +12 -0
  103. package/js/plugins/fullscreen.js +77 -0
  104. package/js/plugins/karyotype.js +210 -0
  105. package/js/plugins/resizer.js +45 -0
  106. package/js/plugins/tooltips.js +94 -0
  107. package/js/plugins/trackControls.js +143 -0
  108. package/package.json +43 -0
  109. package/test/View/__snapshots__/render-bar-graph.test.js.snap +111 -0
  110. package/test/View/__snapshots__/render-blocks.test.js.snap +105 -0
  111. package/test/View/__snapshots__/render-chromosome.test.js.snap +5 -0
  112. package/test/View/__snapshots__/render-highlights.test.js.snap +73 -0
  113. package/test/View/__snapshots__/render-insert-variants.test.js.snap +9 -0
  114. package/test/View/__snapshots__/render-labels.test.js.snap +241 -0
  115. package/test/View/__snapshots__/render-legends.test.js.snap +13 -0
  116. package/test/View/__snapshots__/render-line-graph.test.js.snap +349 -0
  117. package/test/View/__snapshots__/render-scalebar.test.js.snap +49 -0
  118. package/test/View/__snapshots__/render-scaleline.test.js.snap +31 -0
  119. package/test/View/__snapshots__/render-sequence.test.js.snap +23 -0
  120. package/test/View/__snapshots__/render-stranded.test.js.snap +5 -0
  121. package/test/View/__snapshots__/render-transcripts.test.js.snap +193 -0
  122. package/test/View/render-bar-graph.test.js +87 -0
  123. package/test/View/render-blocks.test.js +171 -0
  124. package/test/View/render-chromosome.test.js +40 -0
  125. package/test/View/render-highlights.test.js +67 -0
  126. package/test/View/render-insert-variants.test.js +11 -0
  127. package/test/View/render-labels.test.js +266 -0
  128. package/test/View/render-legends.test.js +31 -0
  129. package/test/View/render-line-graph.test.js +169 -0
  130. package/test/View/render-scalebar.test.js +36 -0
  131. package/test/View/render-scaleline.test.js +28 -0
  132. package/test/View/render-sequence.test.js +49 -0
  133. package/test/View/render-stranded.test.js +10 -0
  134. package/test/View/render-transcripts.test.js +165 -0
  135. package/test/create-and-destroy.test.js +63 -0
  136. package/test/track-ordering.test.js +514 -0
  137. package/test/track_config/__snapshots__/config-settings.test.js.snap +23 -0
  138. package/test/track_config/config-settings.test.js +321 -0
  139. package/test/track_config/zoom-level-settings.test.js +98 -0
  140. package/test/utils.js +80 -0
  141. package/utils/createGenome.js +52 -0
  142. package/utils/devServer.js +36 -0
  143. package/utils/expandedTemplate.html +46 -0
  144. package/utils/git-hooks/post-commit +9 -0
  145. package/utils/git-hooks/pre-commit +7 -0
  146. package/utils/git-hooks/setup +6 -0
  147. package/utils/makeExpanded.js +19 -0
  148. package/webpack.config.js +39 -0
@@ -0,0 +1,990 @@
1
+ Genoverse.Genomes.grch38 = {
2
+ '1': {
3
+ 'size' : 248956422,
4
+ 'bands' : [
5
+ { 'id': 'p11.1', 'start': 121700001, 'end': 123400000, 'type': 'acen' },
6
+ { 'id': 'p11.2', 'start': 120400001, 'end': 121700000, 'type': 'gneg' },
7
+ { 'id': 'p12', 'start': 117200001, 'end': 120400000, 'type': 'gpos50' },
8
+ { 'id': 'p13.1', 'start': 115500001, 'end': 117200000, 'type': 'gneg' },
9
+ { 'id': 'p13.2', 'start': 111200001, 'end': 115500000, 'type': 'gpos50' },
10
+ { 'id': 'p13.3', 'start': 106700001, 'end': 111200000, 'type': 'gneg' },
11
+ { 'id': 'p21.1', 'start': 101800001, 'end': 106700000, 'type': 'gpos100' },
12
+ { 'id': 'p21.2', 'start': 99300001, 'end': 101800000, 'type': 'gneg' },
13
+ { 'id': 'p21.3', 'start': 94300001, 'end': 99300000, 'type': 'gpos75' },
14
+ { 'id': 'p22.1', 'start': 91500001, 'end': 94300000, 'type': 'gneg' },
15
+ { 'id': 'p22.2', 'start': 87900001, 'end': 91500000, 'type': 'gpos75' },
16
+ { 'id': 'p22.3', 'start': 84400001, 'end': 87900000, 'type': 'gneg' },
17
+ { 'id': 'p31.1', 'start': 69300001, 'end': 84400000, 'type': 'gpos100' },
18
+ { 'id': 'p31.2', 'start': 68500001, 'end': 69300000, 'type': 'gneg' },
19
+ { 'id': 'p31.3', 'start': 60800001, 'end': 68500000, 'type': 'gpos50' },
20
+ { 'id': 'p32.1', 'start': 58500001, 'end': 60800000, 'type': 'gneg' },
21
+ { 'id': 'p32.2', 'start': 55600001, 'end': 58500000, 'type': 'gpos50' },
22
+ { 'id': 'p32.3', 'start': 50200001, 'end': 55600000, 'type': 'gneg' },
23
+ { 'id': 'p33', 'start': 46300001, 'end': 50200000, 'type': 'gpos75' },
24
+ { 'id': 'p34.1', 'start': 43700001, 'end': 46300000, 'type': 'gneg' },
25
+ { 'id': 'p34.2', 'start': 39600001, 'end': 43700000, 'type': 'gpos25' },
26
+ { 'id': 'p34.3', 'start': 34300001, 'end': 39600000, 'type': 'gneg' },
27
+ { 'id': 'p35.1', 'start': 32300001, 'end': 34300000, 'type': 'gpos25' },
28
+ { 'id': 'p35.2', 'start': 29900001, 'end': 32300000, 'type': 'gneg' },
29
+ { 'id': 'p35.3', 'start': 27600001, 'end': 29900000, 'type': 'gpos25' },
30
+ { 'id': 'p36.11', 'start': 23600001, 'end': 27600000, 'type': 'gneg' },
31
+ { 'id': 'p36.12', 'start': 20100001, 'end': 23600000, 'type': 'gpos25' },
32
+ { 'id': 'p36.13', 'start': 15900001, 'end': 20100000, 'type': 'gneg' },
33
+ { 'id': 'p36.21', 'start': 12500001, 'end': 15900000, 'type': 'gpos50' },
34
+ { 'id': 'p36.22', 'start': 9100001, 'end': 12500000, 'type': 'gneg' },
35
+ { 'id': 'p36.23', 'start': 7100001, 'end': 9100000, 'type': 'gpos25' },
36
+ { 'id': 'p36.31', 'start': 5300001, 'end': 7100000, 'type': 'gneg' },
37
+ { 'id': 'p36.32', 'start': 2300001, 'end': 5300000, 'type': 'gpos25' },
38
+ { 'id': 'p36.33', 'start': 1, 'end': 2300000, 'type': 'gneg' },
39
+ { 'id': 'q11', 'start': 123400001, 'end': 125100000, 'type': 'acen' },
40
+ { 'id': 'q12', 'start': 125100001, 'end': 143200000, 'type': 'gvar' },
41
+ { 'id': 'q21.1', 'start': 143200001, 'end': 147500000, 'type': 'gneg' },
42
+ { 'id': 'q21.2', 'start': 147500001, 'end': 150600000, 'type': 'gpos50' },
43
+ { 'id': 'q21.3', 'start': 150600001, 'end': 155100000, 'type': 'gneg' },
44
+ { 'id': 'q22', 'start': 155100001, 'end': 156600000, 'type': 'gpos50' },
45
+ { 'id': 'q23.1', 'start': 156600001, 'end': 159100000, 'type': 'gneg' },
46
+ { 'id': 'q23.2', 'start': 159100001, 'end': 160500000, 'type': 'gpos50' },
47
+ { 'id': 'q23.3', 'start': 160500001, 'end': 165500000, 'type': 'gneg' },
48
+ { 'id': 'q24.1', 'start': 165500001, 'end': 167200000, 'type': 'gpos50' },
49
+ { 'id': 'q24.2', 'start': 167200001, 'end': 170900000, 'type': 'gneg' },
50
+ { 'id': 'q24.3', 'start': 170900001, 'end': 173000000, 'type': 'gpos75' },
51
+ { 'id': 'q25.1', 'start': 173000001, 'end': 176100000, 'type': 'gneg' },
52
+ { 'id': 'q25.2', 'start': 176100001, 'end': 180300000, 'type': 'gpos50' },
53
+ { 'id': 'q25.3', 'start': 180300001, 'end': 185800000, 'type': 'gneg' },
54
+ { 'id': 'q31.1', 'start': 185800001, 'end': 190800000, 'type': 'gpos100' },
55
+ { 'id': 'q31.2', 'start': 190800001, 'end': 193800000, 'type': 'gneg' },
56
+ { 'id': 'q31.3', 'start': 193800001, 'end': 198700000, 'type': 'gpos100' },
57
+ { 'id': 'q32.1', 'start': 198700001, 'end': 207100000, 'type': 'gneg' },
58
+ { 'id': 'q32.2', 'start': 207100001, 'end': 211300000, 'type': 'gpos25' },
59
+ { 'id': 'q32.3', 'start': 211300001, 'end': 214400000, 'type': 'gneg' },
60
+ { 'id': 'q41', 'start': 214400001, 'end': 223900000, 'type': 'gpos100' },
61
+ { 'id': 'q42.11', 'start': 223900001, 'end': 224400000, 'type': 'gneg' },
62
+ { 'id': 'q42.12', 'start': 224400001, 'end': 226800000, 'type': 'gpos25' },
63
+ { 'id': 'q42.13', 'start': 226800001, 'end': 230500000, 'type': 'gneg' },
64
+ { 'id': 'q42.2', 'start': 230500001, 'end': 234600000, 'type': 'gpos50' },
65
+ { 'id': 'q42.3', 'start': 234600001, 'end': 236400000, 'type': 'gneg' },
66
+ { 'id': 'q43', 'start': 236400001, 'end': 243500000, 'type': 'gpos75' },
67
+ { 'id': 'q44', 'start': 243500001, 'end': 248956422, 'type': 'gneg' }
68
+ ]
69
+ },
70
+ '2': {
71
+ 'size' : 242193529,
72
+ 'bands' : [
73
+ { 'id': 'p11.1', 'start': 91800001, 'end': 93900000, 'type': 'acen' },
74
+ { 'id': 'p11.2', 'start': 83100001, 'end': 91800000, 'type': 'gneg' },
75
+ { 'id': 'p12', 'start': 74800001, 'end': 83100000, 'type': 'gpos100' },
76
+ { 'id': 'p13.1', 'start': 73300001, 'end': 74800000, 'type': 'gneg' },
77
+ { 'id': 'p13.2', 'start': 71300001, 'end': 73300000, 'type': 'gpos50' },
78
+ { 'id': 'p13.3', 'start': 68400001, 'end': 71300000, 'type': 'gneg' },
79
+ { 'id': 'p14', 'start': 63900001, 'end': 68400000, 'type': 'gpos50' },
80
+ { 'id': 'p15', 'start': 61000001, 'end': 63900000, 'type': 'gneg' },
81
+ { 'id': 'p16.1', 'start': 54700001, 'end': 61000000, 'type': 'gpos100' },
82
+ { 'id': 'p16.2', 'start': 52600001, 'end': 54700000, 'type': 'gneg' },
83
+ { 'id': 'p16.3', 'start': 47500001, 'end': 52600000, 'type': 'gpos100' },
84
+ { 'id': 'p21', 'start': 41500001, 'end': 47500000, 'type': 'gneg' },
85
+ { 'id': 'p22.1', 'start': 38300001, 'end': 41500000, 'type': 'gpos50' },
86
+ { 'id': 'p22.2', 'start': 36300001, 'end': 38300000, 'type': 'gneg' },
87
+ { 'id': 'p22.3', 'start': 31800001, 'end': 36300000, 'type': 'gpos75' },
88
+ { 'id': 'p23.1', 'start': 29800001, 'end': 31800000, 'type': 'gneg' },
89
+ { 'id': 'p23.2', 'start': 27700001, 'end': 29800000, 'type': 'gpos25' },
90
+ { 'id': 'p23.3', 'start': 23800001, 'end': 27700000, 'type': 'gneg' },
91
+ { 'id': 'p24.1', 'start': 19000001, 'end': 23800000, 'type': 'gpos75' },
92
+ { 'id': 'p24.2', 'start': 16500001, 'end': 19000000, 'type': 'gneg' },
93
+ { 'id': 'p24.3', 'start': 12000001, 'end': 16500000, 'type': 'gpos75' },
94
+ { 'id': 'p25.1', 'start': 6900001, 'end': 12000000, 'type': 'gneg' },
95
+ { 'id': 'p25.2', 'start': 4400001, 'end': 6900000, 'type': 'gpos50' },
96
+ { 'id': 'p25.3', 'start': 1, 'end': 4400000, 'type': 'gneg' },
97
+ { 'id': 'q11.1', 'start': 93900001, 'end': 96000000, 'type': 'acen' },
98
+ { 'id': 'q11.2', 'start': 96000001, 'end': 102100000, 'type': 'gneg' },
99
+ { 'id': 'q12.1', 'start': 102100001, 'end': 105300000, 'type': 'gpos50' },
100
+ { 'id': 'q12.2', 'start': 105300001, 'end': 106700000, 'type': 'gneg' },
101
+ { 'id': 'q12.3', 'start': 106700001, 'end': 108700000, 'type': 'gpos25' },
102
+ { 'id': 'q13', 'start': 108700001, 'end': 112200000, 'type': 'gneg' },
103
+ { 'id': 'q14.1', 'start': 112200001, 'end': 118100000, 'type': 'gpos50' },
104
+ { 'id': 'q14.2', 'start': 118100001, 'end': 121600000, 'type': 'gneg' },
105
+ { 'id': 'q14.3', 'start': 121600001, 'end': 129100000, 'type': 'gpos50' },
106
+ { 'id': 'q21.1', 'start': 129100001, 'end': 131700000, 'type': 'gneg' },
107
+ { 'id': 'q21.2', 'start': 131700001, 'end': 134300000, 'type': 'gpos25' },
108
+ { 'id': 'q21.3', 'start': 134300001, 'end': 136100000, 'type': 'gneg' },
109
+ { 'id': 'q22.1', 'start': 136100001, 'end': 141500000, 'type': 'gpos100' },
110
+ { 'id': 'q22.2', 'start': 141500001, 'end': 143400000, 'type': 'gneg' },
111
+ { 'id': 'q22.3', 'start': 143400001, 'end': 147900000, 'type': 'gpos100' },
112
+ { 'id': 'q23.1', 'start': 147900001, 'end': 149000000, 'type': 'gneg' },
113
+ { 'id': 'q23.2', 'start': 149000001, 'end': 149600000, 'type': 'gpos25' },
114
+ { 'id': 'q23.3', 'start': 149600001, 'end': 154000000, 'type': 'gneg' },
115
+ { 'id': 'q24.1', 'start': 154000001, 'end': 158900000, 'type': 'gpos75' },
116
+ { 'id': 'q24.2', 'start': 158900001, 'end': 162900000, 'type': 'gneg' },
117
+ { 'id': 'q24.3', 'start': 162900001, 'end': 168900000, 'type': 'gpos75' },
118
+ { 'id': 'q31.1', 'start': 168900001, 'end': 177100000, 'type': 'gneg' },
119
+ { 'id': 'q31.2', 'start': 177100001, 'end': 179700000, 'type': 'gpos50' },
120
+ { 'id': 'q31.3', 'start': 179700001, 'end': 182100000, 'type': 'gneg' },
121
+ { 'id': 'q32.1', 'start': 182100001, 'end': 188500000, 'type': 'gpos75' },
122
+ { 'id': 'q32.2', 'start': 188500001, 'end': 191100000, 'type': 'gneg' },
123
+ { 'id': 'q32.3', 'start': 191100001, 'end': 196600000, 'type': 'gpos75' },
124
+ { 'id': 'q33.1', 'start': 196600001, 'end': 202500000, 'type': 'gneg' },
125
+ { 'id': 'q33.2', 'start': 202500001, 'end': 204100000, 'type': 'gpos50' },
126
+ { 'id': 'q33.3', 'start': 204100001, 'end': 208200000, 'type': 'gneg' },
127
+ { 'id': 'q34', 'start': 208200001, 'end': 214500000, 'type': 'gpos100' },
128
+ { 'id': 'q35', 'start': 214500001, 'end': 220700000, 'type': 'gneg' },
129
+ { 'id': 'q36.1', 'start': 220700001, 'end': 224300000, 'type': 'gpos75' },
130
+ { 'id': 'q36.2', 'start': 224300001, 'end': 225200000, 'type': 'gneg' },
131
+ { 'id': 'q36.3', 'start': 225200001, 'end': 230100000, 'type': 'gpos100' },
132
+ { 'id': 'q37.1', 'start': 230100001, 'end': 234700000, 'type': 'gneg' },
133
+ { 'id': 'q37.2', 'start': 234700001, 'end': 236400000, 'type': 'gpos50' },
134
+ { 'id': 'q37.3', 'start': 236400001, 'end': 242193529, 'type': 'gneg' }
135
+ ]
136
+ },
137
+ '3': {
138
+ 'size' : 198295559,
139
+ 'bands' : [
140
+ { 'id': 'p11.1', 'start': 87800001, 'end': 90900000, 'type': 'acen' },
141
+ { 'id': 'p11.2', 'start': 87100001, 'end': 87800000, 'type': 'gneg' },
142
+ { 'id': 'p12.1', 'start': 83500001, 'end': 87100000, 'type': 'gpos75' },
143
+ { 'id': 'p12.2', 'start': 79800001, 'end': 83500000, 'type': 'gneg' },
144
+ { 'id': 'p12.3', 'start': 74100001, 'end': 79800000, 'type': 'gpos75' },
145
+ { 'id': 'p13', 'start': 69700001, 'end': 74100000, 'type': 'gneg' },
146
+ { 'id': 'p14.1', 'start': 63800001, 'end': 69700000, 'type': 'gpos50' },
147
+ { 'id': 'p14.2', 'start': 58600001, 'end': 63800000, 'type': 'gneg' },
148
+ { 'id': 'p14.3', 'start': 54400001, 'end': 58600000, 'type': 'gpos50' },
149
+ { 'id': 'p21.1', 'start': 52300001, 'end': 54400000, 'type': 'gneg' },
150
+ { 'id': 'p21.2', 'start': 50600001, 'end': 52300000, 'type': 'gpos25' },
151
+ { 'id': 'p21.31', 'start': 44200001, 'end': 50600000, 'type': 'gneg' },
152
+ { 'id': 'p21.32', 'start': 44100001, 'end': 44200000, 'type': 'gpos50' },
153
+ { 'id': 'p21.33', 'start': 43600001, 'end': 44100000, 'type': 'gneg' },
154
+ { 'id': 'p22.1', 'start': 39300001, 'end': 43600000, 'type': 'gpos75' },
155
+ { 'id': 'p22.2', 'start': 36400001, 'end': 39300000, 'type': 'gneg' },
156
+ { 'id': 'p22.3', 'start': 32000001, 'end': 36400000, 'type': 'gpos50' },
157
+ { 'id': 'p23', 'start': 30800001, 'end': 32000000, 'type': 'gneg' },
158
+ { 'id': 'p24.1', 'start': 26300001, 'end': 30800000, 'type': 'gpos75' },
159
+ { 'id': 'p24.2', 'start': 23800001, 'end': 26300000, 'type': 'gneg' },
160
+ { 'id': 'p24.3', 'start': 16300001, 'end': 23800000, 'type': 'gpos100' },
161
+ { 'id': 'p25.1', 'start': 13200001, 'end': 16300000, 'type': 'gneg' },
162
+ { 'id': 'p25.2', 'start': 11600001, 'end': 13200000, 'type': 'gpos25' },
163
+ { 'id': 'p25.3', 'start': 8100001, 'end': 11600000, 'type': 'gneg' },
164
+ { 'id': 'p26.1', 'start': 4000001, 'end': 8100000, 'type': 'gpos50' },
165
+ { 'id': 'p26.2', 'start': 2800001, 'end': 4000000, 'type': 'gneg' },
166
+ { 'id': 'p26.3', 'start': 1, 'end': 2800000, 'type': 'gpos50' },
167
+ { 'id': 'q11.1', 'start': 90900001, 'end': 94000000, 'type': 'acen' },
168
+ { 'id': 'q11.2', 'start': 94000001, 'end': 98600000, 'type': 'gvar' },
169
+ { 'id': 'q12.1', 'start': 98600001, 'end': 100300000, 'type': 'gneg' },
170
+ { 'id': 'q12.2', 'start': 100300001, 'end': 101200000, 'type': 'gpos25' },
171
+ { 'id': 'q12.3', 'start': 101200001, 'end': 103100000, 'type': 'gneg' },
172
+ { 'id': 'q13.11', 'start': 103100001, 'end': 106500000, 'type': 'gpos75' },
173
+ { 'id': 'q13.12', 'start': 106500001, 'end': 108200000, 'type': 'gneg' },
174
+ { 'id': 'q13.13', 'start': 108200001, 'end': 111600000, 'type': 'gpos50' },
175
+ { 'id': 'q13.2', 'start': 111600001, 'end': 113700000, 'type': 'gneg' },
176
+ { 'id': 'q13.31', 'start': 113700001, 'end': 117600000, 'type': 'gpos75' },
177
+ { 'id': 'q13.32', 'start': 117600001, 'end': 119300000, 'type': 'gneg' },
178
+ { 'id': 'q13.33', 'start': 119300001, 'end': 122200000, 'type': 'gpos75' },
179
+ { 'id': 'q21.1', 'start': 122200001, 'end': 124100000, 'type': 'gneg' },
180
+ { 'id': 'q21.2', 'start': 124100001, 'end': 126100000, 'type': 'gpos25' },
181
+ { 'id': 'q21.3', 'start': 126100001, 'end': 129500000, 'type': 'gneg' },
182
+ { 'id': 'q22.1', 'start': 129500001, 'end': 134000000, 'type': 'gpos25' },
183
+ { 'id': 'q22.2', 'start': 134000001, 'end': 136000000, 'type': 'gneg' },
184
+ { 'id': 'q22.3', 'start': 136000001, 'end': 139000000, 'type': 'gpos25' },
185
+ { 'id': 'q23', 'start': 139000001, 'end': 143100000, 'type': 'gneg' },
186
+ { 'id': 'q24', 'start': 143100001, 'end': 149200000, 'type': 'gpos100' },
187
+ { 'id': 'q25.1', 'start': 149200001, 'end': 152300000, 'type': 'gneg' },
188
+ { 'id': 'q25.2', 'start': 152300001, 'end': 155300000, 'type': 'gpos50' },
189
+ { 'id': 'q25.31', 'start': 155300001, 'end': 157300000, 'type': 'gneg' },
190
+ { 'id': 'q25.32', 'start': 157300001, 'end': 159300000, 'type': 'gpos50' },
191
+ { 'id': 'q25.33', 'start': 159300001, 'end': 161000000, 'type': 'gneg' },
192
+ { 'id': 'q26.1', 'start': 161000001, 'end': 167900000, 'type': 'gpos100' },
193
+ { 'id': 'q26.2', 'start': 167900001, 'end': 171200000, 'type': 'gneg' },
194
+ { 'id': 'q26.31', 'start': 171200001, 'end': 176000000, 'type': 'gpos75' },
195
+ { 'id': 'q26.32', 'start': 176000001, 'end': 179300000, 'type': 'gneg' },
196
+ { 'id': 'q26.33', 'start': 179300001, 'end': 183000000, 'type': 'gpos75' },
197
+ { 'id': 'q27.1', 'start': 183000001, 'end': 184800000, 'type': 'gneg' },
198
+ { 'id': 'q27.2', 'start': 184800001, 'end': 186300000, 'type': 'gpos25' },
199
+ { 'id': 'q27.3', 'start': 186300001, 'end': 188200000, 'type': 'gneg' },
200
+ { 'id': 'q28', 'start': 188200001, 'end': 192600000, 'type': 'gpos75' },
201
+ { 'id': 'q29', 'start': 192600001, 'end': 198295559, 'type': 'gneg' }
202
+ ]
203
+ },
204
+ '4': {
205
+ 'size' : 190214555,
206
+ 'bands' : [
207
+ { 'id': 'p11', 'start': 48200001, 'end': 50000000, 'type': 'acen' },
208
+ { 'id': 'p12', 'start': 44600001, 'end': 48200000, 'type': 'gneg' },
209
+ { 'id': 'p13', 'start': 41200001, 'end': 44600000, 'type': 'gpos50' },
210
+ { 'id': 'p14', 'start': 35800001, 'end': 41200000, 'type': 'gneg' },
211
+ { 'id': 'p15.1', 'start': 27700001, 'end': 35800000, 'type': 'gpos100' },
212
+ { 'id': 'p15.2', 'start': 21300001, 'end': 27700000, 'type': 'gneg' },
213
+ { 'id': 'p15.31', 'start': 17700001, 'end': 21300000, 'type': 'gpos75' },
214
+ { 'id': 'p15.32', 'start': 15000001, 'end': 17700000, 'type': 'gneg' },
215
+ { 'id': 'p15.33', 'start': 11300001, 'end': 15000000, 'type': 'gpos50' },
216
+ { 'id': 'p16.1', 'start': 6000001, 'end': 11300000, 'type': 'gneg' },
217
+ { 'id': 'p16.2', 'start': 4500001, 'end': 6000000, 'type': 'gpos25' },
218
+ { 'id': 'p16.3', 'start': 1, 'end': 4500000, 'type': 'gneg' },
219
+ { 'id': 'q11', 'start': 50000001, 'end': 51800000, 'type': 'acen' },
220
+ { 'id': 'q12', 'start': 51800001, 'end': 58500000, 'type': 'gneg' },
221
+ { 'id': 'q13.1', 'start': 58500001, 'end': 65500000, 'type': 'gpos100' },
222
+ { 'id': 'q13.2', 'start': 65500001, 'end': 69400000, 'type': 'gneg' },
223
+ { 'id': 'q13.3', 'start': 69400001, 'end': 75300000, 'type': 'gpos75' },
224
+ { 'id': 'q21.1', 'start': 75300001, 'end': 78000000, 'type': 'gneg' },
225
+ { 'id': 'q21.21', 'start': 78000001, 'end': 81500000, 'type': 'gpos50' },
226
+ { 'id': 'q21.22', 'start': 81500001, 'end': 83200000, 'type': 'gneg' },
227
+ { 'id': 'q21.23', 'start': 83200001, 'end': 86000000, 'type': 'gpos25' },
228
+ { 'id': 'q21.3', 'start': 86000001, 'end': 87100000, 'type': 'gneg' },
229
+ { 'id': 'q22.1', 'start': 87100001, 'end': 92800000, 'type': 'gpos75' },
230
+ { 'id': 'q22.2', 'start': 92800001, 'end': 94200000, 'type': 'gneg' },
231
+ { 'id': 'q22.3', 'start': 94200001, 'end': 97900000, 'type': 'gpos75' },
232
+ { 'id': 'q23', 'start': 97900001, 'end': 100100000, 'type': 'gneg' },
233
+ { 'id': 'q24', 'start': 100100001, 'end': 106700000, 'type': 'gpos50' },
234
+ { 'id': 'q25', 'start': 106700001, 'end': 113200000, 'type': 'gneg' },
235
+ { 'id': 'q26', 'start': 113200001, 'end': 119900000, 'type': 'gpos75' },
236
+ { 'id': 'q27', 'start': 119900001, 'end': 122800000, 'type': 'gneg' },
237
+ { 'id': 'q28.1', 'start': 122800001, 'end': 127900000, 'type': 'gpos50' },
238
+ { 'id': 'q28.2', 'start': 127900001, 'end': 130100000, 'type': 'gneg' },
239
+ { 'id': 'q28.3', 'start': 130100001, 'end': 138500000, 'type': 'gpos100' },
240
+ { 'id': 'q31.1', 'start': 138500001, 'end': 140600000, 'type': 'gneg' },
241
+ { 'id': 'q31.21', 'start': 140600001, 'end': 145900000, 'type': 'gpos25' },
242
+ { 'id': 'q31.22', 'start': 145900001, 'end': 147500000, 'type': 'gneg' },
243
+ { 'id': 'q31.23', 'start': 147500001, 'end': 150200000, 'type': 'gpos25' },
244
+ { 'id': 'q31.3', 'start': 150200001, 'end': 154600000, 'type': 'gneg' },
245
+ { 'id': 'q32.1', 'start': 154600001, 'end': 160800000, 'type': 'gpos100' },
246
+ { 'id': 'q32.2', 'start': 160800001, 'end': 163600000, 'type': 'gneg' },
247
+ { 'id': 'q32.3', 'start': 163600001, 'end': 169200000, 'type': 'gpos100' },
248
+ { 'id': 'q33', 'start': 169200001, 'end': 171000000, 'type': 'gneg' },
249
+ { 'id': 'q34.1', 'start': 171000001, 'end': 175400000, 'type': 'gpos75' },
250
+ { 'id': 'q34.2', 'start': 175400001, 'end': 176600000, 'type': 'gneg' },
251
+ { 'id': 'q34.3', 'start': 176600001, 'end': 182300000, 'type': 'gpos100' },
252
+ { 'id': 'q35.1', 'start': 182300001, 'end': 186200000, 'type': 'gneg' },
253
+ { 'id': 'q35.2', 'start': 186200001, 'end': 190214555, 'type': 'gpos25' }
254
+ ]
255
+ },
256
+ '5': {
257
+ 'size' : 181538259,
258
+ 'bands' : [
259
+ { 'id': 'p11', 'start': 46100001, 'end': 48800000, 'type': 'acen' },
260
+ { 'id': 'p12', 'start': 42500001, 'end': 46100000, 'type': 'gpos50' },
261
+ { 'id': 'p13.1', 'start': 38400001, 'end': 42500000, 'type': 'gneg' },
262
+ { 'id': 'p13.2', 'start': 33800001, 'end': 38400000, 'type': 'gpos25' },
263
+ { 'id': 'p13.3', 'start': 28900001, 'end': 33800000, 'type': 'gneg' },
264
+ { 'id': 'p14.1', 'start': 24600001, 'end': 28900000, 'type': 'gpos100' },
265
+ { 'id': 'p14.2', 'start': 23300001, 'end': 24600000, 'type': 'gneg' },
266
+ { 'id': 'p14.3', 'start': 18400001, 'end': 23300000, 'type': 'gpos100' },
267
+ { 'id': 'p15.1', 'start': 15000001, 'end': 18400000, 'type': 'gneg' },
268
+ { 'id': 'p15.2', 'start': 9900001, 'end': 15000000, 'type': 'gpos50' },
269
+ { 'id': 'p15.31', 'start': 6300001, 'end': 9900000, 'type': 'gneg' },
270
+ { 'id': 'p15.32', 'start': 4400001, 'end': 6300000, 'type': 'gpos25' },
271
+ { 'id': 'p15.33', 'start': 1, 'end': 4400000, 'type': 'gneg' },
272
+ { 'id': 'q11.1', 'start': 48800001, 'end': 51400000, 'type': 'acen' },
273
+ { 'id': 'q11.2', 'start': 51400001, 'end': 59600000, 'type': 'gneg' },
274
+ { 'id': 'q12.1', 'start': 59600001, 'end': 63600000, 'type': 'gpos75' },
275
+ { 'id': 'q12.2', 'start': 63600001, 'end': 63900000, 'type': 'gneg' },
276
+ { 'id': 'q12.3', 'start': 63900001, 'end': 67400000, 'type': 'gpos75' },
277
+ { 'id': 'q13.1', 'start': 67400001, 'end': 69100000, 'type': 'gneg' },
278
+ { 'id': 'q13.2', 'start': 69100001, 'end': 74000000, 'type': 'gpos50' },
279
+ { 'id': 'q13.3', 'start': 74000001, 'end': 77600000, 'type': 'gneg' },
280
+ { 'id': 'q14.1', 'start': 77600001, 'end': 82100000, 'type': 'gpos50' },
281
+ { 'id': 'q14.2', 'start': 82100001, 'end': 83500000, 'type': 'gneg' },
282
+ { 'id': 'q14.3', 'start': 83500001, 'end': 93000000, 'type': 'gpos100' },
283
+ { 'id': 'q15', 'start': 93000001, 'end': 98900000, 'type': 'gneg' },
284
+ { 'id': 'q21.1', 'start': 98900001, 'end': 103400000, 'type': 'gpos100' },
285
+ { 'id': 'q21.2', 'start': 103400001, 'end': 105100000, 'type': 'gneg' },
286
+ { 'id': 'q21.3', 'start': 105100001, 'end': 110200000, 'type': 'gpos100' },
287
+ { 'id': 'q22.1', 'start': 110200001, 'end': 112200000, 'type': 'gneg' },
288
+ { 'id': 'q22.2', 'start': 112200001, 'end': 113800000, 'type': 'gpos50' },
289
+ { 'id': 'q22.3', 'start': 113800001, 'end': 115900000, 'type': 'gneg' },
290
+ { 'id': 'q23.1', 'start': 115900001, 'end': 122100000, 'type': 'gpos100' },
291
+ { 'id': 'q23.2', 'start': 122100001, 'end': 127900000, 'type': 'gneg' },
292
+ { 'id': 'q23.3', 'start': 127900001, 'end': 131200000, 'type': 'gpos100' },
293
+ { 'id': 'q31.1', 'start': 131200001, 'end': 136900000, 'type': 'gneg' },
294
+ { 'id': 'q31.2', 'start': 136900001, 'end': 140100000, 'type': 'gpos25' },
295
+ { 'id': 'q31.3', 'start': 140100001, 'end': 145100000, 'type': 'gneg' },
296
+ { 'id': 'q32', 'start': 145100001, 'end': 150400000, 'type': 'gpos75' },
297
+ { 'id': 'q33.1', 'start': 150400001, 'end': 153300000, 'type': 'gneg' },
298
+ { 'id': 'q33.2', 'start': 153300001, 'end': 156300000, 'type': 'gpos50' },
299
+ { 'id': 'q33.3', 'start': 156300001, 'end': 160500000, 'type': 'gneg' },
300
+ { 'id': 'q34', 'start': 160500001, 'end': 169000000, 'type': 'gpos100' },
301
+ { 'id': 'q35.1', 'start': 169000001, 'end': 173300000, 'type': 'gneg' },
302
+ { 'id': 'q35.2', 'start': 173300001, 'end': 177100000, 'type': 'gpos25' },
303
+ { 'id': 'q35.3', 'start': 177100001, 'end': 181538259, 'type': 'gneg' }
304
+ ]
305
+ },
306
+ '6': {
307
+ 'size' : 170805979,
308
+ 'bands' : [
309
+ { 'id': 'p11.1', 'start': 58500001, 'end': 59800000, 'type': 'acen' },
310
+ { 'id': 'p11.2', 'start': 57200001, 'end': 58500000, 'type': 'gneg' },
311
+ { 'id': 'p12.1', 'start': 53000001, 'end': 57200000, 'type': 'gpos100' },
312
+ { 'id': 'p12.2', 'start': 51800001, 'end': 53000000, 'type': 'gneg' },
313
+ { 'id': 'p12.3', 'start': 46200001, 'end': 51800000, 'type': 'gpos100' },
314
+ { 'id': 'p21.1', 'start': 40500001, 'end': 46200000, 'type': 'gneg' },
315
+ { 'id': 'p21.2', 'start': 36600001, 'end': 40500000, 'type': 'gpos25' },
316
+ { 'id': 'p21.31', 'start': 33500001, 'end': 36600000, 'type': 'gneg' },
317
+ { 'id': 'p21.32', 'start': 32100001, 'end': 33500000, 'type': 'gpos25' },
318
+ { 'id': 'p21.33', 'start': 30500001, 'end': 32100000, 'type': 'gneg' },
319
+ { 'id': 'p22.1', 'start': 27100001, 'end': 30500000, 'type': 'gpos50' },
320
+ { 'id': 'p22.2', 'start': 25200001, 'end': 27100000, 'type': 'gneg' },
321
+ { 'id': 'p22.3', 'start': 15200001, 'end': 25200000, 'type': 'gpos75' },
322
+ { 'id': 'p23', 'start': 13400001, 'end': 15200000, 'type': 'gneg' },
323
+ { 'id': 'p24.1', 'start': 11600001, 'end': 13400000, 'type': 'gpos25' },
324
+ { 'id': 'p24.2', 'start': 10600001, 'end': 11600000, 'type': 'gneg' },
325
+ { 'id': 'p24.3', 'start': 7100001, 'end': 10600000, 'type': 'gpos50' },
326
+ { 'id': 'p25.1', 'start': 4200001, 'end': 7100000, 'type': 'gneg' },
327
+ { 'id': 'p25.2', 'start': 2300001, 'end': 4200000, 'type': 'gpos25' },
328
+ { 'id': 'p25.3', 'start': 1, 'end': 2300000, 'type': 'gneg' },
329
+ { 'id': 'q11.1', 'start': 59800001, 'end': 62600000, 'type': 'acen' },
330
+ { 'id': 'q11.2', 'start': 62600001, 'end': 62700000, 'type': 'gneg' },
331
+ { 'id': 'q12', 'start': 62700001, 'end': 69200000, 'type': 'gpos100' },
332
+ { 'id': 'q13', 'start': 69200001, 'end': 75200000, 'type': 'gneg' },
333
+ { 'id': 'q14.1', 'start': 75200001, 'end': 83200000, 'type': 'gpos50' },
334
+ { 'id': 'q14.2', 'start': 83200001, 'end': 84200000, 'type': 'gneg' },
335
+ { 'id': 'q14.3', 'start': 84200001, 'end': 87300000, 'type': 'gpos50' },
336
+ { 'id': 'q15', 'start': 87300001, 'end': 92500000, 'type': 'gneg' },
337
+ { 'id': 'q16.1', 'start': 92500001, 'end': 98900000, 'type': 'gpos100' },
338
+ { 'id': 'q16.2', 'start': 98900001, 'end': 100000000, 'type': 'gneg' },
339
+ { 'id': 'q16.3', 'start': 100000001, 'end': 105000000, 'type': 'gpos100' },
340
+ { 'id': 'q21', 'start': 105000001, 'end': 114200000, 'type': 'gneg' },
341
+ { 'id': 'q22.1', 'start': 114200001, 'end': 117900000, 'type': 'gpos75' },
342
+ { 'id': 'q22.2', 'start': 117900001, 'end': 118100000, 'type': 'gneg' },
343
+ { 'id': 'q22.31', 'start': 118100001, 'end': 125800000, 'type': 'gpos100' },
344
+ { 'id': 'q22.32', 'start': 125800001, 'end': 126800000, 'type': 'gneg' },
345
+ { 'id': 'q22.33', 'start': 126800001, 'end': 130000000, 'type': 'gpos75' },
346
+ { 'id': 'q23.1', 'start': 130000001, 'end': 130900000, 'type': 'gneg' },
347
+ { 'id': 'q23.2', 'start': 130900001, 'end': 134700000, 'type': 'gpos50' },
348
+ { 'id': 'q23.3', 'start': 134700001, 'end': 138300000, 'type': 'gneg' },
349
+ { 'id': 'q24.1', 'start': 138300001, 'end': 142200000, 'type': 'gpos75' },
350
+ { 'id': 'q24.2', 'start': 142200001, 'end': 145100000, 'type': 'gneg' },
351
+ { 'id': 'q24.3', 'start': 145100001, 'end': 148500000, 'type': 'gpos75' },
352
+ { 'id': 'q25.1', 'start': 148500001, 'end': 152100000, 'type': 'gneg' },
353
+ { 'id': 'q25.2', 'start': 152100001, 'end': 155200000, 'type': 'gpos50' },
354
+ { 'id': 'q25.3', 'start': 155200001, 'end': 160600000, 'type': 'gneg' },
355
+ { 'id': 'q26', 'start': 160600001, 'end': 164100000, 'type': 'gpos50' },
356
+ { 'id': 'q27', 'start': 164100001, 'end': 170805979, 'type': 'gneg' }
357
+ ]
358
+ },
359
+ '7': {
360
+ 'size' : 159345973,
361
+ 'bands' : [
362
+ { 'id': 'p11.1', 'start': 58100001, 'end': 60100000, 'type': 'acen' },
363
+ { 'id': 'p11.2', 'start': 53900001, 'end': 58100000, 'type': 'gneg' },
364
+ { 'id': 'p12.1', 'start': 50500001, 'end': 53900000, 'type': 'gpos75' },
365
+ { 'id': 'p12.2', 'start': 49000001, 'end': 50500000, 'type': 'gneg' },
366
+ { 'id': 'p12.3', 'start': 45400001, 'end': 49000000, 'type': 'gpos75' },
367
+ { 'id': 'p13', 'start': 43300001, 'end': 45400000, 'type': 'gneg' },
368
+ { 'id': 'p14.1', 'start': 37100001, 'end': 43300000, 'type': 'gpos75' },
369
+ { 'id': 'p14.2', 'start': 34900001, 'end': 37100000, 'type': 'gneg' },
370
+ { 'id': 'p14.3', 'start': 28800001, 'end': 34900000, 'type': 'gpos75' },
371
+ { 'id': 'p15.1', 'start': 27900001, 'end': 28800000, 'type': 'gneg' },
372
+ { 'id': 'p15.2', 'start': 25500001, 'end': 27900000, 'type': 'gpos50' },
373
+ { 'id': 'p15.3', 'start': 20900001, 'end': 25500000, 'type': 'gneg' },
374
+ { 'id': 'p21.1', 'start': 16500001, 'end': 20900000, 'type': 'gpos100' },
375
+ { 'id': 'p21.2', 'start': 13700001, 'end': 16500000, 'type': 'gneg' },
376
+ { 'id': 'p21.3', 'start': 7200001, 'end': 13700000, 'type': 'gpos100' },
377
+ { 'id': 'p22.1', 'start': 4500001, 'end': 7200000, 'type': 'gneg' },
378
+ { 'id': 'p22.2', 'start': 2800001, 'end': 4500000, 'type': 'gpos25' },
379
+ { 'id': 'p22.3', 'start': 1, 'end': 2800000, 'type': 'gneg' },
380
+ { 'id': 'q11.1', 'start': 60100001, 'end': 62100000, 'type': 'acen' },
381
+ { 'id': 'q11.21', 'start': 62100001, 'end': 67500000, 'type': 'gneg' },
382
+ { 'id': 'q11.22', 'start': 67500001, 'end': 72700000, 'type': 'gpos50' },
383
+ { 'id': 'q11.23', 'start': 72700001, 'end': 77900000, 'type': 'gneg' },
384
+ { 'id': 'q21.11', 'start': 77900001, 'end': 86700000, 'type': 'gpos100' },
385
+ { 'id': 'q21.12', 'start': 86700001, 'end': 88500000, 'type': 'gneg' },
386
+ { 'id': 'q21.13', 'start': 88500001, 'end': 91500000, 'type': 'gpos75' },
387
+ { 'id': 'q21.2', 'start': 91500001, 'end': 93300000, 'type': 'gneg' },
388
+ { 'id': 'q21.3', 'start': 93300001, 'end': 98400000, 'type': 'gpos75' },
389
+ { 'id': 'q22.1', 'start': 98400001, 'end': 104200000, 'type': 'gneg' },
390
+ { 'id': 'q22.2', 'start': 104200001, 'end': 104900000, 'type': 'gpos50' },
391
+ { 'id': 'q22.3', 'start': 104900001, 'end': 107800000, 'type': 'gneg' },
392
+ { 'id': 'q31.1', 'start': 107800001, 'end': 115000000, 'type': 'gpos75' },
393
+ { 'id': 'q31.2', 'start': 115000001, 'end': 117700000, 'type': 'gneg' },
394
+ { 'id': 'q31.31', 'start': 117700001, 'end': 121400000, 'type': 'gpos75' },
395
+ { 'id': 'q31.32', 'start': 121400001, 'end': 124100000, 'type': 'gneg' },
396
+ { 'id': 'q31.33', 'start': 124100001, 'end': 127500000, 'type': 'gpos75' },
397
+ { 'id': 'q32.1', 'start': 127500001, 'end': 129600000, 'type': 'gneg' },
398
+ { 'id': 'q32.2', 'start': 129600001, 'end': 130800000, 'type': 'gpos25' },
399
+ { 'id': 'q32.3', 'start': 130800001, 'end': 132900000, 'type': 'gneg' },
400
+ { 'id': 'q33', 'start': 132900001, 'end': 138500000, 'type': 'gpos50' },
401
+ { 'id': 'q34', 'start': 138500001, 'end': 143400000, 'type': 'gneg' },
402
+ { 'id': 'q35', 'start': 143400001, 'end': 148200000, 'type': 'gpos75' },
403
+ { 'id': 'q36.1', 'start': 148200001, 'end': 152800000, 'type': 'gneg' },
404
+ { 'id': 'q36.2', 'start': 152800001, 'end': 155200000, 'type': 'gpos25' },
405
+ { 'id': 'q36.3', 'start': 155200001, 'end': 159345973, 'type': 'gneg' }
406
+ ]
407
+ },
408
+ '8': {
409
+ 'size' : 145138636,
410
+ 'bands' : [
411
+ { 'id': 'p11.1', 'start': 43200001, 'end': 45200000, 'type': 'acen' },
412
+ { 'id': 'p11.21', 'start': 39900001, 'end': 43200000, 'type': 'gneg' },
413
+ { 'id': 'p11.22', 'start': 38500001, 'end': 39900000, 'type': 'gpos25' },
414
+ { 'id': 'p11.23', 'start': 36700001, 'end': 38500000, 'type': 'gneg' },
415
+ { 'id': 'p12', 'start': 29000001, 'end': 36700000, 'type': 'gpos75' },
416
+ { 'id': 'p21.1', 'start': 27500001, 'end': 29000000, 'type': 'gneg' },
417
+ { 'id': 'p21.2', 'start': 23500001, 'end': 27500000, 'type': 'gpos50' },
418
+ { 'id': 'p21.3', 'start': 19200001, 'end': 23500000, 'type': 'gneg' },
419
+ { 'id': 'p22', 'start': 12800001, 'end': 19200000, 'type': 'gpos100' },
420
+ { 'id': 'p23.1', 'start': 6300001, 'end': 12800000, 'type': 'gneg' },
421
+ { 'id': 'p23.2', 'start': 2300001, 'end': 6300000, 'type': 'gpos75' },
422
+ { 'id': 'p23.3', 'start': 1, 'end': 2300000, 'type': 'gneg' },
423
+ { 'id': 'q11.1', 'start': 45200001, 'end': 47200000, 'type': 'acen' },
424
+ { 'id': 'q11.21', 'start': 47200001, 'end': 51300000, 'type': 'gneg' },
425
+ { 'id': 'q11.22', 'start': 51300001, 'end': 51700000, 'type': 'gpos75' },
426
+ { 'id': 'q11.23', 'start': 51700001, 'end': 54600000, 'type': 'gneg' },
427
+ { 'id': 'q12.1', 'start': 54600001, 'end': 60600000, 'type': 'gpos50' },
428
+ { 'id': 'q12.2', 'start': 60600001, 'end': 61300000, 'type': 'gneg' },
429
+ { 'id': 'q12.3', 'start': 61300001, 'end': 65100000, 'type': 'gpos50' },
430
+ { 'id': 'q13.1', 'start': 65100001, 'end': 67100000, 'type': 'gneg' },
431
+ { 'id': 'q13.2', 'start': 67100001, 'end': 69600000, 'type': 'gpos50' },
432
+ { 'id': 'q13.3', 'start': 69600001, 'end': 72000000, 'type': 'gneg' },
433
+ { 'id': 'q21.11', 'start': 72000001, 'end': 74600000, 'type': 'gpos100' },
434
+ { 'id': 'q21.12', 'start': 74600001, 'end': 74700000, 'type': 'gneg' },
435
+ { 'id': 'q21.13', 'start': 74700001, 'end': 83500000, 'type': 'gpos75' },
436
+ { 'id': 'q21.2', 'start': 83500001, 'end': 85900000, 'type': 'gneg' },
437
+ { 'id': 'q21.3', 'start': 85900001, 'end': 92300000, 'type': 'gpos100' },
438
+ { 'id': 'q22.1', 'start': 92300001, 'end': 97900000, 'type': 'gneg' },
439
+ { 'id': 'q22.2', 'start': 97900001, 'end': 100500000, 'type': 'gpos25' },
440
+ { 'id': 'q22.3', 'start': 100500001, 'end': 105100000, 'type': 'gneg' },
441
+ { 'id': 'q23.1', 'start': 105100001, 'end': 109500000, 'type': 'gpos75' },
442
+ { 'id': 'q23.2', 'start': 109500001, 'end': 111100000, 'type': 'gneg' },
443
+ { 'id': 'q23.3', 'start': 111100001, 'end': 116700000, 'type': 'gpos100' },
444
+ { 'id': 'q24.11', 'start': 116700001, 'end': 118300000, 'type': 'gneg' },
445
+ { 'id': 'q24.12', 'start': 118300001, 'end': 121500000, 'type': 'gpos50' },
446
+ { 'id': 'q24.13', 'start': 121500001, 'end': 126300000, 'type': 'gneg' },
447
+ { 'id': 'q24.21', 'start': 126300001, 'end': 130400000, 'type': 'gpos50' },
448
+ { 'id': 'q24.22', 'start': 130400001, 'end': 135400000, 'type': 'gneg' },
449
+ { 'id': 'q24.23', 'start': 135400001, 'end': 138900000, 'type': 'gpos75' },
450
+ { 'id': 'q24.3', 'start': 138900001, 'end': 145138636, 'type': 'gneg' }
451
+ ]
452
+ },
453
+ '9': {
454
+ 'size' : 138394717,
455
+ 'bands' : [
456
+ { 'id': 'p11.1', 'start': 42200001, 'end': 43000000, 'type': 'acen' },
457
+ { 'id': 'p11.2', 'start': 40000001, 'end': 42200000, 'type': 'gneg' },
458
+ { 'id': 'p12', 'start': 39000001, 'end': 40000000, 'type': 'gpos50' },
459
+ { 'id': 'p13.1', 'start': 37900001, 'end': 39000000, 'type': 'gneg' },
460
+ { 'id': 'p13.2', 'start': 36300001, 'end': 37900000, 'type': 'gpos25' },
461
+ { 'id': 'p13.3', 'start': 33200001, 'end': 36300000, 'type': 'gneg' },
462
+ { 'id': 'p21.1', 'start': 28000001, 'end': 33200000, 'type': 'gpos100' },
463
+ { 'id': 'p21.2', 'start': 25600001, 'end': 28000000, 'type': 'gneg' },
464
+ { 'id': 'p21.3', 'start': 19900001, 'end': 25600000, 'type': 'gpos100' },
465
+ { 'id': 'p22.1', 'start': 18500001, 'end': 19900000, 'type': 'gneg' },
466
+ { 'id': 'p22.2', 'start': 16600001, 'end': 18500000, 'type': 'gpos25' },
467
+ { 'id': 'p22.3', 'start': 14200001, 'end': 16600000, 'type': 'gneg' },
468
+ { 'id': 'p23', 'start': 9000001, 'end': 14200000, 'type': 'gpos75' },
469
+ { 'id': 'p24.1', 'start': 4600001, 'end': 9000000, 'type': 'gneg' },
470
+ { 'id': 'p24.2', 'start': 2200001, 'end': 4600000, 'type': 'gpos25' },
471
+ { 'id': 'p24.3', 'start': 1, 'end': 2200000, 'type': 'gneg' },
472
+ { 'id': 'q11', 'start': 43000001, 'end': 45500000, 'type': 'acen' },
473
+ { 'id': 'q12', 'start': 45500001, 'end': 61500000, 'type': 'gvar' },
474
+ { 'id': 'q13', 'start': 61500001, 'end': 65000000, 'type': 'gneg' },
475
+ { 'id': 'q21.11', 'start': 65000001, 'end': 69300000, 'type': 'gpos25' },
476
+ { 'id': 'q21.12', 'start': 69300001, 'end': 71300000, 'type': 'gneg' },
477
+ { 'id': 'q21.13', 'start': 71300001, 'end': 76600000, 'type': 'gpos50' },
478
+ { 'id': 'q21.2', 'start': 76600001, 'end': 78500000, 'type': 'gneg' },
479
+ { 'id': 'q21.31', 'start': 78500001, 'end': 81500000, 'type': 'gpos50' },
480
+ { 'id': 'q21.32', 'start': 81500001, 'end': 84300000, 'type': 'gneg' },
481
+ { 'id': 'q21.33', 'start': 84300001, 'end': 87800000, 'type': 'gpos50' },
482
+ { 'id': 'q22.1', 'start': 87800001, 'end': 89200000, 'type': 'gneg' },
483
+ { 'id': 'q22.2', 'start': 89200001, 'end': 91200000, 'type': 'gpos25' },
484
+ { 'id': 'q22.31', 'start': 91200001, 'end': 93900000, 'type': 'gneg' },
485
+ { 'id': 'q22.32', 'start': 93900001, 'end': 96500000, 'type': 'gpos25' },
486
+ { 'id': 'q22.33', 'start': 96500001, 'end': 99800000, 'type': 'gneg' },
487
+ { 'id': 'q31.1', 'start': 99800001, 'end': 105400000, 'type': 'gpos100' },
488
+ { 'id': 'q31.2', 'start': 105400001, 'end': 108500000, 'type': 'gneg' },
489
+ { 'id': 'q31.3', 'start': 108500001, 'end': 112100000, 'type': 'gpos25' },
490
+ { 'id': 'q32', 'start': 112100001, 'end': 114900000, 'type': 'gneg' },
491
+ { 'id': 'q33.1', 'start': 114900001, 'end': 119800000, 'type': 'gpos75' },
492
+ { 'id': 'q33.2', 'start': 119800001, 'end': 123100000, 'type': 'gneg' },
493
+ { 'id': 'q33.3', 'start': 123100001, 'end': 127500000, 'type': 'gpos25' },
494
+ { 'id': 'q34.11', 'start': 127500001, 'end': 130600000, 'type': 'gneg' },
495
+ { 'id': 'q34.12', 'start': 130600001, 'end': 131100000, 'type': 'gpos25' },
496
+ { 'id': 'q34.13', 'start': 131100001, 'end': 133100000, 'type': 'gneg' },
497
+ { 'id': 'q34.2', 'start': 133100001, 'end': 134500000, 'type': 'gpos25' },
498
+ { 'id': 'q34.3', 'start': 134500001, 'end': 138394717, 'type': 'gneg' }
499
+ ]
500
+ },
501
+ '10': {
502
+ 'size' : 133797422,
503
+ 'bands' : [
504
+ { 'id': 'p11.1', 'start': 38000001, 'end': 39800000, 'type': 'acen' },
505
+ { 'id': 'p11.21', 'start': 34200001, 'end': 38000000, 'type': 'gneg' },
506
+ { 'id': 'p11.22', 'start': 31100001, 'end': 34200000, 'type': 'gpos25' },
507
+ { 'id': 'p11.23', 'start': 29300001, 'end': 31100000, 'type': 'gneg' },
508
+ { 'id': 'p12.1', 'start': 24300001, 'end': 29300000, 'type': 'gpos50' },
509
+ { 'id': 'p12.2', 'start': 22300001, 'end': 24300000, 'type': 'gneg' },
510
+ { 'id': 'p12.31', 'start': 18400001, 'end': 22300000, 'type': 'gpos75' },
511
+ { 'id': 'p12.32', 'start': 18300001, 'end': 18400000, 'type': 'gneg' },
512
+ { 'id': 'p12.33', 'start': 17300001, 'end': 18300000, 'type': 'gpos75' },
513
+ { 'id': 'p13', 'start': 12200001, 'end': 17300000, 'type': 'gneg' },
514
+ { 'id': 'p14', 'start': 6600001, 'end': 12200000, 'type': 'gpos75' },
515
+ { 'id': 'p15.1', 'start': 3800001, 'end': 6600000, 'type': 'gneg' },
516
+ { 'id': 'p15.2', 'start': 3000001, 'end': 3800000, 'type': 'gpos25' },
517
+ { 'id': 'p15.3', 'start': 1, 'end': 3000000, 'type': 'gneg' },
518
+ { 'id': 'q11.1', 'start': 39800001, 'end': 41600000, 'type': 'acen' },
519
+ { 'id': 'q11.21', 'start': 41600001, 'end': 45500000, 'type': 'gneg' },
520
+ { 'id': 'q11.22', 'start': 45500001, 'end': 48600000, 'type': 'gpos25' },
521
+ { 'id': 'q11.23', 'start': 48600001, 'end': 51100000, 'type': 'gneg' },
522
+ { 'id': 'q21.1', 'start': 51100001, 'end': 59400000, 'type': 'gpos100' },
523
+ { 'id': 'q21.2', 'start': 59400001, 'end': 62800000, 'type': 'gneg' },
524
+ { 'id': 'q21.3', 'start': 62800001, 'end': 68800000, 'type': 'gpos100' },
525
+ { 'id': 'q22.1', 'start': 68800001, 'end': 73100000, 'type': 'gneg' },
526
+ { 'id': 'q22.2', 'start': 73100001, 'end': 75900000, 'type': 'gpos50' },
527
+ { 'id': 'q22.3', 'start': 75900001, 'end': 80300000, 'type': 'gneg' },
528
+ { 'id': 'q23.1', 'start': 80300001, 'end': 86100000, 'type': 'gpos100' },
529
+ { 'id': 'q23.2', 'start': 86100001, 'end': 87700000, 'type': 'gneg' },
530
+ { 'id': 'q23.31', 'start': 87700001, 'end': 91100000, 'type': 'gpos75' },
531
+ { 'id': 'q23.32', 'start': 91100001, 'end': 92300000, 'type': 'gneg' },
532
+ { 'id': 'q23.33', 'start': 92300001, 'end': 95300000, 'type': 'gpos50' },
533
+ { 'id': 'q24.1', 'start': 95300001, 'end': 97500000, 'type': 'gneg' },
534
+ { 'id': 'q24.2', 'start': 97500001, 'end': 100100000, 'type': 'gpos50' },
535
+ { 'id': 'q24.31', 'start': 100100001, 'end': 101200000, 'type': 'gneg' },
536
+ { 'id': 'q24.32', 'start': 101200001, 'end': 103100000, 'type': 'gpos25' },
537
+ { 'id': 'q24.33', 'start': 103100001, 'end': 104000000, 'type': 'gneg' },
538
+ { 'id': 'q25.1', 'start': 104000001, 'end': 110100000, 'type': 'gpos100' },
539
+ { 'id': 'q25.2', 'start': 110100001, 'end': 113100000, 'type': 'gneg' },
540
+ { 'id': 'q25.3', 'start': 113100001, 'end': 117300000, 'type': 'gpos75' },
541
+ { 'id': 'q26.11', 'start': 117300001, 'end': 119900000, 'type': 'gneg' },
542
+ { 'id': 'q26.12', 'start': 119900001, 'end': 121400000, 'type': 'gpos50' },
543
+ { 'id': 'q26.13', 'start': 121400001, 'end': 125700000, 'type': 'gneg' },
544
+ { 'id': 'q26.2', 'start': 125700001, 'end': 128800000, 'type': 'gpos50' },
545
+ { 'id': 'q26.3', 'start': 128800001, 'end': 133797422, 'type': 'gneg' }
546
+ ]
547
+ },
548
+ '11': {
549
+ 'size' : 135086622,
550
+ 'bands' : [
551
+ { 'id': 'p11.11', 'start': 51000001, 'end': 53400000, 'type': 'acen' },
552
+ { 'id': 'p11.12', 'start': 48800001, 'end': 51000000, 'type': 'gpos75' },
553
+ { 'id': 'p11.2', 'start': 43400001, 'end': 48800000, 'type': 'gneg' },
554
+ { 'id': 'p12', 'start': 36400001, 'end': 43400000, 'type': 'gpos100' },
555
+ { 'id': 'p13', 'start': 31000001, 'end': 36400000, 'type': 'gneg' },
556
+ { 'id': 'p14.1', 'start': 27200001, 'end': 31000000, 'type': 'gpos75' },
557
+ { 'id': 'p14.2', 'start': 26200001, 'end': 27200000, 'type': 'gneg' },
558
+ { 'id': 'p14.3', 'start': 22000001, 'end': 26200000, 'type': 'gpos100' },
559
+ { 'id': 'p15.1', 'start': 16900001, 'end': 22000000, 'type': 'gneg' },
560
+ { 'id': 'p15.2', 'start': 13800001, 'end': 16900000, 'type': 'gpos50' },
561
+ { 'id': 'p15.3', 'start': 11700001, 'end': 13800000, 'type': 'gneg' },
562
+ { 'id': 'p15.4', 'start': 2800001, 'end': 11700000, 'type': 'gpos50' },
563
+ { 'id': 'p15.5', 'start': 1, 'end': 2800000, 'type': 'gneg' },
564
+ { 'id': 'q11', 'start': 53400001, 'end': 55800000, 'type': 'acen' },
565
+ { 'id': 'q12.1', 'start': 55800001, 'end': 60100000, 'type': 'gpos75' },
566
+ { 'id': 'q12.2', 'start': 60100001, 'end': 61900000, 'type': 'gneg' },
567
+ { 'id': 'q12.3', 'start': 61900001, 'end': 63600000, 'type': 'gpos25' },
568
+ { 'id': 'q13.1', 'start': 63600001, 'end': 66100000, 'type': 'gneg' },
569
+ { 'id': 'q13.2', 'start': 66100001, 'end': 68700000, 'type': 'gpos25' },
570
+ { 'id': 'q13.3', 'start': 68700001, 'end': 70500000, 'type': 'gneg' },
571
+ { 'id': 'q13.4', 'start': 70500001, 'end': 75500000, 'type': 'gpos50' },
572
+ { 'id': 'q13.5', 'start': 75500001, 'end': 77400000, 'type': 'gneg' },
573
+ { 'id': 'q14.1', 'start': 77400001, 'end': 85900000, 'type': 'gpos100' },
574
+ { 'id': 'q14.2', 'start': 85900001, 'end': 88600000, 'type': 'gneg' },
575
+ { 'id': 'q14.3', 'start': 88600001, 'end': 93000000, 'type': 'gpos100' },
576
+ { 'id': 'q21', 'start': 93000001, 'end': 97400000, 'type': 'gneg' },
577
+ { 'id': 'q22.1', 'start': 97400001, 'end': 102300000, 'type': 'gpos100' },
578
+ { 'id': 'q22.2', 'start': 102300001, 'end': 103000000, 'type': 'gneg' },
579
+ { 'id': 'q22.3', 'start': 103000001, 'end': 110600000, 'type': 'gpos100' },
580
+ { 'id': 'q23.1', 'start': 110600001, 'end': 112700000, 'type': 'gneg' },
581
+ { 'id': 'q23.2', 'start': 112700001, 'end': 114600000, 'type': 'gpos50' },
582
+ { 'id': 'q23.3', 'start': 114600001, 'end': 121300000, 'type': 'gneg' },
583
+ { 'id': 'q24.1', 'start': 121300001, 'end': 124000000, 'type': 'gpos50' },
584
+ { 'id': 'q24.2', 'start': 124000001, 'end': 127900000, 'type': 'gneg' },
585
+ { 'id': 'q24.3', 'start': 127900001, 'end': 130900000, 'type': 'gpos50' },
586
+ { 'id': 'q25', 'start': 130900001, 'end': 135086622, 'type': 'gneg' }
587
+ ]
588
+ },
589
+ '12': {
590
+ 'size' : 133275309,
591
+ 'bands' : [
592
+ { 'id': 'p11.1', 'start': 33200001, 'end': 35500000, 'type': 'acen' },
593
+ { 'id': 'p11.21', 'start': 30500001, 'end': 33200000, 'type': 'gneg' },
594
+ { 'id': 'p11.22', 'start': 27600001, 'end': 30500000, 'type': 'gpos50' },
595
+ { 'id': 'p11.23', 'start': 26300001, 'end': 27600000, 'type': 'gneg' },
596
+ { 'id': 'p12.1', 'start': 21100001, 'end': 26300000, 'type': 'gpos100' },
597
+ { 'id': 'p12.2', 'start': 19800001, 'end': 21100000, 'type': 'gneg' },
598
+ { 'id': 'p12.3', 'start': 14600001, 'end': 19800000, 'type': 'gpos100' },
599
+ { 'id': 'p13.1', 'start': 12600001, 'end': 14600000, 'type': 'gneg' },
600
+ { 'id': 'p13.2', 'start': 10000001, 'end': 12600000, 'type': 'gpos75' },
601
+ { 'id': 'p13.31', 'start': 5300001, 'end': 10000000, 'type': 'gneg' },
602
+ { 'id': 'p13.32', 'start': 3200001, 'end': 5300000, 'type': 'gpos25' },
603
+ { 'id': 'p13.33', 'start': 1, 'end': 3200000, 'type': 'gneg' },
604
+ { 'id': 'q11', 'start': 35500001, 'end': 37800000, 'type': 'acen' },
605
+ { 'id': 'q12', 'start': 37800001, 'end': 46000000, 'type': 'gpos100' },
606
+ { 'id': 'q13.11', 'start': 46000001, 'end': 48700000, 'type': 'gneg' },
607
+ { 'id': 'q13.12', 'start': 48700001, 'end': 51100000, 'type': 'gpos25' },
608
+ { 'id': 'q13.13', 'start': 51100001, 'end': 54500000, 'type': 'gneg' },
609
+ { 'id': 'q13.2', 'start': 54500001, 'end': 56200000, 'type': 'gpos25' },
610
+ { 'id': 'q13.3', 'start': 56200001, 'end': 57700000, 'type': 'gneg' },
611
+ { 'id': 'q14.1', 'start': 57700001, 'end': 62700000, 'type': 'gpos75' },
612
+ { 'id': 'q14.2', 'start': 62700001, 'end': 64700000, 'type': 'gneg' },
613
+ { 'id': 'q14.3', 'start': 64700001, 'end': 67300000, 'type': 'gpos50' },
614
+ { 'id': 'q15', 'start': 67300001, 'end': 71100000, 'type': 'gneg' },
615
+ { 'id': 'q21.1', 'start': 71100001, 'end': 75300000, 'type': 'gpos75' },
616
+ { 'id': 'q21.2', 'start': 75300001, 'end': 79900000, 'type': 'gneg' },
617
+ { 'id': 'q21.31', 'start': 79900001, 'end': 86300000, 'type': 'gpos100' },
618
+ { 'id': 'q21.32', 'start': 86300001, 'end': 88600000, 'type': 'gneg' },
619
+ { 'id': 'q21.33', 'start': 88600001, 'end': 92200000, 'type': 'gpos100' },
620
+ { 'id': 'q22', 'start': 92200001, 'end': 95800000, 'type': 'gneg' },
621
+ { 'id': 'q23.1', 'start': 95800001, 'end': 101200000, 'type': 'gpos75' },
622
+ { 'id': 'q23.2', 'start': 101200001, 'end': 103500000, 'type': 'gneg' },
623
+ { 'id': 'q23.3', 'start': 103500001, 'end': 108600000, 'type': 'gpos50' },
624
+ { 'id': 'q24.11', 'start': 108600001, 'end': 111300000, 'type': 'gneg' },
625
+ { 'id': 'q24.12', 'start': 111300001, 'end': 111900000, 'type': 'gpos25' },
626
+ { 'id': 'q24.13', 'start': 111900001, 'end': 113900000, 'type': 'gneg' },
627
+ { 'id': 'q24.21', 'start': 113900001, 'end': 116400000, 'type': 'gpos50' },
628
+ { 'id': 'q24.22', 'start': 116400001, 'end': 117700000, 'type': 'gneg' },
629
+ { 'id': 'q24.23', 'start': 117700001, 'end': 120300000, 'type': 'gpos50' },
630
+ { 'id': 'q24.31', 'start': 120300001, 'end': 125400000, 'type': 'gneg' },
631
+ { 'id': 'q24.32', 'start': 125400001, 'end': 128700000, 'type': 'gpos50' },
632
+ { 'id': 'q24.33', 'start': 128700001, 'end': 133275309, 'type': 'gneg' }
633
+ ]
634
+ },
635
+ '13': {
636
+ 'size' : 114364328,
637
+ 'bands' : [
638
+ { 'id': 'p11.1', 'start': 16500001, 'end': 17700000, 'type': 'acen' },
639
+ { 'id': 'p11.2', 'start': 10100001, 'end': 16500000, 'type': 'gvar' },
640
+ { 'id': 'p12', 'start': 4600001, 'end': 10100000, 'type': 'stalk' },
641
+ { 'id': 'p13', 'start': 1, 'end': 4600000, 'type': 'gvar' },
642
+ { 'id': 'q11', 'start': 17700001, 'end': 18900000, 'type': 'acen' },
643
+ { 'id': 'q12.11', 'start': 18900001, 'end': 22600000, 'type': 'gneg' },
644
+ { 'id': 'q12.12', 'start': 22600001, 'end': 24900000, 'type': 'gpos25' },
645
+ { 'id': 'q12.13', 'start': 24900001, 'end': 27200000, 'type': 'gneg' },
646
+ { 'id': 'q12.2', 'start': 27200001, 'end': 28300000, 'type': 'gpos25' },
647
+ { 'id': 'q12.3', 'start': 28300001, 'end': 31600000, 'type': 'gneg' },
648
+ { 'id': 'q13.1', 'start': 31600001, 'end': 33400000, 'type': 'gpos50' },
649
+ { 'id': 'q13.2', 'start': 33400001, 'end': 34900000, 'type': 'gneg' },
650
+ { 'id': 'q13.3', 'start': 34900001, 'end': 39500000, 'type': 'gpos75' },
651
+ { 'id': 'q14.11', 'start': 39500001, 'end': 44600000, 'type': 'gneg' },
652
+ { 'id': 'q14.12', 'start': 44600001, 'end': 45200000, 'type': 'gpos25' },
653
+ { 'id': 'q14.13', 'start': 45200001, 'end': 46700000, 'type': 'gneg' },
654
+ { 'id': 'q14.2', 'start': 46700001, 'end': 50300000, 'type': 'gpos50' },
655
+ { 'id': 'q14.3', 'start': 50300001, 'end': 54700000, 'type': 'gneg' },
656
+ { 'id': 'q21.1', 'start': 54700001, 'end': 59000000, 'type': 'gpos100' },
657
+ { 'id': 'q21.2', 'start': 59000001, 'end': 61800000, 'type': 'gneg' },
658
+ { 'id': 'q21.31', 'start': 61800001, 'end': 65200000, 'type': 'gpos75' },
659
+ { 'id': 'q21.32', 'start': 65200001, 'end': 68100000, 'type': 'gneg' },
660
+ { 'id': 'q21.33', 'start': 68100001, 'end': 72800000, 'type': 'gpos100' },
661
+ { 'id': 'q22.1', 'start': 72800001, 'end': 74900000, 'type': 'gneg' },
662
+ { 'id': 'q22.2', 'start': 74900001, 'end': 76700000, 'type': 'gpos50' },
663
+ { 'id': 'q22.3', 'start': 76700001, 'end': 78500000, 'type': 'gneg' },
664
+ { 'id': 'q31.1', 'start': 78500001, 'end': 87100000, 'type': 'gpos100' },
665
+ { 'id': 'q31.2', 'start': 87100001, 'end': 89400000, 'type': 'gneg' },
666
+ { 'id': 'q31.3', 'start': 89400001, 'end': 94400000, 'type': 'gpos100' },
667
+ { 'id': 'q32.1', 'start': 94400001, 'end': 97500000, 'type': 'gneg' },
668
+ { 'id': 'q32.2', 'start': 97500001, 'end': 98700000, 'type': 'gpos25' },
669
+ { 'id': 'q32.3', 'start': 98700001, 'end': 101100000, 'type': 'gneg' },
670
+ { 'id': 'q33.1', 'start': 101100001, 'end': 104200000, 'type': 'gpos100' },
671
+ { 'id': 'q33.2', 'start': 104200001, 'end': 106400000, 'type': 'gneg' },
672
+ { 'id': 'q33.3', 'start': 106400001, 'end': 109600000, 'type': 'gpos100' },
673
+ { 'id': 'q34', 'start': 109600001, 'end': 114364328, 'type': 'gneg' }
674
+ ]
675
+ },
676
+ '14': {
677
+ 'size' : 107043718,
678
+ 'bands' : [
679
+ { 'id': 'p11.1', 'start': 16100001, 'end': 17200000, 'type': 'acen' },
680
+ { 'id': 'p11.2', 'start': 8000001, 'end': 16100000, 'type': 'gvar' },
681
+ { 'id': 'p12', 'start': 3600001, 'end': 8000000, 'type': 'stalk' },
682
+ { 'id': 'p13', 'start': 1, 'end': 3600000, 'type': 'gvar' },
683
+ { 'id': 'q11.1', 'start': 17200001, 'end': 18200000, 'type': 'acen' },
684
+ { 'id': 'q11.2', 'start': 18200001, 'end': 24100000, 'type': 'gneg' },
685
+ { 'id': 'q12', 'start': 24100001, 'end': 32900000, 'type': 'gpos100' },
686
+ { 'id': 'q13.1', 'start': 32900001, 'end': 34800000, 'type': 'gneg' },
687
+ { 'id': 'q13.2', 'start': 34800001, 'end': 36100000, 'type': 'gpos50' },
688
+ { 'id': 'q13.3', 'start': 36100001, 'end': 37400000, 'type': 'gneg' },
689
+ { 'id': 'q21.1', 'start': 37400001, 'end': 43000000, 'type': 'gpos100' },
690
+ { 'id': 'q21.2', 'start': 43000001, 'end': 46700000, 'type': 'gneg' },
691
+ { 'id': 'q21.3', 'start': 46700001, 'end': 50400000, 'type': 'gpos100' },
692
+ { 'id': 'q22.1', 'start': 50400001, 'end': 53600000, 'type': 'gneg' },
693
+ { 'id': 'q22.2', 'start': 53600001, 'end': 55000000, 'type': 'gpos25' },
694
+ { 'id': 'q22.3', 'start': 55000001, 'end': 57600000, 'type': 'gneg' },
695
+ { 'id': 'q23.1', 'start': 57600001, 'end': 61600000, 'type': 'gpos75' },
696
+ { 'id': 'q23.2', 'start': 61600001, 'end': 64300000, 'type': 'gneg' },
697
+ { 'id': 'q23.3', 'start': 64300001, 'end': 67400000, 'type': 'gpos50' },
698
+ { 'id': 'q24.1', 'start': 67400001, 'end': 69800000, 'type': 'gneg' },
699
+ { 'id': 'q24.2', 'start': 69800001, 'end': 73300000, 'type': 'gpos50' },
700
+ { 'id': 'q24.3', 'start': 73300001, 'end': 78800000, 'type': 'gneg' },
701
+ { 'id': 'q31.1', 'start': 78800001, 'end': 83100000, 'type': 'gpos100' },
702
+ { 'id': 'q31.2', 'start': 83100001, 'end': 84400000, 'type': 'gneg' },
703
+ { 'id': 'q31.3', 'start': 84400001, 'end': 89300000, 'type': 'gpos100' },
704
+ { 'id': 'q32.11', 'start': 89300001, 'end': 91400000, 'type': 'gneg' },
705
+ { 'id': 'q32.12', 'start': 91400001, 'end': 94200000, 'type': 'gpos25' },
706
+ { 'id': 'q32.13', 'start': 94200001, 'end': 95800000, 'type': 'gneg' },
707
+ { 'id': 'q32.2', 'start': 95800001, 'end': 100900000, 'type': 'gpos50' },
708
+ { 'id': 'q32.31', 'start': 100900001, 'end': 102700000, 'type': 'gneg' },
709
+ { 'id': 'q32.32', 'start': 102700001, 'end': 103500000, 'type': 'gpos50' },
710
+ { 'id': 'q32.33', 'start': 103500001, 'end': 107043718, 'type': 'gneg' }
711
+ ]
712
+ },
713
+ '15': {
714
+ 'size' : 101991189,
715
+ 'bands' : [
716
+ { 'id': 'p11.1', 'start': 17500001, 'end': 19000000, 'type': 'acen' },
717
+ { 'id': 'p11.2', 'start': 9700001, 'end': 17500000, 'type': 'gvar' },
718
+ { 'id': 'p12', 'start': 4200001, 'end': 9700000, 'type': 'stalk' },
719
+ { 'id': 'p13', 'start': 1, 'end': 4200000, 'type': 'gvar' },
720
+ { 'id': 'q11.1', 'start': 19000001, 'end': 20500000, 'type': 'acen' },
721
+ { 'id': 'q11.2', 'start': 20500001, 'end': 25500000, 'type': 'gneg' },
722
+ { 'id': 'q12', 'start': 25500001, 'end': 27800000, 'type': 'gpos50' },
723
+ { 'id': 'q13.1', 'start': 27800001, 'end': 30000000, 'type': 'gneg' },
724
+ { 'id': 'q13.2', 'start': 30000001, 'end': 30900000, 'type': 'gpos50' },
725
+ { 'id': 'q13.3', 'start': 30900001, 'end': 33400000, 'type': 'gneg' },
726
+ { 'id': 'q14', 'start': 33400001, 'end': 39800000, 'type': 'gpos75' },
727
+ { 'id': 'q15.1', 'start': 39800001, 'end': 42500000, 'type': 'gneg' },
728
+ { 'id': 'q15.2', 'start': 42500001, 'end': 43300000, 'type': 'gpos25' },
729
+ { 'id': 'q15.3', 'start': 43300001, 'end': 44500000, 'type': 'gneg' },
730
+ { 'id': 'q21.1', 'start': 44500001, 'end': 49200000, 'type': 'gpos75' },
731
+ { 'id': 'q21.2', 'start': 49200001, 'end': 52600000, 'type': 'gneg' },
732
+ { 'id': 'q21.3', 'start': 52600001, 'end': 58800000, 'type': 'gpos75' },
733
+ { 'id': 'q22.1', 'start': 58800001, 'end': 59000000, 'type': 'gneg' },
734
+ { 'id': 'q22.2', 'start': 59000001, 'end': 63400000, 'type': 'gpos25' },
735
+ { 'id': 'q22.31', 'start': 63400001, 'end': 66900000, 'type': 'gneg' },
736
+ { 'id': 'q22.32', 'start': 66900001, 'end': 67000000, 'type': 'gpos25' },
737
+ { 'id': 'q22.33', 'start': 67000001, 'end': 67200000, 'type': 'gneg' },
738
+ { 'id': 'q23', 'start': 67200001, 'end': 72400000, 'type': 'gpos25' },
739
+ { 'id': 'q24.1', 'start': 72400001, 'end': 74900000, 'type': 'gneg' },
740
+ { 'id': 'q24.2', 'start': 74900001, 'end': 76300000, 'type': 'gpos25' },
741
+ { 'id': 'q24.3', 'start': 76300001, 'end': 78000000, 'type': 'gneg' },
742
+ { 'id': 'q25.1', 'start': 78000001, 'end': 81400000, 'type': 'gpos50' },
743
+ { 'id': 'q25.2', 'start': 81400001, 'end': 84700000, 'type': 'gneg' },
744
+ { 'id': 'q25.3', 'start': 84700001, 'end': 88500000, 'type': 'gpos50' },
745
+ { 'id': 'q26.1', 'start': 88500001, 'end': 93800000, 'type': 'gneg' },
746
+ { 'id': 'q26.2', 'start': 93800001, 'end': 98000000, 'type': 'gpos50' },
747
+ { 'id': 'q26.3', 'start': 98000001, 'end': 101991189, 'type': 'gneg' }
748
+ ]
749
+ },
750
+ '16': {
751
+ 'size' : 90338345,
752
+ 'bands' : [
753
+ { 'id': 'p11.1', 'start': 35300001, 'end': 36800000, 'type': 'acen' },
754
+ { 'id': 'p11.2', 'start': 28500001, 'end': 35300000, 'type': 'gneg' },
755
+ { 'id': 'p12.1', 'start': 24200001, 'end': 28500000, 'type': 'gpos50' },
756
+ { 'id': 'p12.2', 'start': 21200001, 'end': 24200000, 'type': 'gneg' },
757
+ { 'id': 'p12.3', 'start': 16700001, 'end': 21200000, 'type': 'gpos50' },
758
+ { 'id': 'p13.11', 'start': 14700001, 'end': 16700000, 'type': 'gneg' },
759
+ { 'id': 'p13.12', 'start': 12500001, 'end': 14700000, 'type': 'gpos50' },
760
+ { 'id': 'p13.13', 'start': 10400001, 'end': 12500000, 'type': 'gneg' },
761
+ { 'id': 'p13.2', 'start': 7800001, 'end': 10400000, 'type': 'gpos50' },
762
+ { 'id': 'p13.3', 'start': 1, 'end': 7800000, 'type': 'gneg' },
763
+ { 'id': 'q11.1', 'start': 36800001, 'end': 38400000, 'type': 'acen' },
764
+ { 'id': 'q11.2', 'start': 38400001, 'end': 47000000, 'type': 'gvar' },
765
+ { 'id': 'q12.1', 'start': 47000001, 'end': 52600000, 'type': 'gneg' },
766
+ { 'id': 'q12.2', 'start': 52600001, 'end': 56000000, 'type': 'gpos50' },
767
+ { 'id': 'q13', 'start': 56000001, 'end': 57300000, 'type': 'gneg' },
768
+ { 'id': 'q21', 'start': 57300001, 'end': 66600000, 'type': 'gpos100' },
769
+ { 'id': 'q22.1', 'start': 66600001, 'end': 70800000, 'type': 'gneg' },
770
+ { 'id': 'q22.2', 'start': 70800001, 'end': 72800000, 'type': 'gpos50' },
771
+ { 'id': 'q22.3', 'start': 72800001, 'end': 74100000, 'type': 'gneg' },
772
+ { 'id': 'q23.1', 'start': 74100001, 'end': 79200000, 'type': 'gpos75' },
773
+ { 'id': 'q23.2', 'start': 79200001, 'end': 81600000, 'type': 'gneg' },
774
+ { 'id': 'q23.3', 'start': 81600001, 'end': 84100000, 'type': 'gpos50' },
775
+ { 'id': 'q24.1', 'start': 84100001, 'end': 87000000, 'type': 'gneg' },
776
+ { 'id': 'q24.2', 'start': 87000001, 'end': 88700000, 'type': 'gpos25' },
777
+ { 'id': 'q24.3', 'start': 88700001, 'end': 90338345, 'type': 'gneg' }
778
+ ]
779
+ },
780
+ '17': {
781
+ 'size' : 83257441,
782
+ 'bands' : [
783
+ { 'id': 'p11.1', 'start': 22700001, 'end': 25100000, 'type': 'acen' },
784
+ { 'id': 'p11.2', 'start': 16100001, 'end': 22700000, 'type': 'gneg' },
785
+ { 'id': 'p12', 'start': 10800001, 'end': 16100000, 'type': 'gpos75' },
786
+ { 'id': 'p13.1', 'start': 6500001, 'end': 10800000, 'type': 'gneg' },
787
+ { 'id': 'p13.2', 'start': 3400001, 'end': 6500000, 'type': 'gpos50' },
788
+ { 'id': 'p13.3', 'start': 1, 'end': 3400000, 'type': 'gneg' },
789
+ { 'id': 'q11.1', 'start': 25100001, 'end': 27400000, 'type': 'acen' },
790
+ { 'id': 'q11.2', 'start': 27400001, 'end': 33500000, 'type': 'gneg' },
791
+ { 'id': 'q12', 'start': 33500001, 'end': 39800000, 'type': 'gpos50' },
792
+ { 'id': 'q21.1', 'start': 39800001, 'end': 40200000, 'type': 'gneg' },
793
+ { 'id': 'q21.2', 'start': 40200001, 'end': 42800000, 'type': 'gpos25' },
794
+ { 'id': 'q21.31', 'start': 42800001, 'end': 46800000, 'type': 'gneg' },
795
+ { 'id': 'q21.32', 'start': 46800001, 'end': 49300000, 'type': 'gpos25' },
796
+ { 'id': 'q21.33', 'start': 49300001, 'end': 52100000, 'type': 'gneg' },
797
+ { 'id': 'q22', 'start': 52100001, 'end': 59500000, 'type': 'gpos75' },
798
+ { 'id': 'q23.1', 'start': 59500001, 'end': 60200000, 'type': 'gneg' },
799
+ { 'id': 'q23.2', 'start': 60200001, 'end': 63100000, 'type': 'gpos75' },
800
+ { 'id': 'q23.3', 'start': 63100001, 'end': 64600000, 'type': 'gneg' },
801
+ { 'id': 'q24.1', 'start': 64600001, 'end': 66200000, 'type': 'gpos50' },
802
+ { 'id': 'q24.2', 'start': 66200001, 'end': 69100000, 'type': 'gneg' },
803
+ { 'id': 'q24.3', 'start': 69100001, 'end': 72900000, 'type': 'gpos75' },
804
+ { 'id': 'q25.1', 'start': 72900001, 'end': 76800000, 'type': 'gneg' },
805
+ { 'id': 'q25.2', 'start': 76800001, 'end': 77200000, 'type': 'gpos25' },
806
+ { 'id': 'q25.3', 'start': 77200001, 'end': 83257441, 'type': 'gneg' }
807
+ ]
808
+ },
809
+ '18': {
810
+ 'size' : 80373285,
811
+ 'bands' : [
812
+ { 'id': 'p11.1', 'start': 15400001, 'end': 18500000, 'type': 'acen' },
813
+ { 'id': 'p11.21', 'start': 10900001, 'end': 15400000, 'type': 'gneg' },
814
+ { 'id': 'p11.22', 'start': 8500001, 'end': 10900000, 'type': 'gpos25' },
815
+ { 'id': 'p11.23', 'start': 7200001, 'end': 8500000, 'type': 'gneg' },
816
+ { 'id': 'p11.31', 'start': 2900001, 'end': 7200000, 'type': 'gpos50' },
817
+ { 'id': 'p11.32', 'start': 1, 'end': 2900000, 'type': 'gneg' },
818
+ { 'id': 'q11.1', 'start': 18500001, 'end': 21500000, 'type': 'acen' },
819
+ { 'id': 'q11.2', 'start': 21500001, 'end': 27500000, 'type': 'gneg' },
820
+ { 'id': 'q12.1', 'start': 27500001, 'end': 35100000, 'type': 'gpos100' },
821
+ { 'id': 'q12.2', 'start': 35100001, 'end': 39500000, 'type': 'gneg' },
822
+ { 'id': 'q12.3', 'start': 39500001, 'end': 45900000, 'type': 'gpos75' },
823
+ { 'id': 'q21.1', 'start': 45900001, 'end': 50700000, 'type': 'gneg' },
824
+ { 'id': 'q21.2', 'start': 50700001, 'end': 56200000, 'type': 'gpos75' },
825
+ { 'id': 'q21.31', 'start': 56200001, 'end': 58600000, 'type': 'gneg' },
826
+ { 'id': 'q21.32', 'start': 58600001, 'end': 61300000, 'type': 'gpos50' },
827
+ { 'id': 'q21.33', 'start': 61300001, 'end': 63900000, 'type': 'gneg' },
828
+ { 'id': 'q22.1', 'start': 63900001, 'end': 69100000, 'type': 'gpos100' },
829
+ { 'id': 'q22.2', 'start': 69100001, 'end': 71000000, 'type': 'gneg' },
830
+ { 'id': 'q22.3', 'start': 71000001, 'end': 75400000, 'type': 'gpos25' },
831
+ { 'id': 'q23', 'start': 75400001, 'end': 80373285, 'type': 'gneg' }
832
+ ]
833
+ },
834
+ '19': {
835
+ 'size' : 58617616,
836
+ 'bands' : [
837
+ { 'id': 'p11', 'start': 24200001, 'end': 26200000, 'type': 'acen' },
838
+ { 'id': 'p12', 'start': 19900001, 'end': 24200000, 'type': 'gvar' },
839
+ { 'id': 'p13.11', 'start': 16100001, 'end': 19900000, 'type': 'gneg' },
840
+ { 'id': 'p13.12', 'start': 13800001, 'end': 16100000, 'type': 'gpos25' },
841
+ { 'id': 'p13.13', 'start': 12600001, 'end': 13800000, 'type': 'gneg' },
842
+ { 'id': 'p13.2', 'start': 6900001, 'end': 12600000, 'type': 'gpos25' },
843
+ { 'id': 'p13.3', 'start': 1, 'end': 6900000, 'type': 'gneg' },
844
+ { 'id': 'q11', 'start': 26200001, 'end': 28100000, 'type': 'acen' },
845
+ { 'id': 'q12', 'start': 28100001, 'end': 31900000, 'type': 'gvar' },
846
+ { 'id': 'q13.11', 'start': 31900001, 'end': 35100000, 'type': 'gneg' },
847
+ { 'id': 'q13.12', 'start': 35100001, 'end': 37800000, 'type': 'gpos25' },
848
+ { 'id': 'q13.13', 'start': 37800001, 'end': 38200000, 'type': 'gneg' },
849
+ { 'id': 'q13.2', 'start': 38200001, 'end': 42900000, 'type': 'gpos25' },
850
+ { 'id': 'q13.31', 'start': 42900001, 'end': 44700000, 'type': 'gneg' },
851
+ { 'id': 'q13.32', 'start': 44700001, 'end': 47500000, 'type': 'gpos25' },
852
+ { 'id': 'q13.33', 'start': 47500001, 'end': 50900000, 'type': 'gneg' },
853
+ { 'id': 'q13.41', 'start': 50900001, 'end': 53100000, 'type': 'gpos25' },
854
+ { 'id': 'q13.42', 'start': 53100001, 'end': 55800000, 'type': 'gneg' },
855
+ { 'id': 'q13.43', 'start': 55800001, 'end': 58617616, 'type': 'gpos25' }
856
+ ]
857
+ },
858
+ '20': {
859
+ 'size' : 64444167,
860
+ 'bands' : [
861
+ { 'id': 'p11.1', 'start': 25700001, 'end': 28100000, 'type': 'acen' },
862
+ { 'id': 'p11.21', 'start': 22300001, 'end': 25700000, 'type': 'gneg' },
863
+ { 'id': 'p11.22', 'start': 21300001, 'end': 22300000, 'type': 'gpos25' },
864
+ { 'id': 'p11.23', 'start': 17900001, 'end': 21300000, 'type': 'gneg' },
865
+ { 'id': 'p12.1', 'start': 12000001, 'end': 17900000, 'type': 'gpos75' },
866
+ { 'id': 'p12.2', 'start': 9200001, 'end': 12000000, 'type': 'gneg' },
867
+ { 'id': 'p12.3', 'start': 5100001, 'end': 9200000, 'type': 'gpos75' },
868
+ { 'id': 'p13', 'start': 1, 'end': 5100000, 'type': 'gneg' },
869
+ { 'id': 'q11.1', 'start': 28100001, 'end': 30400000, 'type': 'acen' },
870
+ { 'id': 'q11.21', 'start': 30400001, 'end': 33500000, 'type': 'gneg' },
871
+ { 'id': 'q11.22', 'start': 33500001, 'end': 35800000, 'type': 'gpos25' },
872
+ { 'id': 'q11.23', 'start': 35800001, 'end': 39000000, 'type': 'gneg' },
873
+ { 'id': 'q12', 'start': 39000001, 'end': 43100000, 'type': 'gpos75' },
874
+ { 'id': 'q13.11', 'start': 43100001, 'end': 43500000, 'type': 'gneg' },
875
+ { 'id': 'q13.12', 'start': 43500001, 'end': 47800000, 'type': 'gpos25' },
876
+ { 'id': 'q13.13', 'start': 47800001, 'end': 51200000, 'type': 'gneg' },
877
+ { 'id': 'q13.2', 'start': 51200001, 'end': 56400000, 'type': 'gpos75' },
878
+ { 'id': 'q13.31', 'start': 56400001, 'end': 57800000, 'type': 'gneg' },
879
+ { 'id': 'q13.32', 'start': 57800001, 'end': 59700000, 'type': 'gpos50' },
880
+ { 'id': 'q13.33', 'start': 59700001, 'end': 64444167, 'type': 'gneg' }
881
+ ]
882
+ },
883
+ '21': {
884
+ 'size' : 46709983,
885
+ 'bands' : [
886
+ { 'id': 'p11.1', 'start': 10900001, 'end': 12000000, 'type': 'acen' },
887
+ { 'id': 'p11.2', 'start': 7000001, 'end': 10900000, 'type': 'gvar' },
888
+ { 'id': 'p12', 'start': 3100001, 'end': 7000000, 'type': 'stalk' },
889
+ { 'id': 'p13', 'start': 1, 'end': 3100000, 'type': 'gvar' },
890
+ { 'id': 'q11.1', 'start': 12000001, 'end': 13000000, 'type': 'acen' },
891
+ { 'id': 'q11.2', 'start': 13000001, 'end': 15000000, 'type': 'gneg' },
892
+ { 'id': 'q21.1', 'start': 15000001, 'end': 22600000, 'type': 'gpos100' },
893
+ { 'id': 'q21.2', 'start': 22600001, 'end': 25500000, 'type': 'gneg' },
894
+ { 'id': 'q21.3', 'start': 25500001, 'end': 30200000, 'type': 'gpos75' },
895
+ { 'id': 'q22.11', 'start': 30200001, 'end': 34400000, 'type': 'gneg' },
896
+ { 'id': 'q22.12', 'start': 34400001, 'end': 36400000, 'type': 'gpos50' },
897
+ { 'id': 'q22.13', 'start': 36400001, 'end': 38300000, 'type': 'gneg' },
898
+ { 'id': 'q22.2', 'start': 38300001, 'end': 41200000, 'type': 'gpos50' },
899
+ { 'id': 'q22.3', 'start': 41200001, 'end': 46709983, 'type': 'gneg' }
900
+ ]
901
+ },
902
+ '22': {
903
+ 'size' : 50818468,
904
+ 'bands' : [
905
+ { 'id': 'p11.1', 'start': 13700001, 'end': 15000000, 'type': 'acen' },
906
+ { 'id': 'p11.2', 'start': 9400001, 'end': 13700000, 'type': 'gvar' },
907
+ { 'id': 'p12', 'start': 4300001, 'end': 9400000, 'type': 'stalk' },
908
+ { 'id': 'p13', 'start': 1, 'end': 4300000, 'type': 'gvar' },
909
+ { 'id': 'q11.1', 'start': 15000001, 'end': 17400000, 'type': 'acen' },
910
+ { 'id': 'q11.21', 'start': 17400001, 'end': 21700000, 'type': 'gneg' },
911
+ { 'id': 'q11.22', 'start': 21700001, 'end': 23100000, 'type': 'gpos25' },
912
+ { 'id': 'q11.23', 'start': 23100001, 'end': 25500000, 'type': 'gneg' },
913
+ { 'id': 'q12.1', 'start': 25500001, 'end': 29200000, 'type': 'gpos50' },
914
+ { 'id': 'q12.2', 'start': 29200001, 'end': 31800000, 'type': 'gneg' },
915
+ { 'id': 'q12.3', 'start': 31800001, 'end': 37200000, 'type': 'gpos50' },
916
+ { 'id': 'q13.1', 'start': 37200001, 'end': 40600000, 'type': 'gneg' },
917
+ { 'id': 'q13.2', 'start': 40600001, 'end': 43800000, 'type': 'gpos50' },
918
+ { 'id': 'q13.31', 'start': 43800001, 'end': 48100000, 'type': 'gneg' },
919
+ { 'id': 'q13.32', 'start': 48100001, 'end': 49100000, 'type': 'gpos50' },
920
+ { 'id': 'q13.33', 'start': 49100001, 'end': 50818468, 'type': 'gneg' }
921
+ ]
922
+ },
923
+ 'X': {
924
+ 'size' : 156040895,
925
+ 'bands' : [
926
+ { 'id': 'p11.1', 'start': 58100001, 'end': 61000000, 'type': 'acen' },
927
+ { 'id': 'p11.21', 'start': 54800001, 'end': 58100000, 'type': 'gneg' },
928
+ { 'id': 'p11.22', 'start': 50100001, 'end': 54800000, 'type': 'gpos25' },
929
+ { 'id': 'p11.23', 'start': 47600001, 'end': 50100000, 'type': 'gneg' },
930
+ { 'id': 'p11.3', 'start': 42500001, 'end': 47600000, 'type': 'gpos75' },
931
+ { 'id': 'p11.4', 'start': 37800001, 'end': 42500000, 'type': 'gneg' },
932
+ { 'id': 'p21.1', 'start': 31500001, 'end': 37800000, 'type': 'gpos100' },
933
+ { 'id': 'p21.2', 'start': 29300001, 'end': 31500000, 'type': 'gneg' },
934
+ { 'id': 'p21.3', 'start': 24900001, 'end': 29300000, 'type': 'gpos100' },
935
+ { 'id': 'p22.11', 'start': 21900001, 'end': 24900000, 'type': 'gneg' },
936
+ { 'id': 'p22.12', 'start': 19200001, 'end': 21900000, 'type': 'gpos50' },
937
+ { 'id': 'p22.13', 'start': 17400001, 'end': 19200000, 'type': 'gneg' },
938
+ { 'id': 'p22.2', 'start': 9600001, 'end': 17400000, 'type': 'gpos50' },
939
+ { 'id': 'p22.31', 'start': 6100001, 'end': 9600000, 'type': 'gneg' },
940
+ { 'id': 'p22.32', 'start': 4400001, 'end': 6100000, 'type': 'gpos50' },
941
+ { 'id': 'p22.33', 'start': 1, 'end': 4400000, 'type': 'gneg' },
942
+ { 'id': 'q11.1', 'start': 61000001, 'end': 63800000, 'type': 'acen' },
943
+ { 'id': 'q11.2', 'start': 63800001, 'end': 65400000, 'type': 'gneg' },
944
+ { 'id': 'q12', 'start': 65400001, 'end': 68500000, 'type': 'gpos50' },
945
+ { 'id': 'q13.1', 'start': 68500001, 'end': 73000000, 'type': 'gneg' },
946
+ { 'id': 'q13.2', 'start': 73000001, 'end': 74700000, 'type': 'gpos50' },
947
+ { 'id': 'q13.3', 'start': 74700001, 'end': 76800000, 'type': 'gneg' },
948
+ { 'id': 'q21.1', 'start': 76800001, 'end': 85400000, 'type': 'gpos100' },
949
+ { 'id': 'q21.2', 'start': 85400001, 'end': 87000000, 'type': 'gneg' },
950
+ { 'id': 'q21.31', 'start': 87000001, 'end': 92700000, 'type': 'gpos100' },
951
+ { 'id': 'q21.32', 'start': 92700001, 'end': 94300000, 'type': 'gneg' },
952
+ { 'id': 'q21.33', 'start': 94300001, 'end': 99100000, 'type': 'gpos75' },
953
+ { 'id': 'q22.1', 'start': 99100001, 'end': 103300000, 'type': 'gneg' },
954
+ { 'id': 'q22.2', 'start': 103300001, 'end': 104500000, 'type': 'gpos50' },
955
+ { 'id': 'q22.3', 'start': 104500001, 'end': 109400000, 'type': 'gneg' },
956
+ { 'id': 'q23', 'start': 109400001, 'end': 117400000, 'type': 'gpos75' },
957
+ { 'id': 'q24', 'start': 117400001, 'end': 121800000, 'type': 'gneg' },
958
+ { 'id': 'q25', 'start': 121800001, 'end': 129500000, 'type': 'gpos100' },
959
+ { 'id': 'q26.1', 'start': 129500001, 'end': 131300000, 'type': 'gneg' },
960
+ { 'id': 'q26.2', 'start': 131300001, 'end': 134500000, 'type': 'gpos25' },
961
+ { 'id': 'q26.3', 'start': 134500001, 'end': 138900000, 'type': 'gneg' },
962
+ { 'id': 'q27.1', 'start': 138900001, 'end': 141200000, 'type': 'gpos75' },
963
+ { 'id': 'q27.2', 'start': 141200001, 'end': 143000000, 'type': 'gneg' },
964
+ { 'id': 'q27.3', 'start': 143000001, 'end': 148000000, 'type': 'gpos100' },
965
+ { 'id': 'q28', 'start': 148000001, 'end': 156040895, 'type': 'gneg' }
966
+ ]
967
+ },
968
+ 'Y': {
969
+ 'size' : 57227415,
970
+ 'bands' : [
971
+ { 'id': 'p11.1', 'start': 10300001, 'end': 10400000, 'type': 'acen' },
972
+ { 'id': 'p11.2', 'start': 600001, 'end': 10300000, 'type': 'gneg' },
973
+ { 'id': 'p11.31', 'start': 300001, 'end': 600000, 'type': 'gpos50' },
974
+ { 'id': 'p11.32', 'start': 1, 'end': 300000, 'type': 'gneg' },
975
+ { 'id': 'q11.1', 'start': 10400001, 'end': 10600000, 'type': 'acen' },
976
+ { 'id': 'q11.21', 'start': 10600001, 'end': 12400000, 'type': 'gneg' },
977
+ { 'id': 'q11.221', 'start': 12400001, 'end': 17100000, 'type': 'gpos50' },
978
+ { 'id': 'q11.222', 'start': 17100001, 'end': 19600000, 'type': 'gneg' },
979
+ { 'id': 'q11.223', 'start': 19600001, 'end': 23800000, 'type': 'gpos50' },
980
+ { 'id': 'q11.23', 'start': 23800001, 'end': 26600000, 'type': 'gneg' },
981
+ { 'id': 'q12', 'start': 26600001, 'end': 57227415, 'type': 'gvar' }
982
+ ]
983
+ },
984
+ 'MT': {
985
+ 'size' : 16569,
986
+ 'bands' : [
987
+ { 'start': 1, 'end': 16569 }
988
+ ]
989
+ }
990
+ };