-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsap_center_at_san_jose.json
1542 lines (1542 loc) · 64 KB
/
sap_center_at_san_jose.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "SAP Center at San Jose",
"img_link": "https://mapsapi.tmol.io/maps/geometry/image/33/96/339610",
"svg_data": {
"height": 7680,
"image": {
"height": 768,
"type": "SVG",
"url": "33/96/339610",
"width": 1024,
"x": 0,
"y": 0
},
"segments": [
{
"name": "109",
"shapes": [
{
"bounds": [
"2351,3085 2307,3244 2288,3352 2280,3415 2272,3567 2272,3605 2120,3605 2120,3605 2120,3838 3450,3838 3450,3568 3412,3567 3310,3566 3319,3478 3327,3440 3335,3416 3335,3416 2351,3085"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 180,
"styleId": "troot",
"text": "109",
"width": 0,
"x": 2828,
"y": 3435
}
],
"mode": "HIDE",
"path": "M2351.18,3085.46C2333.76,3137.97,2319.66,3191.25,2307.95,3244.73C2300.14,3280.37,2293.62,3316.19,2288.38,3352.09C2285.28,3373.35,2282.63,3394.66,2280.45,3415.98C2275.25,3466.61,2272.63,3517.34,2272.63,3567.95C2272.63,3567.95,2272.63,3586.61,2272.62,3605.27C2221.98,3605.27,2171.34,3605.27,2120.7,3605.27L2120.7,3605.27L2120.7,3838.72L3450.69,3838.71L3450.71,3568.4L3412.7,3567.86C3361.64,3567.37,3310.58,3566.87,3310.58,3566.87C3310.74,3536.74,3313.73,3507.01,3319.3,3478.08C3321.7,3465.63,3324.58,3453.23,3327.92,3440.92C3330.38,3432.67,3332.84,3424.41,3335.3,3416.16L3335.3,3416.16C3007.34,3305.95,2679.38,3195.75,2351.18,3085.46Z"
}
]
},
{
"name": "110",
"shapes": [
{
"bounds": [
"2665,2314 2405,2627 2532,2707 2534,2709 2512,2742 2351,3085 3335,3416 3351,3373 3393,3291 3424,3246 3447,3217 3447,3217 3462,3201 3498,3164 3498,3164 2665,2314"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 180,
"styleId": "troot",
"text": "110",
"width": 0,
"x": 2952,
"y": 2891
}
],
"mode": "HIDE",
"path": "M2665.23,2314.45C2567.54,2408.77,2480.28,2514.09,2405.9,2627.43C2405.9,2627.43,2469.21,2667.69,2532.51,2707.95C2533.35,2708.54,2534.18,2709.13,2534.18,2709.13C2527.06,2720.01,2519.59,2731.77,2512.73,2742.78C2445.05,2851.49,2391.33,2966.53,2351.65,3085.68C2351.65,3085.68,3335.39,3416.1,3335.39,3416.1C3338.94,3403.94,3346.2,3385.61,3351.08,3373.96C3362.98,3345.55,3377.31,3317.85,3393.88,3291.2C3403.52,3275.77,3413.88,3260.67,3424.9,3246.04C3432.54,3236.49,3440.18,3226.94,3447.82,3217.39L3447.82,3217.39C3455.02,3209.19,3462.21,3201.0,3462.21,3201.0C3473.39,3188.71,3485.07,3176.82,3498.57,3164.13L3498.57,3164.13C3498.57,3164.13,3081.9,2739.29,2665.23,2314.45Z"
}
]
},
{
"name": "114",
"shapes": [
{
"bounds": [
"3964,1927 3964,3147 4737,3147 4737,1927 3964,1927"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 180,
"styleId": "troot",
"text": "114",
"width": 0,
"x": 4351,
"y": 2431
}
],
"mode": "HIDE",
"path": "M3964.8,1927.0L3964.8,3147.0L4737.1,3147.03L4737.1,1927.03L3964.8,1927.0Z"
}
]
},
{
"name": "201",
"shapes": [
{
"bounds": [
"4626,6081 4626,7161 5611,7161 5611,6081 4626,6081"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 180,
"styleId": "troot",
"text": "201",
"width": 0,
"x": 5119,
"y": 6515
}
],
"mode": "HIDE",
"path": "M4626.4,6081.35L4626.43,7161.33L5611.94,7161.37L5611.94,6081.43L4626.4,6081.35Z"
}
]
},
{
"name": "225",
"shapes": [
{
"bounds": [
"8109,5342 8045,5417 7987,5479 7840,5619 7712,5721 8473,6825 8715,6634 8969,6392 9124,6217 9207,6114 9207,6114 8109,5342"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 180,
"styleId": "troot",
"text": "225",
"width": 0,
"x": 8421,
"y": 5940
}
],
"mode": "HIDE",
"path": "M8109.33,5342.65C8088.72,5368.01,8067.52,5392.93,8045.73,5417.39C8026.83,5438.61,8007.5,5459.46,7987.8,5479.94C7940.93,5528.55,7891.79,5575.02,7840.73,5619.05C7799.55,5654.52,7756.27,5689.01,7712.7,5721.13C7712.7,5721.13,8473.18,6825.08,8473.18,6825.08C8555.78,6765.68,8637.9,6700.97,8715.35,6634.23C8803.81,6558.0,8888.62,6477.2,8969.16,6392.44C9022.85,6335.95,9074.65,6277.67,9124.37,6217.85C9152.73,6183.75,9180.42,6149.14,9207.41,6114.05L9207.41,6114.05C9207.41,6114.05,8658.37,5728.35,8109.33,5342.65Z"
}
]
},
{
"name": "215",
"shapes": [
{
"bounds": [
"4627,516 4627,1597 5612,1597 5612,516 4627,516"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 180,
"styleId": "troot",
"text": "215",
"width": 0,
"x": 5119,
"y": 950
}
],
"mode": "HIDE",
"path": "M4627.15,516.05L4627.15,1597.09L5612.5,1597.05L5612.5,516.05L4627.15,516.05Z"
}
]
},
{
"name": "127",
"shapes": [
{
"bounds": [
"6642,4415 6559,4476 6498,4506 6460,4518 6430,4525 6410,4528 6397,4530 6365,4531 6365,4933 6276,5069 6276,5069 6276,5751 6369,5751 6430,5750 6471,5748 6496,5746 6554,5740 6677,5720 6749,5704 6919,5651 6639,4925 6657,4918 6782,4858 6918,4760 6951,4731 6951,4731 6642,4415"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 180,
"styleId": "troot",
"text": "127",
"width": 0,
"x": 6501,
"y": 5130
}
],
"mode": "HIDE",
"path": "M6642.35,4415.2C6616.79,4438.68,6588.85,4459.44,6559.29,4476.69C6539.59,4488.18,6519.17,4498.12,6498.28,4506.24C6485.89,4511.07,6473.34,4515.26,6460.67,4518.77C6450.64,4521.54,6440.53,4523.89,6430.37,4525.79C6423.6,4527.06,6416.81,4528.13,6410.0,4528.98C6405.96,4529.49,6401.92,4529.93,6397.88,4530.29C6393.97,4530.64,6380.4,4530.92,6365.65,4531.13C6365.65,4531.13,6365.66,4732.09,6365.66,4933.06C6335.81,4978.48,6305.95,5023.89,6276.1,5069.31L6276.1,5069.31C6276.1,5410.45,6276.1,5751.59,6276.1,5751.59C6322.56,5751.59,6369.03,5751.59,6369.03,5751.59C6389.59,5751.59,6410.18,5751.17,6430.77,5750.34C6444.49,5749.78,6458.22,5749.04,6471.95,5748.12C6480.08,5747.57,6488.22,5746.95,6496.35,5746.27C6515.66,5744.66,6534.97,5742.69,6554.26,5740.35C6595.36,5735.36,6636.4,5728.73,6677.22,5720.45C6701.42,5715.56,6725.55,5710.08,6749.59,5704.03C6806.35,5689.75,6862.61,5672.29,6919.0,5651.34C6919.0,5651.34,6779.12,5288.36,6639.24,4925.38C6648.38,4921.95,6657.52,4918.52,6657.52,4918.52C6700.22,4901.93,6741.97,4881.76,6782.29,4858.18C6830.3,4830.09,6876.19,4797.27,6918.91,4760.47C6929.68,4751.18,6940.25,4741.65,6951.29,4731.22L6951.29,4731.22C6951.29,4731.22,6796.82,4573.21,6642.35,4415.2Z"
}
]
},
{
"name": "PENTHOUSE LOUNGE 2",
"shapes": [
{
"bounds": [
"494,4565 552,4883 552,4884 890,4819 886,4801 835,4522 835,4522 494,4565"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 108,
"styleId": "troot",
"text": "PL2",
"width": 0,
"x": 692,
"y": 4621
}
],
"mode": "HIDE",
"path": "M494.425,4565.98C507.772,4673.81,527.253,4781.73,552.503,4883.65C552.533,4883.76,552.562,4883.88,552.592,4884.0C665.384,4862.45,778.175,4840.89,890.961,4819.34C889.393,4813.24,887.855,4807.14,886.343,4801.04C864.142,4711.44,847.065,4617.14,835.416,4522.9L835.416,4522.9C721.759,4537.26,608.095,4551.62,494.425,4565.98Z"
}
]
},
{
"name": "126",
"shapes": [
{
"bounds": [
"6951,4731 6918,4760 6782,4858 6640,4925 6902,5611 7153,5492 7398,5317 7466,5256 7466,5256 6951,4731"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 180,
"styleId": "troot",
"text": "126",
"width": 0,
"x": 7006,
"y": 5046
}
],
"mode": "HIDE",
"path": "M6951.26,4731.25C6940.69,4741.26,6929.88,4751.01,6918.87,4760.5C6876.16,4797.3,6830.27,4830.12,6782.26,4858.21C6736.5,4884.97,6688.89,4907.34,6640.15,4925.07C6640.15,4925.07,6902.93,5611.93,6902.93,5611.93C6988.32,5580.04,7073.23,5540.01,7153.63,5492.98C7239.94,5442.5,7322.14,5383.83,7398.93,5317.68C7421.65,5298.1,7444.57,5277.43,7466.23,5256.63L7466.23,5256.63C7466.23,5256.63,7208.75,4993.94,6951.26,4731.25Z"
}
]
},
{
"name": "PENTHOUSE LOUNGE 1",
"shapes": [
{
"bounds": [
"629,5142 552,4884 890,4819 954,5028 954,5028 629,5142"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 108,
"styleId": "troot",
"text": "PL1",
"width": 0,
"x": 753,
"y": 4880
}
],
"mode": "HIDE",
"path": "M629.504,5142.74C600.411,5058.71,573.789,4969.44,552.592,4884.0C665.384,4862.45,778.175,4840.9,890.962,4819.34C908.881,4889.28,930.198,4959.56,954.098,5028.47L954.098,5028.47C845.903,5066.56,737.706,5104.65,629.504,5142.74Z"
}
]
},
{
"name": "112",
"shapes": [
{
"bounds": [
"3333,2065 3083,2184 2837,2360 2770,2421 3498,3164 3459,3203 3435,3231 3422,3248 3393,3291 3348,3379 3327,3440 3319,3478 3310,3567 3450,3568 3452,3530 3456,3505 3459,3491 3469,3457 3500,3387 3524,3347 3596,3264 3657,3216 3616,2852 3635,2848 3635,2848 3333,2065"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 180,
"styleId": "troot",
"text": "112",
"width": 0,
"x": 3326,
"y": 2565
}
],
"mode": "HIDE",
"path": "M3333.56,2065.15C3247.79,2097.14,3164.0,2136.85,3083.33,2184.11C2996.9,2234.73,2914.29,2293.82,2837.47,2360.17C2814.85,2379.71,2791.86,2400.83,2770.3,2421.58C2770.3,2421.58,3498.38,3164.15,3498.38,3164.15C3484.94,3176.71,3472.04,3189.87,3459.77,3203.52C3459.77,3203.52,3447.88,3217.54,3435.98,3231.57C3429.34,3240.17,3422.69,3248.77,3422.69,3248.77C3412.43,3262.56,3402.75,3276.72,3393.73,3291.23C3376.1,3319.55,3360.98,3349.08,3348.67,3379.41C3340.45,3399.62,3333.48,3420.18,3327.83,3440.97C3324.48,3453.3,3321.61,3465.7,3319.2,3478.15C3313.57,3507.41,3310.58,3536.96,3310.48,3567.44C3310.48,3567.44,3450.56,3568.11,3450.56,3568.11C3450.63,3556.06,3451.41,3542.36,3452.82,3530.35C3453.78,3522.13,3455.05,3513.92,3456.61,3505.75C3457.53,3500.91,3458.56,3496.08,3459.68,3491.27C3462.36,3479.83,3465.59,3468.47,3469.35,3457.22C3477.37,3433.25,3487.78,3409.79,3500.24,3387.19C3507.63,3373.8,3515.74,3360.7,3524.49,3347.98C3545.28,3317.78,3569.72,3289.69,3596.9,3264.6C3616.35,3246.75,3636.38,3230.99,3657.87,3216.66C3657.87,3216.66,3637.08,3034.4,3616.28,2852.14C3622.66,2850.85,3629.03,2849.57,3635.41,2848.28L3635.41,2848.28C3484.48,2456.71,3333.56,2065.15,3333.56,2065.15Z"
}
]
},
{
"name": "113",
"shapes": [
{
"bounds": [
"3872,1927 3319,2028 3635,2848 3758,2823 3800,3154 3872,3147 3963,3147 3963,1927 3963,1927 3872,1927"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 180,
"styleId": "troot",
"text": "113",
"width": 0,
"x": 3754,
"y": 2435
}
],
"mode": "HIDE",
"path": "M3872.25,1927.0C3686.75,1927.0,3498.46,1961.39,3319.45,2028.23C3319.45,2028.23,3477.48,2438.28,3635.5,2848.33C3696.96,2835.86,3758.42,2823.39,3758.42,2823.39C3779.59,2989.11,3800.77,3154.83,3800.77,3154.83C3824.38,3149.71,3848.29,3147.0,3872.21,3147.0C3872.21,3147.0,3917.99,3147.0,3963.77,3147.0C3963.77,2740.33,3963.77,2333.67,3963.77,1927.0L3963.77,1927.0C3918.01,1927.0,3872.25,1927.0,3872.25,1927.0Z"
}
]
},
{
"name": "PENTHOUSE LOUNGE 3",
"shapes": [
{
"bounds": [
"835,4522 609,4552 590,4275 817,4257 817,4258 817,4258 835,4522"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 108,
"styleId": "troot",
"text": "PL3",
"width": 0,
"x": 712,
"y": 4321
}
],
"mode": "HIDE",
"path": "M835.415,4522.9C721.759,4537.26,723.175,4537.77,609.505,4552.13C597.513,4455.37,592.18,4368.0,590.324,4275.8C704.854,4268.12,702.585,4264.95,817.113,4257.26C817.112,4257.58,817.112,4257.9,817.111,4258.22L817.111,4258.22C818.136,4343.66,824.32,4433.25,835.415,4522.9Z"
}
]
},
{
"name": "128",
"shapes": [
{
"bounds": [
"6365,4531 6321,4531 6320,4862 6178,4862 6178,4862 6178,4531 5673,4531 5673,4627 5502,4627 5502,5751 6275,5751 6276,5069 6365,4933 6365,4531"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 180,
"styleId": "troot",
"text": "128",
"width": 0,
"x": 5879,
"y": 5036
}
],
"mode": "HIDE",
"path": "M6365.65,4531.1C6346.86,4531.37,6326.16,4531.51,6321.04,4531.55C6321.04,4531.55,6320.54,4697.17,6320.05,4862.79C6272.87,4862.8,6225.68,4862.81,6178.5,4862.82L6178.5,4862.82L6178.5,4531.59L5673.75,4531.6L5673.75,4627.67L5502.9,4627.67L5502.9,5751.6L6275.09,5751.59L6276.21,5069.31L6365.66,4933.01C6365.66,4799.04,6365.65,4665.07,6365.65,4531.1Z"
}
]
},
{
"name": "225 STANDING ROOM ONLY",
"shapes": [
{
"bounds": [
"9207,6114 8715,6634 8473,6824 8541,6923 8793,6725 9305,6183 9305,6183 9207,6114"
],
"filled": true,
"labels": [
{
"angle": 43,
"height": 0,
"size": 107,
"styleId": "troot",
"text": "225 SRO",
"width": 0,
"x": 8856,
"y": 6486
}
],
"mode": "GA_STANDING",
"path": "M9207.48,6114.05C9062.15,6303.0,8896.51,6478.22,8715.42,6634.23C8637.35,6701.49,8556.45,6765.19,8473.15,6824.97C8473.15,6824.97,8541.16,6923.87,8541.16,6923.87C8628.03,6861.62,8712.38,6795.25,8793.75,6725.15C8982.33,6562.67,9154.71,6380.06,9305.76,6183.1L9305.76,6183.1C9305.76,6183.1,9256.62,6148.58,9207.48,6114.05Z"
}
]
},
{
"name": "224",
"shapes": [
{
"bounds": [
"8451,4728 8443,4752 8398,4867 8260,5131 8137,5307 8109,5342 9207,6114 9210,6109 9396,5841 9712,5180 9712,5180 8451,4728"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 180,
"styleId": "troot",
"text": "224",
"width": 0,
"x": 8932,
"y": 5253
}
],
"mode": "HIDE",
"path": "M8451.54,4728.6C8448.91,4736.53,8446.23,4744.43,8443.48,4752.33C8429.94,4791.2,8414.99,4829.71,8398.68,4867.81C8359.93,4958.32,8313.5,5046.52,8260.44,5131.44C8222.76,5191.74,8181.71,5250.39,8137.66,5307.0C8128.55,5318.7,8118.6,5331.21,8109.25,5342.73C8109.25,5342.73,9207.4,6114.03,9207.4,6114.03C9208.26,6112.91,9209.75,6110.98,9210.61,6109.86C9277.1,6023.17,9339.3,5933.56,9396.75,5841.64C9527.86,5631.86,9633.81,5410.37,9712.72,5180.76L9712.72,5180.76C9712.72,5180.76,9082.13,4954.68,8451.54,4728.6Z"
}
]
},
{
"name": "124",
"shapes": [
{
"bounds": [
"6770,4219 6740,4290 6712,4335 6693,4360 6643,4414 7572,5365 7833,5050 7706,4967 7725,4937 7891,4582 7891,4582 6770,4219"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 180,
"styleId": "troot",
"text": "124",
"width": 0,
"x": 7266,
"y": 4558
}
],
"mode": "HIDE",
"path": "M6770.34,4219.38C6762.41,4243.65,6752.73,4267.63,6740.25,4290.52C6731.94,4305.77,6722.69,4320.64,6712.6,4335.01C6703.22,4347.5,6693.84,4360.01,6693.84,4360.01C6678.52,4379.1,6661.72,4397.13,6643.0,4414.46C6643.0,4414.46,7572.19,5365.59,7572.19,5365.59C7670.6,5270.77,7759.02,5164.01,7833.79,5050.03C7833.79,5050.03,7770.06,5008.75,7706.34,4967.46C7715.96,4952.42,7725.58,4937.39,7725.58,4937.39C7795.93,4824.82,7851.02,4705.9,7891.23,4582.38L7891.23,4582.38C7891.23,4582.38,7330.91,4400.92,6770.34,4219.38Z"
}
]
},
{
"name": "123",
"shapes": [
{
"bounds": [
"7236,3973 7236,3973 6789,3973 6788,4110 6786,4146 6783,4170 6783,4170 6780,4185 6771,4219 7891,4581 7933,4425 7952,4320 7959,4258 7967,4109 7967,4071 8118,4071 8118,4071 8118,3839 7236,3839 7236,3973"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 180,
"styleId": "troot",
"text": "123",
"width": 0,
"x": 7455,
"y": 4019
}
],
"mode": "HIDE",
"path": "M7236.5,3973.93L7236.5,3973.93C7012.76,3973.93,6789.02,3973.93,6789.02,3973.93C6789.0,4042.16,6788.99,4110.39,6788.99,4110.39C6788.99,4122.52,6788.27,4134.66,6786.94,4146.73C6785.75,4154.77,6784.55,4162.82,6783.36,4170.86L6783.36,4170.86C6781.91,4177.98,6780.45,4185.1,6780.45,4185.1C6778.11,4195.5,6775.03,4206.76,6771.0,4219.52C6771.0,4219.52,7891.58,4581.44,7891.58,4581.44C7907.93,4530.68,7922.46,4477.12,7933.47,4425.51C7940.9,4390.67,7947.11,4355.69,7952.1,4320.65C7955.04,4299.86,7957.55,4279.05,7959.63,4258.26C7964.58,4208.82,7967.08,4159.33,7967.08,4109.99C7967.08,4109.99,7967.07,4090.9,7967.06,4071.82C8017.68,4071.82,8068.29,4071.82,8118.91,4071.82L8118.91,4071.82L8118.91,3839.17L7236.43,3839.0L7236.5,3973.93Z"
}
]
},
{
"name": "224 STANDING ROOM ONLY",
"shapes": [
{
"bounds": [
"9712,5180 9396,5841 9207,6114 9305,6183 9498,5905 9825,5220 9825,5220 9712,5180"
],
"filled": true,
"labels": [
{
"angle": 61,
"height": 0,
"size": 107,
"styleId": "troot",
"text": "224 SRO",
"width": 0,
"x": 9485,
"y": 5656
}
],
"mode": "GA_STANDING",
"path": "M9712.86,5180.4C9634.51,5408.96,9528.31,5631.21,9396.77,5841.67C9338.56,5934.8,9274.86,6026.31,9207.4,6114.08C9207.4,6114.08,9305.78,6183.18,9305.78,6183.18C9374.43,6093.61,9439.18,6000.23,9498.53,5905.27C9634.7,5687.4,9744.62,5457.34,9825.85,5220.77L9825.85,5220.77C9825.85,5220.77,9769.35,5200.58,9712.86,5180.4Z"
}
]
},
{
"name": "103",
"shapes": [
{
"bounds": [
"3671,4470 3633,4838 3321,5650 3501,5706 3624,5731 3697,5741 3872,5751 3963,5751 3963,4531 3872,4531 3859,4531 3834,4529 3758,4511 3758,4511 3671,4470"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 180,
"styleId": "troot",
"text": "103",
"width": 0,
"x": 3738,
"y": 5130
}
],
"mode": "HIDE",
"path": "M3671.32,4470.55C3652.19,4654.73,3633.05,4838.92,3633.05,4838.92C3477.2,5244.96,3321.35,5650.99,3321.35,5650.99C3380.72,5673.11,3441.0,5691.63,3501.83,5706.51C3542.6,5716.49,3583.6,5724.82,3624.74,5731.5C3649.11,5735.46,3673.53,5738.83,3697.98,5741.63C3756.03,5748.26,3814.2,5751.6,3872.19,5751.6C3872.19,5751.6,3917.98,5751.6,3963.77,5751.6C3963.77,5141.6,3963.77,4531.6,3963.77,4531.6C3917.98,4531.6,3872.19,4531.6,3872.19,4531.6C3867.94,4531.6,3863.7,4531.52,3859.46,4531.35C3850.98,4531.01,3842.51,4530.34,3834.06,4529.35C3808.7,4526.37,3783.52,4520.52,3758.0,4511.83L3758.0,4511.83C3728.5,4501.7,3699.83,4488.02,3671.32,4470.55Z"
}
]
},
{
"name": "104",
"shapes": [
{
"bounds": [
"3596,4413 2773,5254 3042,5467 3335,5613 3631,4838 3670,4469 3670,4469 3596,4413"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 180,
"styleId": "troot",
"text": "104",
"width": 0,
"x": 3295,
"y": 4924
}
],
"mode": "HIDE",
"path": "M3596.79,4413.9C3185.32,4834.17,2773.85,5254.43,2773.85,5254.43C2855.27,5334.32,2945.36,5406.23,3042.48,5467.13C3135.9,5525.7,3234.83,5575.66,3335.63,5613.28C3335.63,5613.28,3483.8,5226.01,3631.98,4838.74C3651.14,4654.37,3670.3,4469.99,3670.3,4469.99L3670.3,4469.99C3644.56,4454.03,3619.36,4434.62,3596.79,4413.9Z"
}
]
},
{
"name": "101",
"shapes": [
{
"bounds": [
"4738,4627 4738,5751 5501,5751 5501,4627 5174,4627 5174,4908 5065,4908 5065,4627 4738,4627"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 180,
"styleId": "troot",
"text": "101",
"width": 0,
"x": 5120,
"y": 5036
}
],
"mode": "HIDE",
"path": "M4738.1,4627.7L4738.1,5751.64L5501.9,5751.63L5501.9,4627.7L5174.25,4627.7L5174.25,4908.5L5065.8,4908.5L5065.8,4627.7L4738.1,4627.7Z"
}
]
},
{
"name": "102",
"shapes": [
{
"bounds": [
"4565,4531 3964,4531 3964,5751 4737,5751 4737,4627 4565,4627 4565,4531"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 180,
"styleId": "troot",
"text": "102",
"width": 0,
"x": 4340,
"y": 5036
}
],
"mode": "HIDE",
"path": "M4565.95,4531.6L3964.8,4531.61L3964.8,5751.61L4737.1,5751.6L4737.1,4627.66L4565.95,4627.66L4565.95,4531.6Z"
}
]
},
{
"name": "206",
"shapes": [
{
"bounds": [
"1788,4729 775,5092 830,5236 932,5460 1247,5960 2129,5342 1924,5039 1818,4813 1818,4813 1788,4729"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 180,
"styleId": "troot",
"text": "206",
"width": 0,
"x": 1461,
"y": 5188
}
],
"mode": "HIDE",
"path": "M1788.2,4729.3C1282.02,4910.73,775.85,5092.17,775.85,5092.17C792.68,5140.54,810.86,5188.61,830.35,5236.3C861.29,5312.05,895.44,5386.8,932.73,5460.43C1020.82,5634.29,1126.12,5801.54,1247.92,5960.86C1247.92,5960.86,2129.5,5342.55,2129.5,5342.55C2052.38,5247.44,1983.12,5145.27,1924.77,5039.62C1884.25,4966.26,1848.68,4890.8,1818.68,4813.87L1818.68,4813.87C1807.77,4785.86,1797.6,4757.66,1788.2,4729.3Z"
}
]
},
{
"name": "205",
"shapes": [
{
"bounds": [
"2129,5342 1297,5925 1539,6207 1718,6378 1831,6473 1946,6560 2524,5719 2480,5687 2370,5595 2308,5537 2169,5390 2169,5390 2129,5342"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 180,
"styleId": "troot",
"text": "205",
"width": 0,
"x": 1956,
"y": 5812
}
],
"mode": "HIDE",
"path": "M2129.5,5342.5C1713.6,5634.15,1297.7,5925.8,1297.7,5925.8C1372.42,6022.97,1453.87,6119.26,1539.56,6207.54C1597.1,6266.87,1656.95,6323.98,1718.97,6378.62C1755.75,6410.99,1793.26,6442.5,1831.48,6473.08C1869.04,6503.16,1907.28,6532.31,1946.18,6560.55C1946.18,6560.55,2524.01,5719.83,2524.01,5719.83C2509.53,5709.14,2495.17,5698.25,2480.95,5687.17C2443.26,5657.81,2406.5,5627.15,2370.75,5595.24C2349.53,5576.33,2328.72,5557.02,2308.27,5537.3C2259.72,5490.43,2213.3,5441.3,2169.35,5390.22L2169.35,5390.22C2155.82,5374.49,2142.56,5358.58,2129.5,5342.5Z"
}
]
},
{
"name": "212",
"shapes": [
{
"bounds": [
"2722,714 2191,957 1945,1118 2523,1958 2706,1837 2973,1708 3059,1677 3059,1677 2722,714"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 180,
"styleId": "troot",
"text": "212",
"width": 0,
"x": 2561,
"y": 1233
}
],
"mode": "HIDE",
"path": "M2722.49,714.3C2540.65,775.91,2361.29,858.28,2191.63,957.57C2107.36,1006.91,2025.06,1060.61,1945.2,1118.28C1945.2,1118.28,2523.58,1958.92,2523.58,1958.92C2582.77,1915.17,2644.02,1874.67,2706.94,1837.83C2793.02,1787.46,2882.21,1743.88,2973.51,1708.22C3001.87,1697.15,3030.42,1686.84,3059.15,1677.31L3059.15,1677.31C3059.15,1677.31,2890.82,1195.81,2722.49,714.3Z"
}
]
},
{
"name": "211",
"shapes": [
{
"bounds": [
"1944,1118 1731,1287 1519,1487 1388,1632 1315,1720 1291,1751 2126,2339 2193,2261 2250,2198 2397,2059 2522,1959 2522,1959 1944,1118"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 180,
"styleId": "troot",
"text": "211",
"width": 0,
"x": 1948,
"y": 1665
}
],
"mode": "HIDE",
"path": "M1944.44,1118.85C1871.31,1171.7,1800.24,1227.88,1731.58,1287.09C1657.92,1350.65,1587.04,1417.71,1519.38,1487.8C1474.25,1534.58,1430.6,1582.69,1388.48,1632.02C1363.52,1661.25,1339.1,1690.9,1315.22,1720.97C1307.08,1731.23,1299.01,1741.54,1291.0,1751.9C1291.0,1751.9,2126.96,2339.02,2126.96,2339.02C2148.35,2312.56,2170.39,2286.58,2193.06,2261.11C2211.93,2239.88,2231.23,2219.03,2250.92,2198.55C2297.71,2149.95,2346.77,2103.48,2397.78,2059.47C2438.28,2024.55,2480.01,1991.17,2522.82,1959.5L2522.82,1959.5C2522.82,1959.5,2233.63,1539.18,1944.44,1118.85Z"
}
]
},
{
"name": "106",
"shapes": [
{
"bounds": [
"3468,4219 2356,4592 2459,4830 2537,4964 2410,5046 2667,5363 3596,4413 3542,4355 3512,4312 3497,4285 3497,4285 3468,4219"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 180,
"styleId": "troot",
"text": "106",
"width": 0,
"x": 2977,
"y": 4526
}
],
"mode": "HIDE",
"path": "M3468.59,4219.05C2912.35,4405.69,2356.1,4592.33,2356.1,4592.33C2384.04,4673.5,2418.58,4753.26,2459.23,4830.44C2483.15,4875.83,2509.43,4920.73,2537.47,4964.09C2473.93,5005.29,2410.67,5046.91,2410.67,5046.91C2484.09,5160.42,2570.12,5266.78,2667.91,5363.05C2667.91,5363.05,3596.08,4413.24,3596.08,4413.24C3576.87,4395.44,3559.02,4376.12,3542.88,4355.61C3531.98,4341.76,3521.84,4327.35,3512.6,4312.51C3504.87,4299.11,3497.13,4285.71,3497.13,4285.71L3497.13,4285.71C3485.8,4264.43,3476.29,4242.42,3468.59,4219.05Z"
}
]
},
{
"name": "214",
"shapes": [
{
"bounds": [
"3745,516 3745,1597 4627,1597 4627,516 3745,516"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 180,
"styleId": "troot",
"text": "214",
"width": 0,
"x": 4186,
"y": 950
}
],
"mode": "HIDE",
"path": "M3745.3,516.05L3745.3,1597.11L4627.15,1597.09L4627.15,516.05L3745.3,516.05Z"
}
]
},
{
"name": "107",
"shapes": [
{
"bounds": [
"2120,3838 2120,4072 2272,4072 2272,4110 2282,4271 2298,4378 2312,4441 2355,4591 3467,4216 3458,4182 3454,4158 3454,4158 3452,4144 3450,4110 3450,3838 3450,3838 2120,3838"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 180,
"styleId": "troot",
"text": "107",
"width": 0,
"x": 2828,
"y": 4008
}
],
"mode": "HIDE",
"path": "M2120.7,3838.75L2120.7,4072.19C2196.69,4072.19,2272.67,4072.19,2272.67,4072.19C2272.68,4091.16,2272.7,4110.13,2272.7,4110.13C2272.7,4163.56,2275.91,4217.28,2282.2,4271.01C2286.4,4306.84,2291.97,4342.67,2298.86,4378.42C2302.95,4399.61,2307.5,4420.76,2312.5,4441.89C2324.33,4491.74,2338.7,4541.35,2355.82,4591.42C2355.82,4591.42,3467.73,4216.22,3467.73,4216.22C3464.19,4205.12,3461.16,4193.91,3458.67,4182.59C3457.21,4174.62,3455.74,4166.65,3454.28,4158.67L3454.28,4158.67C3453.39,4151.55,3452.5,4144.44,3452.5,4144.44C3451.29,4133.13,3450.7,4121.79,3450.7,4110.46C3450.7,4110.46,3450.73,3974.6,3450.75,3838.75L3450.75,3838.75C3007.4,3838.75,2564.05,3838.75,2120.7,3838.75Z"
}
]
},
{
"name": "213",
"shapes": [
{
"bounds": [
"3537,437 3248,453 3056,482 2943,506 2676,582 3060,1677 3158,1647 3270,1622 3359,1608 3418,1602 3453,1599 3481,1598 3500,1597 3500,1597 3511,1597 3537,1597 3743,1596 3743,437 3537,437"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 180,
"styleId": "troot",
"text": "213",
"width": 0,
"x": 3298,
"y": 977
}
],
"mode": "HIDE",
"path": "M3537.92,437.1C3441.45,437.1,3344.86,442.67,3248.53,453.62C3184.32,460.92,3120.22,470.61,3056.39,482.62C3018.55,489.75,2980.8,497.69,2943.17,506.42C2854.1,527.12,2764.76,552.181,2676.35,582.031C2676.35,582.031,3060.02,1677.01,3060.02,1677.01C3092.64,1666.21,3125.48,1656.44,3158.51,1647.73C3195.47,1637.95,3232.7,1629.55,3270.05,1622.51C3299.62,1616.96,3329.27,1612.29,3359.03,1608.51C3378.83,1606.0,3398.69,1603.9,3418.57,1602.22C3430.34,1601.21,3442.13,1600.35,3453.91,1599.64C3453.91,1599.64,3467.91,1598.94,3481.91,1598.23C3488.14,1598.02,3494.36,1597.81,3500.59,1597.6L3500.59,1597.6L3511.66,1597.35L3537.96,1597.1L3743.62,1596.93L3743.62,437.13C3640.77,437.115,3537.92,437.1,3537.92,437.1Z"
}
]
},
{
"name": "208",
"shapes": [
{
"bounds": [
"818,3426 817,4258 1707,4170 1707,3512 1707,3512 818,3426"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 180,
"styleId": "troot",
"text": "208",
"width": 0,
"x": 1254,
"y": 3736
}
],
"mode": "HIDE",
"path": "M818.583,3426.69C818.523,3433.77,817.008,4258.15,817.008,4258.15C817.008,4267.0,1167.83,4223.81,1707.76,4170.91C1707.76,3952.1,1707.8,3732.35,1707.83,3512.6L1707.83,3512.6C1263.21,3469.65,818.583,3426.69,818.583,3426.69Z"
}
]
},
{
"name": "207",
"shapes": [
{
"bounds": [
"954,5029 886,4801 817,4258 1707,4171 1707,4249 1719,4428 1730,4503 1758,4628 1787,4728 1787,4728 954,5029"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 180,
"styleId": "troot",
"text": "207",
"width": 0,
"x": 1279,
"y": 4454
}
],
"mode": "HIDE",
"path": "M954.239,5029.21C927.988,4953.69,905.313,4877.65,886.32,4801.05C842.999,4626.21,819.19,4433.49,817.088,4258.23C1113.97,4229.15,1410.85,4200.08,1707.73,4171.0C1707.73,4210.12,1707.73,4249.23,1707.73,4249.23C1707.73,4308.96,1711.62,4368.7,1719.12,4428.16C1722.3,4453.22,1726.11,4478.2,1730.55,4503.16C1738.04,4545.23,1747.29,4587.11,1758.26,4628.75C1767.06,4662.15,1776.94,4695.38,1787.86,4728.38L1787.86,4728.38C1509.99,4828.66,1232.11,4928.93,954.239,5029.21Z"
}
]
},
{
"name": "210",
"shapes": [
{
"bounds": [
"1290,1752 1155,1941 1101,1913 1062,1975 825,2439 770,2589 1786,2953 1795,2926 1840,2810 1978,2547 2101,2371 2126,2339 2126,2339 1290,1752"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 180,
"styleId": "troot",
"text": "210",
"width": 0,
"x": 1451,
"y": 2277
}
],
"mode": "HIDE",
"path": "M1290.39,1752.7C1243.45,1813.47,1198.66,1876.07,1155.29,1941.67C1155.29,1941.67,1101.95,1913.58,1101.95,1913.58C1088.53,1933.99,1075.35,1954.56,1062.45,1975.26C969.4,2124.36,890.09,2279.93,825.68,2439.61C805.68,2489.2,787.13,2539.18,770.05,2589.5C770.05,2589.5,1786.76,2953.37,1786.76,2953.37C1789.75,2944.25,1792.83,2935.15,1795.99,2926.06C1809.49,2887.22,1824.41,2848.7,1840.69,2810.59C1879.37,2720.11,1925.71,2631.9,1978.69,2547.0C2016.33,2486.68,2057.29,2428.04,2101.27,2371.44C2109.52,2360.82,2117.87,2350.27,2126.33,2339.8L2126.33,2339.8C2126.33,2339.8,1708.36,2046.25,1290.39,1752.7Z"
}
]
},
{
"name": "209",
"shapes": [
{
"bounds": [
"818,3426 859,2995 901,2813 949,2653 1786,2954 1740,3125 1707,3429 1707,3512 1707,3512 818,3426"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 180,
"styleId": "troot",
"text": "209",
"width": 0,
"x": 1279,
"y": 3009
}
],
"mode": "HIDE",
"path": "M818.684,3426.63C819.95,3288.62,833.894,3132.46,859.907,2995.08C871.462,2934.14,885.279,2873.63,901.465,2813.32C915.979,2759.13,931.369,2706.94,949.526,2653.39C1228.18,2754.27,1507.79,2853.44,1786.44,2954.32C1767.96,3010.67,1752.52,3067.67,1740.35,3125.07C1719.01,3225.59,1707.75,3327.38,1707.75,3429.16C1707.75,3429.16,1707.75,3470.83,1707.75,3512.51L1707.75,3512.51C1411.39,3483.88,1115.04,3455.26,818.684,3426.63Z"
}
]
},
{
"name": "204",
"shapes": [
{
"bounds": [
"2524,5720 1947,6561 2115,6674 2383,6823 2568,6906 2680,6948 2723,6963 3060,6001 3035,5993 2905,5942 2830,5906 2656,5809 2656,5809 2524,5720"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 180,
"styleId": "troot",
"text": "204",
"width": 0,
"x": 2548,
"y": 6237
}
],
"mode": "HIDE",
"path": "M2524.82,5720.45C2235.91,6140.8,1947.0,6561.15,1947.0,6561.15C2001.85,6600.92,2058.0,6638.81,2115.37,6674.69C2202.64,6729.31,2292.21,6779.15,2383.57,6823.87C2444.48,6853.69,2506.18,6881.28,2568.5,6906.53C2605.42,6921.51,2642.64,6935.64,2680.01,6948.98C2694.4,6954.11,2708.82,6959.11,2723.27,6963.99C2723.27,6963.99,3060.05,6001.48,3060.05,6001.48C3051.72,5998.72,3043.4,5995.9,3035.09,5993.01C2991.41,5977.78,2948.18,5960.76,2905.45,5942.02C2880.14,5930.93,2855.02,5919.24,2830.08,5906.94C2770.89,5877.79,2712.87,5845.35,2656.35,5809.96L2656.35,5809.96C2611.52,5781.94,2567.63,5752.04,2524.82,5720.45Z"
}
]
},
{
"name": "221",
"shapes": [
{
"bounds": [
"9639,2529 8453,2954 8481,3049 8506,3161 8531,3429 8531,3513 9791,3389 9758,3006 9701,2737 9655,2579 9655,2579 9639,2529"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 180,
"styleId": "troot",
"text": "221",
"width": 0,
"x": 9144,
"y": 2993
}
],
"mode": "HIDE",
"path": "M9639.26,2529.55C9046.13,2741.83,8453.0,2954.12,8453.0,2954.12C8463.4,2985.78,8472.85,3017.65,8481.3,3049.68C8491.08,3086.66,8499.48,3123.9,8506.5,3161.27C8523.2,3250.0,8531.96,3339.6,8531.96,3429.23C8531.96,3429.23,8531.95,3471.41,8531.93,3513.58C9161.83,3451.51,9791.73,3389.43,9791.73,3389.43C9789.73,3262.13,9778.33,3133.61,9758.16,3006.89C9743.79,2916.48,9724.87,2826.44,9701.6,2737.11C9687.82,2684.18,9672.48,2631.5,9655.67,2579.12L9655.67,2579.12C9650.35,2562.57,9644.88,2546.05,9639.26,2529.55Z"
}
]
},
{
"name": "228",
"shapes": [
{
"bounds": [
"5612,6081 5612,7161 6493,7161 6493,6081 5612,6081"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 180,
"styleId": "troot",
"text": "228",
"width": 0,
"x": 6052,
"y": 6515
}
],
"mode": "HIDE",
"path": "M5612.03,6081.5L5612.0,7161.45L6493.84,7161.43L6493.84,6081.5L5612.03,6081.5Z"
}
]
},
{
"name": "216",
"shapes": [
{
"bounds": [
"5612,516 5612,1597 6494,1597 6494,516 5612,516"
],
"filled": true,
"labels": [
{
"angle": 0,
"height": 0,
"size": 180,
"styleId": "troot",
"text": "216",
"width": 0,
"x": 6053,
"y": 950
}
],
"mode": "HIDE",
"path": "M5612.5,516.05L5612.5,1597.05L6494.4,1597.03L6494.4,516.05L5612.5,516.05Z"
}
]
},
{
"name": "203",
"shapes": [
{
"bounds": [
"3061,6001 2724,6964 2949,7029 2937,7088 3538,7161 3743,7161 3743,6081 3743,6081 3538,6081 3526,6081 3504,6080 3436,6077 3234,6048 3234,6048 3061,6001"
],
"filled": true,
"labels": [
{
"angle": 0,