@alisaitteke/seatmap-canvas 2.1.0 → 2.4.1

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 (203) hide show
  1. package/CHANGELOG.md +5 -1
  2. package/LICENSE +1 -1
  3. package/README.md +18 -10
  4. package/dist/cjs/seatmap.canvas.css +151 -0
  5. package/dist/cjs/seatmap.canvas.js +40 -0
  6. package/dist/cjs/seatmap.canvas.js.map +1 -0
  7. package/dist/cjs/types/canvas.index.browser.d.ts +2 -0
  8. package/dist/cjs/types/canvas.index.d.ts +23 -0
  9. package/dist/cjs/types/config.d.ts +3 -0
  10. package/dist/cjs/types/decorators/dom.d.ts +8 -0
  11. package/dist/cjs/types/decorators/index.d.ts +1 -0
  12. package/dist/cjs/types/dev.tools.d.ts +6 -0
  13. package/{src/lib/enums/global.ts → dist/cjs/types/enums/global.d.ts} +6 -27
  14. package/dist/cjs/types/models/block.model.d.ts +29 -0
  15. package/dist/cjs/types/models/coordinate.model.d.ts +7 -0
  16. package/dist/cjs/types/models/data.model.d.ts +26 -0
  17. package/dist/cjs/types/models/defaults.model.d.ts +32 -0
  18. package/dist/cjs/types/models/global.model.d.ts +18 -0
  19. package/dist/cjs/types/models/label.model.d.ts +9 -0
  20. package/dist/cjs/types/models/legend.model.d.ts +8 -0
  21. package/dist/cjs/types/models/model.base.d.ts +5 -0
  22. package/dist/cjs/types/models/seat.model.d.ts +40 -0
  23. package/dist/cjs/types/models/styles/block.style.d.ts +7 -0
  24. package/dist/cjs/types/models/styles/label.style.d.ts +6 -0
  25. package/dist/cjs/types/models/styles/legend.style.d.ts +6 -0
  26. package/dist/cjs/types/models/styles/seat.style.d.ts +12 -0
  27. package/dist/cjs/types/models/styles/tooltip.style.d.ts +7 -0
  28. package/dist/cjs/types/svg/event.manager.d.ts +12 -0
  29. package/dist/cjs/types/svg/legend/legend.circle.d.ts +7 -0
  30. package/dist/cjs/types/svg/legend/legend.item.d.ts +13 -0
  31. package/dist/cjs/types/svg/legend/legend.title.d.ts +7 -0
  32. package/dist/cjs/types/svg/legend.d.ts +8 -0
  33. package/dist/cjs/types/svg/stage/blocks/block-item/block-item.bounds.d.ts +12 -0
  34. package/dist/cjs/types/svg/stage/blocks/block-item/block-item.index.d.ts +23 -0
  35. package/dist/cjs/types/svg/stage/blocks/block-item/block-item.info.index.d.ts +11 -0
  36. package/dist/cjs/types/svg/stage/blocks/block-item/block-item.labels.index.d.ts +11 -0
  37. package/dist/cjs/types/svg/stage/blocks/block-item/block-item.mask.d.ts +12 -0
  38. package/dist/cjs/types/svg/stage/blocks/block-item/block-item.seats.index.d.ts +15 -0
  39. package/dist/cjs/types/svg/stage/blocks/block-item/bound/bound-item.index.d.ts +12 -0
  40. package/dist/cjs/types/svg/stage/blocks/block-item/info/title.d.ts +7 -0
  41. package/dist/cjs/types/svg/stage/blocks/block-item/label/label-item.circle.d.ts +7 -0
  42. package/dist/cjs/types/svg/stage/blocks/block-item/label/label-item.index.d.ts +13 -0
  43. package/dist/cjs/types/svg/stage/blocks/block-item/label/label-item.title.d.ts +7 -0
  44. package/dist/cjs/types/svg/stage/blocks/block-item/seat/seat-item.check.d.ts +10 -0
  45. package/dist/cjs/types/svg/stage/blocks/block-item/seat/seat-item.circle.d.ts +7 -0
  46. package/dist/cjs/types/svg/stage/blocks/block-item/seat/seat-item.index.d.ts +28 -0
  47. package/dist/cjs/types/svg/stage/blocks/block-item/seat/seat-item.title.d.ts +7 -0
  48. package/dist/cjs/types/svg/stage/blocks/blocks.index.d.ts +13 -0
  49. package/dist/cjs/types/svg/stage/blocks.search-circle.d.ts +12 -0
  50. package/dist/cjs/types/svg/stage/multi-select/rect.d.ts +7 -0
  51. package/dist/cjs/types/svg/stage/multi-select.d.ts +13 -0
  52. package/dist/cjs/types/svg/stage/search-circle/circle.d.ts +7 -0
  53. package/dist/cjs/types/svg/stage/stage.index.d.ts +11 -0
  54. package/dist/cjs/types/svg/svg.base.d.ts +35 -0
  55. package/dist/cjs/types/svg/svg.index.d.ts +16 -0
  56. package/dist/cjs/types/svg/tooltip/rect.d.ts +8 -0
  57. package/dist/cjs/types/svg/tooltip/title.d.ts +10 -0
  58. package/dist/cjs/types/svg/tooltip.d.ts +15 -0
  59. package/dist/cjs/types/svg/zoom-out.bg.d.ts +7 -0
  60. package/dist/cjs/types/svg/zoom.manager.d.ts +41 -0
  61. package/dist/cjs/types/window.manager.d.ts +9 -0
  62. package/dist/dependencies.txt +849 -0
  63. package/dist/esm/seatmap.canvas.css +151 -0
  64. package/dist/esm/seatmap.canvas.js +16 -0
  65. package/dist/esm/seatmap.canvas.js.map +1 -0
  66. package/dist/esm/types/canvas.index.browser.d.ts +2 -0
  67. package/dist/esm/types/canvas.index.d.ts +23 -0
  68. package/dist/esm/types/config.d.ts +3 -0
  69. package/dist/esm/types/decorators/dom.d.ts +8 -0
  70. package/dist/esm/types/decorators/index.d.ts +1 -0
  71. package/dist/esm/types/dev.tools.d.ts +6 -0
  72. package/dist/esm/types/enums/global.d.ts +46 -0
  73. package/dist/esm/types/models/block.model.d.ts +29 -0
  74. package/dist/esm/types/models/coordinate.model.d.ts +7 -0
  75. package/dist/esm/types/models/data.model.d.ts +26 -0
  76. package/dist/esm/types/models/defaults.model.d.ts +32 -0
  77. package/dist/esm/types/models/global.model.d.ts +18 -0
  78. package/dist/esm/types/models/label.model.d.ts +9 -0
  79. package/dist/esm/types/models/legend.model.d.ts +8 -0
  80. package/dist/esm/types/models/model.base.d.ts +5 -0
  81. package/dist/esm/types/models/seat.model.d.ts +40 -0
  82. package/dist/esm/types/models/styles/block.style.d.ts +7 -0
  83. package/dist/esm/types/models/styles/label.style.d.ts +6 -0
  84. package/dist/esm/types/models/styles/legend.style.d.ts +6 -0
  85. package/dist/esm/types/models/styles/seat.style.d.ts +12 -0
  86. package/dist/esm/types/models/styles/tooltip.style.d.ts +7 -0
  87. package/dist/esm/types/svg/event.manager.d.ts +12 -0
  88. package/dist/esm/types/svg/legend/legend.circle.d.ts +7 -0
  89. package/dist/esm/types/svg/legend/legend.item.d.ts +13 -0
  90. package/dist/esm/types/svg/legend/legend.title.d.ts +7 -0
  91. package/dist/esm/types/svg/legend.d.ts +8 -0
  92. package/dist/esm/types/svg/stage/blocks/block-item/block-item.bounds.d.ts +12 -0
  93. package/dist/esm/types/svg/stage/blocks/block-item/block-item.index.d.ts +23 -0
  94. package/dist/esm/types/svg/stage/blocks/block-item/block-item.info.index.d.ts +11 -0
  95. package/dist/esm/types/svg/stage/blocks/block-item/block-item.labels.index.d.ts +11 -0
  96. package/dist/esm/types/svg/stage/blocks/block-item/block-item.mask.d.ts +12 -0
  97. package/dist/esm/types/svg/stage/blocks/block-item/block-item.seats.index.d.ts +15 -0
  98. package/dist/esm/types/svg/stage/blocks/block-item/bound/bound-item.index.d.ts +12 -0
  99. package/dist/esm/types/svg/stage/blocks/block-item/info/title.d.ts +7 -0
  100. package/dist/esm/types/svg/stage/blocks/block-item/label/label-item.circle.d.ts +7 -0
  101. package/dist/esm/types/svg/stage/blocks/block-item/label/label-item.index.d.ts +13 -0
  102. package/dist/esm/types/svg/stage/blocks/block-item/label/label-item.title.d.ts +7 -0
  103. package/dist/esm/types/svg/stage/blocks/block-item/seat/seat-item.check.d.ts +10 -0
  104. package/dist/esm/types/svg/stage/blocks/block-item/seat/seat-item.circle.d.ts +7 -0
  105. package/dist/esm/types/svg/stage/blocks/block-item/seat/seat-item.index.d.ts +28 -0
  106. package/dist/esm/types/svg/stage/blocks/block-item/seat/seat-item.title.d.ts +7 -0
  107. package/dist/esm/types/svg/stage/blocks/blocks.index.d.ts +13 -0
  108. package/dist/esm/types/svg/stage/blocks.search-circle.d.ts +12 -0
  109. package/dist/esm/types/svg/stage/multi-select/rect.d.ts +7 -0
  110. package/dist/esm/types/svg/stage/multi-select.d.ts +13 -0
  111. package/dist/esm/types/svg/stage/search-circle/circle.d.ts +7 -0
  112. package/dist/esm/types/svg/stage/stage.index.d.ts +11 -0
  113. package/dist/esm/types/svg/svg.base.d.ts +35 -0
  114. package/dist/esm/types/svg/svg.index.d.ts +16 -0
  115. package/dist/esm/types/svg/tooltip/rect.d.ts +8 -0
  116. package/dist/esm/types/svg/tooltip/title.d.ts +10 -0
  117. package/dist/esm/types/svg/tooltip.d.ts +15 -0
  118. package/dist/esm/types/svg/zoom-out.bg.d.ts +7 -0
  119. package/dist/esm/types/svg/zoom.manager.d.ts +41 -0
  120. package/dist/esm/types/window.manager.d.ts +9 -0
  121. package/dist/types.d.ts +533 -0
  122. package/package.json +25 -22
  123. package/.eslintrc.json +0 -15
  124. package/.github/FUNDING.yml +0 -4
  125. package/.github/ISSUE_TEMPLATE/bug_report.md +0 -38
  126. package/.github/ISSUE_TEMPLATE/feature_request.md +0 -20
  127. package/.github/workflows/codeql-analysis.yml +0 -29
  128. package/.github/workflows/npm-publish-packages.yml +0 -35
  129. package/.github/workflows/publish.yml +0 -103
  130. package/.github/workflows/webpack.yml +0 -22
  131. package/.opencommitignore +0 -4
  132. package/AUTHORS +0 -3
  133. package/SECURITY.md +0 -21
  134. package/_config.yml +0 -1
  135. package/assets/banner_ui.png +0 -0
  136. package/assets/bn.jpg +0 -0
  137. package/assets/logo.jpg +0 -0
  138. package/assets/logo_small.jpg +0 -0
  139. package/assets/zoom_out.svg +0 -11
  140. package/cog.toml +0 -19
  141. package/dist/seatmap.canvas.2.0.1-0.css +0 -1
  142. package/dist/seatmap.canvas.2.0.1-0.js +0 -2
  143. package/dist/seatmap.canvas.2.0.1-0.js.LICENSE.txt +0 -14
  144. package/examples/basic/bootstrap.min.css +0 -7
  145. package/examples/basic/index.html +0 -201
  146. package/examples/basic/jquery.min.js +0 -2
  147. package/examples/data/data.json +0 -70007
  148. package/examples/data/small.json +0 -1307
  149. package/examples/data/tiny.json +0 -119
  150. package/examples/old/index.html +0 -262
  151. package/src/lib/canvas.index.ts +0 -122
  152. package/src/lib/config.ts +0 -11
  153. package/src/lib/decorators/dom.ts +0 -40
  154. package/src/lib/decorators/index.ts +0 -6
  155. package/src/lib/dev.tools.ts +0 -18
  156. package/src/lib/models/block.model.ts +0 -170
  157. package/src/lib/models/coordinate.model.ts +0 -43
  158. package/src/lib/models/data.model.ts +0 -105
  159. package/src/lib/models/defaults.model.ts +0 -125
  160. package/src/lib/models/global.model.ts +0 -24
  161. package/src/lib/models/label.model.ts +0 -58
  162. package/src/lib/models/legend.model.ts +0 -56
  163. package/src/lib/models/model.base.ts +0 -32
  164. package/src/lib/models/seat.model.ts +0 -182
  165. package/src/lib/svg/event.manager.ts +0 -56
  166. package/src/lib/svg/legend/legend.circle.ts +0 -28
  167. package/src/lib/svg/legend/legend.item.ts +0 -50
  168. package/src/lib/svg/legend/legend.title.ts +0 -27
  169. package/src/lib/svg/legend.ts +0 -55
  170. package/src/lib/svg/stage/blocks/block-item/block-item.bounds.ts +0 -51
  171. package/src/lib/svg/stage/blocks/block-item/block-item.index.ts +0 -173
  172. package/src/lib/svg/stage/blocks/block-item/block-item.info.index.ts +0 -38
  173. package/src/lib/svg/stage/blocks/block-item/block-item.labels.index.ts +0 -41
  174. package/src/lib/svg/stage/blocks/block-item/block-item.mask.ts +0 -67
  175. package/src/lib/svg/stage/blocks/block-item/block-item.seats.index.ts +0 -81
  176. package/src/lib/svg/stage/blocks/block-item/bound/bound-item.index.ts +0 -43
  177. package/src/lib/svg/stage/blocks/block-item/info/title.ts +0 -30
  178. package/src/lib/svg/stage/blocks/block-item/label/label-item.circle.ts +0 -27
  179. package/src/lib/svg/stage/blocks/block-item/label/label-item.index.ts +0 -46
  180. package/src/lib/svg/stage/blocks/block-item/label/label-item.title.ts +0 -27
  181. package/src/lib/svg/stage/blocks/block-item/seat/seat-item.check.ts +0 -45
  182. package/src/lib/svg/stage/blocks/block-item/seat/seat-item.circle.ts +0 -30
  183. package/src/lib/svg/stage/blocks/block-item/seat/seat-item.index.ts +0 -159
  184. package/src/lib/svg/stage/blocks/block-item/seat/seat-item.title.ts +0 -27
  185. package/src/lib/svg/stage/blocks/blocks.index.ts +0 -68
  186. package/src/lib/svg/stage/blocks.search-circle.ts +0 -86
  187. package/src/lib/svg/stage/multi-select/rect.ts +0 -36
  188. package/src/lib/svg/stage/multi-select.ts +0 -107
  189. package/src/lib/svg/stage/search-circle/circle.ts +0 -37
  190. package/src/lib/svg/stage/stage.index.ts +0 -41
  191. package/src/lib/svg/svg.base.ts +0 -217
  192. package/src/lib/svg/svg.index.ts +0 -76
  193. package/src/lib/svg/tooltip/rect.ts +0 -66
  194. package/src/lib/svg/tooltip/title.ts +0 -57
  195. package/src/lib/svg/tooltip.ts +0 -92
  196. package/src/lib/svg/zoom-out.bg.ts +0 -35
  197. package/src/lib/svg/zoom.manager.ts +0 -440
  198. package/src/lib/window.manager.ts +0 -40
  199. package/src/scss/lib.scss +0 -10
  200. package/src/scss/style.scss +0 -221
  201. package/tsconfig.json +0 -28
  202. package/webpack.environments/development.js +0 -58
  203. package/webpack.environments/production.js +0 -52
@@ -1,1307 +0,0 @@
1
- {
2
- "totalItemCount": 0,
3
- "seats": [
4
- {
5
- "isSold": true,
6
- "seatClassType": 100,
7
- "id": 8649794,
8
- "positionTop": 270,
9
- "positionLeft": 270,
10
- "displayName": "1",
11
- "rowName": "J",
12
- "rowNo": 1,
13
- "refSeatClassID": 158,
14
- "blockId": 0,
15
- "refChannelGroupId": 25351
16
- },
17
- {
18
- "isSold": true,
19
- "seatClassType": 100,
20
- "id": 8649793,
21
- "positionTop": 270,
22
- "positionLeft": 240,
23
- "displayName": "2",
24
- "rowName": "J",
25
- "rowNo": 1,
26
- "refSeatClassID": 158,
27
- "blockId": 0,
28
- "refChannelGroupId": 25351
29
- },
30
- {
31
- "isSold": true,
32
- "seatClassType": 100,
33
- "id": 8649792,
34
- "positionTop": 270,
35
- "positionLeft": 210,
36
- "displayName": "3",
37
- "rowName": "J",
38
- "rowNo": 1,
39
- "refSeatClassID": 158,
40
- "blockId": 0,
41
- "refChannelGroupId": 25351
42
- },
43
- {
44
- "isSold": true,
45
- "seatClassType": 100,
46
- "id": 8649791,
47
- "positionTop": 270,
48
- "positionLeft": 180,
49
- "displayName": "4",
50
- "rowName": "J",
51
- "rowNo": 1,
52
- "refSeatClassID": 158,
53
- "blockId": 0,
54
- "refChannelGroupId": 25351
55
- },
56
- {
57
- "isSold": true,
58
- "seatClassType": 100,
59
- "id": 8649790,
60
- "positionTop": 270,
61
- "positionLeft": 150,
62
- "displayName": "5",
63
- "rowName": "J",
64
- "rowNo": 1,
65
- "refSeatClassID": 158,
66
- "blockId": 0,
67
- "refChannelGroupId": 25351
68
- },
69
- {
70
- "isSold": false,
71
- "seatClassType": 100,
72
- "id": 8649789,
73
- "positionTop": 270,
74
- "positionLeft": 120,
75
- "displayName": "6",
76
- "rowName": "J",
77
- "rowNo": 1,
78
- "refSeatClassID": 158,
79
- "blockId": 0,
80
- "refChannelGroupId": 25351
81
- },
82
- {
83
- "isSold": true,
84
- "seatClassType": 100,
85
- "id": 8649788,
86
- "positionTop": 270,
87
- "positionLeft": 90,
88
- "displayName": "7",
89
- "rowName": "J",
90
- "rowNo": 1,
91
- "refSeatClassID": 158,
92
- "blockId": 0,
93
- "refChannelGroupId": 25351
94
- },
95
- {
96
- "isSold": false,
97
- "seatClassType": 100,
98
- "id": 8649787,
99
- "positionTop": 270,
100
- "positionLeft": 60,
101
- "displayName": "8",
102
- "rowName": "J",
103
- "rowNo": 1,
104
- "refSeatClassID": 158,
105
- "blockId": 0,
106
- "refChannelGroupId": 25351
107
- },
108
- {
109
- "isSold": false,
110
- "seatClassType": 100,
111
- "id": 8649786,
112
- "positionTop": 270,
113
- "positionLeft": 30,
114
- "displayName": "9",
115
- "rowName": "J",
116
- "rowNo": 1,
117
- "refSeatClassID": 158,
118
- "blockId": 0,
119
- "refChannelGroupId": 25351
120
- },
121
- {
122
- "isSold": false,
123
- "seatClassType": 100,
124
- "id": 8649785,
125
- "positionTop": 270,
126
- "positionLeft": 0,
127
- "displayName": "10",
128
- "rowName": "J",
129
- "rowNo": 1,
130
- "refSeatClassID": 158,
131
- "blockId": 0,
132
- "refChannelGroupId": 25351
133
- },
134
- {
135
- "isSold": false,
136
- "seatClassType": 100,
137
- "id": 8649784,
138
- "positionTop": 240,
139
- "positionLeft": 270,
140
- "displayName": "11",
141
- "rowName": "I",
142
- "rowNo": 2,
143
- "refSeatClassID": 158,
144
- "blockId": 0,
145
- "refChannelGroupId": 25351
146
- },
147
- {
148
- "isSold": false,
149
- "seatClassType": 100,
150
- "id": 8649783,
151
- "positionTop": 240,
152
- "positionLeft": 240,
153
- "displayName": "12",
154
- "rowName": "I",
155
- "rowNo": 2,
156
- "refSeatClassID": 158,
157
- "blockId": 0,
158
- "refChannelGroupId": 25351
159
- },
160
- {
161
- "isSold": false,
162
- "seatClassType": 100,
163
- "id": 8649782,
164
- "positionTop": 240,
165
- "positionLeft": 210,
166
- "displayName": "13",
167
- "rowName": "I",
168
- "rowNo": 2,
169
- "refSeatClassID": 158,
170
- "blockId": 0,
171
- "refChannelGroupId": 25351
172
- },
173
- {
174
- "isSold": false,
175
- "seatClassType": 100,
176
- "id": 8649756,
177
- "positionTop": 180,
178
- "positionLeft": 30,
179
- "displayName": "39",
180
- "rowName": "G",
181
- "rowNo": 4,
182
- "refSeatClassID": 158,
183
- "blockId": 0,
184
- "refChannelGroupId": 25351
185
- },
186
- {
187
- "isSold": false,
188
- "seatClassType": 100,
189
- "id": 8649757,
190
- "positionTop": 180,
191
- "positionLeft": 60,
192
- "displayName": "38",
193
- "rowName": "G",
194
- "rowNo": 4,
195
- "refSeatClassID": 158,
196
- "blockId": 0,
197
- "refChannelGroupId": 25351
198
- },
199
- {
200
- "isSold": false,
201
- "seatClassType": 100,
202
- "id": 8649758,
203
- "positionTop": 180,
204
- "positionLeft": 90,
205
- "displayName": "37",
206
- "rowName": "G",
207
- "rowNo": 4,
208
- "refSeatClassID": 158,
209
- "blockId": 0,
210
- "refChannelGroupId": 25351
211
- },
212
- {
213
- "isSold": false,
214
- "seatClassType": 100,
215
- "id": 8649759,
216
- "positionTop": 180,
217
- "positionLeft": 120,
218
- "displayName": "36",
219
- "rowName": "G",
220
- "rowNo": 4,
221
- "refSeatClassID": 158,
222
- "blockId": 0,
223
- "refChannelGroupId": 25351
224
- },
225
- {
226
- "isSold": false,
227
- "seatClassType": 100,
228
- "id": 8649760,
229
- "positionTop": 180,
230
- "positionLeft": 150,
231
- "displayName": "35",
232
- "rowName": "G",
233
- "rowNo": 4,
234
- "refSeatClassID": 158,
235
- "blockId": 0,
236
- "refChannelGroupId": 25351
237
- },
238
- {
239
- "isSold": false,
240
- "seatClassType": 100,
241
- "id": 8649761,
242
- "positionTop": 180,
243
- "positionLeft": 180,
244
- "displayName": "34",
245
- "rowName": "G",
246
- "rowNo": 4,
247
- "refSeatClassID": 158,
248
- "blockId": 0,
249
- "refChannelGroupId": 25351
250
- },
251
- {
252
- "isSold": false,
253
- "seatClassType": 100,
254
- "id": 8649762,
255
- "positionTop": 180,
256
- "positionLeft": 210,
257
- "displayName": "33",
258
- "rowName": "G",
259
- "rowNo": 4,
260
- "refSeatClassID": 158,
261
- "blockId": 0,
262
- "refChannelGroupId": 25351
263
- },
264
- {
265
- "isSold": false,
266
- "seatClassType": 100,
267
- "id": 8649763,
268
- "positionTop": 180,
269
- "positionLeft": 240,
270
- "displayName": "32",
271
- "rowName": "G",
272
- "rowNo": 4,
273
- "refSeatClassID": 158,
274
- "blockId": 0,
275
- "refChannelGroupId": 25351
276
- },
277
- {
278
- "isSold": false,
279
- "seatClassType": 100,
280
- "id": 8649764,
281
- "positionTop": 180,
282
- "positionLeft": 270,
283
- "displayName": "31",
284
- "rowName": "G",
285
- "rowNo": 4,
286
- "refSeatClassID": 158,
287
- "blockId": 0,
288
- "refChannelGroupId": 25351
289
- },
290
- {
291
- "isSold": false,
292
- "seatClassType": 100,
293
- "id": 8649765,
294
- "positionTop": 210,
295
- "positionLeft": 0,
296
- "displayName": "30",
297
- "rowName": "H",
298
- "rowNo": 3,
299
- "refSeatClassID": 158,
300
- "blockId": 0,
301
- "refChannelGroupId": 25351
302
- },
303
- {
304
- "isSold": false,
305
- "seatClassType": 100,
306
- "id": 8649766,
307
- "positionTop": 210,
308
- "positionLeft": 30,
309
- "displayName": "29",
310
- "rowName": "H",
311
- "rowNo": 3,
312
- "refSeatClassID": 158,
313
- "blockId": 0,
314
- "refChannelGroupId": 25351
315
- },
316
- {
317
- "isSold": false,
318
- "seatClassType": 100,
319
- "id": 8649767,
320
- "positionTop": 210,
321
- "positionLeft": 60,
322
- "displayName": "28",
323
- "rowName": "H",
324
- "rowNo": 3,
325
- "refSeatClassID": 158,
326
- "blockId": 0,
327
- "refChannelGroupId": 25351
328
- },
329
- {
330
- "isSold": false,
331
- "seatClassType": 100,
332
- "id": 8649768,
333
- "positionTop": 210,
334
- "positionLeft": 90,
335
- "displayName": "27",
336
- "rowName": "H",
337
- "rowNo": 3,
338
- "refSeatClassID": 158,
339
- "blockId": 0,
340
- "refChannelGroupId": 25351
341
- },
342
- {
343
- "isSold": false,
344
- "seatClassType": 100,
345
- "id": 8649769,
346
- "positionTop": 210,
347
- "positionLeft": 120,
348
- "displayName": "26",
349
- "rowName": "H",
350
- "rowNo": 3,
351
- "refSeatClassID": 158,
352
- "blockId": 0,
353
- "refChannelGroupId": 25351
354
- },
355
- {
356
- "isSold": false,
357
- "seatClassType": 100,
358
- "id": 8649770,
359
- "positionTop": 210,
360
- "positionLeft": 150,
361
- "displayName": "25",
362
- "rowName": "H",
363
- "rowNo": 3,
364
- "refSeatClassID": 158,
365
- "blockId": 0,
366
- "refChannelGroupId": 25351
367
- },
368
- {
369
- "isSold": false,
370
- "seatClassType": 100,
371
- "id": 8649771,
372
- "positionTop": 210,
373
- "positionLeft": 180,
374
- "displayName": "24",
375
- "rowName": "H",
376
- "rowNo": 3,
377
- "refSeatClassID": 158,
378
- "blockId": 0,
379
- "refChannelGroupId": 25351
380
- },
381
- {
382
- "isSold": false,
383
- "seatClassType": 100,
384
- "id": 8649772,
385
- "positionTop": 210,
386
- "positionLeft": 210,
387
- "displayName": "23",
388
- "rowName": "H",
389
- "rowNo": 3,
390
- "refSeatClassID": 158,
391
- "blockId": 0,
392
- "refChannelGroupId": 25351
393
- },
394
- {
395
- "isSold": false,
396
- "seatClassType": 100,
397
- "id": 8649773,
398
- "positionTop": 210,
399
- "positionLeft": 240,
400
- "displayName": "22",
401
- "rowName": "H",
402
- "rowNo": 3,
403
- "refSeatClassID": 158,
404
- "blockId": 0,
405
- "refChannelGroupId": 25351
406
- },
407
- {
408
- "isSold": false,
409
- "seatClassType": 100,
410
- "id": 8649774,
411
- "positionTop": 210,
412
- "positionLeft": 270,
413
- "displayName": "21",
414
- "rowName": "H",
415
- "rowNo": 3,
416
- "refSeatClassID": 158,
417
- "blockId": 0,
418
- "refChannelGroupId": 25351
419
- },
420
- {
421
- "isSold": false,
422
- "seatClassType": 100,
423
- "id": 8649775,
424
- "positionTop": 240,
425
- "positionLeft": 0,
426
- "displayName": "20",
427
- "rowName": "I",
428
- "rowNo": 2,
429
- "refSeatClassID": 158,
430
- "blockId": 0,
431
- "refChannelGroupId": 25351
432
- },
433
- {
434
- "isSold": false,
435
- "seatClassType": 100,
436
- "id": 8649776,
437
- "positionTop": 240,
438
- "positionLeft": 30,
439
- "displayName": "19",
440
- "rowName": "I",
441
- "rowNo": 2,
442
- "refSeatClassID": 158,
443
- "blockId": 0,
444
- "refChannelGroupId": 25351
445
- },
446
- {
447
- "isSold": false,
448
- "seatClassType": 100,
449
- "id": 8649777,
450
- "positionTop": 240,
451
- "positionLeft": 60,
452
- "displayName": "18",
453
- "rowName": "I",
454
- "rowNo": 2,
455
- "refSeatClassID": 158,
456
- "blockId": 0,
457
- "refChannelGroupId": 25351
458
- },
459
- {
460
- "isSold": false,
461
- "seatClassType": 100,
462
- "id": 8649778,
463
- "positionTop": 240,
464
- "positionLeft": 90,
465
- "displayName": "17",
466
- "rowName": "I",
467
- "rowNo": 2,
468
- "refSeatClassID": 158,
469
- "blockId": 0,
470
- "refChannelGroupId": 25351
471
- },
472
- {
473
- "isSold": false,
474
- "seatClassType": 100,
475
- "id": 8649779,
476
- "positionTop": 240,
477
- "positionLeft": 120,
478
- "displayName": "16",
479
- "rowName": "I",
480
- "rowNo": 2,
481
- "refSeatClassID": 158,
482
- "blockId": 0,
483
- "refChannelGroupId": 25351
484
- },
485
- {
486
- "isSold": false,
487
- "seatClassType": 100,
488
- "id": 8649780,
489
- "positionTop": 240,
490
- "positionLeft": 150,
491
- "displayName": "15",
492
- "rowName": "I",
493
- "rowNo": 2,
494
- "refSeatClassID": 158,
495
- "blockId": 0,
496
- "refChannelGroupId": 25351
497
- },
498
- {
499
- "isSold": false,
500
- "seatClassType": 100,
501
- "id": 8649781,
502
- "positionTop": 240,
503
- "positionLeft": 180,
504
- "displayName": "14",
505
- "rowName": "I",
506
- "rowNo": 2,
507
- "refSeatClassID": 158,
508
- "blockId": 0,
509
- "refChannelGroupId": 25351
510
- },
511
- {
512
- "isSold": false,
513
- "seatClassType": 100,
514
- "id": 8649704,
515
- "positionTop": 0,
516
- "positionLeft": 270,
517
- "displayName": "91",
518
- "rowName": "A",
519
- "rowNo": 10,
520
- "refSeatClassID": 158,
521
- "blockId": 0,
522
- "refChannelGroupId": 25351
523
- },
524
- {
525
- "isSold": false,
526
- "seatClassType": 100,
527
- "id": 8649705,
528
- "positionTop": 30,
529
- "positionLeft": 0,
530
- "displayName": "90",
531
- "rowName": "B",
532
- "rowNo": 9,
533
- "refSeatClassID": 158,
534
- "blockId": 0,
535
- "refChannelGroupId": 25351
536
- },
537
- {
538
- "isSold": false,
539
- "seatClassType": 100,
540
- "id": 8649706,
541
- "positionTop": 30,
542
- "positionLeft": 30,
543
- "displayName": "89",
544
- "rowName": "B",
545
- "rowNo": 9,
546
- "refSeatClassID": 158,
547
- "blockId": 0,
548
- "refChannelGroupId": 25351
549
- },
550
- {
551
- "isSold": false,
552
- "seatClassType": 100,
553
- "id": 8649707,
554
- "positionTop": 30,
555
- "positionLeft": 60,
556
- "displayName": "88",
557
- "rowName": "B",
558
- "rowNo": 9,
559
- "refSeatClassID": 158,
560
- "blockId": 0,
561
- "refChannelGroupId": 25351
562
- },
563
- {
564
- "isSold": false,
565
- "seatClassType": 100,
566
- "id": 8649708,
567
- "positionTop": 30,
568
- "positionLeft": 90,
569
- "displayName": "87",
570
- "rowName": "B",
571
- "rowNo": 9,
572
- "refSeatClassID": 158,
573
- "blockId": 0,
574
- "refChannelGroupId": 25351
575
- },
576
- {
577
- "isSold": false,
578
- "seatClassType": 100,
579
- "id": 8649709,
580
- "positionTop": 30,
581
- "positionLeft": 120,
582
- "displayName": "86",
583
- "rowName": "B",
584
- "rowNo": 9,
585
- "refSeatClassID": 158,
586
- "blockId": 0,
587
- "refChannelGroupId": 25351
588
- },
589
- {
590
- "isSold": false,
591
- "seatClassType": 100,
592
- "id": 8649710,
593
- "positionTop": 30,
594
- "positionLeft": 150,
595
- "displayName": "85",
596
- "rowName": "B",
597
- "rowNo": 9,
598
- "refSeatClassID": 158,
599
- "blockId": 0,
600
- "refChannelGroupId": 25351
601
- },
602
- {
603
- "isSold": false,
604
- "seatClassType": 100,
605
- "id": 8649711,
606
- "positionTop": 30,
607
- "positionLeft": 180,
608
- "displayName": "84",
609
- "rowName": "B",
610
- "rowNo": 9,
611
- "refSeatClassID": 158,
612
- "blockId": 0,
613
- "refChannelGroupId": 25351
614
- },
615
- {
616
- "isSold": false,
617
- "seatClassType": 100,
618
- "id": 8649712,
619
- "positionTop": 30,
620
- "positionLeft": 210,
621
- "displayName": "83",
622
- "rowName": "B",
623
- "rowNo": 9,
624
- "refSeatClassID": 158,
625
- "blockId": 0,
626
- "refChannelGroupId": 25351
627
- },
628
- {
629
- "isSold": false,
630
- "seatClassType": 100,
631
- "id": 8649713,
632
- "positionTop": 30,
633
- "positionLeft": 240,
634
- "displayName": "82",
635
- "rowName": "B",
636
- "rowNo": 9,
637
- "refSeatClassID": 158,
638
- "blockId": 0,
639
- "refChannelGroupId": 25351
640
- },
641
- {
642
- "isSold": false,
643
- "seatClassType": 100,
644
- "id": 8649714,
645
- "positionTop": 30,
646
- "positionLeft": 270,
647
- "displayName": "81",
648
- "rowName": "B",
649
- "rowNo": 9,
650
- "refSeatClassID": 158,
651
- "blockId": 0,
652
- "refChannelGroupId": 25351
653
- },
654
- {
655
- "isSold": false,
656
- "seatClassType": 100,
657
- "id": 8649715,
658
- "positionTop": 60,
659
- "positionLeft": 0,
660
- "displayName": "80",
661
- "rowName": "C",
662
- "rowNo": 8,
663
- "refSeatClassID": 158,
664
- "blockId": 0,
665
- "refChannelGroupId": 25351
666
- },
667
- {
668
- "isSold": false,
669
- "seatClassType": 100,
670
- "id": 8649716,
671
- "positionTop": 60,
672
- "positionLeft": 30,
673
- "displayName": "79",
674
- "rowName": "C",
675
- "rowNo": 8,
676
- "refSeatClassID": 158,
677
- "blockId": 0,
678
- "refChannelGroupId": 25351
679
- },
680
- {
681
- "isSold": false,
682
- "seatClassType": 100,
683
- "id": 8649717,
684
- "positionTop": 60,
685
- "positionLeft": 60,
686
- "displayName": "78",
687
- "rowName": "C",
688
- "rowNo": 8,
689
- "refSeatClassID": 158,
690
- "blockId": 0,
691
- "refChannelGroupId": 25351
692
- },
693
- {
694
- "isSold": false,
695
- "seatClassType": 100,
696
- "id": 8649718,
697
- "positionTop": 60,
698
- "positionLeft": 90,
699
- "displayName": "77",
700
- "rowName": "C",
701
- "rowNo": 8,
702
- "refSeatClassID": 158,
703
- "blockId": 0,
704
- "refChannelGroupId": 25351
705
- },
706
- {
707
- "isSold": false,
708
- "seatClassType": 100,
709
- "id": 8649719,
710
- "positionTop": 60,
711
- "positionLeft": 120,
712
- "displayName": "76",
713
- "rowName": "C",
714
- "rowNo": 8,
715
- "refSeatClassID": 158,
716
- "blockId": 0,
717
- "refChannelGroupId": 25351
718
- },
719
- {
720
- "isSold": false,
721
- "seatClassType": 100,
722
- "id": 8649720,
723
- "positionTop": 60,
724
- "positionLeft": 150,
725
- "displayName": "75",
726
- "rowName": "C",
727
- "rowNo": 8,
728
- "refSeatClassID": 158,
729
- "blockId": 0,
730
- "refChannelGroupId": 25351
731
- },
732
- {
733
- "isSold": false,
734
- "seatClassType": 100,
735
- "id": 8649721,
736
- "positionTop": 60,
737
- "positionLeft": 180,
738
- "displayName": "74",
739
- "rowName": "C",
740
- "rowNo": 8,
741
- "refSeatClassID": 158,
742
- "blockId": 0,
743
- "refChannelGroupId": 25351
744
- },
745
- {
746
- "isSold": false,
747
- "seatClassType": 100,
748
- "id": 8649722,
749
- "positionTop": 60,
750
- "positionLeft": 210,
751
- "displayName": "73",
752
- "rowName": "C",
753
- "rowNo": 8,
754
- "refSeatClassID": 158,
755
- "blockId": 0,
756
- "refChannelGroupId": 25351
757
- },
758
- {
759
- "isSold": false,
760
- "seatClassType": 100,
761
- "id": 8649723,
762
- "positionTop": 60,
763
- "positionLeft": 240,
764
- "displayName": "72",
765
- "rowName": "C",
766
- "rowNo": 8,
767
- "refSeatClassID": 158,
768
- "blockId": 0,
769
- "refChannelGroupId": 25351
770
- },
771
- {
772
- "isSold": false,
773
- "seatClassType": 100,
774
- "id": 8649724,
775
- "positionTop": 60,
776
- "positionLeft": 270,
777
- "displayName": "71",
778
- "rowName": "C",
779
- "rowNo": 8,
780
- "refSeatClassID": 158,
781
- "blockId": 0,
782
- "refChannelGroupId": 25351
783
- },
784
- {
785
- "isSold": false,
786
- "seatClassType": 100,
787
- "id": 8649725,
788
- "positionTop": 90,
789
- "positionLeft": 0,
790
- "displayName": "70",
791
- "rowName": "D",
792
- "rowNo": 7,
793
- "refSeatClassID": 158,
794
- "blockId": 0,
795
- "refChannelGroupId": 25351
796
- },
797
- {
798
- "isSold": false,
799
- "seatClassType": 100,
800
- "id": 8649726,
801
- "positionTop": 90,
802
- "positionLeft": 30,
803
- "displayName": "69",
804
- "rowName": "D",
805
- "rowNo": 7,
806
- "refSeatClassID": 158,
807
- "blockId": 0,
808
- "refChannelGroupId": 25351
809
- },
810
- {
811
- "isSold": false,
812
- "seatClassType": 100,
813
- "id": 8649727,
814
- "positionTop": 90,
815
- "positionLeft": 60,
816
- "displayName": "68",
817
- "rowName": "D",
818
- "rowNo": 7,
819
- "refSeatClassID": 158,
820
- "blockId": 0,
821
- "refChannelGroupId": 25351
822
- },
823
- {
824
- "isSold": false,
825
- "seatClassType": 100,
826
- "id": 8649728,
827
- "positionTop": 90,
828
- "positionLeft": 90,
829
- "displayName": "67",
830
- "rowName": "D",
831
- "rowNo": 7,
832
- "refSeatClassID": 158,
833
- "blockId": 0,
834
- "refChannelGroupId": 25351
835
- },
836
- {
837
- "isSold": false,
838
- "seatClassType": 100,
839
- "id": 8649729,
840
- "positionTop": 90,
841
- "positionLeft": 120,
842
- "displayName": "66",
843
- "rowName": "D",
844
- "rowNo": 7,
845
- "refSeatClassID": 158,
846
- "blockId": 0,
847
- "refChannelGroupId": 25351
848
- },
849
- {
850
- "isSold": false,
851
- "seatClassType": 100,
852
- "id": 8649730,
853
- "positionTop": 90,
854
- "positionLeft": 150,
855
- "displayName": "65",
856
- "rowName": "D",
857
- "rowNo": 7,
858
- "refSeatClassID": 158,
859
- "blockId": 0,
860
- "refChannelGroupId": 25351
861
- },
862
- {
863
- "isSold": false,
864
- "seatClassType": 100,
865
- "id": 8649731,
866
- "positionTop": 90,
867
- "positionLeft": 180,
868
- "displayName": "64",
869
- "rowName": "D",
870
- "rowNo": 7,
871
- "refSeatClassID": 158,
872
- "blockId": 0,
873
- "refChannelGroupId": 25351
874
- },
875
- {
876
- "isSold": false,
877
- "seatClassType": 100,
878
- "id": 8649732,
879
- "positionTop": 90,
880
- "positionLeft": 210,
881
- "displayName": "63",
882
- "rowName": "D",
883
- "rowNo": 7,
884
- "refSeatClassID": 158,
885
- "blockId": 0,
886
- "refChannelGroupId": 25351
887
- },
888
- {
889
- "isSold": false,
890
- "seatClassType": 100,
891
- "id": 8649733,
892
- "positionTop": 90,
893
- "positionLeft": 240,
894
- "displayName": "62",
895
- "rowName": "D",
896
- "rowNo": 7,
897
- "refSeatClassID": 158,
898
- "blockId": 0,
899
- "refChannelGroupId": 25351
900
- },
901
- {
902
- "isSold": false,
903
- "seatClassType": 100,
904
- "id": 8649734,
905
- "positionTop": 90,
906
- "positionLeft": 270,
907
- "displayName": "61",
908
- "rowName": "D",
909
- "rowNo": 7,
910
- "refSeatClassID": 158,
911
- "blockId": 0,
912
- "refChannelGroupId": 25351
913
- },
914
- {
915
- "isSold": false,
916
- "seatClassType": 100,
917
- "id": 8649735,
918
- "positionTop": 120,
919
- "positionLeft": 0,
920
- "displayName": "60",
921
- "rowName": "E",
922
- "rowNo": 6,
923
- "refSeatClassID": 158,
924
- "blockId": 0,
925
- "refChannelGroupId": 25351
926
- },
927
- {
928
- "isSold": false,
929
- "seatClassType": 100,
930
- "id": 8649736,
931
- "positionTop": 120,
932
- "positionLeft": 30,
933
- "displayName": "59",
934
- "rowName": "E",
935
- "rowNo": 6,
936
- "refSeatClassID": 158,
937
- "blockId": 0,
938
- "refChannelGroupId": 25351
939
- },
940
- {
941
- "isSold": false,
942
- "seatClassType": 100,
943
- "id": 8649737,
944
- "positionTop": 120,
945
- "positionLeft": 60,
946
- "displayName": "58",
947
- "rowName": "E",
948
- "rowNo": 6,
949
- "refSeatClassID": 158,
950
- "blockId": 0,
951
- "refChannelGroupId": 25351
952
- },
953
- {
954
- "isSold": false,
955
- "seatClassType": 100,
956
- "id": 8649738,
957
- "positionTop": 120,
958
- "positionLeft": 90,
959
- "displayName": "57",
960
- "rowName": "E",
961
- "rowNo": 6,
962
- "refSeatClassID": 158,
963
- "blockId": 0,
964
- "refChannelGroupId": 25351
965
- },
966
- {
967
- "isSold": false,
968
- "seatClassType": 100,
969
- "id": 8649739,
970
- "positionTop": 120,
971
- "positionLeft": 120,
972
- "displayName": "56",
973
- "rowName": "E",
974
- "rowNo": 6,
975
- "refSeatClassID": 158,
976
- "blockId": 0,
977
- "refChannelGroupId": 25351
978
- },
979
- {
980
- "isSold": false,
981
- "seatClassType": 100,
982
- "id": 8649740,
983
- "positionTop": 120,
984
- "positionLeft": 150,
985
- "displayName": "55",
986
- "rowName": "E",
987
- "rowNo": 6,
988
- "refSeatClassID": 158,
989
- "blockId": 0,
990
- "refChannelGroupId": 25351
991
- },
992
- {
993
- "isSold": false,
994
- "seatClassType": 100,
995
- "id": 8649741,
996
- "positionTop": 120,
997
- "positionLeft": 180,
998
- "displayName": "54",
999
- "rowName": "E",
1000
- "rowNo": 6,
1001
- "refSeatClassID": 158,
1002
- "blockId": 0,
1003
- "refChannelGroupId": 25351
1004
- },
1005
- {
1006
- "isSold": false,
1007
- "seatClassType": 100,
1008
- "id": 8649742,
1009
- "positionTop": 120,
1010
- "positionLeft": 210,
1011
- "displayName": "53",
1012
- "rowName": "E",
1013
- "rowNo": 6,
1014
- "refSeatClassID": 158,
1015
- "blockId": 0,
1016
- "refChannelGroupId": 25351
1017
- },
1018
- {
1019
- "isSold": false,
1020
- "seatClassType": 100,
1021
- "id": 8649743,
1022
- "positionTop": 120,
1023
- "positionLeft": 240,
1024
- "displayName": "52",
1025
- "rowName": "E",
1026
- "rowNo": 6,
1027
- "refSeatClassID": 158,
1028
- "blockId": 0,
1029
- "refChannelGroupId": 25351
1030
- },
1031
- {
1032
- "isSold": false,
1033
- "seatClassType": 100,
1034
- "id": 8649744,
1035
- "positionTop": 120,
1036
- "positionLeft": 270,
1037
- "displayName": "51",
1038
- "rowName": "E",
1039
- "rowNo": 6,
1040
- "refSeatClassID": 158,
1041
- "blockId": 0,
1042
- "refChannelGroupId": 25351
1043
- },
1044
- {
1045
- "isSold": false,
1046
- "seatClassType": 100,
1047
- "id": 8649745,
1048
- "positionTop": 150,
1049
- "positionLeft": 0,
1050
- "displayName": "50",
1051
- "rowName": "F",
1052
- "rowNo": 5,
1053
- "refSeatClassID": 158,
1054
- "blockId": 0,
1055
- "refChannelGroupId": 25351
1056
- },
1057
- {
1058
- "isSold": false,
1059
- "seatClassType": 100,
1060
- "id": 8649746,
1061
- "positionTop": 150,
1062
- "positionLeft": 30,
1063
- "displayName": "49",
1064
- "rowName": "F",
1065
- "rowNo": 5,
1066
- "refSeatClassID": 158,
1067
- "blockId": 0,
1068
- "refChannelGroupId": 25351
1069
- },
1070
- {
1071
- "isSold": false,
1072
- "seatClassType": 100,
1073
- "id": 8649747,
1074
- "positionTop": 150,
1075
- "positionLeft": 60,
1076
- "displayName": "48",
1077
- "rowName": "F",
1078
- "rowNo": 5,
1079
- "refSeatClassID": 158,
1080
- "blockId": 0,
1081
- "refChannelGroupId": 25351
1082
- },
1083
- {
1084
- "isSold": false,
1085
- "seatClassType": 100,
1086
- "id": 8649748,
1087
- "positionTop": 150,
1088
- "positionLeft": 90,
1089
- "displayName": "47",
1090
- "rowName": "F",
1091
- "rowNo": 5,
1092
- "refSeatClassID": 158,
1093
- "blockId": 0,
1094
- "refChannelGroupId": 25351
1095
- },
1096
- {
1097
- "isSold": false,
1098
- "seatClassType": 100,
1099
- "id": 8649749,
1100
- "positionTop": 150,
1101
- "positionLeft": 120,
1102
- "displayName": "46",
1103
- "rowName": "F",
1104
- "rowNo": 5,
1105
- "refSeatClassID": 158,
1106
- "blockId": 0,
1107
- "refChannelGroupId": 25351
1108
- },
1109
- {
1110
- "isSold": false,
1111
- "seatClassType": 100,
1112
- "id": 8649750,
1113
- "positionTop": 150,
1114
- "positionLeft": 150,
1115
- "displayName": "45",
1116
- "rowName": "F",
1117
- "rowNo": 5,
1118
- "refSeatClassID": 158,
1119
- "blockId": 0,
1120
- "refChannelGroupId": 25351
1121
- },
1122
- {
1123
- "isSold": false,
1124
- "seatClassType": 100,
1125
- "id": 8649751,
1126
- "positionTop": 150,
1127
- "positionLeft": 180,
1128
- "displayName": "44",
1129
- "rowName": "F",
1130
- "rowNo": 5,
1131
- "refSeatClassID": 158,
1132
- "blockId": 0,
1133
- "refChannelGroupId": 25351
1134
- },
1135
- {
1136
- "isSold": false,
1137
- "seatClassType": 100,
1138
- "id": 8649752,
1139
- "positionTop": 150,
1140
- "positionLeft": 210,
1141
- "displayName": "43",
1142
- "rowName": "F",
1143
- "rowNo": 5,
1144
- "refSeatClassID": 158,
1145
- "blockId": 0,
1146
- "refChannelGroupId": 25351
1147
- },
1148
- {
1149
- "isSold": false,
1150
- "seatClassType": 100,
1151
- "id": 8649753,
1152
- "positionTop": 150,
1153
- "positionLeft": 240,
1154
- "displayName": "42",
1155
- "rowName": "F",
1156
- "rowNo": 5,
1157
- "refSeatClassID": 158,
1158
- "blockId": 0,
1159
- "refChannelGroupId": 25351
1160
- },
1161
- {
1162
- "isSold": false,
1163
- "seatClassType": 100,
1164
- "id": 8649754,
1165
- "positionTop": 150,
1166
- "positionLeft": 270,
1167
- "displayName": "41",
1168
- "rowName": "F",
1169
- "rowNo": 5,
1170
- "refSeatClassID": 158,
1171
- "blockId": 0,
1172
- "refChannelGroupId": 25351
1173
- },
1174
- {
1175
- "isSold": false,
1176
- "seatClassType": 100,
1177
- "id": 8649755,
1178
- "positionTop": 180,
1179
- "positionLeft": 0,
1180
- "displayName": "40",
1181
- "rowName": "G",
1182
- "rowNo": 4,
1183
- "refSeatClassID": 158,
1184
- "blockId": 0,
1185
- "refChannelGroupId": 25351
1186
- },
1187
- {
1188
- "isSold": false,
1189
- "seatClassType": 100,
1190
- "id": 8649695,
1191
- "positionTop": 0,
1192
- "positionLeft": 0,
1193
- "displayName": "100",
1194
- "rowName": "A",
1195
- "rowNo": 10,
1196
- "refSeatClassID": 158,
1197
- "blockId": 0,
1198
- "refChannelGroupId": 25351
1199
- },
1200
- {
1201
- "isSold": true,
1202
- "seatClassType": 100,
1203
- "id": 8649696,
1204
- "positionTop": 0,
1205
- "positionLeft": 30,
1206
- "displayName": "99",
1207
- "rowName": "A",
1208
- "rowNo": 10,
1209
- "refSeatClassID": 158,
1210
- "blockId": 0,
1211
- "refChannelGroupId": 25351
1212
- },
1213
- {
1214
- "isSold": false,
1215
- "seatClassType": 100,
1216
- "id": 8649697,
1217
- "positionTop": 0,
1218
- "positionLeft": 60,
1219
- "displayName": "98",
1220
- "rowName": "A",
1221
- "rowNo": 10,
1222
- "refSeatClassID": 158,
1223
- "blockId": 0,
1224
- "refChannelGroupId": 25351
1225
- },
1226
- {
1227
- "isSold": false,
1228
- "seatClassType": 100,
1229
- "id": 8649698,
1230
- "positionTop": 0,
1231
- "positionLeft": 90,
1232
- "displayName": "97",
1233
- "rowName": "A",
1234
- "rowNo": 10,
1235
- "refSeatClassID": 158,
1236
- "blockId": 0,
1237
- "refChannelGroupId": 25351
1238
- },
1239
- {
1240
- "isSold": false,
1241
- "seatClassType": 100,
1242
- "id": 8649699,
1243
- "positionTop": 0,
1244
- "positionLeft": 120,
1245
- "displayName": "96",
1246
- "rowName": "A",
1247
- "rowNo": 10,
1248
- "refSeatClassID": 158,
1249
- "blockId": 0,
1250
- "refChannelGroupId": 25351
1251
- },
1252
- {
1253
- "isSold": false,
1254
- "seatClassType": 100,
1255
- "id": 8649700,
1256
- "positionTop": 0,
1257
- "positionLeft": 150,
1258
- "displayName": "95",
1259
- "rowName": "A",
1260
- "rowNo": 10,
1261
- "refSeatClassID": 158,
1262
- "blockId": 0,
1263
- "refChannelGroupId": 25351
1264
- },
1265
- {
1266
- "isSold": false,
1267
- "seatClassType": 100,
1268
- "id": 8649701,
1269
- "positionTop": 0,
1270
- "positionLeft": 180,
1271
- "displayName": "94",
1272
- "rowName": "A",
1273
- "rowNo": 10,
1274
- "refSeatClassID": 158,
1275
- "blockId": 0,
1276
- "refChannelGroupId": 25351
1277
- },
1278
- {
1279
- "isSold": false,
1280
- "seatClassType": 100,
1281
- "id": 8649702,
1282
- "positionTop": 0,
1283
- "positionLeft": 210,
1284
- "displayName": "93",
1285
- "rowName": "A",
1286
- "rowNo": 10,
1287
- "refSeatClassID": 158,
1288
- "blockId": 0,
1289
- "refChannelGroupId": 25351
1290
- },
1291
- {
1292
- "isSold": false,
1293
- "seatClassType": 100,
1294
- "id": 8649703,
1295
- "positionTop": 0,
1296
- "positionLeft": 240,
1297
- "displayName": "92",
1298
- "rowName": "A",
1299
- "rowNo": 10,
1300
- "refSeatClassID": 158,
1301
- "blockId": 0,
1302
- "refChannelGroupId": 25351
1303
- }
1304
- ],
1305
- "isError": false,
1306
- "resultCode": 0
1307
- }