Booking API v1
|
This is the legacy v1 API documentation. This version is maintained for backward compatibility but new integrations should use API v2. Please migrate to v2: |
1. Overview
Version: 1.73.0
| In the tables below, a name marked with * is required. |
1.1. Seatmap.pro Booking API v1 (Legacy)
Legacy API providing unified CRUD operations for event and pricing management. Version 2 is recommended for new integrations with enhanced features and improved architecture.
1.1.1. Core Operations
-
Events - Create, read, update, and delete event configurations
-
Venues - Retrieve venue and schema information
-
Prices - Manage pricing structures and assignments
-
Booking - Lock and unlock seats for reservation workflows
-
Price Assignments - Assign prices to specific seats
1.1.2. Authentication
All requests require API key authentication: [source]
X-API-Key: {sessionId}
The session ID is provided during authentication and must be included in every request header.
1.1.3. Migration Notice
Version 1 is in maintenance mode. New features and improvements are exclusively available in Version 2. Consider migrating to v2 for:
-
Simplified identifiers (single Long/UUID vs composite keys)
-
Enhanced error responses with field-level details (RFC 7807)
-
Bulk operations for improved performance
-
Better data integrity and validation
-
Extended pagination support
-
Schema cloning capabilities
2. Authentication
2.1. API Key
All requests must include the API key in the header:
-
Header:
X-API-Key -
Location: HTTP Header
curl -X GET "https://api.seatmap.pro/api/private/v1.0/..." \
-H "X-API-Key: your-api-key"
3. API Endpoints
3.1. Booking
Allows to the system lock ans unlock seats
3.1.1. lock
POST /api/private/v1.0/booking/lock
Lock a seat or GA
|
Seat should be available. When orphan seat prevention is enabled for the organization, seats whose acquisition would leave a single unsold seat are returned in the unsuccessful attempts list. |
Body Parameter
Name |
Description |
Default |
Selection* |
List |
Query Parameters
Name |
Description |
Default |
id* |
null |
Return Type
array[Selection]
Responses
Code |
Message |
Datatype |
200 |
Returns unsuccessful attempts |
List[Selection] |
400 |
Input data is not valid |
List[Selection] |
403 |
Forbidden. Please use correct private key. |
List[Selection] |
Examples
HTTP Request
POST /api/private/v1.0/booking/lock?id=80bdfbb9-891a-4fca-ae01-be1d25d5befb HTTP/1.1
Content-Type: application/json
X-API-Key: af90387c-9071-4015-9a58-cbb543d84130
Content-Length: 71
Host: booking.seatmap.pro
[ {
"capacity" : null,
"compositeKey" : "Unnamed section;;4;;7"
} ]
cURL Request
$ curl 'https://booking.seatmap.pro/api/private/v1.0/booking/lock?id=80bdfbb9-891a-4fca-ae01-be1d25d5befb' -i -X POST \
-H 'Content-Type: application/json' \
-H 'X-API-Key: af90387c-9071-4015-9a58-cbb543d84130' \
-d '[ {
"capacity" : null,
"compositeKey" : "Unnamed section;;4;;7"
} ]'
Response Body
[ {
"capacity" : null,
"compositeKey" : "Unnamed section;;4;;7"
} ]
3.1.2. sale
POST /api/private/v1.0/booking/sale
Transfer seat or GA to the state sold
|
This feature applicable only in a sales control mode. When orphan seat prevention is enabled for the organization, seats whose acquisition would leave a single unsold seat are returned in the unsuccessful attempts list. |
Body Parameter
Name |
Description |
Default |
Selection* |
List |
Query Parameters
Name |
Description |
Default |
id* |
null |
Return Type
array[Selection]
Responses
Code |
Message |
Datatype |
200 |
Returns unsuccessful attempts |
List[Selection] |
400 |
Input data is not valid |
List[Selection] |
403 |
Forbidden. Please use correct private key. |
List[Selection] |
Examples
HTTP Request
POST /api/private/v1.0/booking/sale?id=07f21c68-97ca-46e0-bdee-d9823ed9a316 HTTP/1.1
Content-Type: application/json
X-API-Key: af90387c-9071-4015-9a58-cbb543d84130
Content-Length: 71
Host: booking.seatmap.pro
[ {
"capacity" : null,
"compositeKey" : "Unnamed section;;4;;7"
} ]
cURL Request
$ curl 'https://booking.seatmap.pro/api/private/v1.0/booking/sale?id=07f21c68-97ca-46e0-bdee-d9823ed9a316' -i -X POST \
-H 'Content-Type: application/json' \
-H 'X-API-Key: af90387c-9071-4015-9a58-cbb543d84130' \
-d '[ {
"capacity" : null,
"compositeKey" : "Unnamed section;;4;;7"
} ]'
Response Body
[ {
"capacity" : null,
"compositeKey" : "Unnamed section;;4;;7"
} ]
3.1.3. unlock
POST /api/private/v1.0/booking/unlock
Unlock a seat or GA
|
For GA unlocking capacity counter shall be specified |
Body Parameter
Name |
Description |
Default |
Selection* |
List |
Query Parameters
Name |
Description |
Default |
id* |
null |
Return Type
array[Selection]
Responses
Code |
Message |
Datatype |
200 |
Returns unsuccessful attempts |
List[Selection] |
400 |
Input data is not valid |
List[Selection] |
403 |
Forbidden. Please use correct private key. |
List[Selection] |
Examples
HTTP Request
POST /api/private/v1.0/booking/unlock?id=69bcf4ad-79a7-42ec-87f0-b4944fdee5a2 HTTP/1.1
Content-Type: application/json
X-API-Key: af90387c-9071-4015-9a58-cbb543d84130
Content-Length: 71
Host: booking.seatmap.pro
[ {
"capacity" : null,
"compositeKey" : "Unnamed section;;4;;7"
} ]
cURL Request
$ curl 'https://booking.seatmap.pro/api/private/v1.0/booking/unlock?id=69bcf4ad-79a7-42ec-87f0-b4944fdee5a2' -i -X POST \
-H 'Content-Type: application/json' \
-H 'X-API-Key: af90387c-9071-4015-9a58-cbb543d84130' \
-d '[ {
"capacity" : null,
"compositeKey" : "Unnamed section;;4;;7"
} ]'
Response Body
[ {
"capacity" : null,
"compositeKey" : "Unnamed section;;4;;7"
} ]
3.2. EventsV1Deprecated
Legacy event management endpoints for API v1.
DEPRECATED: This API version is maintained for backward compatibility only. New integrations should use API v2: /api/private/v2.0/events/
Migration benefits: * Improved performance with optimized queries * Enhanced filtering and pagination * Better error messages and validation * UUID-based identifiers for better scalability
See migration guide: https://seatmap.pro/knowledge-base/api/migration/v1-to-v2
3.2.1. eventAll
GET /api/private/v1.0/events/
Retrieve list of all events (v1 - Deprecated)
|
Getting all the events with paging. DEPRECATED: Use GET /api/private/v2.0/events/ instead. V2 API provides standard Spring Data pagination with better filtering options. |
Body Parameter
Name |
Description |
Default |
Query Parameters
Name |
Description |
Default |
limit |
Quantity of requested items |
50 |
offset |
Offset for the pager |
0 |
Return Type
array[Event]
Responses
Code |
Message |
Datatype |
200 |
Returns list of objects |
List[Event] |
400 |
Input data is not valid |
List[Event] |
403 |
Forbidden. Please use correct private key. |
List[Event] |
Examples
HTTP Request
GET /api/private/v1.0/events/ HTTP/1.1
Content-Type: application/json
X-API-Key: af90387c-9071-4015-9a58-cbb543d84130
Host: booking.seatmap.pro
cURL Request
$ curl 'https://booking.seatmap.pro/api/private/v1.0/events/' -i -X GET \
-H 'Content-Type: application/json' \
-H 'X-API-Key: af90387c-9071-4015-9a58-cbb543d84130'
Response Body
[ {
"id" : "07f21c68-97ca-46e0-bdee-d9823ed9a316",
"start" : "2026-09-04T08:08:00",
"killAfter" : "2026-09-04T08:08:00",
"name" : "booking-docs",
"schemaId" : 80
}, {
"id" : "69bcf4ad-79a7-42ec-87f0-b4944fdee5a2",
"start" : "2026-09-04T08:08:00",
"killAfter" : "2026-09-04T08:08:00",
"name" : "booking-docs",
"schemaId" : 80
}, {
"id" : "80bdfbb9-891a-4fca-ae01-be1d25d5befb",
"start" : "2026-09-04T08:08:00",
"killAfter" : "2026-09-04T08:08:00",
"name" : "booking-docs",
"schemaId" : 80
}, {
"id" : "a0762eac-63f1-46a6-be39-572872298f6a",
"start" : "2026-09-04T08:08:00",
"killAfter" : "2026-09-04T08:08:00",
"name" : "test",
"schemaId" : 80
} ]
3.2.2. eventCreate
POST /api/private/v1.0/events/
Create an Event (v1 - Deprecated)
|
Before you start to create an Event you need to create a schema with venue. DEPRECATED: Use POST /api/private/v2.0/events/ instead. V2 API provides better validation, UUID identifiers, and improved error handling. |
Body Parameter
Name |
Description |
Default |
Event* |
Return Type
Responses
Code |
Message |
Datatype |
200 |
Returns created object |
|
400 |
Input data is not valid |
|
403 |
Forbidden. Please use correct private key. |
Examples
HTTP Request
POST /api/private/v1.0/events/ HTTP/1.1
Content-Type: application/json
X-API-Key: af90387c-9071-4015-9a58-cbb543d84130
Content-Length: 148
Host: booking.seatmap.pro
{
"id" : null,
"start" : "2026-09-04T08:08:16.83685639",
"killAfter" : "2026-09-04T08:08:16.836861994",
"name" : "test",
"schemaId" : 80
}
cURL Request
$ curl 'https://booking.seatmap.pro/api/private/v1.0/events/' -i -X POST \
-H 'Content-Type: application/json' \
-H 'X-API-Key: af90387c-9071-4015-9a58-cbb543d84130' \
-d '{
"id" : null,
"start" : "2026-09-04T08:08:16.83685639",
"killAfter" : "2026-09-04T08:08:16.836861994",
"name" : "test",
"schemaId" : 80
}'
Response Body
{
"id" : "a0762eac-63f1-46a6-be39-572872298f6a",
"start" : "2026-09-04T08:08:00",
"killAfter" : "2026-09-04T08:08:00",
"name" : "test",
"schemaId" : 80
}
3.2.3. eventDelete
DELETE /api/private/v1.0/events/{id}
Delete an Event (v1 - Deprecated)
|
Deleted event shall contains valid id. DEPRECATED: Use DELETE /api/private/v2.0/events/{id} instead. V2 API returns proper HTTP 204 No Content on successful deletion. |
Body Parameter
Name |
Description |
Default |
Path Parameters
Name |
Description |
Default |
id* |
Valid event identifier |
null |
Return Type
Boolean
Responses
Code |
Message |
Datatype |
200 |
Returns result of the delete operation |
Boolean |
400 |
Input data is not valid |
Boolean |
403 |
Forbidden. Please use correct private key. |
Boolean |
Examples
HTTP Request
DELETE /api/private/v1.0/events/944cdf06-4ee3-4b00-85fd-643c77f3ab0d HTTP/1.1
Content-Type: application/json
X-API-Key: af90387c-9071-4015-9a58-cbb543d84130
Host: booking.seatmap.pro
cURL Request
$ curl 'https://booking.seatmap.pro/api/private/v1.0/events/944cdf06-4ee3-4b00-85fd-643c77f3ab0d' -i -X DELETE \
-H 'Content-Type: application/json' \
-H 'X-API-Key: af90387c-9071-4015-9a58-cbb543d84130'
Response Body
true
3.2.4. eventUpdate
PUT /api/private/v1.0/events/
Update an Event (v1 - Deprecated)
|
Updated event shall contains valid id. DEPRECATED: Use PUT /api/private/v2.0/events/ instead. V2 API provides better validation and clearer response codes. |
Body Parameter
Name |
Description |
Default |
Event* |
Return Type
Responses
Code |
Message |
Datatype |
200 |
Returns updated object |
|
400 |
Input data is not valid |
|
403 |
Forbidden. Please use correct private key. |
Examples
HTTP Request
PUT /api/private/v1.0/events/ HTTP/1.1
Content-Type: application/json
X-API-Key: af90387c-9071-4015-9a58-cbb543d84130
Content-Length: 165
Host: booking.seatmap.pro
{
"id" : "99924ebd-61fe-48a5-9286-2f16936c8d09",
"start" : "2026-09-04T08:08:00",
"killAfter" : "2026-09-04T08:08:00",
"name" : "test22",
"schemaId" : 80
}
cURL Request
$ curl 'https://booking.seatmap.pro/api/private/v1.0/events/' -i -X PUT \
-H 'Content-Type: application/json' \
-H 'X-API-Key: af90387c-9071-4015-9a58-cbb543d84130' \
-d '{
"id" : "99924ebd-61fe-48a5-9286-2f16936c8d09",
"start" : "2026-09-04T08:08:00",
"killAfter" : "2026-09-04T08:08:00",
"name" : "test22",
"schemaId" : 80
}'
Response Body
{
"id" : "99924ebd-61fe-48a5-9286-2f16936c8d09",
"start" : "2026-09-04T08:08:00",
"killAfter" : "2026-09-04T08:08:00",
"name" : "test22",
"schemaId" : 80
}
3.3. PriceAssignments
Allows to assign/remove prices to seats
3.3.1. assignPrice
POST /api/private/v1.0/assignments/
Assign prices to event
|
Price assignments assume using of plain representation of price. For GA sections you need to specify capacity |
Body Parameter
Name |
Description |
Default |
PriceAssignment* |
List |
Query Parameters
Name |
Description |
Default |
id* |
Corresponding event id |
null |
clean |
Clean before assign is used when you need completely renew the price assignment. It also could be cleaned with clean method |
false |
Return Type
array[PriceAssignment]
Responses
Code |
Message |
Datatype |
200 |
Returns unsuccessful assignments |
List[PriceAssignment] |
400 |
Input data is not valid |
List[PriceAssignment] |
403 |
Forbidden. Please use correct private key. |
List[PriceAssignment] |
Examples
HTTP Request
POST /api/private/v1.0/assignments/?id=96b31561-1ed5-4f2a-9092-6b1fbaa0e640 HTTP/1.1
Content-Type: application/json
X-API-Key: af90387c-9071-4015-9a58-cbb543d84130
Content-Length: 206
Host: booking.seatmap.pro
[ {
"capacity" : 50,
"compositeKey" : "fan zone",
"price" : 500,
"properties" : null
}, {
"capacity" : null,
"compositeKey" : "Unnamed section;;4;;7",
"price" : 1500,
"properties" : null
} ]
cURL Request
$ curl 'https://booking.seatmap.pro/api/private/v1.0/assignments/?id=96b31561-1ed5-4f2a-9092-6b1fbaa0e640' -i -X POST \
-H 'Content-Type: application/json' \
-H 'X-API-Key: af90387c-9071-4015-9a58-cbb543d84130' \
-d '[ {
"capacity" : 50,
"compositeKey" : "fan zone",
"price" : 500,
"properties" : null
}, {
"capacity" : null,
"compositeKey" : "Unnamed section;;4;;7",
"price" : 1500,
"properties" : null
} ]'
Response Body
[ ]
3.3.2. cleanAssignment
POST /api/private/v1.0/assignments/clean
Remove all price assignments from event
|
All states including locked seats, will be cleaned up during this operation |
Body Parameter
Name |
Description |
Default |
Query Parameters
Name |
Description |
Default |
id* |
Corresponding event id |
null |
Return Type
Boolean
Responses
Code |
Message |
Datatype |
200 |
Returns true if everything is ok |
Boolean |
400 |
Input data is not valid |
Boolean |
403 |
Forbidden. Please use correct private key. |
Boolean |
Examples
HTTP Request
POST /api/private/v1.0/assignments/clean HTTP/1.1
Content-Type: application/json
X-API-Key: af90387c-9071-4015-9a58-cbb543d84130
Host: booking.seatmap.pro
cURL Request
$ curl 'https://booking.seatmap.pro/api/private/v1.0/assignments/clean' -i -X POST \
-H 'Content-Type: application/json' \
-H 'X-API-Key: af90387c-9071-4015-9a58-cbb543d84130'
Response Body
true
3.3.3. removeAssignment
DELETE /api/private/v1.0/assignments/
Remove specified assignments from event
|
To remove assignments from event we are using simplified object Selection. For GA sections use capacity field as well |
Body Parameter
Name |
Description |
Default |
Selection* |
List |
Query Parameters
Name |
Description |
Default |
id* |
Corresponding event id |
null |
Return Type
array[Selection]
Responses
Code |
Message |
Datatype |
200 |
Returns unsuccessful attempts to remove assignment |
List[Selection] |
400 |
Input data is not valid |
List[Selection] |
403 |
Forbidden. Please use correct private key. |
List[Selection] |
Examples
HTTP Request
DELETE /api/private/v1.0/assignments/?id=95794fc2-d2a8-4863-ad1e-d01b0dd76f2b HTTP/1.1
Content-Type: application/json
X-API-Key: af90387c-9071-4015-9a58-cbb543d84130
Content-Length: 125
Host: booking.seatmap.pro
[ {
"capacity" : 50,
"compositeKey" : "fan zone"
}, {
"capacity" : null,
"compositeKey" : "Unnamed section;;4;;7"
} ]
cURL Request
$ curl 'https://booking.seatmap.pro/api/private/v1.0/assignments/?id=95794fc2-d2a8-4863-ad1e-d01b0dd76f2b' -i -X DELETE \
-H 'Content-Type: application/json' \
-H 'X-API-Key: af90387c-9071-4015-9a58-cbb543d84130' \
-d '[ {
"capacity" : 50,
"compositeKey" : "fan zone"
}, {
"capacity" : null,
"compositeKey" : "Unnamed section;;4;;7"
} ]'
Response Body
[ ]
3.4. Prices
Provides CRUD operations for prices
3.4.1. priceAll
GET /api/private/v1.0/prices/
Retrieve all prices for event
|
All prices |
Body Parameter
Name |
Description |
Default |
Query Parameters
Name |
Description |
Default |
id* |
null |
Return Type
array[Price]
Responses
Code |
Message |
Datatype |
200 |
Returns list of objects |
List[Price] |
400 |
Input data is not valid |
List[Price] |
403 |
Forbidden. Please use correct private key. |
List[Price] |
Examples
HTTP Request
GET /api/private/v1.0/prices/?id=ea5f1bf1-785e-43f4-8f5f-958bac792953 HTTP/1.1
Content-Type: application/json
X-API-Key: af90387c-9071-4015-9a58-cbb543d84130
Host: booking.seatmap.pro
cURL Request
$ curl 'https://booking.seatmap.pro/api/private/v1.0/prices/?id=ea5f1bf1-785e-43f4-8f5f-958bac792953' -i -X GET \
-H 'Content-Type: application/json' \
-H 'X-API-Key: af90387c-9071-4015-9a58-cbb543d84130'
Response Body
[ ]
3.4.2. priceCreate
POST /api/private/v1.0/prices/
Create a price for event
|
Binds a price to event |
Body Parameter
Name |
Description |
Default |
Price* |
Return Type
Responses
Code |
Message |
Datatype |
200 |
Returns created object |
|
400 |
Input data is not valid |
|
403 |
Forbidden. Please use correct private key. |
Examples
HTTP Request
POST /api/private/v1.0/prices/ HTTP/1.1
Content-Type: application/json
X-API-Key: af90387c-9071-4015-9a58-cbb543d84130
Content-Length: 112
Host: booking.seatmap.pro
{
"id" : null,
"name" : "300",
"eventId" : "cc134d8f-a6c7-47b7-89d5-fd66081967e2",
"externalId" : null
}
cURL Request
$ curl 'https://booking.seatmap.pro/api/private/v1.0/prices/' -i -X POST \
-H 'Content-Type: application/json' \
-H 'X-API-Key: af90387c-9071-4015-9a58-cbb543d84130' \
-d '{
"id" : null,
"name" : "300",
"eventId" : "cc134d8f-a6c7-47b7-89d5-fd66081967e2",
"externalId" : null
}'
Response Body
{
"id" : 6,
"name" : "300",
"eventId" : "cc134d8f-a6c7-47b7-89d5-fd66081967e2",
"externalId" : null
}
3.4.3. priceDelete
DELETE /api/private/v1.0/prices/
Delete a price for event
|
Binds a price to event |
Body Parameter
Name |
Description |
Default |
Query Parameters
Name |
Description |
Default |
id* |
null |
Return Type
Boolean
Responses
Code |
Message |
Datatype |
200 |
Returns true if everything is ok. |
Boolean |
400 |
Input data is not valid |
Boolean |
403 |
Forbidden. Please use correct private key. |
Boolean |
Examples
HTTP Request
DELETE /api/private/v1.0/prices/ HTTP/1.1
Content-Type: application/json
X-API-Key: af90387c-9071-4015-9a58-cbb543d84130
Host: booking.seatmap.pro
cURL Request
$ curl 'https://booking.seatmap.pro/api/private/v1.0/prices/' -i -X DELETE \
-H 'Content-Type: application/json' \
-H 'X-API-Key: af90387c-9071-4015-9a58-cbb543d84130'
Response Body
true
3.4.4. priceUpdate
PUT /api/private/v1.0/prices/
Update a price for event
|
Binds a price to event |
Body Parameter
Name |
Description |
Default |
Price* |
Return Type
Responses
Code |
Message |
Datatype |
200 |
Returns updated object |
|
400 |
Input data is not valid |
|
403 |
Forbidden. Please use correct private key. |
Examples
HTTP Request
PUT /api/private/v1.0/prices/ HTTP/1.1
Content-Type: application/json
X-API-Key: af90387c-9071-4015-9a58-cbb543d84130
Content-Length: 112
Host: booking.seatmap.pro
{
"id" : 8,
"name" : "500555",
"eventId" : "8585b5d8-df06-4a63-a7b4-3e0aac05972a",
"externalId" : null
}
cURL Request
$ curl 'https://booking.seatmap.pro/api/private/v1.0/prices/' -i -X PUT \
-H 'Content-Type: application/json' \
-H 'X-API-Key: af90387c-9071-4015-9a58-cbb543d84130' \
-d '{
"id" : 8,
"name" : "500555",
"eventId" : "8585b5d8-df06-4a63-a7b4-3e0aac05972a",
"externalId" : null
}'
Response Body
{
"id" : 8,
"name" : "500555",
"eventId" : "8585b5d8-df06-4a63-a7b4-3e0aac05972a",
"externalId" : null
}
3.5. Venues
Provides descriptions of the existing venues and schemas
3.5.1. schemaAll
GET /api/private/v1.0/venues/schemas/
Retrieve list of all schemas
|
Getting all the schemas with paging |
Body Parameter
Name |
Description |
Default |
Query Parameters
Name |
Description |
Default |
limit |
Quantity of requested items |
50 |
offset |
Offset for the pager |
0 |
venueId |
Venue id |
null |
lastUpdated |
Schemas updated after this date will be retrieved. |
null |
Return Type
array[Schema]
Responses
Code |
Message |
Datatype |
200 |
Returns list of schemas |
List[Schema] |
400 |
Input data is not valid |
List[Schema] |
403 |
Forbidden. Please use correct private key. |
List[Schema] |
Examples
HTTP Request
GET /api/private/v1.0/venues/schemas/?lastUpdated=2006-09-04T08%3A08%3A20.867973407&venueId=68 HTTP/1.1
Content-Type: application/json
X-API-Key: af90387c-9071-4015-9a58-cbb543d84130
Host: booking.seatmap.pro
cURL Request
$ curl 'https://booking.seatmap.pro/api/private/v1.0/venues/schemas/?lastUpdated=2006-09-04T08%3A08%3A20.867973407&venueId=68' -i -X GET \
-H 'Content-Type: application/json' \
-H 'X-API-Key: af90387c-9071-4015-9a58-cbb543d84130'
Response Body
[ {
"id" : 80,
"capacity" : null,
"name" : "Country Road",
"venueId" : 68,
"eventId" : "b5feeb7d-c59b-4bf5-90b6-c25d6df0ac10"
} ]
3.5.2. schemaDetails
GET /api/private/v1.0/venues/schemas/{schemaId}/details/
Retrieve schema’s details
|
Getting schema’s details |
Body Parameter
Name |
Description |
Default |
Path Parameters
Name |
Description |
Default |
schemaId* |
null |
Return Type
Responses
Code |
Message |
Datatype |
200 |
Returns schema's details |
|
400 |
Input data is not valid |
|
403 |
Forbidden. Please use correct private key. |
Examples
HTTP Request
GET /api/private/v1.0/venues/schemas/80/details/ HTTP/1.1
Content-Type: application/json
X-API-Key: af90387c-9071-4015-9a58-cbb543d84130
Host: booking.seatmap.pro
cURL Request
$ curl 'https://booking.seatmap.pro/api/private/v1.0/venues/schemas/80/details/' -i -X GET \
-H 'Content-Type: application/json' \
-H 'X-API-Key: af90387c-9071-4015-9a58-cbb543d84130'
Response Body
{
"id" : 80,
"capacity" : 500,
"name" : "Country Road",
"venueId" : 68,
"eventId" : "b5feeb7d-c59b-4bf5-90b6-c25d6df0ac10"
}
3.5.3. schemaMetadata
GET /api/private/v1.0/venues/schemas/{schemaId}/
Retrieve schema’s metadata
|
Getting schema’s metadata with \\<\\<#composite-key, Composite Key\\>\\>s |
Body Parameter
Name |
Description |
Default |
Query Parameters
Name |
Description |
Default |
numberedSections |
false |
|
useInternalIds |
false |
Path Parameters
Name |
Description |
Default |
schemaId* |
null |
Return Type
Responses
Code |
Message |
Datatype |
200 |
Returns schema's metadata |
|
400 |
Input data is not valid |
|
403 |
Forbidden. Please use correct private key. |
Examples
HTTP Request
GET /api/private/v1.0/venues/schemas/80/ HTTP/1.1
Content-Type: application/json
X-API-Key: af90387c-9071-4015-9a58-cbb543d84130
Host: booking.seatmap.pro
cURL Request
$ curl 'https://booking.seatmap.pro/api/private/v1.0/venues/schemas/80/' -i -X GET \
-H 'Content-Type: application/json' \
-H 'X-API-Key: af90387c-9071-4015-9a58-cbb543d84130'
Response Body
{
"sectors" : [ {
"key" : "fan zone",
"name" : "fan zone",
"x" : 0,
"y" : 0,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "518e0583-2951-4cbd-a527-4fa57db8bd8b",
"rows" : [ ],
"id" : 212949,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -143,
"y" : -514,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "b5fcb4c7-61f5-4a2f-8e93-f8c6d4f0afdf",
"rows" : [ {
"key" : "Unnamed section;;4",
"name" : "4",
"seats" : [ {
"key" : "Unnamed section;;4;;7",
"name" : "7",
"x" : 15,
"y" : -346,
"ix" : 243,
"iy" : 103
} ]
}, {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;6",
"name" : "6",
"x" : 84,
"y" : -478,
"ix" : 159,
"iy" : 19
} ]
} ],
"id" : 1,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : 563,
"y" : -1140,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "eb912208-602e-467f-baa5-c26e298d44c2",
"rows" : [ {
"key" : "Unnamed section;;7",
"name" : "7",
"seats" : [ {
"key" : "Unnamed section;;7;;9",
"name" : "9",
"x" : 812,
"y" : -780,
"ix" : 383,
"iy" : 187
}, {
"key" : "Unnamed section;;7;;2",
"name" : "2",
"x" : 607,
"y" : -1114,
"ix" : -9,
"iy" : 187
} ]
}, {
"key" : "Unnamed section;;12",
"name" : "12",
"seats" : [ {
"key" : "Unnamed section;;12;;6",
"name" : "6",
"x" : 526,
"y" : -873,
"ix" : 159,
"iy" : 327
} ]
}, {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;23",
"name" : "23",
"x" : 1095,
"y" : -751,
"ix" : 551,
"iy" : 19
}, {
"key" : "Unnamed section;;1;;16",
"name" : "16",
"x" : 1010,
"y" : -928,
"ix" : 355,
"iy" : 19
} ]
}, {
"key" : "Unnamed section;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section;;5;;2",
"name" : "2",
"x" : 677,
"y" : -1155,
"ix" : -9,
"iy" : 131
}, {
"key" : "Unnamed section;;5;;11",
"name" : "11",
"x" : 907,
"y" : -771,
"ix" : 439,
"iy" : 131
}, {
"key" : "Unnamed section;;5;;12",
"name" : "12",
"x" : 919,
"y" : -746,
"ix" : 467,
"iy" : 131
} ]
} ],
"id" : 267,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -594,
"y" : 1822,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "050b617f-8d13-4669-bf6a-a40a1a319f61",
"rows" : [ {
"key" : "Unnamed section;;4",
"name" : "4",
"seats" : [ {
"key" : "Unnamed section;;4;;4",
"name" : "4",
"x" : -379,
"y" : 2005,
"ix" : 131,
"iy" : 103
}, {
"key" : "Unnamed section;;4;;8",
"name" : "8",
"x" : -413,
"y" : 2141,
"ix" : 271,
"iy" : 103
}, {
"key" : "Unnamed section;;4;;6",
"name" : "6",
"x" : -397,
"y" : 2087,
"ix" : 215,
"iy" : 103
} ]
}, {
"key" : "Unnamed section;;12",
"name" : "12",
"seats" : [ {
"key" : "Unnamed section;;12;;1",
"name" : "1",
"x" : -695,
"y" : 1913,
"ix" : 103,
"iy" : 327
} ]
}, {
"key" : "Unnamed section;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section;;2;;1",
"name" : "1",
"x" : -287,
"y" : 1910,
"ix" : 19,
"iy" : 47
} ]
}, {
"key" : "Unnamed section;;11",
"name" : "11",
"seats" : [ {
"key" : "Unnamed section;;11;;3",
"name" : "3",
"x" : -669,
"y" : 2004,
"ix" : 187,
"iy" : 299
} ]
} ],
"id" : 815,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -15,
"y" : 2074,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "50f88444-c5a1-40ae-a793-357246ec4eb1",
"rows" : [ {
"key" : "Unnamed section;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section;;2;;11",
"name" : "11",
"x" : 156,
"y" : 2303,
"ix" : 327,
"iy" : 47
}, {
"key" : "Unnamed section;;2;;12",
"name" : "12",
"x" : 147,
"y" : 2330,
"ix" : 355,
"iy" : 47
} ]
}, {
"key" : "Unnamed section;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section;;3;;5",
"name" : "5",
"x" : 162,
"y" : 2104,
"ix" : 131,
"iy" : 75
} ]
} ],
"id" : 816,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : 607,
"y" : 303,
"width" : 84,
"height" : 84,
"angle" : null,
"guid" : "ce97470b-dc70-4d42-9f8e-1e4bb165765e",
"rows" : [ {
"key" : "Unnamed section;;6",
"name" : "6",
"seats" : [ {
"key" : "Unnamed section;;6;;5",
"name" : "5",
"x" : -862,
"y" : 3098,
"ix" : 187,
"iy" : 159
} ]
}, {
"key" : "Unnamed section;;4",
"name" : "4",
"seats" : [ {
"key" : "Unnamed section;;4;;4",
"name" : "4",
"x" : -786,
"y" : 3157,
"ix" : 131,
"iy" : 103
} ]
}, {
"key" : "Unnamed section;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section;;3;;4",
"name" : "4",
"x" : -774,
"y" : 3196,
"ix" : 131,
"iy" : 75
} ]
} ],
"id" : 817,
"shapes" : [ {
"id" : null,
"width" : 84,
"height" : 84,
"top" : 303,
"left" : 607,
"angle" : null,
"groupOfSeatsGuid" : null,
"order" : null,
"text" : null,
"textPosition" : null,
"textColor" : null,
"fill" : null,
"fontScale" : null
} ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -196,
"y" : 3211,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "722dc184-4918-45d9-963f-a00dd6af6333",
"rows" : [ {
"key" : "Unnamed section;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section;;2;;2",
"name" : "2",
"x" : -147,
"y" : 3208,
"ix" : 47,
"iy" : 47
} ]
} ],
"id" : 820,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -500,
"y" : -219,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "e11e1628-5411-4fd7-a3ab-31b83717db9d",
"rows" : [ ],
"id" : 948,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -4723,
"y" : -1946,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "1b62eaa1-40b1-4c06-b3ee-cad529df5d17",
"rows" : [ {
"key" : "Unnamed section;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section;;5;;14",
"name" : "14",
"x" : -4325,
"y" : -1781,
"ix" : 383,
"iy" : 131
}, {
"key" : "Unnamed section;;5;;2",
"name" : "2",
"x" : -4650,
"y" : -1694,
"ix" : 47,
"iy" : 131
} ]
}, {
"key" : "Unnamed section;;7",
"name" : "7",
"seats" : [ {
"key" : "Unnamed section;;7;;7",
"name" : "7",
"x" : -4470,
"y" : -1665,
"ix" : 215,
"iy" : 187
}, {
"key" : "Unnamed section;;7;;5",
"name" : "5",
"x" : -4524,
"y" : -1650,
"ix" : 159,
"iy" : 187
} ]
}, {
"key" : "Unnamed section;;6",
"name" : "6",
"seats" : [ {
"key" : "Unnamed section;;6;;11",
"name" : "11",
"x" : -4371,
"y" : -1730,
"ix" : 327,
"iy" : 159
}, {
"key" : "Unnamed section;;6;;9",
"name" : "9",
"x" : -4426,
"y" : -1718,
"ix" : 271,
"iy" : 159
} ]
}, {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;3",
"name" : "3",
"x" : -4661,
"y" : -1862,
"ix" : 75,
"iy" : 19
} ]
}, {
"key" : "Unnamed section;;8",
"name" : "8",
"seats" : [ {
"key" : "Unnamed section;;8;;14",
"name" : "14",
"x" : -4270,
"y" : -1667,
"ix" : 411,
"iy" : 215
} ]
} ],
"id" : 949,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -6197,
"y" : -1293,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "ccba321f-e6ce-400f-af6c-be1f49c81218",
"rows" : [ {
"key" : "Unnamed section;;13",
"name" : "13",
"seats" : [ {
"key" : "Unnamed section;;13;;7",
"name" : "7",
"x" : -5633,
"y" : -863,
"ix" : 285,
"iy" : 355
}, {
"key" : "Unnamed section;;13;;9",
"name" : "9",
"x" : -5584,
"y" : -932,
"ix" : 369,
"iy" : 355
} ]
}, {
"key" : "Unnamed section;;8",
"name" : "8",
"seats" : [ {
"key" : "Unnamed section;;8;;13",
"name" : "13",
"x" : -5608,
"y" : -1224,
"ix" : 593,
"iy" : 215
} ]
}, {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;15",
"name" : "15",
"x" : -5955,
"y" : -1250,
"ix" : 411,
"iy" : 19
} ]
}, {
"key" : "Unnamed section;;14",
"name" : "14",
"seats" : [ {
"key" : "Unnamed section;;14;;2",
"name" : "2",
"x" : -5660,
"y" : -745,
"ix" : 173,
"iy" : 383
}, {
"key" : "Unnamed section;;14;;8",
"name" : "8",
"x" : -5551,
"y" : -908,
"ix" : 369,
"iy" : 383
} ]
}, {
"key" : "Unnamed section;;11",
"name" : "11",
"seats" : [ {
"key" : "Unnamed section;;11;;3",
"name" : "3",
"x" : -5759,
"y" : -816,
"ix" : 173,
"iy" : 299
}, {
"key" : "Unnamed section;;11;;9",
"name" : "9",
"x" : -5650,
"y" : -979,
"ix" : 369,
"iy" : 299
} ]
}, {
"key" : "Unnamed section;;6",
"name" : "6",
"seats" : [ {
"key" : "Unnamed section;;6;;9",
"name" : "9",
"x" : -5729,
"y" : -1208,
"ix" : 509,
"iy" : 159
} ]
}, {
"key" : "Unnamed section;;12",
"name" : "12",
"seats" : [ {
"key" : "Unnamed section;;12;;10",
"name" : "10",
"x" : -5601,
"y" : -978,
"ix" : 397,
"iy" : 327
}, {
"key" : "Unnamed section;;12;;4",
"name" : "4",
"x" : -5712,
"y" : -817,
"ix" : 201,
"iy" : 327
} ]
} ],
"id" : 950,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -5040,
"y" : -29,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "d028fba6-23e7-418a-ba4f-c3c2d78459a2",
"rows" : [ ],
"id" : 951,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : 265,
"y" : -844,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "7dcdce34-2c78-49d6-999c-ea805cfa676a",
"rows" : [ {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;2",
"name" : "2",
"x" : 246,
"y" : -755,
"ix" : -9,
"iy" : 75
} ]
} ],
"id" : 957,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -5890,
"y" : -264,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "c9600292-8f5e-48af-bb0d-fa91b60b696b",
"rows" : [ ],
"id" : 958,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -6541,
"y" : -405,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "c7aafcc7-04fd-47ef-96c4-f2b3e2173174",
"rows" : [ {
"key" : "Unnamed section;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section;;3;;6",
"name" : "6",
"x" : -6316,
"y" : -85,
"ix" : 201,
"iy" : 75
}, {
"key" : "Unnamed section;;3;;18",
"name" : "18",
"x" : -6242,
"y" : -413,
"ix" : 537,
"iy" : 75
}, {
"key" : "Unnamed section;;3;;9",
"name" : "9",
"x" : -6301,
"y" : -168,
"ix" : 285,
"iy" : 75
} ]
}, {
"key" : "Unnamed section;;13",
"name" : "13",
"seats" : [ {
"key" : "Unnamed section;;13;;13",
"name" : "13",
"x" : -5859,
"y" : -275,
"ix" : 481,
"iy" : 355
} ]
}, {
"key" : "Unnamed section;;8",
"name" : "8",
"seats" : [ {
"key" : "Unnamed section;;8;;3",
"name" : "3",
"x" : -6124,
"y" : 11,
"ix" : 145,
"iy" : 215
}, {
"key" : "Unnamed section;;8;;8",
"name" : "8",
"x" : -6058,
"y" : -317,
"ix" : 481,
"iy" : 215
} ]
}, {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;15",
"name" : "15",
"x" : -6354,
"y" : -308,
"ix" : 411,
"iy" : 19
}, {
"key" : "Unnamed section;;1;;4",
"name" : "4",
"x" : -6408,
"y" : -5,
"ix" : 103,
"iy" : 19
}, {
"key" : "Unnamed section;;1;;18",
"name" : "18",
"x" : -6333,
"y" : -390,
"ix" : 495,
"iy" : 19
} ]
}, {
"key" : "Unnamed section;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section;;2;;17",
"name" : "17",
"x" : -6293,
"y" : -381,
"ix" : 495,
"iy" : 47
} ]
}, {
"key" : "Unnamed section;;10",
"name" : "10",
"seats" : [ {
"key" : "Unnamed section;;10;;5",
"name" : "5",
"x" : -6037,
"y" : -26,
"ix" : 201,
"iy" : 271
}, {
"key" : "Unnamed section;;10;;6",
"name" : "6",
"x" : -6033,
"y" : -54,
"ix" : 229,
"iy" : 271
} ]
}, {
"key" : "Unnamed section;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section;;5;;5",
"name" : "5",
"x" : -6238,
"y" : -55,
"ix" : 187,
"iy" : 131
} ]
}, {
"key" : "Unnamed section;;7",
"name" : "7",
"seats" : [ {
"key" : "Unnamed section;;7;;12",
"name" : "12",
"x" : -6066,
"y" : -432,
"ix" : 593,
"iy" : 187
} ]
} ],
"id" : 959,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -3744,
"y" : -1507,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "3d951fe3-0321-4f6a-aa04-d90c3b4a3fe0",
"rows" : [ ],
"id" : 960,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -3833,
"y" : -1258,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "e245f143-e88e-4bec-b4b2-f4a2922b71f7",
"rows" : [ {
"key" : "Unnamed section;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section;;2;;9",
"name" : "9",
"x" : -3590,
"y" : -1190,
"ix" : 243,
"iy" : 47
} ]
} ],
"id" : 961,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -5506,
"y" : -146,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "46929414-e739-4c1e-98a4-bccc7219a63d",
"rows" : [ {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;10",
"name" : "10",
"x" : -5348,
"y" : -179,
"ix" : 299,
"iy" : 19
} ]
}, {
"key" : "Unnamed section;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section;;2;;9",
"name" : "9",
"x" : -5317,
"y" : -143,
"ix" : 271,
"iy" : 47
}, {
"key" : "Unnamed section;;2;;5",
"name" : "5",
"x" : -5351,
"y" : -7,
"ix" : 131,
"iy" : 47
} ]
} ],
"id" : 963,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy",
"name" : "Unnamed section copy",
"x" : -5599,
"y" : -924,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "03ade4b6-092e-4aa0-9093-149e43d75dee",
"rows" : [ {
"key" : "Unnamed section copy;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section copy;;1;;7",
"name" : "7",
"x" : -5342,
"y" : -916,
"ix" : 271,
"iy" : 19
} ]
}, {
"key" : "Unnamed section copy;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section copy;;2;;6",
"name" : "6",
"x" : -5347,
"y" : -847,
"ix" : 215,
"iy" : 47
} ]
} ],
"id" : 964,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy",
"name" : "Unnamed section copy",
"x" : 432,
"y" : -206,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "c134f720-6f4e-464b-928a-38901c50a173",
"rows" : [ ],
"id" : 965,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -515,
"y" : 2947,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "51609826-930a-44aa-8fbd-bc2dd9fc78fb",
"rows" : [ {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;9",
"name" : "9",
"x" : -387,
"y" : 3134,
"ix" : 243,
"iy" : 19
}, {
"key" : "Unnamed section;;1;;11",
"name" : "11",
"x" : -433,
"y" : 3165,
"ix" : 299,
"iy" : 19
} ]
} ],
"id" : 967,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -3892,
"y" : -1826,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "6077bfaa-2e81-4162-83b6-858f6d669231",
"rows" : [ {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;20",
"name" : "20",
"x" : -3313,
"y" : -1798,
"ix" : 579,
"iy" : 19
} ]
}, {
"key" : "Unnamed section;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section;;2;;4",
"name" : "4",
"x" : -3789,
"y" : -1758,
"ix" : 103,
"iy" : 47
} ]
}, {
"key" : "Unnamed section;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section;;3;;15",
"name" : "15",
"x" : -3425,
"y" : -1717,
"ix" : 467,
"iy" : 75
} ]
} ],
"id" : 968,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -1251,
"y" : 2424,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "3992ad00-7287-404a-b618-04e4a2e34435",
"rows" : [ {
"key" : "Unnamed section;;11",
"name" : "11",
"seats" : [ {
"key" : "Unnamed section;;11;;3",
"name" : "3",
"x" : -1148,
"y" : 2318,
"ix" : 173,
"iy" : 299
}, {
"key" : "Unnamed section;;11;;4",
"name" : "4",
"x" : -1175,
"y" : 2324,
"ix" : 201,
"iy" : 299
} ]
} ],
"id" : 972,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -3812,
"y" : -1253,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "0cc353b6-e6e6-40be-a596-730d10ad1a94",
"rows" : [ {
"key" : "Unnamed section;;4",
"name" : "4",
"seats" : [ {
"key" : "Unnamed section;;4;;21",
"name" : "21",
"x" : -2953,
"y" : -1103,
"ix" : 859,
"iy" : 103
}, {
"key" : "Unnamed section;;4;;19",
"name" : "19",
"x" : -3009,
"y" : -1103,
"ix" : 803,
"iy" : 103
} ]
}, {
"key" : "Unnamed section;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section;;3;;26",
"name" : "26",
"x" : -2981,
"y" : -1144,
"ix" : 831,
"iy" : 75
} ]
}, {
"key" : "Unnamed section;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section;;2;;17",
"name" : "17",
"x" : -3317,
"y" : -1184,
"ix" : 495,
"iy" : 47
}, {
"key" : "Unnamed section;;2;;22",
"name" : "22",
"x" : -3093,
"y" : -1184,
"ix" : 719,
"iy" : 47
} ]
}, {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;21",
"name" : "21",
"x" : -3121,
"y" : -1225,
"ix" : 691,
"iy" : 19
} ]
}, {
"key" : "Unnamed section;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section;;5;;21",
"name" : "21",
"x" : -2953,
"y" : -1063,
"ix" : 859,
"iy" : 131
} ]
}, {
"key" : "Unnamed section;;6",
"name" : "6",
"seats" : [ {
"key" : "Unnamed section;;6;;15",
"name" : "15",
"x" : -3373,
"y" : -1022,
"ix" : 439,
"iy" : 159
}, {
"key" : "Unnamed section;;6;;11",
"name" : "11",
"x" : -3485,
"y" : -1022,
"ix" : 327,
"iy" : 159
} ]
} ],
"id" : 973,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -3828,
"y" : -722,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "5e707cc8-5b5e-4c95-b87a-c6f827ef9000",
"rows" : [ {
"key" : "Unnamed section;;7",
"name" : "7",
"seats" : [ {
"key" : "Unnamed section;;7;;2",
"name" : "2",
"x" : -3809,
"y" : -451,
"ix" : 19,
"iy" : 187
} ]
}, {
"key" : "Unnamed section;;8",
"name" : "8",
"seats" : [ {
"key" : "Unnamed section;;8;;10",
"name" : "10",
"x" : -3585,
"y" : -410,
"ix" : 243,
"iy" : 215
} ]
}, {
"key" : "Unnamed section;;11",
"name" : "11",
"seats" : [ {
"key" : "Unnamed section;;11;;6",
"name" : "6",
"x" : -3697,
"y" : -288,
"ix" : 131,
"iy" : 299
} ]
} ],
"id" : 975,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -2918,
"y" : -269,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "8ca4f25b-c8e2-4019-8eff-1b9fc826d8a8",
"rows" : [ {
"key" : "Unnamed section;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section;;2;;15",
"name" : "15",
"x" : -2339,
"y" : -201,
"ix" : 579,
"iy" : 47
}, {
"key" : "Unnamed section;;2;;11",
"name" : "11",
"x" : -2451,
"y" : -201,
"ix" : 467,
"iy" : 47
} ]
}, {
"key" : "Unnamed section;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section;;3;;20",
"name" : "20",
"x" : -2087,
"y" : -160,
"ix" : 831,
"iy" : 75
} ]
}, {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;4",
"name" : "4",
"x" : -2983,
"y" : -242,
"ix" : -65,
"iy" : 19
}, {
"key" : "Unnamed section;;1;;10",
"name" : "10",
"x" : -2703,
"y" : -242,
"ix" : 215,
"iy" : 19
}, {
"key" : "Unnamed section;;1;;18",
"name" : "18",
"x" : -2143,
"y" : -242,
"ix" : 775,
"iy" : 19
}, {
"key" : "Unnamed section;;1;;19",
"name" : "19",
"x" : -2115,
"y" : -242,
"ix" : 803,
"iy" : 19
}, {
"key" : "Unnamed section;;1;;15",
"name" : "15",
"x" : -2339,
"y" : -242,
"ix" : 579,
"iy" : 19
}, {
"key" : "Unnamed section;;1;;14",
"name" : "14",
"x" : -2367,
"y" : -242,
"ix" : 551,
"iy" : 19
}, {
"key" : "Unnamed section;;1;;20",
"name" : "20",
"x" : -2087,
"y" : -242,
"ix" : 831,
"iy" : 19
} ]
} ],
"id" : 991,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy",
"name" : "Unnamed section copy",
"x" : -1925,
"y" : -1502,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "61c43aed-9712-4c56-97b2-0173d697ada3",
"rows" : [ ],
"id" : 992,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -886,
"y" : 3743,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "48d73ee1-f252-4da7-8151-8409db803676",
"rows" : [ {
"key" : "Unnamed section;;7",
"name" : "7",
"seats" : [ {
"key" : "Unnamed section;;7;;18",
"name" : "18",
"x" : -907,
"y" : 3776,
"ix" : 523,
"iy" : 187
}, {
"key" : "Unnamed section;;7;;12",
"name" : "12",
"x" : -743,
"y" : 3737,
"ix" : 355,
"iy" : 187
} ]
}, {
"key" : "Unnamed section;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section;;5;;13",
"name" : "13",
"x" : -718,
"y" : 3815,
"ix" : 355,
"iy" : 131
} ]
}, {
"key" : "Unnamed section;;6",
"name" : "6",
"seats" : [ {
"key" : "Unnamed section;;6;;7",
"name" : "7",
"x" : -597,
"y" : 3733,
"ix" : 215,
"iy" : 159
} ]
} ],
"id" : 993,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy",
"name" : "Unnamed section copy",
"x" : -2846,
"y" : -736,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "3b92102a-fb1a-4cd2-978a-1e2fc876650e",
"rows" : [ {
"key" : "Unnamed section copy;;12",
"name" : "12",
"seats" : [ {
"key" : "Unnamed section copy;;12;;3",
"name" : "3",
"x" : -2799,
"y" : -99,
"ix" : 47,
"iy" : 439
} ]
}, {
"key" : "Unnamed section copy;;6",
"name" : "6",
"seats" : [ {
"key" : "Unnamed section copy;;6;;16",
"name" : "16",
"x" : -2407,
"y" : -505,
"ix" : 439,
"iy" : 159
} ]
}, {
"key" : "Unnamed section copy;;11",
"name" : "11",
"seats" : [ {
"key" : "Unnamed section copy;;11;;13",
"name" : "13",
"x" : -2491,
"y" : -302,
"ix" : 355,
"iy" : 299
} ]
}, {
"key" : "Unnamed section copy;;10",
"name" : "10",
"seats" : [ {
"key" : "Unnamed section copy;;10;;3",
"name" : "3",
"x" : -2799,
"y" : -343,
"ix" : 47,
"iy" : 271
} ]
}, {
"key" : "Unnamed section copy;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section copy;;3;;16",
"name" : "16",
"x" : -2407,
"y" : -627,
"ix" : 439,
"iy" : 75
} ]
}, {
"key" : "Unnamed section copy;;13",
"name" : "13",
"seats" : [ {
"key" : "Unnamed section copy;;13;;2",
"name" : "2",
"x" : -2827,
"y" : -59,
"ix" : 19,
"iy" : 467
}, {
"key" : "Unnamed section copy;;13;;1",
"name" : "1",
"x" : -2855,
"y" : -59,
"ix" : -9,
"iy" : 467
} ]
}, {
"key" : "Unnamed section copy;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section copy;;1;;9",
"name" : "9",
"x" : -2631,
"y" : -708,
"ix" : 215,
"iy" : 19
}, {
"key" : "Unnamed section copy;;1;;8",
"name" : "8",
"x" : -2659,
"y" : -708,
"ix" : 187,
"iy" : 19
} ]
} ],
"id" : 994,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -177,
"y" : 3492,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "ac7a5ec8-4777-4ca8-83bd-5da818d13095",
"rows" : [ {
"key" : "Unnamed section;;6",
"name" : "6",
"seats" : [ {
"key" : "Unnamed section;;6;;8",
"name" : "8",
"x" : 6,
"y" : 3760,
"ix" : 481,
"iy" : 159
}, {
"key" : "Unnamed section;;6;;1",
"name" : "1",
"x" : 311,
"y" : 3515,
"ix" : 89,
"iy" : 159
} ]
}, {
"key" : "Unnamed section;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section;;2;;8",
"name" : "8",
"x" : 285,
"y" : 3755,
"ix" : 257,
"iy" : 47
}, {
"key" : "Unnamed section;;2;;7",
"name" : "7",
"x" : 306,
"y" : 3737,
"ix" : 229,
"iy" : 47
} ]
}, {
"key" : "Unnamed section;;9",
"name" : "9",
"seats" : [ {
"key" : "Unnamed section;;9;;7",
"name" : "7",
"x" : -91,
"y" : 3678,
"ix" : 509,
"iy" : 243
} ]
}, {
"key" : "Unnamed section;;11",
"name" : "11",
"seats" : [ {
"key" : "Unnamed section;;11;;17",
"name" : "17",
"x" : -188,
"y" : 3643,
"ix" : 565,
"iy" : 299
} ]
}, {
"key" : "Unnamed section;;7",
"name" : "7",
"seats" : [ {
"key" : "Unnamed section;;7;;14",
"name" : "14",
"x" : -137,
"y" : 3802,
"ix" : 621,
"iy" : 187
} ]
}, {
"key" : "Unnamed section;;12",
"name" : "12",
"seats" : [ {
"key" : "Unnamed section;;12;;12",
"name" : "12",
"x" : -119,
"y" : 3551,
"ix" : 453,
"iy" : 327
} ]
} ],
"id" : 995,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -3819,
"y" : -504,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "d03f9283-9cd1-4aa0-9528-c103abd3cd6b",
"rows" : [ {
"key" : "Unnamed section;;9",
"name" : "9",
"seats" : [ {
"key" : "Unnamed section;;9;;2",
"name" : "2",
"x" : -3492,
"y" : -152,
"ix" : 327,
"iy" : 243
} ]
}, {
"key" : "Unnamed section;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section;;3;;20",
"name" : "20",
"x" : -2960,
"y" : -639,
"ix" : 859,
"iy" : -93
}, {
"key" : "Unnamed section;;3;;17",
"name" : "17",
"x" : -3044,
"y" : -639,
"ix" : 775,
"iy" : -93
} ]
}, {
"key" : "Unnamed section;;6",
"name" : "6",
"seats" : [ {
"key" : "Unnamed section;;6;;17",
"name" : "17",
"x" : -3044,
"y" : -517,
"ix" : 775,
"iy" : -9
}, {
"key" : "Unnamed section;;6;;12",
"name" : "12",
"x" : -3184,
"y" : -517,
"ix" : 635,
"iy" : -9
}, {
"key" : "Unnamed section;;6;;7",
"name" : "7",
"x" : -3352,
"y" : -273,
"ix" : 467,
"iy" : 159
} ]
}, {
"key" : "Unnamed section;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section;;5;;15",
"name" : "15",
"x" : -3100,
"y" : -558,
"ix" : 719,
"iy" : -37
} ]
}, {
"key" : "Unnamed section;;11",
"name" : "11",
"seats" : [ {
"key" : "Unnamed section;;11;;17",
"name" : "17",
"x" : -2988,
"y" : -70,
"ix" : 831,
"iy" : 299
}, {
"key" : "Unnamed section;;11;;11",
"name" : "11",
"x" : -3156,
"y" : -70,
"ix" : 663,
"iy" : 299
}, {
"key" : "Unnamed section;;11;;9",
"name" : "9",
"x" : -3296,
"y" : -70,
"ix" : 523,
"iy" : 299
} ]
}, {
"key" : "Unnamed section;;10",
"name" : "10",
"seats" : [ {
"key" : "Unnamed section;;10;;14",
"name" : "14",
"x" : -3128,
"y" : -355,
"ix" : 691,
"iy" : 103
}, {
"key" : "Unnamed section;;10;;10",
"name" : "10",
"x" : -3268,
"y" : -111,
"ix" : 551,
"iy" : 271
} ]
}, {
"key" : "Unnamed section;;7",
"name" : "7",
"seats" : [ {
"key" : "Unnamed section;;7;;19",
"name" : "19",
"x" : -2988,
"y" : -476,
"ix" : 831,
"iy" : 19
}, {
"key" : "Unnamed section;;7;;13",
"name" : "13",
"x" : -3156,
"y" : -476,
"ix" : 663,
"iy" : 19
}, {
"key" : "Unnamed section;;7;;11",
"name" : "11",
"x" : -3212,
"y" : -476,
"ix" : 607,
"iy" : 19
}, {
"key" : "Unnamed section;;7;;6",
"name" : "6",
"x" : -3380,
"y" : -233,
"ix" : 439,
"iy" : 187
} ]
} ],
"id" : 996,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy",
"name" : "Unnamed section copy",
"x" : -2032,
"y" : -1825,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "a6d7dfc4-30c7-45d0-9203-811d814055eb",
"rows" : [ {
"key" : "Unnamed section copy;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section copy;;1;;17",
"name" : "17",
"x" : -1537,
"y" : -1798,
"ix" : 495,
"iy" : 19
}, {
"key" : "Unnamed section copy;;1;;22",
"name" : "22",
"x" : -1397,
"y" : -1798,
"ix" : 635,
"iy" : 19
} ]
}, {
"key" : "Unnamed section copy;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section copy;;3;;23",
"name" : "23",
"x" : -1369,
"y" : -1716,
"ix" : 663,
"iy" : 75
} ]
} ],
"id" : 1001,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy copy",
"name" : "Unnamed section copy copy",
"x" : -1795,
"y" : 3491,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "48c50d0b-5714-48bb-a8ca-2d191ce01f8b",
"rows" : [ ],
"id" : 1042,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : 383,
"y" : 2970,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "666a0613-4771-4744-8f3c-b27530b38ff5",
"rows" : [ {
"key" : "Unnamed section;;4",
"name" : "4",
"seats" : [ {
"key" : "Unnamed section;;4;;14",
"name" : "14",
"x" : 606,
"y" : 3408,
"ix" : 593,
"iy" : 103
} ]
}, {
"key" : "Unnamed section;;13",
"name" : "13",
"seats" : [ {
"key" : "Unnamed section;;13;;5",
"name" : "5",
"x" : 511,
"y" : 2909,
"ix" : 229,
"iy" : 355
} ]
}, {
"key" : "Unnamed section;;14",
"name" : "14",
"seats" : [ {
"key" : "Unnamed section;;14;;1",
"name" : "1",
"x" : 519,
"y" : 2814,
"ix" : 145,
"iy" : 383
} ]
}, {
"key" : "Unnamed section;;12",
"name" : "12",
"seats" : [ {
"key" : "Unnamed section;;12;;12",
"name" : "12",
"x" : 421,
"y" : 3118,
"ix" : 453,
"iy" : 327
} ]
}, {
"key" : "Unnamed section;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section;;3;;17",
"name" : "17",
"x" : 692,
"y" : 3365,
"ix" : 509,
"iy" : 75
} ]
}, {
"key" : "Unnamed section;;6",
"name" : "6",
"seats" : [ {
"key" : "Unnamed section;;6;;8",
"name" : "8",
"x" : 608,
"y" : 3275,
"ix" : 481,
"iy" : 159
} ]
}, {
"key" : "Unnamed section;;11",
"name" : "11",
"seats" : [ {
"key" : "Unnamed section;;11;;9",
"name" : "9",
"x" : 504,
"y" : 3072,
"ix" : 369,
"iy" : 299
}, {
"key" : "Unnamed section;;11;;10",
"name" : "10",
"x" : 488,
"y" : 3095,
"ix" : 397,
"iy" : 299
} ]
}, {
"key" : "Unnamed section;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section;;5;;13",
"name" : "13",
"x" : 572,
"y" : 3385,
"ix" : 593,
"iy" : 131
} ]
} ],
"id" : 1044,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -2473,
"y" : -737,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "3c852dd7-2322-4757-a770-9e86fb840b6d",
"rows" : [ {
"key" : "Unnamed section;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section;;5;;30",
"name" : "30",
"x" : -1614,
"y" : -303,
"ix" : 859,
"iy" : 299
} ]
}, {
"key" : "Unnamed section;;4",
"name" : "4",
"seats" : [ {
"key" : "Unnamed section;;4;;22",
"name" : "22",
"x" : -1838,
"y" : -344,
"ix" : 635,
"iy" : 271
}, {
"key" : "Unnamed section;;4;;12",
"name" : "12",
"x" : -2146,
"y" : -587,
"ix" : 327,
"iy" : 103
} ]
}, {
"key" : "Unnamed section;;8",
"name" : "8",
"seats" : [ {
"key" : "Unnamed section;;8;;12",
"name" : "12",
"x" : -2146,
"y" : -425,
"ix" : 327,
"iy" : 215
} ]
}, {
"key" : "Unnamed section;;6",
"name" : "6",
"seats" : [ {
"key" : "Unnamed section;;6;;30",
"name" : "30",
"x" : -1614,
"y" : -262,
"ix" : 859,
"iy" : 327
} ]
}, {
"key" : "Unnamed section;;11",
"name" : "11",
"seats" : [ {
"key" : "Unnamed section;;11;;28",
"name" : "28",
"x" : -1922,
"y" : -59,
"ix" : 551,
"iy" : 467
}, {
"key" : "Unnamed section;;11;;23",
"name" : "23",
"x" : -2062,
"y" : -59,
"ix" : 411,
"iy" : 467
} ]
} ],
"id" : 1045,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy",
"name" : "Unnamed section copy",
"x" : -2533,
"y" : 2195,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "c94a0ca2-c793-420c-bc7c-452a9bcbd0b4",
"rows" : [ {
"key" : "Unnamed section copy;;10",
"name" : "10",
"seats" : [ {
"key" : "Unnamed section copy;;10;;28",
"name" : "28",
"x" : -1702,
"y" : 2588,
"ix" : 831,
"iy" : 271
} ]
}, {
"key" : "Unnamed section copy;;11",
"name" : "11",
"seats" : [ {
"key" : "Unnamed section copy;;11;;25",
"name" : "25",
"x" : -1786,
"y" : 2629,
"ix" : 747,
"iy" : 299
}, {
"key" : "Unnamed section copy;;11;;24",
"name" : "24",
"x" : -1814,
"y" : 2629,
"ix" : 719,
"iy" : 299
} ]
}, {
"key" : "Unnamed section copy;;8",
"name" : "8",
"seats" : [ {
"key" : "Unnamed section copy;;8;;28",
"name" : "28",
"x" : -1702,
"y" : 2507,
"ix" : 831,
"iy" : 215
}, {
"key" : "Unnamed section copy;;8;;23",
"name" : "23",
"x" : -1842,
"y" : 2507,
"ix" : 691,
"iy" : 215
} ]
}, {
"key" : "Unnamed section copy;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section copy;;2;;20",
"name" : "20",
"x" : -1954,
"y" : 2263,
"ix" : 579,
"iy" : 47
} ]
} ],
"id" : 1046,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -3102,
"y" : -1501,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "8be9ab3b-cde6-4b22-a6b3-1a731d0c4fb8",
"rows" : [ ],
"id" : 1049,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy copy",
"name" : "Unnamed section copy copy",
"x" : -3041,
"y" : 3500,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "4b345354-ad14-48ee-889f-3807692ec972",
"rows" : [ {
"key" : "Unnamed section copy copy;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section copy copy;;2;;7",
"name" : "7",
"x" : -2826,
"y" : 3569,
"ix" : 215,
"iy" : 47
} ]
} ],
"id" : 1050,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -203,
"y" : 2578,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "b9a283ae-3f10-4242-8a52-c5b9cf7dcb9a",
"rows" : [ {
"key" : "Unnamed section;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section;;3;;2",
"name" : "2",
"x" : 24,
"y" : 2561,
"ix" : 75,
"iy" : 75
} ]
}, {
"key" : "Unnamed section;;6",
"name" : "6",
"seats" : [ {
"key" : "Unnamed section;;6;;9",
"name" : "9",
"x" : -200,
"y" : 2682,
"ix" : 299,
"iy" : 159
} ]
} ],
"id" : 1051,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : 263,
"y" : 2696,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "962fe5d8-fe6b-4704-859b-e3293b99270c",
"rows" : [ ],
"id" : 1052,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : 726,
"y" : 2129,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "5006d62d-5a2c-439f-be67-506fd353fdc3",
"rows" : [ {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;19",
"name" : "19",
"x" : 1195,
"y" : 2541,
"ix" : 523,
"iy" : 19
}, {
"key" : "Unnamed section;;1;;6",
"name" : "6",
"x" : 1267,
"y" : 2185,
"ix" : 159,
"iy" : 19
} ]
}, {
"key" : "Unnamed section;;12",
"name" : "12",
"seats" : [ {
"key" : "Unnamed section;;12;;10",
"name" : "10",
"x" : 788,
"y" : 2330,
"ix" : 397,
"iy" : 327
} ]
}, {
"key" : "Unnamed section;;7",
"name" : "7",
"seats" : [ {
"key" : "Unnamed section;;7;;13",
"name" : "13",
"x" : 926,
"y" : 2586,
"ix" : 621,
"iy" : 187
} ]
}, {
"key" : "Unnamed section;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section;;2;;4",
"name" : "4",
"x" : 1232,
"y" : 2135,
"ix" : 117,
"iy" : 47
} ]
}, {
"key" : "Unnamed section;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section;;5;;14",
"name" : "14",
"x" : 1007,
"y" : 2603,
"ix" : 621,
"iy" : 131
} ]
}, {
"key" : "Unnamed section;;10",
"name" : "10",
"seats" : [ {
"key" : "Unnamed section;;10;;4",
"name" : "4",
"x" : 906,
"y" : 2126,
"ix" : 173,
"iy" : 271
}, {
"key" : "Unnamed section;;10;;5",
"name" : "5",
"x" : 903,
"y" : 2154,
"ix" : 201,
"iy" : 271
} ]
}, {
"key" : "Unnamed section;;11",
"name" : "11",
"seats" : [ {
"key" : "Unnamed section;;11;;13",
"name" : "13",
"x" : 807,
"y" : 2420,
"ix" : 481,
"iy" : 299
} ]
} ],
"id" : 1067,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -574,
"y" : 2350,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "347db117-3813-4771-885a-3f2c65a04af8",
"rows" : [ ],
"id" : 1080,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : 460,
"y" : 2020,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "aa454777-78d7-4dba-a918-36a080f25a51",
"rows" : [ ],
"id" : 1081,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -4772,
"y" : 3787,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "fed35dd6-9650-4d69-91f0-6ea6af6001c1",
"rows" : [ {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;1",
"name" : "1",
"x" : -4685,
"y" : 3941,
"ix" : 439,
"iy" : 19
} ]
}, {
"key" : "Unnamed section;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section;;3;;10",
"name" : "10",
"x" : -4637,
"y" : 3871,
"ix" : 411,
"iy" : 75
} ]
}, {
"key" : "Unnamed section;;4",
"name" : "4",
"seats" : [ {
"key" : "Unnamed section;;4;;11",
"name" : "11",
"x" : -4520,
"y" : 3866,
"ix" : 299,
"iy" : 103
} ]
}, {
"key" : "Unnamed section;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section;;5;;16",
"name" : "16",
"x" : -4643,
"y" : 3784,
"ix" : 439,
"iy" : 131
} ]
} ],
"id" : 1082,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -2435,
"y" : -1508,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "8d608254-1578-4341-ad0e-99964a5ba5af",
"rows" : [ {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;8",
"name" : "8",
"x" : -2192,
"y" : -1480,
"ix" : 243,
"iy" : 19
} ]
}, {
"key" : "Unnamed section;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section;;2;;10",
"name" : "10",
"x" : -2136,
"y" : -1440,
"ix" : 299,
"iy" : 47
} ]
} ],
"id" : 1084,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -1886,
"y" : -1502,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "ef491643-c276-41c2-880f-201a9a86c7d5",
"rows" : [ {
"key" : "Unnamed section;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section;;2;;12",
"name" : "12",
"x" : -1531,
"y" : -1434,
"ix" : 355,
"iy" : 47
} ]
} ],
"id" : 1085,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -4471,
"y" : 3141,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "640e2764-67fb-4f95-a425-e9e0700e9131",
"rows" : [ {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;8",
"name" : "8",
"x" : -4271,
"y" : 3293,
"ix" : 187,
"iy" : 19
}, {
"key" : "Unnamed section;;1;;2",
"name" : "2",
"x" : -4105,
"y" : 3320,
"ix" : 19,
"iy" : 19
} ]
}, {
"key" : "Unnamed section;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section;;2;;4",
"name" : "4",
"x" : -4179,
"y" : 3269,
"ix" : 103,
"iy" : 47
} ]
}, {
"key" : "Unnamed section;;6",
"name" : "6",
"seats" : [ {
"key" : "Unnamed section;;6;;1",
"name" : "1",
"x" : -4087,
"y" : 3117,
"ix" : 47,
"iy" : 159
} ]
} ],
"id" : 1086,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -5107,
"y" : 3229,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "b5b3669e-b7fa-496f-898c-c0fc8615a63b",
"rows" : [ {
"key" : "Unnamed section;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section;;2;;2",
"name" : "2",
"x" : -5013,
"y" : 3243,
"ix" : 47,
"iy" : 47
} ]
} ],
"id" : 1088,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -4910,
"y" : 2955,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "efd2bba2-69e7-4663-9277-d6b8ecb19bcd",
"rows" : [ {
"key" : "Unnamed section;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section;;2;;5",
"name" : "5",
"x" : -4687,
"y" : 3091,
"ix" : 131,
"iy" : 47
}, {
"key" : "Unnamed section;;2;;2",
"name" : "2",
"x" : -4613,
"y" : 3132,
"ix" : 47,
"iy" : 47
} ]
} ],
"id" : 1090,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -1073,
"y" : -1196,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "d033d1c9-0ad2-4e57-bbb9-361b0fb81bab",
"rows" : [ {
"key" : "Unnamed section;;6",
"name" : "6",
"seats" : [ {
"key" : "Unnamed section;;6;;10",
"name" : "10",
"x" : -825,
"y" : -1032,
"ix" : 299,
"iy" : 103
} ]
}, {
"key" : "Unnamed section;;8",
"name" : "8",
"seats" : [ {
"key" : "Unnamed section;;8;;1",
"name" : "1",
"x" : -974,
"y" : -1529,
"ix" : 19,
"iy" : -205
} ]
}, {
"key" : "Unnamed section;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section;;3;;8",
"name" : "8",
"x" : -905,
"y" : -1057,
"ix" : 215,
"iy" : 103
}, {
"key" : "Unnamed section;;3;;10",
"name" : "10",
"x" : -851,
"y" : -1041,
"ix" : 271,
"iy" : 103
} ]
}, {
"key" : "Unnamed section;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section;;5;;6",
"name" : "6",
"x" : -848,
"y" : -1462,
"ix" : 159,
"iy" : -177
} ]
} ],
"id" : 1091,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -1845,
"y" : -746,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "e7e6652d-0ec1-4e99-959f-2815823fc567",
"rows" : [ {
"key" : "Unnamed section;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section;;5;;15",
"name" : "15",
"x" : -1434,
"y" : -556,
"ix" : 411,
"iy" : 131
} ]
}, {
"key" : "Unnamed section;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section;;3;;21",
"name" : "21",
"x" : -1238,
"y" : -637,
"ix" : 607,
"iy" : 75
} ]
}, {
"key" : "Unnamed section;;9",
"name" : "9",
"seats" : [ {
"key" : "Unnamed section;;9;;15",
"name" : "15",
"x" : -1434,
"y" : -394,
"ix" : 411,
"iy" : 243
} ]
}, {
"key" : "Unnamed section;;6",
"name" : "6",
"seats" : [ {
"key" : "Unnamed section;;6;;12",
"name" : "12",
"x" : -1518,
"y" : -516,
"ix" : 327,
"iy" : 159
} ]
}, {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;11",
"name" : "11",
"x" : -1546,
"y" : -719,
"ix" : 299,
"iy" : 19
} ]
} ],
"id" : 1092,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -907,
"y" : 2302,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "7249aa4c-6f49-4e90-8c71-6fa307f64f69",
"rows" : [ {
"key" : "Unnamed section;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section;;3;;7",
"name" : "7",
"x" : -757,
"y" : 2624,
"ix" : 243,
"iy" : 75
} ]
}, {
"key" : "Unnamed section;;4",
"name" : "4",
"seats" : [ {
"key" : "Unnamed section;;4;;7",
"name" : "7",
"x" : -783,
"y" : 2593,
"ix" : 243,
"iy" : 103
} ]
}, {
"key" : "Unnamed section;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section;;5;;8",
"name" : "8",
"x" : -832,
"y" : 2576,
"ix" : 271,
"iy" : 131
} ]
}, {
"key" : "Unnamed section;;10",
"name" : "10",
"seats" : [ {
"key" : "Unnamed section;;10;;1",
"name" : "1",
"x" : -826,
"y" : 2316,
"ix" : 103,
"iy" : 271
} ]
}, {
"key" : "Unnamed section;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section;;2;;4",
"name" : "4",
"x" : -643,
"y" : 2588,
"ix" : 131,
"iy" : 47
} ]
} ],
"id" : 1094,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -486,
"y" : -949,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "7f7d0937-1832-4ad7-858e-e7b6403e3036",
"rows" : [ {
"key" : "Unnamed section;;6",
"name" : "6",
"seats" : [ {
"key" : "Unnamed section;;6;;9",
"name" : "9",
"x" : -254,
"y" : -885,
"ix" : 271,
"iy" : 19
}, {
"key" : "Unnamed section;;6;;5",
"name" : "5",
"x" : -363,
"y" : -972,
"ix" : 131,
"iy" : 19
} ]
}, {
"key" : "Unnamed section;;4",
"name" : "4",
"seats" : [ {
"key" : "Unnamed section;;4;;5",
"name" : "5",
"x" : -369,
"y" : -875,
"ix" : 187,
"iy" : 75
} ]
}, {
"key" : "Unnamed section;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section;;3;;4",
"name" : "4",
"x" : -289,
"y" : -752,
"ix" : 327,
"iy" : 103
} ]
} ],
"id" : 1098,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -1777,
"y" : -1252,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "7a2b77c7-965e-46f6-9186-900966255cc9",
"rows" : [ {
"key" : "Unnamed section;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section;;5;;12",
"name" : "12",
"x" : -1450,
"y" : -1062,
"ix" : 327,
"iy" : 131
} ]
}, {
"key" : "Unnamed section;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section;;2;;20",
"name" : "20",
"x" : -1198,
"y" : -1183,
"ix" : 579,
"iy" : 47
} ]
}, {
"key" : "Unnamed section;;6",
"name" : "6",
"seats" : [ {
"key" : "Unnamed section;;6;;15",
"name" : "15",
"x" : -1366,
"y" : -1021,
"ix" : 411,
"iy" : 159
} ]
}, {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;10",
"name" : "10",
"x" : -1506,
"y" : -1224,
"ix" : 271,
"iy" : 19
}, {
"key" : "Unnamed section;;1;;11",
"name" : "11",
"x" : -1478,
"y" : -1224,
"ix" : 299,
"iy" : 19
} ]
} ],
"id" : 1099,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -4569,
"y" : 2448,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "4217ac3e-4ed5-48d0-bed7-32281b8b60c7",
"rows" : [ ],
"id" : 1148,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -4887,
"y" : 2353,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "da470d71-2b2a-4e4d-8942-ca2fa58cf80c",
"rows" : [ {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;5",
"name" : "5",
"x" : -4693,
"y" : 2423,
"ix" : 131,
"iy" : 19
} ]
}, {
"key" : "Unnamed section;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section;;2;;6",
"name" : "6",
"x" : -4677,
"y" : 2377,
"ix" : 159,
"iy" : 47
} ]
} ],
"id" : 1149,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -6444,
"y" : 2140,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "bb9765db-d1e4-4245-949d-19550666fdd6",
"rows" : [ {
"key" : "Unnamed section;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section;;5;;5",
"name" : "5",
"x" : -6152,
"y" : 2519,
"ix" : 75,
"iy" : 131
}, {
"key" : "Unnamed section;;5;;11",
"name" : "11",
"x" : -6230,
"y" : 2164,
"ix" : 439,
"iy" : 131
} ]
}, {
"key" : "Unnamed section;;10",
"name" : "10",
"seats" : [ {
"key" : "Unnamed section;;10;;17",
"name" : "17",
"x" : -6034,
"y" : 2093,
"ix" : 467,
"iy" : 271
} ]
}, {
"key" : "Unnamed section;;14",
"name" : "14",
"seats" : [ {
"key" : "Unnamed section;;14;;12",
"name" : "12",
"x" : -5859,
"y" : 2169,
"ix" : 355,
"iy" : 383
}, {
"key" : "Unnamed section;;14;;6",
"name" : "6",
"x" : -5818,
"y" : 2361,
"ix" : 159,
"iy" : 383
} ]
}, {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;11",
"name" : "11",
"x" : -6347,
"y" : 2419,
"ix" : 215,
"iy" : 19
}, {
"key" : "Unnamed section;;1;;8",
"name" : "8",
"x" : -6327,
"y" : 2500,
"ix" : 131,
"iy" : 19
} ]
}, {
"key" : "Unnamed section;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section;;3;;16",
"name" : "16",
"x" : -6305,
"y" : 2209,
"ix" : 411,
"iy" : 75
}, {
"key" : "Unnamed section;;3;;1",
"name" : "1",
"x" : -6197,
"y" : 2643,
"ix" : -37,
"iy" : 75
} ]
}, {
"key" : "Unnamed section;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section;;2;;20",
"name" : "20",
"x" : -6356,
"y" : 2134,
"ix" : 495,
"iy" : 47
} ]
}, {
"key" : "Unnamed section;;9",
"name" : "9",
"seats" : [ {
"key" : "Unnamed section;;9;;9",
"name" : "9",
"x" : -6074,
"y" : 2102,
"ix" : 467,
"iy" : 243
} ]
}, {
"key" : "Unnamed section;;7",
"name" : "7",
"seats" : [ {
"key" : "Unnamed section;;7;;10",
"name" : "10",
"x" : -6150,
"y" : 2147,
"ix" : 439,
"iy" : 187
} ]
} ],
"id" : 1155,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy",
"name" : "Unnamed section copy",
"x" : -4865,
"y" : -335,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "f691b823-1feb-47bd-b060-176009109d1f",
"rows" : [ {
"key" : "Unnamed section copy;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section copy;;1;;12",
"name" : "12",
"x" : -4622,
"y" : -421,
"ix" : 299,
"iy" : 19
} ]
} ],
"id" : 1162,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -4571,
"y" : -581,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "16d68c4b-9088-4f01-b96b-5943f2c6b93e",
"rows" : [ {
"key" : "Unnamed section;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section;;5;;7",
"name" : "7",
"x" : -4300,
"y" : -443,
"ix" : 243,
"iy" : 131
} ]
} ],
"id" : 1163,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy",
"name" : "Unnamed section copy",
"x" : -5298,
"y" : -646,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "97c22eb6-7f09-4de8-99ba-6c211b710e7f",
"rows" : [ {
"key" : "Unnamed section copy;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section copy;;1;;7",
"name" : "7",
"x" : -5159,
"y" : -615,
"ix" : 201,
"iy" : 19
} ]
}, {
"key" : "Unnamed section copy;;4",
"name" : "4",
"seats" : [ {
"key" : "Unnamed section copy;;4;;8",
"name" : "8",
"x" : -5025,
"y" : -589,
"ix" : 257,
"iy" : 103
} ]
} ],
"id" : 1164,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -5455,
"y" : -1883,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "6d3bcf07-ceeb-4198-9e45-7ad1c3d572f8",
"rows" : [ {
"key" : "Unnamed section;;9",
"name" : "9",
"seats" : [ {
"key" : "Unnamed section;;9;;5",
"name" : "5",
"x" : -5245,
"y" : -1475,
"ix" : 103,
"iy" : 243
} ]
}, {
"key" : "Unnamed section;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section;;2;;4",
"name" : "4",
"x" : -5444,
"y" : -1681,
"ix" : 47,
"iy" : 47
}, {
"key" : "Unnamed section;;2;;11",
"name" : "11",
"x" : -5260,
"y" : -1809,
"ix" : 271,
"iy" : 47
} ]
}, {
"key" : "Unnamed section;;4",
"name" : "4",
"seats" : [ {
"key" : "Unnamed section;;4;;11",
"name" : "11",
"x" : -5049,
"y" : -1790,
"ix" : 439,
"iy" : 131
}, {
"key" : "Unnamed section;;4;;9",
"name" : "9",
"x" : -5120,
"y" : -1798,
"ix" : 383,
"iy" : 103
} ]
}, {
"key" : "Unnamed section;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section;;5;;4",
"name" : "4",
"x" : -5378,
"y" : -1578,
"ix" : 47,
"iy" : 131
} ]
}, {
"key" : "Unnamed section;;10",
"name" : "10",
"seats" : [ {
"key" : "Unnamed section;;10;;6",
"name" : "6",
"x" : -5177,
"y" : -1474,
"ix" : 159,
"iy" : 271
} ]
}, {
"key" : "Unnamed section;;6",
"name" : "6",
"seats" : [ {
"key" : "Unnamed section;;6;;8",
"name" : "8",
"x" : -5051,
"y" : -1743,
"ix" : 411,
"iy" : 159
} ]
}, {
"key" : "Unnamed section;;11",
"name" : "11",
"seats" : [ {
"key" : "Unnamed section;;11;;2",
"name" : "2",
"x" : -5245,
"y" : -1373,
"ix" : 47,
"iy" : 299
}, {
"key" : "Unnamed section;;11;;10",
"name" : "10",
"x" : -5038,
"y" : -1516,
"ix" : 299,
"iy" : 299
}, {
"key" : "Unnamed section;;11;;1",
"name" : "1",
"x" : -5267,
"y" : -1355,
"ix" : 19,
"iy" : 299
} ]
}, {
"key" : "Unnamed section;;14",
"name" : "14",
"seats" : [ {
"key" : "Unnamed section;;14;;13",
"name" : "13",
"x" : -4875,
"y" : -1469,
"ix" : 411,
"iy" : 383
}, {
"key" : "Unnamed section;;14;;2",
"name" : "2",
"x" : -5157,
"y" : -1287,
"ix" : 75,
"iy" : 383
} ]
} ],
"id" : 1165,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy copy",
"name" : "Unnamed section copy copy",
"x" : -5057,
"y" : -1222,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "ec16b6b7-18eb-4fd1-8c3f-6eb368d0fb36",
"rows" : [ ],
"id" : 1172,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy copy",
"name" : "Unnamed section copy copy",
"x" : -4965,
"y" : -1002,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "ab7aca55-a7ac-4446-8d61-3db07765e70b",
"rows" : [ {
"key" : "Unnamed section copy copy;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section copy copy;;5;;3",
"name" : "3",
"x" : -4824,
"y" : -883,
"ix" : 75,
"iy" : 47
}, {
"key" : "Unnamed section copy copy;;5;;6",
"name" : "6",
"x" : -4756,
"y" : -932,
"ix" : 159,
"iy" : 47
} ]
}, {
"key" : "Unnamed section copy copy;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section copy copy;;2;;5",
"name" : "5",
"x" : -4558,
"y" : -907,
"ix" : 313,
"iy" : 131
}, {
"key" : "Unnamed section copy copy;;2;;3",
"name" : "3",
"x" : -4747,
"y" : -789,
"ix" : 89,
"iy" : 131
} ]
}, {
"key" : "Unnamed section copy copy;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section copy copy;;3;;2",
"name" : "2",
"x" : -4792,
"y" : -806,
"ix" : 61,
"iy" : 103
} ]
}, {
"key" : "Unnamed section copy copy;;4",
"name" : "4",
"seats" : [ {
"key" : "Unnamed section copy copy;;4;;4",
"name" : "4",
"x" : -4757,
"y" : -882,
"ix" : 131,
"iy" : 75
} ]
} ],
"id" : 1173,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -4220,
"y" : -717,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "722ad2f9-0a77-464d-a824-31075f902fd3",
"rows" : [ {
"key" : "Unnamed section;;7",
"name" : "7",
"seats" : [ {
"key" : "Unnamed section;;7;;7",
"name" : "7",
"x" : -3951,
"y" : -452,
"ix" : 257,
"iy" : 187
} ]
} ],
"id" : 1175,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -4490,
"y" : -1227,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "ec1aba74-86e7-469f-bfed-9ccced2a3ed6",
"rows" : [ {
"key" : "Unnamed section;;4",
"name" : "4",
"seats" : [ {
"key" : "Unnamed section;;4;;9",
"name" : "9",
"x" : -4200,
"y" : -1120,
"ix" : 271,
"iy" : 75
} ]
}, {
"key" : "Unnamed section;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section;;2;;9",
"name" : "9",
"x" : -4158,
"y" : -1044,
"ix" : 299,
"iy" : 131
} ]
}, {
"key" : "Unnamed section;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section;;5;;5",
"name" : "5",
"x" : -4390,
"y" : -1389,
"ix" : 131,
"iy" : -135
} ]
}, {
"key" : "Unnamed section;;6",
"name" : "6",
"seats" : [ {
"key" : "Unnamed section;;6;;16",
"name" : "16",
"x" : -4048,
"y" : -1220,
"ix" : 439,
"iy" : 19
} ]
} ],
"id" : 1176,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -6193,
"y" : 2928,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "b4d8a68f-fd6a-4025-98e1-036aa998c744",
"rows" : [ {
"key" : "Unnamed section;;11",
"name" : "11",
"seats" : [ {
"key" : "Unnamed section;;11;;15",
"name" : "15",
"x" : -5767,
"y" : 2819,
"ix" : 551,
"iy" : 299
} ]
}, {
"key" : "Unnamed section;;6",
"name" : "6",
"seats" : [ {
"key" : "Unnamed section;;6;;12",
"name" : "12",
"x" : -5949,
"y" : 2908,
"ix" : 579,
"iy" : 159
}, {
"key" : "Unnamed section;;6;;9",
"name" : "9",
"x" : -5909,
"y" : 2982,
"ix" : 495,
"iy" : 159
} ]
}, {
"key" : "Unnamed section;;10",
"name" : "10",
"seats" : [ {
"key" : "Unnamed section;;10;;6",
"name" : "6",
"x" : -5619,
"y" : 3125,
"ix" : 215,
"iy" : 271
}, {
"key" : "Unnamed section;;10;;17",
"name" : "17",
"x" : -5813,
"y" : 2817,
"ix" : 579,
"iy" : 271
} ]
}, {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;24",
"name" : "24",
"x" : -6157,
"y" : 2947,
"ix" : 663,
"iy" : 19
} ]
}, {
"key" : "Unnamed section;;8",
"name" : "8",
"seats" : [ {
"key" : "Unnamed section;;8;;3",
"name" : "3",
"x" : -5635,
"y" : 3236,
"ix" : 131,
"iy" : 215
}, {
"key" : "Unnamed section;;8;;8",
"name" : "8",
"x" : -5841,
"y" : 2937,
"ix" : 495,
"iy" : 215
} ]
}, {
"key" : "Unnamed section;;13",
"name" : "13",
"seats" : [ {
"key" : "Unnamed section;;13;;3",
"name" : "3",
"x" : -5483,
"y" : 3101,
"ix" : 159,
"iy" : 355
} ]
}, {
"key" : "Unnamed section;;7",
"name" : "7",
"seats" : [ {
"key" : "Unnamed section;;7;;11",
"name" : "11",
"x" : -5902,
"y" : 2910,
"ix" : 551,
"iy" : 187
} ]
}, {
"key" : "Unnamed section;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section;;3;;13",
"name" : "13",
"x" : -5981,
"y" : 3098,
"ix" : 439,
"iy" : 75
}, {
"key" : "Unnamed section;;3;;15",
"name" : "15",
"x" : -6010,
"y" : 3050,
"ix" : 495,
"iy" : 75
} ]
}, {
"key" : "Unnamed section;;9",
"name" : "9",
"seats" : [ {
"key" : "Unnamed section;;9;;1",
"name" : "1",
"x" : -5565,
"y" : 3256,
"ix" : 75,
"iy" : 243
}, {
"key" : "Unnamed section;;9;;4",
"name" : "4",
"x" : -5618,
"y" : 3191,
"ix" : 159,
"iy" : 243
} ]
}, {
"key" : "Unnamed section;;14",
"name" : "14",
"seats" : [ {
"key" : "Unnamed section;;14;;6",
"name" : "6",
"x" : -5501,
"y" : 3012,
"ix" : 243,
"iy" : 383
}, {
"key" : "Unnamed section;;14;;4",
"name" : "4",
"x" : -5467,
"y" : 3056,
"ix" : 187,
"iy" : 383
} ]
}, {
"key" : "Unnamed section;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section;;2;;20",
"name" : "20",
"x" : -6098,
"y" : 2974,
"ix" : 607,
"iy" : 47
} ]
} ],
"id" : 1327,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -5020,
"y" : 2030,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "40e92c03-9d8e-4c27-a132-3ae5fd313d50",
"rows" : [ {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;1",
"name" : "1",
"x" : -4825,
"y" : 2198,
"ix" : 19,
"iy" : 19
}, {
"key" : "Unnamed section;;1;;10",
"name" : "10",
"x" : -4888,
"y" : 1926,
"ix" : 299,
"iy" : 19
} ]
} ],
"id" : 1329,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -5775,
"y" : 2703,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "67930470-4bcb-41cd-b835-782ba5972aaa",
"rows" : [ {
"key" : "Unnamed section;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section;;2;;7",
"name" : "7",
"x" : -5494,
"y" : 2707,
"ix" : 271,
"iy" : 47
} ]
}, {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;8",
"name" : "8",
"x" : -5543,
"y" : 2702,
"ix" : 299,
"iy" : 19
} ]
} ],
"id" : 1330,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -5303,
"y" : 2599,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "dacc8a07-1cb3-49a3-81eb-a66067228234",
"rows" : [ {
"key" : "Unnamed section;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section;;5;;5",
"name" : "5",
"x" : -5000,
"y" : 2674,
"ix" : 131,
"iy" : 131
} ]
}, {
"key" : "Unnamed section;;4",
"name" : "4",
"seats" : [ {
"key" : "Unnamed section;;4;;10",
"name" : "10",
"x" : -5128,
"y" : 2559,
"ix" : 299,
"iy" : 103
} ]
}, {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;3",
"name" : "3",
"x" : -5097,
"y" : 2812,
"ix" : 75,
"iy" : 19
} ]
}, {
"key" : "Unnamed section;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section;;3;;6",
"name" : "6",
"x" : -5083,
"y" : 2699,
"ix" : 159,
"iy" : 75
} ]
} ],
"id" : 1331,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy",
"name" : "Unnamed section copy",
"x" : -2487,
"y" : 3758,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "23afc55f-eb27-474a-82f6-e45b42fd8bcb",
"rows" : [ {
"key" : "Unnamed section copy;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section copy;;1;;10",
"name" : "10",
"x" : -2216,
"y" : 3786,
"ix" : 271,
"iy" : 19
}, {
"key" : "Unnamed section copy;;1;;5",
"name" : "5",
"x" : -2356,
"y" : 3786,
"ix" : 131,
"iy" : 19
} ]
}, {
"key" : "Unnamed section copy;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section copy;;3;;1",
"name" : "1",
"x" : -2468,
"y" : 3867,
"ix" : 19,
"iy" : 75
} ]
} ],
"id" : 1362,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy copy copy",
"name" : "Unnamed section copy copy copy",
"x" : -2397,
"y" : 3499,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "9d9d70e5-50fa-43ba-8e85-b4720317e281",
"rows" : [ ],
"id" : 1363,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -4275,
"y" : 2493,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "72821f54-71ec-4618-a5c6-62edf42e5afc",
"rows" : [ {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;3",
"name" : "3",
"x" : -4029,
"y" : 2794,
"ix" : 75,
"iy" : 19
} ]
}, {
"key" : "Unnamed section;;11",
"name" : "11",
"seats" : [ {
"key" : "Unnamed section;;11;;5",
"name" : "5",
"x" : -4105,
"y" : 2369,
"ix" : 229,
"iy" : 299
}, {
"key" : "Unnamed section;;11;;1",
"name" : "1",
"x" : -3995,
"y" : 2390,
"ix" : 117,
"iy" : 299
} ]
}, {
"key" : "Unnamed section;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section;;2;;2",
"name" : "2",
"x" : -4007,
"y" : 2755,
"ix" : 61,
"iy" : 47
} ]
} ],
"id" : 1364,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -5455,
"y" : 3543,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "1b2af020-6e92-4f68-8297-aa2fa00b6018",
"rows" : [ {
"key" : "Unnamed section;;11",
"name" : "11",
"seats" : [ {
"key" : "Unnamed section;;11;;1",
"name" : "1",
"x" : -4878,
"y" : 3671,
"ix" : 5,
"iy" : 299
}, {
"key" : "Unnamed section;;11;;14",
"name" : "14",
"x" : -5208,
"y" : 3461,
"ix" : 397,
"iy" : 299
} ]
}, {
"key" : "Unnamed section;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section;;5;;2",
"name" : "2",
"x" : -5063,
"y" : 3848,
"ix" : 61,
"iy" : 131
} ]
}, {
"key" : "Unnamed section;;13",
"name" : "13",
"seats" : [ {
"key" : "Unnamed section;;13;;14",
"name" : "14",
"x" : -5163,
"y" : 3393,
"ix" : 397,
"iy" : 355
} ]
}, {
"key" : "Unnamed section;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section;;2;;2",
"name" : "2",
"x" : -5298,
"y" : 3847,
"ix" : 257,
"iy" : 47
} ]
}, {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;10",
"name" : "10",
"x" : -5521,
"y" : 3729,
"ix" : 509,
"iy" : 19
} ]
}, {
"key" : "Unnamed section;;9",
"name" : "9",
"seats" : [ {
"key" : "Unnamed section;;9;;11",
"name" : "11",
"x" : -5275,
"y" : 3511,
"ix" : 425,
"iy" : 243
} ]
} ],
"id" : 1365,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -3584,
"y" : 3504,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "a3c1cfe2-8f86-40af-a9d0-968ce0521b37",
"rows" : [ ],
"id" : 1560,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -3859,
"y" : 3084,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "4ef62e7c-a72d-45b5-a99e-c5d44c7d4005",
"rows" : [ {
"key" : "Unnamed section;;6",
"name" : "6",
"seats" : [ {
"key" : "Unnamed section;;6;;2",
"name" : "2",
"x" : -3868,
"y" : 3314,
"ix" : -9,
"iy" : 159
}, {
"key" : "Unnamed section;;6;;5",
"name" : "5",
"x" : -3756,
"y" : 3314,
"ix" : 103,
"iy" : 159
} ]
} ],
"id" : 1591,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -3824,
"y" : 2327,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "81042a3b-9c50-4aad-abdf-8a7ebb52c8dd",
"rows" : [ {
"key" : "Unnamed section;;10",
"name" : "10",
"seats" : [ {
"key" : "Unnamed section;;10;;7",
"name" : "7",
"x" : -3637,
"y" : 2720,
"ix" : 187,
"iy" : 271
}, {
"key" : "Unnamed section;;10;;9",
"name" : "9",
"x" : -3581,
"y" : 2720,
"ix" : 243,
"iy" : 271
} ]
}, {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;6",
"name" : "6",
"x" : -3665,
"y" : 2354,
"ix" : 159,
"iy" : 19
} ]
}, {
"key" : "Unnamed section;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section;;3;;7",
"name" : "7",
"x" : -3637,
"y" : 2436,
"ix" : 187,
"iy" : 75
} ]
}, {
"key" : "Unnamed section;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section;;5;;8",
"name" : "8",
"x" : -3609,
"y" : 2517,
"ix" : 215,
"iy" : 131
}, {
"key" : "Unnamed section;;5;;9",
"name" : "9",
"x" : -3581,
"y" : 2517,
"ix" : 243,
"iy" : 131
} ]
}, {
"key" : "Unnamed section;;11",
"name" : "11",
"seats" : [ {
"key" : "Unnamed section;;11;;6",
"name" : "6",
"x" : -3665,
"y" : 2760,
"ix" : 159,
"iy" : 299
} ]
}, {
"key" : "Unnamed section;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section;;2;;8",
"name" : "8",
"x" : -3609,
"y" : 2395,
"ix" : 215,
"iy" : 47
} ]
}, {
"key" : "Unnamed section;;9",
"name" : "9",
"seats" : [ {
"key" : "Unnamed section;;9;;3",
"name" : "3",
"x" : -3749,
"y" : 2679,
"ix" : 75,
"iy" : 243
}, {
"key" : "Unnamed section;;9;;6",
"name" : "6",
"x" : -3665,
"y" : 2679,
"ix" : 159,
"iy" : 243
}, {
"key" : "Unnamed section;;9;;2",
"name" : "2",
"x" : -3777,
"y" : 2679,
"ix" : 47,
"iy" : 243
}, {
"key" : "Unnamed section;;9;;10",
"name" : "10",
"x" : -3553,
"y" : 2679,
"ix" : 271,
"iy" : 243
} ]
} ],
"id" : 1593,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -861,
"y" : -585,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "ae7d6638-2acb-4efb-bb98-00ac8e6a147a",
"rows" : [ {
"key" : "Unnamed section;;10",
"name" : "10",
"seats" : [ {
"key" : "Unnamed section;;10;;1",
"name" : "1",
"x" : -872,
"y" : -274,
"ix" : 103,
"iy" : 271
} ]
}, {
"key" : "Unnamed section;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section;;3;;6",
"name" : "6",
"x" : -601,
"y" : -416,
"ix" : 215,
"iy" : 75
} ]
}, {
"key" : "Unnamed section;;8",
"name" : "8",
"seats" : [ {
"key" : "Unnamed section;;8;;4",
"name" : "4",
"x" : -754,
"y" : -282,
"ix" : 187,
"iy" : 215
}, {
"key" : "Unnamed section;;8;;3",
"name" : "3",
"x" : -796,
"y" : -318,
"ix" : 131,
"iy" : 215
} ]
} ],
"id" : 1602,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : 831,
"y" : -347,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "5d9e129a-efac-46b9-b4c2-3142d56ce70c",
"rows" : [ {
"key" : "Unnamed section;;12",
"name" : "12",
"seats" : [ {
"key" : "Unnamed section;;12;;13",
"name" : "13",
"x" : 825,
"y" : 39,
"ix" : 383,
"iy" : 327
} ]
}, {
"key" : "Unnamed section;;8",
"name" : "8",
"seats" : [ {
"key" : "Unnamed section;;8;;3",
"name" : "3",
"x" : 922,
"y" : -318,
"ix" : 47,
"iy" : 215
} ]
}, {
"key" : "Unnamed section;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section;;5;;9",
"name" : "9",
"x" : 1105,
"y" : -10,
"ix" : 383,
"iy" : 131
} ]
}, {
"key" : "Unnamed section;;14",
"name" : "14",
"seats" : [ {
"key" : "Unnamed section;;14;;13",
"name" : "13",
"x" : 745,
"y" : 54,
"ix" : 383,
"iy" : 383
} ]
} ],
"id" : 1603,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -3003,
"y" : -1498,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "6de5b51b-e685-4bf5-b186-e676926518a1",
"rows" : [ ],
"id" : 1606,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -3634,
"y" : -1511,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "1c067acc-6e07-4165-a3b4-88b77784f19e",
"rows" : [ ],
"id" : 1609,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy",
"name" : "Unnamed section copy",
"x" : -2498,
"y" : -1511,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "88f3519b-daf4-4c3a-97b0-1fd4a7abbf93",
"rows" : [ ],
"id" : 1610,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -832,
"y" : -1987,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "a7e59013-fa98-4577-8b3f-edd0c90acc05",
"rows" : [ {
"key" : "Unnamed section;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section;;5;;18",
"name" : "18",
"x" : -375,
"y" : -1719,
"ix" : 495,
"iy" : 131
}, {
"key" : "Unnamed section;;5;;16",
"name" : "16",
"x" : -427,
"y" : -1741,
"ix" : 439,
"iy" : 131
} ]
}, {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;15",
"name" : "15",
"x" : -376,
"y" : -1896,
"ix" : 439,
"iy" : 19
} ]
} ],
"id" : 1611,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -1193,
"y" : -702,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "661f2dac-69aa-499c-9029-6927f54787c6",
"rows" : [ {
"key" : "Unnamed section;;4",
"name" : "4",
"seats" : [ {
"key" : "Unnamed section;;4;;9",
"name" : "9",
"x" : -991,
"y" : -540,
"ix" : 201,
"iy" : 103
}, {
"key" : "Unnamed section;;4;;4",
"name" : "4",
"x" : -1127,
"y" : -574,
"ix" : 61,
"iy" : 103
} ]
}, {
"key" : "Unnamed section;;8",
"name" : "8",
"seats" : [ {
"key" : "Unnamed section;;8;;9",
"name" : "9",
"x" : -1049,
"y" : -388,
"ix" : 187,
"iy" : 215
} ]
}, {
"key" : "Unnamed section;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section;;2;;10",
"name" : "10",
"x" : -916,
"y" : -599,
"ix" : 257,
"iy" : 47
} ]
} ],
"id" : 1612,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -231,
"y" : -1069,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "acf5689f-ff6b-447f-bf44-8b6ac66727b9",
"rows" : [ ],
"id" : 1613,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -3129,
"y" : -1252,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "e5b9e09d-38fc-4585-98fa-8b172b761b57",
"rows" : [ {
"key" : "Unnamed section;;4",
"name" : "4",
"seats" : [ {
"key" : "Unnamed section;;4;;13",
"name" : "13",
"x" : -2354,
"y" : -1102,
"ix" : 775,
"iy" : 103
} ]
}, {
"key" : "Unnamed section;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section;;3;;23",
"name" : "23",
"x" : -2410,
"y" : -1143,
"ix" : 719,
"iy" : 75
} ]
}, {
"key" : "Unnamed section;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section;;2;;23",
"name" : "23",
"x" : -2410,
"y" : -1184,
"ix" : 719,
"iy" : 47
}, {
"key" : "Unnamed section;;2;;17",
"name" : "17",
"x" : -2662,
"y" : -1184,
"ix" : 467,
"iy" : 47
} ]
}, {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;21",
"name" : "21",
"x" : -2466,
"y" : -1224,
"ix" : 663,
"iy" : 19
} ]
} ],
"id" : 1614,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy",
"name" : "Unnamed section copy",
"x" : -2441,
"y" : -1250,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "bd1833af-616a-48d9-a0bc-2085c15f28ee",
"rows" : [ {
"key" : "Unnamed section copy;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section copy;;1;;23",
"name" : "23",
"x" : -1722,
"y" : -1223,
"ix" : 719,
"iy" : 19
} ]
}, {
"key" : "Unnamed section copy;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section copy;;2;;27",
"name" : "27",
"x" : -1610,
"y" : -1182,
"ix" : 831,
"iy" : 47
} ]
}, {
"key" : "Unnamed section copy;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section copy;;3;;20",
"name" : "20",
"x" : -1806,
"y" : -1141,
"ix" : 635,
"iy" : 75
} ]
}, {
"key" : "Unnamed section copy;;6",
"name" : "6",
"seats" : [ {
"key" : "Unnamed section copy;;6;;12",
"name" : "12",
"x" : -2114,
"y" : -1020,
"ix" : 327,
"iy" : 159
} ]
} ],
"id" : 1615,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -568,
"y" : -7,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "be54d8dd-18df-47b9-90fe-42082f00e794",
"rows" : [ {
"key" : "Unnamed section;;14",
"name" : "14",
"seats" : [ {
"key" : "Unnamed section;;14;;7",
"name" : "7",
"x" : -760,
"y" : 253,
"ix" : 187,
"iy" : 383
}, {
"key" : "Unnamed section;;14;;5",
"name" : "5",
"x" : -765,
"y" : 198,
"ix" : 131,
"iy" : 383
} ]
}, {
"key" : "Unnamed section;;4",
"name" : "4",
"seats" : [ {
"key" : "Unnamed section;;4;;2",
"name" : "2",
"x" : -369,
"y" : 105,
"ix" : 75,
"iy" : 103
} ]
}, {
"key" : "Unnamed section;;11",
"name" : "11",
"seats" : [ {
"key" : "Unnamed section;;11;;3",
"name" : "3",
"x" : -638,
"y" : 242,
"ix" : 187,
"iy" : 299
} ]
}, {
"key" : "Unnamed section;;10",
"name" : "10",
"seats" : [ {
"key" : "Unnamed section;;10;;6",
"name" : "6",
"x" : -600,
"y" : 210,
"ix" : 159,
"iy" : 271
} ]
}, {
"key" : "Unnamed section;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section;;5;;9",
"name" : "9",
"x" : -394,
"y" : 276,
"ix" : 243,
"iy" : 131
}, {
"key" : "Unnamed section;;5;;7",
"name" : "7",
"x" : -394,
"y" : 276,
"ix" : 243,
"iy" : 131
}, {
"key" : "Unnamed section;;5;;10",
"name" : "10",
"x" : -394,
"y" : 304,
"ix" : 271,
"iy" : 131
} ]
} ],
"id" : 1616,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -3922,
"y" : 3763,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "c04a19be-545d-462c-8564-5338abaabcc0",
"rows" : [ {
"key" : "Unnamed section;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section;;3;;12",
"name" : "12",
"x" : -3623,
"y" : 3872,
"ix" : 299,
"iy" : 75
}, {
"key" : "Unnamed section;;3;;9",
"name" : "9",
"x" : -3707,
"y" : 3872,
"ix" : 215,
"iy" : 75
} ]
}, {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;2",
"name" : "2",
"x" : -3931,
"y" : 3791,
"ix" : -9,
"iy" : 19
} ]
} ],
"id" : 1617,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -13,
"y" : -1807,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "1c54996c-7e15-4ff2-bf44-39251b1965b8",
"rows" : [ {
"key" : "Unnamed section;;6",
"name" : "6",
"seats" : [ {
"key" : "Unnamed section;;6;;15",
"name" : "15",
"x" : 354,
"y" : -1440,
"ix" : 439,
"iy" : 159
} ]
}, {
"key" : "Unnamed section;;11",
"name" : "11",
"seats" : [ {
"key" : "Unnamed section;;11;;9",
"name" : "9",
"x" : 81,
"y" : -1410,
"ix" : 243,
"iy" : 299
} ]
}, {
"key" : "Unnamed section;;10",
"name" : "10",
"seats" : [ {
"key" : "Unnamed section;;10;;2",
"name" : "2",
"x" : -63,
"y" : -1565,
"ix" : 33,
"iy" : 271
} ]
} ],
"id" : 1618,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy",
"name" : "Unnamed section copy",
"x" : 0,
"y" : -37,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "54a276ca-1432-423a-ab6c-b2c12fb8b90e",
"rows" : [ {
"key" : "Unnamed section copy;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section copy;;2;;3",
"name" : "3",
"x" : 185,
"y" : -61,
"ix" : 75,
"iy" : 47
} ]
}, {
"key" : "Unnamed section copy;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section copy;;5;;10",
"name" : "10",
"x" : 96,
"y" : 150,
"ix" : 271,
"iy" : 131
} ]
}, {
"key" : "Unnamed section copy;;4",
"name" : "4",
"seats" : [ {
"key" : "Unnamed section copy;;4;;4",
"name" : "4",
"x" : 111,
"y" : -21,
"ix" : 103,
"iy" : 103
}, {
"key" : "Unnamed section copy;;4;;12",
"name" : "12",
"x" : 140,
"y" : 200,
"ix" : 327,
"iy" : 103
} ]
} ],
"id" : 1619,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy",
"name" : "Unnamed section copy",
"x" : -3802,
"y" : 2195,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "7bc8987d-af4b-4e26-96d2-65c069c859f4",
"rows" : [ {
"key" : "Unnamed section copy;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section copy;;2;;13",
"name" : "13",
"x" : -3419,
"y" : 2263,
"ix" : 383,
"iy" : 47
} ]
}, {
"key" : "Unnamed section copy;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section copy;;5;;22",
"name" : "22",
"x" : -3139,
"y" : 2385,
"ix" : 663,
"iy" : 131
} ]
}, {
"key" : "Unnamed section copy;;12",
"name" : "12",
"seats" : [ {
"key" : "Unnamed section copy;;12;;24",
"name" : "24",
"x" : -3083,
"y" : 2669,
"ix" : 719,
"iy" : 327
} ]
} ],
"id" : 1620,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : 244,
"y" : 2308,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "0639d4be-6bfb-47a8-a551-d8522fd1760d",
"rows" : [ ],
"id" : 1621,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy copy",
"name" : "Unnamed section copy copy",
"x" : -2490,
"y" : 3070,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "8e8cf673-aa9b-4d7f-b6ab-09c9e3d232c7",
"rows" : [ {
"key" : "Unnamed section copy copy;;6",
"name" : "6",
"seats" : [ {
"key" : "Unnamed section copy copy;;6;;20",
"name" : "20",
"x" : -1827,
"y" : 3300,
"ix" : 663,
"iy" : 159
} ]
} ],
"id" : 1622,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy copy",
"name" : "Unnamed section copy copy",
"x" : -3839,
"y" : 3074,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "c3206879-c8f8-47ec-b063-f42acc46aa59",
"rows" : [ {
"key" : "Unnamed section copy copy;;4",
"name" : "4",
"seats" : [ {
"key" : "Unnamed section copy copy;;4;;17",
"name" : "17",
"x" : -3372,
"y" : 3224,
"ix" : 467,
"iy" : 103
} ]
}, {
"key" : "Unnamed section copy copy;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section copy copy;;5;;29",
"name" : "29",
"x" : -2952,
"y" : 3264,
"ix" : 887,
"iy" : 131
} ]
}, {
"key" : "Unnamed section copy copy;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section copy copy;;2;;24",
"name" : "24",
"x" : -2924,
"y" : 3142,
"ix" : 915,
"iy" : 47
} ]
}, {
"key" : "Unnamed section copy copy;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section copy copy;;3;;18",
"name" : "18",
"x" : -3344,
"y" : 3183,
"ix" : 495,
"iy" : 75
} ]
} ],
"id" : 1623,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy",
"name" : "Unnamed section copy",
"x" : -3102,
"y" : 3070,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "b8682715-1232-4293-bb8e-e4aeb8cb813c",
"rows" : [ {
"key" : "Unnamed section copy;;6",
"name" : "6",
"seats" : [ {
"key" : "Unnamed section copy;;6;;23",
"name" : "23",
"x" : -2383,
"y" : 3300,
"ix" : 719,
"iy" : 159
} ]
}, {
"key" : "Unnamed section copy;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section copy;;5;;21",
"name" : "21",
"x" : -2439,
"y" : 3260,
"ix" : 663,
"iy" : 131
}, {
"key" : "Unnamed section copy;;5;;20",
"name" : "20",
"x" : -2467,
"y" : 3260,
"ix" : 635,
"iy" : 131
} ]
} ],
"id" : 1624,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -89,
"y" : 2930,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "7e266804-c30b-42c2-a799-bf12d1d50d47",
"rows" : [ ],
"id" : 1625,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy copy copy",
"name" : "Unnamed section copy copy copy",
"x" : -1825,
"y" : 3063,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "94a48e15-b6f3-4321-b34e-8002df83efee",
"rows" : [ ],
"id" : 1626,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy copy",
"name" : "Unnamed section copy copy",
"x" : -1837,
"y" : 3758,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "19166f96-c527-48de-b8ad-9cf74299c0ea",
"rows" : [ {
"key" : "Unnamed section copy copy;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section copy copy;;1;;13",
"name" : "13",
"x" : -1482,
"y" : 3785,
"ix" : 355,
"iy" : 19
} ]
}, {
"key" : "Unnamed section copy copy;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section copy copy;;3;;21",
"name" : "21",
"x" : -1230,
"y" : 3867,
"ix" : 607,
"iy" : 75
}, {
"key" : "Unnamed section copy copy;;3;;2",
"name" : "2",
"x" : -1818,
"y" : 3867,
"ix" : 19,
"iy" : 75
} ]
}, {
"key" : "Unnamed section copy copy;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section copy copy;;2;;7",
"name" : "7",
"x" : -1678,
"y" : 3826,
"ix" : 159,
"iy" : 47
} ]
} ],
"id" : 1629,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -5965,
"y" : 2044,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "4afb4c3f-b3d7-4735-9e4b-81c068f4f65f",
"rows" : [ ],
"id" : 1630,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -5515,
"y" : 2072,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "6db6be52-7d42-4960-8da2-6b7be0a25884",
"rows" : [ ],
"id" : 1631,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -3166,
"y" : 2200,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "262550dd-893d-40d1-a3d7-0b14023fea5e",
"rows" : [ {
"key" : "Unnamed section;;7",
"name" : "7",
"seats" : [ {
"key" : "Unnamed section;;7;;27",
"name" : "27",
"x" : -2363,
"y" : 2471,
"ix" : 803,
"iy" : 187
} ]
}, {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;23",
"name" : "23",
"x" : -2475,
"y" : 2228,
"ix" : 691,
"iy" : 19
}, {
"key" : "Unnamed section;;1;;28",
"name" : "28",
"x" : -2335,
"y" : 2228,
"ix" : 831,
"iy" : 19
} ]
}, {
"key" : "Unnamed section;;8",
"name" : "8",
"seats" : [ {
"key" : "Unnamed section;;8;;17",
"name" : "17",
"x" : -2671,
"y" : 2512,
"ix" : 495,
"iy" : 215
} ]
}, {
"key" : "Unnamed section;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section;;3;;21",
"name" : "21",
"x" : -2531,
"y" : 2309,
"ix" : 635,
"iy" : 75
} ]
}, {
"key" : "Unnamed section;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section;;5;;24",
"name" : "24",
"x" : -2447,
"y" : 2390,
"ix" : 719,
"iy" : 131
} ]
}, {
"key" : "Unnamed section;;4",
"name" : "4",
"seats" : [ {
"key" : "Unnamed section;;4;;30",
"name" : "30",
"x" : -2279,
"y" : 2350,
"ix" : 887,
"iy" : 103
} ]
} ],
"id" : 1632,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -1844,
"y" : 3492,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "d78bed06-9ecb-4005-96c7-8a125a60784f",
"rows" : [ ],
"id" : 1633,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -3151,
"y" : 3765,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "9730db47-5d2c-4ed3-a90b-f81ca6d9f95b",
"rows" : [ {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;13",
"name" : "13",
"x" : -3076,
"y" : 3792,
"ix" : 75,
"iy" : 19
}, {
"key" : "Unnamed section;;1;;27",
"name" : "27",
"x" : -2684,
"y" : 3792,
"ix" : 467,
"iy" : 19
} ]
}, {
"key" : "Unnamed section;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section;;3;;29",
"name" : "29",
"x" : -2628,
"y" : 3873,
"ix" : 523,
"iy" : 75
} ]
}, {
"key" : "Unnamed section;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section;;2;;27",
"name" : "27",
"x" : -2684,
"y" : 3833,
"ix" : 467,
"iy" : 47
} ]
} ],
"id" : 1634,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy copy",
"name" : "Unnamed section copy copy",
"x" : -1895,
"y" : 2303,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "ecea6d35-913c-4d24-bc39-5a6b80b0ec29",
"rows" : [ ],
"id" : 1637,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : 931,
"y" : 916,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "d0ab77cc-4e2a-4297-86a4-8eb25a70ab16",
"rows" : [ ],
"id" : 1638,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -116,
"y" : 1448,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "67103450-ce67-41d9-9e23-bb40d217c6ad",
"rows" : [ ],
"id" : 1639,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : 283,
"y" : 50,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "6aec0bb5-2d12-44c2-b433-ee093d2805d7",
"rows" : [ ],
"id" : 1640,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -3050,
"y" : 3501,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "7fdbc70e-9dad-4bf2-98b5-fa21e3b579e4",
"rows" : [ ],
"id" : 1641,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -2444,
"y" : 3499,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "44646ba0-cf09-4a84-ba84-8d9127a96229",
"rows" : [ ],
"id" : 1642,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy",
"name" : "Unnamed section copy",
"x" : -3568,
"y" : 3502,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "467dce43-f7dc-45b8-b6bb-bb3184235ca5",
"rows" : [ ],
"id" : 1643,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -684,
"y" : 656,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "7dc35420-17e6-48ae-8887-3c1ee845563d",
"rows" : [ {
"key" : "Unnamed section;;14",
"name" : "14",
"seats" : [ {
"key" : "Unnamed section;;14;;15",
"name" : "15",
"x" : -781,
"y" : 1108,
"ix" : 523,
"iy" : 383
} ]
}, {
"key" : "Unnamed section;;9",
"name" : "9",
"seats" : [ {
"key" : "Unnamed section;;9;;2",
"name" : "2",
"x" : -578,
"y" : 688,
"ix" : 103,
"iy" : 243
} ]
}, {
"key" : "Unnamed section;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section;;2;;2",
"name" : "2",
"x" : -294,
"y" : 632,
"ix" : 47,
"iy" : 47
} ]
}, {
"key" : "Unnamed section;;21",
"name" : "21",
"seats" : [ {
"key" : "Unnamed section;;21;;25",
"name" : "25",
"x" : -1086,
"y" : 1388,
"ix" : 803,
"iy" : 593
} ]
}, {
"key" : "Unnamed section;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section;;3;;24",
"name" : "24",
"x" : -335,
"y" : 1276,
"ix" : 691,
"iy" : 75
} ]
}, {
"key" : "Unnamed section;;23",
"name" : "23",
"seats" : [ {
"key" : "Unnamed section;;23;;20",
"name" : "20",
"x" : -1167,
"y" : 1248,
"ix" : 663,
"iy" : 649
} ]
}, {
"key" : "Unnamed section;;16",
"name" : "16",
"seats" : [ {
"key" : "Unnamed section;;16;;8",
"name" : "8",
"x" : -883,
"y" : 884,
"ix" : 299,
"iy" : 453
} ]
}, {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;1",
"name" : "1",
"x" : -254,
"y" : 604,
"ix" : 19,
"iy" : 19
}, {
"key" : "Unnamed section;;1;;34",
"name" : "34",
"x" : -254,
"y" : 1556,
"ix" : 971,
"iy" : 19
} ]
}, {
"key" : "Unnamed section;;8",
"name" : "8",
"seats" : [ {
"key" : "Unnamed section;;8;;28",
"name" : "28",
"x" : -538,
"y" : 1444,
"ix" : 859,
"iy" : 215
} ]
}, {
"key" : "Unnamed section;;24",
"name" : "24",
"seats" : [ {
"key" : "Unnamed section;;24;;4",
"name" : "4",
"x" : -1208,
"y" : 772,
"ix" : 187,
"iy" : 677
} ]
}, {
"key" : "Unnamed section;;7",
"name" : "7",
"seats" : [ {
"key" : "Unnamed section;;7;;28",
"name" : "28",
"x" : -497,
"y" : 1444,
"ix" : 859,
"iy" : 187
}, {
"key" : "Unnamed section;;7;;8",
"name" : "8",
"x" : -497,
"y" : 856,
"ix" : 271,
"iy" : 187
}, {
"key" : "Unnamed section;;7;;1",
"name" : "1",
"x" : -497,
"y" : 660,
"ix" : 75,
"iy" : 187
}, {
"key" : "Unnamed section;;7;;16",
"name" : "16",
"x" : -497,
"y" : 1108,
"ix" : 523,
"iy" : 187
} ]
}, {
"key" : "Unnamed section;;12",
"name" : "12",
"seats" : [ {
"key" : "Unnamed section;;12;;5",
"name" : "5",
"x" : -700,
"y" : 800,
"ix" : 215,
"iy" : 327
} ]
} ],
"id" : 1644,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -5703,
"y" : -2,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "05a704a1-825a-422f-9c05-1e754d7f3413",
"rows" : [ ],
"id" : 1645,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -5546,
"y" : -735,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "30a1e558-21bb-468e-9dcc-eb0a15cd548c",
"rows" : [ ],
"id" : 1646,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy",
"name" : "Unnamed section copy",
"x" : -2752,
"y" : 413,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "bdacba05-83d6-4f0f-97ed-e0f0a3f7890f",
"rows" : [ {
"key" : "Unnamed section copy;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section copy;;2;;13",
"name" : "13",
"x" : -2474,
"y" : 712,
"ix" : 355,
"iy" : 47
} ]
}, {
"key" : "Unnamed section copy;;6",
"name" : "6",
"seats" : [ {
"key" : "Unnamed section copy;;6;;7",
"name" : "7",
"x" : -2636,
"y" : 544,
"ix" : 187,
"iy" : 159
}, {
"key" : "Unnamed section copy;;6;;3",
"name" : "3",
"x" : -2636,
"y" : 432,
"ix" : 75,
"iy" : 159
} ]
}, {
"key" : "Unnamed section copy;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section copy;;3;;7",
"name" : "7",
"x" : -2515,
"y" : 544,
"ix" : 187,
"iy" : 75
} ]
}, {
"key" : "Unnamed section copy;;4",
"name" : "4",
"seats" : [ {
"key" : "Unnamed section copy;;4;;10",
"name" : "10",
"x" : -2555,
"y" : 628,
"ix" : 271,
"iy" : 103
} ]
} ],
"id" : 1647,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -3630,
"y" : 509,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "25910a77-8a02-4157-8ab0-e58fd4973fe0",
"rows" : [ ],
"id" : 1648,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -3242,
"y" : 406,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "acf3c6fc-d118-41d1-b7f9-f7a32ed0ec62",
"rows" : [ {
"key" : "Unnamed section;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section;;3;;6",
"name" : "6",
"x" : -3005,
"y" : 509,
"ix" : 159,
"iy" : 75
} ]
} ],
"id" : 1649,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -3656,
"y" : 1025,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "978583de-d4fb-4d58-b62a-7288eb254320",
"rows" : [ {
"key" : "Unnamed section;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section;;3;;14",
"name" : "14",
"x" : -3489,
"y" : 1226,
"ix" : 383,
"iy" : 75
} ]
}, {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;13",
"name" : "13",
"x" : -3408,
"y" : 1198,
"ix" : 355,
"iy" : 19
} ]
} ],
"id" : 1650,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -4429,
"y" : -1000,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "1cc29be2-5bcf-4637-9f8a-40081cb5ea61",
"rows" : [ ],
"id" : 1651,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -1047,
"y" : -984,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "0453da9d-10c7-40bc-896c-3c1b07fbaaa4",
"rows" : [ ],
"id" : 1652,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy",
"name" : "Unnamed section copy",
"x" : 800,
"y" : 1212,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "1cdbcb26-c729-4ad8-bac9-759cad5b777c",
"rows" : [ {
"key" : "Unnamed section copy;;12",
"name" : "12",
"seats" : [ {
"key" : "Unnamed section copy;;12;;11",
"name" : "11",
"x" : 839,
"y" : 1421,
"ix" : 327,
"iy" : 327
}, {
"key" : "Unnamed section copy;;12;;6",
"name" : "6",
"x" : 839,
"y" : 1253,
"ix" : 159,
"iy" : 327
} ]
}, {
"key" : "Unnamed section copy;;13",
"name" : "13",
"seats" : [ {
"key" : "Unnamed section copy;;13;;7",
"name" : "7",
"x" : 798,
"y" : 1281,
"ix" : 187,
"iy" : 355
} ]
}, {
"key" : "Unnamed section copy;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section copy;;2;;17",
"name" : "17",
"x" : 1245,
"y" : 1617,
"ix" : 523,
"iy" : 47
} ]
}, {
"key" : "Unnamed section copy;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section copy;;5;;7",
"name" : "7",
"x" : 1123,
"y" : 1281,
"ix" : 187,
"iy" : 131
} ]
}, {
"key" : "Unnamed section copy;;11",
"name" : "11",
"seats" : [ {
"key" : "Unnamed section copy;;11;;13",
"name" : "13",
"x" : 879,
"y" : 1477,
"ix" : 383,
"iy" : 299
} ]
} ],
"id" : 1653,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : 372,
"y" : 723,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "08bcea0e-8550-43e0-a4f9-8f4ca625d1f4",
"rows" : [ {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;3",
"name" : "3",
"x" : 521,
"y" : 617,
"ix" : 5,
"iy" : 19
} ]
} ],
"id" : 1654,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -40,
"y" : 636,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "60900fa7-3db3-4fd9-a693-15b28b95ce79",
"rows" : [ ],
"id" : 1655,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy copy",
"name" : "Unnamed section copy copy",
"x" : -1719,
"y" : 430,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "aab4f669-bb66-4ab5-bcc3-50ee72a53cd6",
"rows" : [ {
"key" : "Unnamed section copy copy;;4",
"name" : "4",
"seats" : [ {
"key" : "Unnamed section copy copy;;4;;3",
"name" : "3",
"x" : -1522,
"y" : 449,
"ix" : 75,
"iy" : 103
} ]
}, {
"key" : "Unnamed section copy copy;;7",
"name" : "7",
"seats" : [ {
"key" : "Unnamed section copy copy;;7;;12",
"name" : "12",
"x" : -1644,
"y" : 701,
"ix" : 327,
"iy" : 187
} ]
}, {
"key" : "Unnamed section copy copy;;10",
"name" : "10",
"seats" : [ {
"key" : "Unnamed section copy copy;;10;;12",
"name" : "12",
"x" : -1766,
"y" : 701,
"ix" : 327,
"iy" : 271
} ]
}, {
"key" : "Unnamed section copy copy;;6",
"name" : "6",
"seats" : [ {
"key" : "Unnamed section copy copy;;6;;13",
"name" : "13",
"x" : -1603,
"y" : 729,
"ix" : 355,
"iy" : 159
} ]
} ],
"id" : 1656,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy copy copy",
"name" : "Unnamed section copy copy copy",
"x" : -2241,
"y" : 414,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "f4d4fd39-3ad4-465d-be62-4ca7de964f47",
"rows" : [ {
"key" : "Unnamed section copy copy copy;;4",
"name" : "4",
"seats" : [ {
"key" : "Unnamed section copy copy copy;;4;;1",
"name" : "1",
"x" : -2045,
"y" : 377,
"ix" : 19,
"iy" : 103
} ]
}, {
"key" : "Unnamed section copy copy copy;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section copy copy copy;;1;;10",
"name" : "10",
"x" : -1923,
"y" : 629,
"ix" : 271,
"iy" : 19
}, {
"key" : "Unnamed section copy copy copy;;1;;12",
"name" : "12",
"x" : -1923,
"y" : 685,
"ix" : 327,
"iy" : 19
} ]
}, {
"key" : "Unnamed section copy copy copy;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section copy copy copy;;3;;5",
"name" : "5",
"x" : -2004,
"y" : 489,
"ix" : 131,
"iy" : 75
} ]
} ],
"id" : 1657,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy",
"name" : "Unnamed section copy",
"x" : -3632,
"y" : 1500,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "e01c93f4-c8b7-4650-8f58-08f735584020",
"rows" : [ {
"key" : "Unnamed section copy;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section copy;;3;;9",
"name" : "9",
"x" : -3492,
"y" : 1589,
"ix" : 243,
"iy" : 75
} ]
}, {
"key" : "Unnamed section copy;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section copy;;2;;12",
"name" : "12",
"x" : -3452,
"y" : 1673,
"ix" : 327,
"iy" : 47
} ]
}, {
"key" : "Unnamed section copy;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section copy;;1;;13",
"name" : "13",
"x" : -3411,
"y" : 1701,
"ix" : 355,
"iy" : 19
} ]
} ],
"id" : 1658,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : 839,
"y" : 564,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "1b199ab9-58b0-4478-9eb0-53ad0770db08",
"rows" : [ {
"key" : "Unnamed section;;13",
"name" : "13",
"seats" : [ {
"key" : "Unnamed section;;13;;15",
"name" : "15",
"x" : 798,
"y" : 951,
"ix" : 467,
"iy" : 355
}, {
"key" : "Unnamed section;;13;;19",
"name" : "19",
"x" : 798,
"y" : 1063,
"ix" : 579,
"iy" : 355
} ]
}, {
"key" : "Unnamed section;;14",
"name" : "14",
"seats" : [ {
"key" : "Unnamed section;;14;;11",
"name" : "11",
"x" : 758,
"y" : 839,
"ix" : 355,
"iy" : 383
} ]
}, {
"key" : "Unnamed section;;12",
"name" : "12",
"seats" : [ {
"key" : "Unnamed section;;12;;11",
"name" : "11",
"x" : 839,
"y" : 811,
"ix" : 327,
"iy" : 327
} ]
}, {
"key" : "Unnamed section;;6",
"name" : "6",
"seats" : [ {
"key" : "Unnamed section;;6;;5",
"name" : "5",
"x" : 1082,
"y" : 559,
"ix" : 75,
"iy" : 159
} ]
}, {
"key" : "Unnamed section;;11",
"name" : "11",
"seats" : [ {
"key" : "Unnamed section;;11;;18",
"name" : "18",
"x" : 879,
"y" : 1007,
"ix" : 523,
"iy" : 299
}, {
"key" : "Unnamed section;;11;;7",
"name" : "7",
"x" : 879,
"y" : 671,
"ix" : 187,
"iy" : 299
} ]
}, {
"key" : "Unnamed section;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section;;2;;22",
"name" : "22",
"x" : 1245,
"y" : 1063,
"ix" : 579,
"iy" : 47
} ]
} ],
"id" : 1659,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : 150,
"y" : -635,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "4dff9b1c-9881-47c3-8577-f5d2f3508056",
"rows" : [ {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;8",
"name" : "8",
"x" : 380,
"y" : -500,
"ix" : 271,
"iy" : 75
} ]
} ],
"id" : 1660,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy",
"name" : "Unnamed section copy",
"x" : 355,
"y" : 1268,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "ec01f2f9-87f7-4853-a2d8-6782f8410d4d",
"rows" : [ ],
"id" : 1661,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -5493,
"y" : 1485,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "bfafaa91-2f00-4ea8-a8ea-3e360b9b0fda",
"rows" : [ ],
"id" : 1662,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy",
"name" : "Unnamed section copy",
"x" : -3265,
"y" : 1408,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "53cab72d-7884-4a69-89e9-0054cc085457",
"rows" : [ {
"key" : "Unnamed section copy;;7",
"name" : "7",
"seats" : [ {
"key" : "Unnamed section copy;;7;;2",
"name" : "2",
"x" : -3190,
"y" : 1399,
"ix" : 47,
"iy" : 187
} ]
}, {
"key" : "Unnamed section copy;;8",
"name" : "8",
"seats" : [ {
"key" : "Unnamed section copy;;8;;2",
"name" : "2",
"x" : -3231,
"y" : 1399,
"ix" : 47,
"iy" : 215
} ]
}, {
"key" : "Unnamed section copy;;9",
"name" : "9",
"seats" : [ {
"key" : "Unnamed section copy;;9;;3",
"name" : "3",
"x" : -3272,
"y" : 1427,
"ix" : 75,
"iy" : 243
} ]
} ],
"id" : 1663,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -69,
"y" : 1318,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "dc806564-2d75-45d1-9452-e39753daca31",
"rows" : [ {
"key" : "Unnamed section;;6",
"name" : "6",
"seats" : [ {
"key" : "Unnamed section;;6;;8",
"name" : "8",
"x" : 53,
"y" : 1460,
"ix" : 327,
"iy" : 159
} ]
}, {
"key" : "Unnamed section;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section;;5;;4",
"name" : "4",
"x" : 94,
"y" : 1320,
"ix" : 187,
"iy" : 131
} ]
}, {
"key" : "Unnamed section;;4",
"name" : "4",
"seats" : [ {
"key" : "Unnamed section;;4;;3",
"name" : "3",
"x" : 134,
"y" : 1292,
"ix" : 159,
"iy" : 103
} ]
}, {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;14",
"name" : "14",
"x" : 256,
"y" : 1572,
"ix" : 439,
"iy" : 19
} ]
} ],
"id" : 1664,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -5718,
"y" : 2350,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "4c210ad3-953e-4f7b-9533-af05e6441c17",
"rows" : [ {
"key" : "Unnamed section;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section;;2;;4",
"name" : "4",
"x" : -5635,
"y" : 2332,
"ix" : 103,
"iy" : 47
} ]
}, {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;3",
"name" : "3",
"x" : -5666,
"y" : 2371,
"ix" : 75,
"iy" : 19
} ]
} ],
"id" : 1665,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy copy",
"name" : "Unnamed section copy copy",
"x" : -2268,
"y" : 903,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "1f646194-aee5-406e-ab1d-31f2dc4500df",
"rows" : [ {
"key" : "Unnamed section copy copy;;6",
"name" : "6",
"seats" : [ {
"key" : "Unnamed section copy copy;;6;;10",
"name" : "10",
"x" : -2125,
"y" : 1090,
"ix" : 271,
"iy" : 159
} ]
}, {
"key" : "Unnamed section copy copy;;10",
"name" : "10",
"seats" : [ {
"key" : "Unnamed section copy copy;;10;;14",
"name" : "14",
"x" : -2287,
"y" : 1202,
"ix" : 383,
"iy" : 271
} ]
}, {
"key" : "Unnamed section copy copy;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section copy copy;;5;;13",
"name" : "13",
"x" : -2084,
"y" : 1174,
"ix" : 355,
"iy" : 131
} ]
}, {
"key" : "Unnamed section copy copy;;4",
"name" : "4",
"seats" : [ {
"key" : "Unnamed section copy copy;;4;;1",
"name" : "1",
"x" : -2043,
"y" : 838,
"ix" : 19,
"iy" : 103
} ]
}, {
"key" : "Unnamed section copy copy;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section copy copy;;1;;2",
"name" : "2",
"x" : -1922,
"y" : 866,
"ix" : 47,
"iy" : 19
} ]
}, {
"key" : "Unnamed section copy copy;;7",
"name" : "7",
"seats" : [ {
"key" : "Unnamed section copy copy;;7;;10",
"name" : "10",
"x" : -2165,
"y" : 1090,
"ix" : 271,
"iy" : 187
} ]
}, {
"key" : "Unnamed section copy copy;;8",
"name" : "8",
"seats" : [ {
"key" : "Unnamed section copy copy;;8;;9",
"name" : "9",
"x" : -2206,
"y" : 1062,
"ix" : 243,
"iy" : 215
} ]
} ],
"id" : 1666,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -5405,
"y" : 2959,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "939e7164-d4bf-4ed0-bd0c-6bb073225d2e",
"rows" : [ {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;4",
"name" : "4",
"x" : -5374,
"y" : 2962,
"ix" : 103,
"iy" : 19
} ]
} ],
"id" : 1667,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy copy copy",
"name" : "Unnamed section copy copy copy",
"x" : -1752,
"y" : 903,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "896b6bab-4b5e-406c-9cbc-4cab5ec4e9a9",
"rows" : [ {
"key" : "Unnamed section copy copy copy;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section copy copy copy;;2;;7",
"name" : "7",
"x" : -1446,
"y" : 1006,
"ix" : 187,
"iy" : 47
} ]
}, {
"key" : "Unnamed section copy copy copy;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section copy copy copy;;5;;3",
"name" : "3",
"x" : -1567,
"y" : 894,
"ix" : 75,
"iy" : 131
}, {
"key" : "Unnamed section copy copy copy;;5;;9",
"name" : "9",
"x" : -1567,
"y" : 1062,
"ix" : 243,
"iy" : 131
} ]
}, {
"key" : "Unnamed section copy copy copy;;8",
"name" : "8",
"seats" : [ {
"key" : "Unnamed section copy copy copy;;8;;16",
"name" : "16",
"x" : -1689,
"y" : 1258,
"ix" : 439,
"iy" : 215
} ]
} ],
"id" : 1668,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -4429,
"y" : -1000,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "59e97351-f30e-4ff5-bf19-ca3d562ea780",
"rows" : [ ],
"id" : 1669,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -6514,
"y" : 952,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "b1147d11-4043-4fa1-b961-04796584489a",
"rows" : [ ],
"id" : 1670,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -3289,
"y" : 918,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "46399bc1-9cba-4f4b-9c97-92319513649c",
"rows" : [ {
"key" : "Unnamed section;;9",
"name" : "9",
"seats" : [ {
"key" : "Unnamed section;;9;;14",
"name" : "14",
"x" : -3267,
"y" : 1217,
"ix" : 383,
"iy" : 243
}, {
"key" : "Unnamed section;;9;;5",
"name" : "5",
"x" : -3267,
"y" : 965,
"ix" : 131,
"iy" : 243
} ]
}, {
"key" : "Unnamed section;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section;;5;;9",
"name" : "9",
"x" : -3105,
"y" : 1077,
"ix" : 243,
"iy" : 131
}, {
"key" : "Unnamed section;;5;;11",
"name" : "11",
"x" : -3105,
"y" : 1133,
"ix" : 299,
"iy" : 131
}, {
"key" : "Unnamed section;;5;;15",
"name" : "15",
"x" : -3105,
"y" : 1245,
"ix" : 411,
"iy" : 131
} ]
}, {
"key" : "Unnamed section;;6",
"name" : "6",
"seats" : [ {
"key" : "Unnamed section;;6;;5",
"name" : "5",
"x" : -3145,
"y" : 965,
"ix" : 131,
"iy" : 159
} ]
}, {
"key" : "Unnamed section;;8",
"name" : "8",
"seats" : [ {
"key" : "Unnamed section;;8;;11",
"name" : "11",
"x" : -3226,
"y" : 1133,
"ix" : 299,
"iy" : 215
} ]
} ],
"id" : 1671,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy copy",
"name" : "Unnamed section copy copy",
"x" : -2757,
"y" : 1406,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "a9b42f6a-a4f6-4ba9-8400-e5b4584f999d",
"rows" : [ {
"key" : "Unnamed section copy copy;;4",
"name" : "4",
"seats" : [ {
"key" : "Unnamed section copy copy;;4;;7",
"name" : "7",
"x" : -2560,
"y" : 1537,
"ix" : 187,
"iy" : 103
} ]
}, {
"key" : "Unnamed section copy copy;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section copy copy;;5;;7",
"name" : "7",
"x" : -2601,
"y" : 1537,
"ix" : 187,
"iy" : 131
} ]
} ],
"id" : 1672,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy copy",
"name" : "Unnamed section copy copy",
"x" : -2236,
"y" : 1402,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "983be00b-f854-4ff6-8ebd-ef6b99872d8c",
"rows" : [ {
"key" : "Unnamed section copy copy;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section copy copy;;3;;11",
"name" : "11",
"x" : -1999,
"y" : 1645,
"ix" : 299,
"iy" : 75
} ]
}, {
"key" : "Unnamed section copy copy;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section copy copy;;5;;12",
"name" : "12",
"x" : -2080,
"y" : 1673,
"ix" : 327,
"iy" : 131
} ]
}, {
"key" : "Unnamed section copy copy;;6",
"name" : "6",
"seats" : [ {
"key" : "Unnamed section copy copy;;6;;4",
"name" : "4",
"x" : -2121,
"y" : 1449,
"ix" : 103,
"iy" : 159
} ]
}, {
"key" : "Unnamed section copy copy;;9",
"name" : "9",
"seats" : [ {
"key" : "Unnamed section copy copy;;9;;2",
"name" : "2",
"x" : -2243,
"y" : 1393,
"ix" : 47,
"iy" : 243
} ]
}, {
"key" : "Unnamed section copy copy;;8",
"name" : "8",
"seats" : [ {
"key" : "Unnamed section copy copy;;8;;5",
"name" : "5",
"x" : -2202,
"y" : 1477,
"ix" : 131,
"iy" : 215
} ]
}, {
"key" : "Unnamed section copy copy;;10",
"name" : "10",
"seats" : [ {
"key" : "Unnamed section copy copy;;10;;9",
"name" : "9",
"x" : -2283,
"y" : 1589,
"ix" : 243,
"iy" : 271
}, {
"key" : "Unnamed section copy copy;;10;;1",
"name" : "1",
"x" : -2283,
"y" : 1365,
"ix" : 19,
"iy" : 271
} ]
} ],
"id" : 1676,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy",
"name" : "Unnamed section copy",
"x" : -2783,
"y" : 910,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "b3789906-2444-4c17-9e9a-ff877d012fb7",
"rows" : [ {
"key" : "Unnamed section copy;;8",
"name" : "8",
"seats" : [ {
"key" : "Unnamed section copy;;8;;6",
"name" : "6",
"x" : -2721,
"y" : 985,
"ix" : 159,
"iy" : 215
}, {
"key" : "Unnamed section copy;;8;;9",
"name" : "9",
"x" : -2721,
"y" : 1069,
"ix" : 243,
"iy" : 215
} ]
}, {
"key" : "Unnamed section copy;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section copy;;1;;6",
"name" : "6",
"x" : -2437,
"y" : 985,
"ix" : 159,
"iy" : 19
} ]
} ],
"id" : 1677,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy copy copy",
"name" : "Unnamed section copy copy copy",
"x" : -1724,
"y" : 1399,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "193e571f-c177-4168-a4ad-785006926195",
"rows" : [ {
"key" : "Unnamed section copy copy copy;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section copy copy copy;;2;;13",
"name" : "13",
"x" : -1446,
"y" : 1698,
"ix" : 355,
"iy" : 47
} ]
}, {
"key" : "Unnamed section copy copy copy;;9",
"name" : "9",
"seats" : [ {
"key" : "Unnamed section copy copy copy;;9;;14",
"name" : "14",
"x" : -1730,
"y" : 1726,
"ix" : 383,
"iy" : 243
} ]
}, {
"key" : "Unnamed section copy copy copy;;6",
"name" : "6",
"seats" : [ {
"key" : "Unnamed section copy copy copy;;6;;2",
"name" : "2",
"x" : -1608,
"y" : 1390,
"ix" : 47,
"iy" : 159
} ]
}, {
"key" : "Unnamed section copy copy copy;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section copy copy copy;;3;;2",
"name" : "2",
"x" : -1486,
"y" : 1390,
"ix" : 47,
"iy" : 75
} ]
}, {
"key" : "Unnamed section copy copy copy;;7",
"name" : "7",
"seats" : [ {
"key" : "Unnamed section copy copy copy;;7;;7",
"name" : "7",
"x" : -1649,
"y" : 1530,
"ix" : 187,
"iy" : 187
} ]
}, {
"key" : "Unnamed section copy copy copy;;10",
"name" : "10",
"seats" : [ {
"key" : "Unnamed section copy copy copy;;10;;5",
"name" : "5",
"x" : -1770,
"y" : 1474,
"ix" : 131,
"iy" : 271
} ]
}, {
"key" : "Unnamed section copy copy copy;;4",
"name" : "4",
"seats" : [ {
"key" : "Unnamed section copy copy copy;;4;;12",
"name" : "12",
"x" : -1527,
"y" : 1670,
"ix" : 327,
"iy" : 103
} ]
} ],
"id" : 1678,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -5389,
"y" : 1046,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "e2fb01cd-e47a-4bde-8da2-ab941992dcf1",
"rows" : [ {
"key" : "Unnamed section;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section;;2;;20",
"name" : "20",
"x" : -4873,
"y" : 1009,
"ix" : 551,
"iy" : 47
}, {
"key" : "Unnamed section;;2;;17",
"name" : "17",
"x" : -4873,
"y" : 1093,
"ix" : 467,
"iy" : 47
}, {
"key" : "Unnamed section;;2;;5",
"name" : "5",
"x" : -4873,
"y" : 1429,
"ix" : 131,
"iy" : 47
} ]
}, {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;13",
"name" : "13",
"x" : -4914,
"y" : 1205,
"ix" : 355,
"iy" : 19
} ]
} ],
"id" : 1679,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -5899,
"y" : 637,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "88602adf-1f49-4765-91ee-4a39f5af1737",
"rows" : [ ],
"id" : 1680,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -5569,
"y" : 1310,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "0a0ec93a-3ea6-4ac8-a785-1797dfbbaa57",
"rows" : [ ],
"id" : 1683,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy",
"name" : "Unnamed section copy",
"x" : -5590,
"y" : 652,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "e1c6e512-2c56-4238-8168-1f2e6a318f36",
"rows" : [ {
"key" : "Unnamed section copy;;4",
"name" : "4",
"seats" : [ {
"key" : "Unnamed section copy;;4;;6",
"name" : "6",
"x" : -5278,
"y" : 769,
"ix" : 215,
"iy" : 103
} ]
}, {
"key" : "Unnamed section copy;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section copy;;5;;10",
"name" : "10",
"x" : -5237,
"y" : 629,
"ix" : 355,
"iy" : 131
} ]
}, {
"key" : "Unnamed section copy;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section copy;;1;;3",
"name" : "3",
"x" : -5400,
"y" : 909,
"ix" : 75,
"iy" : 19
} ]
}, {
"key" : "Unnamed section copy;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section copy;;2;;1",
"name" : "1",
"x" : -5359,
"y" : 965,
"ix" : 19,
"iy" : 47
} ]
}, {
"key" : "Unnamed section copy;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section copy;;3;;9",
"name" : "9",
"x" : -5318,
"y" : 713,
"ix" : 271,
"iy" : 75
}, {
"key" : "Unnamed section copy;;3;;10",
"name" : "10",
"x" : -5318,
"y" : 685,
"ix" : 299,
"iy" : 75
} ]
} ],
"id" : 1684,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -5919,
"y" : 1316,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "b395dc5e-a91c-4bd2-aa99-4d9a59a6451b",
"rows" : [ ],
"id" : 1685,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section",
"name" : "Unnamed section",
"x" : -6611,
"y" : 1214,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "757325e0-0415-41ce-857e-c0098a979129",
"rows" : [ {
"key" : "Unnamed section;;11",
"name" : "11",
"seats" : [ {
"key" : "Unnamed section;;11;;1",
"name" : "1",
"x" : -6007,
"y" : 1676,
"ix" : 103,
"iy" : 299
}, {
"key" : "Unnamed section;;11;;7",
"name" : "7",
"x" : -6007,
"y" : 1508,
"ix" : 271,
"iy" : 299
} ]
}, {
"key" : "Unnamed section;;7",
"name" : "7",
"seats" : [ {
"key" : "Unnamed section;;7;;8",
"name" : "8",
"x" : -6169,
"y" : 1508,
"ix" : 271,
"iy" : 187
} ]
}, {
"key" : "Unnamed section;;12",
"name" : "12",
"seats" : [ {
"key" : "Unnamed section;;12;;7",
"name" : "7",
"x" : -5966,
"y" : 1508,
"ix" : 271,
"iy" : 327
} ]
}, {
"key" : "Unnamed section;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section;;1;;10",
"name" : "10",
"x" : -6413,
"y" : 1508,
"ix" : 271,
"iy" : 19
} ]
}, {
"key" : "Unnamed section;;9",
"name" : "9",
"seats" : [ {
"key" : "Unnamed section;;9;;10",
"name" : "10",
"x" : -6088,
"y" : 1172,
"ix" : 607,
"iy" : 243
} ]
}, {
"key" : "Unnamed section;;3",
"name" : "3",
"seats" : [ {
"key" : "Unnamed section;;3;;5",
"name" : "5",
"x" : -6332,
"y" : 1620,
"ix" : 159,
"iy" : 75
}, {
"key" : "Unnamed section;;3;;17",
"name" : "17",
"x" : -6332,
"y" : 1256,
"ix" : 523,
"iy" : 75
} ]
}, {
"key" : "Unnamed section;;5",
"name" : "5",
"seats" : [ {
"key" : "Unnamed section;;5;;9",
"name" : "9",
"x" : -6250,
"y" : 1284,
"ix" : 495,
"iy" : 131
} ]
} ],
"id" : 1686,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
}, {
"key" : "Unnamed section copy",
"name" : "Unnamed section copy",
"x" : -6554,
"y" : 556,
"width" : null,
"height" : null,
"angle" : null,
"guid" : "d79b0fe9-8e94-4bbb-a76b-329c4de4714d",
"rows" : [ {
"key" : "Unnamed section copy;;10",
"name" : "10",
"seats" : [ {
"key" : "Unnamed section copy;;10;;3",
"name" : "3",
"x" : -6045,
"y" : 991,
"ix" : 75,
"iy" : 271
} ]
}, {
"key" : "Unnamed section copy;;6",
"name" : "6",
"seats" : [ {
"key" : "Unnamed section copy;;6;;7",
"name" : "7",
"x" : -6207,
"y" : 879,
"ix" : 187,
"iy" : 159
} ]
}, {
"key" : "Unnamed section copy;;4",
"name" : "4",
"seats" : [ {
"key" : "Unnamed section copy;;4;;9",
"name" : "9",
"x" : -6288,
"y" : 627,
"ix" : 439,
"iy" : 103
}, {
"key" : "Unnamed section copy;;4;;12",
"name" : "12",
"x" : -6288,
"y" : 543,
"ix" : 523,
"iy" : 103
}, {
"key" : "Unnamed section copy;;4;;8",
"name" : "8",
"x" : -6288,
"y" : 655,
"ix" : 411,
"iy" : 103
} ]
}, {
"key" : "Unnamed section copy;;2",
"name" : "2",
"seats" : [ {
"key" : "Unnamed section copy;;2;;21",
"name" : "21",
"x" : -6369,
"y" : 459,
"ix" : 607,
"iy" : 47
}, {
"key" : "Unnamed section copy;;2;;2",
"name" : "2",
"x" : -6369,
"y" : 1019,
"ix" : 47,
"iy" : 47
} ]
}, {
"key" : "Unnamed section copy;;13",
"name" : "13",
"seats" : [ {
"key" : "Unnamed section copy;;13;;18",
"name" : "18",
"x" : -5923,
"y" : 543,
"ix" : 523,
"iy" : 355
}, {
"key" : "Unnamed section copy;;13;;15",
"name" : "15",
"x" : -5923,
"y" : 627,
"ix" : 439,
"iy" : 355
}, {
"key" : "Unnamed section copy;;13;;1",
"name" : "1",
"x" : -5923,
"y" : 1047,
"ix" : 19,
"iy" : 355
} ]
}, {
"key" : "Unnamed section copy;;8",
"name" : "8",
"seats" : [ {
"key" : "Unnamed section copy;;8;;13",
"name" : "13",
"x" : -6126,
"y" : 515,
"ix" : 551,
"iy" : 215
} ]
}, {
"key" : "Unnamed section copy;;1",
"name" : "1",
"seats" : [ {
"key" : "Unnamed section copy;;1;;10",
"name" : "10",
"x" : -6410,
"y" : 795,
"ix" : 271,
"iy" : 19
} ]
}, {
"key" : "Unnamed section copy;;9",
"name" : "9",
"seats" : [ {
"key" : "Unnamed section copy;;9;;9",
"name" : "9",
"x" : -6085,
"y" : 571,
"ix" : 495,
"iy" : 243
} ]
}, {
"key" : "Unnamed section copy;;12",
"name" : "12",
"seats" : [ {
"key" : "Unnamed section copy;;12;;13",
"name" : "13",
"x" : -5963,
"y" : 683,
"ix" : 383,
"iy" : 327
}, {
"key" : "Unnamed section copy;;12;;19",
"name" : "19",
"x" : -5963,
"y" : 515,
"ix" : 551,
"iy" : 327
} ]
} ],
"id" : 1687,
"shapes" : [ ],
"labelOffsetX" : null,
"labelOffsetY" : null,
"labelStyle" : null,
"labelVisible" : null
} ]
}
3.5.4. sectionMetadata
GET /api/private/v1.0/venues/schemas/{schemaId}/section/{sectionId}/
Retrieve section’s metadata
|
Getting section’s metadata with ID |
Body Parameter
Name |
Description |
Default |
Path Parameters
Name |
Description |
Default |
schemaId* |
null |
|
sectionId* |
null |
Return Type
Responses
Code |
Message |
Datatype |
200 |
Returns section's metadata |
|
400 |
Input data is not valid |
|
403 |
Forbidden. Please use correct private key. |
Examples
HTTP Request
GET /api/private/v1.0/venues/schemas/80/section/1631/ HTTP/1.1
Content-Type: application/json
X-API-Key: af90387c-9071-4015-9a58-cbb543d84130
Host: booking.seatmap.pro
cURL Request
$ curl 'https://booking.seatmap.pro/api/private/v1.0/venues/schemas/80/section/1631/' -i -X GET \
-H 'Content-Type: application/json' \
-H 'X-API-Key: af90387c-9071-4015-9a58-cbb543d84130'
Response Body
{
"id" : 1631,
"isGa" : false,
"name" : "Unnamed section",
"x" : -5515.22,
"y" : 2072.11,
"guid" : "6db6be52-7d42-4960-8da2-6b7be0a25884",
"left" : null,
"top" : null,
"angle" : null,
"width" : null,
"height" : null,
"type" : "SECTION",
"properties" : {
"rlLeft" : false,
"rlRight" : false,
"rlCenter" : false
},
"shapes" : [ ]
}
3.5.5. venueAll
GET /api/private/v1.0/venues/
Retrieve list of all venues
|
Getting all the venues with paging |
Body Parameter
Name |
Description |
Default |
Query Parameters
Name |
Description |
Default |
limit |
Quantity of requested items |
50 |
offset |
Offset for the pager |
0 |
Return Type
array[Venue]
Responses
Code |
Message |
Datatype |
200 |
Returns list of objects |
List[Venue] |
400 |
Input data is not valid |
List[Venue] |
403 |
Forbidden. Please use correct private key. |
List[Venue] |
Examples
HTTP Request
GET /api/private/v1.0/venues/ HTTP/1.1
Content-Type: application/json
X-API-Key: af90387c-9071-4015-9a58-cbb543d84130
Host: booking.seatmap.pro
cURL Request
$ curl 'https://booking.seatmap.pro/api/private/v1.0/venues/' -i -X GET \
-H 'Content-Type: application/json' \
-H 'X-API-Key: af90387c-9071-4015-9a58-cbb543d84130'
Response Body
[ {
"id" : 68,
"name" : "O2 Arena",
"address" : "London, UK",
"lat" : 0.0,
"lng" : 0.0
} ]
3.5.6. venueById
GET /api/private/v1.0/venues/{venueId}
Retrieves a specific venue by id
|
Getting venue by Id |
Body Parameter
Name |
Description |
Default |
Path Parameters
Name |
Description |
Default |
venueId* |
null |
Return Type
Responses
Code |
Message |
Datatype |
200 |
Returns list of objects |
|
400 |
Input data is not valid |
|
403 |
Forbidden. Please use correct private key. |
Examples
HTTP Request
GET /api/private/v1.0/venues/68 HTTP/1.1
Content-Type: application/json
X-API-Key: af90387c-9071-4015-9a58-cbb543d84130
Host: booking.seatmap.pro
cURL Request
$ curl 'https://booking.seatmap.pro/api/private/v1.0/venues/68' -i -X GET \
-H 'Content-Type: application/json' \
-H 'X-API-Key: af90387c-9071-4015-9a58-cbb543d84130'
Response Body
{
"id" : 68,
"name" : "O2 Arena",
"address" : "London, UK",
"lat" : 0.0,
"lng" : 0.0
}
4. Data Models
4.1. Event
Valid event object without id field
Name |
Type |
Description |
id |
UUID |
Event identifier. |
start* |
Date |
Event start date. |
killAfter |
Date |
After specified date event will be marked as archived (deprecated, optional) |
name* |
String |
Event name. Must be not empty. |
schemaId* |
Long |
Event refers to existing schema by id. |
4.2. EventMetadata
Contains list of sections
Name |
Type |
Description |
sectors |
List[SectorMetadata] |
List of sections metadata |
4.3. Price
Name |
Type |
Description |
id |
Long |
Price identifier |
name* |
String |
Price value |
eventId* |
UUID |
Related price id |
externalId |
String |
Identifier of the price in the integrating system |
4.4. PriceAssignment
Name |
Type |
Description |
capacity |
Integer |
Capacity may be applied only for GA sections |
compositeKey* |
String |
\\<\\<#composite-key, Composite Key\\>\\> to be assigned |
price* |
Integer |
Specified price to assign. |
properties |
Map[any] |
Additional properties. API assumes that you can pass any JSON structure to the renderer. |
4.5. RowMetadata
Name |
Type |
Description |
key |
String |
\\<\\<#composite-key, Composite Key\\>\\> |
name |
String |
Row name |
seats |
List[SeatMetadata] |
Array of SeatMetadata |
4.6. Schema
Name |
Type |
Description |
id |
Long |
Identifier |
capacity |
Integer |
Maximum schema capacity |
name |
String |
Name of the schema |
venueId |
Long |
Identifier of the Venue |
eventId |
UUID |
Default eventId for the schema. Deprecated. |
4.7. SeatMetadata
Name |
Type |
Description |
key |
String |
\\<\\<#composite-key, Composite Key\\>\\> |
name |
String |
Seat name |
x |
Integer |
Absolute horizontal (X) coordinate |
y |
Integer |
Absolute vertical (Y) coordinate |
ix |
Integer |
Initial horizontal (X) coordinate, without transformations |
iy |
Integer |
Initial vertical (Y) coordinate, without transformations |
4.8. SectionPhoto
A photo attached to a section
Name |
Type |
Description |
url |
String |
Public URL of the full-size photo |
thumbUrl |
String |
Public URL of the thumbnail variant |
caption |
String |
Caption shown alongside the photo |
4.9. SectorMetadata
Name |
Type |
Description |
key |
String |
\\<\\<#composite-key, Composite Key\\>\\> |
name |
String |
Section name |
x |
Integer |
Absolute horizontal (X) coordinate |
y |
Integer |
Absolute vertical (Y) coordinate |
width |
Integer |
Section’s width. Applicable only for GA sections |
height |
Integer |
Section’s height. Applicable only for GA sections |
angle |
Integer |
Section’s rotation angle. Applicable only for GA sections |
guid |
UUID |
Unique UUID |
rows |
List[RowMetadata] |
List of rows |
id |
Long |
Unique id of the section |
shapes |
List[ShapeMetadata] |
List of shapes |
labelOffsetX |
Double |
Label anchor X offset from section center |
labelOffsetY |
Double |
Label anchor Y offset from section center |
labelStyle |
String |
Label style overrides as JSON string |
labelVisible |
Boolean |
Whether the section name label should render |
photos |
List[SectionPhoto] |
Photos attached to the section |
4.10. SectorWithCoords
Name |
Type |
Description |
id |
Long |
Unique identifier of the section |
isGa |
Boolean |
Whether the section is a general admission area without individual seats |
name* |
String |
Display name of the section |
x |
BigDecimal |
Absolute horizontal (X) coordinate of the section |
y |
BigDecimal |
Absolute vertical (Y) coordinate of the section |
guid |
UUID |
Stable global identifier of the section |
left |
BigDecimal |
Horizontal (X) coordinate of the first shape of the section |
top |
BigDecimal |
Vertical (Y) coordinate of the first shape of the section |
angle |
Integer |
Rotation of the section in degrees |
width |
BigDecimal |
Width of the section |
height |
BigDecimal |
Height of the section |
type |
String |
Section type as defined in the editor |
properties |
Map[any] |
Free-form section properties as stored in the editor |
shapes |
List[Shape] |
Shapes the section outline is drawn from |
4.11. Selection
Name |
Type |
Description |
capacity |
Integer |
Capacity may be applied only for GA sections |
compositeKey* |
String |
\\<\\<#composite-key, Composite Key\\>\\> to be assigned |
4.12. Shape
4.12.1. textPosition
Placement of the text within the shape
Value |
TOP |
BOTTOM |
LEFT |
RIGHT |
Name |
Type |
Description |
id |
UUID |
Unique identifier of the shape |
width |
BigDecimal |
Width of the shape |
height |
BigDecimal |
Height of the shape |
y |
BigDecimal |
Absolute vertical (Y) coordinate of the shape |
x |
BigDecimal |
Absolute horizontal (X) coordinate of the shape |
angle |
Integer |
Rotation of the shape in degrees |
groupOfSeatsGuid |
UUID |
Identifier of the group of seats the shape belongs to |
order |
Integer |
Rendering order of the shape within its section |
text |
String |
Text rendered on the shape |
textPosition |
String |
Placement of the text within the shape |
textColor |
String |
Colour of the text rendered on the shape |
fill |
String |
Fill colour of the shape |
fontScale |
Integer |
Relative size of the text rendered on the shape |
4.13. ShapeMetadata
4.13.1. textPosition
Placement of the text within the shape
Value |
TOP |
BOTTOM |
LEFT |
RIGHT |
Name |
Type |
Description |
id |
UUID |
Unique identifier of the shape |
width |
Integer |
Width of the shape |
height |
Integer |
Height of the shape |
top |
Integer |
Vertical (Y) coordinate of the shape |
left |
Integer |
Horizontal (X) coordinate of the shape |
angle |
Integer |
Rotation of the shape in degrees |
groupOfSeatsGuid |
UUID |
Identifier of the group of seats the shape belongs to |
order |
Integer |
Rendering order of the shape within its section |
text |
String |
Text rendered on the shape |
textPosition |
String |
Placement of the text within the shape |
textColor |
String |
Colour of the text rendered on the shape |
fill |
String |
Fill colour of the shape |
fontScale |
Integer |
Relative size of the text rendered on the shape |
4.14. Venue
Name |
Type |
Description |
id |
Long |
Venue identifier |
name |
String |
Venue name |
address |
String |
Venue address |
lat |
Double |
Venue latitude |
lng |
Double |
Venue longitude |