From 8ae61af7ddb91a0dc2dd58216fb17754fa8d159b Mon Sep 17 00:00:00 2001 From: umsangdon Date: Mon, 31 Aug 2026 14:38:53 +0900 Subject: [PATCH] auto: 2026-08-31 14:38 (ESD_LAPTOP) --- .../B07_DesignDetail_Engine_Cad_Basin.py | 6 +- .../B07_DesignDetail_Engine_Cad_Long.py | 2 +- .../B07_DesignDetail_Engine_Cad_MassHaul.py | 6 +- .../B07_DesignDetail_Engine_Cad_Sheet.py | 2 +- .../B07_DesignDetail_Engine_Template.py | 22 +- .../template_2dDrawing/00_template_A1.json | 146506 +-------------- 6 files changed, 46 insertions(+), 146498 deletions(-) diff --git a/B07_DesignDetail/B07_DesignDetail_Engine_Cad_Basin.py b/B07_DesignDetail/B07_DesignDetail_Engine_Cad_Basin.py index c03ba318..05372652 100644 --- a/B07_DesignDetail/B07_DesignDetail_Engine_Cad_Basin.py +++ b/B07_DesignDetail/B07_DesignDetail_Engine_Cad_Basin.py @@ -381,7 +381,11 @@ def build_watershed_drawing( ) ) entities.extend(compass_entities(drawing_id, (max_bx - 8.0, max_by - 8.0), 14.0)) - entities.extend(frame_entities(drawing_id, entities_bbox(entities) or bbox, fit=False)) + entities.extend( + frame_entities( + drawing_id, entities_bbox(entities) or bbox, fit=False, fields={"도면명": "유역도"} + ) + ) return { "format": DRAWING_FORMAT, diff --git a/B07_DesignDetail/B07_DesignDetail_Engine_Cad_Long.py b/B07_DesignDetail/B07_DesignDetail_Engine_Cad_Long.py index 7df1aa8c..78537871 100644 --- a/B07_DesignDetail/B07_DesignDetail_Engine_Cad_Long.py +++ b/B07_DesignDetail/B07_DesignDetail_Engine_Cad_Long.py @@ -669,7 +669,7 @@ def build_longitudinal_drawing( # A1 도각: 콘텐츠가 이미 종이 mm라 도각도 실치수(1:1)로 두고 위치만 맞춘다. bbox = entities_bbox(entities) if bbox: - entities.extend(frame_entities(drawing_id, bbox, fit=False)) + entities.extend(frame_entities(drawing_id, bbox, fit=False, fields={"도면명": "종단면도"})) return { "format": DRAWING_FORMAT, diff --git a/B07_DesignDetail/B07_DesignDetail_Engine_Cad_MassHaul.py b/B07_DesignDetail/B07_DesignDetail_Engine_Cad_MassHaul.py index 327cc2c8..8417e530 100644 --- a/B07_DesignDetail/B07_DesignDetail_Engine_Cad_MassHaul.py +++ b/B07_DesignDetail/B07_DesignDetail_Engine_Cad_MassHaul.py @@ -517,7 +517,11 @@ def build_mass_haul_drawing( align="right", ) ) - entities.extend(frame_entities(drawing_id, entities_bbox(entities) or bbox, fit=False)) + entities.extend( + frame_entities( + drawing_id, entities_bbox(entities) or bbox, fit=False, fields={"도면명": "토적도"} + ) + ) return { "format": DRAWING_FORMAT, diff --git a/B07_DesignDetail/B07_DesignDetail_Engine_Cad_Sheet.py b/B07_DesignDetail/B07_DesignDetail_Engine_Cad_Sheet.py index 105614d8..86fd1434 100644 --- a/B07_DesignDetail/B07_DesignDetail_Engine_Cad_Sheet.py +++ b/B07_DesignDetail/B07_DesignDetail_Engine_Cad_Sheet.py @@ -204,7 +204,7 @@ def build_cross_sheet(sheet: dict[str, Any], sections: list[dict[str, Any]]) -> bbox = entities_bbox(entities) if bbox: - entities.extend(frame_entities(sheet["id"], bbox, fit=False)) + entities.extend(frame_entities(sheet["id"], bbox, fit=False, fields={"도면명": "횡단면도"})) return { "format": DRAWING_FORMAT, diff --git a/B07_DesignDetail/B07_DesignDetail_Engine_Template.py b/B07_DesignDetail/B07_DesignDetail_Engine_Template.py index 12783025..402d5b8a 100644 --- a/B07_DesignDetail/B07_DesignDetail_Engine_Template.py +++ b/B07_DesignDetail/B07_DesignDetail_Engine_Template.py @@ -11,6 +11,7 @@ A1 템플릿 기하(변환 시점 고정값): 전체 840x594, 하단 y17~47 표 import json import logging +import re from functools import lru_cache from pathlib import Path from typing import Any @@ -137,11 +138,28 @@ def usable_area() -> tuple[float, float]: ) +_PLACEHOLDER = re.compile(r"\{\{\s*([^}]+?)\s*\}\}") + + +def _fill_placeholders(entities: list[dict[str, Any]], fields: dict[str, str]) -> None: + """도각 텍스트의 {{키}}를 값으로 바꾼다. 값이 없으면 빈칸 — 남의 값이 남지 않는다.""" + for entity in entities: + if entity.get("type") != "Text": + continue + shape = entity.get("shapeData") or {} + label = shape.get("label") + if isinstance(label, str) and "{{" in label: + shape["label"] = _PLACEHOLDER.sub( + lambda match: str(fields.get(match.group(1), "")), label + ) + + def frame_entities( drawing_id: str, content_bbox: tuple[float, float, float, float], template_name: str = A1_TEMPLATE, fit: bool = True, + fields: dict[str, str] | None = None, ) -> list[dict[str, Any]]: """콘텐츠 bbox를 감싸는 도각 프레임 엔티티 목록(잠금 레이어). 템플릿 없으면 빈 목록. @@ -173,7 +191,9 @@ def frame_entities( dx = (min_x + max_x) / 2.0 - (ix0 + ix1) / 2.0 * scale dy = (min_y + max_y) / 2.0 - (iy0 + iy1) / 2.0 * scale - return [ + placed = [ _transform_entity(entity, f"{drawing_id}:frame:{index}", scale, dx, dy) for index, entity in enumerate(template.get("entities", [])) ] + _fill_placeholders(placed, fields or {}) + return placed diff --git a/resources/template_2dDrawing/00_template_A1.json b/resources/template_2dDrawing/00_template_A1.json index 19c92a74..30ffcf75 100644 --- a/resources/template_2dDrawing/00_template_A1.json +++ b/resources/template_2dDrawing/00_template_A1.json @@ -1,6 +1,6 @@ { "format": 6, - "source": "00_templete_A1.dxf", + "source": "00_templete_A1.dxf (남의 프로젝트 자료 제거 · 플레이스홀더화)", "entities": [ { "id": "4afa84ae-9c15-50ec-8a76-db87d04d6311", @@ -9,7 +9,7 @@ "lineWidth": 1, "layerId": "-00.기본BOX TEXT", "shapeData": { - "label": "표 준 횡 단 면 도", + "label": "{{도면명}}", "basePoint": { "x": 728.9614, "y": 27.994425 @@ -33,7 +33,7 @@ "lineWidth": 1, "layerId": "-00.기본BOX TEXT", "shapeData": { - "label": "00", + "label": "{{도면번호}}", "basePoint": { "x": 794.15392, "y": 27.994425 @@ -57,7 +57,7 @@ "lineWidth": 1, "layerId": "-00.기본BOX", "shapeData": { - "label": "옥갑탄광 산림복구공사", + "label": "{{공사명}}", "basePoint": { "x": 172.993229, "y": 26.184925 @@ -859,7 +859,7 @@ "lineWidth": 1, "layerId": "-00.기본BOX", "shapeData": { - "label": "최 호 식", + "label": "{{분야별책임자}}", "basePoint": { "x": 602.801356, "y": 27.994425 @@ -883,7 +883,7 @@ "lineWidth": 1, "layerId": "-00.기본BOX", "shapeData": { - "label": "정 규 원", + "label": "{{과업책임자}}", "basePoint": { "x": 551.777083, "y": 27.994425 @@ -907,7 +907,7 @@ "lineWidth": 1, "layerId": "-00.기본BOX", "shapeData": { - "label": "양 희 균", + "label": "{{설계자}}", "basePoint": { "x": 651.777083, "y": 27.994425 @@ -931,7 +931,7 @@ "lineWidth": 1, "layerId": "-00.기본BOX", "shapeData": { - "label": "2012. 8.", + "label": "{{설계일자}}", "basePoint": { "x": 507.61607, "y": 27.994425 @@ -1000,93887 +1000,6 @@ } } }, - { - "id": "55125320-79fa-5456-8c5f-01d0ebc4c57d", - "type": "PolyLine", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": null, - "children": [ - { - "id": "7e785fae-e58a-5d10-8193-81d3d744a99d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.992626, - "y": 34.188296 - }, - "endPoint": { - "x": 325.998711, - "y": 34.17378 - } - } - }, - { - "id": "895d3f8d-380d-55f7-9cfa-f062a149e326", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.998711, - "y": 34.17378 - }, - "endPoint": { - "x": 326.005861, - "y": 34.159782 - } - } - }, - { - "id": "fe36bcd5-30d5-52ae-9aaf-f9e4fbbe033b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.005861, - "y": 34.159782 - }, - "endPoint": { - "x": 326.014043, - "y": 34.146362 - } - } - }, - { - "id": "b381e67b-bf2f-57e1-a3b9-bd33cab54f2b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.014043, - "y": 34.146362 - }, - "endPoint": { - "x": 326.023227, - "y": 34.133578 - } - } - }, - { - "id": "ac1cf930-3f62-5246-8e2e-003f382d3500", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.023227, - "y": 34.133578 - }, - "endPoint": { - "x": 326.039102, - "y": 34.11338 - } - } - }, - { - "id": "91336675-d6fd-523e-af4d-27a70d1e47cf", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.039102, - "y": 34.11338 - }, - "endPoint": { - "x": 326.055199, - "y": 34.093359 - } - } - }, - { - "id": "e57ee33b-b72b-55ba-a3ef-4010355dfd41", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.055199, - "y": 34.093359 - }, - "endPoint": { - "x": 326.071515, - "y": 34.073517 - } - } - }, - { - "id": "e4c0f5a4-c2bd-59c4-b962-70ca4fe38c5f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.071515, - "y": 34.073517 - }, - "endPoint": { - "x": 326.08805, - "y": 34.053855 - } - } - }, - { - "id": "e079f97e-936b-5b0b-9156-c965ffec4af4", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.08805, - "y": 34.053855 - }, - "endPoint": { - "x": 326.100057, - "y": 34.039954 - } - } - }, - { - "id": "89f5ae5a-9547-5008-8738-e1b7a177be91", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.100057, - "y": 34.039954 - }, - "endPoint": { - "x": 326.112277, - "y": 34.02624 - } - } - }, - { - "id": "bb7809a0-b66d-561e-ae18-a9fae94e18e9", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.112277, - "y": 34.02624 - }, - "endPoint": { - "x": 326.124707, - "y": 34.012716 - } - } - }, - { - "id": "1a7d52e8-2c90-54ad-9bfc-769f8e453689", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.124707, - "y": 34.012716 - }, - "endPoint": { - "x": 326.137344, - "y": 33.999385 - } - } - }, - { - "id": "2630054e-5e4a-58aa-9a8b-7a41aab0ab8e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.137344, - "y": 33.999385 - }, - "endPoint": { - "x": 326.168095, - "y": 33.968105 - } - } - }, - { - "id": "010e779f-bace-592d-8063-54698cd310ba", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.168095, - "y": 33.968105 - }, - "endPoint": { - "x": 326.199491, - "y": 33.937479 - } - } - }, - { - "id": "edc2eddb-c591-541a-9d3b-defc0de88dff", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.199491, - "y": 33.937479 - }, - "endPoint": { - "x": 326.231522, - "y": 33.907518 - } - } - }, - { - "id": "e200611c-5f69-58ef-9540-b3abced9cc4d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.231522, - "y": 33.907518 - }, - "endPoint": { - "x": 326.264176, - "y": 33.878231 - } - } - }, - { - "id": "a0634ad3-40df-525a-a170-f3c40dfe89b0", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.264176, - "y": 33.878231 - }, - "endPoint": { - "x": 326.287003, - "y": 33.858797 - } - } - }, - { - "id": "aaeaae15-dbde-59ab-9656-5d9d067385d8", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.287003, - "y": 33.858797 - }, - "endPoint": { - "x": 326.31041, - "y": 33.840077 - } - } - }, - { - "id": "396683f7-765b-59b7-9687-5ef3a7bf21f7", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.31041, - "y": 33.840077 - }, - "endPoint": { - "x": 326.33438, - "y": 33.822083 - } - } - }, - { - "id": "c7c8ca15-f372-5a3c-8299-2bbced3b4eac", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.33438, - "y": 33.822083 - }, - "endPoint": { - "x": 326.358896, - "y": 33.804829 - } - } - }, - { - "id": "85d07c5c-eab3-5bef-b192-fdf364c6814e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.358896, - "y": 33.804829 - }, - "endPoint": { - "x": 326.38081, - "y": 33.79052 - } - } - }, - { - "id": "fa5aebf8-8b79-5b4b-b435-78b491667445", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.38081, - "y": 33.79052 - }, - "endPoint": { - "x": 326.403256, - "y": 33.77708 - } - } - }, - { - "id": "78025e86-b6fd-52cb-b2b0-2d9ae0333bb7", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.403256, - "y": 33.77708 - }, - "endPoint": { - "x": 326.426208, - "y": 33.764523 - } - } - }, - { - "id": "12cfb218-4e66-5ddf-a8a1-e0bd779ede59", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.426208, - "y": 33.764523 - }, - "endPoint": { - "x": 326.44964, - "y": 33.752865 - } - } - }, - { - "id": "1bfc8775-424f-5dcf-9837-8ff76069b699", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.44964, - "y": 33.752865 - }, - "endPoint": { - "x": 326.49013, - "y": 33.734255 - } - } - }, - { - "id": "78b3a1bf-ed06-58a7-a97b-eb7f98c47109", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.49013, - "y": 33.734255 - }, - "endPoint": { - "x": 326.531029, - "y": 33.716577 - } - } - }, - { - "id": "23053c6e-dad8-5964-aa25-6fc035ea305a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.531029, - "y": 33.716577 - }, - "endPoint": { - "x": 326.572321, - "y": 33.699838 - } - } - }, - { - "id": "9ff10c8e-26f2-5028-9978-5557f59719e0", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.572321, - "y": 33.699838 - }, - "endPoint": { - "x": 326.61399, - "y": 33.684043 - } - } - }, - { - "id": "eb15b0a6-2238-5bd4-aab1-f904cfb603bb", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.61399, - "y": 33.684043 - }, - "endPoint": { - "x": 326.671996, - "y": 33.663642 - } - } - }, - { - "id": "f475bcc2-54b7-51fd-951d-19399c7ce914", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.671996, - "y": 33.663642 - }, - "endPoint": { - "x": 326.730492, - "y": 33.644727 - } - } - }, - { - "id": "ffc7d08c-1006-526e-8557-3ab3e088e6c1", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.730492, - "y": 33.644727 - }, - "endPoint": { - "x": 326.78945, - "y": 33.627306 - } - } - }, - { - "id": "8fd17777-b5df-51e8-9051-59c20540dfab", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.78945, - "y": 33.627306 - }, - "endPoint": { - "x": 326.848842, - "y": 33.611387 - } - } - }, - { - "id": "402454b5-1289-564c-8add-761e98900c77", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.848842, - "y": 33.611387 - }, - "endPoint": { - "x": 326.882038, - "y": 33.60375 - } - } - }, - { - "id": "7212edbc-b90c-5238-979e-33c3d405e21c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.882038, - "y": 33.60375 - }, - "endPoint": { - "x": 326.915532, - "y": 33.597651 - } - } - }, - { - "id": "39b15c27-3d5b-5b2c-86c6-ca9751177c8d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.915532, - "y": 33.597651 - }, - "endPoint": { - "x": 326.949271, - "y": 33.593098 - } - } - }, - { - "id": "af1fed71-7956-514f-9a9d-d5f980ee8669", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.949271, - "y": 33.593098 - }, - "endPoint": { - "x": 326.983202, - "y": 33.590101 - } - } - }, - { - "id": "f3fcb7aa-d636-5eec-aa58-0e4fda7b464b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.983202, - "y": 33.590101 - }, - "endPoint": { - "x": 327.013375, - "y": 33.588304 - } - } - }, - { - "id": "da1780c8-64e9-50b6-9563-3e7596f42fcd", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.013375, - "y": 33.588304 - }, - "endPoint": { - "x": 327.043565, - "y": 33.586844 - } - } - }, - { - "id": "a1455f73-92b5-54db-93fa-33a7cc304f57", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.043565, - "y": 33.586844 - }, - "endPoint": { - "x": 327.073769, - "y": 33.585721 - } - } - }, - { - "id": "318a1fe3-f5b7-58c4-bf54-b6403d6403b4", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.073769, - "y": 33.585721 - }, - "endPoint": { - "x": 327.103985, - "y": 33.584937 - } - } - }, - { - "id": "810bd70c-1ffb-5054-aa27-c3e9b881b113", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.103985, - "y": 33.584937 - }, - "endPoint": { - "x": 327.156016, - "y": 33.584045 - } - } - }, - { - "id": "72ccf288-2adc-5c96-a830-386d0cde3910", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.156016, - "y": 33.584045 - }, - "endPoint": { - "x": 327.208051, - "y": 33.583492 - } - } - }, - { - "id": "a9cb0326-967a-54f1-b28d-5753ea2010e8", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.208051, - "y": 33.583492 - }, - "endPoint": { - "x": 327.260088, - "y": 33.583276 - } - } - }, - { - "id": "b98bc63b-392c-5987-a405-7ee5feda08c5", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.260088, - "y": 33.583276 - }, - "endPoint": { - "x": 327.312126, - "y": 33.583398 - } - } - }, - { - "id": "b7daf3fe-f9a6-566e-b30d-6a069f0069a1", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.312126, - "y": 33.583398 - }, - "endPoint": { - "x": 327.366695, - "y": 33.583896 - } - } - }, - { - "id": "660862b0-a878-5c96-91ec-2007aaceb03f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.366695, - "y": 33.583896 - }, - "endPoint": { - "x": 327.421259, - "y": 33.584781 - } - } - }, - { - "id": "0eb027f2-edb1-5435-9fda-917c4563e291", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.421259, - "y": 33.584781 - }, - "endPoint": { - "x": 327.475815, - "y": 33.586051 - } - } - }, - { - "id": "263973a1-146c-5507-a227-e2cd45393b45", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.475815, - "y": 33.586051 - }, - "endPoint": { - "x": 327.530361, - "y": 33.587709 - } - } - }, - { - "id": "e02d5e81-1580-564e-8979-12e6e02ff87a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.530361, - "y": 33.587709 - }, - "endPoint": { - "x": 327.574864, - "y": 33.589412 - } - } - }, - { - "id": "bfd0cbcd-98b4-5d44-8d04-47a24440932b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.574864, - "y": 33.589412 - }, - "endPoint": { - "x": 327.61935, - "y": 33.591501 - } - } - }, - { - "id": "904b3383-cddb-5df4-9ccd-8bc1585fbcd7", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.61935, - "y": 33.591501 - }, - "endPoint": { - "x": 327.663815, - "y": 33.593975 - } - } - }, - { - "id": "de01ab4a-f1f0-50d6-b96f-e1c6eaa8211c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.663815, - "y": 33.593975 - }, - "endPoint": { - "x": 327.708259, - "y": 33.596836 - } - } - }, - { - "id": "ff35a625-c26d-517b-b85c-1ce067fc730d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.708259, - "y": 33.596836 - }, - "endPoint": { - "x": 327.754751, - "y": 33.601037 - } - } - }, - { - "id": "85be64bb-d04c-530b-b692-f60bf705d670", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.754751, - "y": 33.601037 - }, - "endPoint": { - "x": 327.800997, - "y": 33.607231 - } - } - }, - { - "id": "894de15f-6210-5a41-918a-7dce4ed0a8a0", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.800997, - "y": 33.607231 - }, - "endPoint": { - "x": 327.846935, - "y": 33.615408 - } - } - }, - { - "id": "e2623104-7736-53db-8c4b-79577e00dff6", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.846935, - "y": 33.615408 - }, - "endPoint": { - "x": 327.8925, - "y": 33.625557 - } - } - }, - { - "id": "88cb9a85-1180-5b80-81e4-209c76989b92", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.8925, - "y": 33.625557 - }, - "endPoint": { - "x": 327.943012, - "y": 33.638987 - } - } - }, - { - "id": "05ef5854-9085-5b8c-9cdb-b2705f48346a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.943012, - "y": 33.638987 - }, - "endPoint": { - "x": 327.992952, - "y": 33.654341 - } - } - }, - { - "id": "050aaea4-fc3f-5837-9f01-2ee79c87c922", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.992952, - "y": 33.654341 - }, - "endPoint": { - "x": 328.042267, - "y": 33.6716 - } - } - }, - { - "id": "3a9b2cbf-bff1-5112-8d6d-28da018faac2", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.042267, - "y": 33.6716 - }, - "endPoint": { - "x": 328.0909, - "y": 33.690746 - } - } - }, - { - "id": "fa013b6a-9733-589d-8add-5a8d63e939c4", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.0909, - "y": 33.690746 - }, - "endPoint": { - "x": 328.123983, - "y": 33.705092 - } - } - }, - { - "id": "39db180a-1100-59d0-b24b-fcf25618d030", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.123983, - "y": 33.705092 - }, - "endPoint": { - "x": 328.156618, - "y": 33.720413 - } - } - }, - { - "id": "c9f0bfad-6263-5275-8948-94808faaca92", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.156618, - "y": 33.720413 - }, - "endPoint": { - "x": 328.188781, - "y": 33.736699 - } - } - }, - { - "id": "022c05f2-deec-59fa-a17e-75d243dd1f6d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.188781, - "y": 33.736699 - }, - "endPoint": { - "x": 328.220452, - "y": 33.75394 - } - } - }, - { - "id": "11965e07-beaf-53b8-943b-780fbd075426", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.220452, - "y": 33.75394 - }, - "endPoint": { - "x": 328.254381, - "y": 33.773686 - } - } - }, - { - "id": "bf6a5e37-d1cb-5817-994f-47a06926ba1b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.254381, - "y": 33.773686 - }, - "endPoint": { - "x": 328.287751, - "y": 33.794349 - } - } - }, - { - "id": "2940ad11-160a-5b81-abe6-f1b6c289b767", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.287751, - "y": 33.794349 - }, - "endPoint": { - "x": 328.320544, - "y": 33.815917 - } - } - }, - { - "id": "5d70cbe2-f706-5b63-9d2e-405b2f94ed7d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.320544, - "y": 33.815917 - }, - "endPoint": { - "x": 328.35274, - "y": 33.838378 - } - } - }, - { - "id": "0d40d3aa-2260-5458-bf12-aa6720d2c78b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.35274, - "y": 33.838378 - }, - "endPoint": { - "x": 328.378819, - "y": 33.857611 - } - } - }, - { - "id": "663f009d-8a5d-5bcd-9c4e-ec5078657102", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.378819, - "y": 33.857611 - }, - "endPoint": { - "x": 328.404398, - "y": 33.877494 - } - } - }, - { - "id": "51b3ad4c-7de5-5b4d-96be-81ac365a7e64", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.404398, - "y": 33.877494 - }, - "endPoint": { - "x": 328.429467, - "y": 33.898019 - } - } - }, - { - "id": "f877d07e-cda3-596a-9138-fb0d49dc501e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.429467, - "y": 33.898019 - }, - "endPoint": { - "x": 328.454012, - "y": 33.919174 - } - } - }, - { - "id": "c375dbeb-2c4f-50eb-a996-1a5221e26e11", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.454012, - "y": 33.919174 - }, - "endPoint": { - "x": 328.473188, - "y": 33.936676 - } - } - }, - { - "id": "5ad227f9-b8f3-5376-8eab-a6ca7a342e55", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.473188, - "y": 33.936676 - }, - "endPoint": { - "x": 328.491797, - "y": 33.95477 - } - } - }, - { - "id": "ba1e0a86-fa47-59c0-a4c0-5f5384576db6", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.491797, - "y": 33.95477 - }, - "endPoint": { - "x": 328.509825, - "y": 33.973443 - } - } - }, - { - "id": "6d41f730-0307-58a4-81f2-cf55fd9a8c98", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.509825, - "y": 33.973443 - }, - "endPoint": { - "x": 328.527258, - "y": 33.992681 - } - } - }, - { - "id": "5bce49fb-610a-5bd5-9871-aacd9929f806", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.527258, - "y": 33.992681 - }, - "endPoint": { - "x": 328.544747, - "y": 34.013644 - } - } - }, - { - "id": "177d7ed9-1732-5b7f-bb0c-b6db805e4ccd", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.544747, - "y": 34.013644 - }, - "endPoint": { - "x": 328.561151, - "y": 34.035445 - } - } - }, - { - "id": "a7c7bcb9-ac41-5eb3-b222-6e8f717d3226", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.561151, - "y": 34.035445 - }, - "endPoint": { - "x": 328.576439, - "y": 34.058042 - } - } - }, - { - "id": "02ba6d86-1884-5f2d-9801-a3ee1aebf957", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.576439, - "y": 34.058042 - }, - "endPoint": { - "x": 328.590582, - "y": 34.081393 - } - } - }, - { - "id": "9418c445-9801-59f6-867a-9e342b2a44d1", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.590582, - "y": 34.081393 - }, - "endPoint": { - "x": 328.603477, - "y": 34.105327 - } - } - }, - { - "id": "90aa0e14-d2a5-56eb-a870-b33c6bb913f5", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.603477, - "y": 34.105327 - }, - "endPoint": { - "x": 328.615141, - "y": 34.129865 - } - } - }, - { - "id": "86b6cef9-0fdf-5b4a-94d2-32c27f54fc09", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.615141, - "y": 34.129865 - }, - "endPoint": { - "x": 328.625554, - "y": 34.15496 - } - } - }, - { - "id": "5e0d7dff-3d4f-58a6-9a53-ad5e56142eb8", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.625554, - "y": 34.15496 - }, - "endPoint": { - "x": 328.634693, - "y": 34.180565 - } - } - }, - { - "id": "dbc6e764-8f18-5ca2-a3b0-721ec45d8943", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.634693, - "y": 34.180565 - }, - "endPoint": { - "x": 328.642748, - "y": 34.206859 - } - } - }, - { - "id": "618befbc-5ec4-58a7-8c3c-7258cd18ec57", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.642748, - "y": 34.206859 - }, - "endPoint": { - "x": 328.649725, - "y": 34.233449 - } - } - }, - { - "id": "5106b521-cd35-532f-ba1a-b00a26e20fd5", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.649725, - "y": 34.233449 - }, - "endPoint": { - "x": 328.655616, - "y": 34.2603 - } - } - }, - { - "id": "9f4b814d-b913-5fe3-bcfc-8ce2e7665e40", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.655616, - "y": 34.2603 - }, - "endPoint": { - "x": 328.660412, - "y": 34.287379 - } - } - }, - { - "id": "9a0c0c00-5522-513a-b92f-9ed71ebb80a3", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.660412, - "y": 34.287379 - }, - "endPoint": { - "x": 328.664038, - "y": 34.314211 - } - } - }, - { - "id": "8b78892a-6256-532c-b4a4-a4568e286302", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.664038, - "y": 34.314211 - }, - "endPoint": { - "x": 328.666552, - "y": 34.341159 - } - } - }, - { - "id": "3284446a-ec99-5bb3-8ec2-075efa67b0b6", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.666552, - "y": 34.341159 - }, - "endPoint": { - "x": 328.667952, - "y": 34.368187 - } - } - }, - { - "id": "147dec11-36d9-567a-bcfc-612f734a8ad3", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.667952, - "y": 34.368187 - }, - "endPoint": { - "x": 328.668235, - "y": 34.395262 - } - } - }, - { - "id": "2e088629-98df-5f1c-9383-13efa5dfa45a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.668235, - "y": 34.395262 - }, - "endPoint": { - "x": 328.667621, - "y": 34.42284 - } - } - }, - { - "id": "22c3c5d7-76db-5b5f-878c-d67492541956", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.667621, - "y": 34.42284 - }, - "endPoint": { - "x": 328.666342, - "y": 34.450391 - } - } - }, - { - "id": "9553ada6-86a3-5900-98c8-882f0cdb8286", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.666342, - "y": 34.450391 - }, - "endPoint": { - "x": 328.6644, - "y": 34.477904 - } - } - }, - { - "id": "0a422a75-070b-5a1e-80c9-592029e84328", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.6644, - "y": 34.477904 - }, - "endPoint": { - "x": 328.661794, - "y": 34.505365 - } - } - }, - { - "id": "09cf6300-b687-5e5e-995a-2c2de9a7e736", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.661794, - "y": 34.505365 - }, - "endPoint": { - "x": 328.659361, - "y": 34.524975 - } - } - }, - { - "id": "e2a905ee-dfcf-53c0-bead-e6ea3ca49e98", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.659361, - "y": 34.524975 - }, - "endPoint": { - "x": 328.656269, - "y": 34.544485 - } - } - }, - { - "id": "dbe1c586-3539-5a0f-a7c4-b3721a6e5321", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.656269, - "y": 34.544485 - }, - "endPoint": { - "x": 328.652521, - "y": 34.563881 - } - } - }, - { - "id": "92ef1c33-c42d-5405-a3ec-686bbcf8dcb6", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.652521, - "y": 34.563881 - }, - "endPoint": { - "x": 328.648122, - "y": 34.583145 - } - } - }, - { - "id": "67530459-e5a5-5655-943f-d99a438afeaa", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.648122, - "y": 34.583145 - }, - "endPoint": { - "x": 328.640666, - "y": 34.611767 - } - } - }, - { - "id": "5ac414e2-25e1-5e7c-804d-4ce2179fb468", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.640666, - "y": 34.611767 - }, - "endPoint": { - "x": 328.632444, - "y": 34.640173 - } - } - }, - { - "id": "22a5fbe1-d9f5-5e06-871b-418c7cf2c3bb", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.632444, - "y": 34.640173 - }, - "endPoint": { - "x": 328.62346, - "y": 34.668347 - } - } - }, - { - "id": "618aa9cc-84f1-56c4-9cd5-e8a4cf281e60", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.62346, - "y": 34.668347 - }, - "endPoint": { - "x": 328.61372, - "y": 34.696275 - } - } - }, - { - "id": "7d62645e-d40d-582a-a4f5-df0b743ffd60", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.61372, - "y": 34.696275 - }, - "endPoint": { - "x": 328.603278, - "y": 34.723803 - } - } - }, - { - "id": "aab1c99d-d236-5bfb-8453-052f8d35dbd2", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.603278, - "y": 34.723803 - }, - "endPoint": { - "x": 328.592097, - "y": 34.751034 - } - } - }, - { - "id": "e3ac1fd9-60cd-53fc-88f4-8c71fb4d4704", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.592097, - "y": 34.751034 - }, - "endPoint": { - "x": 328.580185, - "y": 34.777953 - } - } - }, - { - "id": "f9f2468a-f4a8-5a3a-b930-69969cc679f8", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.580185, - "y": 34.777953 - }, - "endPoint": { - "x": 328.567546, - "y": 34.804545 - } - } - }, - { - "id": "d02bfa65-363f-5e91-aa2a-0c7cef64cbb7", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.567546, - "y": 34.804545 - }, - "endPoint": { - "x": 328.554107, - "y": 34.831366 - } - } - }, - { - "id": "b920d997-7bc3-5857-abfa-670990b52ad4", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.554107, - "y": 34.831366 - }, - "endPoint": { - "x": 328.540277, - "y": 34.857985 - } - } - }, - { - "id": "b55dcffc-8795-5802-a6a2-e82861517b2b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.540277, - "y": 34.857985 - }, - "endPoint": { - "x": 328.526059, - "y": 34.8844 - } - } - }, - { - "id": "a7d84d37-4119-563b-a3d5-bd02cb641a39", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.526059, - "y": 34.8844 - }, - "endPoint": { - "x": 328.511455, - "y": 34.910605 - } - } - }, - { - "id": "5399959e-75eb-5af0-b94f-cb05ca312288", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.511455, - "y": 34.910605 - }, - "endPoint": { - "x": 328.497512, - "y": 34.934753 - } - } - }, - { - "id": "3dfd9f68-296e-54e5-9fd5-0e4d3c450bbf", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.497512, - "y": 34.934753 - }, - "endPoint": { - "x": 328.483192, - "y": 34.958677 - } - } - }, - { - "id": "9de44f76-ab1f-55a1-a691-ad542329892d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.483192, - "y": 34.958677 - }, - "endPoint": { - "x": 328.468496, - "y": 34.982373 - } - } - }, - { - "id": "0177e1c4-b4a4-5d02-8d95-44c277d60beb", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.468496, - "y": 34.982373 - }, - "endPoint": { - "x": 328.453428, - "y": 35.005835 - } - } - }, - { - "id": "054e8c48-2ebd-52d1-9843-c66f9ec6bccc", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.453428, - "y": 35.005835 - }, - "endPoint": { - "x": 328.436303, - "y": 35.031552 - } - } - }, - { - "id": "1b85c2ba-f8e6-57c5-b439-e913ee344c4a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.436303, - "y": 35.031552 - }, - "endPoint": { - "x": 328.418732, - "y": 35.056964 - } - } - }, - { - "id": "082c3fd3-244c-500f-9b79-4fc5f6ed0481", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.418732, - "y": 35.056964 - }, - "endPoint": { - "x": 328.40072, - "y": 35.082066 - } - } - }, - { - "id": "c6c448da-4be4-5e6f-8042-ea744b88ccac", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.40072, - "y": 35.082066 - }, - "endPoint": { - "x": 328.38227, - "y": 35.10685 - } - } - }, - { - "id": "13c821f9-1e52-5af5-b091-b80cba3a32d6", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.38227, - "y": 35.10685 - }, - "endPoint": { - "x": 328.358734, - "y": 35.137451 - } - } - }, - { - "id": "fbc396a8-d3b9-59a5-91d6-a53e26412e73", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.358734, - "y": 35.137451 - }, - "endPoint": { - "x": 328.334774, - "y": 35.167719 - } - } - }, - { - "id": "05e94fbf-8b2c-56ff-9f6b-c9320df021c4", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.334774, - "y": 35.167719 - }, - "endPoint": { - "x": 328.310392, - "y": 35.197648 - } - } - }, - { - "id": "b3ea8358-a615-5452-ac65-7bfbb0d6da00", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.310392, - "y": 35.197648 - }, - "endPoint": { - "x": 328.285594, - "y": 35.227235 - } - } - }, - { - "id": "6c9003b3-b899-597f-be02-ffcc57b00058", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.285594, - "y": 35.227235 - }, - "endPoint": { - "x": 328.262511, - "y": 35.253723 - } - } - }, - { - "id": "183cf91d-20cc-5842-ba06-4cc6d1fe0f16", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.262511, - "y": 35.253723 - }, - "endPoint": { - "x": 328.238791, - "y": 35.279633 - } - } - }, - { - "id": "7bca9bf4-c345-5023-9de2-7a82002345da", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.238791, - "y": 35.279633 - }, - "endPoint": { - "x": 328.214442, - "y": 35.304955 - } - } - }, - { - "id": "9e97d401-d573-5a15-acde-6116266ef577", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.214442, - "y": 35.304955 - }, - "endPoint": { - "x": 328.189478, - "y": 35.329676 - } - } - }, - { - "id": "2b6d66dd-846b-5948-892c-a54e4558c7d7", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.189478, - "y": 35.329676 - }, - "endPoint": { - "x": 328.164019, - "y": 35.353678 - } - } - }, - { - "id": "8315a67e-c6db-5624-8f74-3d233fac3876", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.164019, - "y": 35.353678 - }, - "endPoint": { - "x": 328.137981, - "y": 35.377044 - } - } - }, - { - "id": "54ea4cea-e888-5169-9e17-72e422eb1c47", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.137981, - "y": 35.377044 - }, - "endPoint": { - "x": 328.111376, - "y": 35.399762 - } - } - }, - { - "id": "6a260c30-5e55-5bb0-93f4-c93c064a2bc6", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.111376, - "y": 35.399762 - }, - "endPoint": { - "x": 328.084217, - "y": 35.421822 - } - } - }, - { - "id": "ac8b4688-917b-52c4-b4d4-2c15106491cd", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.084217, - "y": 35.421822 - }, - "endPoint": { - "x": 328.057769, - "y": 35.442059 - } - } - }, - { - "id": "458d86fa-d9cd-5085-8f98-0d18cafcc3c9", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.057769, - "y": 35.442059 - }, - "endPoint": { - "x": 328.030668, - "y": 35.461396 - } - } - }, - { - "id": "d7ab68fe-df12-51dd-b9cf-55f2fdb2f165", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.030668, - "y": 35.461396 - }, - "endPoint": { - "x": 328.002935, - "y": 35.479815 - } - } - }, - { - "id": "a8c4e941-38e5-5990-8c9b-897fc70821a0", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.002935, - "y": 35.479815 - }, - "endPoint": { - "x": 327.974594, - "y": 35.497303 - } - } - }, - { - "id": "702bb8ee-7af3-56c4-ae9c-25d324d8a4f0", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.974594, - "y": 35.497303 - }, - "endPoint": { - "x": 327.940677, - "y": 35.516808 - } - } - }, - { - "id": "da0ae115-ce10-5e5d-8da9-038a257b100e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.940677, - "y": 35.516808 - }, - "endPoint": { - "x": 327.906226, - "y": 35.535337 - } - } - }, - { - "id": "a633c4e4-6825-5364-9d5b-acb392a4a33b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.906226, - "y": 35.535337 - }, - "endPoint": { - "x": 327.871262, - "y": 35.552879 - } - } - }, - { - "id": "0d30a0ad-3f3f-5ce2-b423-39c6356a6786", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.871262, - "y": 35.552879 - }, - "endPoint": { - "x": 327.835806, - "y": 35.569422 - } - } - }, - { - "id": "2f862321-6115-5fd4-a940-f507c3528a56", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.835806, - "y": 35.569422 - }, - "endPoint": { - "x": 327.805996, - "y": 35.582421 - } - } - }, - { - "id": "479719a2-a27e-51f4-bcc8-43d3fdb13595", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.805996, - "y": 35.582421 - }, - "endPoint": { - "x": 327.775906, - "y": 35.594749 - } - } - }, - { - "id": "4e89ed00-6c8c-56a0-a326-232f350b492a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.775906, - "y": 35.594749 - }, - "endPoint": { - "x": 327.745549, - "y": 35.606402 - } - } - }, - { - "id": "0550268d-a224-5946-8275-820c71c3a2b4", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.745549, - "y": 35.606402 - }, - "endPoint": { - "x": 327.714936, - "y": 35.617377 - } - } - }, - { - "id": "95a91d2c-8da4-5507-b001-462a06ae6c3f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.714936, - "y": 35.617377 - }, - "endPoint": { - "x": 327.701768, - "y": 35.621546 - } - } - }, - { - "id": "21bada24-aa99-5b09-b92e-191462212aab", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.701768, - "y": 35.621546 - }, - "endPoint": { - "x": 327.688409, - "y": 35.625014 - } - } - }, - { - "id": "74812edc-f3b8-5161-9495-58d4f78b53c9", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.688409, - "y": 35.625014 - }, - "endPoint": { - "x": 327.674885, - "y": 35.627772 - } - } - }, - { - "id": "fcea2e66-6f29-5f82-bfbb-f424d998d36b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.674885, - "y": 35.627772 - }, - "endPoint": { - "x": 327.661225, - "y": 35.629816 - } - } - }, - { - "id": "b7a9c93f-8311-50cf-83dd-f5fcfe07909f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.661225, - "y": 35.629816 - }, - "endPoint": { - "x": 327.640935, - "y": 35.632111 - } - } - }, - { - "id": "28226d28-f214-5c5e-9249-c3b2845978b7", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.640935, - "y": 35.632111 - }, - "endPoint": { - "x": 327.620606, - "y": 35.634023 - } - } - }, - { - "id": "8bb81710-fa43-53b9-b0b1-7e5b2266f984", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.620606, - "y": 35.634023 - }, - "endPoint": { - "x": 327.600245, - "y": 35.63555 - } - } - }, - { - "id": "e1e90fe2-596e-5f72-a0b1-a800dd3a0917", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.600245, - "y": 35.63555 - }, - "endPoint": { - "x": 327.579857, - "y": 35.636693 - } - } - }, - { - "id": "912472d7-567c-5b64-a7ab-1d7a57fb0cc3", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.579857, - "y": 35.636693 - }, - "endPoint": { - "x": 327.52806, - "y": 35.638911 - } - } - }, - { - "id": "44912161-ba4b-5b57-85b4-2944adb290fc", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.52806, - "y": 35.638911 - }, - "endPoint": { - "x": 327.476248, - "y": 35.640744 - } - } - }, - { - "id": "6d761a80-0ae8-5b76-92ae-d3a8d9a016a7", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.476248, - "y": 35.640744 - }, - "endPoint": { - "x": 327.424423, - "y": 35.642192 - } - } - }, - { - "id": "812118d2-fcc1-59ed-8489-a871e10e9a92", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.424423, - "y": 35.642192 - }, - "endPoint": { - "x": 327.372589, - "y": 35.643254 - } - } - }, - { - "id": "3f4f17af-6696-58c3-bfa2-701c55e72293", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.372589, - "y": 35.643254 - }, - "endPoint": { - "x": 327.331242, - "y": 35.64386 - } - } - }, - { - "id": "e4790526-fc30-510e-9fa8-8d5cbca8b8c2", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.331242, - "y": 35.64386 - }, - "endPoint": { - "x": 327.289894, - "y": 35.644294 - } - } - }, - { - "id": "6cfa3765-1b0b-5a7e-84cb-9e442de193ef", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.289894, - "y": 35.644294 - }, - "endPoint": { - "x": 327.248543, - "y": 35.644554 - } - } - }, - { - "id": "ed136103-eb31-5337-bd35-b26461538e9f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.248543, - "y": 35.644554 - }, - "endPoint": { - "x": 327.207192, - "y": 35.64464 - } - } - }, - { - "id": "bfd3e87b-6b67-5eef-b570-3a24cbd8222d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.207192, - "y": 35.64464 - }, - "endPoint": { - "x": 327.191478, - "y": 35.644554 - } - } - }, - { - "id": "6df1fa7a-caf2-538c-bf5f-32524aa36356", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.191478, - "y": 35.644554 - }, - "endPoint": { - "x": 327.175765, - "y": 35.644294 - } - } - }, - { - "id": "e2d07b91-d062-5433-99f3-6046fa51e37a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.175765, - "y": 35.644294 - }, - "endPoint": { - "x": 327.160057, - "y": 35.64386 - } - } - }, - { - "id": "a6acd9cd-80b8-5482-80e2-380f4dfd0d4c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.160057, - "y": 35.64386 - }, - "endPoint": { - "x": 327.144354, - "y": 35.643254 - } - } - }, - { - "id": "66909d8b-5521-50b4-8246-4e7ddcffb299", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.144354, - "y": 35.643254 - }, - "endPoint": { - "x": 327.120563, - "y": 35.64173 - } - } - }, - { - "id": "658d701e-1d17-5558-8d05-8d0b0bd7cfa6", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.120563, - "y": 35.64173 - }, - "endPoint": { - "x": 327.09686, - "y": 35.639263 - } - } - }, - { - "id": "b6ab2bea-36e2-53fa-b0f9-19806700a348", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.09686, - "y": 35.639263 - }, - "endPoint": { - "x": 327.073274, - "y": 35.635857 - } - } - }, - { - "id": "8b7aaa7c-ebc9-55df-9b56-05e0c1059f58", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.073274, - "y": 35.635857 - }, - "endPoint": { - "x": 327.049833, - "y": 35.631516 - } - } - }, - { - "id": "74add2a9-19ba-5491-ae8a-518f32260e6b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.049833, - "y": 35.631516 - }, - "endPoint": { - "x": 327.016037, - "y": 35.624078 - } - } - }, - { - "id": "eb170cc5-54b1-5dad-a625-adad8682124c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.016037, - "y": 35.624078 - }, - "endPoint": { - "x": 326.982463, - "y": 35.61572 - } - } - }, - { - "id": "0f43ca12-2dc9-5a41-b830-4565e2d7d221", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.982463, - "y": 35.61572 - }, - "endPoint": { - "x": 326.949129, - "y": 35.606448 - } - } - }, - { - "id": "b8861f34-867b-53a5-99e0-230b97ff4946", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.949129, - "y": 35.606448 - }, - "endPoint": { - "x": 326.916056, - "y": 35.596267 - } - } - }, - { - "id": "48e5ee3b-cb89-545f-aa17-e9047081938d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.916056, - "y": 35.596267 - }, - "endPoint": { - "x": 326.891774, - "y": 35.588244 - } - } - }, - { - "id": "19c18c96-4187-5d3d-97ef-01f2438f677a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.891774, - "y": 35.588244 - }, - "endPoint": { - "x": 326.867606, - "y": 35.57989 - } - } - }, - { - "id": "bda8f7a8-ecb4-55f7-8bd0-6f340d547e31", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.867606, - "y": 35.57989 - }, - "endPoint": { - "x": 326.843555, - "y": 35.571205 - } - } - }, - { - "id": "b82f81c2-2389-5fd4-99da-0c9df5f306e8", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.843555, - "y": 35.571205 - }, - "endPoint": { - "x": 326.819623, - "y": 35.562192 - } - } - }, - { - "id": "76814b0e-14dc-56e8-805b-dd99ac81290d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.819623, - "y": 35.562192 - }, - "endPoint": { - "x": 326.778092, - "y": 35.546037 - } - } - }, - { - "id": "0c1c04c7-b0dc-575f-be12-47319a41728c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.778092, - "y": 35.546037 - }, - "endPoint": { - "x": 326.736689, - "y": 35.529556 - } - } - }, - { - "id": "c7cd0b78-8162-5e79-ae37-4c013b294b2c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.736689, - "y": 35.529556 - }, - "endPoint": { - "x": 326.695417, - "y": 35.512751 - } - } - }, - { - "id": "a589746a-ce14-596d-aba1-abe05d1d8388", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.695417, - "y": 35.512751 - }, - "endPoint": { - "x": 326.654278, - "y": 35.495622 - } - } - }, - { - "id": "646c5e29-40db-5344-a051-99f6133af94c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.654278, - "y": 35.495622 - }, - "endPoint": { - "x": 326.614491, - "y": 35.478563 - } - } - }, - { - "id": "f9149dc2-490f-510a-81bb-b822cd1fd957", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.614491, - "y": 35.478563 - }, - "endPoint": { - "x": 326.574933, - "y": 35.460981 - } - } - }, - { - "id": "8f0ad1b1-2b97-5445-b360-df6f2e97351b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.574933, - "y": 35.460981 - }, - "endPoint": { - "x": 326.535611, - "y": 35.442879 - } - } - }, - { - "id": "5022f2cf-01fd-5535-a901-2033dc80a958", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.535611, - "y": 35.442879 - }, - "endPoint": { - "x": 326.496529, - "y": 35.42426 - } - } - }, - { - "id": "e29e19b2-308a-5fb0-8255-943f979d4247", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.496529, - "y": 35.42426 - }, - "endPoint": { - "x": 326.480163, - "y": 35.416013 - } - } - }, - { - "id": "7d3b6bb7-25da-5db3-9684-9e4a97b00809", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.480163, - "y": 35.416013 - }, - "endPoint": { - "x": 326.464066, - "y": 35.407262 - } - } - }, - { - "id": "de8aab99-510d-578c-9a9e-3ae9524d0492", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.464066, - "y": 35.407262 - }, - "endPoint": { - "x": 326.44825, - "y": 35.398013 - } - } - }, - { - "id": "3899603c-687d-5abb-80e5-55e639f1dcfa", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.44825, - "y": 35.398013 - }, - "endPoint": { - "x": 326.432726, - "y": 35.388274 - } - } - }, - { - "id": "fc8dcd66-c740-5e80-9de8-7f2ece10a86a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.432726, - "y": 35.388274 - }, - "endPoint": { - "x": 326.417146, - "y": 35.377615 - } - } - }, - { - "id": "dfa00343-c38b-5561-9ee0-c86cfc82d786", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.417146, - "y": 35.377615 - }, - "endPoint": { - "x": 326.402107, - "y": 35.366224 - } - } - }, - { - "id": "8a774b71-5cc4-5eef-93bc-de480cdb45de", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.402107, - "y": 35.366224 - }, - "endPoint": { - "x": 326.387633, - "y": 35.354122 - } - } - }, - { - "id": "c59c0b36-af9b-5a01-8f86-f751e3834702", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.387633, - "y": 35.354122 - }, - "endPoint": { - "x": 326.373752, - "y": 35.341329 - } - } - }, - { - "id": "b850420b-0cb1-5dae-b11e-44138ee241ba", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.373752, - "y": 35.341329 - }, - "endPoint": { - "x": 326.33549, - "y": 35.303693 - } - } - }, - { - "id": "54f5f3c9-10f3-51ea-9e60-af7ad9140672", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.33549, - "y": 35.303693 - }, - "endPoint": { - "x": 326.297873, - "y": 35.265417 - } - } - }, - { - "id": "c8c65377-c4ba-5e1a-87cd-c4d5136ac95b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.297873, - "y": 35.265417 - }, - "endPoint": { - "x": 326.260908, - "y": 35.226512 - } - } - }, - { - "id": "ca664a15-1bb9-5e0b-9d70-bfa8317f8ac3", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.260908, - "y": 35.226512 - }, - "endPoint": { - "x": 326.224603, - "y": 35.186984 - } - } - }, - { - "id": "8c943331-ba53-5ca9-958e-11f0e67dd843", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.224603, - "y": 35.186984 - }, - "endPoint": { - "x": 326.199146, - "y": 35.158487 - } - } - }, - { - "id": "cb25f420-5278-5d27-be6a-2660909fdde7", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.199146, - "y": 35.158487 - }, - "endPoint": { - "x": 326.173994, - "y": 35.12972 - } - } - }, - { - "id": "c391c287-bb9f-5a16-95e6-5b47d3765cac", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.173994, - "y": 35.12972 - }, - "endPoint": { - "x": 326.149151, - "y": 35.100687 - } - } - }, - { - "id": "423887b2-e5ee-5a15-98cd-474fd3b3bcce", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.149151, - "y": 35.100687 - }, - "endPoint": { - "x": 326.124619, - "y": 35.071389 - } - } - }, - { - "id": "b3d4695d-668b-5a2e-86fd-bd45885fdbce", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.124619, - "y": 35.071389 - }, - "endPoint": { - "x": 326.108845, - "y": 35.052026 - } - } - }, - { - "id": "462e93f6-1e69-58a1-8427-d982e4b275c0", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.108845, - "y": 35.052026 - }, - "endPoint": { - "x": 326.093391, - "y": 35.032408 - } - } - }, - { - "id": "9336e118-333d-5835-aa47-ddb94a7f96fb", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.093391, - "y": 35.032408 - }, - "endPoint": { - "x": 326.078258, - "y": 35.012541 - } - } - }, - { - "id": "2015d530-512f-559f-a050-b41346c4bdd0", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.078258, - "y": 35.012541 - }, - "endPoint": { - "x": 326.063452, - "y": 34.992428 - } - } - }, - { - "id": "f4dac857-b24c-5ddb-8125-af6db49dd0a1", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.063452, - "y": 34.992428 - }, - "endPoint": { - "x": 326.048444, - "y": 34.970775 - } - } - }, - { - "id": "c5de4954-dd53-51e0-aab1-3178291a09c8", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.048444, - "y": 34.970775 - }, - "endPoint": { - "x": 326.034335, - "y": 34.948539 - } - } - }, - { - "id": "68feb673-2a81-5608-b785-5f6edf3a5397", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.034335, - "y": 34.948539 - }, - "endPoint": { - "x": 326.021141, - "y": 34.925747 - } - } - }, - { - "id": "3543d4fa-4a19-5282-b08b-132b05ca1742", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.021141, - "y": 34.925747 - }, - "endPoint": { - "x": 326.00888, - "y": 34.902429 - } - } - }, - { - "id": "f13db7ca-b427-58c8-b95a-0ecd2c7e25a4", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.00888, - "y": 34.902429 - }, - "endPoint": { - "x": 325.999216, - "y": 34.881907 - } - } - }, - { - "id": "400c8da0-ec74-5b76-b05d-11bcb44fc91e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.999216, - "y": 34.881907 - }, - "endPoint": { - "x": 325.990538, - "y": 34.860964 - } - } - }, - { - "id": "62194173-65c9-5420-a96a-eeb7cc943057", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.990538, - "y": 34.860964 - }, - "endPoint": { - "x": 325.982859, - "y": 34.839633 - } - } - }, - { - "id": "b5b5ea67-de7d-5c24-ace5-f68523818489", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.982859, - "y": 34.839633 - }, - "endPoint": { - "x": 325.976193, - "y": 34.817952 - } - } - }, - { - "id": "42b72e27-3700-551f-a65d-bda2c1c2266c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.976193, - "y": 34.817952 - }, - "endPoint": { - "x": 325.97307, - "y": 34.805879 - } - } - }, - { - "id": "9c49ccd6-2612-57c0-a36b-20835ec56b27", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.97307, - "y": 34.805879 - }, - "endPoint": { - "x": 325.970472, - "y": 34.793688 - } - } - }, - { - "id": "45ffc5b3-1ebd-5f86-b7ba-9eae37b2fb61", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.970472, - "y": 34.793688 - }, - "endPoint": { - "x": 325.968401, - "y": 34.781397 - } - } - }, - { - "id": "eec8ee4d-bda1-552f-bc66-47caaeea8644", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.968401, - "y": 34.781397 - }, - "endPoint": { - "x": 325.96686, - "y": 34.769022 - } - } - }, - { - "id": "2395dcd4-7755-5368-9e04-cc522d51512b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.96686, - "y": 34.769022 - }, - "endPoint": { - "x": 325.961678, - "y": 34.715909 - } - } - }, - { - "id": "51c7ecc7-cbcd-5056-b743-7481c4308295", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.961678, - "y": 34.715909 - }, - "endPoint": { - "x": 325.957029, - "y": 34.662749 - } - } - }, - { - "id": "784915f0-2132-5abf-9ba1-57a8806dddd8", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.957029, - "y": 34.662749 - }, - "endPoint": { - "x": 325.952914, - "y": 34.609544 - } - } - }, - { - "id": "7cb1d22d-ff2c-56fd-baa4-a265fac7645d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.952914, - "y": 34.609544 - }, - "endPoint": { - "x": 325.949334, - "y": 34.5563 - } - } - }, - { - "id": "251b4947-96f0-5c30-beca-a162ed2f42cf", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.949334, - "y": 34.5563 - }, - "endPoint": { - "x": 325.948066, - "y": 34.529862 - } - } - }, - { - "id": "19142b35-372f-5e00-8a14-87a0edaf28ab", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.948066, - "y": 34.529862 - }, - "endPoint": { - "x": 325.947547, - "y": 34.503405 - } - } - }, - { - "id": "e8e9d75d-2982-5fb7-9a1c-a419cc2fdb88", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.947547, - "y": 34.503405 - }, - "endPoint": { - "x": 325.947779, - "y": 34.476944 - } - } - }, - { - "id": "38a0026d-5f3f-5aff-84e0-6c97db6ea854", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.947779, - "y": 34.476944 - }, - "endPoint": { - "x": 325.948761, - "y": 34.450494 - } - } - }, - { - "id": "63c0766a-d70f-5be6-9bfc-8c27384ae318", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.948761, - "y": 34.450494 - }, - "endPoint": { - "x": 325.951141, - "y": 34.411429 - } - } - }, - { - "id": "83f64cdc-9929-5e65-af8a-2596568abef1", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.951141, - "y": 34.411429 - }, - "endPoint": { - "x": 325.954269, - "y": 34.372421 - } - } - }, - { - "id": "eb87555e-e135-56fd-a1bd-9738a34e176c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.954269, - "y": 34.372421 - }, - "endPoint": { - "x": 325.958143, - "y": 34.33348 - } - } - }, - { - "id": "ee6d9b7a-3036-592e-838e-b60f7fb8bbfa", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.958143, - "y": 34.33348 - }, - "endPoint": { - "x": 325.962764, - "y": 34.294616 - } - } - }, - { - "id": "55cf690b-fb57-5a32-b1bc-df9325ecfa0d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.962764, - "y": 34.294616 - }, - "endPoint": { - "x": 325.968522, - "y": 34.267576 - } - } - }, - { - "id": "dd9466db-0209-552f-afed-d431b9a035f5", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.968522, - "y": 34.267576 - }, - "endPoint": { - "x": 325.975425, - "y": 34.240819 - } - } - }, - { - "id": "adbe9442-3db7-56cf-837f-e77fb96f17c0", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.975425, - "y": 34.240819 - }, - "endPoint": { - "x": 325.983463, - "y": 34.21438 - } - } - }, - { - "id": "4466411a-0ce9-55ae-9af5-0352462c1ec0", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.983463, - "y": 34.21438 - }, - "endPoint": { - "x": 325.992626, - "y": 34.188296 - } - } - } - ] - }, - { - "id": "1e4a421c-0ef4-53f1-9048-8395afbf9b07", - "type": "PolyLine", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": null, - "children": [ - { - "id": "3deb5e28-66b7-5f35-bd5c-0364397627f4", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.184922, - "y": 30.678985 - }, - "endPoint": { - "x": 325.162497, - "y": 30.618109 - } - } - }, - { - "id": "eab49f2a-cb29-5d0e-be2c-6b21b5467ef6", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.162497, - "y": 30.618109 - }, - "endPoint": { - "x": 325.140489, - "y": 30.557082 - } - } - }, - { - "id": "f2756d09-181f-54cf-bbc4-c80d74909d29", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.140489, - "y": 30.557082 - }, - "endPoint": { - "x": 325.1189, - "y": 30.495906 - } - } - }, - { - "id": "c1464530-0a77-59a4-aafb-54201c54c041", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.1189, - "y": 30.495906 - }, - "endPoint": { - "x": 325.09773, - "y": 30.434583 - } - } - }, - { - "id": "441dd9c5-f9e7-5b85-a4c2-b1e7977a24d3", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.09773, - "y": 30.434583 - }, - "endPoint": { - "x": 325.070332, - "y": 30.35337 - } - } - }, - { - "id": "92c5ca87-e4dd-5975-b01d-5a9d661bfaf7", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.070332, - "y": 30.35337 - }, - "endPoint": { - "x": 325.043525, - "y": 30.271961 - } - } - }, - { - "id": "31224d56-d7de-5a95-8b12-8fffe8b8d247", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.043525, - "y": 30.271961 - }, - "endPoint": { - "x": 325.017309, - "y": 30.190361 - } - } - }, - { - "id": "3b0bfeb1-4f2d-568a-83eb-e9a8603d8a4b", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.017309, - "y": 30.190361 - }, - "endPoint": { - "x": 324.991684, - "y": 30.108571 - } - } - }, - { - "id": "fb7f1077-015d-5eef-ab90-2b7c0c154601", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.991684, - "y": 30.108571 - }, - "endPoint": { - "x": 324.97684, - "y": 30.059528 - } - } - }, - { - "id": "e433736b-9450-5220-894b-03f0c0fbcbb1", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.97684, - "y": 30.059528 - }, - "endPoint": { - "x": 324.962592, - "y": 30.01031 - } - } - }, - { - "id": "581fb0ae-3d48-5de4-b4e6-ef87f9048e40", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.962592, - "y": 30.01031 - }, - "endPoint": { - "x": 324.948942, - "y": 29.960923 - } - } - }, - { - "id": "63d22ffa-7eb6-5a45-858f-2d98d0abc291", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.948942, - "y": 29.960923 - }, - "endPoint": { - "x": 324.935891, - "y": 29.911373 - } - } - }, - { - "id": "d0510d3e-c13c-53f8-ae8e-8d26ba16a799", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.935891, - "y": 29.911373 - }, - "endPoint": { - "x": 324.921532, - "y": 29.85397 - } - } - }, - { - "id": "f81cd82c-f4a6-529b-9175-eafc6548037c", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.921532, - "y": 29.85397 - }, - "endPoint": { - "x": 324.907903, - "y": 29.796392 - } - } - }, - { - "id": "742765a0-aa27-5593-8adc-2529e39a0020", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.907903, - "y": 29.796392 - }, - "endPoint": { - "x": 324.895006, - "y": 29.738645 - } - } - }, - { - "id": "af631223-4d5c-5046-af73-e02ca18ac87b", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.895006, - "y": 29.738645 - }, - "endPoint": { - "x": 324.882843, - "y": 29.680737 - } - } - }, - { - "id": "a706e3cd-d958-5495-9a9c-85fade07d4a9", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.882843, - "y": 29.680737 - }, - "endPoint": { - "x": 324.866453, - "y": 29.598286 - } - } - }, - { - "id": "1dd7e62b-dea3-5418-b0fc-24a5bcff7e9d", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.866453, - "y": 29.598286 - }, - "endPoint": { - "x": 324.8508, - "y": 29.515694 - } - } - }, - { - "id": "0681a687-5323-503a-9874-ad5997bf19c1", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.8508, - "y": 29.515694 - }, - "endPoint": { - "x": 324.835886, - "y": 29.432964 - } - } - }, - { - "id": "3e61e696-2037-5909-a37c-4fc1dbe4d202", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.835886, - "y": 29.432964 - }, - "endPoint": { - "x": 324.821711, - "y": 29.350104 - } - } - }, - { - "id": "6d74ad49-3668-5293-bc89-35fe531a2444", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.821711, - "y": 29.350104 - }, - "endPoint": { - "x": 324.807508, - "y": 29.263407 - } - } - }, - { - "id": "fa4a2b3a-488f-5e37-81ef-029ba5029f3c", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.807508, - "y": 29.263407 - }, - "endPoint": { - "x": 324.793754, - "y": 29.17664 - } - } - }, - { - "id": "eab84c2b-2d2a-5221-a2ed-7f0403bd4d13", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.793754, - "y": 29.17664 - }, - "endPoint": { - "x": 324.780449, - "y": 29.089802 - } - } - }, - { - "id": "07b14846-fb82-5dd2-ada4-1f67f2e886fa", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.780449, - "y": 29.089802 - }, - "endPoint": { - "x": 324.767593, - "y": 29.002896 - } - } - }, - { - "id": "78240941-53e8-5677-8e32-5a22bdde18f2", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.767593, - "y": 29.002896 - }, - "endPoint": { - "x": 324.759023, - "y": 28.942328 - } - } - }, - { - "id": "2154b282-fa33-5200-aa4c-77058b5d659e", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.759023, - "y": 28.942328 - }, - "endPoint": { - "x": 324.750902, - "y": 28.881698 - } - } - }, - { - "id": "c2e0a83e-591e-50b3-9388-3977c0d9e46b", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.750902, - "y": 28.881698 - }, - "endPoint": { - "x": 324.743233, - "y": 28.821011 - } - } - }, - { - "id": "b9adde1d-4e6e-5121-9d32-ccc05132847f", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.743233, - "y": 28.821011 - }, - "endPoint": { - "x": 324.736013, - "y": 28.760267 - } - } - }, - { - "id": "33b601a6-2643-522d-b34c-96114739c2f1", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.736013, - "y": 28.760267 - }, - "endPoint": { - "x": 324.733104, - "y": 28.734257 - } - } - }, - { - "id": "4894dcba-2494-58dc-82f0-a9e6f69ce2a7", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.733104, - "y": 28.734257 - }, - "endPoint": { - "x": 324.73036, - "y": 28.708229 - } - } - }, - { - "id": "4bba541e-489a-5c37-bfe4-36879704ab4b", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.73036, - "y": 28.708229 - }, - "endPoint": { - "x": 324.727782, - "y": 28.682184 - } - } - }, - { - "id": "93e7a702-ecb2-5533-bd4e-b11e6bf32c2e", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.727782, - "y": 28.682184 - }, - "endPoint": { - "x": 324.72537, - "y": 28.656123 - } - } - }, - { - "id": "d3aa56bd-8e0c-5763-b77f-7a584024265b", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.72537, - "y": 28.656123 - }, - "endPoint": { - "x": 324.715883, - "y": 28.548997 - } - } - }, - { - "id": "2320279e-8dd3-58e8-adc6-180877161605", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.715883, - "y": 28.548997 - }, - "endPoint": { - "x": 324.706562, - "y": 28.441857 - } - } - }, - { - "id": "b5928c03-1b0f-5f31-8486-e8b54ca62abc", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.706562, - "y": 28.441857 - }, - "endPoint": { - "x": 324.697407, - "y": 28.334703 - } - } - }, - { - "id": "1306475a-43d3-5149-b09f-225ff762416e", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.697407, - "y": 28.334703 - }, - "endPoint": { - "x": 324.688418, - "y": 28.227534 - } - } - }, - { - "id": "fe4a7d3b-7fb3-5d9f-80dd-a0173be90915", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.688418, - "y": 28.227534 - }, - "endPoint": { - "x": 324.683167, - "y": 28.159433 - } - } - }, - { - "id": "bc7a0c8a-b1f3-5531-8e58-c46053284709", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.683167, - "y": 28.159433 - }, - "endPoint": { - "x": 324.67873, - "y": 28.091277 - } - } - }, - { - "id": "ae14fb5e-3dfd-5a1d-9a0a-2259d3dffef0", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.67873, - "y": 28.091277 - }, - "endPoint": { - "x": 324.675105, - "y": 28.023073 - } - } - }, - { - "id": "cad38b63-b0cf-5472-9ffe-250484f15c52", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.675105, - "y": 28.023073 - }, - "endPoint": { - "x": 324.672294, - "y": 27.954828 - } - } - }, - { - "id": "e1b0730f-2a20-53c6-be18-bd342bac4243", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.672294, - "y": 27.954828 - }, - "endPoint": { - "x": 324.671667, - "y": 27.925436 - } - } - }, - { - "id": "975449b6-0428-5bf5-8fab-39791430c1ba", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.671667, - "y": 27.925436 - }, - "endPoint": { - "x": 324.671855, - "y": 27.896044 - } - } - }, - { - "id": "98c2cada-fd76-5b9e-ac24-9db7b3f500e4", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.671855, - "y": 27.896044 - }, - "endPoint": { - "x": 324.672858, - "y": 27.866669 - } - } - }, - { - "id": "1537ad4a-433b-5493-98b8-08ed71806944", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.672858, - "y": 27.866669 - }, - "endPoint": { - "x": 324.674676, - "y": 27.837327 - } - } - }, - { - "id": "0ba138ae-3593-5571-8b14-c02021353812", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.674676, - "y": 27.837327 - }, - "endPoint": { - "x": 324.677567, - "y": 27.816738 - } - } - }, - { - "id": "69fbb95f-6217-5eda-a254-b061b4d94f62", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.677567, - "y": 27.816738 - }, - "endPoint": { - "x": 324.683028, - "y": 27.796764 - } - } - }, - { - "id": "969aed5c-8bea-52a6-a351-69cd4d27e086", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.683028, - "y": 27.796764 - }, - "endPoint": { - "x": 324.690975, - "y": 27.777643 - } - } - }, - { - "id": "65319396-4794-5a44-b8f3-100aa6c8034f", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.690975, - "y": 27.777643 - }, - "endPoint": { - "x": 324.701328, - "y": 27.759613 - } - } - }, - { - "id": "623ab161-35bb-513e-8a5c-2a06b524827b", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.701328, - "y": 27.759613 - }, - "endPoint": { - "x": 324.714385, - "y": 27.742296 - } - } - }, - { - "id": "f1a94756-c601-5674-8f04-b0dd5ca688b0", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.714385, - "y": 27.742296 - }, - "endPoint": { - "x": 324.729394, - "y": 27.726751 - } - } - }, - { - "id": "646c4c46-6424-5599-bcf1-62eaedfa89ff", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.729394, - "y": 27.726751 - }, - "endPoint": { - "x": 324.746178, - "y": 27.713141 - } - } - }, - { - "id": "74102867-08d7-5400-90b7-9d27ed53e15a", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.746178, - "y": 27.713141 - }, - "endPoint": { - "x": 324.764558, - "y": 27.70163 - } - } - }, - { - "id": "0943220d-a96c-5a2f-a2c2-b5a22ae96125", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.764558, - "y": 27.70163 - }, - "endPoint": { - "x": 324.78229, - "y": 27.692315 - } - } - }, - { - "id": "eec1da3c-ca77-53bc-b020-0d3a311a7fb4", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.78229, - "y": 27.692315 - }, - "endPoint": { - "x": 324.800284, - "y": 27.68353 - } - } - }, - { - "id": "835e40af-f2fb-5581-aee7-c3fb30a5e3ba", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.800284, - "y": 27.68353 - }, - "endPoint": { - "x": 324.818531, - "y": 27.675281 - } - } - }, - { - "id": "f05c6557-d97c-51a9-abb3-9000c8d2fe3e", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.818531, - "y": 27.675281 - }, - "endPoint": { - "x": 324.837017, - "y": 27.667573 - } - } - }, - { - "id": "29883ed2-fa3c-55e8-9888-0dbf44fa9fa8", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.837017, - "y": 27.667573 - }, - "endPoint": { - "x": 324.854316, - "y": 27.660977 - } - } - }, - { - "id": "db0cacb4-7dc8-5188-a3a1-aa4803256f43", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.854316, - "y": 27.660977 - }, - "endPoint": { - "x": 324.871813, - "y": 27.65494 - } - } - }, - { - "id": "39767ea2-4cb8-5b82-8503-9938db1b5f4f", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.871813, - "y": 27.65494 - }, - "endPoint": { - "x": 324.889494, - "y": 27.649465 - } - } - }, - { - "id": "32611c3d-427d-5b69-b4b5-596c1bbc6bfd", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.889494, - "y": 27.649465 - }, - "endPoint": { - "x": 324.907346, - "y": 27.644557 - } - } - }, - { - "id": "a1cc23a3-edb4-5f4b-98a0-c74971fbfeb2", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.907346, - "y": 27.644557 - }, - "endPoint": { - "x": 324.951728, - "y": 27.633279 - } - } - }, - { - "id": "b1e8c092-60b6-555f-9cb9-890dad1b9eb6", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.951728, - "y": 27.633279 - }, - "endPoint": { - "x": 324.996187, - "y": 27.622309 - } - } - }, - { - "id": "9cc73204-0e09-5111-8777-4c618405287d", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 324.996187, - "y": 27.622309 - }, - "endPoint": { - "x": 325.04072, - "y": 27.611647 - } - } - }, - { - "id": "a9a06f09-06eb-579f-8f4f-be8cccaa8f7d", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.04072, - "y": 27.611647 - }, - "endPoint": { - "x": 325.085327, - "y": 27.601294 - } - } - }, - { - "id": "6664a90a-4044-5a98-ac8e-8bea32bbe733", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.085327, - "y": 27.601294 - }, - "endPoint": { - "x": 325.124025, - "y": 27.592615 - } - } - }, - { - "id": "d36607d5-a4a2-5cae-a41e-de086b1e1147", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.124025, - "y": 27.592615 - }, - "endPoint": { - "x": 325.162791, - "y": 27.584246 - } - } - }, - { - "id": "a8e07516-d8ae-5b24-83e4-67b9325aeca8", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.162791, - "y": 27.584246 - }, - "endPoint": { - "x": 325.201622, - "y": 27.576187 - } - } - }, - { - "id": "f7885487-e5dc-50bd-89cd-dca5b46a9e83", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.201622, - "y": 27.576187 - }, - "endPoint": { - "x": 325.240518, - "y": 27.568439 - } - } - }, - { - "id": "d19651cc-0483-5b75-ba6b-5735eb65a7c9", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.240518, - "y": 27.568439 - }, - "endPoint": { - "x": 325.314396, - "y": 27.554255 - } - } - }, - { - "id": "590d2fbd-66c5-55ab-a2c0-20091494f72e", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.314396, - "y": 27.554255 - }, - "endPoint": { - "x": 325.388356, - "y": 27.540507 - } - } - }, - { - "id": "ad5d03ed-ebb4-505a-a43d-d9ab60814f4c", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.388356, - "y": 27.540507 - }, - "endPoint": { - "x": 325.462397, - "y": 27.527197 - } - } - }, - { - "id": "3e897dd5-3230-57f3-b1d5-d7fba57fcb45", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.462397, - "y": 27.527197 - }, - "endPoint": { - "x": 325.536515, - "y": 27.514324 - } - } - }, - { - "id": "0038ec20-3304-598b-b65b-5acba6678229", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.536515, - "y": 27.514324 - }, - "endPoint": { - "x": 325.55999, - "y": 27.510543 - } - } - }, - { - "id": "8c1c4927-8138-52b7-91fa-1fee15af544a", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.55999, - "y": 27.510543 - }, - "endPoint": { - "x": 325.58353, - "y": 27.507202 - } - } - }, - { - "id": "16da6773-0ff0-5f64-b8ee-119eeb2e6a79", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.58353, - "y": 27.507202 - }, - "endPoint": { - "x": 325.607129, - "y": 27.504302 - } - } - }, - { - "id": "84666e06-41d2-5dd4-9da0-7cd86270c1f4", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.607129, - "y": 27.504302 - }, - "endPoint": { - "x": 325.630779, - "y": 27.501843 - } - } - }, - { - "id": "5bc8a8ed-9e29-50a7-8947-2fea4b66b91f", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.630779, - "y": 27.501843 - }, - "endPoint": { - "x": 325.685767, - "y": 27.496929 - } - } - }, - { - "id": "34a638a0-1c81-591e-b369-20955f8abdd6", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.685767, - "y": 27.496929 - }, - "endPoint": { - "x": 325.740801, - "y": 27.492576 - } - } - }, - { - "id": "35a1d4d9-99e7-5a55-b4d7-4d8a593fb7a5", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.740801, - "y": 27.492576 - }, - "endPoint": { - "x": 325.795877, - "y": 27.488786 - } - } - }, - { - "id": "f96e177e-f3cb-50ff-b21a-045eb78e5258", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.795877, - "y": 27.488786 - }, - "endPoint": { - "x": 325.85099, - "y": 27.485558 - } - } - }, - { - "id": "562f76c3-739f-5eb3-94d4-a23b337c53e2", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.85099, - "y": 27.485558 - }, - "endPoint": { - "x": 325.931629, - "y": 27.480967 - } - } - }, - { - "id": "64e4855f-4e6a-56eb-8f2c-c3847c1195dd", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.931629, - "y": 27.480967 - }, - "endPoint": { - "x": 326.012232, - "y": 27.475812 - } - } - }, - { - "id": "c622bb6f-9a44-527f-a124-21ac0ed806b5", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.012232, - "y": 27.475812 - }, - "endPoint": { - "x": 326.092798, - "y": 27.470095 - } - } - }, - { - "id": "0878fc1a-2d5e-57d7-a5fc-e95a0cda4886", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.092798, - "y": 27.470095 - }, - "endPoint": { - "x": 326.173322, - "y": 27.463816 - } - } - }, - { - "id": "3db7412b-15d1-5595-96d3-3c58b95ba550", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.173322, - "y": 27.463816 - }, - "endPoint": { - "x": 326.241227, - "y": 27.458244 - } - } - }, - { - "id": "ffec9b22-964a-5dfa-a499-46159c0354f1", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.241227, - "y": 27.458244 - }, - "endPoint": { - "x": 326.309125, - "y": 27.452597 - } - } - }, - { - "id": "d5990d21-2e4c-562e-ad1c-b691971ed07d", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.309125, - "y": 27.452597 - }, - "endPoint": { - "x": 326.377017, - "y": 27.446874 - } - } - }, - { - "id": "cdff6e6c-685b-53e5-9b17-c77d4e54390e", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.377017, - "y": 27.446874 - }, - "endPoint": { - "x": 326.444902, - "y": 27.441076 - } - } - }, - { - "id": "f79bddc8-e279-5cc6-aea5-adee4a4cb58a", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.444902, - "y": 27.441076 - }, - "endPoint": { - "x": 326.491209, - "y": 27.437133 - } - } - }, - { - "id": "c1d3146c-4909-5ea2-81ec-a094960116ab", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.491209, - "y": 27.437133 - }, - "endPoint": { - "x": 326.537523, - "y": 27.433265 - } - } - }, - { - "id": "a9af2a31-60d3-57d1-adcb-c734f6055423", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.537523, - "y": 27.433265 - }, - "endPoint": { - "x": 326.583842, - "y": 27.429473 - } - } - }, - { - "id": "61535489-931d-5516-b300-0f17a5adf957", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.583842, - "y": 27.429473 - }, - "endPoint": { - "x": 326.630168, - "y": 27.425757 - } - } - }, - { - "id": "bdaa16f4-050c-51a2-aaa2-44ad6d071d09", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.630168, - "y": 27.425757 - }, - "endPoint": { - "x": 326.636072, - "y": 27.425299 - } - } - }, - { - "id": "d7c5292c-ee7a-58ee-801e-6f6e6b95cbb7", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.636072, - "y": 27.425299 - }, - "endPoint": { - "x": 326.641978, - "y": 27.424863 - } - } - }, - { - "id": "76f344a3-b37c-535e-8b26-eaa34352af3c", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.641978, - "y": 27.424863 - }, - "endPoint": { - "x": 326.647885, - "y": 27.424449 - } - } - }, - { - "id": "35c5bf66-e9f8-58fe-986d-accdc29145e6", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.647885, - "y": 27.424449 - }, - "endPoint": { - "x": 326.653794, - "y": 27.424056 - } - } - }, - { - "id": "36e2e877-f2f8-511b-aa10-cb3a65c6e66a", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.653794, - "y": 27.424056 - }, - "endPoint": { - "x": 326.721653, - "y": 27.419687 - } - } - }, - { - "id": "658e7499-714f-5718-b14a-92c1dff414ed", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.721653, - "y": 27.419687 - }, - "endPoint": { - "x": 326.789513, - "y": 27.41534 - } - } - }, - { - "id": "864cb0f2-5ad1-52d6-8b1b-5c2fce91ce1e", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.789513, - "y": 27.41534 - }, - "endPoint": { - "x": 326.857375, - "y": 27.411015 - } - } - }, - { - "id": "26abeb6a-fa02-5f05-8014-81b459922e3b", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.857375, - "y": 27.411015 - }, - "endPoint": { - "x": 326.925238, - "y": 27.406712 - } - } - }, - { - "id": "ee2e07b4-24b4-52a9-b974-9905ba05f102", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.925238, - "y": 27.406712 - }, - "endPoint": { - "x": 326.953735, - "y": 27.405182 - } - } - }, - { - "id": "8190b150-84cc-536e-99e8-55eb351fa68c", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.953735, - "y": 27.405182 - }, - "endPoint": { - "x": 326.982254, - "y": 27.404199 - } - } - }, - { - "id": "d6e0f530-4fb9-553e-9074-807dd98f001b", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.982254, - "y": 27.404199 - }, - "endPoint": { - "x": 327.010787, - "y": 27.403761 - } - } - }, - { - "id": "e2a22767-83b5-57c3-afd6-e66ac3978598", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.010787, - "y": 27.403761 - }, - "endPoint": { - "x": 327.039326, - "y": 27.403868 - } - } - }, - { - "id": "625a5183-034f-5a5e-8244-fe1da0fabf91", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.039326, - "y": 27.403868 - }, - "endPoint": { - "x": 327.091695, - "y": 27.40483 - } - } - }, - { - "id": "5ca28930-9b4d-5059-b7ea-1356cf9a0111", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.091695, - "y": 27.40483 - }, - "endPoint": { - "x": 327.14405, - "y": 27.406316 - } - } - }, - { - "id": "5821984f-f004-539b-ab6c-f40df9546cdd", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.14405, - "y": 27.406316 - }, - "endPoint": { - "x": 327.196388, - "y": 27.408327 - } - } - }, - { - "id": "22ec419b-e762-5119-a364-a2c8858b0d9a", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.196388, - "y": 27.408327 - }, - "endPoint": { - "x": 327.248705, - "y": 27.410863 - } - } - }, - { - "id": "1f3e313e-8890-57d2-985f-58afd6a27bc2", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.248705, - "y": 27.410863 - }, - "endPoint": { - "x": 327.249357, - "y": 27.467265 - } - } - }, - { - "id": "916e7b73-60e7-5d7b-a4f6-d61fb0cf705e", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.249357, - "y": 27.467265 - }, - "endPoint": { - "x": 327.250165, - "y": 27.523665 - } - } - }, - { - "id": "9af86daf-0dd4-5d55-95df-197dc3902cb9", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.250165, - "y": 27.523665 - }, - "endPoint": { - "x": 327.251129, - "y": 27.580062 - } - } - }, - { - "id": "0353db66-fbf6-55cc-a222-6d9055f511b1", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.251129, - "y": 27.580062 - }, - "endPoint": { - "x": 327.252248, - "y": 27.636457 - } - } - }, - { - "id": "7d5a0537-f1b8-5b14-b028-2c82ccaab841", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.252248, - "y": 27.636457 - }, - "endPoint": { - "x": 327.25385, - "y": 27.696394 - } - } - }, - { - "id": "8ece26a9-6f80-523b-9935-542d574e65e1", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.25385, - "y": 27.696394 - }, - "endPoint": { - "x": 327.256108, - "y": 27.756307 - } - } - }, - { - "id": "395cbe1e-1ae6-54cb-a301-14bdf783dee5", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.256108, - "y": 27.756307 - }, - "endPoint": { - "x": 327.259023, - "y": 27.816192 - } - } - }, - { - "id": "07ab52a1-f070-59a0-b4b4-39ba04a7b23a", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.259023, - "y": 27.816192 - }, - "endPoint": { - "x": 327.262594, - "y": 27.876044 - } - } - }, - { - "id": "62c1c4ed-9831-5184-9b65-23cce65d5b26", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.262594, - "y": 27.876044 - }, - "endPoint": { - "x": 327.274723, - "y": 28.060862 - } - } - }, - { - "id": "30062537-c2e3-5d30-81d1-766c60f7917f", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.274723, - "y": 28.060862 - }, - "endPoint": { - "x": 327.287018, - "y": 28.245669 - } - } - }, - { - "id": "e8d59751-ae66-5b8d-92a4-2b44282d4a85", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.287018, - "y": 28.245669 - }, - "endPoint": { - "x": 327.299481, - "y": 28.430466 - } - } - }, - { - "id": "2559a315-0f16-5c07-9b12-6375542c308a", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.299481, - "y": 28.430466 - }, - "endPoint": { - "x": 327.312109, - "y": 28.61525 - } - } - }, - { - "id": "ca6793af-3efb-52e1-a764-6553c1c74968", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.312109, - "y": 28.61525 - }, - "endPoint": { - "x": 327.320341, - "y": 28.682028 - } - } - }, - { - "id": "9074a6c5-755d-5ea1-854a-ab7172c8c190", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.320341, - "y": 28.682028 - }, - "endPoint": { - "x": 327.328941, - "y": 28.748758 - } - } - }, - { - "id": "5097a97c-6975-508d-959e-f5b26b8d65fa", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.328941, - "y": 28.748758 - }, - "endPoint": { - "x": 327.337909, - "y": 28.81544 - } - } - }, - { - "id": "8502a1e7-bc14-5a85-a7de-2949f30dfa6c", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.337909, - "y": 28.81544 - }, - "endPoint": { - "x": 327.347245, - "y": 28.882071 - } - } - }, - { - "id": "4d123e18-7b94-5a2f-8046-d42c5f2bf32b", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.347245, - "y": 28.882071 - }, - "endPoint": { - "x": 327.368662, - "y": 29.030832 - } - } - }, - { - "id": "32aceb95-949e-57cd-9dc0-6eb94cfea13f", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.368662, - "y": 29.030832 - }, - "endPoint": { - "x": 327.390383, - "y": 29.179548 - } - } - }, - { - "id": "1da1abfe-6a5c-566b-9f32-93afefbc5ef4", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.390383, - "y": 29.179548 - }, - "endPoint": { - "x": 327.412409, - "y": 29.32822 - } - } - }, - { - "id": "c879825e-fe2c-5904-8ba6-79cd17cc0b64", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.412409, - "y": 29.32822 - }, - "endPoint": { - "x": 327.434739, - "y": 29.476846 - } - } - }, - { - "id": "16871472-73b3-5077-82a1-86a224d75a56", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.434739, - "y": 29.476846 - }, - "endPoint": { - "x": 327.434739, - "y": 29.476842 - } - } - }, - { - "id": "14b0e9c9-6d4f-5e5f-876c-087f8ccc4e01", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.434739, - "y": 29.476842 - }, - "endPoint": { - "x": 327.454663, - "y": 29.607659 - } - } - }, - { - "id": "c19791dd-7a5c-5ac7-a33b-905b00b8aa58", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.454663, - "y": 29.607659 - }, - "endPoint": { - "x": 327.474848, - "y": 29.738436 - } - } - }, - { - "id": "9687773d-fec9-5401-b63e-6400ab10b2c6", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.474848, - "y": 29.738436 - }, - "endPoint": { - "x": 327.495292, - "y": 29.869173 - } - } - }, - { - "id": "0b89560f-19dd-5835-9b5c-945c4bd1fb80", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.495292, - "y": 29.869173 - }, - "endPoint": { - "x": 327.515995, - "y": 29.999869 - } - } - }, - { - "id": "8e3115f8-e0d7-52e6-9cd7-4c507083c135", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.515995, - "y": 29.999869 - }, - "endPoint": { - "x": 327.52351, - "y": 30.046168 - } - } - }, - { - "id": "5bfb1efb-70b9-549d-9f95-2b23c3aea0f2", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.52351, - "y": 30.046168 - }, - "endPoint": { - "x": 327.531283, - "y": 30.092424 - } - } - }, - { - "id": "9c9199da-f33c-57ec-8c36-9a33e25eefa9", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.531283, - "y": 30.092424 - }, - "endPoint": { - "x": 327.539316, - "y": 30.138636 - } - } - }, - { - "id": "4fbe88a5-18aa-527b-9427-41e8f3dee6d3", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.539316, - "y": 30.138636 - }, - "endPoint": { - "x": 327.547607, - "y": 30.184803 - } - } - }, - { - "id": "09c71b31-2063-5457-97e5-89d1dc3e2106", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.547607, - "y": 30.184803 - }, - "endPoint": { - "x": 327.559051, - "y": 30.244889 - } - } - }, - { - "id": "ad21f557-1a8a-55ca-97ce-017c191183b3", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.559051, - "y": 30.244889 - }, - "endPoint": { - "x": 327.571418, - "y": 30.304788 - } - } - }, - { - "id": "3d365c56-8729-5a86-9c07-fc1349f1460b", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.571418, - "y": 30.304788 - }, - "endPoint": { - "x": 327.584705, - "y": 30.36449 - } - } - }, - { - "id": "88f7a24b-a069-5e13-a733-f0cb32d9923e", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.584705, - "y": 30.36449 - }, - "endPoint": { - "x": 327.59891, - "y": 30.423984 - } - } - }, - { - "id": "c00bde9b-ba88-5bc1-ba2c-7247450172ff", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.59891, - "y": 30.423984 - }, - "endPoint": { - "x": 327.620276, - "y": 30.508551 - } - } - }, - { - "id": "308ef74d-765d-57b1-a2d4-8bbb022704f3", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.620276, - "y": 30.508551 - }, - "endPoint": { - "x": 327.642554, - "y": 30.59288 - } - } - }, - { - "id": "bf554daf-b513-5aed-b254-23c4405be60c", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.642554, - "y": 30.59288 - }, - "endPoint": { - "x": 327.66574, - "y": 30.676964 - } - } - }, - { - "id": "469a99cb-3d13-5ff2-b57f-663289fbde03", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.66574, - "y": 30.676964 - }, - "endPoint": { - "x": 327.689833, - "y": 30.760795 - } - } - }, - { - "id": "044dba29-cc1a-51cc-a6b9-02a81f93fbc3", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.689833, - "y": 30.760795 - }, - "endPoint": { - "x": 327.707721, - "y": 30.821502 - } - } - }, - { - "id": "7e3f1dfc-1b12-5a48-8b68-a05836d8fe98", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.707721, - "y": 30.821502 - }, - "endPoint": { - "x": 327.725767, - "y": 30.882163 - } - } - }, - { - "id": "a4afa174-aa48-5c26-b7c7-51eb9450cbe7", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.725767, - "y": 30.882163 - }, - "endPoint": { - "x": 327.743971, - "y": 30.942777 - } - } - }, - { - "id": "d9da6261-a686-5e72-8f25-a9fd0455fe6e", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.743971, - "y": 30.942777 - }, - "endPoint": { - "x": 327.762333, - "y": 31.003343 - } - } - }, - { - "id": "5f10ef91-3955-5e71-acb0-2cb10aef59da", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.762333, - "y": 31.003343 - }, - "endPoint": { - "x": 327.783276, - "y": 31.071819 - } - } - }, - { - "id": "40f8e528-94e5-5402-8a87-0aeff79a73f6", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.783276, - "y": 31.071819 - }, - "endPoint": { - "x": 327.804376, - "y": 31.140247 - } - } - }, - { - "id": "05d33483-42b9-51e7-84e5-1f91f69f3208", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.804376, - "y": 31.140247 - }, - "endPoint": { - "x": 327.825634, - "y": 31.208626 - } - } - }, - { - "id": "5ca37447-30f5-519b-bd74-cab4cd676416", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.825634, - "y": 31.208626 - }, - "endPoint": { - "x": 327.847049, - "y": 31.276957 - } - } - }, - { - "id": "79c6b06a-6761-5e18-a7c2-a4fcc12109ea", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.847049, - "y": 31.276957 - }, - "endPoint": { - "x": 327.872607, - "y": 31.357719 - } - } - }, - { - "id": "5f7ff138-b36d-5850-8024-46ffd0b127bb", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.872607, - "y": 31.357719 - }, - "endPoint": { - "x": 327.898428, - "y": 31.438397 - } - } - }, - { - "id": "144f9361-6487-5b78-8649-97372557b24a", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.898428, - "y": 31.438397 - }, - "endPoint": { - "x": 327.924512, - "y": 31.518991 - } - } - }, - { - "id": "5d2c1c59-cda2-55a7-9c0c-bcc92810ba54", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.924512, - "y": 31.518991 - }, - "endPoint": { - "x": 327.950859, - "y": 31.5995 - } - } - }, - { - "id": "297171a6-35ca-5606-bb6f-399e8d75abc0", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.950859, - "y": 31.5995 - }, - "endPoint": { - "x": 327.971282, - "y": 31.661123 - } - } - }, - { - "id": "e9c018aa-b09f-5ae8-8017-29d51ca2cb98", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.971282, - "y": 31.661123 - }, - "endPoint": { - "x": 327.991967, - "y": 31.722658 - } - } - }, - { - "id": "31e3de08-3c2d-5345-a451-c22884ff294f", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.991967, - "y": 31.722658 - }, - "endPoint": { - "x": 328.012914, - "y": 31.784105 - } - } - }, - { - "id": "01df7df9-b576-51c8-b304-838632c02fb1", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.012914, - "y": 31.784105 - }, - "endPoint": { - "x": 328.034122, - "y": 31.845462 - } - } - }, - { - "id": "609283a4-2946-59e2-aa4f-6949f14b8f76", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.034122, - "y": 31.845462 - }, - "endPoint": { - "x": 328.053217, - "y": 31.89921 - } - } - }, - { - "id": "b530fc13-a9f3-5c47-8ce0-8db7c7920cca", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.053217, - "y": 31.89921 - }, - "endPoint": { - "x": 328.073002, - "y": 31.952706 - } - } - }, - { - "id": "6ee5a7ad-63eb-515f-ac08-4cc303f2bc30", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.073002, - "y": 31.952706 - }, - "endPoint": { - "x": 328.093474, - "y": 32.005943 - } - } - }, - { - "id": "243dd4f9-f7c9-56e0-9eff-057d6a000274", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.093474, - "y": 32.005943 - }, - "endPoint": { - "x": 328.11463, - "y": 32.058913 - } - } - }, - { - "id": "c0b40bf1-d724-5d04-8f22-6fbdeecfbcdc", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.11463, - "y": 32.058913 - }, - "endPoint": { - "x": 328.141094, - "y": 32.122981 - } - } - }, - { - "id": "49a48194-658f-5ebe-a642-707f01ab4109", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.141094, - "y": 32.122981 - }, - "endPoint": { - "x": 328.168235, - "y": 32.186763 - } - } - }, - { - "id": "c603ec4d-3ae8-5e9d-aee8-2f1356611fd6", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.168235, - "y": 32.186763 - }, - "endPoint": { - "x": 328.19605, - "y": 32.250253 - } - } - }, - { - "id": "e161bbc0-a860-5287-804d-e76a082d7c61", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.19605, - "y": 32.250253 - }, - "endPoint": { - "x": 328.224537, - "y": 32.313447 - } - } - }, - { - "id": "13e4d165-cb5d-51a8-9988-407087e23df8", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.224537, - "y": 32.313447 - }, - "endPoint": { - "x": 328.201853, - "y": 32.328079 - } - } - }, - { - "id": "269c28d0-2637-5cc8-83c5-74b249de881e", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.201853, - "y": 32.328079 - }, - "endPoint": { - "x": 328.178781, - "y": 32.342082 - } - } - }, - { - "id": "0ed114cb-9227-5ab4-affe-010f4b505005", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.178781, - "y": 32.342082 - }, - "endPoint": { - "x": 328.155335, - "y": 32.35545 - } - } - }, - { - "id": "7da06b94-2b0e-50e4-8695-a5a35ecaa2cb", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.155335, - "y": 32.35545 - }, - "endPoint": { - "x": 328.131528, - "y": 32.368175 - } - } - }, - { - "id": "65835395-1197-514f-855f-e1e46f47aa83", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.131528, - "y": 32.368175 - }, - "endPoint": { - "x": 328.120679, - "y": 32.373367 - } - } - }, - { - "id": "88dded66-497e-5e41-82f3-3e668e410662", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.120679, - "y": 32.373367 - }, - "endPoint": { - "x": 328.109541, - "y": 32.377877 - } - } - }, - { - "id": "034c1987-b579-5e0c-9454-2b33ea4709a0", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.109541, - "y": 32.377877 - }, - "endPoint": { - "x": 328.098147, - "y": 32.381694 - } - } - }, - { - "id": "18ec0932-7efd-50d5-9aae-9ee49b7b3236", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.098147, - "y": 32.381694 - }, - "endPoint": { - "x": 328.086528, - "y": 32.384804 - } - } - }, - { - "id": "14ab6ea1-0256-5cdc-b1d7-8f66f25e91d8", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.086528, - "y": 32.384804 - }, - "endPoint": { - "x": 328.048352, - "y": 32.3935 - } - } - }, - { - "id": "840a90f3-876a-5f50-b5d2-882080ea44c6", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.048352, - "y": 32.3935 - }, - "endPoint": { - "x": 328.010063, - "y": 32.401678 - } - } - }, - { - "id": "3b21f56c-4a58-5276-971c-2a77b989db89", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.010063, - "y": 32.401678 - }, - "endPoint": { - "x": 327.971668, - "y": 32.409337 - } - } - }, - { - "id": "450190b8-c8cb-543b-955f-af4f31e84a6c", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.971668, - "y": 32.409337 - }, - "endPoint": { - "x": 327.93317, - "y": 32.416475 - } - } - }, - { - "id": "1ab46351-4e12-5309-bcef-0d01d330c8fc", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.93317, - "y": 32.416475 - }, - "endPoint": { - "x": 327.904993, - "y": 32.421232 - } - } - }, - { - "id": "227b7ff6-8673-5a03-965a-a133da89667f", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.904993, - "y": 32.421232 - }, - "endPoint": { - "x": 327.876734, - "y": 32.425465 - } - } - }, - { - "id": "05937b63-5552-57bd-a0a1-c14695f2992a", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.876734, - "y": 32.425465 - }, - "endPoint": { - "x": 327.848402, - "y": 32.429173 - } - } - }, - { - "id": "31bca16e-b56e-572d-9317-73fbb94a020d", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.848402, - "y": 32.429173 - }, - "endPoint": { - "x": 327.820003, - "y": 32.432354 - } - } - }, - { - "id": "dce80b67-f33a-55b6-8291-b883ec83021e", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.820003, - "y": 32.432354 - }, - "endPoint": { - "x": 327.774763, - "y": 32.436692 - } - } - }, - { - "id": "4fa0dd61-39bd-53c4-af34-7eb75342ed58", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.774763, - "y": 32.436692 - }, - "endPoint": { - "x": 327.729471, - "y": 32.440423 - } - } - }, - { - "id": "25819aec-96cb-5584-bf10-7becc6e28ac2", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.729471, - "y": 32.440423 - }, - "endPoint": { - "x": 327.684134, - "y": 32.443549 - } - } - }, - { - "id": "1aa162af-bbb3-57df-8002-819eeebcacd2", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.684134, - "y": 32.443549 - }, - "endPoint": { - "x": 327.638756, - "y": 32.446067 - } - } - }, - { - "id": "100a496e-18dc-5349-85aa-047b9b576cfa", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.638756, - "y": 32.446067 - }, - "endPoint": { - "x": 327.586529, - "y": 32.448312 - } - } - }, - { - "id": "cd131e37-6108-5ff7-abb9-4b6ea0e4fb40", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.586529, - "y": 32.448312 - }, - "endPoint": { - "x": 327.53428, - "y": 32.449949 - } - } - }, - { - "id": "9f47e390-d66e-516a-b1ef-93799ca50734", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.53428, - "y": 32.449949 - }, - "endPoint": { - "x": 327.482016, - "y": 32.450978 - } - } - }, - { - "id": "cac50ec7-529f-549d-8a4b-a8a18de20df0", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.482016, - "y": 32.450978 - }, - "endPoint": { - "x": 327.429742, - "y": 32.451399 - } - } - }, - { - "id": "c1d4ac85-0652-52fd-98cf-9551aa3c993d", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.429742, - "y": 32.451399 - }, - "endPoint": { - "x": 327.356253, - "y": 32.450628 - } - } - }, - { - "id": "9715d79a-237f-5f34-aeff-7275ab8cde7a", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.356253, - "y": 32.450628 - }, - "endPoint": { - "x": 327.28282, - "y": 32.447986 - } - } - }, - { - "id": "e6bcdbf8-ce48-50d5-bed8-69f47831d860", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.28282, - "y": 32.447986 - }, - "endPoint": { - "x": 327.209477, - "y": 32.443474 - } - } - }, - { - "id": "0f422dda-8616-5710-a5b6-d845fe29ca90", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.209477, - "y": 32.443474 - }, - "endPoint": { - "x": 327.136262, - "y": 32.437095 - } - } - }, - { - "id": "45a8c2a7-14dd-5170-b5e4-fb8c71dbc764", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.136262, - "y": 32.437095 - }, - "endPoint": { - "x": 327.090181, - "y": 32.431545 - } - } - }, - { - "id": "dfe60afe-6c73-5f90-a741-d9c13e994af0", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.090181, - "y": 32.431545 - }, - "endPoint": { - "x": 327.044381, - "y": 32.424143 - } - } - }, - { - "id": "0218b30b-fc0b-5e00-9dda-d5237145168b", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.044381, - "y": 32.424143 - }, - "endPoint": { - "x": 326.998917, - "y": 32.414897 - } - } - }, - { - "id": "43c278f5-eddb-5f77-a1e1-a254b91c73d4", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.998917, - "y": 32.414897 - }, - "endPoint": { - "x": 326.953845, - "y": 32.403818 - } - } - }, - { - "id": "ea3141c7-16e4-553f-84ba-7bb2e245ad61", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.953845, - "y": 32.403818 - }, - "endPoint": { - "x": 326.922521, - "y": 32.395157 - } - } - }, - { - "id": "0be1c00f-5157-5244-8725-cd8e5d771cf1", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.922521, - "y": 32.395157 - }, - "endPoint": { - "x": 326.891351, - "y": 32.385964 - } - } - }, - { - "id": "7cc0e56b-7f14-568a-85c2-4a864ded7f8e", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.891351, - "y": 32.385964 - }, - "endPoint": { - "x": 326.860343, - "y": 32.37624 - } - } - }, - { - "id": "da936661-9893-5df3-9b8d-a6d9b18af314", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.860343, - "y": 32.37624 - }, - "endPoint": { - "x": 326.829502, - "y": 32.365989 - } - } - }, - { - "id": "516d451e-fae0-510a-bb59-0621f28fdb10", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.829502, - "y": 32.365989 - }, - "endPoint": { - "x": 326.769878, - "y": 32.345311 - } - } - }, - { - "id": "aebceeb3-2c6b-5743-bf0e-7df587650fc1", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.769878, - "y": 32.345311 - }, - "endPoint": { - "x": 326.710439, - "y": 32.324111 - } - } - }, - { - "id": "e389d13d-fb63-5e55-81c7-3e707dbdd50b", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.710439, - "y": 32.324111 - }, - "endPoint": { - "x": 326.651188, - "y": 32.30239 - } - } - }, - { - "id": "6991f4f4-5525-53af-8e2e-150723db5580", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.651188, - "y": 32.30239 - }, - "endPoint": { - "x": 326.592129, - "y": 32.280149 - } - } - }, - { - "id": "04adb5ee-da2c-59e1-8118-e406bec2a18f", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.592129, - "y": 32.280149 - }, - "endPoint": { - "x": 326.535225, - "y": 32.258081 - } - } - }, - { - "id": "88a19783-d52a-5db5-bd59-6aeae3e93ebd", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.535225, - "y": 32.258081 - }, - "endPoint": { - "x": 326.478565, - "y": 32.235397 - } - } - }, - { - "id": "114ff5ae-f4ed-576a-b505-36c42ccdff35", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.478565, - "y": 32.235397 - }, - "endPoint": { - "x": 326.422155, - "y": 32.212101 - } - } - }, - { - "id": "d57b8f86-967b-513b-947c-75a6adc28237", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.422155, - "y": 32.212101 - }, - "endPoint": { - "x": 326.365998, - "y": 32.188195 - } - } - }, - { - "id": "4b0a3c93-a526-50a5-94ac-913171ed5543", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.365998, - "y": 32.188195 - }, - "endPoint": { - "x": 326.334052, - "y": 32.174029 - } - } - }, - { - "id": "3b90c696-b0e6-5d1c-9b40-70e33c59a37e", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.334052, - "y": 32.174029 - }, - "endPoint": { - "x": 326.302382, - "y": 32.159263 - } - } - }, - { - "id": "f2e6f547-d73f-5cb5-a8f7-b6202cb929be", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.302382, - "y": 32.159263 - }, - "endPoint": { - "x": 326.270998, - "y": 32.1439 - } - } - }, - { - "id": "5ef92cce-1871-5c63-938a-6fa63003305b", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.270998, - "y": 32.1439 - }, - "endPoint": { - "x": 326.239907, - "y": 32.127945 - } - } - }, - { - "id": "b2b8871c-8aad-57fd-a777-1ab05ad19847", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.239907, - "y": 32.127945 - }, - "endPoint": { - "x": 326.200273, - "y": 32.105794 - } - } - }, - { - "id": "792a0625-97dc-513a-8c22-ed75981201c3", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.200273, - "y": 32.105794 - }, - "endPoint": { - "x": 326.16187, - "y": 32.081628 - } - } - }, - { - "id": "5f5667d4-f61e-526f-84cc-1dbf2b40cd64", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.16187, - "y": 32.081628 - }, - "endPoint": { - "x": 326.124776, - "y": 32.055498 - } - } - }, - { - "id": "8dba1606-2a40-5226-9fb4-89e40ff3c64a", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.124776, - "y": 32.055498 - }, - "endPoint": { - "x": 326.089067, - "y": 32.027455 - } - } - }, - { - "id": "3fc3dac4-001c-50bc-a1df-d68b33183e34", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.089067, - "y": 32.027455 - }, - "endPoint": { - "x": 326.041072, - "y": 31.986171 - } - } - }, - { - "id": "f054dafb-b15d-5964-a9c0-95106ab6454a", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.041072, - "y": 31.986171 - }, - "endPoint": { - "x": 325.994664, - "y": 31.943144 - } - } - }, - { - "id": "bfdc9e6b-e1e3-5b72-9636-7c801b44dee3", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.994664, - "y": 31.943144 - }, - "endPoint": { - "x": 325.94989, - "y": 31.898418 - } - } - }, - { - "id": "af6711c2-3a9f-5ccd-8a9e-ff5f07ff1178", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.94989, - "y": 31.898418 - }, - "endPoint": { - "x": 325.906798, - "y": 31.85204 - } - } - }, - { - "id": "c3f5473e-be02-5f11-bcd0-1ea74458f6dd", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.906798, - "y": 31.85204 - }, - "endPoint": { - "x": 325.874117, - "y": 31.815138 - } - } - }, - { - "id": "146b498f-2311-5cb8-ac94-20372f7a33c1", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.874117, - "y": 31.815138 - }, - "endPoint": { - "x": 325.841828, - "y": 31.777896 - } - } - }, - { - "id": "4d4f41d7-52e5-5df3-940e-9c891660432f", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.841828, - "y": 31.777896 - }, - "endPoint": { - "x": 325.809932, - "y": 31.740316 - } - } - }, - { - "id": "5039d86a-bd4b-5c76-8c08-c7d338680b13", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.809932, - "y": 31.740316 - }, - "endPoint": { - "x": 325.778432, - "y": 31.702401 - } - } - }, - { - "id": "48c4be9a-1544-52cc-ab20-1048d91a23c9", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.778432, - "y": 31.702401 - }, - "endPoint": { - "x": 325.755179, - "y": 31.673702 - } - } - }, - { - "id": "f1a2d392-33d7-50ac-913f-dcf83d017ef3", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.755179, - "y": 31.673702 - }, - "endPoint": { - "x": 325.732331, - "y": 31.644681 - } - } - }, - { - "id": "5291ba1d-b046-5003-bc80-df32d0896edd", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.732331, - "y": 31.644681 - }, - "endPoint": { - "x": 325.709894, - "y": 31.615342 - } - } - }, - { - "id": "309988bd-8b99-57ad-a94a-e84a835a8255", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.709894, - "y": 31.615342 - }, - "endPoint": { - "x": 325.687869, - "y": 31.585689 - } - } - }, - { - "id": "b92c6d60-d42f-57b7-a805-74360d906dfd", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.687869, - "y": 31.585689 - }, - "endPoint": { - "x": 325.651597, - "y": 31.535561 - } - } - }, - { - "id": "fe4d9e52-b61f-5d5d-8cd5-ea18e31e46ef", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.651597, - "y": 31.535561 - }, - "endPoint": { - "x": 325.615874, - "y": 31.485042 - } - } - }, - { - "id": "260396f7-83cb-5174-a55b-defd809f29e6", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.615874, - "y": 31.485042 - }, - "endPoint": { - "x": 325.580703, - "y": 31.434136 - } - } - }, - { - "id": "20ed6250-6b56-5a8b-9443-b5a7a2c6aae5", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.580703, - "y": 31.434136 - }, - "endPoint": { - "x": 325.546088, - "y": 31.38285 - } - } - }, - { - "id": "c918b35f-0981-5a0e-84b6-88d774ed40cd", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.546088, - "y": 31.38285 - }, - "endPoint": { - "x": 325.518811, - "y": 31.341349 - } - } - }, - { - "id": "21d81cd6-b3d8-5455-9ebd-405a8ac451f0", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.518811, - "y": 31.341349 - }, - "endPoint": { - "x": 325.4921, - "y": 31.299484 - } - } - }, - { - "id": "62c8456c-1b72-5820-82f6-88224aa8892a", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.4921, - "y": 31.299484 - }, - "endPoint": { - "x": 325.465961, - "y": 31.25726 - } - } - }, - { - "id": "0d9657e6-ebe3-546e-9e92-8637ac1de8ca", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.465961, - "y": 31.25726 - }, - "endPoint": { - "x": 325.440395, - "y": 31.214684 - } - } - }, - { - "id": "329afc80-50d4-5a9e-b9fe-51dd248ab8ad", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.440395, - "y": 31.214684 - }, - "endPoint": { - "x": 325.41081, - "y": 31.16378 - } - } - }, - { - "id": "d001be56-2f91-5aa9-9542-7d9ff119593b", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.41081, - "y": 31.16378 - }, - "endPoint": { - "x": 325.381991, - "y": 31.112441 - } - } - }, - { - "id": "aebb3d06-04f5-55b2-b697-e8bee1b6d5b6", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.381991, - "y": 31.112441 - }, - "endPoint": { - "x": 325.353944, - "y": 31.060677 - } - } - }, - { - "id": "f01b34c7-1ed7-5417-b1ee-cfc55c29442b", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.353944, - "y": 31.060677 - }, - "endPoint": { - "x": 325.326674, - "y": 31.008496 - } - } - }, - { - "id": "7467ccb3-ada1-503a-826a-0c32b2e87dfa", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.326674, - "y": 31.008496 - }, - "endPoint": { - "x": 325.306312, - "y": 30.967847 - } - } - }, - { - "id": "1df32206-3895-5e7b-9573-87e649170904", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.306312, - "y": 30.967847 - }, - "endPoint": { - "x": 325.286744, - "y": 30.926815 - } - } - }, - { - "id": "69542914-c361-500d-93d2-16408b5745d2", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.286744, - "y": 30.926815 - }, - "endPoint": { - "x": 325.267976, - "y": 30.885411 - } - } - }, - { - "id": "659d98da-369e-5cdd-b640-f8ef65d0d36e", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.267976, - "y": 30.885411 - }, - "endPoint": { - "x": 325.250012, - "y": 30.843647 - } - } - }, - { - "id": "3ec45db2-705a-5363-9b1b-20e4cf5a20ea", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.250012, - "y": 30.843647 - }, - "endPoint": { - "x": 325.23312, - "y": 30.802728 - } - } - }, - { - "id": "fb2fd9e7-df46-5c0a-ae62-9354d482528e", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.23312, - "y": 30.802728 - }, - "endPoint": { - "x": 325.216641, - "y": 30.761643 - } - } - }, - { - "id": "0f376178-744b-5076-a558-316dd316b166", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.216641, - "y": 30.761643 - }, - "endPoint": { - "x": 325.200574, - "y": 30.720394 - } - } - }, - { - "id": "0b999d69-bfa6-5b58-9742-d1c6d55a5654", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.200574, - "y": 30.720394 - }, - "endPoint": { - "x": 325.184922, - "y": 30.678985 - } - } - } - ] - }, - { - "id": "35efd3c6-e3cc-5030-bc99-c3efc0dd3ba5", - "type": "PolyLine", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": null, - "children": [ - { - "id": "ee645aea-ba8b-501a-927d-4aa2ffb41999", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.630444, - "y": 30.606648 - }, - "endPoint": { - "x": 337.601266, - "y": 30.699576 - } - } - }, - { - "id": "5dd2642e-0769-5a74-aa84-0c2421169ac5", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.601266, - "y": 30.699576 - }, - "endPoint": { - "x": 337.571618, - "y": 30.792355 - } - } - }, - { - "id": "e4889326-31df-5577-a898-c496b12f0cff", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.571618, - "y": 30.792355 - }, - "endPoint": { - "x": 337.541501, - "y": 30.884983 - } - } - }, - { - "id": "5e36a792-ec02-55d4-981e-4fb3704edfc3", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.541501, - "y": 30.884983 - }, - "endPoint": { - "x": 337.510915, - "y": 30.977458 - } - } - }, - { - "id": "67f834e5-aef1-5579-ba0c-e6337e9d751c", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.510915, - "y": 30.977458 - }, - "endPoint": { - "x": 337.499285, - "y": 31.011548 - } - } - }, - { - "id": "3767630f-6cfc-5e2d-9153-3025dafecf54", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.499285, - "y": 31.011548 - }, - "endPoint": { - "x": 337.487189, - "y": 31.045475 - } - } - }, - { - "id": "a9a8b938-ce15-520c-b799-232daeda4956", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.487189, - "y": 31.045475 - }, - "endPoint": { - "x": 337.47463, - "y": 31.079233 - } - } - }, - { - "id": "5761f20b-140c-5c89-b342-fead21a4d459", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.47463, - "y": 31.079233 - }, - "endPoint": { - "x": 337.461609, - "y": 31.112817 - } - } - }, - { - "id": "23ccf98b-2c63-5efd-8906-07a2b5b3b8c1", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.461609, - "y": 31.112817 - }, - "endPoint": { - "x": 337.453764, - "y": 31.131893 - } - } - }, - { - "id": "6bdcf55d-b57d-5d83-9aa4-b796082dedf2", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.453764, - "y": 31.131893 - }, - "endPoint": { - "x": 337.445408, - "y": 31.150746 - } - } - }, - { - "id": "3cc6b565-ba50-5e25-aa1e-b6b62be3703c", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.445408, - "y": 31.150746 - }, - "endPoint": { - "x": 337.436547, - "y": 31.169367 - } - } - }, - { - "id": "af6ebfa2-1588-5bb4-a426-e5642187c698", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.436547, - "y": 31.169367 - }, - "endPoint": { - "x": 337.427184, - "y": 31.187746 - } - } - }, - { - "id": "90b7ab61-02f0-57c6-a86c-e5f9017528fc", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.427184, - "y": 31.187746 - }, - "endPoint": { - "x": 337.372721, - "y": 31.290586 - } - } - }, - { - "id": "c7325d62-90fa-5ae8-961b-bd47a0079918", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.372721, - "y": 31.290586 - }, - "endPoint": { - "x": 337.317766, - "y": 31.393165 - } - } - }, - { - "id": "06c523c1-fcdb-5d0e-8227-6e4abda90454", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.317766, - "y": 31.393165 - }, - "endPoint": { - "x": 337.262323, - "y": 31.49548 - } - } - }, - { - "id": "26a6115f-3b04-5a98-8a02-25f6be6697a5", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.262323, - "y": 31.49548 - }, - "endPoint": { - "x": 337.20639, - "y": 31.59753 - } - } - }, - { - "id": "993d7958-2274-5641-af22-54f8157136c9", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.20639, - "y": 31.59753 - }, - "endPoint": { - "x": 337.154512, - "y": 31.69057 - } - } - }, - { - "id": "e8437b56-b4a4-5e79-a816-a97339f070eb", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.154512, - "y": 31.69057 - }, - "endPoint": { - "x": 337.101728, - "y": 31.783096 - } - } - }, - { - "id": "8efb41f1-fc69-5c1a-b76b-70fbdc4ab317", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.101728, - "y": 31.783096 - }, - "endPoint": { - "x": 337.048041, - "y": 31.875101 - } - } - }, - { - "id": "fc38dffc-8263-58bb-a7cd-02299f795a8f", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.048041, - "y": 31.875101 - }, - "endPoint": { - "x": 336.993457, - "y": 31.96658 - } - } - }, - { - "id": "846ea5e8-63b1-517c-bd66-6650bc69c42e", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.993457, - "y": 31.96658 - }, - "endPoint": { - "x": 336.961478, - "y": 32.018575 - } - } - }, - { - "id": "c1266b62-fcd7-5170-bce8-3426838ee76c", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.961478, - "y": 32.018575 - }, - "endPoint": { - "x": 336.928619, - "y": 32.070012 - } - } - }, - { - "id": "2aeec4c0-ecac-52d2-a188-c12bf92d4b41", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.928619, - "y": 32.070012 - }, - "endPoint": { - "x": 336.894887, - "y": 32.120882 - } - } - }, - { - "id": "67060c95-aa07-5cbf-b360-c4dff1daa2a1", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.894887, - "y": 32.120882 - }, - "endPoint": { - "x": 336.860289, - "y": 32.171172 - } - } - }, - { - "id": "83419102-b608-507e-9821-bdaf343aae44", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.860289, - "y": 32.171172 - }, - "endPoint": { - "x": 336.822715, - "y": 32.221965 - } - } - }, - { - "id": "cc0a28a5-5468-5775-b5f8-170d5112de12", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.822715, - "y": 32.221965 - }, - "endPoint": { - "x": 336.782602, - "y": 32.270724 - } - } - }, - { - "id": "a81d37a7-4356-579e-98ea-9576815d6522", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.782602, - "y": 32.270724 - }, - "endPoint": { - "x": 336.740032, - "y": 32.317353 - } - } - }, - { - "id": "9b6b9fde-8c88-573f-85cd-2bda3e4a49d9", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.740032, - "y": 32.317353 - }, - "endPoint": { - "x": 336.695087, - "y": 32.361757 - } - } - }, - { - "id": "baf5aabf-6568-5395-99f0-65deaf75cec6", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.695087, - "y": 32.361757 - }, - "endPoint": { - "x": 336.636069, - "y": 32.414905 - } - } - }, - { - "id": "50ae7f61-8a96-5e84-ac80-20b60f446e0c", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.636069, - "y": 32.414905 - }, - "endPoint": { - "x": 336.574951, - "y": 32.465573 - } - } - }, - { - "id": "c1ee2f63-e32b-5116-a56a-fe892ea55bb2", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.574951, - "y": 32.465573 - }, - "endPoint": { - "x": 336.511812, - "y": 32.513698 - } - } - }, - { - "id": "473dc6b2-8823-57fc-95a1-6a36dd1ed000", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.511812, - "y": 32.513698 - }, - "endPoint": { - "x": 336.44673, - "y": 32.559218 - } - } - }, - { - "id": "8d1e3e35-671f-5bba-a0ca-b5abc6f3fdb6", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.44673, - "y": 32.559218 - }, - "endPoint": { - "x": 336.396161, - "y": 32.592665 - } - } - }, - { - "id": "b2a198b2-3219-5149-9315-e6fad400613f", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.396161, - "y": 32.592665 - }, - "endPoint": { - "x": 336.345229, - "y": 32.625554 - } - } - }, - { - "id": "e0d944df-d04a-5d97-a339-d8606fc36379", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.345229, - "y": 32.625554 - }, - "endPoint": { - "x": 336.293938, - "y": 32.65788 - } - } - }, - { - "id": "2cb5aa9e-acb6-51b0-a32c-9f4283af6dca", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.293938, - "y": 32.65788 - }, - "endPoint": { - "x": 336.242294, - "y": 32.689642 - } - } - }, - { - "id": "2823fbc9-5a5c-584a-9323-0a73b86703bc", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.242294, - "y": 32.689642 - }, - "endPoint": { - "x": 336.186285, - "y": 32.723273 - } - } - }, - { - "id": "3aaea9ee-400e-5b62-951d-f2d5bb9796c7", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.186285, - "y": 32.723273 - }, - "endPoint": { - "x": 336.129937, - "y": 32.756331 - } - } - }, - { - "id": "c20a7234-5c54-5659-9670-20543ab3ecb4", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.129937, - "y": 32.756331 - }, - "endPoint": { - "x": 336.073255, - "y": 32.788812 - } - } - }, - { - "id": "56ec3193-db21-51a4-96b3-294408fa7f10", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.073255, - "y": 32.788812 - }, - "endPoint": { - "x": 336.016243, - "y": 32.820713 - } - } - }, - { - "id": "4f2159ef-5a53-516c-adcf-e1bfd3f62c62", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.016243, - "y": 32.820713 - }, - "endPoint": { - "x": 335.942356, - "y": 32.861063 - } - } - }, - { - "id": "c52fe7bd-c87c-5a84-ab1f-457f50613cd6", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.942356, - "y": 32.861063 - }, - "endPoint": { - "x": 335.868056, - "y": 32.900641 - } - } - }, - { - "id": "101e97ba-d61c-5f8e-99d6-b50308d34838", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.868056, - "y": 32.900641 - }, - "endPoint": { - "x": 335.793349, - "y": 32.939445 - } - } - }, - { - "id": "abc71f34-79c1-52ca-b92a-3057684a2955", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.793349, - "y": 32.939445 - }, - "endPoint": { - "x": 335.71824, - "y": 32.977472 - } - } - }, - { - "id": "b3043755-76a8-5d5d-8226-a6c74e49fb48", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.71824, - "y": 32.977472 - }, - "endPoint": { - "x": 335.675128, - "y": 32.998529 - } - } - }, - { - "id": "b082b96f-b340-5544-b025-d1ccf079d49d", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.675128, - "y": 32.998529 - }, - "endPoint": { - "x": 335.631642, - "y": 33.018794 - } - } - }, - { - "id": "b8d8b65b-f47f-5f4a-8199-617a9c4c336d", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.631642, - "y": 33.018794 - }, - "endPoint": { - "x": 335.587794, - "y": 33.038263 - } - } - }, - { - "id": "62e4c62f-48e5-5b97-993e-d6e3d8e1b975", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.587794, - "y": 33.038263 - }, - "endPoint": { - "x": 335.543594, - "y": 33.05693 - } - } - }, - { - "id": "dad7090f-19f7-5e56-b6c2-0ef17d45b765", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.543594, - "y": 33.05693 - }, - "endPoint": { - "x": 335.507677, - "y": 33.071044 - } - } - }, - { - "id": "5ff940da-2669-5517-8559-c615510dca19", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.507677, - "y": 33.071044 - }, - "endPoint": { - "x": 335.471335, - "y": 33.083992 - } - } - }, - { - "id": "61b9c535-66c3-5619-abe0-33211dbb32a7", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.471335, - "y": 33.083992 - }, - "endPoint": { - "x": 335.434595, - "y": 33.095767 - } - } - }, - { - "id": "b6c72f06-86ad-562c-8aef-70b4cf7e0c9f", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.434595, - "y": 33.095767 - }, - "endPoint": { - "x": 335.397486, - "y": 33.106357 - } - } - }, - { - "id": "b6d4b4c7-e2a6-51fe-8b1d-d56ba4f9cea2", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.397486, - "y": 33.106357 - }, - "endPoint": { - "x": 335.347893, - "y": 33.11901 - } - } - }, - { - "id": "9963346a-848a-51d9-87d5-3417e6afc66f", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.347893, - "y": 33.11901 - }, - "endPoint": { - "x": 335.298015, - "y": 33.130457 - } - } - }, - { - "id": "2179e57c-8eb4-5af3-92da-a6bd67b788eb", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.298015, - "y": 33.130457 - }, - "endPoint": { - "x": 335.247874, - "y": 33.140693 - } - } - }, - { - "id": "a6d1565e-2543-58ac-8dac-815e63f8dffc", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.247874, - "y": 33.140693 - }, - "endPoint": { - "x": 335.197493, - "y": 33.149713 - } - } - }, - { - "id": "c4e8b9a0-9a29-5136-8bbf-3f92bb15da8a", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.197493, - "y": 33.149713 - }, - "endPoint": { - "x": 335.124304, - "y": 33.160794 - } - } - }, - { - "id": "06308a79-eabb-5b86-8644-3103e954858a", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.124304, - "y": 33.160794 - }, - "endPoint": { - "x": 335.050835, - "y": 33.169706 - } - } - }, - { - "id": "771aea4f-e1a8-5163-bf7c-421b7e04d127", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.050835, - "y": 33.169706 - }, - "endPoint": { - "x": 334.977135, - "y": 33.176443 - } - } - }, - { - "id": "3d6a46af-6dd1-5e97-b578-4a31009de924", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.977135, - "y": 33.176443 - }, - "endPoint": { - "x": 334.903252, - "y": 33.181 - } - } - }, - { - "id": "739ca0bf-a8e8-50b5-a3f0-b25d412ed198", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.903252, - "y": 33.181 - }, - "endPoint": { - "x": 334.841719, - "y": 33.182787 - } - } - }, - { - "id": "da5bc2d3-a1d4-5a77-bab3-14c614f18ca2", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.841719, - "y": 33.182787 - }, - "endPoint": { - "x": 334.780181, - "y": 33.182386 - } - } - }, - { - "id": "b7de5879-693f-5f76-823d-6fd040cf7e9c", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.780181, - "y": 33.182386 - }, - "endPoint": { - "x": 334.718697, - "y": 33.179797 - } - } - }, - { - "id": "2b29ff9b-ce22-5f09-8770-3eacface774c", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.718697, - "y": 33.179797 - }, - "endPoint": { - "x": 334.657324, - "y": 33.175023 - } - } - }, - { - "id": "52c3c061-0b2b-5b58-9d26-86918bf1d378", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.657324, - "y": 33.175023 - }, - "endPoint": { - "x": 334.609692, - "y": 33.170342 - } - } - }, - { - "id": "a3b904c4-e965-5e39-b304-26fb4077c13b", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.609692, - "y": 33.170342 - }, - "endPoint": { - "x": 334.562084, - "y": 33.165421 - } - } - }, - { - "id": "6e99256c-c1f9-5dfa-9841-4ff6f9c98508", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.562084, - "y": 33.165421 - }, - "endPoint": { - "x": 334.514502, - "y": 33.160259 - } - } - }, - { - "id": "b81b78b4-34ee-59f2-984b-a0b27f871294", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.514502, - "y": 33.160259 - }, - "endPoint": { - "x": 334.466947, - "y": 33.154857 - } - } - }, - { - "id": "8c62a3a4-e155-58ff-a433-27d6a9bc963f", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.466947, - "y": 33.154857 - }, - "endPoint": { - "x": 334.423754, - "y": 33.149718 - } - } - }, - { - "id": "f26222b6-e3a2-53cd-b399-4acaee5453d5", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.423754, - "y": 33.149718 - }, - "endPoint": { - "x": 334.380591, - "y": 33.144339 - } - } - }, - { - "id": "2c48ec4b-2082-5182-ba0e-6f6d851c57e2", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.380591, - "y": 33.144339 - }, - "endPoint": { - "x": 334.337459, - "y": 33.138719 - } - } - }, - { - "id": "0255cf4a-ee71-5cf6-acc1-37f0b253c49b", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.337459, - "y": 33.138719 - }, - "endPoint": { - "x": 334.294358, - "y": 33.13286 - } - } - }, - { - "id": "e62e3911-93d7-541f-a2a1-b5c8befca41c", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.294358, - "y": 33.13286 - }, - "endPoint": { - "x": 334.269463, - "y": 33.129333 - } - } - }, - { - "id": "3c7157ec-ad23-54a6-9cf3-a7c951ef69fa", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.269463, - "y": 33.129333 - }, - "endPoint": { - "x": 334.244589, - "y": 33.125664 - } - } - }, - { - "id": "bf3bcde8-ac6f-5b62-a851-66916ea722ef", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.244589, - "y": 33.125664 - }, - "endPoint": { - "x": 334.219737, - "y": 33.121853 - } - } - }, - { - "id": "63f2ac54-bde3-5f12-adc7-306875e0e872", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.219737, - "y": 33.121853 - }, - "endPoint": { - "x": 334.194906, - "y": 33.1179 - } - } - }, - { - "id": "7a9fe056-3a52-5ce9-8226-bf7ef9801029", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.194906, - "y": 33.1179 - }, - "endPoint": { - "x": 334.141672, - "y": 33.109197 - } - } - }, - { - "id": "451e1dc3-b922-5c2a-b0dd-9052f157a0a8", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.141672, - "y": 33.109197 - }, - "endPoint": { - "x": 334.088461, - "y": 33.100353 - } - } - }, - { - "id": "ed9016db-37db-5f4c-9a3e-2b7cf8c06850", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.088461, - "y": 33.100353 - }, - "endPoint": { - "x": 334.035274, - "y": 33.091367 - } - } - }, - { - "id": "87efc1ef-913a-5447-88ae-262afa9491a3", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.035274, - "y": 33.091367 - }, - "endPoint": { - "x": 333.982111, - "y": 33.08224 - } - } - }, - { - "id": "3e178a6b-7dbd-5ed1-8bfd-ef9573ede265", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.982111, - "y": 33.08224 - }, - "endPoint": { - "x": 333.963288, - "y": 33.078539 - } - } - }, - { - "id": "7136fd9c-12f9-55e4-bd87-d60cb7b3e429", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.963288, - "y": 33.078539 - }, - "endPoint": { - "x": 333.944661, - "y": 33.073987 - } - } - }, - { - "id": "5fd4cb75-9e8b-511f-a338-9cf6baf45fcf", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.944661, - "y": 33.073987 - }, - "endPoint": { - "x": 333.926262, - "y": 33.068592 - } - } - }, - { - "id": "ac950f1b-72f2-5fa1-9f63-457b4096a8db", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.926262, - "y": 33.068592 - }, - "endPoint": { - "x": 333.908118, - "y": 33.062362 - } - } - }, - { - "id": "087a71c8-5c85-5dec-b365-8f9d18e7af09", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.908118, - "y": 33.062362 - }, - "endPoint": { - "x": 333.869493, - "y": 33.047651 - } - } - }, - { - "id": "43745cd1-f9d1-530c-83c7-2bf2c5dc7aec", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.869493, - "y": 33.047651 - }, - "endPoint": { - "x": 333.831186, - "y": 33.032143 - } - } - }, - { - "id": "7d84509a-a35a-58ef-af35-7e1b34397478", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.831186, - "y": 33.032143 - }, - "endPoint": { - "x": 333.793209, - "y": 33.015843 - } - } - }, - { - "id": "9a17bc50-22be-5508-835f-b04035ce2277", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.793209, - "y": 33.015843 - }, - "endPoint": { - "x": 333.755574, - "y": 32.998757 - } - } - }, - { - "id": "9e31e605-c9ed-51ab-89eb-df7ea18fe1a5", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.755574, - "y": 32.998757 - }, - "endPoint": { - "x": 333.75927, - "y": 32.991552 - } - } - }, - { - "id": "21cadc0a-d887-58ad-84fd-41a515c52834", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.75927, - "y": 32.991552 - }, - "endPoint": { - "x": 333.762964, - "y": 32.984345 - } - } - }, - { - "id": "4ed08c1d-46a5-5980-ae50-248a7b1f8c81", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.762964, - "y": 32.984345 - }, - "endPoint": { - "x": 333.766655, - "y": 32.977137 - } - } - }, - { - "id": "d8829eec-3435-5b79-bf71-fab1a6510aaf", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.766655, - "y": 32.977137 - }, - "endPoint": { - "x": 333.770343, - "y": 32.969927 - } - } - }, - { - "id": "12462c56-7354-5b17-9712-8555d04eba55", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.770343, - "y": 32.969927 - }, - "endPoint": { - "x": 333.784553, - "y": 32.941955 - } - } - }, - { - "id": "544250a3-e144-5f5d-a449-d64db058c3ca", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.784553, - "y": 32.941955 - }, - "endPoint": { - "x": 333.798611, - "y": 32.913906 - } - } - }, - { - "id": "37b2d1dc-62d2-53cb-99af-c71f37be3fc1", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.798611, - "y": 32.913906 - }, - "endPoint": { - "x": 333.812516, - "y": 32.885782 - } - } - }, - { - "id": "b417526c-2f7d-552e-ba30-1281c98b5497", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.812516, - "y": 32.885782 - }, - "endPoint": { - "x": 333.826269, - "y": 32.857582 - } - } - }, - { - "id": "afb7367c-c2a0-552b-b02f-1a4901cfe98b", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.826269, - "y": 32.857582 - }, - "endPoint": { - "x": 333.851667, - "y": 32.805127 - } - } - }, - { - "id": "ee7f31e4-a56e-510c-8149-2e9ce7227495", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.851667, - "y": 32.805127 - }, - "endPoint": { - "x": 333.87705, - "y": 32.752665 - } - } - }, - { - "id": "f5a6c07d-91c4-5b20-86b6-796f7da5747c", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.87705, - "y": 32.752665 - }, - "endPoint": { - "x": 333.902418, - "y": 32.700197 - } - } - }, - { - "id": "502dd8a1-c354-5420-a43f-3c37f77e49cc", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.902418, - "y": 32.700197 - }, - "endPoint": { - "x": 333.927773, - "y": 32.647721 - } - } - }, - { - "id": "b0e8fa55-1201-5e34-839c-ca07c876d9e2", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.927773, - "y": 32.647721 - }, - "endPoint": { - "x": 333.954808, - "y": 32.591728 - } - } - }, - { - "id": "d5f2c71a-373d-5aaf-a91e-7b1b82e441bf", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.954808, - "y": 32.591728 - }, - "endPoint": { - "x": 333.981829, - "y": 32.535729 - } - } - }, - { - "id": "e3a16b7f-1464-5354-a3a0-5cd176d788f3", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.981829, - "y": 32.535729 - }, - "endPoint": { - "x": 334.008836, - "y": 32.479722 - } - } - }, - { - "id": "09a95ec8-6c0d-5e90-80c5-2c88fd582592", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.008836, - "y": 32.479722 - }, - "endPoint": { - "x": 334.035828, - "y": 32.423709 - } - } - }, - { - "id": "f8c8e4af-be71-5606-acf5-2bd7b44f4ebf", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.035828, - "y": 32.423709 - }, - "endPoint": { - "x": 334.068719, - "y": 32.35536 - } - } - }, - { - "id": "f3a1119e-8ee0-5041-8b9a-9e2b4ecf9dd4", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.068719, - "y": 32.35536 - }, - "endPoint": { - "x": 334.101553, - "y": 32.286983 - } - } - }, - { - "id": "e771b243-6dd3-558c-ba9b-4fbfdb437a56", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.101553, - "y": 32.286983 - }, - "endPoint": { - "x": 334.13433, - "y": 32.21858 - } - } - }, - { - "id": "9c2d34ac-f5dc-5d4e-b5da-6dc4545638b1", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.13433, - "y": 32.21858 - }, - "endPoint": { - "x": 334.16705, - "y": 32.150148 - } - } - }, - { - "id": "54a5fcda-bf65-5116-b0b8-d113700da281", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.16705, - "y": 32.150148 - }, - "endPoint": { - "x": 334.173635, - "y": 32.13629 - } - } - }, - { - "id": "f544f2a3-d346-5454-991e-7d55bcb2ea90", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.173635, - "y": 32.13629 - }, - "endPoint": { - "x": 334.180162, - "y": 32.122404 - } - } - }, - { - "id": "16156f4a-aeec-54ba-92ed-4422a1ecd0b8", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.180162, - "y": 32.122404 - }, - "endPoint": { - "x": 334.186632, - "y": 32.108492 - } - } - }, - { - "id": "2f46529d-9b58-568a-8ade-c9f8d187ca86", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.186632, - "y": 32.108492 - }, - "endPoint": { - "x": 334.193045, - "y": 32.094553 - } - } - }, - { - "id": "9ff96f5d-fae2-567f-b61a-bf78ac7888c1", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.193045, - "y": 32.094553 - }, - "endPoint": { - "x": 334.199673, - "y": 32.079669 - } - } - }, - { - "id": "d175335a-19aa-5ba5-99cb-07e93d29c6c5", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.199673, - "y": 32.079669 - }, - "endPoint": { - "x": 334.205996, - "y": 32.064654 - } - } - }, - { - "id": "62507cca-c590-5e33-8d6a-c22b6f64076e", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.205996, - "y": 32.064654 - }, - "endPoint": { - "x": 334.212013, - "y": 32.049515 - } - } - }, - { - "id": "bcec0307-6184-54d0-a85a-ed4b20f66982", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.212013, - "y": 32.049515 - }, - "endPoint": { - "x": 334.21772, - "y": 32.034254 - } - } - }, - { - "id": "0a02e57e-0e4a-57d3-8332-f237d0b7435d", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.21772, - "y": 32.034254 - }, - "endPoint": { - "x": 334.258788, - "y": 31.920463 - } - } - }, - { - "id": "ed611be0-2e61-5f8a-b337-db3107b99f64", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.258788, - "y": 31.920463 - }, - "endPoint": { - "x": 334.299543, - "y": 31.80656 - } - } - }, - { - "id": "778f627d-2202-5622-abb9-422c9472694a", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.299543, - "y": 31.80656 - }, - "endPoint": { - "x": 334.339987, - "y": 31.692546 - } - } - }, - { - "id": "5532ea7a-e9b6-5e4b-940d-04390b6c73da", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.339987, - "y": 31.692546 - }, - "endPoint": { - "x": 334.380118, - "y": 31.578422 - } - } - }, - { - "id": "dfad5aa3-dc8c-59ab-9ed9-20cfcaf5eac0", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.380118, - "y": 31.578422 - }, - "endPoint": { - "x": 334.404564, - "y": 31.508502 - } - } - }, - { - "id": "186819f7-e0ed-555c-bf1c-95d90a2326f3", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.404564, - "y": 31.508502 - }, - "endPoint": { - "x": 334.428953, - "y": 31.438563 - } - } - }, - { - "id": "331335be-05bd-5e6d-9e55-2336cba6f358", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.428953, - "y": 31.438563 - }, - "endPoint": { - "x": 334.453282, - "y": 31.368602 - } - } - }, - { - "id": "0f5bc521-6c49-54f3-9aad-492db08eab91", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.453282, - "y": 31.368602 - }, - "endPoint": { - "x": 334.477554, - "y": 31.298622 - } - } - }, - { - "id": "ba915773-cd74-5e76-a57a-fc773f48473f", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.477554, - "y": 31.298622 - }, - "endPoint": { - "x": 334.486965, - "y": 31.271356 - } - } - }, - { - "id": "fb4e6735-3cfe-5d29-bbe8-44375f26b74c", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.486965, - "y": 31.271356 - }, - "endPoint": { - "x": 334.496318, - "y": 31.244069 - } - } - }, - { - "id": "0757b25c-694e-5be4-8b71-af9c119acb79", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.496318, - "y": 31.244069 - }, - "endPoint": { - "x": 334.505612, - "y": 31.216763 - } - } - }, - { - "id": "31a91170-8d3d-571f-a5eb-e916893b445d", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.505612, - "y": 31.216763 - }, - "endPoint": { - "x": 334.514848, - "y": 31.189437 - } - } - }, - { - "id": "fbe2f6c2-65b5-5371-8188-23d782a2b63e", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.514848, - "y": 31.189437 - }, - "endPoint": { - "x": 334.538604, - "y": 31.117982 - } - } - }, - { - "id": "d01240ec-7ed4-557e-8183-b667bbb42683", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.538604, - "y": 31.117982 - }, - "endPoint": { - "x": 334.561803, - "y": 31.046347 - } - } - }, - { - "id": "a7aed7b0-0fc6-5ee4-b33a-1fc01ded521a", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.561803, - "y": 31.046347 - }, - "endPoint": { - "x": 334.584444, - "y": 30.974533 - } - } - }, - { - "id": "41c79fab-eef3-5279-a70d-117cbf33e3e3", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.584444, - "y": 30.974533 - }, - "endPoint": { - "x": 334.606525, - "y": 30.902543 - } - } - }, - { - "id": "70eb100a-2f47-5622-8066-0f8f3d6ffcd7", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.606525, - "y": 30.902543 - }, - "endPoint": { - "x": 334.623787, - "y": 30.844464 - } - } - }, - { - "id": "5b1ebf99-9cea-5709-9336-7e5552f74335", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.623787, - "y": 30.844464 - }, - "endPoint": { - "x": 334.640486, - "y": 30.786222 - } - } - }, - { - "id": "dccc0c93-417c-5c71-a9aa-8fa6494a3967", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.640486, - "y": 30.786222 - }, - "endPoint": { - "x": 334.65662, - "y": 30.727821 - } - } - }, - { - "id": "e9636a38-0cfd-5fb1-b4e8-c1d574f90c1d", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.65662, - "y": 30.727821 - }, - "endPoint": { - "x": 334.672189, - "y": 30.669265 - } - } - }, - { - "id": "03348ae7-cc16-5de8-a150-2513bfd8ed65", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.672189, - "y": 30.669265 - }, - "endPoint": { - "x": 334.682543, - "y": 30.629529 - } - } - }, - { - "id": "627854d6-7202-516b-b6ee-bc53a9178e08", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.682543, - "y": 30.629529 - }, - "endPoint": { - "x": 334.692886, - "y": 30.589791 - } - } - }, - { - "id": "45cc8562-9f8f-5656-b16d-75abce574f14", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.692886, - "y": 30.589791 - }, - "endPoint": { - "x": 334.703217, - "y": 30.55005 - } - } - }, - { - "id": "d376252f-4a07-5005-8990-237c3963441b", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.703217, - "y": 30.55005 - }, - "endPoint": { - "x": 334.713537, - "y": 30.510306 - } - } - }, - { - "id": "1d40030f-30b7-5b6f-9118-d0163a353b04", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.713537, - "y": 30.510306 - }, - "endPoint": { - "x": 334.727497, - "y": 30.456538 - } - } - }, - { - "id": "727629e7-1a27-5f29-b441-211fa9f3a5e2", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.727497, - "y": 30.456538 - }, - "endPoint": { - "x": 334.741468, - "y": 30.402773 - } - } - }, - { - "id": "a3a94dab-08b7-5055-8e22-0547f9bc08c5", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.741468, - "y": 30.402773 - }, - "endPoint": { - "x": 334.755449, - "y": 30.349011 - } - } - }, - { - "id": "1d176e27-6f2d-505e-9bef-268f04b32881", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.755449, - "y": 30.349011 - }, - "endPoint": { - "x": 334.769443, - "y": 30.295252 - } - } - }, - { - "id": "bd2d8de0-92f2-565a-942b-10b275909ef2", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.769443, - "y": 30.295252 - }, - "endPoint": { - "x": 334.795198, - "y": 30.196472 - } - } - }, - { - "id": "941ac2db-abc2-59c6-9b98-965f727751f4", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.795198, - "y": 30.196472 - }, - "endPoint": { - "x": 334.821014, - "y": 30.097707 - } - } - }, - { - "id": "7e8ea241-ac60-50c3-b2e9-f2275f16650d", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.821014, - "y": 30.097707 - }, - "endPoint": { - "x": 334.846892, - "y": 29.998958 - } - } - }, - { - "id": "38e4cb23-8af0-5492-80fc-2e92399930b8", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.846892, - "y": 29.998958 - }, - "endPoint": { - "x": 334.87283, - "y": 29.900226 - } - } - }, - { - "id": "aa14c533-93be-584e-886a-f35221516da9", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.87283, - "y": 29.900226 - }, - "endPoint": { - "x": 334.881732, - "y": 29.866229 - } - } - }, - { - "id": "44a584db-4266-51d2-b7ce-143e69420f7c", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.881732, - "y": 29.866229 - }, - "endPoint": { - "x": 334.890556, - "y": 29.832213 - } - } - }, - { - "id": "c8d4bd36-4338-5936-a3ba-45d78774e75c", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.890556, - "y": 29.832213 - }, - "endPoint": { - "x": 334.899303, - "y": 29.798177 - } - } - }, - { - "id": "1d619d4d-05e3-571d-b6ee-29b556050c58", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.899303, - "y": 29.798177 - }, - "endPoint": { - "x": 334.907973, - "y": 29.764121 - } - } - }, - { - "id": "07879e58-a08e-5663-b2fa-cf912f7bb240", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.907973, - "y": 29.764121 - }, - "endPoint": { - "x": 334.927728, - "y": 29.670643 - } - } - }, - { - "id": "b44b806a-6184-5015-b082-ce270f9693de", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.927728, - "y": 29.670643 - }, - "endPoint": { - "x": 334.9474, - "y": 29.577148 - } - } - }, - { - "id": "2ec9bb40-f60a-50ec-b0b8-08a2543f77e6", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.9474, - "y": 29.577148 - }, - "endPoint": { - "x": 334.96699, - "y": 29.483635 - } - } - }, - { - "id": "27481809-9f47-58e1-8df2-3739ae9639c2", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.96699, - "y": 29.483635 - }, - "endPoint": { - "x": 334.986497, - "y": 29.390105 - } - } - }, - { - "id": "62f17e2a-d0a7-5957-9b4c-7e2ec2f06a75", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.986497, - "y": 29.390105 - }, - "endPoint": { - "x": 335.003853, - "y": 29.306454 - } - } - }, - { - "id": "ce2c1149-b274-5e63-8326-d3132fd4e3a5", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.003853, - "y": 29.306454 - }, - "endPoint": { - "x": 335.021108, - "y": 29.222783 - } - } - }, - { - "id": "5279682a-13d0-5865-974e-7fad3102d69f", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.021108, - "y": 29.222783 - }, - "endPoint": { - "x": 335.03826, - "y": 29.13909 - } - } - }, - { - "id": "23beeecc-2e02-5721-b55a-d646e8f6ff56", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.03826, - "y": 29.13909 - }, - "endPoint": { - "x": 335.055312, - "y": 29.055377 - } - } - }, - { - "id": "483dbc21-03c7-539d-984c-9180c65b9ca1", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.055312, - "y": 29.055377 - }, - "endPoint": { - "x": 335.064463, - "y": 29.010049 - } - } - }, - { - "id": "935056c3-d193-5df6-b95e-4f8d9e999e60", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.064463, - "y": 29.010049 - }, - "endPoint": { - "x": 335.073513, - "y": 28.9647 - } - } - }, - { - "id": "4a47e9c6-3a56-554f-8041-bf14d0299c20", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.073513, - "y": 28.9647 - }, - "endPoint": { - "x": 335.082462, - "y": 28.919332 - } - } - }, - { - "id": "43a05632-f116-553c-bca9-f8c98a9be922", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.082462, - "y": 28.919332 - }, - "endPoint": { - "x": 335.091308, - "y": 28.873943 - } - } - }, - { - "id": "9ac0fb6e-760d-5761-845c-931d5999ca85", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.091308, - "y": 28.873943 - }, - "endPoint": { - "x": 335.100002, - "y": 28.827782 - } - } - }, - { - "id": "e216269a-9b33-5910-90f1-720029d96af7", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.100002, - "y": 28.827782 - }, - "endPoint": { - "x": 335.108214, - "y": 28.781535 - } - } - }, - { - "id": "fc34abfd-a2ed-55b5-aed0-3e2008155d55", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.108214, - "y": 28.781535 - }, - "endPoint": { - "x": 335.115943, - "y": 28.735205 - } - } - }, - { - "id": "b3a1d7a4-1b69-5ef4-bf70-e80b7a6f93da", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.115943, - "y": 28.735205 - }, - "endPoint": { - "x": 335.123189, - "y": 28.688795 - } - } - }, - { - "id": "8e9f141e-beff-599c-9418-0844bd5ad966", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.123189, - "y": 28.688795 - }, - "endPoint": { - "x": 335.132765, - "y": 28.623652 - } - } - }, - { - "id": "6f9d4cde-3d45-544b-81fa-844e62b6ca67", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.132765, - "y": 28.623652 - }, - "endPoint": { - "x": 335.141855, - "y": 28.55844 - } - } - }, - { - "id": "bcbb622d-450a-540c-a636-627a7a46ee31", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.141855, - "y": 28.55844 - }, - "endPoint": { - "x": 335.15046, - "y": 28.493162 - } - } - }, - { - "id": "204e9ae8-18fc-548d-8ec0-15a73e850dc4", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.15046, - "y": 28.493162 - }, - "endPoint": { - "x": 335.15858, - "y": 28.427822 - } - } - }, - { - "id": "75916b16-661c-5ba8-92d9-b82a9e20401e", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.15858, - "y": 28.427822 - }, - "endPoint": { - "x": 335.164211, - "y": 28.380338 - } - } - }, - { - "id": "58307025-1abd-580f-bd79-99913f0b1be9", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.164211, - "y": 28.380338 - }, - "endPoint": { - "x": 335.169664, - "y": 28.332833 - } - } - }, - { - "id": "2be17589-e4eb-5899-a61d-950784f2db56", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.169664, - "y": 28.332833 - }, - "endPoint": { - "x": 335.17494, - "y": 28.285308 - } - } - }, - { - "id": "a9445b14-80dd-5dac-838c-4b668a6162d9", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.17494, - "y": 28.285308 - }, - "endPoint": { - "x": 335.180037, - "y": 28.237764 - } - } - }, - { - "id": "8e65d19b-e223-5f08-9618-909cfa7289a7", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.180037, - "y": 28.237764 - }, - "endPoint": { - "x": 335.186168, - "y": 28.178708 - } - } - }, - { - "id": "a39f98bf-2101-5ecc-aff6-bab345384342", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.186168, - "y": 28.178708 - }, - "endPoint": { - "x": 335.19212, - "y": 28.119635 - } - } - }, - { - "id": "5bf2acde-4768-53cb-8477-c0aea88beadc", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.19212, - "y": 28.119635 - }, - "endPoint": { - "x": 335.197894, - "y": 28.060544 - } - } - }, - { - "id": "6fd3549e-4c8b-54ab-ad9d-a9a3e9d288c4", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.197894, - "y": 28.060544 - }, - "endPoint": { - "x": 335.20349, - "y": 28.001435 - } - } - }, - { - "id": "507f2ef1-cbec-5ebe-85b7-7b28f2976cbf", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.20349, - "y": 28.001435 - }, - "endPoint": { - "x": 335.208543, - "y": 27.946079 - } - } - }, - { - "id": "e638e362-72a8-59ab-b522-730d1bf21f63", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.208543, - "y": 27.946079 - }, - "endPoint": { - "x": 335.213392, - "y": 27.890705 - } - } - }, - { - "id": "9e9f7bb3-97b8-5e14-a0ad-ed0488b5d4e8", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.213392, - "y": 27.890705 - }, - "endPoint": { - "x": 335.218037, - "y": 27.835313 - } - } - }, - { - "id": "514f0acd-8f33-5f81-9f9e-d08c88180251", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.218037, - "y": 27.835313 - }, - "endPoint": { - "x": 335.222477, - "y": 27.779905 - } - } - }, - { - "id": "6b374716-2ec3-5b40-bb53-aaf195b7801a", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.222477, - "y": 27.779905 - }, - "endPoint": { - "x": 335.227407, - "y": 27.715619 - } - } - }, - { - "id": "e6820bf4-f6f4-556e-9c5d-7f3bc0747e99", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.227407, - "y": 27.715619 - }, - "endPoint": { - "x": 335.232131, - "y": 27.651319 - } - } - }, - { - "id": "885e4187-8145-5458-bf2b-b94d14dd8eb4", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.232131, - "y": 27.651319 - }, - "endPoint": { - "x": 335.236651, - "y": 27.587004 - } - } - }, - { - "id": "782d5581-bb4e-5aae-836d-c627d3228a80", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.236651, - "y": 27.587004 - }, - "endPoint": { - "x": 335.240967, - "y": 27.522674 - } - } - }, - { - "id": "92b48de8-bcce-548f-b13b-22b9375c8b3c", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.240967, - "y": 27.522674 - }, - "endPoint": { - "x": 335.243375, - "y": 27.48316 - } - } - }, - { - "id": "5c6bb2c9-a2e6-5c39-89c7-a60c4f670dfd", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.243375, - "y": 27.48316 - }, - "endPoint": { - "x": 335.245426, - "y": 27.443627 - } - } - }, - { - "id": "cd43ec2e-a50c-5ad3-9aaa-53b1fff2de1d", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.245426, - "y": 27.443627 - }, - "endPoint": { - "x": 335.247119, - "y": 27.404078 - } - } - }, - { - "id": "e51b6e5a-330b-5c3a-b6a4-f31b23b1a404", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.247119, - "y": 27.404078 - }, - "endPoint": { - "x": 335.248454, - "y": 27.364513 - } - } - }, - { - "id": "d11edd66-4972-5e52-b087-218e475a7584", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.248454, - "y": 27.364513 - }, - "endPoint": { - "x": 335.248978, - "y": 27.340474 - } - } - }, - { - "id": "9d805c1a-ccb9-5048-8f60-e1b2ab402816", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.248978, - "y": 27.340474 - }, - "endPoint": { - "x": 335.249143, - "y": 27.316432 - } - } - }, - { - "id": "014339e0-93e5-5d29-9a47-f43a98f0f41a", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.249143, - "y": 27.316432 - }, - "endPoint": { - "x": 335.24895, - "y": 27.29239 - } - } - }, - { - "id": "8e174cd1-cf00-5ec0-aa7a-deab960acfbd", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.24895, - "y": 27.29239 - }, - "endPoint": { - "x": 335.2484, - "y": 27.268352 - } - } - }, - { - "id": "f27e8ede-0699-5c95-b192-6155453c4280", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.2484, - "y": 27.268352 - }, - "endPoint": { - "x": 335.247865, - "y": 27.25531 - } - } - }, - { - "id": "6b76f61a-53ae-52d7-952c-d6fb1ee5fbd0", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.247865, - "y": 27.25531 - }, - "endPoint": { - "x": 335.247055, - "y": 27.242284 - } - } - }, - { - "id": "dc37ba99-9fb9-542a-9693-e0d9d0166587", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.247055, - "y": 27.242284 - }, - "endPoint": { - "x": 335.245969, - "y": 27.229277 - } - } - }, - { - "id": "0a96feab-b270-555c-a7b5-3af06f50ba72", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.245969, - "y": 27.229277 - }, - "endPoint": { - "x": 335.244607, - "y": 27.216296 - } - } - }, - { - "id": "a2de09ec-482f-5c23-b887-3ef8b41ff647", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.244607, - "y": 27.216296 - }, - "endPoint": { - "x": 335.24264, - "y": 27.201481 - } - } - }, - { - "id": "952c6ea5-5e8f-5e27-b1b9-c062e267e51b", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.24264, - "y": 27.201481 - }, - "endPoint": { - "x": 335.240173, - "y": 27.186746 - } - } - }, - { - "id": "8603b57a-cd4b-517b-b8c0-06c455d0f533", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.240173, - "y": 27.186746 - }, - "endPoint": { - "x": 335.237209, - "y": 27.172103 - } - } - }, - { - "id": "c5792fb1-abfe-5b14-9722-161c4c2d70ca", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.237209, - "y": 27.172103 - }, - "endPoint": { - "x": 335.23375, - "y": 27.157564 - } - } - }, - { - "id": "b43de9f8-9b70-52f7-9e67-a593fd550b61", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.23375, - "y": 27.157564 - }, - "endPoint": { - "x": 335.231524, - "y": 27.150291 - } - } - }, - { - "id": "ad5e0014-1d17-529c-9af6-e863de53edb6", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.231524, - "y": 27.150291 - }, - "endPoint": { - "x": 335.229271, - "y": 27.143027 - } - } - }, - { - "id": "1d1f434f-667a-51fa-b9b1-a8bc9a89dd3c", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.229271, - "y": 27.143027 - }, - "endPoint": { - "x": 335.226992, - "y": 27.135771 - } - } - }, - { - "id": "832c6ddd-917b-5cf2-97bf-e249e67ab952", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.226992, - "y": 27.135771 - }, - "endPoint": { - "x": 335.224685, - "y": 27.128524 - } - } - }, - { - "id": "35ba35d8-395a-5bf8-bad8-d371dcbfed1f", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.224685, - "y": 27.128524 - }, - "endPoint": { - "x": 335.291801, - "y": 27.130559 - } - } - }, - { - "id": "5625b653-d9aa-52f2-b063-deb7097b8547", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.291801, - "y": 27.130559 - }, - "endPoint": { - "x": 335.358908, - "y": 27.132845 - } - } - }, - { - "id": "18e19b57-84bd-59ce-b54c-21c136ffaec1", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.358908, - "y": 27.132845 - }, - "endPoint": { - "x": 335.426007, - "y": 27.135382 - } - } - }, - { - "id": "564c555f-b21e-5035-8af4-1140149a1f23", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.426007, - "y": 27.135382 - }, - "endPoint": { - "x": 335.493095, - "y": 27.138171 - } - } - }, - { - "id": "4156743e-9bdb-5e8f-ab45-a9bed7118ee3", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.493095, - "y": 27.138171 - }, - "endPoint": { - "x": 335.516753, - "y": 27.139325 - } - } - }, - { - "id": "b411422a-34b7-54cb-8823-a6ebb64b15e2", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.516753, - "y": 27.139325 - }, - "endPoint": { - "x": 335.540395, - "y": 27.140733 - } - } - }, - { - "id": "c2289fed-4d30-5c8f-9412-9d8b65a1b11d", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.540395, - "y": 27.140733 - }, - "endPoint": { - "x": 335.564022, - "y": 27.142394 - } - } - }, - { - "id": "27673b94-648c-5f8b-850e-18b7ce44bae1", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.564022, - "y": 27.142394 - }, - "endPoint": { - "x": 335.58763, - "y": 27.144308 - } - } - }, - { - "id": "1da43d45-4442-5190-9381-eb1ce3f00166", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.58763, - "y": 27.144308 - }, - "endPoint": { - "x": 335.758365, - "y": 27.159141 - } - } - }, - { - "id": "370ba2cd-5df4-575f-a1bb-38cc7a148c7e", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.758365, - "y": 27.159141 - }, - "endPoint": { - "x": 335.929087, - "y": 27.174118 - } - } - }, - { - "id": "7a3e64a1-469e-58cf-947f-fb753805c812", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.929087, - "y": 27.174118 - }, - "endPoint": { - "x": 336.099796, - "y": 27.18924 - } - } - }, - { - "id": "7b052946-5e6c-5e62-872f-1d81ec03a871", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.099796, - "y": 27.18924 - }, - "endPoint": { - "x": 336.270493, - "y": 27.204505 - } - } - }, - { - "id": "139f3f31-7bbc-5702-a910-424a0e522754", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.270493, - "y": 27.204505 - }, - "endPoint": { - "x": 336.287607, - "y": 27.206116 - } - } - }, - { - "id": "880a099e-2222-5f0e-8888-e72cbc5d8bdd", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.287607, - "y": 27.206116 - }, - "endPoint": { - "x": 336.304706, - "y": 27.20787 - } - } - }, - { - "id": "6431bf5e-c0f6-53e0-9ffe-52a6513181aa", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.304706, - "y": 27.20787 - }, - "endPoint": { - "x": 336.32179, - "y": 27.209769 - } - } - }, - { - "id": "38f2d866-eed0-56b7-81ce-55f3b8360bad", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.32179, - "y": 27.209769 - }, - "endPoint": { - "x": 336.338858, - "y": 27.211812 - } - } - }, - { - "id": "791af0f5-1342-5fd6-9a9f-cebb12102441", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.338858, - "y": 27.211812 - }, - "endPoint": { - "x": 336.397517, - "y": 27.219115 - } - } - }, - { - "id": "914f1e20-4224-5925-a39d-c3433c2de019", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.397517, - "y": 27.219115 - }, - "endPoint": { - "x": 336.456168, - "y": 27.226484 - } - } - }, - { - "id": "91f3b2d8-a8c2-5419-bce9-c537137d7328", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.456168, - "y": 27.226484 - }, - "endPoint": { - "x": 336.514811, - "y": 27.233918 - } - } - }, - { - "id": "e48c29d4-e49d-58b1-aafb-014740b368e4", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.514811, - "y": 27.233918 - }, - "endPoint": { - "x": 336.573445, - "y": 27.241417 - } - } - }, - { - "id": "51f75770-d311-5c67-9f86-d3cd095b58d7", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.573445, - "y": 27.241417 - }, - "endPoint": { - "x": 336.662518, - "y": 27.252893 - } - } - }, - { - "id": "07df9e4a-772f-5caf-b64a-a3f0e57673b6", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.662518, - "y": 27.252893 - }, - "endPoint": { - "x": 336.751582, - "y": 27.264434 - } - } - }, - { - "id": "c3af95d8-d5d9-5f20-a506-54e6a0ca3001", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.751582, - "y": 27.264434 - }, - "endPoint": { - "x": 336.840637, - "y": 27.276039 - } - } - }, - { - "id": "421b86cd-7fa5-5f66-8c28-48e15ff861fb", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.840637, - "y": 27.276039 - }, - "endPoint": { - "x": 336.929684, - "y": 27.28771 - } - } - }, - { - "id": "ebddc778-bd43-5926-b43f-11d968483d3a", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.929684, - "y": 27.28771 - }, - "endPoint": { - "x": 336.981109, - "y": 27.294501 - } - } - }, - { - "id": "3b0c2c0c-b6d6-5c55-a2ab-92c927f31b3e", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.981109, - "y": 27.294501 - }, - "endPoint": { - "x": 337.032525, - "y": 27.301353 - } - } - }, - { - "id": "481996b8-5b74-5652-afa5-adb4d298a6bf", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.032525, - "y": 27.301353 - }, - "endPoint": { - "x": 337.083932, - "y": 27.308266 - } - } - }, - { - "id": "793839c0-1f38-5188-8463-05ebefe3e8ad", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.083932, - "y": 27.308266 - }, - "endPoint": { - "x": 337.135332, - "y": 27.315241 - } - } - }, - { - "id": "5d791bd9-879c-52f6-9ff7-d7285f972e11", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.135332, - "y": 27.315241 - }, - "endPoint": { - "x": 337.223191, - "y": 27.327249 - } - } - }, - { - "id": "55aa38e6-9cb6-57cc-aa8a-007aceec7dae", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.223191, - "y": 27.327249 - }, - "endPoint": { - "x": 337.311042, - "y": 27.339318 - } - } - }, - { - "id": "736414d7-93bd-5d95-b5ac-35de6edba4fb", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.311042, - "y": 27.339318 - }, - "endPoint": { - "x": 337.398885, - "y": 27.351448 - } - } - }, - { - "id": "6b6c2eef-31ce-5885-b9a4-717556b0caf1", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.398885, - "y": 27.351448 - }, - "endPoint": { - "x": 337.486719, - "y": 27.363641 - } - } - }, - { - "id": "5be12492-e47a-5188-a07c-536d371625f8", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.486719, - "y": 27.363641 - }, - "endPoint": { - "x": 337.523005, - "y": 27.368984 - } - } - }, - { - "id": "a4f79612-f0f5-5933-a47d-9bd74a156afb", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.523005, - "y": 27.368984 - }, - "endPoint": { - "x": 337.559199, - "y": 27.374901 - } - } - }, - { - "id": "e29161a6-950f-5113-9cfc-f21e2e89bced", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.559199, - "y": 27.374901 - }, - "endPoint": { - "x": 337.595296, - "y": 27.381391 - } - } - }, - { - "id": "db0eb653-3e62-565c-b8c6-cacb88794691", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.595296, - "y": 27.381391 - }, - "endPoint": { - "x": 337.631287, - "y": 27.388452 - } - } - }, - { - "id": "013e472a-0bef-5e3f-adeb-81eec9f6d5b7", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.631287, - "y": 27.388452 - }, - "endPoint": { - "x": 337.688184, - "y": 27.400381 - } - } - }, - { - "id": "d559c5a8-32b7-53e0-8149-613057bdb6fb", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.688184, - "y": 27.400381 - }, - "endPoint": { - "x": 337.744957, - "y": 27.412878 - } - } - }, - { - "id": "1e78ac92-ff47-5b1c-a986-67e170f7c01b", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.744957, - "y": 27.412878 - }, - "endPoint": { - "x": 337.801603, - "y": 27.425941 - } - } - }, - { - "id": "7e64cf93-2585-5281-8535-c57a97e85b18", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.801603, - "y": 27.425941 - }, - "endPoint": { - "x": 337.858117, - "y": 27.439571 - } - } - }, - { - "id": "7d2b5cef-9171-5759-bb26-aacb6daaf505", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.858117, - "y": 27.439571 - }, - "endPoint": { - "x": 337.887976, - "y": 27.447814 - } - } - }, - { - "id": "374d48b4-dd37-51e8-8f0f-1950fd0686b7", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.887976, - "y": 27.447814 - }, - "endPoint": { - "x": 337.917311, - "y": 27.457692 - } - } - }, - { - "id": "f8b2d686-2f5a-59ca-8532-a783204fca0a", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.917311, - "y": 27.457692 - }, - "endPoint": { - "x": 337.946053, - "y": 27.469179 - } - } - }, - { - "id": "15c7f8b4-1f4f-5946-8178-29b89e8265c9", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.946053, - "y": 27.469179 - }, - "endPoint": { - "x": 337.974136, - "y": 27.482251 - } - } - }, - { - "id": "e32e7707-eebd-5b12-8090-39a0ab2c708a", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.974136, - "y": 27.482251 - }, - "endPoint": { - "x": 337.993021, - "y": 27.492651 - } - } - }, - { - "id": "a3986039-4661-5b67-a339-6df27ad6a4f5", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.993021, - "y": 27.492651 - }, - "endPoint": { - "x": 338.010985, - "y": 27.504508 - } - } - }, - { - "id": "fa76e80c-6543-57ec-b065-93d18ad721e3", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.010985, - "y": 27.504508 - }, - "endPoint": { - "x": 338.027945, - "y": 27.517763 - } - } - }, - { - "id": "d781f18c-d8f8-5d4d-86c3-775b1763be58", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.027945, - "y": 27.517763 - }, - "endPoint": { - "x": 338.043816, - "y": 27.532353 - } - } - }, - { - "id": "9625b0c4-3ac9-5a0c-b2af-a18040be416b", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.043816, - "y": 27.532353 - }, - "endPoint": { - "x": 338.058419, - "y": 27.54846 - } - } - }, - { - "id": "4fccc98f-fc94-5a18-9964-70cc5d11f35b", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.058419, - "y": 27.54846 - }, - "endPoint": { - "x": 338.071278, - "y": 27.565921 - } - } - }, - { - "id": "aad840bf-448c-5085-8c78-3d038fbdd2ea", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.071278, - "y": 27.565921 - }, - "endPoint": { - "x": 338.082302, - "y": 27.584595 - } - } - }, - { - "id": "cb2972e5-9162-564f-ad01-0c1d3edd57db", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.082302, - "y": 27.584595 - }, - "endPoint": { - "x": 338.091396, - "y": 27.604342 - } - } - }, - { - "id": "4d81a94d-0259-5369-b94e-ecaf745cc997", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.091396, - "y": 27.604342 - }, - "endPoint": { - "x": 338.099592, - "y": 27.627787 - } - } - }, - { - "id": "1056c6f8-b05b-5f57-a7a8-ee81d6e6afe7", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.099592, - "y": 27.627787 - }, - "endPoint": { - "x": 338.105667, - "y": 27.651818 - } - } - }, - { - "id": "281bbd48-ac5e-5228-9773-13c1f46f208e", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.105667, - "y": 27.651818 - }, - "endPoint": { - "x": 338.109592, - "y": 27.676292 - } - } - }, - { - "id": "169daad6-5445-5d66-a872-1cd75b02923f", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.109592, - "y": 27.676292 - }, - "endPoint": { - "x": 338.111337, - "y": 27.701066 - } - } - }, - { - "id": "ffce8c8d-31d8-51d4-a4c7-5b2e2f698e42", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.111337, - "y": 27.701066 - }, - "endPoint": { - "x": 338.111953, - "y": 27.728187 - } - } - }, - { - "id": "e12dea4f-1fed-5bed-bfdd-52c1dd460a49", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.111953, - "y": 27.728187 - }, - "endPoint": { - "x": 338.112392, - "y": 27.755311 - } - } - }, - { - "id": "05f915d1-8214-5573-a776-6310d7e7d92c", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.112392, - "y": 27.755311 - }, - "endPoint": { - "x": 338.112656, - "y": 27.782437 - } - } - }, - { - "id": "f6742f83-7789-5f5f-a13e-53909344d87e", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.112656, - "y": 27.782437 - }, - "endPoint": { - "x": 338.112744, - "y": 27.809565 - } - } - }, - { - "id": "1da24ec7-f149-57a1-b8e6-4c0d39de37cc", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.112744, - "y": 27.809565 - }, - "endPoint": { - "x": 338.112656, - "y": 27.826737 - } - } - }, - { - "id": "6cc90345-2fee-54ee-b516-6282a04ed393", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.112656, - "y": 27.826737 - }, - "endPoint": { - "x": 338.112392, - "y": 27.843908 - } - } - }, - { - "id": "0a002a11-0936-5a45-9ad4-59dfa3de9fee", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.112392, - "y": 27.843908 - }, - "endPoint": { - "x": 338.111953, - "y": 27.861075 - } - } - }, - { - "id": "56413f19-c501-5dcc-8776-1afd7fc141ca", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.111953, - "y": 27.861075 - }, - "endPoint": { - "x": 338.111337, - "y": 27.878237 - } - } - }, - { - "id": "6a6e90b7-7a78-5086-9c6e-e96dcd0fa037", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.111337, - "y": 27.878237 - }, - "endPoint": { - "x": 338.108443, - "y": 27.946757 - } - } - }, - { - "id": "2a6b4016-d343-53e3-934e-405c46d21431", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.108443, - "y": 27.946757 - }, - "endPoint": { - "x": 338.105379, - "y": 28.01527 - } - } - }, - { - "id": "a1becb69-124c-5c80-8c7f-5d7938e71be6", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.105379, - "y": 28.01527 - }, - "endPoint": { - "x": 338.102145, - "y": 28.083775 - } - } - }, - { - "id": "17d5e8d1-eb84-53bf-8047-4f804a7a19ae", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.102145, - "y": 28.083775 - }, - "endPoint": { - "x": 338.098741, - "y": 28.152272 - } - } - }, - { - "id": "6846d779-1037-524b-b908-8f8544775eb3", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.098741, - "y": 28.152272 - }, - "endPoint": { - "x": 338.095867, - "y": 28.207007 - } - } - }, - { - "id": "6f301c4e-9d27-5ae3-a609-7867dbe865a8", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.095867, - "y": 28.207007 - }, - "endPoint": { - "x": 338.092824, - "y": 28.261733 - } - } - }, - { - "id": "cfbeb1b9-ea14-5036-9ee1-57119928fb1d", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.092824, - "y": 28.261733 - }, - "endPoint": { - "x": 338.089611, - "y": 28.31645 - } - } - }, - { - "id": "914d4ad6-7f0f-5451-8e54-03482774c363", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.089611, - "y": 28.31645 - }, - "endPoint": { - "x": 338.086227, - "y": 28.371156 - } - } - }, - { - "id": "79ab5f59-a4aa-5f06-9ec6-c337925ba2c0", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.086227, - "y": 28.371156 - }, - "endPoint": { - "x": 338.081565, - "y": 28.4419 - } - } - }, - { - "id": "4103176e-d5e8-5010-856f-6768158576ca", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.081565, - "y": 28.4419 - }, - "endPoint": { - "x": 338.076551, - "y": 28.51262 - } - } - }, - { - "id": "b564bff6-995c-5e8c-b472-59288cbe6dcf", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.076551, - "y": 28.51262 - }, - "endPoint": { - "x": 338.071185, - "y": 28.583313 - } - } - }, - { - "id": "519d9b98-de22-5151-ab9b-6081cd530d9f", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.071185, - "y": 28.583313 - }, - "endPoint": { - "x": 338.065467, - "y": 28.65398 - } - } - }, - { - "id": "4ee11fc6-c040-5eca-b5fd-27166138c63f", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.065467, - "y": 28.65398 - }, - "endPoint": { - "x": 338.060628, - "y": 28.709866 - } - } - }, - { - "id": "0a5eea00-6da2-53b0-a9f2-2ba40583c726", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.060628, - "y": 28.709866 - }, - "endPoint": { - "x": 338.055438, - "y": 28.76572 - } - } - }, - { - "id": "58b194a3-7c30-5ffd-89e8-ecd589383ae7", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.055438, - "y": 28.76572 - }, - "endPoint": { - "x": 338.049896, - "y": 28.821541 - } - } - }, - { - "id": "a019feba-2700-56b6-91d0-ab6c6023439b", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.049896, - "y": 28.821541 - }, - "endPoint": { - "x": 338.044003, - "y": 28.877326 - } - } - }, - { - "id": "5e6675b8-2989-5b41-8d25-17185a1ce7e9", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.044003, - "y": 28.877326 - }, - "endPoint": { - "x": 338.0379, - "y": 28.930091 - } - } - }, - { - "id": "c0e74e4d-675e-50fc-8a1a-78c81e32d0a4", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.0379, - "y": 28.930091 - }, - "endPoint": { - "x": 338.031083, - "y": 28.982765 - } - } - }, - { - "id": "5a93145e-5559-58fe-9a3f-87c065069d01", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.031083, - "y": 28.982765 - }, - "endPoint": { - "x": 338.023554, - "y": 29.035343 - } - } - }, - { - "id": "4356ac61-697b-50c2-b797-1da383c5da6b", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.023554, - "y": 29.035343 - }, - "endPoint": { - "x": 338.015313, - "y": 29.087817 - } - } - }, - { - "id": "8bcb9e53-614d-5dbd-b119-46b14906cbb5", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.015313, - "y": 29.087817 - }, - "endPoint": { - "x": 338.00245, - "y": 29.164027 - } - } - }, - { - "id": "96b03f76-32d4-5d09-b810-82e32ef0c436", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 338.00245, - "y": 29.164027 - }, - "endPoint": { - "x": 337.98888, - "y": 29.240113 - } - } - }, - { - "id": "27ebeb3f-42a1-56a2-8931-f18efe566a75", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.98888, - "y": 29.240113 - }, - "endPoint": { - "x": 337.974602, - "y": 29.316069 - } - } - }, - { - "id": "30ca167a-fbb3-5228-af69-3ba5b7693a23", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.974602, - "y": 29.316069 - }, - "endPoint": { - "x": 337.959617, - "y": 29.39189 - } - } - }, - { - "id": "48b844ba-7279-5649-b8e0-112dd288b577", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.959617, - "y": 29.39189 - }, - "endPoint": { - "x": 337.943895, - "y": 29.468049 - } - } - }, - { - "id": "a0c05f57-df53-57ef-af13-349507ce93d1", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.943895, - "y": 29.468049 - }, - "endPoint": { - "x": 337.927591, - "y": 29.544083 - } - } - }, - { - "id": "c1849412-acef-58c3-ab99-c290888de7dc", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.927591, - "y": 29.544083 - }, - "endPoint": { - "x": 337.910706, - "y": 29.619991 - } - } - }, - { - "id": "fca03d97-5f21-51a4-9d76-27f717e41c6e", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.910706, - "y": 29.619991 - }, - "endPoint": { - "x": 337.893241, - "y": 29.695769 - } - } - }, - { - "id": "5ddaf271-a187-5d06-8fce-d7340a5a3280", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.893241, - "y": 29.695769 - }, - "endPoint": { - "x": 337.879047, - "y": 29.754994 - } - } - }, - { - "id": "15f8b61b-1a19-599c-a295-b0926ed0d659", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.879047, - "y": 29.754994 - }, - "endPoint": { - "x": 337.864276, - "y": 29.814077 - } - } - }, - { - "id": "9fd49567-9cc9-57e1-8389-d22f6102fdfb", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.864276, - "y": 29.814077 - }, - "endPoint": { - "x": 337.848929, - "y": 29.873012 - } - } - }, - { - "id": "a675546d-515e-5708-be03-c0dd91657823", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.848929, - "y": 29.873012 - }, - "endPoint": { - "x": 337.833007, - "y": 29.931796 - } - } - }, - { - "id": "62dee263-d00a-5b6e-bea1-ba9a932ed5eb", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.833007, - "y": 29.931796 - }, - "endPoint": { - "x": 337.818205, - "y": 29.984835 - } - } - }, - { - "id": "2ccc0155-ff3d-5337-8ed8-efaac2541409", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.818205, - "y": 29.984835 - }, - "endPoint": { - "x": 337.803108, - "y": 30.03779 - } - } - }, - { - "id": "a709bb51-2a70-54ea-b1a4-a4acadeeba4a", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.803108, - "y": 30.03779 - }, - "endPoint": { - "x": 337.787717, - "y": 30.09066 - } - } - }, - { - "id": "de14d690-d0bb-5fbf-bf91-6728f37d3cf2", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.787717, - "y": 30.09066 - }, - "endPoint": { - "x": 337.772033, - "y": 30.143445 - } - } - }, - { - "id": "cfd4e4d9-aab8-5a1b-a3e6-15ae0c7975ca", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.772033, - "y": 30.143445 - }, - "endPoint": { - "x": 337.737074, - "y": 30.259379 - } - } - }, - { - "id": "e1519331-be77-5435-850c-f173d4e1fd40", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.737074, - "y": 30.259379 - }, - "endPoint": { - "x": 337.701823, - "y": 30.375225 - } - } - }, - { - "id": "42561aaf-a7a3-59f7-bcb0-72818ad27cdc", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.701823, - "y": 30.375225 - }, - "endPoint": { - "x": 337.66628, - "y": 30.490981 - } - } - }, - { - "id": "f1e6f1e1-d8bf-5b67-a704-a5e857c94978", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.66628, - "y": 30.490981 - }, - "endPoint": { - "x": 337.630444, - "y": 30.606648 - } - } - } - ] - }, - { - "id": "b6b55cf5-508e-5d11-ab11-253074da7294", - "type": "PolyLine", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": null, - "children": [ - { - "id": "2792cc6d-65b3-563a-a441-9362ef0a91f8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.247666, - "y": 27.172875 - }, - "endPoint": { - "x": 327.247825, - "y": 27.288779 - } - } - }, - { - "id": "fce42fe7-ce25-5183-8020-10f645f88665", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.247825, - "y": 27.288779 - }, - "endPoint": { - "x": 327.248643, - "y": 27.404679 - } - } - }, - { - "id": "b4d478e9-ff9b-501b-84ff-86fd2c2a3e29", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.248643, - "y": 27.404679 - }, - "endPoint": { - "x": 327.250117, - "y": 27.520573 - } - } - }, - { - "id": "84a37854-69ec-5155-8d06-fee1facdaf42", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.250117, - "y": 27.520573 - }, - "endPoint": { - "x": 327.252248, - "y": 27.636457 - } - } - }, - { - "id": "2fc64134-5900-5c1f-8526-756d4e197230", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.252248, - "y": 27.636457 - }, - "endPoint": { - "x": 327.25385, - "y": 27.696394 - } - } - }, - { - "id": "703b1034-a23a-5669-a37d-d1ea7ee9d134", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.25385, - "y": 27.696394 - }, - "endPoint": { - "x": 327.256108, - "y": 27.756307 - } - } - }, - { - "id": "72e2ece2-32c6-5614-a11e-86d6f828db0a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.256108, - "y": 27.756307 - }, - "endPoint": { - "x": 327.259023, - "y": 27.816192 - } - } - }, - { - "id": "a1cf02af-72ed-59ad-acee-96d1ded5539d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.259023, - "y": 27.816192 - }, - "endPoint": { - "x": 327.262594, - "y": 27.876044 - } - } - }, - { - "id": "3590e9e0-c4e7-5073-9cc1-108c72e302f8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.262594, - "y": 27.876044 - }, - "endPoint": { - "x": 327.274342, - "y": 28.055092 - } - } - }, - { - "id": "08361d86-6dbe-5516-9e9f-2b24df8977df", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.274342, - "y": 28.055092 - }, - "endPoint": { - "x": 327.286246, - "y": 28.23413 - } - } - }, - { - "id": "8dc55639-f528-50bd-81fb-7d8af15dc882", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.286246, - "y": 28.23413 - }, - "endPoint": { - "x": 327.298306, - "y": 28.413157 - } - } - }, - { - "id": "7ae42ddd-a341-5617-bda6-15930dc88012", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.298306, - "y": 28.413157 - }, - "endPoint": { - "x": 327.310523, - "y": 28.592173 - } - } - }, - { - "id": "61e1e011-5f9c-5f08-a33d-827b6d70c608", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.310523, - "y": 28.592173 - }, - "endPoint": { - "x": 327.311408, - "y": 28.603912 - } - } - }, - { - "id": "e966d1ba-ae8d-5eb3-a9ba-775d507d671b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.311408, - "y": 28.603912 - }, - "endPoint": { - "x": 327.312449, - "y": 28.615637 - } - } - }, - { - "id": "0f8c2bf1-53a7-55dd-8a33-344adaeb1182", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.312449, - "y": 28.615637 - }, - "endPoint": { - "x": 327.313646, - "y": 28.627348 - } - } - }, - { - "id": "174a05cd-39a2-50f1-997b-0d8121f757ce", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.313646, - "y": 28.627348 - }, - "endPoint": { - "x": 327.314999, - "y": 28.639042 - } - } - }, - { - "id": "3ba23862-df65-5be1-9c80-686a2fff54bc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.314999, - "y": 28.639042 - }, - "endPoint": { - "x": 327.322603, - "y": 28.699859 - } - } - }, - { - "id": "3971e894-e031-521d-bfd3-98c62d91e497", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.322603, - "y": 28.699859 - }, - "endPoint": { - "x": 327.330512, - "y": 28.760637 - } - } - }, - { - "id": "01169016-8054-52d8-a362-e01cba9a04d0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.330512, - "y": 28.760637 - }, - "endPoint": { - "x": 327.338726, - "y": 28.821375 - } - } - }, - { - "id": "b19009f1-e67c-5d9f-83eb-721f551798eb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.338726, - "y": 28.821375 - }, - "endPoint": { - "x": 327.347245, - "y": 28.882071 - } - } - }, - { - "id": "7af9edb6-bdf5-517e-a324-3255dcc63ade", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.347245, - "y": 28.882071 - }, - "endPoint": { - "x": 327.368662, - "y": 29.030831 - } - } - }, - { - "id": "6d40daa5-4666-55d9-bd49-c6f3035e71a6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.368662, - "y": 29.030831 - }, - "endPoint": { - "x": 327.390383, - "y": 29.179546 - } - } - }, - { - "id": "a728e8b0-42b4-5151-9b3f-cec4a596c2ea", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.390383, - "y": 29.179546 - }, - "endPoint": { - "x": 327.412408, - "y": 29.328217 - } - } - }, - { - "id": "4c092089-68b9-59a9-b68f-864054d78cdb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.412408, - "y": 29.328217 - }, - "endPoint": { - "x": 327.434739, - "y": 29.476842 - } - } - }, - { - "id": "a2537f61-5c6f-5e99-bda9-2da172d95b1d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.434739, - "y": 29.476842 - }, - "endPoint": { - "x": 327.454663, - "y": 29.607659 - } - } - }, - { - "id": "24d98e43-39ec-56fc-a624-bf023fa9238e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.454663, - "y": 29.607659 - }, - "endPoint": { - "x": 327.474848, - "y": 29.738436 - } - } - }, - { - "id": "e2573f78-5364-5bf4-820a-9c69f4c2bc03", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.474848, - "y": 29.738436 - }, - "endPoint": { - "x": 327.495292, - "y": 29.869173 - } - } - }, - { - "id": "15c1e042-900b-5b8a-9394-df4645ce8465", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.495292, - "y": 29.869173 - }, - "endPoint": { - "x": 327.515995, - "y": 29.999869 - } - } - }, - { - "id": "28322b24-6fba-5a9f-ab15-f6015e8e829f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.515995, - "y": 29.999869 - }, - "endPoint": { - "x": 327.52351, - "y": 30.046168 - } - } - }, - { - "id": "9c0c1cd0-7c09-5672-a695-27b69eeb5e8c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.52351, - "y": 30.046168 - }, - "endPoint": { - "x": 327.531283, - "y": 30.092424 - } - } - }, - { - "id": "664cd43d-b134-5d17-b5ab-15f6cd726d28", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.531283, - "y": 30.092424 - }, - "endPoint": { - "x": 327.539316, - "y": 30.138636 - } - } - }, - { - "id": "3308f075-0ad3-55da-8332-b8f886fb90e9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.539316, - "y": 30.138636 - }, - "endPoint": { - "x": 327.547607, - "y": 30.184803 - } - } - }, - { - "id": "8f20a473-0951-5973-9f24-12e477167fd4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.547607, - "y": 30.184803 - }, - "endPoint": { - "x": 327.559051, - "y": 30.244889 - } - } - }, - { - "id": "fee2631d-d0a7-55ff-ab1a-e7b1352f5424", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.559051, - "y": 30.244889 - }, - "endPoint": { - "x": 327.571418, - "y": 30.304788 - } - } - }, - { - "id": "a1a2820a-7642-5574-b4a7-9a9f6a88341f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.571418, - "y": 30.304788 - }, - "endPoint": { - "x": 327.584705, - "y": 30.36449 - } - } - }, - { - "id": "fbbcf129-ad04-5747-9ee9-b3567a6a34c9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.584705, - "y": 30.36449 - }, - "endPoint": { - "x": 327.59891, - "y": 30.423984 - } - } - }, - { - "id": "261085a2-3f10-5370-baf2-0fb358f3801a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.59891, - "y": 30.423984 - }, - "endPoint": { - "x": 327.620276, - "y": 30.508551 - } - } - }, - { - "id": "efaae30f-9849-50c1-84d4-f04aa2fd1c9f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.620276, - "y": 30.508551 - }, - "endPoint": { - "x": 327.642554, - "y": 30.59288 - } - } - }, - { - "id": "b89d24e8-6bd7-5003-92f0-5befb0753d6e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.642554, - "y": 30.59288 - }, - "endPoint": { - "x": 327.66574, - "y": 30.676964 - } - } - }, - { - "id": "59b52e0c-8049-5445-a135-b80b53e86efd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.66574, - "y": 30.676964 - }, - "endPoint": { - "x": 327.689833, - "y": 30.760795 - } - } - }, - { - "id": "53cfffd4-b1d3-5564-ba27-a993b7f67dc6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.689833, - "y": 30.760795 - }, - "endPoint": { - "x": 327.707721, - "y": 30.821502 - } - } - }, - { - "id": "5fb76529-8053-5556-a446-a4dc2ee477b3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.707721, - "y": 30.821502 - }, - "endPoint": { - "x": 327.725767, - "y": 30.882163 - } - } - }, - { - "id": "617a64fe-30d8-54f4-ba0d-88aef86dd961", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.725767, - "y": 30.882163 - }, - "endPoint": { - "x": 327.743971, - "y": 30.942777 - } - } - }, - { - "id": "cfbdd686-5176-5737-86b2-2d31e94fb451", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.743971, - "y": 30.942777 - }, - "endPoint": { - "x": 327.762333, - "y": 31.003343 - } - } - }, - { - "id": "a4358ec9-74b2-5d3d-96a4-0580ca586635", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.762333, - "y": 31.003343 - }, - "endPoint": { - "x": 327.783276, - "y": 31.071819 - } - } - }, - { - "id": "d2f7d1e1-7ad8-5efc-ab27-2c209ce16969", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.783276, - "y": 31.071819 - }, - "endPoint": { - "x": 327.804376, - "y": 31.140247 - } - } - }, - { - "id": "74688ac5-1cc7-5906-9266-bae5af43382b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.804376, - "y": 31.140247 - }, - "endPoint": { - "x": 327.825634, - "y": 31.208626 - } - } - }, - { - "id": "54c1bb76-af57-5b00-86c8-0d1876cb40c2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.825634, - "y": 31.208626 - }, - "endPoint": { - "x": 327.847049, - "y": 31.276957 - } - } - }, - { - "id": "b39f0b5f-09a6-5e10-96a2-e1bd3e178195", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.847049, - "y": 31.276957 - }, - "endPoint": { - "x": 327.872607, - "y": 31.357719 - } - } - }, - { - "id": "1d24535a-7b0a-5829-a213-e95f743840bb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.872607, - "y": 31.357719 - }, - "endPoint": { - "x": 327.898428, - "y": 31.438397 - } - } - }, - { - "id": "5a1b1330-17e5-5ca3-a3a9-cd7dd80d9852", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.898428, - "y": 31.438397 - }, - "endPoint": { - "x": 327.924512, - "y": 31.518991 - } - } - }, - { - "id": "86f78ecf-762d-5a72-a21b-9045c070e05c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.924512, - "y": 31.518991 - }, - "endPoint": { - "x": 327.950859, - "y": 31.5995 - } - } - }, - { - "id": "64bfe4da-5591-51a5-a358-e47bb83db54d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.950859, - "y": 31.5995 - }, - "endPoint": { - "x": 327.971282, - "y": 31.661123 - } - } - }, - { - "id": "9659d2b7-c7fb-5356-8f6a-ee72a6c4bd48", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.971282, - "y": 31.661123 - }, - "endPoint": { - "x": 327.991967, - "y": 31.722658 - } - } - }, - { - "id": "0777799f-ffdb-555f-ba5d-bfbc2155b3a9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.991967, - "y": 31.722658 - }, - "endPoint": { - "x": 328.012914, - "y": 31.784105 - } - } - }, - { - "id": "06293aa9-b8a8-5a20-98a4-aceefc13e674", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.012914, - "y": 31.784105 - }, - "endPoint": { - "x": 328.034122, - "y": 31.845462 - } - } - }, - { - "id": "276536fa-82ef-57e3-b0f2-631066cd4f8c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.034122, - "y": 31.845462 - }, - "endPoint": { - "x": 328.053217, - "y": 31.89921 - } - } - }, - { - "id": "7b16de8b-9075-5f68-a4ad-5ce93533c0f6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.053217, - "y": 31.89921 - }, - "endPoint": { - "x": 328.073002, - "y": 31.952706 - } - } - }, - { - "id": "cfdd4a85-0a8b-5dcb-967e-fea1e1c404c6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.073002, - "y": 31.952706 - }, - "endPoint": { - "x": 328.093474, - "y": 32.005943 - } - } - }, - { - "id": "7421cacf-b061-517a-b90a-8d74b9d831c0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.093474, - "y": 32.005943 - }, - "endPoint": { - "x": 328.11463, - "y": 32.058913 - } - } - }, - { - "id": "146cd894-3c7a-5038-83dd-475a3685fcfa", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.11463, - "y": 32.058913 - }, - "endPoint": { - "x": 328.141094, - "y": 32.122981 - } - } - }, - { - "id": "efda5b7c-64a8-5f90-89bc-756a9245e089", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.141094, - "y": 32.122981 - }, - "endPoint": { - "x": 328.168235, - "y": 32.186763 - } - } - }, - { - "id": "b63314f2-67fa-5223-9223-53268ca68026", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.168235, - "y": 32.186763 - }, - "endPoint": { - "x": 328.19605, - "y": 32.250253 - } - } - }, - { - "id": "3762fbff-8b2c-5509-bb73-ea878406f27c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.19605, - "y": 32.250253 - }, - "endPoint": { - "x": 328.224537, - "y": 32.313447 - } - } - }, - { - "id": "bc171217-0dce-57cb-b0f2-75960b45c2d5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.224537, - "y": 32.313447 - }, - "endPoint": { - "x": 328.242505, - "y": 32.352269 - } - } - }, - { - "id": "8ad3f551-7545-58ba-b395-ddd888e62073", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.242505, - "y": 32.352269 - }, - "endPoint": { - "x": 328.260835, - "y": 32.390921 - } - } - }, - { - "id": "6b39162e-4d1c-5174-ab3b-676849af0bb8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.260835, - "y": 32.390921 - }, - "endPoint": { - "x": 328.279526, - "y": 32.429399 - } - } - }, - { - "id": "c3ed8a98-781f-50a0-a42c-c755183d6bff", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.279526, - "y": 32.429399 - }, - "endPoint": { - "x": 328.298576, - "y": 32.467702 - } - } - }, - { - "id": "18c10109-0547-55c3-bb8c-0e7d70ac292b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.298576, - "y": 32.467702 - }, - "endPoint": { - "x": 328.333242, - "y": 32.536151 - } - } - }, - { - "id": "9b964ecd-0566-55f0-b1de-61764e11aa8c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.333242, - "y": 32.536151 - }, - "endPoint": { - "x": 328.368265, - "y": 32.604417 - } - } - }, - { - "id": "8861631d-aadc-581e-bdc8-c75e3a886d28", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.368265, - "y": 32.604417 - }, - "endPoint": { - "x": 328.403642, - "y": 32.6725 - } - } - }, - { - "id": "74564da9-a62c-578c-b8fb-41505318c466", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.403642, - "y": 32.6725 - }, - "endPoint": { - "x": 328.439375, - "y": 32.740398 - } - } - }, - { - "id": "8860b5a3-623d-5263-8498-409d7062d7ac", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.439375, - "y": 32.740398 - }, - "endPoint": { - "x": 328.473817, - "y": 32.804595 - } - } - }, - { - "id": "68dcca53-ec14-53e3-858a-da21b5461096", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.473817, - "y": 32.804595 - }, - "endPoint": { - "x": 328.508948, - "y": 32.868416 - } - } - }, - { - "id": "0be111de-8637-583b-aaf5-f0bf617648b0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.508948, - "y": 32.868416 - }, - "endPoint": { - "x": 328.544764, - "y": 32.931855 - } - } - }, - { - "id": "39774073-094b-5097-9f8c-ca081a47e51b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.544764, - "y": 32.931855 - }, - "endPoint": { - "x": 328.581261, - "y": 32.994906 - } - } - }, - { - "id": "30d6ab35-af30-5c1b-ade8-5e79d9896092", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.581261, - "y": 32.994906 - }, - "endPoint": { - "x": 328.621504, - "y": 33.062796 - } - } - }, - { - "id": "83e23ff6-fe45-5659-a295-e8b92d378df9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.621504, - "y": 33.062796 - }, - "endPoint": { - "x": 328.662418, - "y": 33.130281 - } - } - }, - { - "id": "ada2ea40-e27b-570b-af8c-d2c8511e6509", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.662418, - "y": 33.130281 - }, - "endPoint": { - "x": 328.704001, - "y": 33.197355 - } - } - }, - { - "id": "a4cd7b2b-996c-5c2b-8af6-8fd7bda4d99d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.704001, - "y": 33.197355 - }, - "endPoint": { - "x": 328.746249, - "y": 33.264015 - } - } - }, - { - "id": "a920eb85-7511-5f77-a624-560a026f3fcd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.746249, - "y": 33.264015 - }, - "endPoint": { - "x": 328.774945, - "y": 33.307704 - } - } - }, - { - "id": "f7915f94-944f-5816-9462-0851deb9c8f6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.774945, - "y": 33.307704 - }, - "endPoint": { - "x": 328.804615, - "y": 33.35073 - } - } - }, - { - "id": "09d06d3a-a8b0-56fe-9e11-49762aeb08a4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.804615, - "y": 33.35073 - }, - "endPoint": { - "x": 328.835247, - "y": 33.393075 - } - } - }, - { - "id": "d8ffc8d4-bc21-5ebc-9b51-7927a886c2cb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.835247, - "y": 33.393075 - }, - "endPoint": { - "x": 328.866831, - "y": 33.434724 - } - } - }, - { - "id": "31f8ee22-383e-5f1e-a2cf-03e7927c7aaa", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.866831, - "y": 33.434724 - }, - "endPoint": { - "x": 328.919514, - "y": 33.501632 - } - } - }, - { - "id": "69d594d6-dec3-59fd-8b9c-78b8ca64f957", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.919514, - "y": 33.501632 - }, - "endPoint": { - "x": 328.973116, - "y": 33.567802 - } - } - }, - { - "id": "440381fa-ff0d-5810-a86c-cb71028ef625", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.973116, - "y": 33.567802 - }, - "endPoint": { - "x": 329.027629, - "y": 33.633224 - } - } - }, - { - "id": "07f07b93-6770-54c1-beab-7dc7daac3903", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.027629, - "y": 33.633224 - }, - "endPoint": { - "x": 329.083044, - "y": 33.697888 - } - } - }, - { - "id": "eb2c7090-60c6-5978-80c3-bd999fc2c21c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.083044, - "y": 33.697888 - }, - "endPoint": { - "x": 329.133303, - "y": 33.754207 - } - } - }, - { - "id": "47ab1d96-702d-55af-8b94-4c532a146960", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.133303, - "y": 33.754207 - }, - "endPoint": { - "x": 329.18502, - "y": 33.809173 - } - } - }, - { - "id": "8caf8564-99a8-5564-b9f8-a0212dd1d3e8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.18502, - "y": 33.809173 - }, - "endPoint": { - "x": 329.238165, - "y": 33.862758 - } - } - }, - { - "id": "02b59c81-e844-5da1-a4d9-bc23dcff4709", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.238165, - "y": 33.862758 - }, - "endPoint": { - "x": 329.292712, - "y": 33.914935 - } - } - }, - { - "id": "6a5cbedd-0299-5011-aedb-1623c07b75d5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.292712, - "y": 33.914935 - }, - "endPoint": { - "x": 329.348767, - "y": 33.965799 - } - } - }, - { - "id": "1273f48c-5133-5385-bd93-ce7d172e168a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.348767, - "y": 33.965799 - }, - "endPoint": { - "x": 329.406128, - "y": 34.015164 - } - } - }, - { - "id": "5c877da0-a4d3-52a9-a746-87ba21ffb986", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.406128, - "y": 34.015164 - }, - "endPoint": { - "x": 329.464765, - "y": 34.063007 - } - } - }, - { - "id": "cdefdbed-3b69-59ab-9152-d5de4b5a97de", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.464765, - "y": 34.063007 - }, - "endPoint": { - "x": 329.524649, - "y": 34.109302 - } - } - }, - { - "id": "da9849f9-5386-5649-9e85-9d8e2a404aeb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.524649, - "y": 34.109302 - }, - "endPoint": { - "x": 329.582773, - "y": 34.151668 - } - } - }, - { - "id": "a442ed90-b5d8-5a40-b1d9-15d27e2079e9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.582773, - "y": 34.151668 - }, - "endPoint": { - "x": 329.64214, - "y": 34.192246 - } - } - }, - { - "id": "65177187-4593-59bc-b34d-de2be0d36813", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.64214, - "y": 34.192246 - }, - "endPoint": { - "x": 329.702707, - "y": 34.231011 - } - } - }, - { - "id": "5c59c099-aa7f-515a-acce-71270d070323", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.702707, - "y": 34.231011 - }, - "endPoint": { - "x": 329.764432, - "y": 34.267933 - } - } - }, - { - "id": "bef2eef5-4027-55c1-a3a9-ee0789fe8699", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.764432, - "y": 34.267933 - }, - "endPoint": { - "x": 329.822772, - "y": 34.300385 - } - } - }, - { - "id": "6175a07e-314b-5ade-a110-32e9312698b3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.822772, - "y": 34.300385 - }, - "endPoint": { - "x": 329.882123, - "y": 34.33091 - } - } - }, - { - "id": "77be21b2-de55-506b-9b35-2d113b6331a1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.882123, - "y": 34.33091 - }, - "endPoint": { - "x": 329.942438, - "y": 34.359484 - } - } - }, - { - "id": "af6ba42a-8f3a-5b0e-b7f3-fee733f166d4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.942438, - "y": 34.359484 - }, - "endPoint": { - "x": 330.003668, - "y": 34.386084 - } - } - }, - { - "id": "5e7e013c-f424-5d76-ac67-55eca93c93b5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.003668, - "y": 34.386084 - }, - "endPoint": { - "x": 330.06339, - "y": 34.410251 - } - } - }, - { - "id": "d7829226-fd84-5fa9-bbb6-8934f3b7c621", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.06339, - "y": 34.410251 - }, - "endPoint": { - "x": 330.123531, - "y": 34.433338 - } - } - }, - { - "id": "12bb4c83-8820-573c-8eee-c4ab77ecba84", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.123531, - "y": 34.433338 - }, - "endPoint": { - "x": 330.184079, - "y": 34.45534 - } - } - }, - { - "id": "654ade58-711c-57aa-9885-56f84ef71471", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.184079, - "y": 34.45534 - }, - "endPoint": { - "x": 330.245016, - "y": 34.476251 - } - } - }, - { - "id": "b87bf48e-2390-59bb-a996-99d5b32bc626", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.245016, - "y": 34.476251 - }, - "endPoint": { - "x": 330.290854, - "y": 34.490909 - } - } - }, - { - "id": "25387d92-65fc-5876-986f-ee6d34eae366", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.290854, - "y": 34.490909 - }, - "endPoint": { - "x": 330.337024, - "y": 34.504458 - } - } - }, - { - "id": "acfce627-3d0d-58d9-a714-28903919150d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.337024, - "y": 34.504458 - }, - "endPoint": { - "x": 330.383507, - "y": 34.516891 - } - } - }, - { - "id": "89fad184-9214-56a2-96d7-b4f5205e20d0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.383507, - "y": 34.516891 - }, - "endPoint": { - "x": 330.430283, - "y": 34.528202 - } - } - }, - { - "id": "7b5cc32c-c964-5d83-ac2d-083d164ccaed", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.430283, - "y": 34.528202 - }, - "endPoint": { - "x": 330.484071, - "y": 34.540125 - } - } - }, - { - "id": "e10c5c3a-1bfe-579b-85ce-691c8d359fec", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.484071, - "y": 34.540125 - }, - "endPoint": { - "x": 330.53802, - "y": 34.551284 - } - } - }, - { - "id": "2e62d955-dbc3-5876-8c20-651eae73601c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.53802, - "y": 34.551284 - }, - "endPoint": { - "x": 330.592121, - "y": 34.561677 - } - } - }, - { - "id": "11c57ded-76e7-59c2-a2bb-fc4a37ec3100", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.592121, - "y": 34.561677 - }, - "endPoint": { - "x": 330.646367, - "y": 34.571304 - } - } - }, - { - "id": "45e9d707-b0ce-5e52-9900-258d70025a44", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.646367, - "y": 34.571304 - }, - "endPoint": { - "x": 330.680142, - "y": 34.576655 - } - } - }, - { - "id": "947c6d56-9b16-5ba8-bb5c-fe8dbbc5f778", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.680142, - "y": 34.576655 - }, - "endPoint": { - "x": 330.714026, - "y": 34.581233 - } - } - }, - { - "id": "ec984c19-dfb3-5acf-8d03-9241662db8f6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.714026, - "y": 34.581233 - }, - "endPoint": { - "x": 330.748006, - "y": 34.585036 - } - } - }, - { - "id": "01ddc73f-e195-515c-9168-a15e4ea94b19", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.748006, - "y": 34.585036 - }, - "endPoint": { - "x": 330.782067, - "y": 34.588063 - } - } - }, - { - "id": "5b945b62-11eb-5fbc-b520-07d374858d7e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.782067, - "y": 34.588063 - }, - "endPoint": { - "x": 330.818988, - "y": 34.590648 - } - } - }, - { - "id": "5edb39b6-0e75-513b-be5a-af7d30a2126f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.818988, - "y": 34.590648 - }, - "endPoint": { - "x": 330.85594, - "y": 34.592695 - } - } - }, - { - "id": "1470f852-2380-5d1c-81d1-2b6499324d51", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.85594, - "y": 34.592695 - }, - "endPoint": { - "x": 330.892918, - "y": 34.594203 - } - } - }, - { - "id": "9fb2ed62-fb11-5f46-82e1-030f881b9aa8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.892918, - "y": 34.594203 - }, - "endPoint": { - "x": 330.929916, - "y": 34.595171 - } - } - }, - { - "id": "69a11a72-8309-58dc-a99b-686ee5b303df", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.929916, - "y": 34.595171 - }, - "endPoint": { - "x": 330.992109, - "y": 34.596075 - } - } - }, - { - "id": "75927ef9-05d3-528e-8e63-87e63a61e355", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.992109, - "y": 34.596075 - }, - "endPoint": { - "x": 331.054307, - "y": 34.596439 - } - } - }, - { - "id": "5e6e945a-69cd-5f82-a3e3-a9f46a19e0e0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.054307, - "y": 34.596439 - }, - "endPoint": { - "x": 331.116505, - "y": 34.596264 - } - } - }, - { - "id": "49d33ccc-f573-5239-abda-ef6e49a46949", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.116505, - "y": 34.596264 - }, - "endPoint": { - "x": 331.1787, - "y": 34.595549 - } - } - }, - { - "id": "4046a6e4-ec25-5c74-ae82-97addab11519", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.1787, - "y": 34.595549 - }, - "endPoint": { - "x": 331.242382, - "y": 34.594119 - } - } - }, - { - "id": "2be02270-fd5d-5426-9e23-21ff2684fcc6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.242382, - "y": 34.594119 - }, - "endPoint": { - "x": 331.306037, - "y": 34.591844 - } - } - }, - { - "id": "f49f2be2-d484-5cb0-a6b8-3e3004cb47c6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.306037, - "y": 34.591844 - }, - "endPoint": { - "x": 331.369655, - "y": 34.588725 - } - } - }, - { - "id": "a060f724-8030-5d14-8ec7-7c651a7be4eb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.369655, - "y": 34.588725 - }, - "endPoint": { - "x": 331.43323, - "y": 34.584763 - } - } - }, - { - "id": "56a3edc8-bdc9-5550-9583-1876812fd6e6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.43323, - "y": 34.584763 - }, - "endPoint": { - "x": 331.478253, - "y": 34.581234 - } - } - }, - { - "id": "0728b0cc-997a-5b86-a39d-ed3a650a0f20", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.478253, - "y": 34.581234 - }, - "endPoint": { - "x": 331.523199, - "y": 34.576863 - } - } - }, - { - "id": "29d7a756-f8b2-5de0-81f3-fce3db5a985a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.523199, - "y": 34.576863 - }, - "endPoint": { - "x": 331.568055, - "y": 34.571652 - } - } - }, - { - "id": "526d8a58-a315-5342-8c11-994280826084", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.568055, - "y": 34.571652 - }, - "endPoint": { - "x": 331.61281, - "y": 34.565603 - } - } - }, - { - "id": "c5edb410-02ca-5595-b063-851ae11a2f37", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.61281, - "y": 34.565603 - }, - "endPoint": { - "x": 331.659917, - "y": 34.557976 - } - } - }, - { - "id": "e20da651-beb0-5e71-b709-cc2e7f28505f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.659917, - "y": 34.557976 - }, - "endPoint": { - "x": 331.706729, - "y": 34.548774 - } - } - }, - { - "id": "74e55c6e-e8bc-5a6c-b4f2-d416e2fa1357", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.706729, - "y": 34.548774 - }, - "endPoint": { - "x": 331.753204, - "y": 34.538004 - } - } - }, - { - "id": "b65d1dd3-334a-51b5-a114-3813ae5cae77", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.753204, - "y": 34.538004 - }, - "endPoint": { - "x": 331.799305, - "y": 34.525675 - } - } - }, - { - "id": "eb5ab6ed-9d84-550b-8263-424add4cc4e8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.799305, - "y": 34.525675 - }, - "endPoint": { - "x": 331.871308, - "y": 34.504283 - } - } - }, - { - "id": "813e814f-27c5-54e8-9fc0-e605577e6095", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.871308, - "y": 34.504283 - }, - "endPoint": { - "x": 331.94283, - "y": 34.481363 - } - } - }, - { - "id": "e4658b27-50d7-5d0a-84c8-ab54c9e32f62", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.94283, - "y": 34.481363 - }, - "endPoint": { - "x": 332.013846, - "y": 34.456923 - } - } - }, - { - "id": "f2fdfcf2-5921-5a8a-9329-3c544067db0e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.013846, - "y": 34.456923 - }, - "endPoint": { - "x": 332.084334, - "y": 34.430971 - } - } - }, - { - "id": "2a987aa8-86b8-5f84-90fd-85d777f95cd4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.084334, - "y": 34.430971 - }, - "endPoint": { - "x": 332.15143, - "y": 34.404927 - } - } - }, - { - "id": "42e6ce86-8ddb-5b18-a664-fa48a7cf97d4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.15143, - "y": 34.404927 - }, - "endPoint": { - "x": 332.218161, - "y": 34.377972 - } - } - }, - { - "id": "b4c5b6f0-31ee-573e-a0c8-edcd6b942bb1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.218161, - "y": 34.377972 - }, - "endPoint": { - "x": 332.284519, - "y": 34.35011 - } - } - }, - { - "id": "1b7fc160-50e5-55cf-8169-cee6ca0795af", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.284519, - "y": 34.35011 - }, - "endPoint": { - "x": 332.350494, - "y": 34.321344 - } - } - }, - { - "id": "6ab8636b-e8c1-5069-bcf3-ccf31c286167", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.350494, - "y": 34.321344 - }, - "endPoint": { - "x": 332.385659, - "y": 34.305189 - } - } - }, - { - "id": "3f75c973-0877-54ee-a3a2-650478b4e2e8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.385659, - "y": 34.305189 - }, - "endPoint": { - "x": 332.420396, - "y": 34.288149 - } - } - }, - { - "id": "1bbd582f-5623-5f27-b076-10542598c15b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.420396, - "y": 34.288149 - }, - "endPoint": { - "x": 332.45469, - "y": 34.270234 - } - } - }, - { - "id": "ddab12a6-823a-517f-ad48-1e39f2f74edf", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.45469, - "y": 34.270234 - }, - "endPoint": { - "x": 332.488524, - "y": 34.251452 - } - } - }, - { - "id": "cf994537-f1db-5c57-88f5-e04ae88851ca", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.488524, - "y": 34.251452 - }, - "endPoint": { - "x": 332.526633, - "y": 34.229365 - } - } - }, - { - "id": "e7d4523a-ddf7-543a-b5b9-434114dd845c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.526633, - "y": 34.229365 - }, - "endPoint": { - "x": 332.564481, - "y": 34.206839 - } - } - }, - { - "id": "1f3004a1-c03a-594a-b568-64eaac8e7af2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.564481, - "y": 34.206839 - }, - "endPoint": { - "x": 332.602066, - "y": 34.183876 - } - } - }, - { - "id": "0de57f63-ce05-5dbb-a123-e0e22a86551e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.602066, - "y": 34.183876 - }, - "endPoint": { - "x": 332.639384, - "y": 34.160477 - } - } - }, - { - "id": "7c3ba6d8-40c4-5516-85ed-41f5e1e8338f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.639384, - "y": 34.160477 - }, - "endPoint": { - "x": 332.691409, - "y": 34.127133 - } - } - }, - { - "id": "70d75ebf-8945-5b3d-8141-a97c9f959125", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.691409, - "y": 34.127133 - }, - "endPoint": { - "x": 332.743156, - "y": 34.093361 - } - } - }, - { - "id": "9e078cc6-28db-530c-acb1-ae2347595c03", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.743156, - "y": 34.093361 - }, - "endPoint": { - "x": 332.794623, - "y": 34.059162 - } - } - }, - { - "id": "dae5d1a0-1186-5b4c-ac44-af995980b68b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.794623, - "y": 34.059162 - }, - "endPoint": { - "x": 332.845806, - "y": 34.024538 - } - } - }, - { - "id": "c90e5a1a-42e0-5bab-86d5-8ac706ad37fe", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.845806, - "y": 34.024538 - }, - "endPoint": { - "x": 332.893707, - "y": 33.99155 - } - } - }, - { - "id": "c60853e8-55c7-5931-adbe-ccac88b38595", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.893707, - "y": 33.99155 - }, - "endPoint": { - "x": 332.941327, - "y": 33.95816 - } - } - }, - { - "id": "21b8809a-7b76-5b78-bd88-c449f69455be", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.941327, - "y": 33.95816 - }, - "endPoint": { - "x": 332.988666, - "y": 33.924371 - } - } - }, - { - "id": "9492aeb1-7615-5838-b47e-20152afba45e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.988666, - "y": 33.924371 - }, - "endPoint": { - "x": 333.035719, - "y": 33.890185 - } - } - }, - { - "id": "b681c786-f04c-5f14-9f42-358059c56ca0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.035719, - "y": 33.890185 - }, - "endPoint": { - "x": 333.072884, - "y": 33.86264 - } - } - }, - { - "id": "0ff16a85-e52e-59b9-a390-55981b8c04b4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.072884, - "y": 33.86264 - }, - "endPoint": { - "x": 333.109754, - "y": 33.834705 - } - } - }, - { - "id": "fe819882-6ecd-5ecf-a55c-85e32f2b2641", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.109754, - "y": 33.834705 - }, - "endPoint": { - "x": 333.146328, - "y": 33.806381 - } - } - }, - { - "id": "d132654f-a57c-5790-aaf5-0e63dc28a7d5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.146328, - "y": 33.806381 - }, - "endPoint": { - "x": 333.1826, - "y": 33.777671 - } - } - }, - { - "id": "06028ff4-ff4e-5ad0-8c55-bff6a99433ad", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.1826, - "y": 33.777671 - }, - "endPoint": { - "x": 333.217832, - "y": 33.748675 - } - } - }, - { - "id": "6fe00204-ec4f-5ea4-861a-436f7632646e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.217832, - "y": 33.748675 - }, - "endPoint": { - "x": 333.252246, - "y": 33.718724 - } - } - }, - { - "id": "cf1e2245-48b7-5c45-837d-51504bb9d2dc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.252246, - "y": 33.718724 - }, - "endPoint": { - "x": 333.28582, - "y": 33.687836 - } - } - }, - { - "id": "4be0135b-8018-5b13-bfda-e252af57b16a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.28582, - "y": 33.687836 - }, - "endPoint": { - "x": 333.318536, - "y": 33.656028 - } - } - }, - { - "id": "4285ac0d-6f8b-539b-9772-6bf01f51c572", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.318536, - "y": 33.656028 - }, - "endPoint": { - "x": 333.349568, - "y": 33.624125 - } - } - }, - { - "id": "f6e8092f-3200-57d1-9ff0-8cb93cee8719", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.349568, - "y": 33.624125 - }, - "endPoint": { - "x": 333.379679, - "y": 33.591364 - } - } - }, - { - "id": "a7891d0b-42be-5dfe-b60d-b59b77059676", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.379679, - "y": 33.591364 - }, - "endPoint": { - "x": 333.408852, - "y": 33.557766 - } - } - }, - { - "id": "6528e6fa-2fa6-564d-9295-4ca80f12dfdf", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.408852, - "y": 33.557766 - }, - "endPoint": { - "x": 333.437069, - "y": 33.523349 - } - } - }, - { - "id": "cd352b1d-b5c4-5167-bef9-2933df43f99c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.437069, - "y": 33.523349 - }, - "endPoint": { - "x": 333.468963, - "y": 33.482374 - } - } - }, - { - "id": "8b5be6e8-506b-512e-a6d7-aa537826e366", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.468963, - "y": 33.482374 - }, - "endPoint": { - "x": 333.499926, - "y": 33.4407 - } - } - }, - { - "id": "55066535-dcae-5582-bc09-6143a8416fd4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.499926, - "y": 33.4407 - }, - "endPoint": { - "x": 333.529948, - "y": 33.398342 - } - } - }, - { - "id": "9eae0887-1894-5a00-85da-d0d1c047116b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.529948, - "y": 33.398342 - }, - "endPoint": { - "x": 333.559016, - "y": 33.355318 - } - } - }, - { - "id": "0237bfb0-0a7c-5f3d-a7a7-d51830ce1e44", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.559016, - "y": 33.355318 - }, - "endPoint": { - "x": 333.584291, - "y": 33.315933 - } - } - }, - { - "id": "ae679d7d-6ced-535f-af1c-9f0794de65d0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.584291, - "y": 33.315933 - }, - "endPoint": { - "x": 333.608574, - "y": 33.275938 - } - } - }, - { - "id": "dc82a365-6a2d-5918-8e49-6655119a19c1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.608574, - "y": 33.275938 - }, - "endPoint": { - "x": 333.631856, - "y": 33.235352 - } - } - }, - { - "id": "53b7b1e9-3537-5e77-8413-d040db709af1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.631856, - "y": 33.235352 - }, - "endPoint": { - "x": 333.654124, - "y": 33.194193 - } - } - }, - { - "id": "ab91bbbb-0dc8-5148-b9ab-c77930cc667c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.654124, - "y": 33.194193 - }, - "endPoint": { - "x": 333.683405, - "y": 33.138244 - } - } - }, - { - "id": "3f70ed6a-fe41-5a1e-bc9c-1d51adb6e3c3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.683405, - "y": 33.138244 - }, - "endPoint": { - "x": 333.712536, - "y": 33.082217 - } - } - }, - { - "id": "ebdb8459-5bee-5c4f-a798-595042379ae3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.712536, - "y": 33.082217 - }, - "endPoint": { - "x": 333.741515, - "y": 33.026111 - } - } - }, - { - "id": "d6d25aa0-543b-55b0-a9d8-1f8fe7a10b66", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.741515, - "y": 33.026111 - }, - "endPoint": { - "x": 333.770343, - "y": 32.969927 - } - } - }, - { - "id": "543368b5-1089-5df6-870e-30cf60ced4cf", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.770343, - "y": 32.969927 - }, - "endPoint": { - "x": 333.784553, - "y": 32.941955 - } - } - }, - { - "id": "e5be6ade-a2d8-5d85-92ad-ac51d84bcd09", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.784553, - "y": 32.941955 - }, - "endPoint": { - "x": 333.798611, - "y": 32.913906 - } - } - }, - { - "id": "f7bf4a5b-2195-52be-b9e4-b58757a3ec7c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.798611, - "y": 32.913906 - }, - "endPoint": { - "x": 333.812516, - "y": 32.885782 - } - } - }, - { - "id": "9c5c2274-7928-5299-af4f-2bb3bf9efbba", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.812516, - "y": 32.885782 - }, - "endPoint": { - "x": 333.826269, - "y": 32.857582 - } - } - }, - { - "id": "2598b99c-8fa6-560a-93ae-55858668194f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.826269, - "y": 32.857582 - }, - "endPoint": { - "x": 333.851667, - "y": 32.805127 - } - } - }, - { - "id": "f12bd40d-4981-5ba5-87d3-15b0113c1a80", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.851667, - "y": 32.805127 - }, - "endPoint": { - "x": 333.87705, - "y": 32.752665 - } - } - }, - { - "id": "ec878833-24b3-581f-a2ab-f57361f52f2a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.87705, - "y": 32.752665 - }, - "endPoint": { - "x": 333.902418, - "y": 32.700197 - } - } - }, - { - "id": "44d54922-4098-5242-9567-cfd970d65908", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.902418, - "y": 32.700197 - }, - "endPoint": { - "x": 333.927773, - "y": 32.647721 - } - } - }, - { - "id": "43e8f2c8-f8e7-5528-9a5e-43bba7c2d4b6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.927773, - "y": 32.647721 - }, - "endPoint": { - "x": 333.954808, - "y": 32.591728 - } - } - }, - { - "id": "3aae4fca-ac50-5c18-bbca-457a5aa6da7b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.954808, - "y": 32.591728 - }, - "endPoint": { - "x": 333.981829, - "y": 32.535729 - } - } - }, - { - "id": "4f8b3210-4963-59ea-9449-51c57e88b351", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.981829, - "y": 32.535729 - }, - "endPoint": { - "x": 334.008836, - "y": 32.479722 - } - } - }, - { - "id": "ec477163-95b6-589d-a529-038b37e40241", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.008836, - "y": 32.479722 - }, - "endPoint": { - "x": 334.035828, - "y": 32.423709 - } - } - }, - { - "id": "a83d01d1-ecd8-5fe6-b006-976db130f7f9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.035828, - "y": 32.423709 - }, - "endPoint": { - "x": 334.068719, - "y": 32.35536 - } - } - }, - { - "id": "fe3d508d-94e1-5c49-9170-80fdba19771c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.068719, - "y": 32.35536 - }, - "endPoint": { - "x": 334.101553, - "y": 32.286983 - } - } - }, - { - "id": "d069a950-7b4f-5ee4-a235-6668d007e6bf", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.101553, - "y": 32.286983 - }, - "endPoint": { - "x": 334.13433, - "y": 32.21858 - } - } - }, - { - "id": "11efac06-10a5-52df-a774-53ad1ab3df1d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.13433, - "y": 32.21858 - }, - "endPoint": { - "x": 334.16705, - "y": 32.150148 - } - } - }, - { - "id": "d88c8bc3-2af3-55ed-ab83-eff1486684e8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.16705, - "y": 32.150148 - }, - "endPoint": { - "x": 334.173635, - "y": 32.13629 - } - } - }, - { - "id": "35199eaa-667d-5085-bd67-235540e2c177", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.173635, - "y": 32.13629 - }, - "endPoint": { - "x": 334.180162, - "y": 32.122404 - } - } - }, - { - "id": "9fe68e21-c910-5f06-9136-aeb0abe1259f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.180162, - "y": 32.122404 - }, - "endPoint": { - "x": 334.186632, - "y": 32.108492 - } - } - }, - { - "id": "4f47be49-2b4d-514a-84a2-e2a3b705d19c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.186632, - "y": 32.108492 - }, - "endPoint": { - "x": 334.193045, - "y": 32.094553 - } - } - }, - { - "id": "952a81fe-d053-5608-97ea-7e1eae892398", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.193045, - "y": 32.094553 - }, - "endPoint": { - "x": 334.199673, - "y": 32.079669 - } - } - }, - { - "id": "f8da221d-e100-53ff-b261-e9d5cd977195", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.199673, - "y": 32.079669 - }, - "endPoint": { - "x": 334.205996, - "y": 32.064654 - } - } - }, - { - "id": "0dfa262b-0f54-5576-bb8d-508b9bb19363", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.205996, - "y": 32.064654 - }, - "endPoint": { - "x": 334.212013, - "y": 32.049515 - } - } - }, - { - "id": "cd96ac14-b10a-50e5-8b83-4f2733f6b355", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.212013, - "y": 32.049515 - }, - "endPoint": { - "x": 334.21772, - "y": 32.034254 - } - } - }, - { - "id": "a234767b-d73e-5ebc-b436-71737841aa13", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.21772, - "y": 32.034254 - }, - "endPoint": { - "x": 334.258788, - "y": 31.920463 - } - } - }, - { - "id": "dbca54ed-534b-5215-b768-91289f414283", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.258788, - "y": 31.920463 - }, - "endPoint": { - "x": 334.299543, - "y": 31.80656 - } - } - }, - { - "id": "67b0c1b1-0ca7-53dc-b0aa-fc8cccf295eb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.299543, - "y": 31.80656 - }, - "endPoint": { - "x": 334.339987, - "y": 31.692546 - } - } - }, - { - "id": "8ca021f5-254b-513e-850a-045e04415fd5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.339987, - "y": 31.692546 - }, - "endPoint": { - "x": 334.380118, - "y": 31.578422 - } - } - }, - { - "id": "0a65fdcd-d852-5e23-b5e0-8885fe649fc7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.380118, - "y": 31.578422 - }, - "endPoint": { - "x": 334.404564, - "y": 31.508502 - } - } - }, - { - "id": "6e19b4f2-10c7-51b4-8b78-77b1f6b8665f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.404564, - "y": 31.508502 - }, - "endPoint": { - "x": 334.428953, - "y": 31.438563 - } - } - }, - { - "id": "239e48b1-c8f0-551b-99af-bb41c8fccabb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.428953, - "y": 31.438563 - }, - "endPoint": { - "x": 334.453282, - "y": 31.368602 - } - } - }, - { - "id": "81809704-0839-5275-a4e5-d43271ad415a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.453282, - "y": 31.368602 - }, - "endPoint": { - "x": 334.477554, - "y": 31.298622 - } - } - }, - { - "id": "51c39007-7e05-5315-b709-9f393bd6c5f9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.477554, - "y": 31.298622 - }, - "endPoint": { - "x": 334.486965, - "y": 31.271356 - } - } - }, - { - "id": "40aff8c2-3ef3-5667-9a12-f80a443f7bd2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.486965, - "y": 31.271356 - }, - "endPoint": { - "x": 334.496318, - "y": 31.244069 - } - } - }, - { - "id": "883ebfc7-0985-5162-ada1-ff84fa37ef28", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.496318, - "y": 31.244069 - }, - "endPoint": { - "x": 334.505612, - "y": 31.216763 - } - } - }, - { - "id": "5446e61e-08ff-5bdb-a22d-b5ca1e081bde", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.505612, - "y": 31.216763 - }, - "endPoint": { - "x": 334.514848, - "y": 31.189437 - } - } - }, - { - "id": "c3f9749d-34ca-53df-a66d-60371641ca71", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.514848, - "y": 31.189437 - }, - "endPoint": { - "x": 334.538604, - "y": 31.117982 - } - } - }, - { - "id": "da468e36-b6e1-54a4-9cd2-9c23a85eb61e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.538604, - "y": 31.117982 - }, - "endPoint": { - "x": 334.561803, - "y": 31.046347 - } - } - }, - { - "id": "e0fef2a7-13dc-54a9-b712-8c478b4453a7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.561803, - "y": 31.046347 - }, - "endPoint": { - "x": 334.584444, - "y": 30.974533 - } - } - }, - { - "id": "1b112907-8650-5cd3-8f07-423cda7da7cd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.584444, - "y": 30.974533 - }, - "endPoint": { - "x": 334.606525, - "y": 30.902543 - } - } - }, - { - "id": "5c48aa81-75eb-57b3-8598-fe002e42d5f5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.606525, - "y": 30.902543 - }, - "endPoint": { - "x": 334.623787, - "y": 30.844464 - } - } - }, - { - "id": "2c7bd6cc-1804-526f-94b2-3235e3686fd3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.623787, - "y": 30.844464 - }, - "endPoint": { - "x": 334.640486, - "y": 30.786222 - } - } - }, - { - "id": "573a2e21-b9a6-5f00-9be8-ceb54d866fa9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.640486, - "y": 30.786222 - }, - "endPoint": { - "x": 334.65662, - "y": 30.727821 - } - } - }, - { - "id": "0f2f424a-8a8a-5762-8b34-858baccf806e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.65662, - "y": 30.727821 - }, - "endPoint": { - "x": 334.672189, - "y": 30.669265 - } - } - }, - { - "id": "d9ce55d8-2a32-59f8-8616-b090f7fb09ec", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.672189, - "y": 30.669265 - }, - "endPoint": { - "x": 334.682543, - "y": 30.629529 - } - } - }, - { - "id": "09166ef2-9dbf-5f7f-a050-03f08aaf495e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.682543, - "y": 30.629529 - }, - "endPoint": { - "x": 334.692886, - "y": 30.589791 - } - } - }, - { - "id": "6d2ba2c8-8584-5b09-bb16-26607ef4621c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.692886, - "y": 30.589791 - }, - "endPoint": { - "x": 334.703217, - "y": 30.55005 - } - } - }, - { - "id": "3783c7f5-5fe0-5867-83b0-0300cc0845d1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.703217, - "y": 30.55005 - }, - "endPoint": { - "x": 334.713537, - "y": 30.510306 - } - } - }, - { - "id": "f5bf9a51-6168-5b5c-bdce-353a87f92d6b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.713537, - "y": 30.510306 - }, - "endPoint": { - "x": 334.727497, - "y": 30.456538 - } - } - }, - { - "id": "84e71290-11a8-5bf3-8a65-fb7ccc1b3513", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.727497, - "y": 30.456538 - }, - "endPoint": { - "x": 334.741468, - "y": 30.402773 - } - } - }, - { - "id": "86601a39-c7ab-534f-97cd-bc4bde11ded6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.741468, - "y": 30.402773 - }, - "endPoint": { - "x": 334.755449, - "y": 30.349011 - } - } - }, - { - "id": "7f6b15b0-2e74-52b9-aeef-5d598065a5e9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.755449, - "y": 30.349011 - }, - "endPoint": { - "x": 334.769443, - "y": 30.295252 - } - } - }, - { - "id": "e5d78259-f6d6-56ea-9f6b-83c9066cdc10", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.769443, - "y": 30.295252 - }, - "endPoint": { - "x": 334.795198, - "y": 30.196472 - } - } - }, - { - "id": "66c40920-5593-521a-bac3-626cb0890e2b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.795198, - "y": 30.196472 - }, - "endPoint": { - "x": 334.821014, - "y": 30.097707 - } - } - }, - { - "id": "24c65992-6b3f-5b5d-abad-9068faa89fc2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.821014, - "y": 30.097707 - }, - "endPoint": { - "x": 334.846892, - "y": 29.998958 - } - } - }, - { - "id": "c55432f6-7bf4-59fd-bc23-4008998257d2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.846892, - "y": 29.998958 - }, - "endPoint": { - "x": 334.87283, - "y": 29.900226 - } - } - }, - { - "id": "7ae337ab-15ff-5806-813c-a37737d3c136", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.87283, - "y": 29.900226 - }, - "endPoint": { - "x": 334.880758, - "y": 29.869966 - } - } - }, - { - "id": "dce4668b-e91f-59db-8424-f4ad6ccfa160", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.880758, - "y": 29.869966 - }, - "endPoint": { - "x": 334.888624, - "y": 29.83969 - } - } - }, - { - "id": "2301beaa-d32e-5c58-9bb3-76a2147b5e47", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.888624, - "y": 29.83969 - }, - "endPoint": { - "x": 334.896429, - "y": 29.809398 - } - } - }, - { - "id": "87a0076c-ce44-5e49-a458-9449901746a2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.896429, - "y": 29.809398 - }, - "endPoint": { - "x": 334.904173, - "y": 29.77909 - } - } - }, - { - "id": "8c75d4b2-65c0-5530-9b62-dd4807982172", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.904173, - "y": 29.77909 - }, - "endPoint": { - "x": 334.906019, - "y": 29.771677 - } - } - }, - { - "id": "95dd71a5-5cc4-5041-becb-bba8cb7b38c9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.906019, - "y": 29.771677 - }, - "endPoint": { - "x": 334.90779, - "y": 29.764246 - } - } - }, - { - "id": "8a4de320-1637-58de-9467-f1fad6127c0e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.90779, - "y": 29.764246 - }, - "endPoint": { - "x": 334.909485, - "y": 29.756797 - } - } - }, - { - "id": "3b051e1f-0417-5436-bf02-8b4b295882f7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.909485, - "y": 29.756797 - }, - "endPoint": { - "x": 334.911105, - "y": 29.749332 - } - } - }, - { - "id": "349b9cee-c4d7-5abf-b5c7-19c7b273511b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.911105, - "y": 29.749332 - }, - "endPoint": { - "x": 334.930066, - "y": 29.659549 - } - } - }, - { - "id": "094bb3ed-927b-5136-9816-e28d23de7809", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.930066, - "y": 29.659549 - }, - "endPoint": { - "x": 334.948953, - "y": 29.56975 - } - } - }, - { - "id": "dd40b09e-3144-5f7c-bc02-dea7b5e84276", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.948953, - "y": 29.56975 - }, - "endPoint": { - "x": 334.967763, - "y": 29.479935 - } - } - }, - { - "id": "4afa19a6-2c2e-5a7e-a8f6-6a9418d99ea8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.967763, - "y": 29.479935 - }, - "endPoint": { - "x": 334.986497, - "y": 29.390105 - } - } - }, - { - "id": "218930be-791d-57ea-8fca-0ffe90299b2b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.986497, - "y": 29.390105 - }, - "endPoint": { - "x": 335.003853, - "y": 29.306454 - } - } - }, - { - "id": "301a4153-caad-5955-840a-b3424b6ff0ef", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.003853, - "y": 29.306454 - }, - "endPoint": { - "x": 335.021108, - "y": 29.222783 - } - } - }, - { - "id": "268e8d07-3b66-54e8-bd33-b8af7ccf5c42", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.021108, - "y": 29.222783 - }, - "endPoint": { - "x": 335.03826, - "y": 29.13909 - } - } - }, - { - "id": "18d6bf42-b7ec-5ddb-bebd-6e408eaa8a3c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.03826, - "y": 29.13909 - }, - "endPoint": { - "x": 335.055312, - "y": 29.055377 - } - } - }, - { - "id": "f785d1f9-e5be-585d-81a9-599f06933acd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.055312, - "y": 29.055377 - }, - "endPoint": { - "x": 335.064463, - "y": 29.010049 - } - } - }, - { - "id": "9edab88d-69d2-5024-9635-dddeeb343b30", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.064463, - "y": 29.010049 - }, - "endPoint": { - "x": 335.073513, - "y": 28.9647 - } - } - }, - { - "id": "de589307-7c32-5a9d-b305-cc773c54c756", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.073513, - "y": 28.9647 - }, - "endPoint": { - "x": 335.082462, - "y": 28.919332 - } - } - }, - { - "id": "fd4381a8-b990-5263-bd56-247f52f6e534", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.082462, - "y": 28.919332 - }, - "endPoint": { - "x": 335.091308, - "y": 28.873943 - } - } - }, - { - "id": "d91517a0-ecd4-5b7e-899a-5167a02e6cf2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.091308, - "y": 28.873943 - }, - "endPoint": { - "x": 335.100002, - "y": 28.827782 - } - } - }, - { - "id": "61543dd2-959e-5481-8de4-9eabce5ced99", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.100002, - "y": 28.827782 - }, - "endPoint": { - "x": 335.108214, - "y": 28.781535 - } - } - }, - { - "id": "46aa4d00-0ecb-5f1f-82a2-af9755128688", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.108214, - "y": 28.781535 - }, - "endPoint": { - "x": 335.115943, - "y": 28.735205 - } - } - }, - { - "id": "f188dbfa-d776-5f96-a8a6-a0d5511bb061", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.115943, - "y": 28.735205 - }, - "endPoint": { - "x": 335.123189, - "y": 28.688795 - } - } - }, - { - "id": "57a4c096-7f5a-567d-9a17-eceb687fba60", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.123189, - "y": 28.688795 - }, - "endPoint": { - "x": 335.132765, - "y": 28.623652 - } - } - }, - { - "id": "26781071-a282-57ae-89d5-225c009f2bd1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.132765, - "y": 28.623652 - }, - "endPoint": { - "x": 335.141855, - "y": 28.55844 - } - } - }, - { - "id": "b5875478-7819-5814-a8ac-29c514af980e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.141855, - "y": 28.55844 - }, - "endPoint": { - "x": 335.15046, - "y": 28.493162 - } - } - }, - { - "id": "4dff0cc3-bae7-5699-8a06-90ae8533e3bf", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.15046, - "y": 28.493162 - }, - "endPoint": { - "x": 335.15858, - "y": 28.427822 - } - } - }, - { - "id": "c2a1fdb1-16b8-55b6-b1f9-3162a868355f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.15858, - "y": 28.427822 - }, - "endPoint": { - "x": 335.164211, - "y": 28.380338 - } - } - }, - { - "id": "f5dc9483-c0ff-5610-ba3d-7a79379787b4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.164211, - "y": 28.380338 - }, - "endPoint": { - "x": 335.169664, - "y": 28.332833 - } - } - }, - { - "id": "67677b24-6611-5fb5-aee3-35d942bdcce2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.169664, - "y": 28.332833 - }, - "endPoint": { - "x": 335.17494, - "y": 28.285308 - } - } - }, - { - "id": "855e4364-0b1f-5155-ab40-f7143c6542a8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.17494, - "y": 28.285308 - }, - "endPoint": { - "x": 335.180037, - "y": 28.237764 - } - } - }, - { - "id": "a354f02a-b0e3-5a30-b3a5-30ebe2574848", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.180037, - "y": 28.237764 - }, - "endPoint": { - "x": 335.186168, - "y": 28.178708 - } - } - }, - { - "id": "1a7d2c15-4760-5a51-a1da-e9411b621ba9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.186168, - "y": 28.178708 - }, - "endPoint": { - "x": 335.19212, - "y": 28.119635 - } - } - }, - { - "id": "6c36aa25-89da-533e-9ef8-67a9a6b974a6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.19212, - "y": 28.119635 - }, - "endPoint": { - "x": 335.197894, - "y": 28.060544 - } - } - }, - { - "id": "9751ba22-b1d1-58f6-8227-1d9490b68662", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.197894, - "y": 28.060544 - }, - "endPoint": { - "x": 335.20349, - "y": 28.001435 - } - } - }, - { - "id": "827742e0-cf2c-5048-a38e-46c355292f68", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.20349, - "y": 28.001435 - }, - "endPoint": { - "x": 335.208543, - "y": 27.946079 - } - } - }, - { - "id": "8082b6a2-0f71-555f-abd5-21a06d629c3b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.208543, - "y": 27.946079 - }, - "endPoint": { - "x": 335.213392, - "y": 27.890705 - } - } - }, - { - "id": "4bc608d6-05dc-50a4-ad21-a41c0e8d55d5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.213392, - "y": 27.890705 - }, - "endPoint": { - "x": 335.218037, - "y": 27.835313 - } - } - }, - { - "id": "04aa5409-ff35-5542-951d-9e2f12445909", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.218037, - "y": 27.835313 - }, - "endPoint": { - "x": 335.222477, - "y": 27.779905 - } - } - }, - { - "id": "c58a36c2-ae1b-576f-9e57-df83e6a6d842", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.222477, - "y": 27.779905 - }, - "endPoint": { - "x": 335.227407, - "y": 27.715619 - } - } - }, - { - "id": "bbbdec98-b960-514a-b5ee-27da1cd402f6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.227407, - "y": 27.715619 - }, - "endPoint": { - "x": 335.232131, - "y": 27.651319 - } - } - }, - { - "id": "b06fac3d-f36a-52b7-b6d5-5f675a24c824", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.232131, - "y": 27.651319 - }, - "endPoint": { - "x": 335.236651, - "y": 27.587004 - } - } - }, - { - "id": "76d63076-b4ed-5f1c-a655-1ba4748b0c36", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.236651, - "y": 27.587004 - }, - "endPoint": { - "x": 335.240967, - "y": 27.522674 - } - } - }, - { - "id": "ffb83806-1daf-5ffa-b8fb-3e8c10c327cb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.240967, - "y": 27.522674 - }, - "endPoint": { - "x": 335.243375, - "y": 27.48316 - } - } - }, - { - "id": "8890f00f-31fd-5644-afdb-c6500e501d8c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.243375, - "y": 27.48316 - }, - "endPoint": { - "x": 335.245426, - "y": 27.443627 - } - } - }, - { - "id": "cf72d075-5e35-5e07-806e-f11535bebaad", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.245426, - "y": 27.443627 - }, - "endPoint": { - "x": 335.247119, - "y": 27.404078 - } - } - }, - { - "id": "95155fbc-f881-511d-b3d7-064291bfb196", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.247119, - "y": 27.404078 - }, - "endPoint": { - "x": 335.248454, - "y": 27.364513 - } - } - }, - { - "id": "bf59e509-e189-59a3-a6b9-d1fa40946939", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.248454, - "y": 27.364513 - }, - "endPoint": { - "x": 335.248978, - "y": 27.340474 - } - } - }, - { - "id": "9f3347ff-3519-5791-bfae-a8f3aebc265b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.248978, - "y": 27.340474 - }, - "endPoint": { - "x": 335.249143, - "y": 27.316432 - } - } - }, - { - "id": "b9408d30-9b9f-5c70-8e23-83d9eca46710", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.249143, - "y": 27.316432 - }, - "endPoint": { - "x": 335.24895, - "y": 27.29239 - } - } - }, - { - "id": "f86f3dd0-b2af-53c4-a234-b519e5296e22", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.24895, - "y": 27.29239 - }, - "endPoint": { - "x": 335.2484, - "y": 27.268352 - } - } - }, - { - "id": "350d0d03-c16b-5954-8739-f60e9dd29bcf", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.2484, - "y": 27.268352 - }, - "endPoint": { - "x": 335.247865, - "y": 27.25531 - } - } - }, - { - "id": "5123371f-e940-5530-b907-827338551d24", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.247865, - "y": 27.25531 - }, - "endPoint": { - "x": 335.247055, - "y": 27.242284 - } - } - }, - { - "id": "26c77f9f-c9ed-55ab-b61e-71a09fd4ba67", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.247055, - "y": 27.242284 - }, - "endPoint": { - "x": 335.245969, - "y": 27.229277 - } - } - }, - { - "id": "1660ec93-8a24-5f21-a285-55756c960864", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.245969, - "y": 27.229277 - }, - "endPoint": { - "x": 335.244607, - "y": 27.216296 - } - } - }, - { - "id": "5bb4af3d-7250-5670-a1b5-f06cd6a80dd3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.244607, - "y": 27.216296 - }, - "endPoint": { - "x": 335.243201, - "y": 27.205336 - } - } - }, - { - "id": "7aa502ef-9a0d-5ed0-b1a7-d9fe6d83f148", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.243201, - "y": 27.205336 - }, - "endPoint": { - "x": 335.241521, - "y": 27.194416 - } - } - }, - { - "id": "f0758657-d15d-5469-82cc-f6c3e87d4e68", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.241521, - "y": 27.194416 - }, - "endPoint": { - "x": 335.239569, - "y": 27.183542 - } - } - }, - { - "id": "303a36ae-1142-5782-924a-23fcd201af96", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.239569, - "y": 27.183542 - }, - "endPoint": { - "x": 335.237344, - "y": 27.172719 - } - } - }, - { - "id": "dedea746-b68c-5096-a59d-9cc981b50ac1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.237344, - "y": 27.172719 - }, - "endPoint": { - "x": 335.235934, - "y": 27.166582 - } - } - }, - { - "id": "1d53862c-e6c7-5197-88ea-5c5e20a149db", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.235934, - "y": 27.166582 - }, - "endPoint": { - "x": 335.234395, - "y": 27.160478 - } - } - }, - { - "id": "ad7870d2-a23e-5370-b93f-e2de7a8c19e5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.234395, - "y": 27.160478 - }, - "endPoint": { - "x": 335.232728, - "y": 27.154407 - } - } - }, - { - "id": "97da3c26-7f30-5bd6-aacb-6c6e0849acba", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.232728, - "y": 27.154407 - }, - "endPoint": { - "x": 335.230932, - "y": 27.148373 - } - } - }, - { - "id": "57d169ff-e66f-5beb-bb51-4def8da5b38e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.230932, - "y": 27.148373 - }, - "endPoint": { - "x": 335.225994, - "y": 27.132627 - } - } - }, - { - "id": "ae61aaf7-8b60-5454-803a-ac07832f2f0a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.225994, - "y": 27.132627 - }, - "endPoint": { - "x": 335.22093, - "y": 27.116922 - } - } - }, - { - "id": "dadbd0c5-061c-568d-873f-570059fd48f7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.22093, - "y": 27.116922 - }, - "endPoint": { - "x": 335.21574, - "y": 27.101259 - } - } - }, - { - "id": "331ff82c-4b9b-5e77-a9a3-3c37ed01350a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.21574, - "y": 27.101259 - }, - "endPoint": { - "x": 335.210423, - "y": 27.085637 - } - } - }, - { - "id": "1165eb4c-112b-5853-921a-e56b70503d37", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.210423, - "y": 27.085637 - }, - "endPoint": { - "x": 335.205267, - "y": 27.07125 - } - } - }, - { - "id": "e1e20dad-2f52-5d99-adf1-36f0103cc591", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.205267, - "y": 27.07125 - }, - "endPoint": { - "x": 335.199765, - "y": 27.056994 - } - } - }, - { - "id": "d59767a4-dd86-5d17-94b4-ce9351875031", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.199765, - "y": 27.056994 - }, - "endPoint": { - "x": 335.193922, - "y": 27.042875 - } - } - }, - { - "id": "76d250b9-112e-5e07-bf24-4c77c01e9dc9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.193922, - "y": 27.042875 - }, - "endPoint": { - "x": 335.187739, - "y": 27.028899 - } - } - }, - { - "id": "f3d53b64-73af-5d98-ac63-171b822585af", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.187739, - "y": 27.028899 - }, - "endPoint": { - "x": 335.183653, - "y": 27.020399 - } - } - }, - { - "id": "9b8e2acb-fcb9-5e19-8030-dd1ef40af257", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.183653, - "y": 27.020399 - }, - "endPoint": { - "x": 335.179239, - "y": 27.012069 - } - } - }, - { - "id": "c0b2a15a-0894-5cc7-b41a-1b7e45bca15b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.179239, - "y": 27.012069 - }, - "endPoint": { - "x": 335.174502, - "y": 27.003918 - } - } - }, - { - "id": "52924be2-430b-563b-b20f-8b1806e18c3f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.174502, - "y": 27.003918 - }, - "endPoint": { - "x": 335.169448, - "y": 26.995956 - } - } - }, - { - "id": "f694e536-1857-50bd-a6f8-21c36a6996e8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.169448, - "y": 26.995956 - }, - "endPoint": { - "x": 335.164351, - "y": 26.988996 - } - } - }, - { - "id": "21ac54cf-fda7-555d-8653-576f80c1aa4e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.164351, - "y": 26.988996 - }, - "endPoint": { - "x": 335.158637, - "y": 26.982558 - } - } - }, - { - "id": "490d5869-33f6-5dff-838a-80d6a944eb43", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.158637, - "y": 26.982558 - }, - "endPoint": { - "x": 335.152345, - "y": 26.976683 - } - } - }, - { - "id": "5ec1b481-e150-5787-868d-a6de4df7d1f6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.152345, - "y": 26.976683 - }, - "endPoint": { - "x": 335.145516, - "y": 26.971412 - } - } - }, - { - "id": "327fee0c-eafa-58fd-b867-3fed5e730edd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.145516, - "y": 26.971412 - }, - "endPoint": { - "x": 335.134049, - "y": 26.963881 - } - } - }, - { - "id": "e365104c-32cd-53ca-b865-cc85b3bd81ec", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.134049, - "y": 26.963881 - }, - "endPoint": { - "x": 335.12217, - "y": 26.957039 - } - } - }, - { - "id": "2d6aa283-d135-53bb-aaa7-a0c0472cb306", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.12217, - "y": 26.957039 - }, - "endPoint": { - "x": 335.109912, - "y": 26.950904 - } - } - }, - { - "id": "a3999690-9e8a-5fa6-8361-b4a41132e1d1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.109912, - "y": 26.950904 - }, - "endPoint": { - "x": 335.097305, - "y": 26.945492 - } - } - }, - { - "id": "a8089425-0b1c-5a72-b325-01e0b9bccf0a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.097305, - "y": 26.945492 - }, - "endPoint": { - "x": 335.075607, - "y": 26.937266 - } - } - }, - { - "id": "191aa6ce-0794-5540-a1dd-396a6344b990", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.075607, - "y": 26.937266 - }, - "endPoint": { - "x": 335.053694, - "y": 26.929645 - } - } - }, - { - "id": "781a0613-357c-58e3-ab81-9c4093161240", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.053694, - "y": 26.929645 - }, - "endPoint": { - "x": 335.031579, - "y": 26.922632 - } - } - }, - { - "id": "cb75aa61-d002-5cdd-a431-f5db2b0eae34", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.031579, - "y": 26.922632 - }, - "endPoint": { - "x": 335.009274, - "y": 26.916232 - } - } - }, - { - "id": "d05b7228-bf68-554f-a41a-5b054e004e79", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.009274, - "y": 26.916232 - }, - "endPoint": { - "x": 334.980889, - "y": 26.908843 - } - } - }, - { - "id": "eaf0cf71-143d-540f-8466-4fe4df40185c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.980889, - "y": 26.908843 - }, - "endPoint": { - "x": 334.952352, - "y": 26.902077 - } - } - }, - { - "id": "118c5b58-e151-5bcb-bd84-9087114caa06", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.952352, - "y": 26.902077 - }, - "endPoint": { - "x": 334.923674, - "y": 26.895936 - } - } - }, - { - "id": "126da5b4-5220-5a82-9f28-20fe07c4a999", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.923674, - "y": 26.895936 - }, - "endPoint": { - "x": 334.894866, - "y": 26.890424 - } - } - }, - { - "id": "50cc3e95-a2e1-5f78-b3f0-95e946f167c1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.894866, - "y": 26.890424 - }, - "endPoint": { - "x": 334.852445, - "y": 26.882863 - } - } - }, - { - "id": "4fb901ff-7c06-5e1f-ac68-3b4c8d75807c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.852445, - "y": 26.882863 - }, - "endPoint": { - "x": 334.809998, - "y": 26.87545 - } - } - }, - { - "id": "6e0374ba-97f3-51b5-a85e-2896672c6350", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.809998, - "y": 26.87545 - }, - "endPoint": { - "x": 334.767525, - "y": 26.868185 - } - } - }, - { - "id": "e6fde418-f2d9-5a44-bd79-1e7227d84481", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.767525, - "y": 26.868185 - }, - "endPoint": { - "x": 334.725027, - "y": 26.861068 - } - } - }, - { - "id": "55270fd2-7123-58a5-865a-828d28d91af2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.725027, - "y": 26.861068 - }, - "endPoint": { - "x": 334.709524, - "y": 26.858575 - } - } - }, - { - "id": "eb6abf7a-6ece-53a7-b279-0484e89c5749", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.709524, - "y": 26.858575 - }, - "endPoint": { - "x": 334.693998, - "y": 26.856231 - } - } - }, - { - "id": "e2ddbe93-a9ea-585c-9c34-d3bae210c9c8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.693998, - "y": 26.856231 - }, - "endPoint": { - "x": 334.678451, - "y": 26.854036 - } - } - }, - { - "id": "5c171a55-885a-571d-a61a-a3cea01399d1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.678451, - "y": 26.854036 - }, - "endPoint": { - "x": 334.662883, - "y": 26.851989 - } - } - }, - { - "id": "e796c641-cf73-5ab2-8cbb-8b846c69e62f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.662883, - "y": 26.851989 - }, - "endPoint": { - "x": 334.631386, - "y": 26.848041 - } - } - }, - { - "id": "1777cd16-9432-5b73-b263-eaff8173b159", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.631386, - "y": 26.848041 - }, - "endPoint": { - "x": 334.59988, - "y": 26.844171 - } - } - }, - { - "id": "93d5a0d8-29a1-50cc-b63a-8fcd5bedc84f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.59988, - "y": 26.844171 - }, - "endPoint": { - "x": 334.568364, - "y": 26.840378 - } - } - }, - { - "id": "9740a893-2e71-5926-b2e5-2762de012db1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.568364, - "y": 26.840378 - }, - "endPoint": { - "x": 334.536839, - "y": 26.836664 - } - } - }, - { - "id": "0cc044e4-5a86-5cb2-99fa-d92e3a9c012b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.536839, - "y": 26.836664 - }, - "endPoint": { - "x": 334.475326, - "y": 26.829532 - } - } - }, - { - "id": "64d19e3c-664e-5956-b593-a3faa5124f87", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.475326, - "y": 26.829532 - }, - "endPoint": { - "x": 334.413805, - "y": 26.822479 - } - } - }, - { - "id": "08914ec4-0921-5f78-9ba8-f99ed53d7d1c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.413805, - "y": 26.822479 - }, - "endPoint": { - "x": 334.352274, - "y": 26.815503 - } - } - }, - { - "id": "6107a1dc-bb16-5b43-9fa0-031be1ff7e49", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.352274, - "y": 26.815503 - }, - "endPoint": { - "x": 334.290735, - "y": 26.808605 - } - } - }, - { - "id": "ce1fa86e-66cb-5921-98f8-0d37a7dc5a26", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.290735, - "y": 26.808605 - }, - "endPoint": { - "x": 334.193036, - "y": 26.797857 - } - } - }, - { - "id": "11b7949d-dd7a-5859-bfa6-becda2c08e14", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.193036, - "y": 26.797857 - }, - "endPoint": { - "x": 334.095307, - "y": 26.787386 - } - } - }, - { - "id": "891252dc-29b4-5f3a-8df0-e316e779a1e0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.095307, - "y": 26.787386 - }, - "endPoint": { - "x": 333.997548, - "y": 26.777192 - } - } - }, - { - "id": "8e0ed1f7-c4e0-5034-80a1-4244a0c181b2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.997548, - "y": 26.777192 - }, - "endPoint": { - "x": 333.899761, - "y": 26.767276 - } - } - }, - { - "id": "b01f215b-56ac-5a2b-ac04-5b169bbc73e3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.899761, - "y": 26.767276 - }, - "endPoint": { - "x": 333.871897, - "y": 26.76463 - } - } - }, - { - "id": "12530d4d-5dac-5a73-a63d-2c24e7cdfc22", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.871897, - "y": 26.76463 - }, - "endPoint": { - "x": 333.844008, - "y": 26.762262 - } - } - }, - { - "id": "c1f26b20-9a99-5763-a568-ac45db303450", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.844008, - "y": 26.762262 - }, - "endPoint": { - "x": 333.816098, - "y": 26.760172 - } - } - }, - { - "id": "a096ca3c-76bb-58e0-8117-0c1096fff646", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.816098, - "y": 26.760172 - }, - "endPoint": { - "x": 333.788167, - "y": 26.758361 - } - } - }, - { - "id": "efb6b743-7525-5b18-9781-5a05ff0f69ef", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.788167, - "y": 26.758361 - }, - "endPoint": { - "x": 333.7592, - "y": 26.756773 - } - } - }, - { - "id": "ed44934a-f679-56d6-b3bb-d3afb605f99a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.7592, - "y": 26.756773 - }, - "endPoint": { - "x": 333.730218, - "y": 26.755476 - } - } - }, - { - "id": "638b322c-9d80-5937-963a-5651de860864", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.730218, - "y": 26.755476 - }, - "endPoint": { - "x": 333.701225, - "y": 26.754471 - } - } - }, - { - "id": "26441c47-3a33-55b4-b0b8-7eda8941ae1a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.701225, - "y": 26.754471 - }, - "endPoint": { - "x": 333.672223, - "y": 26.753757 - } - } - }, - { - "id": "7aafac58-0c9e-5a85-9dfc-c473f6c49993", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.672223, - "y": 26.753757 - }, - "endPoint": { - "x": 333.594436, - "y": 26.75238 - } - } - }, - { - "id": "d67c3eb1-7c8d-58bf-9497-934c53f92330", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.594436, - "y": 26.75238 - }, - "endPoint": { - "x": 333.516645, - "y": 26.751294 - } - } - }, - { - "id": "b476c68a-f657-59b6-bb75-8d3c108dac63", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.516645, - "y": 26.751294 - }, - "endPoint": { - "x": 333.438851, - "y": 26.7505 - } - } - }, - { - "id": "1454fd11-70a2-5fcd-ad13-103bdb9a096a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.438851, - "y": 26.7505 - }, - "endPoint": { - "x": 333.361053, - "y": 26.749997 - } - } - }, - { - "id": "451b84bd-d69c-5004-9ce8-b30627b4cbca", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.361053, - "y": 26.749997 - }, - "endPoint": { - "x": 333.30246, - "y": 26.749762 - } - } - }, - { - "id": "91401952-550f-5cd4-94b6-9372fcc53611", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.30246, - "y": 26.749762 - }, - "endPoint": { - "x": 333.243866, - "y": 26.749594 - } - } - }, - { - "id": "6f63f9da-3bf1-5aab-8de6-b22ab14f8d3a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.243866, - "y": 26.749594 - }, - "endPoint": { - "x": 333.185271, - "y": 26.749493 - } - } - }, - { - "id": "a5c8d5b1-9fd2-53e1-a885-12b2f8f2352e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.185271, - "y": 26.749493 - }, - "endPoint": { - "x": 333.126677, - "y": 26.74946 - } - } - }, - { - "id": "61262cd3-8ec7-53a5-a948-7853dcf9756c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.126677, - "y": 26.74946 - }, - "endPoint": { - "x": 333.111972, - "y": 26.749493 - } - } - }, - { - "id": "b53bd447-b803-5f85-922c-3bf50f409827", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.111972, - "y": 26.749493 - }, - "endPoint": { - "x": 333.097266, - "y": 26.749594 - } - } - }, - { - "id": "d71378ef-c13d-59fe-ab2b-19260c92a2a3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.097266, - "y": 26.749594 - }, - "endPoint": { - "x": 333.082562, - "y": 26.749762 - } - } - }, - { - "id": "8b6fe58f-cc5d-5b41-b965-82ed3339984d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.082562, - "y": 26.749762 - }, - "endPoint": { - "x": 333.067858, - "y": 26.749997 - } - } - }, - { - "id": "51059d0e-eb2b-58ac-86d3-d6578792c2d0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.067858, - "y": 26.749997 - }, - "endPoint": { - "x": 333.063806, - "y": 26.75008 - } - } - }, - { - "id": "9dcd425a-032d-5919-8aca-481da6f57e34", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.063806, - "y": 26.75008 - }, - "endPoint": { - "x": 333.059754, - "y": 26.75018 - } - } - }, - { - "id": "f36aa7b3-2163-50f0-93ef-9da375ea6232", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.059754, - "y": 26.75018 - }, - "endPoint": { - "x": 333.055703, - "y": 26.750298 - } - } - }, - { - "id": "7989d093-9495-5ca2-a570-1dbfd6c18967", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.055703, - "y": 26.750298 - }, - "endPoint": { - "x": 333.051653, - "y": 26.750434 - } - } - }, - { - "id": "fbaa511a-0ff7-5f1b-b324-c81bb00885fa", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.051653, - "y": 26.750434 - }, - "endPoint": { - "x": 332.997067, - "y": 26.752389 - } - } - }, - { - "id": "534b30f1-4b13-5711-bba7-402e86b218bd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.997067, - "y": 26.752389 - }, - "endPoint": { - "x": 332.942482, - "y": 26.754362 - } - } - }, - { - "id": "e8ca0fcd-aa95-5958-bb04-f5ada597950d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.942482, - "y": 26.754362 - }, - "endPoint": { - "x": 332.887897, - "y": 26.756353 - } - } - }, - { - "id": "345e5bd9-4e4c-52d5-9b9b-48ba2a7829c1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.887897, - "y": 26.756353 - }, - "endPoint": { - "x": 332.833314, - "y": 26.758361 - } - } - }, - { - "id": "27fec400-7d79-5186-a76d-c4af192b978d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.833314, - "y": 26.758361 - }, - "endPoint": { - "x": 332.811389, - "y": 26.759231 - } - } - }, - { - "id": "f73e3999-e39c-50ca-91b4-13ce8016c528", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.811389, - "y": 26.759231 - }, - "endPoint": { - "x": 332.789469, - "y": 26.760222 - } - } - }, - { - "id": "69e20953-a4f8-553e-b7e2-6a96701e9d6a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.789469, - "y": 26.760222 - }, - "endPoint": { - "x": 332.767555, - "y": 26.761333 - } - } - }, - { - "id": "104b38a0-d895-52cc-88ef-797357f06063", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.767555, - "y": 26.761333 - }, - "endPoint": { - "x": 332.745648, - "y": 26.762565 - } - } - }, - { - "id": "5006f1a2-2249-5403-8cf7-d8f002b43e9d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.745648, - "y": 26.762565 - }, - "endPoint": { - "x": 332.731963, - "y": 26.763432 - } - } - }, - { - "id": "4138f932-3501-5dd5-9d67-c0b6bad54899", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.731963, - "y": 26.763432 - }, - "endPoint": { - "x": 332.718287, - "y": 26.76442 - } - } - }, - { - "id": "942e79a7-bc1a-5695-9bf0-f7a11ab23a64", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.718287, - "y": 26.76442 - }, - "endPoint": { - "x": 332.70462, - "y": 26.765528 - } - } - }, - { - "id": "c919c7d7-d5c2-51ba-9931-da59b66ffae4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.70462, - "y": 26.765528 - }, - "endPoint": { - "x": 332.690963, - "y": 26.766756 - } - } - }, - { - "id": "c5e8f695-0cff-550c-ad5e-24c1f736d868", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.690963, - "y": 26.766756 - }, - "endPoint": { - "x": 332.675272, - "y": 26.771478 - } - } - }, - { - "id": "38b5c78d-4792-5c49-a0d7-9093a6b0d2f9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.675272, - "y": 26.771478 - }, - "endPoint": { - "x": 332.663011, - "y": 26.781483 - } - } - }, - { - "id": "22a8013e-8f43-51bf-a075-6f6aef927d27", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.663011, - "y": 26.781483 - }, - "endPoint": { - "x": 332.655374, - "y": 26.795342 - } - } - }, - { - "id": "dfc642a6-8159-5c20-bc43-0ac53f0ba9b2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.655374, - "y": 26.795342 - }, - "endPoint": { - "x": 332.653549, - "y": 26.811627 - } - } - }, - { - "id": "6ccfd0ee-1e08-51c5-a381-7be1c3f148b4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.653549, - "y": 26.811627 - }, - "endPoint": { - "x": 332.668192, - "y": 26.950357 - } - } - }, - { - "id": "e50b5baa-6d72-5a17-ae14-716d94b01984", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.668192, - "y": 26.950357 - }, - "endPoint": { - "x": 332.687944, - "y": 27.088404 - } - } - }, - { - "id": "8677a845-0381-591c-9cf1-648c3d00490e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.687944, - "y": 27.088404 - }, - "endPoint": { - "x": 332.712781, - "y": 27.225628 - } - } - }, - { - "id": "7fa9719f-b398-5798-962a-c8e64ceb4b9e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.712781, - "y": 27.225628 - }, - "endPoint": { - "x": 332.742681, - "y": 27.361886 - } - } - }, - { - "id": "38d9ce28-22ec-540c-9ccb-c7cbff4431f9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.742681, - "y": 27.361886 - }, - "endPoint": { - "x": 332.74642, - "y": 27.377445 - } - } - }, - { - "id": "51395669-2a30-5ba8-869c-92d83186748f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.74642, - "y": 27.377445 - }, - "endPoint": { - "x": 332.750201, - "y": 27.392994 - } - } - }, - { - "id": "84bb876c-ed92-5e9c-b6b8-d48262c16795", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.750201, - "y": 27.392994 - }, - "endPoint": { - "x": 332.754024, - "y": 27.408532 - } - } - }, - { - "id": "47f8d384-505f-5435-859a-619bcc2036e3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.754024, - "y": 27.408532 - }, - "endPoint": { - "x": 332.757889, - "y": 27.42406 - } - } - }, - { - "id": "bde03fe4-5b0e-5b2f-85b6-635a8685b183", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.757889, - "y": 27.42406 - }, - "endPoint": { - "x": 332.758163, - "y": 27.425068 - } - } - }, - { - "id": "b8e91df3-83e6-57bd-a00f-158af94905e6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.758163, - "y": 27.425068 - }, - "endPoint": { - "x": 332.758479, - "y": 27.426064 - } - } - }, - { - "id": "381bffcc-2fbb-57cd-ae25-2c035ea4da0a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.758479, - "y": 27.426064 - }, - "endPoint": { - "x": 332.758836, - "y": 27.427046 - } - } - }, - { - "id": "cf64eff9-133f-5094-9dd2-4935ee630cca", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.758836, - "y": 27.427046 - }, - "endPoint": { - "x": 332.759234, - "y": 27.428012 - } - } - }, - { - "id": "f51936d3-1eae-5521-8ea2-ac4f042e5e7a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.759234, - "y": 27.428012 - }, - "endPoint": { - "x": 332.762263, - "y": 27.433868 - } - } - }, - { - "id": "9cc824f1-7760-5d1b-92c2-b3eec6de6742", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.762263, - "y": 27.433868 - }, - "endPoint": { - "x": 332.766024, - "y": 27.439248 - } - } - }, - { - "id": "ea47740f-d579-53d9-a325-e5f4dd4de9d2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.766024, - "y": 27.439248 - }, - "endPoint": { - "x": 332.770463, - "y": 27.444084 - } - } - }, - { - "id": "d997b5b3-192d-584a-a2c9-d07b488462c0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.770463, - "y": 27.444084 - }, - "endPoint": { - "x": 332.775525, - "y": 27.448309 - } - } - }, - { - "id": "9e9fd979-98d8-5e16-bab6-96a27a53cc20", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.775525, - "y": 27.448309 - }, - "endPoint": { - "x": 332.782269, - "y": 27.452677 - } - } - }, - { - "id": "46255ac2-f998-5ca3-bd97-50b592c23d8c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.782269, - "y": 27.452677 - }, - "endPoint": { - "x": 332.789423, - "y": 27.456282 - } - } - }, - { - "id": "3ba29c7b-eccb-57ed-b493-b02e0dde1247", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.789423, - "y": 27.456282 - }, - "endPoint": { - "x": 332.796923, - "y": 27.459096 - } - } - }, - { - "id": "efdc071d-4fbb-54fe-96b1-0e1d266bbb68", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.796923, - "y": 27.459096 - }, - "endPoint": { - "x": 332.804706, - "y": 27.461091 - } - } - }, - { - "id": "4be8af63-f3a9-5736-a69d-dde2f04d5773", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.804706, - "y": 27.461091 - }, - "endPoint": { - "x": 332.814556, - "y": 27.462638 - } - } - }, - { - "id": "2e4961a8-5a82-553c-acfd-baaedf58134d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.814556, - "y": 27.462638 - }, - "endPoint": { - "x": 332.824483, - "y": 27.463373 - } - } - }, - { - "id": "35d876dd-f087-51fe-8e25-8187c35c2099", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.824483, - "y": 27.463373 - }, - "endPoint": { - "x": 332.834436, - "y": 27.463295 - } - } - }, - { - "id": "07d662fa-faec-5b84-975b-84553bc140eb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.834436, - "y": 27.463295 - }, - "endPoint": { - "x": 332.844367, - "y": 27.462401 - } - } - }, - { - "id": "36485565-6160-5b59-b5b0-934ae03d3fef", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.844367, - "y": 27.462401 - }, - "endPoint": { - "x": 332.859221, - "y": 27.460857 - } - } - }, - { - "id": "5671b7b7-d7cc-5479-abd0-1b9f4ab0524b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.859221, - "y": 27.460857 - }, - "endPoint": { - "x": 332.874127, - "y": 27.460124 - } - } - }, - { - "id": "63fd457d-b407-5ed8-b9e2-5d0e832eacab", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.874127, - "y": 27.460124 - }, - "endPoint": { - "x": 332.88905, - "y": 27.460201 - } - } - }, - { - "id": "b6a74f22-25f9-59c6-8846-449e4948e590", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.88905, - "y": 27.460201 - }, - "endPoint": { - "x": 332.903958, - "y": 27.461091 - } - } - }, - { - "id": "c974fbf5-70cb-5b98-b014-d594b6cd3b0c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.903958, - "y": 27.461091 - }, - "endPoint": { - "x": 332.921707, - "y": 27.462822 - } - } - }, - { - "id": "6e5d2f37-b269-5119-9a70-2dfc91eeee08", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.921707, - "y": 27.462822 - }, - "endPoint": { - "x": 332.939414, - "y": 27.464925 - } - } - }, - { - "id": "d25246ca-df6e-5b73-9f2c-81efcba52c11", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.939414, - "y": 27.464925 - }, - "endPoint": { - "x": 332.957074, - "y": 27.467397 - } - } - }, - { - "id": "b0f05128-fdac-5151-8154-da5f33eb9d7a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.957074, - "y": 27.467397 - }, - "endPoint": { - "x": 332.974679, - "y": 27.47024 - } - } - }, - { - "id": "cc0da764-c9d7-58ef-b84a-aa8bc8406fdb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.974679, - "y": 27.47024 - }, - "endPoint": { - "x": 332.987089, - "y": 27.472567 - } - } - }, - { - "id": "84663228-321a-5ce9-bd6f-cdf53577542f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.987089, - "y": 27.472567 - }, - "endPoint": { - "x": 332.999421, - "y": 27.475259 - } - } - }, - { - "id": "f38bf98b-6464-5669-ba62-06355b9ac1de", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.999421, - "y": 27.475259 - }, - "endPoint": { - "x": 333.011668, - "y": 27.478315 - } - } - }, - { - "id": "c87a84d5-b09d-5d23-b65a-fd2dc1a5f0e6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.011668, - "y": 27.478315 - }, - "endPoint": { - "x": 333.023822, - "y": 27.481733 - } - } - }, - { - "id": "7ad86a3d-42a1-5a31-b39c-62faccab3656", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.023822, - "y": 27.481733 - }, - "endPoint": { - "x": 333.041134, - "y": 27.487749 - } - } - }, - { - "id": "b695cae7-e975-5fbc-9a09-37611d7aafed", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.041134, - "y": 27.487749 - }, - "endPoint": { - "x": 333.057793, - "y": 27.495295 - } - } - }, - { - "id": "d4ee80d1-9019-5f72-8094-916aa983f614", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.057793, - "y": 27.495295 - }, - "endPoint": { - "x": 333.0737, - "y": 27.504321 - } - } - }, - { - "id": "284543d9-ba41-50b9-9bfa-1c0be7bc5538", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.0737, - "y": 27.504321 - }, - "endPoint": { - "x": 333.088753, - "y": 27.514774 - } - } - }, - { - "id": "34606f23-daa5-5ce0-ba9f-e3cba9d9b0f4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.088753, - "y": 27.514774 - }, - "endPoint": { - "x": 333.103682, - "y": 27.527228 - } - } - }, - { - "id": "c5921516-2fa1-5de2-a12f-b58a857275fe", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.103682, - "y": 27.527228 - }, - "endPoint": { - "x": 333.117466, - "y": 27.540887 - } - } - }, - { - "id": "7ea61da0-3785-5fd1-9b60-df722db12e53", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.117466, - "y": 27.540887 - }, - "endPoint": { - "x": 333.130034, - "y": 27.555674 - } - } - }, - { - "id": "e5629f33-e67f-5a25-af9e-b12fe547e7f8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.130034, - "y": 27.555674 - }, - "endPoint": { - "x": 333.141313, - "y": 27.571509 - } - } - }, - { - "id": "6c42c85e-bde1-5bc8-8e8f-09f209d68146", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.141313, - "y": 27.571509 - }, - "endPoint": { - "x": 333.149985, - "y": 27.585198 - } - } - }, - { - "id": "f8bbebd6-0f4e-5c3a-94f2-16ec36123ca1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.149985, - "y": 27.585198 - }, - "endPoint": { - "x": 333.15834, - "y": 27.599081 - } - } - }, - { - "id": "bd80c458-5de1-55e5-a49f-f1114289a896", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.15834, - "y": 27.599081 - }, - "endPoint": { - "x": 333.166376, - "y": 27.61315 - } - } - }, - { - "id": "6b191475-c488-51ff-823a-0f98547a8695", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.166376, - "y": 27.61315 - }, - "endPoint": { - "x": 333.174089, - "y": 27.627402 - } - } - }, - { - "id": "2781b9e1-a2c7-58b4-a124-f272c43d3f4c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.174089, - "y": 27.627402 - }, - "endPoint": { - "x": 333.18496, - "y": 27.648447 - } - } - }, - { - "id": "06acea17-9d10-5b47-a854-0db05bbe6efd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.18496, - "y": 27.648447 - }, - "endPoint": { - "x": 333.195501, - "y": 27.669658 - } - } - }, - { - "id": "973cba57-c415-5c7b-ab49-5add74400af9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.195501, - "y": 27.669658 - }, - "endPoint": { - "x": 333.205708, - "y": 27.691031 - } - } - }, - { - "id": "834b3995-c789-5c2e-a268-cf1a6f4b041e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.205708, - "y": 27.691031 - }, - "endPoint": { - "x": 333.21558, - "y": 27.712562 - } - } - }, - { - "id": "13908e64-2574-5845-91f2-c93bc0c06585", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.21558, - "y": 27.712562 - }, - "endPoint": { - "x": 333.230589, - "y": 27.746607 - } - } - }, - { - "id": "dcb3ef7f-da82-5342-ac18-c2ce445bda11", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.230589, - "y": 27.746607 - }, - "endPoint": { - "x": 333.245131, - "y": 27.780852 - } - } - }, - { - "id": "fcd7a81f-61aa-50b7-b663-9a56e77dd6be", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.245131, - "y": 27.780852 - }, - "endPoint": { - "x": 333.259203, - "y": 27.815293 - } - } - }, - { - "id": "2101552e-416e-5edf-8d3c-e46946a5d2e0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.259203, - "y": 27.815293 - }, - "endPoint": { - "x": 333.272803, - "y": 27.849924 - } - } - }, - { - "id": "cd8ed731-c754-5bb1-98b6-28b0c3a2dce7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.272803, - "y": 27.849924 - }, - "endPoint": { - "x": 333.277793, - "y": 27.863601 - } - } - }, - { - "id": "fc6d3f1f-9964-5a4c-8dce-a4d26fcdb91a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.277793, - "y": 27.863601 - }, - "endPoint": { - "x": 333.282299, - "y": 27.877439 - } - } - }, - { - "id": "bc45c6af-1d40-5390-b6bf-dab409fd9a3b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.282299, - "y": 27.877439 - }, - "endPoint": { - "x": 333.286319, - "y": 27.891427 - } - } - }, - { - "id": "3d2e658a-68ca-5001-b0ec-b176dd9f3e25", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.286319, - "y": 27.891427 - }, - "endPoint": { - "x": 333.289847, - "y": 27.905551 - } - } - }, - { - "id": "fc521da1-63ce-5155-a348-839bf0ba1a33", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.289847, - "y": 27.905551 - }, - "endPoint": { - "x": 333.292693, - "y": 27.918981 - } - } - }, - { - "id": "8e946d4c-e160-589f-a16c-1c72d87e7f3e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.292693, - "y": 27.918981 - }, - "endPoint": { - "x": 333.295043, - "y": 27.932502 - } - } - }, - { - "id": "33774b47-6cd7-5110-99cd-d3ea16cfb93d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.295043, - "y": 27.932502 - }, - "endPoint": { - "x": 333.296892, - "y": 27.9461 - } - } - }, - { - "id": "53fe2ac5-3ca6-5bc5-a4d6-9aad5cd47525", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.296892, - "y": 27.9461 - }, - "endPoint": { - "x": 333.29824, - "y": 27.959762 - } - } - }, - { - "id": "31cd4f41-7bb1-51f8-9fd7-62acd86c3603", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.29824, - "y": 27.959762 - }, - "endPoint": { - "x": 333.300615, - "y": 27.992569 - } - } - }, - { - "id": "b5f88b23-cd1a-54b9-8b37-1be74df57e43", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.300615, - "y": 27.992569 - }, - "endPoint": { - "x": 333.302485, - "y": 28.025405 - } - } - }, - { - "id": "623e0e7c-1428-5a99-91e4-849dc51a2efd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.302485, - "y": 28.025405 - }, - "endPoint": { - "x": 333.303851, - "y": 28.058267 - } - } - }, - { - "id": "d3415911-099f-5c4d-a4c7-113ac18429f2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.303851, - "y": 28.058267 - }, - "endPoint": { - "x": 333.304713, - "y": 28.091148 - } - } - }, - { - "id": "ce7a639c-a175-5919-b1f2-10f37efc9b24", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.304713, - "y": 28.091148 - }, - "endPoint": { - "x": 333.305035, - "y": 28.126726 - } - } - }, - { - "id": "471c33e0-f840-5862-b9af-b97ecaa5e2ca", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.305035, - "y": 28.126726 - }, - "endPoint": { - "x": 333.304685, - "y": 28.1623 - } - } - }, - { - "id": "1266cefb-8263-5f28-8120-1b132f2a9f35", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.304685, - "y": 28.1623 - }, - "endPoint": { - "x": 333.303661, - "y": 28.197861 - } - } - }, - { - "id": "9bf228b0-e34e-5857-8b73-e4c6e981ba31", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.303661, - "y": 28.197861 - }, - "endPoint": { - "x": 333.301965, - "y": 28.2334 - } - } - }, - { - "id": "1eb0d861-6d73-5fb6-96a7-754b4b223dba", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.301965, - "y": 28.2334 - }, - "endPoint": { - "x": 333.29994, - "y": 28.262886 - } - } - }, - { - "id": "8322e030-be10-580b-b09a-b670e20861ae", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.29994, - "y": 28.262886 - }, - "endPoint": { - "x": 333.297245, - "y": 28.292314 - } - } - }, - { - "id": "ccfa92c8-0c04-5741-935a-66d154310f01", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.297245, - "y": 28.292314 - }, - "endPoint": { - "x": 333.29388, - "y": 28.321673 - } - } - }, - { - "id": "ba7cdae8-5427-5093-9271-3c4af15e8835", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.29388, - "y": 28.321673 - }, - "endPoint": { - "x": 333.289847, - "y": 28.350952 - } - } - }, - { - "id": "36687c90-7811-5005-930b-5947c4098d84", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.289847, - "y": 28.350952 - }, - "endPoint": { - "x": 333.285437, - "y": 28.376881 - } - } - }, - { - "id": "3ac0c866-02c7-5729-93ac-5879bd7abc75", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.285437, - "y": 28.376881 - }, - "endPoint": { - "x": 333.279986, - "y": 28.402601 - } - } - }, - { - "id": "7d63ac3b-f586-567e-848f-7a9e2c6c2845", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.279986, - "y": 28.402601 - }, - "endPoint": { - "x": 333.273502, - "y": 28.42808 - } - } - }, - { - "id": "13f02b28-66ce-5e11-9212-e68b18ceb342", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.273502, - "y": 28.42808 - }, - "endPoint": { - "x": 333.265992, - "y": 28.453287 - } - } - }, - { - "id": "196461a8-0fe9-5d79-84dd-1bd627e282b2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.265992, - "y": 28.453287 - }, - "endPoint": { - "x": 333.258577, - "y": 28.47471 - } - } - }, - { - "id": "0d03753b-5168-591f-9800-ec2fafa19323", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.258577, - "y": 28.47471 - }, - "endPoint": { - "x": 333.250171, - "y": 28.495751 - } - } - }, - { - "id": "3a3fde76-343e-55c8-96e8-5acee422203c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.250171, - "y": 28.495751 - }, - "endPoint": { - "x": 333.240789, - "y": 28.516375 - } - } - }, - { - "id": "7cee26fb-c113-5074-b9e7-6bb5e3daf47f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.240789, - "y": 28.516375 - }, - "endPoint": { - "x": 333.230446, - "y": 28.536548 - } - } - }, - { - "id": "9b92b19e-8117-5344-85ef-6efec702b9e0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.230446, - "y": 28.536548 - }, - "endPoint": { - "x": 333.219719, - "y": 28.555509 - } - } - }, - { - "id": "0adb5dac-cc5e-5107-8568-2c2749c40805", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.219719, - "y": 28.555509 - }, - "endPoint": { - "x": 333.208336, - "y": 28.574074 - } - } - }, - { - "id": "bcd83a18-ad1f-5d18-9426-6795661322d0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.208336, - "y": 28.574074 - }, - "endPoint": { - "x": 333.196307, - "y": 28.592228 - } - } - }, - { - "id": "31e43989-a1bb-5da3-bbe3-e7736b2a1bd2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.196307, - "y": 28.592228 - }, - "endPoint": { - "x": 333.183642, - "y": 28.609952 - } - } - }, - { - "id": "2509ce9c-7338-5435-a2d6-97317a212934", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.183642, - "y": 28.609952 - }, - "endPoint": { - "x": 333.159093, - "y": 28.642419 - } - } - }, - { - "id": "adf0770c-b8a1-582e-a04e-082f7b62c31e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.159093, - "y": 28.642419 - }, - "endPoint": { - "x": 333.13394, - "y": 28.674415 - } - } - }, - { - "id": "a77b0959-bf8a-52ec-8265-6cbd884136e8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.13394, - "y": 28.674415 - }, - "endPoint": { - "x": 333.10819, - "y": 28.705932 - } - } - }, - { - "id": "eb0849c8-0a6d-528a-b4da-b9ba828191f5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.10819, - "y": 28.705932 - }, - "endPoint": { - "x": 333.081849, - "y": 28.736961 - } - } - }, - { - "id": "35ffa5a9-09e1-56bd-8e0e-948ca08d7f54", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.081849, - "y": 28.736961 - }, - "endPoint": { - "x": 333.062984, - "y": 28.758371 - } - } - }, - { - "id": "ccb468b4-ad84-5abd-bb04-c9e3bdd31df8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.062984, - "y": 28.758371 - }, - "endPoint": { - "x": 333.043738, - "y": 28.779436 - } - } - }, - { - "id": "f37db7f6-712e-5669-9d3f-29de267f0eee", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.043738, - "y": 28.779436 - }, - "endPoint": { - "x": 333.024114, - "y": 28.800149 - } - } - }, - { - "id": "2efeb26c-0d67-586a-ab28-27a1d3fb1ca7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.024114, - "y": 28.800149 - }, - "endPoint": { - "x": 333.004118, - "y": 28.820506 - } - } - }, - { - "id": "5013a359-6548-5926-9180-ebf4319566c1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.004118, - "y": 28.820506 - }, - "endPoint": { - "x": 332.994359, - "y": 28.829898 - } - } - }, - { - "id": "b70be3e5-f050-58c6-93ef-2569fd4bed52", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.994359, - "y": 28.829898 - }, - "endPoint": { - "x": 332.984254, - "y": 28.838908 - } - } - }, - { - "id": "865edcd3-0e63-578d-9e3b-e9e4a8793a93", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.984254, - "y": 28.838908 - }, - "endPoint": { - "x": 332.973813, - "y": 28.847526 - } - } - }, - { - "id": "9482cbf8-f9b7-52e6-8c04-97b2fa0cdf26", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.973813, - "y": 28.847526 - }, - "endPoint": { - "x": 332.963047, - "y": 28.855743 - } - } - }, - { - "id": "81b2234a-0957-5d68-b045-837f24377aef", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.963047, - "y": 28.855743 - }, - "endPoint": { - "x": 332.949082, - "y": 28.865138 - } - } - }, - { - "id": "59b6ee4d-5f27-5919-ab16-95595fc29443", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.949082, - "y": 28.865138 - }, - "endPoint": { - "x": 332.934425, - "y": 28.873354 - } - } - }, - { - "id": "d316b3cc-292e-53f4-b04a-1b9649f42990", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.934425, - "y": 28.873354 - }, - "endPoint": { - "x": 332.91915, - "y": 28.880355 - } - } - }, - { - "id": "86dca393-590b-558a-bfb9-f7d971157ae4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.91915, - "y": 28.880355 - }, - "endPoint": { - "x": 332.903331, - "y": 28.886101 - } - } - }, - { - "id": "458237ba-09e3-5d96-88e8-187ef1a79523", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.903331, - "y": 28.886101 - }, - "endPoint": { - "x": 332.877851, - "y": 28.893486 - } - } - }, - { - "id": "b1c96ccd-bc17-59a2-817f-faf990d54675", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.877851, - "y": 28.893486 - }, - "endPoint": { - "x": 332.852042, - "y": 28.899551 - } - } - }, - { - "id": "acfcd5fe-9656-5b87-a301-b3553a27ed90", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.852042, - "y": 28.899551 - }, - "endPoint": { - "x": 332.825957, - "y": 28.904285 - } - } - }, - { - "id": "7b2d0d4e-b5cb-57a5-8ec8-e688ba575466", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.825957, - "y": 28.904285 - }, - "endPoint": { - "x": 332.799647, - "y": 28.907679 - } - } - }, - { - "id": "f6c20e13-a584-5cba-9447-52890443a496", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.799647, - "y": 28.907679 - }, - "endPoint": { - "x": 332.780052, - "y": 28.909443 - } - } - }, - { - "id": "42f0c38a-8a81-5e58-b391-a2349673c21a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.780052, - "y": 28.909443 - }, - "endPoint": { - "x": 332.760421, - "y": 28.910704 - } - } - }, - { - "id": "312ee383-c11b-56a1-8c54-f03b1730d568", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.760421, - "y": 28.910704 - }, - "endPoint": { - "x": 332.740765, - "y": 28.911461 - } - } - }, - { - "id": "646a348f-b0d1-5b70-8dd8-cf3e5678719c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.740765, - "y": 28.911461 - }, - "endPoint": { - "x": 332.721093, - "y": 28.911713 - } - } - }, - { - "id": "83342e19-bbe6-5aca-b5f2-2f08bc4b6f46", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.721093, - "y": 28.911713 - }, - "endPoint": { - "x": 332.712792, - "y": 28.91146 - } - } - }, - { - "id": "fe85604d-3487-5a9a-b16d-2d7965e23122", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.712792, - "y": 28.91146 - }, - "endPoint": { - "x": 332.70453, - "y": 28.910701 - } - } - }, - { - "id": "8bc03a04-cad9-5d7c-84c8-564ecd7509b3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.70453, - "y": 28.910701 - }, - "endPoint": { - "x": 332.69633, - "y": 28.90944 - } - } - }, - { - "id": "06a02d41-227d-5593-99dc-30fa2456cb03", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.69633, - "y": 28.90944 - }, - "endPoint": { - "x": 332.688215, - "y": 28.907679 - } - } - }, - { - "id": "778e0cf6-4740-5a92-b95f-aa555bc8bfc5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.688215, - "y": 28.907679 - }, - "endPoint": { - "x": 332.67599, - "y": 28.904438 - } - } - }, - { - "id": "c16a8b2a-a5f0-526d-9700-7b1444c93aa1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.67599, - "y": 28.904438 - }, - "endPoint": { - "x": 332.663871, - "y": 28.900835 - } - } - }, - { - "id": "7ed011ca-1196-5eb5-8a0c-909b19298fd6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.663871, - "y": 28.900835 - }, - "endPoint": { - "x": 332.651864, - "y": 28.896871 - } - } - }, - { - "id": "eaddda15-4b8f-5020-b413-c2fde208e354", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.651864, - "y": 28.896871 - }, - "endPoint": { - "x": 332.639979, - "y": 28.89255 - } - } - }, - { - "id": "2f7c70b8-f9e4-504a-b998-85ab43cab7e1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.639979, - "y": 28.89255 - }, - "endPoint": { - "x": 332.612833, - "y": 28.882016 - } - } - }, - { - "id": "1e6d2ad9-0e26-588e-ac1c-dbf064422f22", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.612833, - "y": 28.882016 - }, - "endPoint": { - "x": 332.585827, - "y": 28.871133 - } - } - }, - { - "id": "a95e6afb-493e-5fcd-9341-e038f5dc773d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.585827, - "y": 28.871133 - }, - "endPoint": { - "x": 332.558964, - "y": 28.8599 - } - } - }, - { - "id": "61906545-febd-522b-854e-934c15ceaf2d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.558964, - "y": 28.8599 - }, - "endPoint": { - "x": 332.532248, - "y": 28.848319 - } - } - }, - { - "id": "e4a38ad3-24f5-5ee2-84dd-bd62e4d6058d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.532248, - "y": 28.848319 - }, - "endPoint": { - "x": 332.502263, - "y": 28.834875 - } - } - }, - { - "id": "6ebe7b32-9e19-5a7b-91f4-d929273bb29d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.502263, - "y": 28.834875 - }, - "endPoint": { - "x": 332.472442, - "y": 28.821072 - } - } - }, - { - "id": "f614fb77-b9b1-512b-be37-609844878bf7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.472442, - "y": 28.821072 - }, - "endPoint": { - "x": 332.44279, - "y": 28.806912 - } - } - }, - { - "id": "37302339-26da-50b9-912a-f569e37a5f69", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.44279, - "y": 28.806912 - }, - "endPoint": { - "x": 332.413309, - "y": 28.792396 - } - } - }, - { - "id": "ec9e7e66-a914-5a8d-bfa2-0553dc5d5d75", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.413309, - "y": 28.792396 - }, - "endPoint": { - "x": 332.409282, - "y": 28.79016 - } - } - }, - { - "id": "e896922e-564c-5791-bc27-15edbe6bb5cb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.409282, - "y": 28.79016 - }, - "endPoint": { - "x": 332.405471, - "y": 28.787589 - } - } - }, - { - "id": "50c1f0de-61d8-56b0-b396-cb7adf547c9e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.405471, - "y": 28.787589 - }, - "endPoint": { - "x": 332.401897, - "y": 28.784699 - } - } - }, - { - "id": "a1631f21-ca39-52a5-98fc-d7a8a315a114", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.401897, - "y": 28.784699 - }, - "endPoint": { - "x": 332.398579, - "y": 28.781505 - } - } - }, - { - "id": "ad82ad8d-9517-5c68-b122-faa081697c56", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.398579, - "y": 28.781505 - }, - "endPoint": { - "x": 332.394197, - "y": 28.776867 - } - } - }, - { - "id": "f0a7ab4a-5a91-55a9-98f6-a25a94ea07a2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.394197, - "y": 28.776867 - }, - "endPoint": { - "x": 332.389851, - "y": 28.772196 - } - } - }, - { - "id": "54f06905-d283-5f90-95fc-67450dec9b81", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.389851, - "y": 28.772196 - }, - "endPoint": { - "x": 332.38554, - "y": 28.767492 - } - } - }, - { - "id": "44ca6286-263b-58a7-b2ce-6d19f2017fe2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.38554, - "y": 28.767492 - }, - "endPoint": { - "x": 332.381266, - "y": 28.762755 - } - } - }, - { - "id": "22658862-a838-5c9d-8103-8436d95abef7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.381266, - "y": 28.762755 - }, - "endPoint": { - "x": 332.353965, - "y": 28.732228 - } - } - }, - { - "id": "da8bddc7-f599-53a9-ab73-210e9740047b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.353965, - "y": 28.732228 - }, - "endPoint": { - "x": 332.326701, - "y": 28.701668 - } - } - }, - { - "id": "dd7a72d2-2f01-5d04-ba10-c5afdff94d78", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.326701, - "y": 28.701668 - }, - "endPoint": { - "x": 332.299473, - "y": 28.671076 - } - } - }, - { - "id": "37c033f6-3e25-515c-ae9c-db18b47d0a6f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.299473, - "y": 28.671076 - }, - "endPoint": { - "x": 332.272282, - "y": 28.640451 - } - } - }, - { - "id": "9312dd4a-5ef0-5084-8609-3cde2f5b2afb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.272282, - "y": 28.640451 - }, - "endPoint": { - "x": 332.250213, - "y": 28.615551 - } - } - }, - { - "id": "2fa6c503-010b-57a0-bafd-e2273e219e6b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.250213, - "y": 28.615551 - }, - "endPoint": { - "x": 332.228159, - "y": 28.590639 - } - } - }, - { - "id": "f0ba9591-ed2b-5f95-b1a3-bfa6c6ed9bca", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.228159, - "y": 28.590639 - }, - "endPoint": { - "x": 332.206119, - "y": 28.565713 - } - } - }, - { - "id": "274ad96f-1257-5455-95c5-6ae1acb83fcb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.206119, - "y": 28.565713 - }, - "endPoint": { - "x": 332.184094, - "y": 28.540775 - } - } - }, - { - "id": "3ed8e77e-9bbf-53df-85ba-02cb7ccab3fc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.184094, - "y": 28.540775 - }, - "endPoint": { - "x": 332.178277, - "y": 28.53417 - } - } - }, - { - "id": "baab8a44-e2b5-561c-95a6-61d4fba6640e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.178277, - "y": 28.53417 - }, - "endPoint": { - "x": 332.172474, - "y": 28.527551 - } - } - }, - { - "id": "f0bffedf-ad20-5b34-928e-82cad71f8ef7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.172474, - "y": 28.527551 - }, - "endPoint": { - "x": 332.166686, - "y": 28.520921 - } - } - }, - { - "id": "258ee9e4-a1f7-52ce-b495-3fc4b1e74f59", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.166686, - "y": 28.520921 - }, - "endPoint": { - "x": 332.160912, - "y": 28.514277 - } - } - }, - { - "id": "4ea3709e-4014-55a5-bccf-46bfad3acc39", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.160912, - "y": 28.514277 - }, - "endPoint": { - "x": 332.156185, - "y": 28.50855 - } - } - }, - { - "id": "3ea5c9e1-3220-5664-8a49-c0f391d2bdcf", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.156185, - "y": 28.50855 - }, - "endPoint": { - "x": 332.151745, - "y": 28.502603 - } - } - }, - { - "id": "6cd9484d-c7bb-5fea-a5f7-68a71736da57", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.151745, - "y": 28.502603 - }, - "endPoint": { - "x": 332.1476, - "y": 28.496447 - } - } - }, - { - "id": "9d026296-b03b-59ee-9c73-a6c8b497c754", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.1476, - "y": 28.496447 - }, - "endPoint": { - "x": 332.143756, - "y": 28.490093 - } - } - }, - { - "id": "bdd07574-774c-52e8-9fa2-c35595798dd3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.143756, - "y": 28.490093 - }, - "endPoint": { - "x": 332.132703, - "y": 28.470411 - } - } - }, - { - "id": "32780847-e7a6-5697-bb2e-99a79a70b648", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.132703, - "y": 28.470411 - }, - "endPoint": { - "x": 332.121966, - "y": 28.450556 - } - } - }, - { - "id": "4f5ed5cc-7551-5bad-964b-903898c9be33", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.121966, - "y": 28.450556 - }, - "endPoint": { - "x": 332.111547, - "y": 28.430532 - } - } - }, - { - "id": "b75802da-0c73-5274-bfae-6e9cd862694e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.111547, - "y": 28.430532 - }, - "endPoint": { - "x": 332.101448, - "y": 28.410343 - } - } - }, - { - "id": "65dafe7b-60e0-5649-aece-f3f982ef6943", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.101448, - "y": 28.410343 - }, - "endPoint": { - "x": 332.088594, - "y": 28.382763 - } - } - }, - { - "id": "2abef1de-573a-5be7-91fd-af8d3b8b76ee", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.088594, - "y": 28.382763 - }, - "endPoint": { - "x": 332.076837, - "y": 28.35471 - } - } - }, - { - "id": "458f5d2e-a4a6-56a5-aef5-0f384c226265", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.076837, - "y": 28.35471 - }, - "endPoint": { - "x": 332.066192, - "y": 28.326217 - } - } - }, - { - "id": "d0122ec9-c560-5a1b-9f1b-b462d540c223", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.066192, - "y": 28.326217 - }, - "endPoint": { - "x": 332.056672, - "y": 28.297316 - } - } - }, - { - "id": "569132fb-d81b-555c-a552-e6876678176a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.056672, - "y": 28.297316 - }, - "endPoint": { - "x": 332.051253, - "y": 28.277667 - } - } - }, - { - "id": "855eb842-b1e0-599d-9013-a1bf6e1bec68", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.051253, - "y": 28.277667 - }, - "endPoint": { - "x": 332.047003, - "y": 28.25775 - } - } - }, - { - "id": "b5416805-1954-5ae3-8d02-e0ca5eb650ac", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.047003, - "y": 28.25775 - }, - "endPoint": { - "x": 332.043931, - "y": 28.237618 - } - } - }, - { - "id": "f53d5345-ba1a-5de4-a598-ac55956e9c1b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.043931, - "y": 28.237618 - }, - "endPoint": { - "x": 332.042047, - "y": 28.217322 - } - } - }, - { - "id": "1a95e829-7c04-5abe-b5c2-d724dfc6bb01", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.042047, - "y": 28.217322 - }, - "endPoint": { - "x": 332.041263, - "y": 28.203137 - } - } - }, - { - "id": "19c38cb7-a0dd-58b7-946f-6dcb6f04dc25", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.041263, - "y": 28.203137 - }, - "endPoint": { - "x": 332.040703, - "y": 28.188941 - } - } - }, - { - "id": "2dbff548-ac44-5ee3-94c2-4d10c3efd491", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.040703, - "y": 28.188941 - }, - "endPoint": { - "x": 332.040367, - "y": 28.174738 - } - } - }, - { - "id": "84ea897e-3ac6-5618-b325-6820f7687bed", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.040367, - "y": 28.174738 - }, - "endPoint": { - "x": 332.040254, - "y": 28.160531 - } - } - }, - { - "id": "daa165ad-5405-5e01-8f39-4e5365f7b3ce", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.040254, - "y": 28.160531 - }, - "endPoint": { - "x": 332.040367, - "y": 28.143178 - } - } - }, - { - "id": "a39a1d44-58ca-5b68-b2c4-7279af57c154", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.040367, - "y": 28.143178 - }, - "endPoint": { - "x": 332.040703, - "y": 28.125828 - } - } - }, - { - "id": "b2dcee66-b7a2-508f-a616-b21dbaed0934", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.040703, - "y": 28.125828 - }, - "endPoint": { - "x": 332.041263, - "y": 28.108484 - } - } - }, - { - "id": "7d411fac-680d-5274-aa86-e27acf0c113b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.041263, - "y": 28.108484 - }, - "endPoint": { - "x": 332.042047, - "y": 28.091148 - } - } - }, - { - "id": "4919bb55-16e5-55b9-b293-e24bc70a2cce", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.042047, - "y": 28.091148 - }, - "endPoint": { - "x": 332.043034, - "y": 28.073888 - } - } - }, - { - "id": "14fa1045-ced0-5b81-b15a-c120a87d9bc4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.043034, - "y": 28.073888 - }, - "endPoint": { - "x": 332.044207, - "y": 28.05664 - } - } - }, - { - "id": "bd952780-2c94-5f21-8173-1ed038b7cd49", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.044207, - "y": 28.05664 - }, - "endPoint": { - "x": 332.045568, - "y": 28.039407 - } - } - }, - { - "id": "5fb75132-6957-5ecc-93cc-69549a24fad6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.045568, - "y": 28.039407 - }, - "endPoint": { - "x": 332.047116, - "y": 28.022188 - } - } - }, - { - "id": "e594fc8b-7921-5e8e-9d1f-cb6b4fe4cc25", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.047116, - "y": 28.022188 - }, - "endPoint": { - "x": 332.049285, - "y": 28.000422 - } - } - }, - { - "id": "c9cf141a-7b9c-5513-8191-247505dcce9b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.049285, - "y": 28.000422 - }, - "endPoint": { - "x": 332.051642, - "y": 27.978675 - } - } - }, - { - "id": "e2182c3d-a66a-5a1a-9924-5067f4f0b412", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.051642, - "y": 27.978675 - }, - "endPoint": { - "x": 332.054184, - "y": 27.95695 - } - } - }, - { - "id": "3a5dbd01-43eb-5234-91af-4247cc66b07b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.054184, - "y": 27.95695 - }, - "endPoint": { - "x": 332.056913, - "y": 27.935247 - } - } - }, - { - "id": "1bb721dd-c679-53ce-b6c8-bbc973540b0a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.056913, - "y": 27.935247 - }, - "endPoint": { - "x": 332.061563, - "y": 27.904507 - } - } - }, - { - "id": "b79b07a2-2145-5bf4-91c4-7a67954ff432", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.061563, - "y": 27.904507 - }, - "endPoint": { - "x": 332.067483, - "y": 27.873999 - } - } - }, - { - "id": "9b51148b-8af9-50a8-8bae-c9ad2bf8edf2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.067483, - "y": 27.873999 - }, - "endPoint": { - "x": 332.074665, - "y": 27.843764 - } - } - }, - { - "id": "2534dac2-c15a-595c-9497-fc7e7bd24454", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.074665, - "y": 27.843764 - }, - "endPoint": { - "x": 332.083099, - "y": 27.81384 - } - } - }, - { - "id": "e63c0cf6-e3e4-5f6b-a6f0-2e9ef605784d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.083099, - "y": 27.81384 - }, - "endPoint": { - "x": 332.087796, - "y": 27.800649 - } - } - }, - { - "id": "81102e4b-1a1d-5c46-869b-661f4ee020e4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.087796, - "y": 27.800649 - }, - "endPoint": { - "x": 332.093687, - "y": 27.78798 - } - } - }, - { - "id": "ea597271-d2f2-5672-8c03-498cce4be03b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.093687, - "y": 27.78798 - }, - "endPoint": { - "x": 332.10073, - "y": 27.775913 - } - } - }, - { - "id": "25599254-a80d-581e-b7ad-db52aee7016b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.10073, - "y": 27.775913 - }, - "endPoint": { - "x": 332.108881, - "y": 27.764529 - } - } - }, - { - "id": "eb1f5204-5bd2-5818-aff3-e9887a2ce1b7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.108881, - "y": 27.764529 - }, - "endPoint": { - "x": 332.113995, - "y": 27.758116 - } - } - }, - { - "id": "c92abc97-1d62-54a0-813c-3bc5d0598eba", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.113995, - "y": 27.758116 - }, - "endPoint": { - "x": 332.119175, - "y": 27.751755 - } - } - }, - { - "id": "deaa9194-848b-5ee4-90cd-d79c2e16d57b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.119175, - "y": 27.751755 - }, - "endPoint": { - "x": 332.124418, - "y": 27.745447 - } - } - }, - { - "id": "e17eecc0-2b1d-5ad2-8ae4-180bfd79968a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.124418, - "y": 27.745447 - }, - "endPoint": { - "x": 332.129726, - "y": 27.739193 - } - } - }, - { - "id": "87b61ece-64c9-5651-b53f-7003f64f7b89", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.129726, - "y": 27.739193 - }, - "endPoint": { - "x": 332.146703, - "y": 27.719462 - } - } - }, - { - "id": "9ce1162e-180c-53a2-9ab7-816d0cec96ec", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.146703, - "y": 27.719462 - }, - "endPoint": { - "x": 332.163744, - "y": 27.699784 - } - } - }, - { - "id": "7ee469bd-e40a-5ae8-8c5c-f4adc1a57768", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.163744, - "y": 27.699784 - }, - "endPoint": { - "x": 332.180848, - "y": 27.680162 - } - } - }, - { - "id": "f496e162-545e-56c1-8f2f-cba6e35ca463", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.180848, - "y": 27.680162 - }, - "endPoint": { - "x": 332.198014, - "y": 27.660595 - } - } - }, - { - "id": "e1cd9141-6244-56fb-835c-ea0ab9219132", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.198014, - "y": 27.660595 - }, - "endPoint": { - "x": 332.210654, - "y": 27.646294 - } - } - }, - { - "id": "f834894a-88af-52bb-8fdb-a7a67214cf6d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.210654, - "y": 27.646294 - }, - "endPoint": { - "x": 332.223351, - "y": 27.632045 - } - } - }, - { - "id": "4e6fb009-b7ee-5784-aa69-69118083171b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.223351, - "y": 27.632045 - }, - "endPoint": { - "x": 332.236105, - "y": 27.617847 - } - } - }, - { - "id": "883dd59f-bef5-5968-8f44-4ceb2dccfa33", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.236105, - "y": 27.617847 - }, - "endPoint": { - "x": 332.248918, - "y": 27.603701 - } - } - }, - { - "id": "f406e181-9977-54ee-8f52-2e7f020dce4a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.248918, - "y": 27.603701 - }, - "endPoint": { - "x": 332.254674, - "y": 27.597429 - } - } - }, - { - "id": "fa534c13-6bd6-57fa-913f-2409d48d506c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.254674, - "y": 27.597429 - }, - "endPoint": { - "x": 332.260487, - "y": 27.59121 - } - } - }, - { - "id": "031f8e72-71f6-53e5-860e-98c9ec18f37b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.260487, - "y": 27.59121 - }, - "endPoint": { - "x": 332.266356, - "y": 27.585045 - } - } - }, - { - "id": "4abdcb29-3abe-5097-b8f3-9b899012f9e3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.266356, - "y": 27.585045 - }, - "endPoint": { - "x": 332.272282, - "y": 27.578933 - } - } - }, - { - "id": "fb4353a6-5115-577b-a4c5-cdd3b3ae4495", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.272282, - "y": 27.578933 - }, - "endPoint": { - "x": 332.280999, - "y": 27.572213 - } - } - }, - { - "id": "6555fdea-728f-5520-964c-2f555944e108", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.280999, - "y": 27.572213 - }, - "endPoint": { - "x": 332.291038, - "y": 27.568209 - } - } - }, - { - "id": "9927b760-c677-558f-a672-ecd355a9b30a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.291038, - "y": 27.568209 - }, - "endPoint": { - "x": 332.301785, - "y": 27.567072 - } - } - }, - { - "id": "cab7b68a-7707-5f21-99b1-27b84c953b72", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.301785, - "y": 27.567072 - }, - "endPoint": { - "x": 332.31263, - "y": 27.568954 - } - } - }, - { - "id": "91cb3728-68ec-5c8c-85a6-57a1ffd52e20", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.31263, - "y": 27.568954 - }, - "endPoint": { - "x": 332.326838, - "y": 27.572006 - } - } - }, - { - "id": "306135f1-4b61-561e-b518-4f40850ad3c5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.326838, - "y": 27.572006 - }, - "endPoint": { - "x": 332.34123, - "y": 27.572186 - } - } - }, - { - "id": "c240d564-1a06-5bb8-a759-0648cc707b5a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.34123, - "y": 27.572186 - }, - "endPoint": { - "x": 332.355375, - "y": 27.569534 - } - } - }, - { - "id": "3038eec1-9104-51a8-b2b2-142ebf8924e5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.355375, - "y": 27.569534 - }, - "endPoint": { - "x": 332.368847, - "y": 27.564085 - } - } - }, - { - "id": "e55a6d3d-47e4-5332-b9ca-2f071cf4dc04", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.368847, - "y": 27.564085 - }, - "endPoint": { - "x": 332.378544, - "y": 27.558605 - } - } - }, - { - "id": "40afe0da-325b-5c9c-a0e0-15513f53c9ae", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.378544, - "y": 27.558605 - }, - "endPoint": { - "x": 332.387883, - "y": 27.552556 - } - } - }, - { - "id": "568acb15-9c6a-5677-ac8c-bfde2230693f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.387883, - "y": 27.552556 - }, - "endPoint": { - "x": 332.396842, - "y": 27.545955 - } - } - }, - { - "id": "6e672e9a-5d79-5f5f-9083-87c5f6e197a2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.396842, - "y": 27.545955 - }, - "endPoint": { - "x": 332.405394, - "y": 27.53882 - } - } - }, - { - "id": "8f71b3e4-433d-5b05-ba6d-3630f647f336", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.405394, - "y": 27.53882 - }, - "endPoint": { - "x": 332.407822, - "y": 27.536193 - } - } - }, - { - "id": "ea03b2de-3fbe-5902-84af-57246f289d2b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.407822, - "y": 27.536193 - }, - "endPoint": { - "x": 332.409671, - "y": 27.533169 - } - } - }, - { - "id": "44c0c975-76a6-5f91-9faf-0bbfc0a95b3c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.409671, - "y": 27.533169 - }, - "endPoint": { - "x": 332.410894, - "y": 27.529843 - } - } - }, - { - "id": "f290dc07-f86d-5c95-9bd2-d049fa9b6f9b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.410894, - "y": 27.529843 - }, - "endPoint": { - "x": 332.411446, - "y": 27.526308 - } - } - }, - { - "id": "af121321-280f-5156-ab92-c2bef64935ae", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.411446, - "y": 27.526308 - }, - "endPoint": { - "x": 332.411556, - "y": 27.523587 - } - } - }, - { - "id": "6b0d0490-18be-554a-a958-247ff93a118a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.411556, - "y": 27.523587 - }, - "endPoint": { - "x": 332.411582, - "y": 27.520866 - } - } - }, - { - "id": "0b1ae1c9-a5e6-553c-afb5-2d2d293218cd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.411582, - "y": 27.520866 - }, - "endPoint": { - "x": 332.411523, - "y": 27.518144 - } - } - }, - { - "id": "e44b7823-9430-5348-bea8-530024c7b4e8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.411523, - "y": 27.518144 - }, - "endPoint": { - "x": 332.411379, - "y": 27.515425 - } - } - }, - { - "id": "854ae11d-539b-5311-a327-4cfa8d220ade", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.411379, - "y": 27.515425 - }, - "endPoint": { - "x": 332.410164, - "y": 27.498237 - } - } - }, - { - "id": "bde65b10-b172-52db-937d-6d53432fc6d1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.410164, - "y": 27.498237 - }, - "endPoint": { - "x": 332.408864, - "y": 27.481056 - } - } - }, - { - "id": "5735c711-ebbb-5ea2-a023-ed4bd5a0c04d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.408864, - "y": 27.481056 - }, - "endPoint": { - "x": 332.40748, - "y": 27.463881 - } - } - }, - { - "id": "4e859a4b-51c1-550f-9450-dededdc2aa51", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.40748, - "y": 27.463881 - }, - "endPoint": { - "x": 332.406012, - "y": 27.446713 - } - } - }, - { - "id": "2c2694c2-f6bd-5642-83cd-f8e5e2e62fa5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.406012, - "y": 27.446713 - }, - "endPoint": { - "x": 332.39645, - "y": 27.344983 - } - } - }, - { - "id": "d464cbe1-3468-5fce-9a22-fdf4028cf6b6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.39645, - "y": 27.344983 - }, - "endPoint": { - "x": 332.385672, - "y": 27.243378 - } - } - }, - { - "id": "b29b1d6e-2ab3-5f28-8a82-295c9a97d280", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.385672, - "y": 27.243378 - }, - "endPoint": { - "x": 332.373679, - "y": 27.14191 - } - } - }, - { - "id": "53fafb3f-c059-5972-951d-9207797d3d52", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.373679, - "y": 27.14191 - }, - "endPoint": { - "x": 332.360471, - "y": 27.040589 - } - } - }, - { - "id": "d2c0518c-a9ea-5d74-9d7d-795018eee3e2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.360471, - "y": 27.040589 - }, - "endPoint": { - "x": 332.355309, - "y": 27.007281 - } - } - }, - { - "id": "810f6137-91f0-5687-9aa5-413be46401e9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.355309, - "y": 27.007281 - }, - "endPoint": { - "x": 332.348941, - "y": 26.974194 - } - } - }, - { - "id": "734dd96b-ba0c-5252-978e-3240fdd966d7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.348941, - "y": 26.974194 - }, - "endPoint": { - "x": 332.341376, - "y": 26.94136 - } - } - }, - { - "id": "58b588d3-6c96-5fe3-8494-5f849e186591", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.341376, - "y": 26.94136 - }, - "endPoint": { - "x": 332.33262, - "y": 26.908811 - } - } - }, - { - "id": "823702a8-dcd2-53bf-8184-e980d45c3828", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.33262, - "y": 26.908811 - }, - "endPoint": { - "x": 332.329774, - "y": 26.899577 - } - } - }, - { - "id": "b5ce2425-0674-5e74-b3bc-bdf89a0a137f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.329774, - "y": 26.899577 - }, - "endPoint": { - "x": 332.326601, - "y": 26.890452 - } - } - }, - { - "id": "26d6f5cc-1bef-54e8-b5af-c04dba402237", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.326601, - "y": 26.890452 - }, - "endPoint": { - "x": 332.323104, - "y": 26.881447 - } - } - }, - { - "id": "00e8394d-343b-5486-b9ef-456de58ea07c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.323104, - "y": 26.881447 - }, - "endPoint": { - "x": 332.319285, - "y": 26.872571 - } - } - }, - { - "id": "390b584a-4dbe-5145-85e5-c6bcc58d5467", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.319285, - "y": 26.872571 - }, - "endPoint": { - "x": 332.316759, - "y": 26.867398 - } - } - }, - { - "id": "672c1ca1-3f0e-5872-9cfa-1c614437be8f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.316759, - "y": 26.867398 - }, - "endPoint": { - "x": 332.313928, - "y": 26.862391 - } - } - }, - { - "id": "27e6b0a5-3984-5378-afc5-611c484418cd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.313928, - "y": 26.862391 - }, - "endPoint": { - "x": 332.310801, - "y": 26.857563 - } - } - }, - { - "id": "26f6d851-f323-5d53-8716-45e306c7860e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.310801, - "y": 26.857563 - }, - "endPoint": { - "x": 332.307385, - "y": 26.852929 - } - } - }, - { - "id": "a13be13f-f027-5e35-bb43-fc3074c43799", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.307385, - "y": 26.852929 - }, - "endPoint": { - "x": 332.301626, - "y": 26.846279 - } - } - }, - { - "id": "26205901-9035-54c4-8504-6744e037079e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.301626, - "y": 26.846279 - }, - "endPoint": { - "x": 332.295267, - "y": 26.840231 - } - } - }, - { - "id": "1ef106e4-ed12-5104-836a-ac811ad4f490", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.295267, - "y": 26.840231 - }, - "endPoint": { - "x": 332.288353, - "y": 26.834825 - } - } - }, - { - "id": "8006483a-d8a7-56e2-ad3f-5bdbbda300c6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.288353, - "y": 26.834825 - }, - "endPoint": { - "x": 332.280932, - "y": 26.830102 - } - } - }, - { - "id": "964c4317-4ef4-5002-b8da-0ddaa619afc5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.280932, - "y": 26.830102 - }, - "endPoint": { - "x": 332.272214, - "y": 26.825617 - } - } - }, - { - "id": "44c6f5d5-f9db-5629-a5ae-f50a8c2b1307", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.272214, - "y": 26.825617 - }, - "endPoint": { - "x": 332.263157, - "y": 26.821911 - } - } - }, - { - "id": "e75196cb-2141-5d77-8434-baa1f87e655e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.263157, - "y": 26.821911 - }, - "endPoint": { - "x": 332.253814, - "y": 26.819001 - } - } - }, - { - "id": "ed2606d0-357d-5bee-9f09-e96a11581f85", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.253814, - "y": 26.819001 - }, - "endPoint": { - "x": 332.244236, - "y": 26.816906 - } - } - }, - { - "id": "2d969dab-6d86-538b-adcc-39c7dd6ee0de", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.244236, - "y": 26.816906 - }, - "endPoint": { - "x": 332.227033, - "y": 26.814012 - } - } - }, - { - "id": "aa213616-139a-5979-b033-09ffef4f5c50", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.227033, - "y": 26.814012 - }, - "endPoint": { - "x": 332.209799, - "y": 26.811302 - } - } - }, - { - "id": "23c572bb-6f8c-5fa7-9d82-d489a2b6008f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.209799, - "y": 26.811302 - }, - "endPoint": { - "x": 332.192538, - "y": 26.808777 - } - } - }, - { - "id": "a511e140-9edc-5936-96d3-794670469ff6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.192538, - "y": 26.808777 - }, - "endPoint": { - "x": 332.175251, - "y": 26.806436 - } - } - }, - { - "id": "91b48b1d-b952-5a0f-a274-436d9134babf", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.175251, - "y": 26.806436 - }, - "endPoint": { - "x": 332.147464, - "y": 26.802918 - } - } - }, - { - "id": "f28649a5-e887-5299-8f12-3b703faad231", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.147464, - "y": 26.802918 - }, - "endPoint": { - "x": 332.119654, - "y": 26.799585 - } - } - }, - { - "id": "209528cc-78bd-544d-a281-b0aa4ef080cb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.119654, - "y": 26.799585 - }, - "endPoint": { - "x": 332.091823, - "y": 26.796438 - } - } - }, - { - "id": "7defe1fe-ada6-5eb1-be1e-91b14707edad", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.091823, - "y": 26.796438 - }, - "endPoint": { - "x": 332.063971, - "y": 26.793475 - } - } - }, - { - "id": "73b51d7b-c660-578d-a617-970185deb125", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.063971, - "y": 26.793475 - }, - "endPoint": { - "x": 332.014898, - "y": 26.788439 - } - } - }, - { - "id": "602a03fd-17b4-50d3-ae52-2d05c93d1135", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.014898, - "y": 26.788439 - }, - "endPoint": { - "x": 331.965822, - "y": 26.78344 - } - } - }, - { - "id": "6aafa8f4-0752-559d-89ca-dc15e87e4769", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.965822, - "y": 26.78344 - }, - "endPoint": { - "x": 331.916741, - "y": 26.778476 - } - } - }, - { - "id": "c868565f-4f95-5360-8941-8e1987876c2e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.916741, - "y": 26.778476 - }, - "endPoint": { - "x": 331.867657, - "y": 26.773549 - } - } - }, - { - "id": "a256b4eb-08db-51ed-8b1e-a9f90bd76cd8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.867657, - "y": 26.773549 - }, - "endPoint": { - "x": 331.853623, - "y": 26.772164 - } - } - }, - { - "id": "00a53283-ff8a-5664-af96-0e1b5222d21f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.853623, - "y": 26.772164 - }, - "endPoint": { - "x": 331.839586, - "y": 26.770816 - } - } - }, - { - "id": "69dae425-75d1-55b8-9bd0-9519f7b12126", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.839586, - "y": 26.770816 - }, - "endPoint": { - "x": 331.825545, - "y": 26.769504 - } - } - }, - { - "id": "c13f9b7d-1d7b-51c4-97c6-f6c51bee4b61", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.825545, - "y": 26.769504 - }, - "endPoint": { - "x": 331.811501, - "y": 26.768228 - } - } - }, - { - "id": "2bfcae19-7b90-50bf-a751-7e3fcc465b2a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.811501, - "y": 26.768228 - }, - "endPoint": { - "x": 331.791684, - "y": 26.766503 - } - } - }, - { - "id": "50eb4e79-28ba-5260-a4ba-94b606882284", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.791684, - "y": 26.766503 - }, - "endPoint": { - "x": 331.771859, - "y": 26.764878 - } - } - }, - { - "id": "0ad52b7b-d23e-5b66-b87d-fd5240cefe6c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.771859, - "y": 26.764878 - }, - "endPoint": { - "x": 331.752026, - "y": 26.763351 - } - } - }, - { - "id": "a1c18196-9885-5ba9-a1f9-23a9f93b2e0b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.752026, - "y": 26.763351 - }, - "endPoint": { - "x": 331.732186, - "y": 26.761922 - } - } - }, - { - "id": "9806862e-d288-5b21-991f-b4976ffa335b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.732186, - "y": 26.761922 - }, - "endPoint": { - "x": 331.700181, - "y": 26.759748 - } - } - }, - { - "id": "8da7ee5f-9f15-5074-8fc9-1b8932b92159", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.700181, - "y": 26.759748 - }, - "endPoint": { - "x": 331.668169, - "y": 26.757673 - } - } - }, - { - "id": "34cf7a33-1e96-5085-bc1e-0ce16d1c3349", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.668169, - "y": 26.757673 - }, - "endPoint": { - "x": 331.636151, - "y": 26.755696 - } - } - }, - { - "id": "0b6d3112-831b-56a0-9d72-98b7fdd8b0f5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.636151, - "y": 26.755696 - }, - "endPoint": { - "x": 331.604127, - "y": 26.753819 - } - } - }, - { - "id": "58288d1e-d1e2-5514-a3a5-cf61d9c6f883", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.604127, - "y": 26.753819 - }, - "endPoint": { - "x": 331.595795, - "y": 26.753403 - } - } - }, - { - "id": "7f4164ef-071c-5bf0-9415-e28381d5dae9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.595795, - "y": 26.753403 - }, - "endPoint": { - "x": 331.587457, - "y": 26.753105 - } - } - }, - { - "id": "1f14b563-b67c-51e0-af92-13192011ee30", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.587457, - "y": 26.753105 - }, - "endPoint": { - "x": 331.579117, - "y": 26.752927 - } - } - }, - { - "id": "6dc99e45-cac4-5b5c-8b74-5e9865480960", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.579117, - "y": 26.752927 - }, - "endPoint": { - "x": 331.570774, - "y": 26.752868 - } - } - }, - { - "id": "a4e61c17-da58-587b-bd46-714d979fc221", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.570774, - "y": 26.752868 - }, - "endPoint": { - "x": 331.556124, - "y": 26.752927 - } - } - }, - { - "id": "1804bd3d-5380-53f4-b4a3-dc74d5076139", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.556124, - "y": 26.752927 - }, - "endPoint": { - "x": 331.541475, - "y": 26.753105 - } - } - }, - { - "id": "7af201f8-2e63-5ce0-992c-2ea7ab1aff43", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.541475, - "y": 26.753105 - }, - "endPoint": { - "x": 331.526828, - "y": 26.753403 - } - } - }, - { - "id": "46f31ba8-4ac1-553b-bd35-876ad64e2628", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.526828, - "y": 26.753403 - }, - "endPoint": { - "x": 331.512184, - "y": 26.753819 - } - } - }, - { - "id": "04ab22be-b3e0-55de-aa30-3b8494df8b98", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.512184, - "y": 26.753819 - }, - "endPoint": { - "x": 331.499438, - "y": 26.754695 - } - } - }, - { - "id": "76bd14a2-abf6-5a87-86d5-ecf88cca3e73", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.499438, - "y": 26.754695 - }, - "endPoint": { - "x": 331.486806, - "y": 26.756486 - } - } - }, - { - "id": "97705294-7ff5-5b5c-8e9b-d6393b2e137d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.486806, - "y": 26.756486 - }, - "endPoint": { - "x": 331.474335, - "y": 26.759184 - } - } - }, - { - "id": "72b82c7e-742d-5a8a-b6cb-da275623cb8a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.474335, - "y": 26.759184 - }, - "endPoint": { - "x": 331.462077, - "y": 26.76278 - } - } - }, - { - "id": "3d23eebc-4014-5ccc-84a0-b4653e34389f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.462077, - "y": 26.76278 - }, - "endPoint": { - "x": 331.457504, - "y": 26.764814 - } - } - }, - { - "id": "542fbcd3-ae3a-5dab-ad96-a1d88ef24009", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.457504, - "y": 26.764814 - }, - "endPoint": { - "x": 331.453444, - "y": 26.767661 - } - } - }, - { - "id": "91e57a97-1566-5694-b159-87cd1fefb31d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.453444, - "y": 26.767661 - }, - "endPoint": { - "x": 331.450003, - "y": 26.77123 - } - } - }, - { - "id": "10553406-a4e7-5d35-8a51-798613eed6a3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.450003, - "y": 26.77123 - }, - "endPoint": { - "x": 331.447286, - "y": 26.775432 - } - } - }, - { - "id": "29234a09-de99-5e82-bfc1-72e22276624f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.447286, - "y": 26.775432 - }, - "endPoint": { - "x": 331.445826, - "y": 26.778426 - } - } - }, - { - "id": "7383f095-a2ee-5bea-a846-a5534dff8277", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.445826, - "y": 26.778426 - }, - "endPoint": { - "x": 331.444507, - "y": 26.781483 - } - } - }, - { - "id": "86277cd3-0c11-5757-8562-f56f5f78ed95", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.444507, - "y": 26.781483 - }, - "endPoint": { - "x": 331.443331, - "y": 26.784598 - } - } - }, - { - "id": "c5faf0ea-ac8a-56ec-831e-141590de516a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.443331, - "y": 26.784598 - }, - "endPoint": { - "x": 331.442301, - "y": 26.787765 - } - } - }, - { - "id": "21eb5d62-8964-5c11-a041-4ae06763d70b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.442301, - "y": 26.787765 - }, - "endPoint": { - "x": 331.440621, - "y": 26.793639 - } - } - }, - { - "id": "7f483b6f-ab92-571b-8c7a-43ad225fb2c9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.440621, - "y": 26.793639 - }, - "endPoint": { - "x": 331.439091, - "y": 26.799553 - } - } - }, - { - "id": "b256e32b-ca0d-5b97-96fa-24f5b545f51a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.439091, - "y": 26.799553 - }, - "endPoint": { - "x": 331.43771, - "y": 26.805503 - } - } - }, - { - "id": "b0c8bb98-24b5-5f7a-bd85-fc17e03db2ee", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.43771, - "y": 26.805503 - }, - "endPoint": { - "x": 331.43648, - "y": 26.811487 - } - } - }, - { - "id": "b6482aee-b749-509b-a61c-65127d935c92", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.43648, - "y": 26.811487 - }, - "endPoint": { - "x": 331.435728, - "y": 26.815535 - } - } - }, - { - "id": "70c316bf-6759-507b-8176-e58a0e993d2e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.435728, - "y": 26.815535 - }, - "endPoint": { - "x": 331.435029, - "y": 26.819591 - } - } - }, - { - "id": "3393e359-aafe-5e70-a6bd-82d7162b8786", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.435029, - "y": 26.819591 - }, - "endPoint": { - "x": 331.434381, - "y": 26.823657 - } - } - }, - { - "id": "14734274-aa5a-569c-9c1c-b7116e3a76d3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.434381, - "y": 26.823657 - }, - "endPoint": { - "x": 331.433787, - "y": 26.827731 - } - } - }, - { - "id": "96bb69f0-a53c-5118-8a14-8c6e49967d16", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.433787, - "y": 26.827731 - }, - "endPoint": { - "x": 331.43168, - "y": 26.843033 - } - } - }, - { - "id": "8f06c3ca-3c63-5c7c-9410-835d6e803a97", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.43168, - "y": 26.843033 - }, - "endPoint": { - "x": 331.429625, - "y": 26.858343 - } - } - }, - { - "id": "47e3b31f-3740-594c-829e-9fdec179ff4a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.429625, - "y": 26.858343 - }, - "endPoint": { - "x": 331.427623, - "y": 26.87366 - } - } - }, - { - "id": "caca746a-66ce-59d7-98fa-b2939ec3cc0b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.427623, - "y": 26.87366 - }, - "endPoint": { - "x": 331.425674, - "y": 26.888983 - } - } - }, - { - "id": "b1ebd20c-b487-5eae-9a93-e7f36f4e74c1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.425674, - "y": 26.888983 - }, - "endPoint": { - "x": 331.412143, - "y": 27.02218 - } - } - }, - { - "id": "eea56fa1-ad91-5a9b-9147-8bac4a5ab429", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.412143, - "y": 27.02218 - }, - "endPoint": { - "x": 331.404907, - "y": 27.155791 - } - } - }, - { - "id": "ac3c6d19-5118-50bc-8591-a813fc432200", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.404907, - "y": 27.155791 - }, - "endPoint": { - "x": 331.403971, - "y": 27.289596 - } - } - }, - { - "id": "e40bab2d-996e-5593-b99c-63bc6959c405", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.403971, - "y": 27.289596 - }, - "endPoint": { - "x": 331.409343, - "y": 27.42337 - } - } - }, - { - "id": "9a56634c-c69b-5a43-9aa5-46264a8752f0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.409343, - "y": 27.42337 - }, - "endPoint": { - "x": 331.428337, - "y": 27.671663 - } - } - }, - { - "id": "fb5673ca-9a8d-5c23-8488-62f0c4bf0c5e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.428337, - "y": 27.671663 - }, - "endPoint": { - "x": 331.453598, - "y": 27.919357 - } - } - }, - { - "id": "6c65b386-e4c5-5415-9dec-d5c10321c553", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.453598, - "y": 27.919357 - }, - "endPoint": { - "x": 331.485112, - "y": 28.166333 - } - } - }, - { - "id": "818ef59b-7cd4-5d7d-a59c-2e28639f48d6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.485112, - "y": 28.166333 - }, - "endPoint": { - "x": 331.522865, - "y": 28.412473 - } - } - }, - { - "id": "72985d31-a6a9-5064-a8d8-94121d2cd215", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.522865, - "y": 28.412473 - }, - "endPoint": { - "x": 331.524822, - "y": 28.424189 - } - } - }, - { - "id": "a01f80de-d76e-5162-bdc0-978455af0693", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.524822, - "y": 28.424189 - }, - "endPoint": { - "x": 331.526795, - "y": 28.435903 - } - } - }, - { - "id": "a7b48d85-3f26-5205-8e3e-a758ce4bd312", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.526795, - "y": 28.435903 - }, - "endPoint": { - "x": 331.528784, - "y": 28.447614 - } - } - }, - { - "id": "35c0f627-9b05-57b9-b37f-219c7be68399", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.528784, - "y": 28.447614 - }, - "endPoint": { - "x": 331.530788, - "y": 28.459322 - } - } - }, - { - "id": "8043590f-c009-5726-98b4-f531b5a477d3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.530788, - "y": 28.459322 - }, - "endPoint": { - "x": 331.530923, - "y": 28.460059 - } - } - }, - { - "id": "c63ad538-6db8-51f4-9961-2ff71a78f4d9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.530923, - "y": 28.460059 - }, - "endPoint": { - "x": 331.531074, - "y": 28.460792 - } - } - }, - { - "id": "0e251e38-0ac5-5e70-9142-a88f45ba6d98", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.531074, - "y": 28.460792 - }, - "endPoint": { - "x": 331.53124, - "y": 28.461521 - } - } - }, - { - "id": "8560acbe-7df1-586f-b0c6-3bcd8131e645", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.53124, - "y": 28.461521 - }, - "endPoint": { - "x": 331.531422, - "y": 28.462247 - } - } - }, - { - "id": "1ea491c4-5757-5658-a467-e0cf0ece8446", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.531422, - "y": 28.462247 - }, - "endPoint": { - "x": 331.532507, - "y": 28.465921 - } - } - }, - { - "id": "d11edc03-3d92-5787-a297-1086495e12cb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.532507, - "y": 28.465921 - }, - "endPoint": { - "x": 331.533814, - "y": 28.469517 - } - } - }, - { - "id": "4dfa2cb9-d5dc-5ad5-ad97-9679025a0629", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.533814, - "y": 28.469517 - }, - "endPoint": { - "x": 331.535339, - "y": 28.473026 - } - } - }, - { - "id": "bbd210c5-d25f-562c-9400-1704f8c840ed", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.535339, - "y": 28.473026 - }, - "endPoint": { - "x": 331.537079, - "y": 28.476438 - } - } - }, - { - "id": "5df28912-818c-5a18-aed2-a3f828e62847", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.537079, - "y": 28.476438 - }, - "endPoint": { - "x": 331.540302, - "y": 28.482061 - } - } - }, - { - "id": "f1054d55-a6dd-5bf5-8cc9-182963defba8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.540302, - "y": 28.482061 - }, - "endPoint": { - "x": 331.543726, - "y": 28.487562 - } - } - }, - { - "id": "aea2b4bf-ed86-5d09-8cb5-da74389465ea", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.543726, - "y": 28.487562 - }, - "endPoint": { - "x": 331.547346, - "y": 28.492936 - } - } - }, - { - "id": "09d7d405-67a5-5938-91ae-b24eeb682e94", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.547346, - "y": 28.492936 - }, - "endPoint": { - "x": 331.55116, - "y": 28.498176 - } - } - }, - { - "id": "d9187c3f-7e95-555f-92bf-34b20f29cd5f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.55116, - "y": 28.498176 - }, - "endPoint": { - "x": 331.555572, - "y": 28.50367 - } - } - }, - { - "id": "90280fd2-5fe2-5f90-9749-4eb8a77f8a6e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.555572, - "y": 28.50367 - }, - "endPoint": { - "x": 331.560295, - "y": 28.50889 - } - } - }, - { - "id": "2b1a45f9-9016-5488-9881-fedb895d77be", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.560295, - "y": 28.50889 - }, - "endPoint": { - "x": 331.565317, - "y": 28.513824 - } - } - }, - { - "id": "b756ab47-b9e1-5580-b465-e9fe8b557996", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.565317, - "y": 28.513824 - }, - "endPoint": { - "x": 331.570625, - "y": 28.518458 - } - } - }, - { - "id": "3b287b54-0c94-597e-b548-8ce507e7db90", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.570625, - "y": 28.518458 - }, - "endPoint": { - "x": 331.573122, - "y": 28.520237 - } - } - }, - { - "id": "9cc1e821-78f1-5041-85f5-f1232fc5cb64", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.573122, - "y": 28.520237 - }, - "endPoint": { - "x": 331.575828, - "y": 28.521648 - } - } - }, - { - "id": "925c2276-0caa-5f30-a841-5ee4f31d8c75", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.575828, - "y": 28.521648 - }, - "endPoint": { - "x": 331.578702, - "y": 28.522675 - } - } - }, - { - "id": "1c643a69-6e10-5317-bb02-6f4c26ea0053", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.578702, - "y": 28.522675 - }, - "endPoint": { - "x": 331.581704, - "y": 28.523298 - } - } - }, - { - "id": "7832d215-8d39-541f-a21d-e3af281ceac5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.581704, - "y": 28.523298 - }, - "endPoint": { - "x": 331.585385, - "y": 28.523789 - } - } - }, - { - "id": "a509f5b1-bc16-5515-b139-64583f0ba186", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.585385, - "y": 28.523789 - }, - "endPoint": { - "x": 331.589069, - "y": 28.524257 - } - } - }, - { - "id": "bcdde1ba-0e6d-5d5d-b7c9-ecbac0770220", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.589069, - "y": 28.524257 - }, - "endPoint": { - "x": 331.592756, - "y": 28.524702 - } - } - }, - { - "id": "b4a93467-a5bf-5394-bdb6-fcc6722634e1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.592756, - "y": 28.524702 - }, - "endPoint": { - "x": 331.596446, - "y": 28.525125 - } - } - }, - { - "id": "526c793c-54ed-5a68-bee9-d1552af5554b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.596446, - "y": 28.525125 - }, - "endPoint": { - "x": 331.60083, - "y": 28.525603 - } - } - }, - { - "id": "7ebd25e7-6900-565e-88e9-ad92b63238d2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.60083, - "y": 28.525603 - }, - "endPoint": { - "x": 331.605217, - "y": 28.526058 - } - } - }, - { - "id": "7daf381d-42e0-58a2-b1b6-eae57dfdb552", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.605217, - "y": 28.526058 - }, - "endPoint": { - "x": 331.609605, - "y": 28.526491 - } - } - }, - { - "id": "5896580a-0687-5e92-9955-e6748b00f116", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.609605, - "y": 28.526491 - }, - "endPoint": { - "x": 331.613996, - "y": 28.526901 - } - } - }, - { - "id": "a7027c89-2a8e-5e2f-a5f3-f4d01c4c0dea", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.613996, - "y": 28.526901 - }, - "endPoint": { - "x": 331.619595, - "y": 28.527408 - } - } - }, - { - "id": "12dfbe82-df12-5659-8dcd-c6bb57189616", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.619595, - "y": 28.527408 - }, - "endPoint": { - "x": 331.625194, - "y": 28.527914 - } - } - }, - { - "id": "f754362a-9a2b-5a21-a93e-d97160f2c5ec", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.625194, - "y": 28.527914 - }, - "endPoint": { - "x": 331.630793, - "y": 28.528419 - } - } - }, - { - "id": "2004735d-5e12-599a-a7a6-ca2857088333", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.630793, - "y": 28.528419 - }, - "endPoint": { - "x": 331.636392, - "y": 28.528922 - } - } - }, - { - "id": "d0ba8ecf-31a2-53cb-a0d2-be29e5b54779", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.636392, - "y": 28.528922 - }, - "endPoint": { - "x": 331.640678, - "y": 28.529307 - } - } - }, - { - "id": "2eb880e7-7686-5762-a5aa-c6ea795c9614", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.640678, - "y": 28.529307 - }, - "endPoint": { - "x": 331.644964, - "y": 28.529694 - } - } - }, - { - "id": "a786ffcf-2c11-5173-9e83-dfeab1c312f5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.644964, - "y": 28.529694 - }, - "endPoint": { - "x": 331.649249, - "y": 28.530082 - } - } - }, - { - "id": "c19bfc27-329b-526d-8f57-6450f96702ac", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.649249, - "y": 28.530082 - }, - "endPoint": { - "x": 331.653535, - "y": 28.530472 - } - } - }, - { - "id": "67c3bf51-52cc-51d7-b44f-19d1bb16356c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.653535, - "y": 28.530472 - }, - "endPoint": { - "x": 331.657953, - "y": 28.530879 - } - } - }, - { - "id": "1917ba5f-e59b-5da9-a919-6e43bbb39eab", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.657953, - "y": 28.530879 - }, - "endPoint": { - "x": 331.662371, - "y": 28.531296 - } - } - }, - { - "id": "59738bd7-9f75-575b-9fa9-7455a3f8a22e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.662371, - "y": 28.531296 - }, - "endPoint": { - "x": 331.666787, - "y": 28.531723 - } - } - }, - { - "id": "bc85b730-981e-5604-9dd8-53003957a810", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.666787, - "y": 28.531723 - }, - "endPoint": { - "x": 331.671203, - "y": 28.532159 - } - } - }, - { - "id": "df10b202-ba0d-57ba-b4e2-da968dcf5f55", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.671203, - "y": 28.532159 - }, - "endPoint": { - "x": 331.680263, - "y": 28.53307 - } - } - }, - { - "id": "521368d1-6514-548a-9bf3-121b767f5363", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.680263, - "y": 28.53307 - }, - "endPoint": { - "x": 331.689323, - "y": 28.53399 - } - } - }, - { - "id": "ddb01b29-a477-5c2f-a3e0-a082e3a6df39", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.689323, - "y": 28.53399 - }, - "endPoint": { - "x": 331.698382, - "y": 28.53492 - } - } - }, - { - "id": "5736f55a-8f2c-51f4-bc8a-677110b5016b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.698382, - "y": 28.53492 - }, - "endPoint": { - "x": 331.707439, - "y": 28.535859 - } - } - }, - { - "id": "45c5c6d0-4e49-582e-97cc-3be122014d91", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.707439, - "y": 28.535859 - }, - "endPoint": { - "x": 331.715637, - "y": 28.536898 - } - } - }, - { - "id": "6b132f63-8d98-55db-ae28-170cbf99645c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.715637, - "y": 28.536898 - }, - "endPoint": { - "x": 331.723777, - "y": 28.538298 - } - } - }, - { - "id": "eda6b1fd-7eae-5b18-a15b-80f177d97673", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.723777, - "y": 28.538298 - }, - "endPoint": { - "x": 331.731847, - "y": 28.540058 - } - } - }, - { - "id": "cc6982ca-2dfb-5a9e-b88d-baddb59dbe33", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.731847, - "y": 28.540058 - }, - "endPoint": { - "x": 331.739835, - "y": 28.542174 - } - } - }, - { - "id": "5fbf7af4-bd72-5a82-b7fe-9aba206e7581", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.739835, - "y": 28.542174 - }, - "endPoint": { - "x": 331.752121, - "y": 28.545911 - } - } - }, - { - "id": "c96db864-833a-544c-ad84-246a3cea2d7e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.752121, - "y": 28.545911 - }, - "endPoint": { - "x": 331.764292, - "y": 28.549995 - } - } - }, - { - "id": "ee90d1a3-415a-5c7d-9adc-25466370bb47", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.764292, - "y": 28.549995 - }, - "endPoint": { - "x": 331.776343, - "y": 28.554425 - } - } - }, - { - "id": "52c0d709-2b7b-5284-9827-299a107c6d8d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.776343, - "y": 28.554425 - }, - "endPoint": { - "x": 331.788265, - "y": 28.559196 - } - } - }, - { - "id": "2ad58fe4-d66e-5c01-8d77-c243245053e2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.788265, - "y": 28.559196 - }, - "endPoint": { - "x": 331.796385, - "y": 28.562751 - } - } - }, - { - "id": "49f0b18b-f742-5611-86c1-f84e4bbcac94", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.796385, - "y": 28.562751 - }, - "endPoint": { - "x": 331.804372, - "y": 28.56659 - } - } - }, - { - "id": "c0f16522-7edf-5158-bc59-1248ea4aadda", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.804372, - "y": 28.56659 - }, - "endPoint": { - "x": 331.812218, - "y": 28.570709 - } - } - }, - { - "id": "48e4f783-a053-5b0c-b6e8-5ceecc2ac058", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.812218, - "y": 28.570709 - }, - "endPoint": { - "x": 331.819915, - "y": 28.575106 - } - } - }, - { - "id": "3f68975a-8671-5503-ab7e-52e34baa280a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.819915, - "y": 28.575106 - }, - "endPoint": { - "x": 331.831123, - "y": 28.581956 - } - } - }, - { - "id": "8405b011-9537-55f3-96d0-02496977c633", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.831123, - "y": 28.581956 - }, - "endPoint": { - "x": 331.842163, - "y": 28.589071 - } - } - }, - { - "id": "66a1ff99-e369-5e01-b81d-26cdf077af20", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.842163, - "y": 28.589071 - }, - "endPoint": { - "x": 331.85303, - "y": 28.596448 - } - } - }, - { - "id": "1245949e-c4da-51f7-92be-51e111756c8c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.85303, - "y": 28.596448 - }, - "endPoint": { - "x": 331.863719, - "y": 28.604084 - } - } - }, - { - "id": "be3236d9-376a-5ea7-9bf0-b4891ebe87bb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.863719, - "y": 28.604084 - }, - "endPoint": { - "x": 331.875144, - "y": 28.612722 - } - } - }, - { - "id": "b6b40189-b461-5719-85f2-6e5af62d2254", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.875144, - "y": 28.612722 - }, - "endPoint": { - "x": 331.8863, - "y": 28.621701 - } - } - }, - { - "id": "f76e92b4-4072-5aee-a89d-f48396ea71df", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.8863, - "y": 28.621701 - }, - "endPoint": { - "x": 331.897179, - "y": 28.631014 - } - } - }, - { - "id": "75c589f7-1d88-5a26-94b5-0a1d68103457", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.897179, - "y": 28.631014 - }, - "endPoint": { - "x": 331.907773, - "y": 28.640654 - } - } - }, - { - "id": "ff4624c6-d795-5381-adbc-18e1a438e50e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.907773, - "y": 28.640654 - }, - "endPoint": { - "x": 331.926404, - "y": 28.658428 - } - } - }, - { - "id": "8618dacb-d394-5d2f-912c-01bcea40f8d9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.926404, - "y": 28.658428 - }, - "endPoint": { - "x": 331.944731, - "y": 28.676512 - } - } - }, - { - "id": "1231e256-3001-57a6-a191-625565a155e7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.944731, - "y": 28.676512 - }, - "endPoint": { - "x": 331.962751, - "y": 28.694901 - } - } - }, - { - "id": "16c5e2a1-9935-5f04-987c-2d459262c797", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.962751, - "y": 28.694901 - }, - "endPoint": { - "x": 331.98046, - "y": 28.713594 - } - } - }, - { - "id": "f28637cf-50bc-5d78-b8b0-51ef6e7677e6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.98046, - "y": 28.713594 - }, - "endPoint": { - "x": 332.005162, - "y": 28.740847 - } - } - }, - { - "id": "5c0d2192-1c3a-5df3-9518-f96f697e4f6c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.005162, - "y": 28.740847 - }, - "endPoint": { - "x": 332.029105, - "y": 28.768761 - } - } - }, - { - "id": "b0f11dcc-580a-54e9-ac02-accf6e76c05d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.029105, - "y": 28.768761 - }, - "endPoint": { - "x": 332.052277, - "y": 28.797317 - } - } - }, - { - "id": "e20712b4-9cc2-5350-875a-edaddc8f1927", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.052277, - "y": 28.797317 - }, - "endPoint": { - "x": 332.074665, - "y": 28.826502 - } - } - }, - { - "id": "4c61af2a-f640-5278-8f0d-88eabdad2472", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.074665, - "y": 28.826502 - }, - "endPoint": { - "x": 332.089251, - "y": 28.846906 - } - } - }, - { - "id": "669d0643-510a-5f5e-811b-2cacbebea51a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.089251, - "y": 28.846906 - }, - "endPoint": { - "x": 332.103002, - "y": 28.86787 - } - } - }, - { - "id": "e9c0f9c6-efe3-572e-9ada-78912881b629", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.103002, - "y": 28.86787 - }, - "endPoint": { - "x": 332.115901, - "y": 28.889368 - } - } - }, - { - "id": "3ab86a50-420a-5f13-a71a-3403eba19d68", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.115901, - "y": 28.889368 - }, - "endPoint": { - "x": 332.127932, - "y": 28.911375 - } - } - }, - { - "id": "a758a0c0-ca77-59d5-b53d-836fe512be1d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.127932, - "y": 28.911375 - }, - "endPoint": { - "x": 332.139952, - "y": 28.934932 - } - } - }, - { - "id": "e7e53665-772a-5e8b-a279-8a0fe2cc3e3b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.139952, - "y": 28.934932 - }, - "endPoint": { - "x": 332.151571, - "y": 28.958688 - } - } - }, - { - "id": "de13d5d4-490a-5724-b9fd-4c5ff77e763e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.151571, - "y": 28.958688 - }, - "endPoint": { - "x": 332.162787, - "y": 28.982636 - } - } - }, - { - "id": "07c7ac7f-c0a0-5662-9ff4-e605a03043e2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.162787, - "y": 28.982636 - }, - "endPoint": { - "x": 332.173598, - "y": 29.006772 - } - } - }, - { - "id": "1545460d-7885-548a-8598-52647976a5b3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.173598, - "y": 29.006772 - }, - "endPoint": { - "x": 332.188504, - "y": 29.041376 - } - } - }, - { - "id": "a0289b12-b74e-5755-add9-79f6ed63b941", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.188504, - "y": 29.041376 - }, - "endPoint": { - "x": 332.202998, - "y": 29.076154 - } - } - }, - { - "id": "f980d8b0-0e6a-5a42-acb1-b7711c1749cb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.202998, - "y": 29.076154 - }, - "endPoint": { - "x": 332.217078, - "y": 29.111101 - } - } - }, - { - "id": "d9bce63b-2719-5e0e-9d5c-680fc02a62c4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.217078, - "y": 29.111101 - }, - "endPoint": { - "x": 332.230744, - "y": 29.146214 - } - } - }, - { - "id": "03acbd7b-96a4-5203-9eda-e3c73fa32e4f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.230744, - "y": 29.146214 - }, - "endPoint": { - "x": 332.243536, - "y": 29.179969 - } - } - }, - { - "id": "154dc540-0587-503d-8418-1492d00d11e2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.243536, - "y": 29.179969 - }, - "endPoint": { - "x": 332.256123, - "y": 29.2138 - } - } - }, - { - "id": "c396af9e-7764-5e5e-8a4c-7b515390cf69", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.256123, - "y": 29.2138 - }, - "endPoint": { - "x": 332.268506, - "y": 29.247707 - } - } - }, - { - "id": "00f3a474-914a-5616-b196-5332c6c58e2c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.268506, - "y": 29.247707 - }, - "endPoint": { - "x": 332.280684, - "y": 29.281688 - } - } - }, - { - "id": "a995d18c-640f-592d-a5ec-8ea943da5a25", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.280684, - "y": 29.281688 - }, - "endPoint": { - "x": 332.288699, - "y": 29.304592 - } - } - }, - { - "id": "b03a20ec-61a3-5b8c-9cd2-0848a32f034c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.288699, - "y": 29.304592 - }, - "endPoint": { - "x": 332.296509, - "y": 29.327567 - } - } - }, - { - "id": "07eed9ea-a134-5e58-a8c8-1732493056a5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.296509, - "y": 29.327567 - }, - "endPoint": { - "x": 332.304112, - "y": 29.350611 - } - } - }, - { - "id": "4442084c-7ba4-59c5-bc68-8793aa540c44", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.304112, - "y": 29.350611 - }, - "endPoint": { - "x": 332.311508, - "y": 29.373722 - } - } - }, - { - "id": "886978a3-1abd-51dc-b5e5-04cfea780e32", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.311508, - "y": 29.373722 - }, - "endPoint": { - "x": 332.32139, - "y": 29.406315 - } - } - }, - { - "id": "8d45cdad-c9a0-54fb-80ce-c5182271ac31", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.32139, - "y": 29.406315 - }, - "endPoint": { - "x": 332.330565, - "y": 29.439109 - } - } - }, - { - "id": "2788b526-9881-56dd-bd4e-f106373af919", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.330565, - "y": 29.439109 - }, - "endPoint": { - "x": 332.339027, - "y": 29.472095 - } - } - }, - { - "id": "176315d7-c9e0-57d3-87e6-373c72ea5549", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.339027, - "y": 29.472095 - }, - "endPoint": { - "x": 332.346775, - "y": 29.50526 - } - } - }, - { - "id": "072c0b34-0dcf-51c2-bb51-81112b927a9d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.346775, - "y": 29.50526 - }, - "endPoint": { - "x": 332.353724, - "y": 29.538224 - } - } - }, - { - "id": "0307635e-0f75-526e-8bb9-e6412416891b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.353724, - "y": 29.538224 - }, - "endPoint": { - "x": 332.359949, - "y": 29.571329 - } - } - }, - { - "id": "8a9e7533-1ac6-525b-8506-87f51aae6b43", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.359949, - "y": 29.571329 - }, - "endPoint": { - "x": 332.365449, - "y": 29.604562 - } - } - }, - { - "id": "a1559c32-b558-5e96-959a-4e597312653b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.365449, - "y": 29.604562 - }, - "endPoint": { - "x": 332.370222, - "y": 29.637912 - } - } - }, - { - "id": "aca278a4-5628-5693-b43f-03dd2e8387b9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.370222, - "y": 29.637912 - }, - "endPoint": { - "x": 332.373519, - "y": 29.664613 - } - } - }, - { - "id": "42200340-b50c-524d-9f75-ee64e72f00de", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.373519, - "y": 29.664613 - }, - "endPoint": { - "x": 332.376369, - "y": 29.691364 - } - } - }, - { - "id": "729d2bc6-a60f-517a-97fc-a2d908b09924", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.376369, - "y": 29.691364 - }, - "endPoint": { - "x": 332.378773, - "y": 29.718159 - } - } - }, - { - "id": "f732676c-28bc-511c-9df2-27bcac719883", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.378773, - "y": 29.718159 - }, - "endPoint": { - "x": 332.38073, - "y": 29.744992 - } - } - }, - { - "id": "b78a8b5b-4a3d-5d58-b0fb-3efe3faa6f13", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.38073, - "y": 29.744992 - }, - "endPoint": { - "x": 332.382445, - "y": 29.775065 - } - } - }, - { - "id": "a6085907-588a-574c-9af7-79b91a6d6cde", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.382445, - "y": 29.775065 - }, - "endPoint": { - "x": 332.383712, - "y": 29.805159 - } - } - }, - { - "id": "de466f5b-6afd-52ba-8631-59b208714e52", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.383712, - "y": 29.805159 - }, - "endPoint": { - "x": 332.384531, - "y": 29.835269 - } - } - }, - { - "id": "a0fdc047-ea59-52aa-a6b8-d46af081b4a9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.384531, - "y": 29.835269 - }, - "endPoint": { - "x": 332.3849, - "y": 29.865389 - } - } - }, - { - "id": "39a61af3-6ba3-5811-a0c6-a2951d01ecde", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.3849, - "y": 29.865389 - }, - "endPoint": { - "x": 332.384847, - "y": 29.898611 - } - } - }, - { - "id": "c71fec6c-5073-5c27-b88b-81e5a7f38bfa", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.384847, - "y": 29.898611 - }, - "endPoint": { - "x": 332.384368, - "y": 29.931828 - } - } - }, - { - "id": "2c6a9e4f-eecc-51b0-a85e-38d9c95fee20", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.384368, - "y": 29.931828 - }, - "endPoint": { - "x": 332.383463, - "y": 29.965036 - } - } - }, - { - "id": "8bd877ed-a3bc-52d1-8dac-39d448199822", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.383463, - "y": 29.965036 - }, - "endPoint": { - "x": 332.382132, - "y": 29.998231 - } - } - }, - { - "id": "8b50a9f4-951d-5133-9827-ed59134de138", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.382132, - "y": 29.998231 - }, - "endPoint": { - "x": 332.379792, - "y": 30.043951 - } - } - }, - { - "id": "e3eaf4f0-f652-545f-8556-d38e138cfbfb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.379792, - "y": 30.043951 - }, - "endPoint": { - "x": 332.377027, - "y": 30.089646 - } - } - }, - { - "id": "ad85dc28-e618-5cc5-971c-5649bc33eb67", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.377027, - "y": 30.089646 - }, - "endPoint": { - "x": 332.373837, - "y": 30.135313 - } - } - }, - { - "id": "c2b68d72-984d-5e58-b403-91a153694870", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.373837, - "y": 30.135313 - }, - "endPoint": { - "x": 332.370222, - "y": 30.18095 - } - } - }, - { - "id": "192d5253-ce83-50e0-8f25-051ad59a0a3a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.370222, - "y": 30.18095 - }, - "endPoint": { - "x": 332.366831, - "y": 30.218109 - } - } - }, - { - "id": "4410ea86-b6e4-5f87-bce4-b006e4b16e57", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.366831, - "y": 30.218109 - }, - "endPoint": { - "x": 332.362899, - "y": 30.255213 - } - } - }, - { - "id": "ca61b24f-5e3c-514b-b18d-497244a5faea", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.362899, - "y": 30.255213 - }, - "endPoint": { - "x": 332.358427, - "y": 30.292255 - } - } - }, - { - "id": "b0e0233b-8a96-543f-9126-ceb185297d60", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.358427, - "y": 30.292255 - }, - "endPoint": { - "x": 332.353415, - "y": 30.32923 - } - } - }, - { - "id": "2491cc00-4363-5336-a405-a259c7156058", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.353415, - "y": 30.32923 - }, - "endPoint": { - "x": 332.349238, - "y": 30.356518 - } - } - }, - { - "id": "ceb2ec0c-e7f3-5a31-8597-cd316193b8ca", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.349238, - "y": 30.356518 - }, - "endPoint": { - "x": 332.344525, - "y": 30.383716 - } - } - }, - { - "id": "09c6c64d-b33a-509e-9868-ae892fad94e9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.344525, - "y": 30.383716 - }, - "endPoint": { - "x": 332.339276, - "y": 30.410816 - } - } - }, - { - "id": "a48cf8e1-bb76-55b9-91f6-2bad874650d4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.339276, - "y": 30.410816 - }, - "endPoint": { - "x": 332.333494, - "y": 30.437809 - } - } - }, - { - "id": "eef083d4-60ae-58de-a277-21d2cdb1829c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.333494, - "y": 30.437809 - }, - "endPoint": { - "x": 332.327566, - "y": 30.462289 - } - } - }, - { - "id": "ea01a5f0-c3a2-526e-a8b4-06d4347e371f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.327566, - "y": 30.462289 - }, - "endPoint": { - "x": 332.320823, - "y": 30.486551 - } - } - }, - { - "id": "316fb43e-ff70-51c2-ad37-302f51122148", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.320823, - "y": 30.486551 - }, - "endPoint": { - "x": 332.313273, - "y": 30.510573 - } - } - }, - { - "id": "c31da95d-d2a8-5a32-bfb6-bf4a316adc6a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.313273, - "y": 30.510573 - }, - "endPoint": { - "x": 332.304922, - "y": 30.534335 - } - } - }, - { - "id": "b00f3b41-9ebe-573b-95b3-e24452529a09", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.304922, - "y": 30.534335 - }, - "endPoint": { - "x": 332.294876, - "y": 30.560244 - } - } - }, - { - "id": "1a8e4542-6204-5712-96ad-749c7d42da1a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.294876, - "y": 30.560244 - }, - "endPoint": { - "x": 332.284053, - "y": 30.585831 - } - } - }, - { - "id": "c3ff8bbc-17ea-5067-8af2-f9946ed70a53", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.284053, - "y": 30.585831 - }, - "endPoint": { - "x": 332.272459, - "y": 30.611078 - } - } - }, - { - "id": "847b9014-e466-584c-8b35-37dcea5f1969", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.272459, - "y": 30.611078 - }, - "endPoint": { - "x": 332.260101, - "y": 30.635967 - } - } - }, - { - "id": "a5c81d35-65c7-5ad8-adf2-b8cbfbd77ce0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.260101, - "y": 30.635967 - }, - "endPoint": { - "x": 332.247384, - "y": 30.660052 - } - } - }, - { - "id": "66ea0309-5bb5-545c-9afa-e1b335ac3ed9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.247384, - "y": 30.660052 - }, - "endPoint": { - "x": 332.234198, - "y": 30.683881 - } - } - }, - { - "id": "7ea86243-860e-58c5-bf71-8d1ac042dd36", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.234198, - "y": 30.683881 - }, - "endPoint": { - "x": 332.220547, - "y": 30.707446 - } - } - }, - { - "id": "03260487-c3da-5ac9-a86b-ae5da347123f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.220547, - "y": 30.707446 - }, - "endPoint": { - "x": 332.206435, - "y": 30.730742 - } - } - }, - { - "id": "9a3a83a1-cda2-5162-9f33-a3701c6f39e7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.206435, - "y": 30.730742 - }, - "endPoint": { - "x": 332.196651, - "y": 30.746034 - } - } - }, - { - "id": "34576065-b9c6-505c-90df-4fd1bb3e47b3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.196651, - "y": 30.746034 - }, - "endPoint": { - "x": 332.186422, - "y": 30.761028 - } - } - }, - { - "id": "0fd844eb-ac82-5bd5-aedc-9e4af54f4fa4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.186422, - "y": 30.761028 - }, - "endPoint": { - "x": 332.175756, - "y": 30.775714 - } - } - }, - { - "id": "95adf5fb-fe65-56fe-abd4-411999fc50e3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.175756, - "y": 30.775714 - }, - "endPoint": { - "x": 332.16466, - "y": 30.790083 - } - } - }, - { - "id": "ba05f930-a0e0-59e1-a8bc-2fd03a458bf9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.16466, - "y": 30.790083 - }, - "endPoint": { - "x": 332.154018, - "y": 30.803185 - } - } - }, - { - "id": "168ce739-1ca3-5865-947d-75be78a14753", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.154018, - "y": 30.803185 - }, - "endPoint": { - "x": 332.143121, - "y": 30.816073 - } - } - }, - { - "id": "36a1f014-36dd-591b-9b5b-8e04c8b66e73", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.143121, - "y": 30.816073 - }, - "endPoint": { - "x": 332.131971, - "y": 30.828744 - } - } - }, - { - "id": "9f420e09-3e4e-51e2-8330-ea06e56bda9d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.131971, - "y": 30.828744 - }, - "endPoint": { - "x": 332.120574, - "y": 30.841194 - } - } - }, - { - "id": "9909e64d-bf8b-58fe-972d-b9b1b585e764", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.120574, - "y": 30.841194 - }, - "endPoint": { - "x": 332.107345, - "y": 30.855605 - } - } - }, - { - "id": "01e9ff90-f1c4-5cd9-9b18-1f7d7991f280", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.107345, - "y": 30.855605 - }, - "endPoint": { - "x": 332.094363, - "y": 30.870238 - } - } - }, - { - "id": "4094926b-0198-58e1-a7d8-97a47b465e6c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.094363, - "y": 30.870238 - }, - "endPoint": { - "x": 332.081633, - "y": 30.885089 - } - } - }, - { - "id": "2d21da99-00fd-55cd-a671-b7cff27ace72", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.081633, - "y": 30.885089 - }, - "endPoint": { - "x": 332.069156, - "y": 30.900156 - } - } - }, - { - "id": "9bbe5611-fd11-5da7-b188-d6bab55d2bc9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.069156, - "y": 30.900156 - }, - "endPoint": { - "x": 332.053003, - "y": 30.920842 - } - } - }, - { - "id": "dd8e3397-11d7-5668-b52a-c1b37a6a7bcf", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.053003, - "y": 30.920842 - }, - "endPoint": { - "x": 332.037704, - "y": 30.942152 - } - } - }, - { - "id": "dbd636f6-7a8c-5307-aabb-5853309af4d0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.037704, - "y": 30.942152 - }, - "endPoint": { - "x": 332.023276, - "y": 30.964063 - } - } - }, - { - "id": "60792f6a-aa53-5e0e-b700-1bee3d140986", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.023276, - "y": 30.964063 - }, - "endPoint": { - "x": 332.009739, - "y": 30.986546 - } - } - }, - { - "id": "3690be38-3090-59f5-b757-df589d50c67c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.009739, - "y": 30.986546 - }, - "endPoint": { - "x": 332.002001, - "y": 30.998935 - } - } - }, - { - "id": "83869c38-2f03-5c9f-995c-8f029fea4f0e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.002001, - "y": 30.998935 - }, - "endPoint": { - "x": 331.993394, - "y": 31.010713 - } - } - }, - { - "id": "4a5a0d76-a113-5090-8487-fe269b61fb66", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.993394, - "y": 31.010713 - }, - "endPoint": { - "x": 331.983953, - "y": 31.021834 - } - } - }, - { - "id": "ae088946-768a-5e85-aa38-c65bfb0f36dd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.983953, - "y": 31.021834 - }, - "endPoint": { - "x": 331.973714, - "y": 31.032251 - } - } - }, - { - "id": "309a071d-c1b6-5434-8015-40ebe04aa581", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.973714, - "y": 31.032251 - }, - "endPoint": { - "x": 331.967461, - "y": 31.038055 - } - } - }, - { - "id": "7c068b80-e09e-5882-900f-f16141264eb0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.967461, - "y": 31.038055 - }, - "endPoint": { - "x": 331.961101, - "y": 31.043739 - } - } - }, - { - "id": "d207e41c-83e5-5873-9848-017ffbe93f91", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.961101, - "y": 31.043739 - }, - "endPoint": { - "x": 331.954634, - "y": 31.049301 - } - } - }, - { - "id": "09d1cad3-ac03-5d97-a0e6-b8b2c90452bc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.954634, - "y": 31.049301 - }, - "endPoint": { - "x": 331.948063, - "y": 31.054742 - } - } - }, - { - "id": "af8ea96e-2146-5e34-b678-161af8011445", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.948063, - "y": 31.054742 - }, - "endPoint": { - "x": 331.925253, - "y": 31.073161 - } - } - }, - { - "id": "c04ad30f-3383-5eba-b0b0-8c80b9a54739", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.925253, - "y": 31.073161 - }, - "endPoint": { - "x": 331.902343, - "y": 31.091456 - } - } - }, - { - "id": "ce0f1dbd-de3c-5e7b-8d3f-fe40cedca5b4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.902343, - "y": 31.091456 - }, - "endPoint": { - "x": 331.879333, - "y": 31.109624 - } - } - }, - { - "id": "324a6399-5759-5236-982c-397e6ba449d4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.879333, - "y": 31.109624 - }, - "endPoint": { - "x": 331.856223, - "y": 31.127665 - } - } - }, - { - "id": "3903df7b-e919-5b50-a5d0-1802f4acb1f1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.856223, - "y": 31.127665 - }, - "endPoint": { - "x": 331.836059, - "y": 31.143251 - } - } - }, - { - "id": "18732899-76ee-5f03-aa99-39644eb5af22", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.836059, - "y": 31.143251 - }, - "endPoint": { - "x": 331.815829, - "y": 31.158752 - } - } - }, - { - "id": "3bcf328a-7ebb-5535-b14c-1ca02b606a38", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.815829, - "y": 31.158752 - }, - "endPoint": { - "x": 331.795534, - "y": 31.174168 - } - } - }, - { - "id": "6e66f777-cc4e-5ad2-9db1-08fa607523db", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.795534, - "y": 31.174168 - }, - "endPoint": { - "x": 331.775175, - "y": 31.189499 - } - } - }, - { - "id": "cb36761a-6072-572b-bfb3-ad2d28871930", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.775175, - "y": 31.189499 - }, - "endPoint": { - "x": 331.773503, - "y": 31.190685 - } - } - }, - { - "id": "0222a06f-2be5-522c-b887-82f772df041b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.773503, - "y": 31.190685 - }, - "endPoint": { - "x": 331.771773, - "y": 31.191782 - } - } - }, - { - "id": "f77ff34c-a395-5095-b066-968b361b37d6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.771773, - "y": 31.191782 - }, - "endPoint": { - "x": 331.769989, - "y": 31.192786 - } - } - }, - { - "id": "1e1e573a-f57d-59f3-9425-96846dcc285d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.769989, - "y": 31.192786 - }, - "endPoint": { - "x": 331.768152, - "y": 31.193697 - } - } - }, - { - "id": "643309f0-4cca-5f18-b5ef-cf9bc5cf1c74", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.768152, - "y": 31.193697 - }, - "endPoint": { - "x": 331.762435, - "y": 31.19627 - } - } - }, - { - "id": "fc9fa76e-47a7-5626-8b73-491af32d1643", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.762435, - "y": 31.19627 - }, - "endPoint": { - "x": 331.756662, - "y": 31.198716 - } - } - }, - { - "id": "19985c97-212d-5473-9042-7808130d77fa", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.756662, - "y": 31.198716 - }, - "endPoint": { - "x": 331.750837, - "y": 31.201033 - } - } - }, - { - "id": "6f7209f1-d178-5463-a0e5-52c95995e543", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.750837, - "y": 31.201033 - }, - "endPoint": { - "x": 331.744961, - "y": 31.20322 - } - } - }, - { - "id": "8de44684-da48-5a64-a15f-a61d71366c32", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.744961, - "y": 31.20322 - }, - "endPoint": { - "x": 331.726809, - "y": 31.209822 - } - } - }, - { - "id": "7dd52535-092a-5de3-8f53-5e2da8a8c7e8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.726809, - "y": 31.209822 - }, - "endPoint": { - "x": 331.708706, - "y": 31.216554 - } - } - }, - { - "id": "0703d567-e3b9-5b0e-a951-56b9520ddce4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.708706, - "y": 31.216554 - }, - "endPoint": { - "x": 331.690652, - "y": 31.223416 - } - } - }, - { - "id": "8e6b0574-bc92-5781-bce0-653444c21435", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.690652, - "y": 31.223416 - }, - "endPoint": { - "x": 331.672648, - "y": 31.230409 - } - } - }, - { - "id": "cd618edd-053e-5110-93eb-a3dafa900c31", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.672648, - "y": 31.230409 - }, - "endPoint": { - "x": 331.659487, - "y": 31.235618 - } - } - }, - { - "id": "cd696652-06e0-5f22-b8c3-d9d78667d9d0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.659487, - "y": 31.235618 - }, - "endPoint": { - "x": 331.646356, - "y": 31.2409 - } - } - }, - { - "id": "a64f44b6-1f32-5a0e-89e7-2f9e80d92545", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.646356, - "y": 31.2409 - }, - "endPoint": { - "x": 331.633254, - "y": 31.246257 - } - } - }, - { - "id": "ceb2068f-97d7-5d1a-8ced-54f1e61f0f90", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.633254, - "y": 31.246257 - }, - "endPoint": { - "x": 331.620183, - "y": 31.251687 - } - } - }, - { - "id": "47141978-c563-53b9-9b7e-c77784ac3d2e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.620183, - "y": 31.251687 - }, - "endPoint": { - "x": 331.614994, - "y": 31.253817 - } - } - }, - { - "id": "f35572ea-6db4-5209-bde5-bc2d49dab017", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.614994, - "y": 31.253817 - }, - "endPoint": { - "x": 331.609776, - "y": 31.255872 - } - } - }, - { - "id": "d576ea98-d7b1-5f5e-9710-29813c4065d7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.609776, - "y": 31.255872 - }, - "endPoint": { - "x": 331.60453, - "y": 31.257853 - } - } - }, - { - "id": "fd85c2cf-e2b5-5cc6-a45e-2c3d89cb07c9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.60453, - "y": 31.257853 - }, - "endPoint": { - "x": 331.599255, - "y": 31.25976 - } - } - }, - { - "id": "25624e97-b0e6-591c-8860-e36243991980", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.599255, - "y": 31.25976 - }, - "endPoint": { - "x": 331.596623, - "y": 31.260586 - } - } - }, - { - "id": "a7f54ab6-381b-581b-922e-bd5eae15899b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.596623, - "y": 31.260586 - }, - "endPoint": { - "x": 331.593942, - "y": 31.261222 - } - } - }, - { - "id": "990f40b2-45b7-51c3-829e-ef7e6da765f4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.593942, - "y": 31.261222 - }, - "endPoint": { - "x": 331.591223, - "y": 31.261667 - } - } - }, - { - "id": "eb511555-3920-5516-bf52-1a0a3c5b9c77", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.591223, - "y": 31.261667 - }, - "endPoint": { - "x": 331.588476, - "y": 31.261918 - } - } - }, - { - "id": "f9f06f06-949f-5a2a-bd3a-f2aa4cbeea0e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.588476, - "y": 31.261918 - }, - "endPoint": { - "x": 331.558141, - "y": 31.263502 - } - } - }, - { - "id": "5a3609d6-ce35-51d8-b423-127aa813a6f7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.558141, - "y": 31.263502 - }, - "endPoint": { - "x": 331.527798, - "y": 31.264893 - } - } - }, - { - "id": "d9d5cc0b-42a7-59f5-971d-90d16efc29d2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.527798, - "y": 31.264893 - }, - "endPoint": { - "x": 331.497446, - "y": 31.266088 - } - } - }, - { - "id": "fe8899cb-2539-5f5b-9019-78a2a925189e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.497446, - "y": 31.266088 - }, - "endPoint": { - "x": 331.467086, - "y": 31.26709 - } - } - }, - { - "id": "de82bf75-adce-5ef9-ab9e-942cb3bd4a18", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.467086, - "y": 31.26709 - }, - "endPoint": { - "x": 331.441045, - "y": 31.267768 - } - } - }, - { - "id": "fbe523bb-1637-5e42-9455-7ad38df3a6b5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.441045, - "y": 31.267768 - }, - "endPoint": { - "x": 331.415, - "y": 31.268252 - } - } - }, - { - "id": "041da69c-ad68-56b0-a6e3-bfcc54e858af", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.415, - "y": 31.268252 - }, - "endPoint": { - "x": 331.388953, - "y": 31.268543 - } - } - }, - { - "id": "d0eaaf1a-92fa-5027-9d91-cce69d79c02a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.388953, - "y": 31.268543 - }, - "endPoint": { - "x": 331.362903, - "y": 31.26864 - } - } - }, - { - "id": "dc586b4f-2589-5a05-9a44-12b0154bba26", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.362903, - "y": 31.26864 - }, - "endPoint": { - "x": 331.355893, - "y": 31.268543 - } - } - }, - { - "id": "674ff251-3240-5dc7-a850-e6cfcb844523", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.355893, - "y": 31.268543 - }, - "endPoint": { - "x": 331.348889, - "y": 31.268252 - } - } - }, - { - "id": "9be8db88-7955-542e-aa84-7b563983415d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.348889, - "y": 31.268252 - }, - "endPoint": { - "x": 331.341895, - "y": 31.267767 - } - } - }, - { - "id": "a7770e4d-6bc9-5351-a428-121e77979a11", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.341895, - "y": 31.267767 - }, - "endPoint": { - "x": 331.334917, - "y": 31.26709 - } - } - }, - { - "id": "93d2e0c5-e632-5870-a8cf-b80e5f74aa3c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.334917, - "y": 31.26709 - }, - "endPoint": { - "x": 331.324776, - "y": 31.265432 - } - } - }, - { - "id": "e3432f70-efaf-5127-86f5-12eef993ba8e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.324776, - "y": 31.265432 - }, - "endPoint": { - "x": 331.314884, - "y": 31.262753 - } - } - }, - { - "id": "95037c93-e50a-523c-9ea3-7f6607201675", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.314884, - "y": 31.262753 - }, - "endPoint": { - "x": 331.305318, - "y": 31.259078 - } - } - }, - { - "id": "564ce6a1-ffd1-56ce-9b11-47c322180daa", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.305318, - "y": 31.259078 - }, - "endPoint": { - "x": 331.296153, - "y": 31.254431 - } - } - }, - { - "id": "03ced4ce-1b5a-5511-bd39-58e8bdeb8e8f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.296153, - "y": 31.254431 - }, - "endPoint": { - "x": 331.278946, - "y": 31.245164 - } - } - }, - { - "id": "8a6f0c42-be6c-5948-98e1-bcc2785c1e53", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.278946, - "y": 31.245164 - }, - "endPoint": { - "x": 331.261281, - "y": 31.236834 - } - } - }, - { - "id": "e5546d4b-5a4f-577d-89d6-f03b9debcc6f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.261281, - "y": 31.236834 - }, - "endPoint": { - "x": 331.243198, - "y": 31.229456 - } - } - }, - { - "id": "7d063afb-5134-50a2-a49b-02d36f05774d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.243198, - "y": 31.229456 - }, - "endPoint": { - "x": 331.224734, - "y": 31.223048 - } - } - }, - { - "id": "d44afb38-6d88-5a18-97f7-5c015adbf0ff", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.224734, - "y": 31.223048 - }, - "endPoint": { - "x": 331.206493, - "y": 31.217723 - } - } - }, - { - "id": "9181805a-79bf-5a67-8f31-22fa8ba63023", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.206493, - "y": 31.217723 - }, - "endPoint": { - "x": 331.188033, - "y": 31.213262 - } - } - }, - { - "id": "0625477c-4cba-5667-98be-b2387f2de785", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.188033, - "y": 31.213262 - }, - "endPoint": { - "x": 331.169384, - "y": 31.20967 - } - } - }, - { - "id": "d80d5c81-9d8d-5dcd-8dd3-c17b0ba98a6e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.169384, - "y": 31.20967 - }, - "endPoint": { - "x": 331.150577, - "y": 31.206955 - } - } - }, - { - "id": "0ab015ac-b9c3-5971-b35b-2c8d9f16227d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.150577, - "y": 31.206955 - }, - "endPoint": { - "x": 331.1376, - "y": 31.20494 - } - } - }, - { - "id": "30520352-c87a-5555-b90b-cab6c1c9de1f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.1376, - "y": 31.20494 - }, - "endPoint": { - "x": 331.124805, - "y": 31.202051 - } - } - }, - { - "id": "718dc189-684e-5271-b31b-907077714d17", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.124805, - "y": 31.202051 - }, - "endPoint": { - "x": 331.112235, - "y": 31.1983 - } - } - }, - { - "id": "810075dc-9ac6-5a82-9e81-15a246b891be", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.112235, - "y": 31.1983 - }, - "endPoint": { - "x": 331.099936, - "y": 31.193697 - } - } - }, - { - "id": "9242eff8-fb61-5b2c-8d85-9098b699f2ae", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.099936, - "y": 31.193697 - }, - "endPoint": { - "x": 331.08408, - "y": 31.186652 - } - } - }, - { - "id": "1ec86147-6ff1-5369-8e4c-ee7573fca6b5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.08408, - "y": 31.186652 - }, - "endPoint": { - "x": 331.068621, - "y": 31.178799 - } - } - }, - { - "id": "d5845cf4-583d-5015-a101-b6cc2fb0f4d8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.068621, - "y": 31.178799 - }, - "endPoint": { - "x": 331.053591, - "y": 31.170156 - } - } - }, - { - "id": "7ffc44ff-ca2b-57d6-8547-60d4aab63a7a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.053591, - "y": 31.170156 - }, - "endPoint": { - "x": 331.039019, - "y": 31.160737 - } - } - }, - { - "id": "fd3fecb9-3c1e-5eca-af20-d359d724e778", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.039019, - "y": 31.160737 - }, - "endPoint": { - "x": 331.018535, - "y": 31.146186 - } - } - }, - { - "id": "b5b9e7e1-9865-573b-9512-ec9c315589f3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.018535, - "y": 31.146186 - }, - "endPoint": { - "x": 330.99859, - "y": 31.130917 - } - } - }, - { - "id": "23333dfc-61d9-5864-8138-3dd5eb0c8cc4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.99859, - "y": 31.130917 - }, - "endPoint": { - "x": 330.979204, - "y": 31.114944 - } - } - }, - { - "id": "cf3677dd-4599-5464-9a0e-d9040fc5e96f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.979204, - "y": 31.114944 - }, - "endPoint": { - "x": 330.960396, - "y": 31.098283 - } - } - }, - { - "id": "6020a507-0e1b-5c86-b1e1-3e51f61e0b4c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.960396, - "y": 31.098283 - }, - "endPoint": { - "x": 330.944327, - "y": 31.083518 - } - } - }, - { - "id": "e99e2354-c647-595c-b870-0a8f96709ed8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.944327, - "y": 31.083518 - }, - "endPoint": { - "x": 330.928266, - "y": 31.068744 - } - } - }, - { - "id": "84114c82-32da-5362-b305-f1fd680f7e06", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.928266, - "y": 31.068744 - }, - "endPoint": { - "x": 330.912214, - "y": 31.053961 - } - } - }, - { - "id": "b782a22b-3629-5a33-b35f-28ef3888998e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.912214, - "y": 31.053961 - }, - "endPoint": { - "x": 330.89617, - "y": 31.039168 - } - } - }, - { - "id": "ff9576d9-2152-5900-b323-ac0a831536b1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.89617, - "y": 31.039168 - }, - "endPoint": { - "x": 330.888353, - "y": 31.031947 - } - } - }, - { - "id": "17ac9622-9b42-5605-b39f-184d44069f11", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.888353, - "y": 31.031947 - }, - "endPoint": { - "x": 330.880545, - "y": 31.024718 - } - } - }, - { - "id": "13993541-f947-5941-a16a-7f6e3845025a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.880545, - "y": 31.024718 - }, - "endPoint": { - "x": 330.872745, - "y": 31.017478 - } - } - }, - { - "id": "f74fb576-7b1f-59b7-967f-6e2e8f7d04d8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.872745, - "y": 31.017478 - }, - "endPoint": { - "x": 330.864954, - "y": 31.01023 - } - } - }, - { - "id": "f4baae34-9792-58ff-817c-6d5e32c17180", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.864954, - "y": 31.01023 - }, - "endPoint": { - "x": 330.852544, - "y": 30.998655 - } - } - }, - { - "id": "5f4686fb-8270-50ab-8f03-5f439063ae15", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.852544, - "y": 30.998655 - }, - "endPoint": { - "x": 330.840147, - "y": 30.987065 - } - } - }, - { - "id": "1bef6009-4af0-5478-a90c-e045f8dfa104", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.840147, - "y": 30.987065 - }, - "endPoint": { - "x": 330.827766, - "y": 30.97546 - } - } - }, - { - "id": "f4c92a21-3479-514b-bd5d-289ab6dc3fb4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.827766, - "y": 30.97546 - }, - "endPoint": { - "x": 330.815398, - "y": 30.963839 - } - } - }, - { - "id": "a322504d-4e3b-57c9-ae5b-f307dde70ee1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.815398, - "y": 30.963839 - }, - "endPoint": { - "x": 330.798436, - "y": 30.947895 - } - } - }, - { - "id": "67e53368-0772-5a9c-a472-389690123cc0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.798436, - "y": 30.947895 - }, - "endPoint": { - "x": 330.78146, - "y": 30.931967 - } - } - }, - { - "id": "6ec09912-b769-5880-91e7-fa90c65559e1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.78146, - "y": 30.931967 - }, - "endPoint": { - "x": 330.764469, - "y": 30.916054 - } - } - }, - { - "id": "c1ad9e73-e5ea-5863-98d5-9383ae2624e9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.764469, - "y": 30.916054 - }, - "endPoint": { - "x": 330.747464, - "y": 30.900156 - } - } - }, - { - "id": "0fa08b00-dbd8-57bf-9e40-9d70280a1bfe", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.747464, - "y": 30.900156 - }, - "endPoint": { - "x": 330.731249, - "y": 30.885618 - } - } - }, - { - "id": "4d8baa24-e6c9-545d-9987-c48fdcc00dcf", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.731249, - "y": 30.885618 - }, - "endPoint": { - "x": 330.714462, - "y": 30.871758 - } - } - }, - { - "id": "ba2ba0f8-f2ae-510e-8a9f-9673bd7122f1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.714462, - "y": 30.871758 - }, - "endPoint": { - "x": 330.697125, - "y": 30.858592 - } - } - }, - { - "id": "cb1940ed-32e0-5427-90da-24c91b52b914", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.697125, - "y": 30.858592 - }, - "endPoint": { - "x": 330.67926, - "y": 30.846138 - } - } - }, - { - "id": "09b19d9d-7f37-50aa-b6be-ff4785377d69", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.67926, - "y": 30.846138 - }, - "endPoint": { - "x": 330.666096, - "y": 30.83682 - } - } - }, - { - "id": "0859132c-3394-52de-a092-c5df613b71cf", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.666096, - "y": 30.83682 - }, - "endPoint": { - "x": 330.653475, - "y": 30.826799 - } - } - }, - { - "id": "cd4a873e-5947-5e9d-a770-7807c0b6c887", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.653475, - "y": 30.826799 - }, - "endPoint": { - "x": 330.641425, - "y": 30.816099 - } - } - }, - { - "id": "63009ba4-7ac2-5e56-a7ab-a0b78c4549ab", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.641425, - "y": 30.816099 - }, - "endPoint": { - "x": 330.629973, - "y": 30.804743 - } - } - }, - { - "id": "88aeed26-5cb5-5062-9672-60edf18ed819", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.629973, - "y": 30.804743 - }, - "endPoint": { - "x": 330.621521, - "y": 30.794942 - } - } - }, - { - "id": "d748b8b8-912c-5e15-a44e-f744b0ab34de", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.621521, - "y": 30.794942 - }, - "endPoint": { - "x": 330.614114, - "y": 30.784369 - } - } - }, - { - "id": "d4a4ba5e-c15a-5629-bb73-1caac9b547e4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.614114, - "y": 30.784369 - }, - "endPoint": { - "x": 330.607805, - "y": 30.773107 - } - } - }, - { - "id": "bc9a2120-85c0-5614-a489-b0236280903d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.607805, - "y": 30.773107 - }, - "endPoint": { - "x": 330.602646, - "y": 30.761238 - } - } - }, - { - "id": "d547b5a2-1649-5917-995e-7beda426ad10", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.602646, - "y": 30.761238 - }, - "endPoint": { - "x": 330.594681, - "y": 30.741892 - } - } - }, - { - "id": "0d8a113c-b8a7-58f3-b688-1ff598a86e4e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.594681, - "y": 30.741892 - }, - "endPoint": { - "x": 330.585548, - "y": 30.723092 - } - } - }, - { - "id": "bcb2c821-c071-5f4d-ad2d-b3c1a6b4002f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.585548, - "y": 30.723092 - }, - "endPoint": { - "x": 330.575275, - "y": 30.70489 - } - } - }, - { - "id": "2090511c-828e-5ee8-a949-4e53f1b2b784", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.575275, - "y": 30.70489 - }, - "endPoint": { - "x": 330.563888, - "y": 30.687339 - } - } - }, - { - "id": "7bdb3b1c-c832-5c7c-9fa8-b2abbb062b5b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.563888, - "y": 30.687339 - }, - "endPoint": { - "x": 330.54773, - "y": 30.665025 - } - } - }, - { - "id": "f552c607-b3a6-591b-959b-722afffd2da8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.54773, - "y": 30.665025 - }, - "endPoint": { - "x": 330.530682, - "y": 30.643398 - } - } - }, - { - "id": "54591a46-6937-501b-83f7-be5a9c1a228d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.530682, - "y": 30.643398 - }, - "endPoint": { - "x": 330.512766, - "y": 30.622484 - } - } - }, - { - "id": "c605be1f-5596-58ec-908e-df282f31c4ea", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.512766, - "y": 30.622484 - }, - "endPoint": { - "x": 330.494005, - "y": 30.602309 - } - } - }, - { - "id": "ce69ea2a-b235-54b7-ac6d-7ace04db5e26", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.494005, - "y": 30.602309 - }, - "endPoint": { - "x": 330.482604, - "y": 30.589729 - } - } - }, - { - "id": "5c376c01-2f8c-5599-bdf8-11fd263ff940", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.482604, - "y": 30.589729 - }, - "endPoint": { - "x": 330.472075, - "y": 30.576435 - } - } - }, - { - "id": "09968cd9-bfb4-52c3-ae88-d32b824ae37d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.472075, - "y": 30.576435 - }, - "endPoint": { - "x": 330.462452, - "y": 30.562471 - } - } - }, - { - "id": "41f9fe63-29b5-5d70-bb05-a703157c54d1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.462452, - "y": 30.562471 - }, - "endPoint": { - "x": 330.453768, - "y": 30.547883 - } - } - }, - { - "id": "336ae800-bd0e-56b2-9280-8bb941b00223", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.453768, - "y": 30.547883 - }, - "endPoint": { - "x": 330.44561, - "y": 30.532929 - } - } - }, - { - "id": "4ff8d90f-e141-52aa-a060-da229cedec6b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.44561, - "y": 30.532929 - }, - "endPoint": { - "x": 330.437582, - "y": 30.517907 - } - } - }, - { - "id": "9469dca5-f07e-5a0d-bcc7-335cfcfbf31e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.437582, - "y": 30.517907 - }, - "endPoint": { - "x": 330.429683, - "y": 30.502815 - } - } - }, - { - "id": "c63b7cec-bd86-51b7-9260-0aa44e7298c4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.429683, - "y": 30.502815 - }, - "endPoint": { - "x": 330.421913, - "y": 30.487656 - } - } - }, - { - "id": "f804e230-9f70-5113-97e6-d6e485264f1b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.421913, - "y": 30.487656 - }, - "endPoint": { - "x": 330.409881, - "y": 30.46409 - } - } - }, - { - "id": "30c8bd3c-1396-5527-a37d-e16cfd71f853", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.409881, - "y": 30.46409 - }, - "endPoint": { - "x": 330.397719, - "y": 30.440592 - } - } - }, - { - "id": "5be1e127-d867-5e35-aa05-52ee80902fa8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.397719, - "y": 30.440592 - }, - "endPoint": { - "x": 330.385427, - "y": 30.417161 - } - } - }, - { - "id": "dbb2dbb8-2488-559e-97b7-fdceae948af7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.385427, - "y": 30.417161 - }, - "endPoint": { - "x": 330.373005, - "y": 30.393799 - } - } - }, - { - "id": "2e836be4-7f5a-5771-a578-f4a4cd5ec461", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.373005, - "y": 30.393799 - }, - "endPoint": { - "x": 330.357379, - "y": 30.365062 - } - } - }, - { - "id": "379999dc-c39e-59cb-92d4-2571c86f973b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.357379, - "y": 30.365062 - }, - "endPoint": { - "x": 330.341376, - "y": 30.336535 - } - } - }, - { - "id": "f9050296-cb6e-5a85-b6a3-7d2f79507551", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.341376, - "y": 30.336535 - }, - "endPoint": { - "x": 330.324998, - "y": 30.308221 - } - } - }, - { - "id": "c24dda35-e53f-5b5e-9cce-b04c7d5cb781", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.324998, - "y": 30.308221 - }, - "endPoint": { - "x": 330.308247, - "y": 30.280125 - } - } - }, - { - "id": "57d2a77c-8564-559c-ab32-98951398c130", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.308247, - "y": 30.280125 - }, - "endPoint": { - "x": 330.303665, - "y": 30.272136 - } - } - }, - { - "id": "7f690408-515a-588f-b747-06ba138a24b2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.303665, - "y": 30.272136 - }, - "endPoint": { - "x": 330.299466, - "y": 30.263945 - } - } - }, - { - "id": "655d7e9b-4f46-5006-aed3-764190eb2732", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.299466, - "y": 30.263945 - }, - "endPoint": { - "x": 330.295656, - "y": 30.255566 - } - } - }, - { - "id": "675d38da-3ee7-5eda-aed8-3ba9beec5f9c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.295656, - "y": 30.255566 - }, - "endPoint": { - "x": 330.292242, - "y": 30.247013 - } - } - }, - { - "id": "d7d469ba-f875-577f-b2e8-c00dd63aa799", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.292242, - "y": 30.247013 - }, - "endPoint": { - "x": 330.291425, - "y": 30.244721 - } - } - }, - { - "id": "396040c3-7858-5272-9f67-d799f513ae50", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.291425, - "y": 30.244721 - }, - "endPoint": { - "x": 330.290673, - "y": 30.242408 - } - } - }, - { - "id": "62ceee80-e8d8-56c4-b3d5-f7eaf308afb1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.290673, - "y": 30.242408 - }, - "endPoint": { - "x": 330.289985, - "y": 30.240075 - } - } - }, - { - "id": "cdee6232-1a24-5d42-8434-28c7980bb21a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.289985, - "y": 30.240075 - }, - "endPoint": { - "x": 330.289362, - "y": 30.237723 - } - } - }, - { - "id": "592d6011-51ce-526a-9b6f-e93f23c5b9a8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.289362, - "y": 30.237723 - }, - "endPoint": { - "x": 330.282644, - "y": 30.210711 - } - } - }, - { - "id": "2028b815-08a9-520f-8e88-04e2f0a5c732", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.282644, - "y": 30.210711 - }, - "endPoint": { - "x": 330.275992, - "y": 30.183683 - } - } - }, - { - "id": "42b7439d-f954-54eb-beec-98b885ec07ff", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.275992, - "y": 30.183683 - }, - "endPoint": { - "x": 330.269406, - "y": 30.156638 - } - } - }, - { - "id": "6b10c0ea-8e1b-5da6-ab4e-f00dfe72b95e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.269406, - "y": 30.156638 - }, - "endPoint": { - "x": 330.262885, - "y": 30.129578 - } - } - }, - { - "id": "ee692f93-2b24-5b93-b9b3-45f258ab2909", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.262885, - "y": 30.129578 - }, - "endPoint": { - "x": 330.253764, - "y": 30.091281 - } - } - }, - { - "id": "c0c2f5a6-c012-508b-aea1-e2dd4f2814dd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.253764, - "y": 30.091281 - }, - "endPoint": { - "x": 330.244755, - "y": 30.052959 - } - } - }, - { - "id": "d3a56027-dfc2-56da-bcb3-37a28c89e9a9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.244755, - "y": 30.052959 - }, - "endPoint": { - "x": 330.235856, - "y": 30.01461 - } - } - }, - { - "id": "c59646e1-8a56-5a3a-9940-b4216c10ff74", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.235856, - "y": 30.01461 - }, - "endPoint": { - "x": 330.227067, - "y": 29.976236 - } - } - }, - { - "id": "a2aa6626-5bbf-5b06-9720-7bed40a63db3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.227067, - "y": 29.976236 - }, - "endPoint": { - "x": 330.22667, - "y": 29.974231 - } - } - }, - { - "id": "d7dc3098-4e6d-50ba-8214-9029379645bc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.22667, - "y": 29.974231 - }, - "endPoint": { - "x": 330.226386, - "y": 29.97221 - } - } - }, - { - "id": "17ee2631-2472-5755-99b9-8f187090fb8b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.226386, - "y": 29.97221 - }, - "endPoint": { - "x": 330.226214, - "y": 29.970175 - } - } - }, - { - "id": "0a05c9eb-15b3-5db3-a010-fc4901f5797c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.226214, - "y": 29.970175 - }, - "endPoint": { - "x": 330.226157, - "y": 29.968133 - } - } - }, - { - "id": "304a7435-dfad-5673-9b93-5f970be7d93d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.226157, - "y": 29.968133 - }, - "endPoint": { - "x": 330.226157, - "y": 29.806687 - } - } - }, - { - "id": "97275e49-9e52-5da4-8010-416a98db7303", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.226157, - "y": 29.806687 - }, - "endPoint": { - "x": 330.226157, - "y": 29.62322 - } - } - }, - { - "id": "c9f3c82d-0cb7-52bc-bbb0-98ae68ef2771", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.226157, - "y": 29.62322 - }, - "endPoint": { - "x": 330.226157, - "y": 29.520477 - } - } - }, - { - "id": "3388c057-125b-597c-8134-0bd4dbeb2c28", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.226157, - "y": 29.520477 - }, - "endPoint": { - "x": 330.226224, - "y": 29.517414 - } - } - }, - { - "id": "7f3003d9-13ee-5c3c-a7d6-09a58743a4a8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.226224, - "y": 29.517414 - }, - "endPoint": { - "x": 330.226424, - "y": 29.514359 - } - } - }, - { - "id": "4e611557-8345-5f26-8083-f4a46a928951", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.226424, - "y": 29.514359 - }, - "endPoint": { - "x": 330.226757, - "y": 29.511316 - } - } - }, - { - "id": "dfe3e31c-b414-57b9-bc78-a5cfa6423f64", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.226757, - "y": 29.511316 - }, - "endPoint": { - "x": 330.227223, - "y": 29.508289 - } - } - }, - { - "id": "c6ab5557-4de6-5008-bd9f-a11a5dcb0199", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.227223, - "y": 29.508289 - }, - "endPoint": { - "x": 330.232257, - "y": 29.480108 - } - } - }, - { - "id": "dad1620d-cd3f-524f-bf56-9c1df825ce41", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.232257, - "y": 29.480108 - }, - "endPoint": { - "x": 330.237421, - "y": 29.451952 - } - } - }, - { - "id": "e3ec6bcc-d2e5-5702-a045-cc606ac2e05a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.237421, - "y": 29.451952 - }, - "endPoint": { - "x": 330.242717, - "y": 29.423819 - } - } - }, - { - "id": "84aed22c-d851-504e-b009-e6d27413384c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.242717, - "y": 29.423819 - }, - "endPoint": { - "x": 330.248144, - "y": 29.395712 - } - } - }, - { - "id": "0840f5df-2ba3-5f4c-b2af-0564e9338c9b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.248144, - "y": 29.395712 - }, - "endPoint": { - "x": 330.255347, - "y": 29.359886 - } - } - }, - { - "id": "fe431ebb-ef19-5157-964f-24c1f292a9ec", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.255347, - "y": 29.359886 - }, - "endPoint": { - "x": 330.262932, - "y": 29.324141 - } - } - }, - { - "id": "ba90a724-73a9-507c-a82c-e2aae95883b2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.262932, - "y": 29.324141 - }, - "endPoint": { - "x": 330.2709, - "y": 29.288478 - } - } - }, - { - "id": "cefe5e36-676c-5ab6-8841-f5783bdd90e3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.2709, - "y": 29.288478 - }, - "endPoint": { - "x": 330.27925, - "y": 29.252902 - } - } - }, - { - "id": "2ba83afe-2fa0-5940-9f02-33eb09e6f735", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.27925, - "y": 29.252902 - }, - "endPoint": { - "x": 330.281937, - "y": 29.242564 - } - } - }, - { - "id": "8ec792d0-ac3b-5131-a0da-3a184c83ebf6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.281937, - "y": 29.242564 - }, - "endPoint": { - "x": 330.285, - "y": 29.232335 - } - } - }, - { - "id": "9119b58b-8685-5fb0-aebe-528a4c175042", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.285, - "y": 29.232335 - }, - "endPoint": { - "x": 330.288436, - "y": 29.222226 - } - } - }, - { - "id": "3de0cc08-e308-554b-aa01-cdd21fa0a262", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.288436, - "y": 29.222226 - }, - "endPoint": { - "x": 330.292242, - "y": 29.212245 - } - } - }, - { - "id": "cec6deed-5a9d-5741-ac1a-d34c8380da69", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.292242, - "y": 29.212245 - }, - "endPoint": { - "x": 330.299341, - "y": 29.195708 - } - } - }, - { - "id": "573f201b-5bc4-5c4f-971a-d0fa9b4b286d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.299341, - "y": 29.195708 - }, - "endPoint": { - "x": 330.307183, - "y": 29.17952 - } - } - }, - { - "id": "1b41ceab-79b6-5686-a300-8bb7e2a77803", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.307183, - "y": 29.17952 - }, - "endPoint": { - "x": 330.315754, - "y": 29.163706 - } - } - }, - { - "id": "e8065838-deed-5485-abd7-7307b2b6c50b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.315754, - "y": 29.163706 - }, - "endPoint": { - "x": 330.325042, - "y": 29.148291 - } - } - }, - { - "id": "1e08c2e1-3ba4-513e-99ff-00b203bfacf0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.325042, - "y": 29.148291 - }, - "endPoint": { - "x": 330.345433, - "y": 29.115366 - } - } - }, - { - "id": "8f6e5820-7816-5e4c-89f3-d4159d6f1d2e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.345433, - "y": 29.115366 - }, - "endPoint": { - "x": 330.36512, - "y": 29.082022 - } - } - }, - { - "id": "106b248e-a8f9-5677-8539-c038d3a1a26b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.36512, - "y": 29.082022 - }, - "endPoint": { - "x": 330.384099, - "y": 29.048269 - } - } - }, - { - "id": "1912652c-9d9e-5217-8175-975cdf7941ec", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.384099, - "y": 29.048269 - }, - "endPoint": { - "x": 330.402362, - "y": 29.014119 - } - } - }, - { - "id": "facd2409-9a70-55f3-8fb7-9b8eddd9697d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.402362, - "y": 29.014119 - }, - "endPoint": { - "x": 330.41475, - "y": 28.99005 - } - } - }, - { - "id": "bb9c159d-f01f-5084-a02d-e5a285115567", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.41475, - "y": 28.99005 - }, - "endPoint": { - "x": 330.426886, - "y": 28.965853 - } - } - }, - { - "id": "b1a3168d-3124-54a3-a140-df7b02a9a585", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.426886, - "y": 28.965853 - }, - "endPoint": { - "x": 330.438769, - "y": 28.941532 - } - } - }, - { - "id": "457080f5-ea9a-5877-b6c5-369484edb024", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.438769, - "y": 28.941532 - }, - "endPoint": { - "x": 330.450399, - "y": 28.917088 - } - } - }, - { - "id": "0f9c551a-b5d6-5028-ae41-a2b5e2153516", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.450399, - "y": 28.917088 - }, - "endPoint": { - "x": 330.458203, - "y": 28.900794 - } - } - }, - { - "id": "e91b6760-52b5-5a1f-a6dd-9b8bbf96e195", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.458203, - "y": 28.900794 - }, - "endPoint": { - "x": 330.466259, - "y": 28.884625 - } - } - }, - { - "id": "67af242a-bf94-5700-88e1-ae677c699664", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.466259, - "y": 28.884625 - }, - "endPoint": { - "x": 330.474567, - "y": 28.868584 - } - } - }, - { - "id": "2a6e97a7-5cf9-5190-a7e6-9946311128fa", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.474567, - "y": 28.868584 - }, - "endPoint": { - "x": 330.483125, - "y": 28.852674 - } - } - }, - { - "id": "daef4f47-07bc-5aa8-a44d-b8893fb288fe", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.483125, - "y": 28.852674 - }, - "endPoint": { - "x": 330.490491, - "y": 28.839899 - } - } - }, - { - "id": "cfd4984c-935a-5dff-9098-7bd304c49203", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.490491, - "y": 28.839899 - }, - "endPoint": { - "x": 330.4984, - "y": 28.827462 - } - } - }, - { - "id": "7c69cd70-8237-5b0f-90cb-ed407ddac513", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.4984, - "y": 28.827462 - }, - "endPoint": { - "x": 330.506842, - "y": 28.81538 - } - } - }, - { - "id": "e735ccb2-b6f9-5698-8b83-807ec6658830", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.506842, - "y": 28.81538 - }, - "endPoint": { - "x": 330.515804, - "y": 28.80367 - } - } - }, - { - "id": "bc3c6a35-7cdc-5914-a089-c35192a5deb5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.515804, - "y": 28.80367 - }, - "endPoint": { - "x": 330.53628, - "y": 28.7786 - } - } - }, - { - "id": "b829c27f-ac1c-52de-a829-4e747765e6d7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.53628, - "y": 28.7786 - }, - "endPoint": { - "x": 330.557245, - "y": 28.753942 - } - } - }, - { - "id": "8a65bd6e-0136-5201-b74d-cbb0601877a2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.557245, - "y": 28.753942 - }, - "endPoint": { - "x": 330.578692, - "y": 28.729702 - } - } - }, - { - "id": "7beb0b92-c6de-5c17-b25c-77ff2f24eb7e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.578692, - "y": 28.729702 - }, - "endPoint": { - "x": 330.600616, - "y": 28.705888 - } - } - }, - { - "id": "65f9a3b2-a931-50c5-99a5-fede4cb00be0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.600616, - "y": 28.705888 - }, - "endPoint": { - "x": 330.610297, - "y": 28.69587 - } - } - }, - { - "id": "61568d83-7bd4-5f95-a823-1267de6d2249", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.610297, - "y": 28.69587 - }, - "endPoint": { - "x": 330.62026, - "y": 28.686136 - } - } - }, - { - "id": "27482aee-7ae8-5570-8244-57faf6440b6e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.62026, - "y": 28.686136 - }, - "endPoint": { - "x": 330.630498, - "y": 28.676692 - } - } - }, - { - "id": "5b0b30e5-3bf4-512b-9b86-77897ee05c0b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.630498, - "y": 28.676692 - }, - "endPoint": { - "x": 330.641005, - "y": 28.667543 - } - } - }, - { - "id": "2dc8e32c-5c0c-5953-8e14-cc45ee8bdc7f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.641005, - "y": 28.667543 - }, - "endPoint": { - "x": 330.6544, - "y": 28.656476 - } - } - }, - { - "id": "8c62bc9a-957d-5fc0-9afb-03768e8b8bcb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.6544, - "y": 28.656476 - }, - "endPoint": { - "x": 330.668044, - "y": 28.645721 - } - } - }, - { - "id": "d873807f-7739-5e06-b8da-b481ad2b706d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.668044, - "y": 28.645721 - }, - "endPoint": { - "x": 330.681932, - "y": 28.635283 - } - } - }, - { - "id": "7449effc-b152-58e7-9f08-f577da11aa52", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.681932, - "y": 28.635283 - }, - "endPoint": { - "x": 330.696058, - "y": 28.625165 - } - } - }, - { - "id": "190422e5-44c5-5263-8631-b89e8dbc99c0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.696058, - "y": 28.625165 - }, - "endPoint": { - "x": 330.703504, - "y": 28.620475 - } - } - }, - { - "id": "80c8c483-78ed-5211-9d3e-23a9a310a84f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.703504, - "y": 28.620475 - }, - "endPoint": { - "x": 330.711346, - "y": 28.616529 - } - } - }, - { - "id": "171483ff-e8f6-5582-b27f-13d072217617", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.711346, - "y": 28.616529 - }, - "endPoint": { - "x": 330.71953, - "y": 28.61335 - } - } - }, - { - "id": "34ef9fc8-c5eb-5faf-9dca-d0869f6a163c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.71953, - "y": 28.61335 - }, - "endPoint": { - "x": 330.728001, - "y": 28.610964 - } - } - }, - { - "id": "d9a9cc23-dc11-5cea-a1db-0acf88eaae4b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.728001, - "y": 28.610964 - }, - "endPoint": { - "x": 330.743722, - "y": 28.607768 - } - } - }, - { - "id": "0abb4686-3e5c-5bb1-8d7e-bc13e8d16f6f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.743722, - "y": 28.607768 - }, - "endPoint": { - "x": 330.759577, - "y": 28.605397 - } - } - }, - { - "id": "54aca788-435d-55a9-98b6-1b4ed42dc635", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.759577, - "y": 28.605397 - }, - "endPoint": { - "x": 330.775535, - "y": 28.603854 - } - } - }, - { - "id": "d017e470-2056-5e7a-8362-f19d5fa89430", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.775535, - "y": 28.603854 - }, - "endPoint": { - "x": 330.791562, - "y": 28.603144 - } - } - }, - { - "id": "897978e7-1a48-5175-88d8-402e7a163d5d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.791562, - "y": 28.603144 - }, - "endPoint": { - "x": 330.804145, - "y": 28.596052 - } - } - }, - { - "id": "7be9d83c-5889-5896-8fc0-9d1a1a7e838a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.804145, - "y": 28.596052 - }, - "endPoint": { - "x": 330.817011, - "y": 28.5895 - } - } - }, - { - "id": "5bcc20a7-6a68-58dc-ad9a-77f0d8eb587a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.817011, - "y": 28.5895 - }, - "endPoint": { - "x": 330.830141, - "y": 28.583497 - } - } - }, - { - "id": "f22e5e52-5617-5904-9b4f-6391d9598ed0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.830141, - "y": 28.583497 - }, - "endPoint": { - "x": 330.843519, - "y": 28.578051 - } - } - }, - { - "id": "afe938d6-2d1f-5d0c-972f-d95532b3852a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.843519, - "y": 28.578051 - }, - "endPoint": { - "x": 330.853697, - "y": 28.574482 - } - } - }, - { - "id": "5f8836ec-358b-5795-ae93-412032b6137d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.853697, - "y": 28.574482 - }, - "endPoint": { - "x": 330.864051, - "y": 28.571499 - } - } - }, - { - "id": "f5029f9e-3bfb-5dc6-9271-9c17f670681e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.864051, - "y": 28.571499 - }, - "endPoint": { - "x": 330.874558, - "y": 28.569105 - } - } - }, - { - "id": "ac8b5a80-d9e3-5cb8-b7c2-f5233a438552", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.874558, - "y": 28.569105 - }, - "endPoint": { - "x": 330.885192, - "y": 28.567309 - } - } - }, - { - "id": "94aaeb44-a7e4-569b-95c8-9ac3501e4637", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.885192, - "y": 28.567309 - }, - "endPoint": { - "x": 330.892451, - "y": 28.5663 - } - } - }, - { - "id": "2b38fffb-e207-5b4a-909d-76effcfc84e6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.892451, - "y": 28.5663 - }, - "endPoint": { - "x": 330.899711, - "y": 28.565303 - } - } - }, - { - "id": "3341cd29-806f-53e9-8de7-707fe162556f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.899711, - "y": 28.565303 - }, - "endPoint": { - "x": 330.906974, - "y": 28.564318 - } - } - }, - { - "id": "31575777-25e1-5702-b2b9-31f76eb08a1f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.906974, - "y": 28.564318 - }, - "endPoint": { - "x": 330.914237, - "y": 28.563346 - } - } - }, - { - "id": "f86b3af0-0f07-5024-917d-0bc2f4f8c8a3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.914237, - "y": 28.563346 - }, - "endPoint": { - "x": 330.916515, - "y": 28.563049 - } - } - }, - { - "id": "6c5c1c1d-908f-57f3-82cb-3fd23c6a3ae1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.916515, - "y": 28.563049 - }, - "endPoint": { - "x": 330.918794, - "y": 28.562765 - } - } - }, - { - "id": "4f8cd202-d91b-5b1d-997b-bf0a3a6a581b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.918794, - "y": 28.562765 - }, - "endPoint": { - "x": 330.921074, - "y": 28.562494 - } - } - }, - { - "id": "f2eb64fa-dee0-5123-8e26-6285d29c370b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.921074, - "y": 28.562494 - }, - "endPoint": { - "x": 330.923356, - "y": 28.562234 - } - } - }, - { - "id": "0a3efa66-0223-5f36-af4c-56ed175935b8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.923356, - "y": 28.562234 - }, - "endPoint": { - "x": 330.929641, - "y": 28.561633 - } - } - }, - { - "id": "09d710b6-2e46-5a6b-b558-966c2c04e354", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.929641, - "y": 28.561633 - }, - "endPoint": { - "x": 330.93594, - "y": 28.561219 - } - } - }, - { - "id": "5520f0c0-94df-5a87-a13b-e73af0260411", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.93594, - "y": 28.561219 - }, - "endPoint": { - "x": 330.942248, - "y": 28.560995 - } - } - }, - { - "id": "b076b97d-4afd-5e26-afe4-3ee7854e9d63", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.942248, - "y": 28.560995 - }, - "endPoint": { - "x": 330.948561, - "y": 28.560959 - } - } - }, - { - "id": "a31cba23-f054-5ead-9a65-f7698e85db0c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.948561, - "y": 28.560959 - }, - "endPoint": { - "x": 330.954376, - "y": 28.560919 - } - } - }, - { - "id": "d2d41661-06cf-5260-bad8-d7d6b0c1328c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.954376, - "y": 28.560919 - }, - "endPoint": { - "x": 330.960184, - "y": 28.56069 - } - } - }, - { - "id": "bc29457c-6040-542e-bb03-eb52a5b256ae", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.960184, - "y": 28.56069 - }, - "endPoint": { - "x": 330.965981, - "y": 28.560272 - } - } - }, - { - "id": "7c0a4512-afb3-5660-8439-9313e25e0886", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.965981, - "y": 28.560272 - }, - "endPoint": { - "x": 330.971764, - "y": 28.559666 - } - } - }, - { - "id": "1c04a0ed-73a9-51b4-bfb4-e23d7dc64961", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.971764, - "y": 28.559666 - }, - "endPoint": { - "x": 330.973425, - "y": 28.559371 - } - } - }, - { - "id": "53ab24da-ed3c-5d1d-9c7c-d5d12395feea", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.973425, - "y": 28.559371 - }, - "endPoint": { - "x": 330.97504, - "y": 28.558898 - } - } - }, - { - "id": "03e4ddb3-3010-5612-84b0-1910fba91427", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.97504, - "y": 28.558898 - }, - "endPoint": { - "x": 330.976593, - "y": 28.558253 - } - } - }, - { - "id": "eefe2175-bdd2-54b6-821b-da9b50e25a13", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.976593, - "y": 28.558253 - }, - "endPoint": { - "x": 330.97807, - "y": 28.557438 - } - } - }, - { - "id": "fed53014-7b8e-5787-a465-d9ef6a04590f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.97807, - "y": 28.557438 - }, - "endPoint": { - "x": 330.981745, - "y": 28.555036 - } - } - }, - { - "id": "83532a64-ad01-5bef-816f-7c2bf1ade549", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.981745, - "y": 28.555036 - }, - "endPoint": { - "x": 330.985316, - "y": 28.552485 - } - } - }, - { - "id": "a6e4b669-afb8-5f01-8cc1-b056c75ba4e5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.985316, - "y": 28.552485 - }, - "endPoint": { - "x": 330.988778, - "y": 28.549788 - } - } - }, - { - "id": "027202cf-0939-55b5-a7ad-bdd77585cd3b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.988778, - "y": 28.549788 - }, - "endPoint": { - "x": 330.992127, - "y": 28.546948 - } - } - }, - { - "id": "8c0eaf83-683a-5f17-a4b9-c56d92216b66", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.992127, - "y": 28.546948 - }, - "endPoint": { - "x": 330.995829, - "y": 28.542205 - } - } - }, - { - "id": "eb4e8737-4ebe-5e71-831e-8ce1a6e02a12", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.995829, - "y": 28.542205 - }, - "endPoint": { - "x": 330.999254, - "y": 28.537265 - } - } - }, - { - "id": "fe3da2e1-6651-5143-b079-5dedc3711841", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.999254, - "y": 28.537265 - }, - "endPoint": { - "x": 331.002395, - "y": 28.532139 - } - } - }, - { - "id": "7ec8881f-1a17-5356-a878-a1febc60e916", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.002395, - "y": 28.532139 - }, - "endPoint": { - "x": 331.005244, - "y": 28.526839 - } - } - }, - { - "id": "deb97128-92c9-5e24-9b6a-98a3ac3718e3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.005244, - "y": 28.526839 - }, - "endPoint": { - "x": 331.006917, - "y": 28.523123 - } - } - }, - { - "id": "bc2306ef-e210-55d2-8750-fdc6185627d9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.006917, - "y": 28.523123 - }, - "endPoint": { - "x": 331.008269, - "y": 28.519286 - } - } - }, - { - "id": "fb2e3ae1-d3de-56b2-9f02-ee436222c57d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.008269, - "y": 28.519286 - }, - "endPoint": { - "x": 331.009296, - "y": 28.515349 - } - } - }, - { - "id": "1b61edf3-d4e0-56a9-8374-3bb44c4e5744", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.009296, - "y": 28.515349 - }, - "endPoint": { - "x": 331.009991, - "y": 28.511332 - } - } - }, - { - "id": "d257de16-2bad-5a53-9db4-2b649ab6c966", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.009991, - "y": 28.511332 - }, - "endPoint": { - "x": 331.010602, - "y": 28.506526 - } - } - }, - { - "id": "776d2391-1ab8-5217-9661-c11be77a51b0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.010602, - "y": 28.506526 - }, - "endPoint": { - "x": 331.011189, - "y": 28.501716 - } - } - }, - { - "id": "9561169a-8c9f-56f4-a3da-d869daeb6695", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.011189, - "y": 28.501716 - }, - "endPoint": { - "x": 331.011752, - "y": 28.496904 - } - } - }, - { - "id": "c8170170-8ef4-5df4-81c2-10a3a378e56b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.011752, - "y": 28.496904 - }, - "endPoint": { - "x": 331.012289, - "y": 28.492088 - } - } - }, - { - "id": "e6a6cc16-fdf1-548f-b686-db90e36eaf9d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.012289, - "y": 28.492088 - }, - "endPoint": { - "x": 331.012376, - "y": 28.491169 - } - } - }, - { - "id": "ecd872ed-c992-5e5f-87bc-503134b7bdec", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.012376, - "y": 28.491169 - }, - "endPoint": { - "x": 331.012439, - "y": 28.490248 - } - } - }, - { - "id": "befb425c-4c46-5176-9eea-05173e2a766b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.012439, - "y": 28.490248 - }, - "endPoint": { - "x": 331.012477, - "y": 28.489326 - } - } - }, - { - "id": "71407c61-8410-53f1-a19f-13339a295ba0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.012477, - "y": 28.489326 - }, - "endPoint": { - "x": 331.012489, - "y": 28.488403 - } - } - }, - { - "id": "88fb5bf3-d286-5c8e-81db-a487fdd3fe61", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.012489, - "y": 28.488403 - }, - "endPoint": { - "x": 331.012489, - "y": 28.424783 - } - } - }, - { - "id": "743563f7-f5eb-5024-a66b-5f2cb8e511a6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.012489, - "y": 28.424783 - }, - "endPoint": { - "x": 331.012489, - "y": 28.373881 - } - } - }, - { - "id": "1e1fe65c-d14a-5710-9acc-d92ff884de87", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.012489, - "y": 28.373881 - }, - "endPoint": { - "x": 331.012498, - "y": 28.37228 - } - } - }, - { - "id": "ec95619c-02cb-5375-9175-a1a8d5f8a25b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.012498, - "y": 28.37228 - }, - "endPoint": { - "x": 331.012525, - "y": 28.37068 - } - } - }, - { - "id": "478c411a-bab3-5365-8307-49597703b65a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.012525, - "y": 28.37068 - }, - "endPoint": { - "x": 331.01257, - "y": 28.369079 - } - } - }, - { - "id": "c43067e6-21af-5f08-9593-fbf774364ed2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.01257, - "y": 28.369079 - }, - "endPoint": { - "x": 331.012632, - "y": 28.36748 - } - } - }, - { - "id": "ceed0523-d483-5fd9-bb1a-c61f7c975f90", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.012632, - "y": 28.36748 - }, - "endPoint": { - "x": 331.013264, - "y": 28.353168 - } - } - }, - { - "id": "3a8136c8-b2be-54d6-b723-899d774f52b9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.013264, - "y": 28.353168 - }, - "endPoint": { - "x": 331.013877, - "y": 28.338856 - } - } - }, - { - "id": "c12a3dfb-bf41-5ca8-a10c-b088e187a568", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.013877, - "y": 28.338856 - }, - "endPoint": { - "x": 331.014472, - "y": 28.324544 - } - } - }, - { - "id": "632099c3-f83b-583d-b9ff-efb906d92521", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.014472, - "y": 28.324544 - }, - "endPoint": { - "x": 331.01505, - "y": 28.31023 - } - } - }, - { - "id": "9a2892e1-dab5-5055-8b1d-db3dfd1d0d02", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.01505, - "y": 28.31023 - }, - "endPoint": { - "x": 331.023805, - "y": 28.014277 - } - } - }, - { - "id": "392893e2-a1ae-5253-b24b-6df5f1af8222", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.023805, - "y": 28.014277 - }, - "endPoint": { - "x": 331.026557, - "y": 27.718237 - } - } - }, - { - "id": "b80ce491-b33d-5f01-b934-662f3efecef3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.026557, - "y": 27.718237 - }, - "endPoint": { - "x": 331.023308, - "y": 27.422202 - } - } - }, - { - "id": "dbb67109-6101-5c0b-a7a1-f8d0b89a6957", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.023308, - "y": 27.422202 - }, - "endPoint": { - "x": 331.014057, - "y": 27.126264 - } - } - }, - { - "id": "8dd72baa-7323-5069-9f7b-0eabee949f1e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.014057, - "y": 27.126264 - }, - "endPoint": { - "x": 331.006984, - "y": 27.028367 - } - } - }, - { - "id": "883ee560-f9ab-5ec8-99ad-f1bb8f9ea63e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.006984, - "y": 27.028367 - }, - "endPoint": { - "x": 330.993924, - "y": 26.93118 - } - } - }, - { - "id": "77ae439b-07c6-5275-8729-50d77858d78b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.993924, - "y": 26.93118 - }, - "endPoint": { - "x": 330.974924, - "y": 26.834978 - } - } - }, - { - "id": "12fe891d-1e93-5ee2-b39c-c72f7764b516", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.974924, - "y": 26.834978 - }, - "endPoint": { - "x": 330.950027, - "y": 26.740036 - } - } - }, - { - "id": "2a2819f7-26a0-5a8d-9048-e434b1a304ee", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.950027, - "y": 26.740036 - }, - "endPoint": { - "x": 330.948711, - "y": 26.735622 - } - } - }, - { - "id": "1c8a911b-2ab0-5e0f-bd14-db7b69a7de9f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.948711, - "y": 26.735622 - }, - "endPoint": { - "x": 330.947373, - "y": 26.731214 - } - } - }, - { - "id": "f17a494c-d635-5794-b594-96418313c29f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.947373, - "y": 26.731214 - }, - "endPoint": { - "x": 330.946012, - "y": 26.726813 - } - } - }, - { - "id": "8b35d93f-c38b-5652-9ac4-d367f15d81f6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.946012, - "y": 26.726813 - }, - "endPoint": { - "x": 330.944629, - "y": 26.72242 - } - } - }, - { - "id": "b48310a1-d350-5afd-ab31-f6af77574814", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.944629, - "y": 26.72242 - }, - "endPoint": { - "x": 330.944558, - "y": 26.722233 - } - } - }, - { - "id": "0ecdd02e-ddb7-59fc-8906-6ae26946d13e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.944558, - "y": 26.722233 - }, - "endPoint": { - "x": 330.944464, - "y": 26.722057 - } - } - }, - { - "id": "20dfb52f-e8ae-51cd-bcca-f5eab16df3d3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.944464, - "y": 26.722057 - }, - "endPoint": { - "x": 330.944351, - "y": 26.721893 - } - } - }, - { - "id": "74ec3f5e-0321-52fd-86b2-3615711e7c98", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.944351, - "y": 26.721893 - }, - "endPoint": { - "x": 330.944218, - "y": 26.721743 - } - } - }, - { - "id": "44cc1e99-18f0-511e-82c1-080ec31746ac", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.944218, - "y": 26.721743 - }, - "endPoint": { - "x": 330.943534, - "y": 26.721075 - } - } - }, - { - "id": "ad8b7484-b347-5053-b5e1-35f73b98b6a7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.943534, - "y": 26.721075 - }, - "endPoint": { - "x": 330.94283, - "y": 26.720427 - } - } - }, - { - "id": "e07c44cb-4365-5481-8f4d-0b7c1ba5aaae", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.94283, - "y": 26.720427 - }, - "endPoint": { - "x": 330.942109, - "y": 26.719799 - } - } - }, - { - "id": "5c7453f0-09a9-572b-b7af-b8bde7757980", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.942109, - "y": 26.719799 - }, - "endPoint": { - "x": 330.941369, - "y": 26.719191 - } - } - }, - { - "id": "c393e8a5-3fe5-57c1-ad79-aba0144b2a68", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.941369, - "y": 26.719191 - }, - "endPoint": { - "x": 330.939624, - "y": 26.717816 - } - } - }, - { - "id": "1f1254df-09f5-5bb8-893e-c30708de1708", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.939624, - "y": 26.717816 - }, - "endPoint": { - "x": 330.937861, - "y": 26.716461 - } - } - }, - { - "id": "1c3e2cee-a054-5e1a-9a05-b2751ecb5376", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.937861, - "y": 26.716461 - }, - "endPoint": { - "x": 330.936082, - "y": 26.715129 - } - } - }, - { - "id": "c715f759-22fd-5347-aa60-6c295a4c6622", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.936082, - "y": 26.715129 - }, - "endPoint": { - "x": 330.934287, - "y": 26.713818 - } - } - }, - { - "id": "0313053b-9057-52e2-83be-34aeecd1bdf5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.934287, - "y": 26.713818 - }, - "endPoint": { - "x": 330.930746, - "y": 26.711298 - } - } - }, - { - "id": "ab92bcca-ff91-5ee0-baf9-22929a329982", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.930746, - "y": 26.711298 - }, - "endPoint": { - "x": 330.927175, - "y": 26.708823 - } - } - }, - { - "id": "1c992aa5-c56d-543e-86e6-6e00e57f7b87", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.927175, - "y": 26.708823 - }, - "endPoint": { - "x": 330.923573, - "y": 26.706392 - } - } - }, - { - "id": "abe4150a-a62c-5239-b1ce-83dacb2e1e3a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.923573, - "y": 26.706392 - }, - "endPoint": { - "x": 330.919941, - "y": 26.704005 - } - } - }, - { - "id": "f314d448-d879-5bf1-abe3-d4d1994cf6a2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.919941, - "y": 26.704005 - }, - "endPoint": { - "x": 330.919346, - "y": 26.703652 - } - } - }, - { - "id": "4b8bd24b-fb6d-5a9e-9de7-d70da2dfcc44", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.919346, - "y": 26.703652 - }, - "endPoint": { - "x": 330.918726, - "y": 26.703346 - } - } - }, - { - "id": "856f742d-38ec-5cd7-804d-8dcc957515f7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.918726, - "y": 26.703346 - }, - "endPoint": { - "x": 330.918084, - "y": 26.70309 - } - } - }, - { - "id": "a78d242f-9466-5d09-a7f6-82d8f01bcd05", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.918084, - "y": 26.70309 - }, - "endPoint": { - "x": 330.917422, - "y": 26.702885 - } - } - }, - { - "id": "fad54d0a-82fe-516a-bcf6-49868953846f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.917422, - "y": 26.702885 - }, - "endPoint": { - "x": 330.916727, - "y": 26.702704 - } - } - }, - { - "id": "867cf65f-4fe8-57f4-8a78-ef6b5ab8d9c8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.916727, - "y": 26.702704 - }, - "endPoint": { - "x": 330.916029, - "y": 26.702531 - } - } - }, - { - "id": "bdee2f7b-2d89-513e-b20e-71e0894f5bfc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.916029, - "y": 26.702531 - }, - "endPoint": { - "x": 330.915329, - "y": 26.702368 - } - } - }, - { - "id": "cc0396f4-c1a4-5400-9a7e-4b692befd27a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.915329, - "y": 26.702368 - }, - "endPoint": { - "x": 330.914628, - "y": 26.702213 - } - } - }, - { - "id": "aadab2c2-68fb-5fd0-858c-c2ceef4dffbe", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.914628, - "y": 26.702213 - }, - "endPoint": { - "x": 330.911847, - "y": 26.701624 - } - } - }, - { - "id": "55a08abc-e51d-5b4d-9800-4761370fa65e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.911847, - "y": 26.701624 - }, - "endPoint": { - "x": 330.909064, - "y": 26.701043 - } - } - }, - { - "id": "47694e74-b757-5fd8-b74d-131c87381c2f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.909064, - "y": 26.701043 - }, - "endPoint": { - "x": 330.90628, - "y": 26.700472 - } - } - }, - { - "id": "b037f29c-6d5c-5a96-b0a6-919d9c7c3657", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.90628, - "y": 26.700472 - }, - "endPoint": { - "x": 330.903493, - "y": 26.69991 - } - } - }, - { - "id": "0c71557c-6c6e-594d-890d-dc7b9a61cb4a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.903493, - "y": 26.69991 - }, - "endPoint": { - "x": 330.89896, - "y": 26.699008 - } - } - }, - { - "id": "c030c002-8f66-5177-83fe-33b53d9d77b8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.89896, - "y": 26.699008 - }, - "endPoint": { - "x": 330.894425, - "y": 26.698118 - } - } - }, - { - "id": "ba35d9da-f03c-5fc4-ba8c-054c3ed186b3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.894425, - "y": 26.698118 - }, - "endPoint": { - "x": 330.889888, - "y": 26.697239 - } - } - }, - { - "id": "ec41d047-360d-5723-b3c5-ed9937cd4d6b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.889888, - "y": 26.697239 - }, - "endPoint": { - "x": 330.885348, - "y": 26.696372 - } - } - }, - { - "id": "156a7336-840b-59d4-b352-82005ce64b5f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.885348, - "y": 26.696372 - }, - "endPoint": { - "x": 330.884687, - "y": 26.696253 - } - } - }, - { - "id": "0bd6d5c7-6dff-5030-bfaf-dd3b6bd2befc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.884687, - "y": 26.696253 - }, - "endPoint": { - "x": 330.884024, - "y": 26.696144 - } - } - }, - { - "id": "813d60b5-755e-594e-863b-886e052c199d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.884024, - "y": 26.696144 - }, - "endPoint": { - "x": 330.88336, - "y": 26.696048 - } - } - }, - { - "id": "cb20a2c3-aafc-5b9a-9456-8e07f72d9ada", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.88336, - "y": 26.696048 - }, - "endPoint": { - "x": 330.882693, - "y": 26.695963 - } - } - }, - { - "id": "ec532d60-9af0-53a8-a882-29952d221488", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.882693, - "y": 26.695963 - }, - "endPoint": { - "x": 330.881513, - "y": 26.695842 - } - } - }, - { - "id": "61ecec4d-31db-5c65-8b41-cd3ac5b808a3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.881513, - "y": 26.695842 - }, - "endPoint": { - "x": 330.880329, - "y": 26.695761 - } - } - }, - { - "id": "caad4748-2c4c-55b7-a109-d4c4ac4a8c01", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.880329, - "y": 26.695761 - }, - "endPoint": { - "x": 330.879143, - "y": 26.695719 - } - } - }, - { - "id": "02399c0f-6d8b-5071-8045-f16692556978", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.879143, - "y": 26.695719 - }, - "endPoint": { - "x": 330.877957, - "y": 26.695716 - } - } - }, - { - "id": "c4303a7b-4a5a-5ad0-a753-7db96c894b7b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.877957, - "y": 26.695716 - }, - "endPoint": { - "x": 330.868226, - "y": 26.695837 - } - } - }, - { - "id": "e4adf9a3-9022-5b3b-9a8b-b06a01f64020", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.868226, - "y": 26.695837 - }, - "endPoint": { - "x": 330.858495, - "y": 26.695918 - } - } - }, - { - "id": "8611074f-51da-5cba-87b0-06c184c053ad", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.858495, - "y": 26.695918 - }, - "endPoint": { - "x": 330.848764, - "y": 26.69596 - } - } - }, - { - "id": "5929d05a-cc5c-5d76-8ca7-fc1d23852fed", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.848764, - "y": 26.69596 - }, - "endPoint": { - "x": 330.839033, - "y": 26.695963 - } - } - }, - { - "id": "afc65e6b-da11-5632-b0e6-28531ef34e98", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.839033, - "y": 26.695963 - }, - "endPoint": { - "x": 330.749768, - "y": 26.695324 - } - } - }, - { - "id": "7fd80011-65d5-56a4-8522-000542fb8a77", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.749768, - "y": 26.695324 - }, - "endPoint": { - "x": 330.660518, - "y": 26.69372 - } - } - }, - { - "id": "8360cb98-5fe9-5303-be97-f1a619a4b94e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.660518, - "y": 26.69372 - }, - "endPoint": { - "x": 330.57129, - "y": 26.691151 - } - } - }, - { - "id": "b954c488-9d08-5c9e-9c09-23d619253279", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.57129, - "y": 26.691151 - }, - "endPoint": { - "x": 330.482093, - "y": 26.687619 - } - } - }, - { - "id": "5a60c8d4-1280-5ef3-8c52-d9f491895d77", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.482093, - "y": 26.687619 - }, - "endPoint": { - "x": 330.422583, - "y": 26.685423 - } - } - }, - { - "id": "1df3973d-07e3-54e9-bcef-8a96e0985e42", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.422583, - "y": 26.685423 - }, - "endPoint": { - "x": 330.36305, - "y": 26.684191 - } - } - }, - { - "id": "248e53ac-6cbc-54eb-9c95-49a76f73a824", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.36305, - "y": 26.684191 - }, - "endPoint": { - "x": 330.303505, - "y": 26.683925 - } - } - }, - { - "id": "6d8831c4-9405-5efa-9ceb-caef75c2c4e2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.303505, - "y": 26.683925 - }, - "endPoint": { - "x": 330.243959, - "y": 26.684623 - } - } - }, - { - "id": "4a599ec8-ddfb-5c08-9d0d-8d4791aa5169", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.243959, - "y": 26.684623 - }, - "endPoint": { - "x": 330.235077, - "y": 26.684906 - } - } - }, - { - "id": "208f345a-e2f4-5dab-94aa-216184d61b90", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.235077, - "y": 26.684906 - }, - "endPoint": { - "x": 330.226206, - "y": 26.685403 - } - } - }, - { - "id": "601ebab0-c586-56bf-8aa3-af3d668079cc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.226206, - "y": 26.685403 - }, - "endPoint": { - "x": 330.217349, - "y": 26.686114 - } - } - }, - { - "id": "732e5a2b-fb99-567c-925e-61da2516ff4f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.217349, - "y": 26.686114 - }, - "endPoint": { - "x": 330.208511, - "y": 26.687038 - } - } - }, - { - "id": "ac86e990-4172-51d9-825d-4ceb7c8d21e7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.208511, - "y": 26.687038 - }, - "endPoint": { - "x": 330.206668, - "y": 26.687362 - } - } - }, - { - "id": "d866dec9-a2f2-5693-9fc7-3758e3257989", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.206668, - "y": 26.687362 - }, - "endPoint": { - "x": 330.204881, - "y": 26.687898 - } - } - }, - { - "id": "bddd40b5-60a2-57f5-b35e-4b45c9c0d2e3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.204881, - "y": 26.687898 - }, - "endPoint": { - "x": 330.203168, - "y": 26.688636 - } - } - }, - { - "id": "87d8cd44-6b6e-52ed-8e2c-facf6745dac2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.203168, - "y": 26.688636 - }, - "endPoint": { - "x": 330.201547, - "y": 26.689573 - } - } - }, - { - "id": "f039f39b-3c54-5ade-b93e-4c7ab7698596", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.201547, - "y": 26.689573 - }, - "endPoint": { - "x": 330.200384, - "y": 26.690391 - } - } - }, - { - "id": "9b3f1d24-e001-56a3-ac37-6e10b950cd64", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.200384, - "y": 26.690391 - }, - "endPoint": { - "x": 330.199276, - "y": 26.691281 - } - } - }, - { - "id": "4d376f6f-71c6-52f9-a1cc-779159577ecd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.199276, - "y": 26.691281 - }, - "endPoint": { - "x": 330.198226, - "y": 26.692238 - } - } - }, - { - "id": "1f6f8285-a1b6-52fb-bda1-4deb0aad9329", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.198226, - "y": 26.692238 - }, - "endPoint": { - "x": 330.197236, - "y": 26.69326 - } - } - }, - { - "id": "9f4e75de-83dc-5869-a34d-8d609fbd570a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.197236, - "y": 26.69326 - }, - "endPoint": { - "x": 330.194262, - "y": 26.696598 - } - } - }, - { - "id": "5979a720-37ec-55a5-ac99-6255aa9f1602", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.194262, - "y": 26.696598 - }, - "endPoint": { - "x": 330.191354, - "y": 26.699995 - } - } - }, - { - "id": "b23929e1-a25d-50a3-8885-445035c9a19a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.191354, - "y": 26.699995 - }, - "endPoint": { - "x": 330.188515, - "y": 26.703448 - } - } - }, - { - "id": "b7bca6b5-3460-550b-9a43-fb7a98a6641d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.188515, - "y": 26.703448 - }, - "endPoint": { - "x": 330.185745, - "y": 26.706958 - } - } - }, - { - "id": "2d4c152b-e1af-5443-a95d-cf8e2047fb27", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.185745, - "y": 26.706958 - }, - "endPoint": { - "x": 330.182311, - "y": 26.711462 - } - } - }, - { - "id": "4404a1fa-6300-50e6-b9a8-22fe42140a61", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.182311, - "y": 26.711462 - }, - "endPoint": { - "x": 330.178942, - "y": 26.716014 - } - } - }, - { - "id": "e31d48cd-6b34-5e25-8b50-e01d8bfd5d02", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.178942, - "y": 26.716014 - }, - "endPoint": { - "x": 330.175637, - "y": 26.720614 - } - } - }, - { - "id": "75559c1c-0f5a-59a9-a379-73b5e27363af", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.175637, - "y": 26.720614 - }, - "endPoint": { - "x": 330.172397, - "y": 26.725259 - } - } - }, - { - "id": "26479582-e03a-5cb4-bd96-a6fb06e493a2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.172397, - "y": 26.725259 - }, - "endPoint": { - "x": 330.17129, - "y": 26.726943 - } - } - }, - { - "id": "ecfe7dcf-1ea4-5603-8430-bc5c880ea647", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.17129, - "y": 26.726943 - }, - "endPoint": { - "x": 330.17025, - "y": 26.728668 - } - } - }, - { - "id": "61b642ab-86c1-5479-a45e-6b3905c56e3f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.17025, - "y": 26.728668 - }, - "endPoint": { - "x": 330.16928, - "y": 26.730433 - } - } - }, - { - "id": "5cb92b49-0c0c-577b-aff2-d78d5dd5edcc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.16928, - "y": 26.730433 - }, - "endPoint": { - "x": 330.16838, - "y": 26.732236 - } - } - }, - { - "id": "bd0a9c1b-ac24-557a-bed5-bc2d876fcb17", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.16838, - "y": 26.732236 - }, - "endPoint": { - "x": 330.168144, - "y": 26.732769 - } - } - }, - { - "id": "fafc4b2d-c32d-5561-a3f5-2494e8f554a2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.168144, - "y": 26.732769 - }, - "endPoint": { - "x": 330.167936, - "y": 26.733313 - } - } - }, - { - "id": "5fe1c93b-bcd1-5f8b-8138-c9e5927ff8f6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.167936, - "y": 26.733313 - }, - "endPoint": { - "x": 330.167756, - "y": 26.733867 - } - } - }, - { - "id": "b68d118e-c218-5947-87c1-78690cb06c40", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.167756, - "y": 26.733867 - }, - "endPoint": { - "x": 330.167605, - "y": 26.73443 - } - } - }, - { - "id": "2b0b6824-fe15-577d-8542-daaa9b73ab35", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.167605, - "y": 26.73443 - }, - "endPoint": { - "x": 330.165382, - "y": 26.743738 - } - } - }, - { - "id": "c2b79e73-ccc9-5e19-9d98-f13b1021d5a3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.165382, - "y": 26.743738 - }, - "endPoint": { - "x": 330.163187, - "y": 26.753054 - } - } - }, - { - "id": "13904335-9767-5e25-b447-8cb88fba514e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.163187, - "y": 26.753054 - }, - "endPoint": { - "x": 330.161022, - "y": 26.762376 - } - } - }, - { - "id": "6b2eae77-9211-5646-9629-059eaa218103", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.161022, - "y": 26.762376 - }, - "endPoint": { - "x": 330.158886, - "y": 26.771705 - } - } - }, - { - "id": "ea2e25e0-6860-5a65-b689-a68c1ee9bc6e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.158886, - "y": 26.771705 - }, - "endPoint": { - "x": 330.139049, - "y": 26.865497 - } - } - }, - { - "id": "5818e42f-976e-50d9-a3c6-940012a417e9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.139049, - "y": 26.865497 - }, - "endPoint": { - "x": 330.122055, - "y": 26.959824 - } - } - }, - { - "id": "a98450bb-4908-502d-a209-abafff1d61a0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.122055, - "y": 26.959824 - }, - "endPoint": { - "x": 330.107913, - "y": 27.054621 - } - } - }, - { - "id": "98269e2f-f1a2-50e6-8e7c-c00479f179b2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.107913, - "y": 27.054621 - }, - "endPoint": { - "x": 330.096635, - "y": 27.149822 - } - } - }, - { - "id": "347af3ea-8b86-5bdf-9cb3-9a59805ebad5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.096635, - "y": 27.149822 - }, - "endPoint": { - "x": 330.091803, - "y": 27.210771 - } - } - }, - { - "id": "3c21a863-5243-555a-8002-0dd95e10b8b2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.091803, - "y": 27.210771 - }, - "endPoint": { - "x": 330.089865, - "y": 27.271846 - } - } - }, - { - "id": "1d9415ef-a6da-595b-8fad-3a4ee0ff0eeb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.089865, - "y": 27.271846 - }, - "endPoint": { - "x": 330.090822, - "y": 27.332944 - } - } - }, - { - "id": "4024d423-cb3e-5d4c-96a3-97699892ebf6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.090822, - "y": 27.332944 - }, - "endPoint": { - "x": 330.094675, - "y": 27.393963 - } - } - }, - { - "id": "cee2e6af-5cc2-51ca-a940-32815fbfce32", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.094675, - "y": 27.393963 - }, - "endPoint": { - "x": 330.095317, - "y": 27.400983 - } - } - }, - { - "id": "3bbb888f-2f0d-5e65-98af-347a51b5e483", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.095317, - "y": 27.400983 - }, - "endPoint": { - "x": 330.09602, - "y": 27.407998 - } - } - }, - { - "id": "43824e15-d75f-54cc-a089-e754608f94ea", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.09602, - "y": 27.407998 - }, - "endPoint": { - "x": 330.096784, - "y": 27.415007 - } - } - }, - { - "id": "da58a8c7-ac61-519d-8685-45f85bf9b83a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.096784, - "y": 27.415007 - }, - "endPoint": { - "x": 330.09761, - "y": 27.422008 - } - } - }, - { - "id": "9b91f203-9628-51ac-92bb-6f92463fcaee", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.09761, - "y": 27.422008 - }, - "endPoint": { - "x": 330.097723, - "y": 27.422682 - } - } - }, - { - "id": "4b4bdfef-fe93-561c-81a8-3cd83c78ea7b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.097723, - "y": 27.422682 - }, - "endPoint": { - "x": 330.097898, - "y": 27.42334 - } - } - }, - { - "id": "9f8777cf-6090-5ebd-a65f-e5a4dfb1923a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.097898, - "y": 27.42334 - }, - "endPoint": { - "x": 330.098131, - "y": 27.42398 - } - } - }, - { - "id": "c92b1b74-88af-554c-821c-6760a6710c99", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.098131, - "y": 27.42398 - }, - "endPoint": { - "x": 330.098423, - "y": 27.424598 - } - } - }, - { - "id": "0149e7e4-444b-5898-a509-3585d953466a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.098423, - "y": 27.424598 - }, - "endPoint": { - "x": 330.099408, - "y": 27.426373 - } - } - }, - { - "id": "0c096f25-46c3-554e-a14e-4f5cac597d6b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.099408, - "y": 27.426373 - }, - "endPoint": { - "x": 330.100462, - "y": 27.428107 - } - } - }, - { - "id": "b6028978-abf9-5e6c-bb75-f0be3329fcaf", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.100462, - "y": 27.428107 - }, - "endPoint": { - "x": 330.101583, - "y": 27.429798 - } - } - }, - { - "id": "5f734295-cacc-5f5a-ba4c-95d19e321a1f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.101583, - "y": 27.429798 - }, - "endPoint": { - "x": 330.10277, - "y": 27.431444 - } - } - }, - { - "id": "778cf579-483e-5248-b75b-43e00c808269", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.10277, - "y": 27.431444 - }, - "endPoint": { - "x": 330.106087, - "y": 27.43579 - } - } - }, - { - "id": "c12e4810-4173-565c-9e63-4fb53b56f644", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.106087, - "y": 27.43579 - }, - "endPoint": { - "x": 330.109466, - "y": 27.440086 - } - } - }, - { - "id": "b8ad1161-283d-54b1-9391-92f7473aba1d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.109466, - "y": 27.440086 - }, - "endPoint": { - "x": 330.112908, - "y": 27.444333 - } - } - }, - { - "id": "5f80441a-66a7-54c3-8627-8af5b0387ce6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.112908, - "y": 27.444333 - }, - "endPoint": { - "x": 330.116412, - "y": 27.448529 - } - } - }, - { - "id": "df1d4d5f-a6ba-5095-966b-09d3fc6c3442", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.116412, - "y": 27.448529 - }, - "endPoint": { - "x": 330.121335, - "y": 27.454277 - } - } - }, - { - "id": "c1178e4f-8590-55f8-bf29-195e68cb4920", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.121335, - "y": 27.454277 - }, - "endPoint": { - "x": 330.126319, - "y": 27.459971 - } - } - }, - { - "id": "08465c7f-61eb-5c81-9e4a-098177ba9749", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.126319, - "y": 27.459971 - }, - "endPoint": { - "x": 330.131363, - "y": 27.465612 - } - } - }, - { - "id": "a329479b-c983-5bf5-b7bb-cc1668821fc4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.131363, - "y": 27.465612 - }, - "endPoint": { - "x": 330.136468, - "y": 27.471198 - } - } - }, - { - "id": "9834941e-8158-587e-a6ca-7560543856af", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.136468, - "y": 27.471198 - }, - "endPoint": { - "x": 330.137355, - "y": 27.472099 - } - } - }, - { - "id": "801a2160-66b6-5313-9fb0-22c29d346e61", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.137355, - "y": 27.472099 - }, - "endPoint": { - "x": 330.138297, - "y": 27.472941 - } - } - }, - { - "id": "1494c14e-31df-5b40-86b8-4e760bec7b03", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.138297, - "y": 27.472941 - }, - "endPoint": { - "x": 330.139292, - "y": 27.47372 - } - } - }, - { - "id": "f2b3da9b-de80-5a99-8690-53a42e5d65a2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.139292, - "y": 27.47372 - }, - "endPoint": { - "x": 330.140335, - "y": 27.474435 - } - } - }, - { - "id": "645a1914-05ec-5f34-8087-039c68aee67f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.140335, - "y": 27.474435 - }, - "endPoint": { - "x": 330.142491, - "y": 27.47579 - } - } - }, - { - "id": "4c158a2d-4ae9-5b0d-b8c0-b2c5fae874db", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.142491, - "y": 27.47579 - }, - "endPoint": { - "x": 330.144667, - "y": 27.477115 - } - } - }, - { - "id": "940fe26e-e79e-5baf-869b-9ed6335e30af", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.144667, - "y": 27.477115 - }, - "endPoint": { - "x": 330.146862, - "y": 27.478407 - } - } - }, - { - "id": "c844b616-e93e-5973-acbe-6b059be8e011", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.146862, - "y": 27.478407 - }, - "endPoint": { - "x": 330.149075, - "y": 27.479668 - } - } - }, - { - "id": "2f2ead48-5893-54a3-9952-5ef2b4a8d2ee", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.149075, - "y": 27.479668 - }, - "endPoint": { - "x": 330.159324, - "y": 27.485386 - } - } - }, - { - "id": "b143f66f-4d54-5190-950e-7323543786f3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.159324, - "y": 27.485386 - }, - "endPoint": { - "x": 330.169592, - "y": 27.491071 - } - } - }, - { - "id": "2a604721-f76d-5df4-afc8-ddba66ce1e74", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.169592, - "y": 27.491071 - }, - "endPoint": { - "x": 330.179877, - "y": 27.496724 - } - } - }, - { - "id": "c8e5ebff-433e-516c-825e-4bab2d100cc0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.179877, - "y": 27.496724 - }, - "endPoint": { - "x": 330.190179, - "y": 27.502345 - } - } - }, - { - "id": "f3a2bd1d-54d9-5b6e-974a-1796eb750c11", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.190179, - "y": 27.502345 - }, - "endPoint": { - "x": 330.194709, - "y": 27.504805 - } - } - }, - { - "id": "03ffbbf9-f9d4-5259-9de6-a60ec1b7a911", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.194709, - "y": 27.504805 - }, - "endPoint": { - "x": 330.19924, - "y": 27.507261 - } - } - }, - { - "id": "6fbd5d9b-e4f0-58ea-93ef-11f765fff660", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.19924, - "y": 27.507261 - }, - "endPoint": { - "x": 330.203773, - "y": 27.509715 - } - } - }, - { - "id": "c7ae85a5-1e46-5f81-b648-4b9e2007e85d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.203773, - "y": 27.509715 - }, - "endPoint": { - "x": 330.208307, - "y": 27.512166 - } - } - }, - { - "id": "2b11bd13-1c97-558f-aacf-fd6490b445fa", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.208307, - "y": 27.512166 - }, - "endPoint": { - "x": 330.215755, - "y": 27.516191 - } - } - }, - { - "id": "f5aed2ef-125d-5b3f-8a70-16521eed1662", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.215755, - "y": 27.516191 - }, - "endPoint": { - "x": 330.223201, - "y": 27.520218 - } - } - }, - { - "id": "d28c8b6d-cf07-5af5-ba49-69716f4487a1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.223201, - "y": 27.520218 - }, - "endPoint": { - "x": 330.230645, - "y": 27.524248 - } - } - }, - { - "id": "23d4a8c4-b24f-5f44-96c7-73cbb99927ae", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.230645, - "y": 27.524248 - }, - "endPoint": { - "x": 330.238088, - "y": 27.528281 - } - } - }, - { - "id": "a4de77a8-6bbc-5dad-a3d9-9567ba395586", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.238088, - "y": 27.528281 - }, - "endPoint": { - "x": 330.255487, - "y": 27.537832 - } - } - }, - { - "id": "61d0bea9-1b3d-5bff-99f1-91ba7eb8e8fd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.255487, - "y": 27.537832 - }, - "endPoint": { - "x": 330.272785, - "y": 27.547563 - } - } - }, - { - "id": "c3fa2c14-c8ce-57d9-a453-64ca16f605ee", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.272785, - "y": 27.547563 - }, - "endPoint": { - "x": 330.289981, - "y": 27.557474 - } - } - }, - { - "id": "1b8c1286-566a-59cb-aafd-14111d86e367", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.289981, - "y": 27.557474 - }, - "endPoint": { - "x": 330.307074, - "y": 27.567563 - } - } - }, - { - "id": "2a54ef14-7335-5b4c-9212-03ac37fd090e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.307074, - "y": 27.567563 - }, - "endPoint": { - "x": 330.320802, - "y": 27.575883 - } - } - }, - { - "id": "1e61756c-3d79-557a-a145-361c40334dc3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.320802, - "y": 27.575883 - }, - "endPoint": { - "x": 330.33442, - "y": 27.584379 - } - } - }, - { - "id": "15098803-ff3e-5f11-9e47-112b98dda610", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.33442, - "y": 27.584379 - }, - "endPoint": { - "x": 330.347929, - "y": 27.593049 - } - } - }, - { - "id": "5763e0ab-1bb0-53d7-bfac-09e706cdedfa", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.347929, - "y": 27.593049 - }, - "endPoint": { - "x": 330.361325, - "y": 27.601893 - } - } - }, - { - "id": "de45bfc8-1532-5f7e-afe0-e59d66316d0f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.361325, - "y": 27.601893 - }, - "endPoint": { - "x": 330.371324, - "y": 27.609198 - } - } - }, - { - "id": "6571e181-2a73-50b5-af00-2f266d6adf2e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.371324, - "y": 27.609198 - }, - "endPoint": { - "x": 330.380677, - "y": 27.617283 - } - } - }, - { - "id": "1b6b4bb5-55f8-5f76-867a-7d48a98b9692", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.380677, - "y": 27.617283 - }, - "endPoint": { - "x": 330.389337, - "y": 27.626106 - } - } - }, - { - "id": "4caf0446-fb8d-5b73-8d6c-116b81ca03f2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.389337, - "y": 27.626106 - }, - "endPoint": { - "x": 330.39726, - "y": 27.635623 - } - } - }, - { - "id": "d07ed5dd-c359-516c-83be-5516971b4ae6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.39726, - "y": 27.635623 - }, - "endPoint": { - "x": 330.40616, - "y": 27.648084 - } - } - }, - { - "id": "0274b8ed-f4d6-53c0-9cd2-cb68ac1d80cb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.40616, - "y": 27.648084 - }, - "endPoint": { - "x": 330.41421, - "y": 27.661091 - } - } - }, - { - "id": "4a0dc355-a000-5029-a745-9badd592859a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.41421, - "y": 27.661091 - }, - "endPoint": { - "x": 330.421385, - "y": 27.6746 - } - } - }, - { - "id": "9b5883ea-0d80-51d4-bc8f-d63012134975", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.421385, - "y": 27.6746 - }, - "endPoint": { - "x": 330.427659, - "y": 27.688568 - } - } - }, - { - "id": "342d59d0-e370-53ce-a03e-d9cf5a7d5920", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.427659, - "y": 27.688568 - }, - "endPoint": { - "x": 330.433063, - "y": 27.702183 - } - } - }, - { - "id": "2d4c2ec4-432a-5257-b835-d895a08643ac", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.433063, - "y": 27.702183 - }, - "endPoint": { - "x": 330.438157, - "y": 27.715916 - } - } - }, - { - "id": "e1474046-9b75-5eab-ab7b-242592455d5a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.438157, - "y": 27.715916 - }, - "endPoint": { - "x": 330.442938, - "y": 27.72976 - } - } - }, - { - "id": "abeb826b-86b0-5da2-b324-a3ebff52f192", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.442938, - "y": 27.72976 - }, - "endPoint": { - "x": 330.447405, - "y": 27.743711 - } - } - }, - { - "id": "9d937b43-82f9-516a-b3ad-abcb90ef8b05", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.447405, - "y": 27.743711 - }, - "endPoint": { - "x": 330.453145, - "y": 27.762926 - } - } - }, - { - "id": "6d092ca0-b91a-5e45-8fa1-859532af7589", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.453145, - "y": 27.762926 - }, - "endPoint": { - "x": 330.458566, - "y": 27.782232 - } - } - }, - { - "id": "663ac4c0-42fa-58e8-a02c-fb37441f8e1a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.458566, - "y": 27.782232 - }, - "endPoint": { - "x": 330.463667, - "y": 27.801625 - } - } - }, - { - "id": "1ab3c68b-50a7-5db5-ad02-1022f8b86f3a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.463667, - "y": 27.801625 - }, - "endPoint": { - "x": 330.468447, - "y": 27.821101 - } - } - }, - { - "id": "61f1e1e5-517d-5d81-822a-66d75d33d7d9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.468447, - "y": 27.821101 - }, - "endPoint": { - "x": 330.474689, - "y": 27.848 - } - } - }, - { - "id": "b00c33db-bd37-5635-a8ea-6a1f1df7d566", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.474689, - "y": 27.848 - }, - "endPoint": { - "x": 330.480695, - "y": 27.874952 - } - } - }, - { - "id": "51213fcd-9183-58ff-bbe0-2b32763e920b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.480695, - "y": 27.874952 - }, - "endPoint": { - "x": 330.486465, - "y": 27.901956 - } - } - }, - { - "id": "4a26605b-4a32-51b0-b96d-5615650293f9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.486465, - "y": 27.901956 - }, - "endPoint": { - "x": 330.491999, - "y": 27.92901 - } - } - }, - { - "id": "941a0f61-49fe-5d58-aeaa-852f579578e0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.491999, - "y": 27.92901 - }, - "endPoint": { - "x": 330.492843, - "y": 27.933849 - } - } - }, - { - "id": "2e7a9530-a924-5166-bd49-af8e56f47061", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.492843, - "y": 27.933849 - }, - "endPoint": { - "x": 330.493447, - "y": 27.938721 - } - } - }, - { - "id": "56216b27-6ec4-5225-8c69-eba429b88b54", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.493447, - "y": 27.938721 - }, - "endPoint": { - "x": 330.49381, - "y": 27.943617 - } - } - }, - { - "id": "5d4dc32f-0d74-5b4a-bcbf-aff11a7fb996", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.49381, - "y": 27.943617 - }, - "endPoint": { - "x": 330.493931, - "y": 27.948528 - } - } - }, - { - "id": "321788b9-841e-5ce0-9f0f-12870b6970f7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.493931, - "y": 27.948528 - }, - "endPoint": { - "x": 330.493931, - "y": 28.081062 - } - } - }, - { - "id": "a0f45f31-b98f-5a1d-b1e3-b80ad4f8e1b2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.493931, - "y": 28.081062 - }, - "endPoint": { - "x": 330.493931, - "y": 28.198277 - } - } - }, - { - "id": "0986df75-31ea-51e3-89c8-99eeef639a96", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.493931, - "y": 28.198277 - }, - "endPoint": { - "x": 330.493894, - "y": 28.205373 - } - } - }, - { - "id": "523de085-cbe4-504e-b199-d544faa04c48", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.493894, - "y": 28.205373 - }, - "endPoint": { - "x": 330.493783, - "y": 28.212469 - } - } - }, - { - "id": "4ecb1634-6451-51e3-9a74-37d5f7c613dd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.493783, - "y": 28.212469 - }, - "endPoint": { - "x": 330.493597, - "y": 28.219562 - } - } - }, - { - "id": "7452437b-45cb-5720-8ae7-f7ec5bb36166", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.493597, - "y": 28.219562 - }, - "endPoint": { - "x": 330.493337, - "y": 28.226654 - } - } - }, - { - "id": "2a59e79f-1553-5458-85aa-ad16ae80d342", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.493337, - "y": 28.226654 - }, - "endPoint": { - "x": 330.492317, - "y": 28.250153 - } - } - }, - { - "id": "a8a7026f-b173-5879-ba26-8b9d96e25923", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.492317, - "y": 28.250153 - }, - "endPoint": { - "x": 330.491222, - "y": 28.273649 - } - } - }, - { - "id": "8d848aa2-5790-5dc3-a7b7-74df0337be1e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.491222, - "y": 28.273649 - }, - "endPoint": { - "x": 330.490052, - "y": 28.297141 - } - } - }, - { - "id": "52c5abf8-4b22-5a9b-98db-d895c8a9f6d5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.490052, - "y": 28.297141 - }, - "endPoint": { - "x": 330.488809, - "y": 28.32063 - } - } - }, - { - "id": "84fcfd4f-7c17-50a5-9d64-0cfffec6a199", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.488809, - "y": 28.32063 - }, - "endPoint": { - "x": 330.487168, - "y": 28.345299 - } - } - }, - { - "id": "0d402334-c688-5e66-a73a-32992e434e54", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.487168, - "y": 28.345299 - }, - "endPoint": { - "x": 330.484936, - "y": 28.369918 - } - } - }, - { - "id": "8389e115-f5ee-5aec-bd1f-75453d27a2bb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.484936, - "y": 28.369918 - }, - "endPoint": { - "x": 330.482114, - "y": 28.394476 - } - } - }, - { - "id": "a6a246d9-b241-54a3-835d-48c55fb1b489", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.482114, - "y": 28.394476 - }, - "endPoint": { - "x": 330.478704, - "y": 28.418963 - } - } - }, - { - "id": "7cbfe2b1-1a7b-51b3-93e6-88b7f979bea9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.478704, - "y": 28.418963 - }, - "endPoint": { - "x": 330.475729, - "y": 28.436617 - } - } - }, - { - "id": "b54f37ed-7975-5192-ac25-135378781731", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.475729, - "y": 28.436617 - }, - "endPoint": { - "x": 330.472172, - "y": 28.454157 - } - } - }, - { - "id": "c5e7a5cb-b784-59a7-8900-557c33be1528", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.472172, - "y": 28.454157 - }, - "endPoint": { - "x": 330.468037, - "y": 28.47157 - } - } - }, - { - "id": "16c5162b-5f56-5777-b1de-85f4e03ac5b3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.468037, - "y": 28.47157 - }, - "endPoint": { - "x": 330.463325, - "y": 28.488842 - } - } - }, - { - "id": "3d2d11f5-ef86-587b-82b5-d5dd4012ae7a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.463325, - "y": 28.488842 - }, - "endPoint": { - "x": 330.459499, - "y": 28.501427 - } - } - }, - { - "id": "3e776921-6671-54ff-a229-f3bd2f80ec45", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.459499, - "y": 28.501427 - }, - "endPoint": { - "x": 330.455366, - "y": 28.513914 - } - } - }, - { - "id": "ce8b5c90-2cb4-565e-8514-6fbc1d7a71ea", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.455366, - "y": 28.513914 - }, - "endPoint": { - "x": 330.450929, - "y": 28.526295 - } - } - }, - { - "id": "c656c234-103f-5f5a-be2d-2aba66973b13", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.450929, - "y": 28.526295 - }, - "endPoint": { - "x": 330.44619, - "y": 28.538566 - } - } - }, - { - "id": "1c301414-09a5-57c2-a542-2c079e9561d5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.44619, - "y": 28.538566 - }, - "endPoint": { - "x": 330.435615, - "y": 28.564547 - } - } - }, - { - "id": "896338d4-6304-52ae-858c-1cb1ae1bc507", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.435615, - "y": 28.564547 - }, - "endPoint": { - "x": 330.424743, - "y": 28.590404 - } - } - }, - { - "id": "77b2e801-2812-5840-a4aa-9030bfed1fb9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.424743, - "y": 28.590404 - }, - "endPoint": { - "x": 330.413575, - "y": 28.616134 - } - } - }, - { - "id": "da1683b7-6f93-537c-a378-4564f64128a5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.413575, - "y": 28.616134 - }, - "endPoint": { - "x": 330.402112, - "y": 28.641736 - } - } - }, - { - "id": "d6049184-2d42-533c-8204-fd366b4d256c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.402112, - "y": 28.641736 - }, - "endPoint": { - "x": 330.392001, - "y": 28.663706 - } - } - }, - { - "id": "1208934c-6485-5a6e-8013-1779f3035a9f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.392001, - "y": 28.663706 - }, - "endPoint": { - "x": 330.381687, - "y": 28.685582 - } - } - }, - { - "id": "c9e1c0d9-f142-592c-992a-d005230692c5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.381687, - "y": 28.685582 - }, - "endPoint": { - "x": 330.371171, - "y": 28.707361 - } - } - }, - { - "id": "bd5e5c6a-c67e-56a7-82bc-ad84e6f201b8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.371171, - "y": 28.707361 - }, - "endPoint": { - "x": 330.360454, - "y": 28.729043 - } - } - }, - { - "id": "5005a977-6ad2-58c5-bb46-a5d28523a106", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.360454, - "y": 28.729043 - }, - "endPoint": { - "x": 330.354596, - "y": 28.740508 - } - } - }, - { - "id": "a0860da8-bff7-5b23-8a03-087001105857", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.354596, - "y": 28.740508 - }, - "endPoint": { - "x": 330.34854, - "y": 28.75187 - } - } - }, - { - "id": "221a9315-459d-5ca9-a762-8c93c838ef82", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.34854, - "y": 28.75187 - }, - "endPoint": { - "x": 330.342288, - "y": 28.763124 - } - } - }, - { - "id": "c19ab18d-6d73-54b9-a8ad-529078e4eb12", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.342288, - "y": 28.763124 - }, - "endPoint": { - "x": 330.33584, - "y": 28.774269 - } - } - }, - { - "id": "54d6b7cc-34cd-58b2-bac8-e21cf738a4f3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.33584, - "y": 28.774269 - }, - "endPoint": { - "x": 330.327268, - "y": 28.787876 - } - } - }, - { - "id": "f27da617-d8a9-54e6-b7e1-391edc6225f0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.327268, - "y": 28.787876 - }, - "endPoint": { - "x": 330.31793, - "y": 28.800954 - } - } - }, - { - "id": "cfbf385e-411c-5173-84dd-8eb89b3c857d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.31793, - "y": 28.800954 - }, - "endPoint": { - "x": 330.307851, - "y": 28.813468 - } - } - }, - { - "id": "1fcaee1b-b372-50b7-b209-3f0b65ecc9bc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.307851, - "y": 28.813468 - }, - "endPoint": { - "x": 330.297055, - "y": 28.825388 - } - } - }, - { - "id": "9c3bf100-7dcb-5fff-a21d-f5b389756176", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.297055, - "y": 28.825388 - }, - "endPoint": { - "x": 330.281461, - "y": 28.842305 - } - } - }, - { - "id": "a8757913-cf97-5cbf-bcb4-2bb8973dcaa8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.281461, - "y": 28.842305 - }, - "endPoint": { - "x": 330.266568, - "y": 28.859831 - } - } - }, - { - "id": "c11150dc-8f65-5474-bdf4-565e94738c7d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.266568, - "y": 28.859831 - }, - "endPoint": { - "x": 330.252396, - "y": 28.877943 - } - } - }, - { - "id": "6c692b81-defd-56fb-9d20-49366b52cac8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.252396, - "y": 28.877943 - }, - "endPoint": { - "x": 330.238962, - "y": 28.896622 - } - } - }, - { - "id": "56145baa-be0e-5064-907e-743da3cf4d16", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.238962, - "y": 28.896622 - }, - "endPoint": { - "x": 330.228875, - "y": 28.912053 - } - } - }, - { - "id": "d2223120-f31c-55fe-8f77-e59606dbd535", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.228875, - "y": 28.912053 - }, - "endPoint": { - "x": 330.219557, - "y": 28.927947 - } - } - }, - { - "id": "67efb03e-0c35-58da-9ab2-3d6f22ac90d9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.219557, - "y": 28.927947 - }, - "endPoint": { - "x": 330.211024, - "y": 28.944277 - } - } - }, - { - "id": "acdd8879-895b-50eb-bd03-92f3213c96b4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.211024, - "y": 28.944277 - }, - "endPoint": { - "x": 330.203292, - "y": 28.961012 - } - } - }, - { - "id": "6a716e09-ae5e-52ed-9e0a-e6c02548a658", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.203292, - "y": 28.961012 - }, - "endPoint": { - "x": 330.196801, - "y": 28.974878 - } - } - }, - { - "id": "cb69bbb3-a80a-5aa8-bd86-3f47fb92e53c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.196801, - "y": 28.974878 - }, - "endPoint": { - "x": 330.189514, - "y": 28.988327 - } - } - }, - { - "id": "192be82d-6567-5899-9a1b-fbb176eeb685", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.189514, - "y": 28.988327 - }, - "endPoint": { - "x": 330.181449, - "y": 29.001324 - } - } - }, - { - "id": "2948ff36-f1af-52d4-ba03-c71cfe593e35", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.181449, - "y": 29.001324 - }, - "endPoint": { - "x": 330.172628, - "y": 29.013837 - } - } - }, - { - "id": "6befb994-7d93-568a-bf57-4d03f4ce1c2d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.172628, - "y": 29.013837 - }, - "endPoint": { - "x": 330.163228, - "y": 29.025763 - } - } - }, - { - "id": "f1e40838-a716-505d-9c2d-62e0597b4a80", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.163228, - "y": 29.025763 - }, - "endPoint": { - "x": 330.153271, - "y": 29.037217 - } - } - }, - { - "id": "677622d1-d5b3-540d-93a5-98c106649c8c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.153271, - "y": 29.037217 - }, - "endPoint": { - "x": 330.142776, - "y": 29.048179 - } - } - }, - { - "id": "082e3cc4-3c5d-5a4e-ade5-d8ef54f697b3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.142776, - "y": 29.048179 - }, - "endPoint": { - "x": 330.131761, - "y": 29.058631 - } - } - }, - { - "id": "5165b911-6589-5520-85b6-e69559616558", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.131761, - "y": 29.058631 - }, - "endPoint": { - "x": 330.115879, - "y": 29.072499 - } - } - }, - { - "id": "f1bdb5f9-cccc-52d9-ba98-a1a9559e7dcb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.115879, - "y": 29.072499 - }, - "endPoint": { - "x": 330.099533, - "y": 29.085807 - } - } - }, - { - "id": "85422e06-ca7a-535b-9288-f6502ae834b1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.099533, - "y": 29.085807 - }, - "endPoint": { - "x": 330.082737, - "y": 29.098541 - } - } - }, - { - "id": "d9fffed6-5766-5b95-9a45-acc886962a20", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.082737, - "y": 29.098541 - }, - "endPoint": { - "x": 330.065506, - "y": 29.110692 - } - } - }, - { - "id": "969dac15-af7d-5b85-8947-c54ca3f54722", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.065506, - "y": 29.110692 - }, - "endPoint": { - "x": 330.047207, - "y": 29.122869 - } - } - }, - { - "id": "deea1d65-5516-596e-add2-75a1cac3797e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.047207, - "y": 29.122869 - }, - "endPoint": { - "x": 330.028676, - "y": 29.134687 - } - } - }, - { - "id": "74ab989a-021d-57b8-a07f-f43167f0dc3b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.028676, - "y": 29.134687 - }, - "endPoint": { - "x": 330.00992, - "y": 29.146143 - } - } - }, - { - "id": "c424d9df-ef85-5d78-9095-99cbb0a90d35", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.00992, - "y": 29.146143 - }, - "endPoint": { - "x": 329.990942, - "y": 29.157234 - } - } - }, - { - "id": "46393a83-03ae-5e81-8910-f76b37bb3661", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.990942, - "y": 29.157234 - }, - "endPoint": { - "x": 329.983089, - "y": 29.161474 - } - } - }, - { - "id": "2e04dfb1-7768-53ee-9a26-c415cbfafdf8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.983089, - "y": 29.161474 - }, - "endPoint": { - "x": 329.975045, - "y": 29.165331 - } - } - }, - { - "id": "4359f2bc-8955-5e77-961b-eb38cc5bd5ab", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.975045, - "y": 29.165331 - }, - "endPoint": { - "x": 329.966827, - "y": 29.168798 - } - } - }, - { - "id": "f3384445-eedf-5ab9-b75d-dfcc3c65be25", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.966827, - "y": 29.168798 - }, - "endPoint": { - "x": 329.958446, - "y": 29.171868 - } - } - }, - { - "id": "d4674e69-c0eb-562c-abb4-1f1072f0c93c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.958446, - "y": 29.171868 - }, - "endPoint": { - "x": 329.947967, - "y": 29.175398 - } - } - }, - { - "id": "44d6ffdc-33b1-526c-9902-9c9fc9a735db", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.947967, - "y": 29.175398 - }, - "endPoint": { - "x": 329.937474, - "y": 29.178882 - } - } - }, - { - "id": "adfd5dc5-f231-5783-87dc-9e22c7c98553", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.937474, - "y": 29.178882 - }, - "endPoint": { - "x": 329.926964, - "y": 29.182319 - } - } - }, - { - "id": "0d388e41-a136-53b7-915a-eb07bd8bdbc9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.926964, - "y": 29.182319 - }, - "endPoint": { - "x": 329.91644, - "y": 29.18571 - } - } - }, - { - "id": "ccc6b748-e198-5cd4-a053-c8c6b692a9d9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.91644, - "y": 29.18571 - }, - "endPoint": { - "x": 329.895077, - "y": 29.192516 - } - } - }, - { - "id": "00c9a0ab-2504-5143-a83c-c5528e5710f2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.895077, - "y": 29.192516 - }, - "endPoint": { - "x": 329.873699, - "y": 29.199275 - } - } - }, - { - "id": "a89ea0a3-699d-5150-be99-2e67e84f329a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.873699, - "y": 29.199275 - }, - "endPoint": { - "x": 329.852306, - "y": 29.205987 - } - } - }, - { - "id": "71344323-1fbc-5f1c-8fec-6cb41c61da96", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.852306, - "y": 29.205987 - }, - "endPoint": { - "x": 329.830899, - "y": 29.212653 - } - } - }, - { - "id": "4728bc3a-bb86-5642-a82f-8225121f3e85", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.830899, - "y": 29.212653 - }, - "endPoint": { - "x": 329.810251, - "y": 29.21903 - } - } - }, - { - "id": "3f7293ff-fc42-5305-aa67-a160cfe99b76", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.810251, - "y": 29.21903 - }, - "endPoint": { - "x": 329.789588, - "y": 29.225358 - } - } - }, - { - "id": "10870e35-e75a-5bd3-8c03-0b5a1bcafade", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.789588, - "y": 29.225358 - }, - "endPoint": { - "x": 329.76891, - "y": 29.231637 - } - } - }, - { - "id": "4fb1aff9-8383-55c6-9195-fad825afa73b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.76891, - "y": 29.231637 - }, - "endPoint": { - "x": 329.748217, - "y": 29.237866 - } - } - }, - { - "id": "aac6203e-5cdb-5ffc-97d0-2f8c34e4507e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.748217, - "y": 29.237866 - }, - "endPoint": { - "x": 329.743408, - "y": 29.239281 - } - } - }, - { - "id": "3d996312-201b-54e6-b631-e6cd14df5d98", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.743408, - "y": 29.239281 - }, - "endPoint": { - "x": 329.738585, - "y": 29.240645 - } - } - }, - { - "id": "a1a56b1f-7d7a-539f-84cf-877e5b191259", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.738585, - "y": 29.240645 - }, - "endPoint": { - "x": 329.733749, - "y": 29.24196 - } - } - }, - { - "id": "6321ead7-4fb5-56ec-8085-5a6cd910a914", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.733749, - "y": 29.24196 - }, - "endPoint": { - "x": 329.728899, - "y": 29.243225 - } - } - }, - { - "id": "ece32857-e483-527f-969e-533f0e7bd584", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.728899, - "y": 29.243225 - }, - "endPoint": { - "x": 329.721763, - "y": 29.244811 - } - } - }, - { - "id": "97abf81a-5eea-55fa-99d9-2048686c36e7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.721763, - "y": 29.244811 - }, - "endPoint": { - "x": 329.714549, - "y": 29.245948 - } - } - }, - { - "id": "e79a5ffa-0ecb-5067-a92e-14a5a5de862c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.714549, - "y": 29.245948 - }, - "endPoint": { - "x": 329.707278, - "y": 29.246631 - } - } - }, - { - "id": "e024192e-dbea-5078-8447-73732a187301", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.707278, - "y": 29.246631 - }, - "endPoint": { - "x": 329.699972, - "y": 29.24686 - } - } - }, - { - "id": "e57343d7-aeba-5e04-a9d3-e2073e167ec7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.699972, - "y": 29.24686 - }, - "endPoint": { - "x": 329.681674, - "y": 29.246632 - } - } - }, - { - "id": "f8a698f1-9cd7-5727-b1bc-c2fa0b562f18", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.681674, - "y": 29.246632 - }, - "endPoint": { - "x": 329.66339, - "y": 29.245951 - } - } - }, - { - "id": "222abdd4-5777-5f87-8eea-9e04318f0e4e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.66339, - "y": 29.245951 - }, - "endPoint": { - "x": 329.645129, - "y": 29.244815 - } - } - }, - { - "id": "710dc5b2-e9ce-513d-ab6d-03179cf5c7ac", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.645129, - "y": 29.244815 - }, - "endPoint": { - "x": 329.626899, - "y": 29.243225 - } - } - }, - { - "id": "7f7e8bb2-525f-5249-a2d1-b921eada64b6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.626899, - "y": 29.243225 - }, - "endPoint": { - "x": 329.612506, - "y": 29.241762 - } - } - }, - { - "id": "a6114a29-1192-5967-8775-ea86af49f29f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.612506, - "y": 29.241762 - }, - "endPoint": { - "x": 329.59812, - "y": 29.240243 - } - } - }, - { - "id": "77cac6d2-f3b2-5650-a777-213e958e4ad3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.59812, - "y": 29.240243 - }, - "endPoint": { - "x": 329.583739, - "y": 29.23867 - } - } - }, - { - "id": "f77b8207-77b3-5970-a9b0-1908d46a26dc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.583739, - "y": 29.23867 - }, - "endPoint": { - "x": 329.569365, - "y": 29.237041 - } - } - }, - { - "id": "2a3c7ecc-68cd-5161-80b6-7bf9cb123c3f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.569365, - "y": 29.237041 - }, - "endPoint": { - "x": 329.550587, - "y": 29.234848 - } - } - }, - { - "id": "37a47435-d3aa-5073-9885-0f1e1a937e7f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.550587, - "y": 29.234848 - }, - "endPoint": { - "x": 329.531815, - "y": 29.2326 - } - } - }, - { - "id": "b9409b77-985f-5125-b73a-22b75381da3a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.531815, - "y": 29.2326 - }, - "endPoint": { - "x": 329.51305, - "y": 29.230297 - } - } - }, - { - "id": "836d0372-9961-5a5e-998a-7d52107cb2c2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.51305, - "y": 29.230297 - }, - "endPoint": { - "x": 329.494292, - "y": 29.227939 - } - } - }, - { - "id": "fd04fbf4-da3c-5f64-b2d2-2bda81fc9cf9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.494292, - "y": 29.227939 - }, - "endPoint": { - "x": 329.475612, - "y": 29.22551 - } - } - }, - { - "id": "8b66c6ea-c6cf-545d-b0ff-46b44deadfe9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.475612, - "y": 29.22551 - }, - "endPoint": { - "x": 329.456946, - "y": 29.222977 - } - } - }, - { - "id": "2a5908f4-298a-57ef-b0a6-1b83741bf8f4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.456946, - "y": 29.222977 - }, - "endPoint": { - "x": 329.438294, - "y": 29.22034 - } - } - }, - { - "id": "4724fe7f-a2bb-5fb1-b42c-30f8b57b9f39", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.438294, - "y": 29.22034 - }, - "endPoint": { - "x": 329.419657, - "y": 29.2176 - } - } - }, - { - "id": "fa6752b5-3912-5b3f-a81e-0df21f02988f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.419657, - "y": 29.2176 - }, - "endPoint": { - "x": 329.412788, - "y": 29.216518 - } - } - }, - { - "id": "f8dcb458-0465-5b36-a2c0-0f53cf019663", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.412788, - "y": 29.216518 - }, - "endPoint": { - "x": 329.405937, - "y": 29.215333 - } - } - }, - { - "id": "537d30e2-5385-5644-9d97-1fc06c868553", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.405937, - "y": 29.215333 - }, - "endPoint": { - "x": 329.399105, - "y": 29.214044 - } - } - }, - { - "id": "0262663b-2ff9-5c7e-9a01-7036dcec03ca", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.399105, - "y": 29.214044 - }, - "endPoint": { - "x": 329.392292, - "y": 29.212653 - } - } - }, - { - "id": "c8cb0ff2-0389-5393-9d8d-3b2e465afe48", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.392292, - "y": 29.212653 - }, - "endPoint": { - "x": 329.385167, - "y": 29.210932 - } - } - }, - { - "id": "7a4d5d03-122f-51b2-ba4a-7db499a9d007", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.385167, - "y": 29.210932 - }, - "endPoint": { - "x": 329.378154, - "y": 29.208817 - } - } - }, - { - "id": "198a20dc-936c-51f4-80c9-a0bd08d65f4f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.378154, - "y": 29.208817 - }, - "endPoint": { - "x": 329.371271, - "y": 29.206314 - } - } - }, - { - "id": "4396ff42-6250-5a38-9989-d0e584b89ef1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.371271, - "y": 29.206314 - }, - "endPoint": { - "x": 329.364533, - "y": 29.203429 - } - } - }, - { - "id": "066676d0-a1ba-5d98-b378-993334840a32", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.364533, - "y": 29.203429 - }, - "endPoint": { - "x": 329.354612, - "y": 29.198622 - } - } - }, - { - "id": "598957ce-c672-52ae-a806-05cafa83d1b7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.354612, - "y": 29.198622 - }, - "endPoint": { - "x": 329.34488, - "y": 29.193453 - } - } - }, - { - "id": "43853dde-2f6e-5b56-8833-73f7dce8f48f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.34488, - "y": 29.193453 - }, - "endPoint": { - "x": 329.335346, - "y": 29.187927 - } - } - }, - { - "id": "f927781e-5ba1-56f4-8fea-186b9bcc27b9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.335346, - "y": 29.187927 - }, - "endPoint": { - "x": 329.32602, - "y": 29.182049 - } - } - }, - { - "id": "acbc0bea-858c-5c4d-a555-92821907b015", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.32602, - "y": 29.182049 - }, - "endPoint": { - "x": 329.31512, - "y": 29.174793 - } - } - }, - { - "id": "08e405c6-451f-546d-9975-0935ddf955c6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.31512, - "y": 29.174793 - }, - "endPoint": { - "x": 329.304314, - "y": 29.167399 - } - } - }, - { - "id": "b4b937be-73b9-58ce-ac65-c425d13303f4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.304314, - "y": 29.167399 - }, - "endPoint": { - "x": 329.293602, - "y": 29.159869 - } - } - }, - { - "id": "d3d4e81d-590f-5227-ba8f-63f4a03c0e89", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.293602, - "y": 29.159869 - }, - "endPoint": { - "x": 329.282987, - "y": 29.152202 - } - } - }, - { - "id": "eb27cb22-b27a-53ec-a389-4673a879bdb7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.282987, - "y": 29.152202 - }, - "endPoint": { - "x": 329.26839, - "y": 29.14162 - } - } - }, - { - "id": "2461294b-99b4-58dc-b370-0fae2317826f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.26839, - "y": 29.14162 - }, - "endPoint": { - "x": 329.253695, - "y": 29.131174 - } - } - }, - { - "id": "8f74c06f-2655-553f-83f8-690b76e462eb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.253695, - "y": 29.131174 - }, - "endPoint": { - "x": 329.238905, - "y": 29.120865 - } - } - }, - { - "id": "ce89a8ec-2b1b-58e9-935c-7db6a6620ac5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.238905, - "y": 29.120865 - }, - "endPoint": { - "x": 329.22402, - "y": 29.110692 - } - } - }, - { - "id": "11184715-7e86-5b6f-be41-43434bc7a929", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.22402, - "y": 29.110692 - }, - "endPoint": { - "x": 329.206392, - "y": 29.098904 - } - } - }, - { - "id": "4f851d67-47e0-556a-a883-69caa14c6109", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.206392, - "y": 29.098904 - }, - "endPoint": { - "x": 329.188638, - "y": 29.08731 - } - } - }, - { - "id": "7b0d4b90-229d-5211-8f7d-11df1fd8ca8a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.188638, - "y": 29.08731 - }, - "endPoint": { - "x": 329.170758, - "y": 29.07591 - } - } - }, - { - "id": "5bd0a316-8352-515a-8eb4-036d3e1cb3b3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.170758, - "y": 29.07591 - }, - "endPoint": { - "x": 329.152754, - "y": 29.064706 - } - } - }, - { - "id": "4aff04d0-ce33-503f-afa0-501a8d235561", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.152754, - "y": 29.064706 - }, - "endPoint": { - "x": 329.141054, - "y": 29.057377 - } - } - }, - { - "id": "25213293-b521-5bb8-890a-59e3e920cc33", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.141054, - "y": 29.057377 - }, - "endPoint": { - "x": 329.129479, - "y": 29.049854 - } - } - }, - { - "id": "b9f17de9-8017-5e5a-be89-570b13be6a61", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.129479, - "y": 29.049854 - }, - "endPoint": { - "x": 329.118033, - "y": 29.042137 - } - } - }, - { - "id": "52c12d8c-6e0e-5c69-909b-78677755908b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.118033, - "y": 29.042137 - }, - "endPoint": { - "x": 329.106717, - "y": 29.034229 - } - } - }, - { - "id": "1532351a-5126-5d13-9d6b-5983d5200f12", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.106717, - "y": 29.034229 - }, - "endPoint": { - "x": 329.09955, - "y": 29.028948 - } - } - }, - { - "id": "8121d1e7-f0db-5b37-a8df-e2234fff2119", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.09955, - "y": 29.028948 - }, - "endPoint": { - "x": 329.092567, - "y": 29.02343 - } - } - }, - { - "id": "337601c3-d40e-5439-8d15-7d2fe8cba7af", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.092567, - "y": 29.02343 - }, - "endPoint": { - "x": 329.085773, - "y": 29.017681 - } - } - }, - { - "id": "975b650d-9c4b-54b0-b2d8-8ab10058bc13", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.085773, - "y": 29.017681 - }, - "endPoint": { - "x": 329.079174, - "y": 29.011705 - } - } - }, - { - "id": "e66103f6-e76e-57c2-9a8c-62eabe558f08", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.079174, - "y": 29.011705 - }, - "endPoint": { - "x": 329.065335, - "y": 28.998539 - } - } - }, - { - "id": "30b4d288-93c7-5bb2-b872-5045e2aa0411", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.065335, - "y": 28.998539 - }, - "endPoint": { - "x": 329.051705, - "y": 28.985159 - } - } - }, - { - "id": "8292930f-8025-5986-91c5-bf5f58b239e0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.051705, - "y": 28.985159 - }, - "endPoint": { - "x": 329.038285, - "y": 28.971567 - } - } - }, - { - "id": "14ac10a4-2c4c-52c0-8d2e-bf21948eb1e3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.038285, - "y": 28.971567 - }, - "endPoint": { - "x": 329.025079, - "y": 28.957767 - } - } - }, - { - "id": "9a18b123-21b4-5046-9447-fb449e04b435", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.025079, - "y": 28.957767 - }, - "endPoint": { - "x": 329.01333, - "y": 28.945065 - } - } - }, - { - "id": "1d298f3f-3069-52aa-8421-8604c07cabc1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.01333, - "y": 28.945065 - }, - "endPoint": { - "x": 329.001816, - "y": 28.932151 - } - } - }, - { - "id": "c3f19fad-0a10-5e89-9c34-878a25ccf116", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.001816, - "y": 28.932151 - }, - "endPoint": { - "x": 328.990541, - "y": 28.91903 - } - } - }, - { - "id": "68ecb391-d251-5c28-940f-483a6b2f4f5c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.990541, - "y": 28.91903 - }, - "endPoint": { - "x": 328.979505, - "y": 28.905703 - } - } - }, - { - "id": "ff1e4c3f-0951-5c0e-a286-aab2136741e5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.979505, - "y": 28.905703 - }, - "endPoint": { - "x": 328.973945, - "y": 28.898611 - } - } - }, - { - "id": "fb1823bf-04e6-5329-acee-1fc1235f03c3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.973945, - "y": 28.898611 - }, - "endPoint": { - "x": 328.968638, - "y": 28.89133 - } - } - }, - { - "id": "2f515872-d428-57a5-b976-cc0116da72ea", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.968638, - "y": 28.89133 - }, - "endPoint": { - "x": 328.963591, - "y": 28.883867 - } - } - }, - { - "id": "e962d52b-4af5-5254-aebb-c53fd6c1bcc4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.963591, - "y": 28.883867 - }, - "endPoint": { - "x": 328.958807, - "y": 28.876229 - } - } - }, - { - "id": "bdb74b6b-880c-5996-a912-934e933692d0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.958807, - "y": 28.876229 - }, - "endPoint": { - "x": 328.954676, - "y": 28.869105 - } - } - }, - { - "id": "abb9bc05-caf4-577b-98ee-6c16ff2bc141", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.954676, - "y": 28.869105 - }, - "endPoint": { - "x": 328.950784, - "y": 28.861849 - } - } - }, - { - "id": "c7310566-2a35-5c88-aba0-ee96aeecdf23", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.950784, - "y": 28.861849 - }, - "endPoint": { - "x": 328.947135, - "y": 28.854469 - } - } - }, - { - "id": "4dd708ee-f51a-5671-ab84-efd637bba539", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.947135, - "y": 28.854469 - }, - "endPoint": { - "x": 328.94373, - "y": 28.84697 - } - } - }, - { - "id": "1d1a45c3-dbd9-5528-bca1-a9bdaf2d65c8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.94373, - "y": 28.84697 - }, - "endPoint": { - "x": 328.938935, - "y": 28.836268 - } - } - }, - { - "id": "2dffa2c0-3329-5cc0-b9d7-075d557ed93f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.938935, - "y": 28.836268 - }, - "endPoint": { - "x": 328.933893, - "y": 28.825682 - } - } - }, - { - "id": "469e26c4-e7e9-5203-826a-32dac8934f97", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.933893, - "y": 28.825682 - }, - "endPoint": { - "x": 328.928607, - "y": 28.815215 - } - } - }, - { - "id": "fcb4b901-7cfb-5979-977a-a2fe4c48fbb0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.928607, - "y": 28.815215 - }, - "endPoint": { - "x": 328.923079, - "y": 28.804873 - } - } - }, - { - "id": "28351dc0-e44c-5edc-9079-7c547617e612", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.923079, - "y": 28.804873 - }, - "endPoint": { - "x": 328.914394, - "y": 28.789769 - } - } - }, - { - "id": "182e3f8a-98df-5bd3-b439-c3fcab902e6c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.914394, - "y": 28.789769 - }, - "endPoint": { - "x": 328.905136, - "y": 28.775019 - } - } - }, - { - "id": "505db371-2987-58d7-9e09-f51c939284a9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.905136, - "y": 28.775019 - }, - "endPoint": { - "x": 328.895313, - "y": 28.760638 - } - } - }, - { - "id": "9d245141-cba6-5498-aa53-0d9353f8bbac", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.895313, - "y": 28.760638 - }, - "endPoint": { - "x": 328.884939, - "y": 28.746642 - } - } - }, - { - "id": "84f9946d-3bb6-531e-b20b-e1127c2507e9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.884939, - "y": 28.746642 - }, - "endPoint": { - "x": 328.878324, - "y": 28.737517 - } - } - }, - { - "id": "1a1d754d-5768-5ccf-8b0e-89e59ed0690a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.878324, - "y": 28.737517 - }, - "endPoint": { - "x": 328.872274, - "y": 28.728021 - } - } - }, - { - "id": "213bc0e6-5d8d-5363-8bcd-344adf0e3e5a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.872274, - "y": 28.728021 - }, - "endPoint": { - "x": 328.866804, - "y": 28.718179 - } - } - }, - { - "id": "907633ef-1126-5165-aaa1-ed5f61b5b80a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.866804, - "y": 28.718179 - }, - "endPoint": { - "x": 328.861929, - "y": 28.708018 - } - } - }, - { - "id": "f40a4eea-97b1-55eb-922c-06b7b41828c7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.861929, - "y": 28.708018 - }, - "endPoint": { - "x": 328.858978, - "y": 28.701142 - } - } - }, - { - "id": "8e2eaeaa-488e-5849-95ff-5c7d8e1b18c1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.858978, - "y": 28.701142 - }, - "endPoint": { - "x": 328.856192, - "y": 28.694199 - } - } - }, - { - "id": "34350366-1b1a-5138-a529-2a869f2d02d9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.856192, - "y": 28.694199 - }, - "endPoint": { - "x": 328.853572, - "y": 28.687191 - } - } - }, - { - "id": "0532798b-8e10-5dd6-a89f-3f85b1f3a889", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.853572, - "y": 28.687191 - }, - "endPoint": { - "x": 328.85112, - "y": 28.680122 - } - } - }, - { - "id": "88b970c1-0ed9-50eb-aeb2-f3bbe7fc713e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.85112, - "y": 28.680122 - }, - "endPoint": { - "x": 328.845916, - "y": 28.664238 - } - } - }, - { - "id": "f5cbc29b-9e54-5b93-b232-e2b1d204355a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.845916, - "y": 28.664238 - }, - "endPoint": { - "x": 328.840881, - "y": 28.648301 - } - } - }, - { - "id": "01479757-a11d-5b71-b317-900a63f63747", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.840881, - "y": 28.648301 - }, - "endPoint": { - "x": 328.836016, - "y": 28.632311 - } - } - }, - { - "id": "fa8a60fb-ce0e-5630-91ce-0e42289a33b6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.836016, - "y": 28.632311 - }, - "endPoint": { - "x": 328.831322, - "y": 28.616269 - } - } - }, - { - "id": "f712b64f-f60d-5c79-9935-67dd8e67568d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.831322, - "y": 28.616269 - }, - "endPoint": { - "x": 328.825224, - "y": 28.594659 - } - } - }, - { - "id": "379bf3b7-d91e-5bb5-8251-33aec3930aca", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.825224, - "y": 28.594659 - }, - "endPoint": { - "x": 328.819309, - "y": 28.572998 - } - } - }, - { - "id": "15cd47be-6c50-53bb-a98d-c981b8e0dc67", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.819309, - "y": 28.572998 - }, - "endPoint": { - "x": 328.81358, - "y": 28.551288 - } - } - }, - { - "id": "6717f93a-b8aa-5c99-a1be-238c4dfc6933", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.81358, - "y": 28.551288 - }, - "endPoint": { - "x": 328.808035, - "y": 28.529529 - } - } - }, - { - "id": "2cf0ecd8-3f24-5dc5-ba3f-ee9fda217969", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.808035, - "y": 28.529529 - }, - "endPoint": { - "x": 328.804645, - "y": 28.515591 - } - } - }, - { - "id": "cf1722f1-b82e-5fbf-be3a-951ac4f02ad3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.804645, - "y": 28.515591 - }, - "endPoint": { - "x": 328.801441, - "y": 28.50161 - } - } - }, - { - "id": "e9f756ed-d625-5dac-85d8-e705484cee6e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.801441, - "y": 28.50161 - }, - "endPoint": { - "x": 328.798424, - "y": 28.487587 - } - } - }, - { - "id": "2f45a7f1-7926-5155-8763-77ac95bc16b5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.798424, - "y": 28.487587 - }, - "endPoint": { - "x": 328.795594, - "y": 28.473524 - } - } - }, - { - "id": "90719d7e-b7db-5ca5-afaa-80ba81e6d593", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.795594, - "y": 28.473524 - }, - "endPoint": { - "x": 328.791956, - "y": 28.453852 - } - } - }, - { - "id": "cd1f146b-367f-5497-b3e4-36c10a2c0587", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.791956, - "y": 28.453852 - }, - "endPoint": { - "x": 328.788675, - "y": 28.434119 - } - } - }, - { - "id": "46d8f29b-9fd4-5a51-b5ef-cef3bacd5853", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.788675, - "y": 28.434119 - }, - "endPoint": { - "x": 328.785752, - "y": 28.414329 - } - } - }, - { - "id": "2c607437-1210-50dd-8ac8-34b7ac0a72ba", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.785752, - "y": 28.414329 - }, - "endPoint": { - "x": 328.783187, - "y": 28.394489 - } - } - }, - { - "id": "9470babf-b63c-58b3-85b2-ad95dcb83ed7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.783187, - "y": 28.394489 - }, - "endPoint": { - "x": 328.781921, - "y": 28.382427 - } - } - }, - { - "id": "c9a6cf87-d9d3-547c-8db8-0dd607aa2c01", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.781921, - "y": 28.382427 - }, - "endPoint": { - "x": 328.781016, - "y": 28.370336 - } - } - }, - { - "id": "02e83843-9be4-57c8-8865-45949039eabf", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.781016, - "y": 28.370336 - }, - "endPoint": { - "x": 328.780472, - "y": 28.358223 - } - } - }, - { - "id": "d428d03f-b0c7-5b67-b66f-e67dc1bd3e48", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.780472, - "y": 28.358223 - }, - "endPoint": { - "x": 328.780291, - "y": 28.346097 - } - } - }, - { - "id": "c2d6bc62-1fe6-5cdb-9894-5629ed6eb3b1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.780291, - "y": 28.346097 - }, - "endPoint": { - "x": 328.780291, - "y": 28.213563 - } - } - }, - { - "id": "2ee85422-7192-5074-8d9f-5a1e74f43070", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.780291, - "y": 28.213563 - }, - "endPoint": { - "x": 328.780291, - "y": 28.11674 - } - } - }, - { - "id": "7a19463d-d7e8-5f0f-925a-fc96fbf85716", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.780291, - "y": 28.11674 - }, - "endPoint": { - "x": 328.780385, - "y": 28.102562 - } - } - }, - { - "id": "baa7bf39-a1d0-57be-8a71-7405623fc14b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.780385, - "y": 28.102562 - }, - "endPoint": { - "x": 328.780666, - "y": 28.088387 - } - } - }, - { - "id": "cd715e30-c69f-5eb4-b87c-dc77137e23c0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.780666, - "y": 28.088387 - }, - "endPoint": { - "x": 328.781134, - "y": 28.074216 - } - } - }, - { - "id": "c27a919a-5612-50d4-a11d-6e5107f05543", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.781134, - "y": 28.074216 - }, - "endPoint": { - "x": 328.781789, - "y": 28.060053 - } - } - }, - { - "id": "169cafa7-f7dc-56ba-982e-7a81e4acdb7f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.781789, - "y": 28.060053 - }, - "endPoint": { - "x": 328.782415, - "y": 28.049987 - } - } - }, - { - "id": "fc4ec515-4cfc-5ea8-894c-19dedd695c40", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.782415, - "y": 28.049987 - }, - "endPoint": { - "x": 328.783228, - "y": 28.039935 - } - } - }, - { - "id": "299275b0-f17c-5671-a576-fe118fb401a0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.783228, - "y": 28.039935 - }, - "endPoint": { - "x": 328.784227, - "y": 28.029901 - } - } - }, - { - "id": "7ccd9116-a6d7-5ffe-9a53-6ff360970b4d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.784227, - "y": 28.029901 - }, - "endPoint": { - "x": 328.785413, - "y": 28.019885 - } - } - }, - { - "id": "f96ac7d0-a6ac-506c-8831-4751ca36ff66", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.785413, - "y": 28.019885 - }, - "endPoint": { - "x": 328.786085, - "y": 28.01518 - } - } - }, - { - "id": "cb339baf-2d9e-50a4-bd13-f045f6f33616", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.786085, - "y": 28.01518 - }, - "endPoint": { - "x": 328.786895, - "y": 28.010498 - } - } - }, - { - "id": "dd3caf42-f785-57ff-bdf6-6ce16dbeefd7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.786895, - "y": 28.010498 - }, - "endPoint": { - "x": 328.787842, - "y": 28.005842 - } - } - }, - { - "id": "4255ac4d-38e8-5f3e-be7c-8e5f9e70cd2e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.787842, - "y": 28.005842 - }, - "endPoint": { - "x": 328.788927, - "y": 28.001214 - } - } - }, - { - "id": "c076d67f-ff3a-541e-8429-0301f879a14b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.788927, - "y": 28.001214 - }, - "endPoint": { - "x": 328.794217, - "y": 27.980339 - } - } - }, - { - "id": "8ed9d8b6-15af-58cb-846b-665b3006037d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.794217, - "y": 27.980339 - }, - "endPoint": { - "x": 328.799642, - "y": 27.959498 - } - } - }, - { - "id": "a50e3d4a-b878-5c51-8781-fae0478cdca7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.799642, - "y": 27.959498 - }, - "endPoint": { - "x": 328.805202, - "y": 27.938693 - } - } - }, - { - "id": "d3828c52-0168-5dcf-b293-9c54082ae92d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.805202, - "y": 27.938693 - }, - "endPoint": { - "x": 328.810897, - "y": 27.917924 - } - } - }, - { - "id": "3d850470-e56b-5b55-96db-f6599c2d4b44", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.810897, - "y": 27.917924 - }, - "endPoint": { - "x": 328.816481, - "y": 27.898307 - } - } - }, - { - "id": "ec3853c0-839d-51a5-a374-0100a2c378b8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.816481, - "y": 27.898307 - }, - "endPoint": { - "x": 328.822316, - "y": 27.878764 - } - } - }, - { - "id": "3acd5090-f6bc-5fee-a878-ae251600d451", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.822316, - "y": 27.878764 - }, - "endPoint": { - "x": 328.8284, - "y": 27.859297 - } - } - }, - { - "id": "927154a7-8a0c-501f-a39c-c01c9dab0320", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.8284, - "y": 27.859297 - }, - "endPoint": { - "x": 328.834734, - "y": 27.839909 - } - } - }, - { - "id": "5faeba7a-ed99-54cb-a0ad-266fcd500ea0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.834734, - "y": 27.839909 - }, - "endPoint": { - "x": 328.837343, - "y": 27.832508 - } - } - }, - { - "id": "63ab13a5-9176-51ba-85f3-ea834f4127be", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.837343, - "y": 27.832508 - }, - "endPoint": { - "x": 328.840196, - "y": 27.825201 - } - } - }, - { - "id": "5b672845-5d07-5e4e-9ff0-f611d414413c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.840196, - "y": 27.825201 - }, - "endPoint": { - "x": 328.843291, - "y": 27.817992 - } - } - }, - { - "id": "0dfffa32-c115-5b2d-95e8-1f260581e134", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.843291, - "y": 27.817992 - }, - "endPoint": { - "x": 328.846626, - "y": 27.810889 - } - } - }, - { - "id": "28b3ea9e-bbba-5952-bfc1-74fc9c57b514", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.846626, - "y": 27.810889 - }, - "endPoint": { - "x": 328.853041, - "y": 27.799185 - } - } - }, - { - "id": "17411c92-2bfe-5507-95d3-7a6d8c04830d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.853041, - "y": 27.799185 - }, - "endPoint": { - "x": 328.860482, - "y": 27.788138 - } - } - }, - { - "id": "2a5c35b8-d04f-5d2a-9385-dc81c525660d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.860482, - "y": 27.788138 - }, - "endPoint": { - "x": 328.8689, - "y": 27.777816 - } - } - }, - { - "id": "d18eb3cc-fd1b-5690-8250-24254d57cd66", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.8689, - "y": 27.777816 - }, - "endPoint": { - "x": 328.878245, - "y": 27.768286 - } - } - }, - { - "id": "138f1b48-de7b-596e-b082-e3d91adb115a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.878245, - "y": 27.768286 - }, - "endPoint": { - "x": 328.893377, - "y": 27.753377 - } - } - }, - { - "id": "ca27efeb-f2cf-5e43-a2d6-61bc070cc87b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.893377, - "y": 27.753377 - }, - "endPoint": { - "x": 328.907623, - "y": 27.737642 - } - } - }, - { - "id": "fa27d6c5-b12a-5c58-88ed-9bdddeeab41e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.907623, - "y": 27.737642 - }, - "endPoint": { - "x": 328.92095, - "y": 27.721122 - } - } - }, - { - "id": "5f858270-c3cb-5b41-ad07-4432ada288b5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.92095, - "y": 27.721122 - }, - "endPoint": { - "x": 328.933323, - "y": 27.703854 - } - } - }, - { - "id": "70658060-29f7-5a25-8d10-d76610b51956", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.933323, - "y": 27.703854 - }, - "endPoint": { - "x": 328.941011, - "y": 27.692326 - } - } - }, - { - "id": "77655efc-4f7b-5050-b878-318bc8c868ae", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.941011, - "y": 27.692326 - }, - "endPoint": { - "x": 328.948582, - "y": 27.680721 - } - } - }, - { - "id": "c24e668d-4928-5c90-bd38-ac6f1cd72367", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.948582, - "y": 27.680721 - }, - "endPoint": { - "x": 328.956036, - "y": 27.669041 - } - } - }, - { - "id": "5f1a8cd7-ab8c-559a-afe9-61e3ea622673", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.956036, - "y": 27.669041 - }, - "endPoint": { - "x": 328.963372, - "y": 27.657285 - } - } - }, - { - "id": "4d6b8d5b-b3d5-5740-bd50-dc05d8e84405", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.963372, - "y": 27.657285 - }, - "endPoint": { - "x": 328.969706, - "y": 27.647153 - } - } - }, - { - "id": "135033a9-9a04-50d2-8cdd-8f66fdb4bc27", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.969706, - "y": 27.647153 - }, - "endPoint": { - "x": 328.976158, - "y": 27.637096 - } - } - }, - { - "id": "7f70687c-3b2e-5247-8810-976028ff7a49", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.976158, - "y": 27.637096 - }, - "endPoint": { - "x": 328.982727, - "y": 27.627115 - } - } - }, - { - "id": "efa84308-4a20-50ff-a54a-f25aa4d33233", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.982727, - "y": 27.627115 - }, - "endPoint": { - "x": 328.989413, - "y": 27.617211 - } - } - }, - { - "id": "a247f9f1-9ba3-59e2-b400-236c43f46a87", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.989413, - "y": 27.617211 - }, - "endPoint": { - "x": 329.003063, - "y": 27.597642 - } - } - }, - { - "id": "57b92ae3-509c-56fc-8099-c71ca47cf788", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.003063, - "y": 27.597642 - }, - "endPoint": { - "x": 329.017076, - "y": 27.578335 - } - } - }, - { - "id": "c6676092-47b5-56e2-82ed-f56a75a549a7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.017076, - "y": 27.578335 - }, - "endPoint": { - "x": 329.031449, - "y": 27.559294 - } - } - }, - { - "id": "d2185217-e05a-5988-b649-1fe55f9905c4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.031449, - "y": 27.559294 - }, - "endPoint": { - "x": 329.046179, - "y": 27.540525 - } - } - }, - { - "id": "6d0aa81e-2c8d-58d5-97c2-89aa486d409c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.046179, - "y": 27.540525 - }, - "endPoint": { - "x": 329.051895, - "y": 27.533741 - } - } - }, - { - "id": "0628e7fa-f85d-536c-86c5-c1e4b5a2c8d1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.051895, - "y": 27.533741 - }, - "endPoint": { - "x": 329.057943, - "y": 27.527259 - } - } - }, - { - "id": "c06e2609-3b7b-5bfb-85b3-0f850eae8953", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.057943, - "y": 27.527259 - }, - "endPoint": { - "x": 329.064311, - "y": 27.521091 - } - } - }, - { - "id": "3e0fd5c8-3637-54ad-bf55-6f4266e88d6d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.064311, - "y": 27.521091 - }, - "endPoint": { - "x": 329.070988, - "y": 27.51525 - } - } - }, - { - "id": "05b24bcc-5116-5a9f-9e35-b4e25f1565a3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.070988, - "y": 27.51525 - }, - "endPoint": { - "x": 329.075499, - "y": 27.51155 - } - } - }, - { - "id": "20c43e61-b70a-51f2-baaa-f132d4e78f80", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.075499, - "y": 27.51155 - }, - "endPoint": { - "x": 329.080055, - "y": 27.507907 - } - } - }, - { - "id": "cff3caaf-0f23-59e7-a64b-7d03828e7177", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.080055, - "y": 27.507907 - }, - "endPoint": { - "x": 329.084656, - "y": 27.504322 - } - } - }, - { - "id": "8f105b09-1ded-5452-b014-778ab40c7388", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.084656, - "y": 27.504322 - }, - "endPoint": { - "x": 329.089303, - "y": 27.500795 - } - } - }, - { - "id": "ef82a83e-9de7-5d6e-9aee-e98e1772be69", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.089303, - "y": 27.500795 - }, - "endPoint": { - "x": 329.11261, - "y": 27.48338 - } - } - }, - { - "id": "99e6e042-b8f9-5e50-9926-3401dd2bb7be", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.11261, - "y": 27.48338 - }, - "endPoint": { - "x": 329.135962, - "y": 27.466024 - } - } - }, - { - "id": "6b05de01-2891-5eef-b506-d84cbf0401d8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.135962, - "y": 27.466024 - }, - "endPoint": { - "x": 329.159357, - "y": 27.448727 - } - } - }, - { - "id": "19fdacfc-7a06-57b3-b21c-58e9d281c61c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.159357, - "y": 27.448727 - }, - "endPoint": { - "x": 329.182795, - "y": 27.431489 - } - } - }, - { - "id": "0cbb844e-9962-53c5-8990-fb744e848e76", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.182795, - "y": 27.431489 - }, - "endPoint": { - "x": 329.199981, - "y": 27.418927 - } - } - }, - { - "id": "e436df30-4750-5966-8f7c-2079629781a7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.199981, - "y": 27.418927 - }, - "endPoint": { - "x": 329.217209, - "y": 27.406422 - } - } - }, - { - "id": "0ca79a59-3408-5870-aab7-d068bcff3b6a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.217209, - "y": 27.406422 - }, - "endPoint": { - "x": 329.234478, - "y": 27.393975 - } - } - }, - { - "id": "2f970c3b-36c4-5017-b6ba-ae5e01838eab", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.234478, - "y": 27.393975 - }, - "endPoint": { - "x": 329.251788, - "y": 27.381585 - } - } - }, - { - "id": "aec333c3-a893-5be3-ba27-1b62deb22d0b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.251788, - "y": 27.381585 - }, - "endPoint": { - "x": 329.252359, - "y": 27.381222 - } - } - }, - { - "id": "7da0e53d-3140-5bc1-96b8-87094f213dd6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.252359, - "y": 27.381222 - }, - "endPoint": { - "x": 329.252963, - "y": 27.380923 - } - } - }, - { - "id": "04938a40-560b-51fe-810a-a08e185c65f7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.252963, - "y": 27.380923 - }, - "endPoint": { - "x": 329.253596, - "y": 27.38069 - } - } - }, - { - "id": "295066dd-eddf-5568-8795-e1d187cc1ccb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.253596, - "y": 27.38069 - }, - "endPoint": { - "x": 329.254251, - "y": 27.380524 - } - } - }, - { - "id": "ade34361-1ebc-5f03-9597-5cdc5b584178", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.254251, - "y": 27.380524 - }, - "endPoint": { - "x": 329.255366, - "y": 27.380324 - } - } - }, - { - "id": "a36d4d8b-0689-540a-8d03-d4275f6287e9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.255366, - "y": 27.380324 - }, - "endPoint": { - "x": 329.256486, - "y": 27.380159 - } - } - }, - { - "id": "dcff29f2-bafd-570e-9989-761e46c14902", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.256486, - "y": 27.380159 - }, - "endPoint": { - "x": 329.25761, - "y": 27.38003 - } - } - }, - { - "id": "7395f29b-0b29-55a2-97af-95a1c9c1ffa7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.25761, - "y": 27.38003 - }, - "endPoint": { - "x": 329.258738, - "y": 27.379937 - } - } - }, - { - "id": "8ccd18b3-6112-50f6-be36-ea2f4109d022", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.258738, - "y": 27.379937 - }, - "endPoint": { - "x": 329.276727, - "y": 27.378754 - } - } - }, - { - "id": "402adf80-5d14-5151-988a-5fb742989de6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.276727, - "y": 27.378754 - }, - "endPoint": { - "x": 329.294717, - "y": 27.377606 - } - } - }, - { - "id": "6845a3cd-9b73-5545-820a-94865807c276", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.294717, - "y": 27.377606 - }, - "endPoint": { - "x": 329.31271, - "y": 27.376494 - } - } - }, - { - "id": "f7549b59-2d10-5680-b0f6-0df7fded326f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.31271, - "y": 27.376494 - }, - "endPoint": { - "x": 329.330705, - "y": 27.375419 - } - } - }, - { - "id": "d6922a78-9ad5-5b6e-88aa-55e82ce4f129", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.330705, - "y": 27.375419 - }, - "endPoint": { - "x": 329.349715, - "y": 27.374302 - } - } - }, - { - "id": "084b25a4-7201-5d31-ba6b-d63b085b6fc6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.349715, - "y": 27.374302 - }, - "endPoint": { - "x": 329.368726, - "y": 27.373186 - } - } - }, - { - "id": "6ed53925-3c9f-5b07-aa5b-542151ef4581", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.368726, - "y": 27.373186 - }, - "endPoint": { - "x": 329.387736, - "y": 27.372071 - } - } - }, - { - "id": "013c394e-5656-5e1f-b0d0-4dc3b7ac2f3a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.387736, - "y": 27.372071 - }, - "endPoint": { - "x": 329.406747, - "y": 27.370958 - } - } - }, - { - "id": "8fed71fb-76e5-5fb0-a82c-6a0fc450a18c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.406747, - "y": 27.370958 - }, - "endPoint": { - "x": 329.40941, - "y": 27.370803 - } - } - }, - { - "id": "30195538-4da3-58bc-a689-242e991d00cc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.40941, - "y": 27.370803 - }, - "endPoint": { - "x": 329.412074, - "y": 27.370648 - } - } - }, - { - "id": "fef3bbb8-e9d3-5c27-a9bf-8e6f03a7e117", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.412074, - "y": 27.370648 - }, - "endPoint": { - "x": 329.414738, - "y": 27.370496 - } - } - }, - { - "id": "f0d9930f-ab82-5293-b187-4ae7eb76b5f2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.414738, - "y": 27.370496 - }, - "endPoint": { - "x": 329.417402, - "y": 27.370344 - } - } - }, - { - "id": "1df688ff-dc39-5816-82b2-9a34e16c4bc0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.417402, - "y": 27.370344 - }, - "endPoint": { - "x": 329.439917, - "y": 27.369105 - } - } - }, - { - "id": "da3518be-831f-5e30-8fd1-c9f84cfb8e99", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.439917, - "y": 27.369105 - }, - "endPoint": { - "x": 329.462436, - "y": 27.367939 - } - } - }, - { - "id": "1a3090b0-320b-5bb7-bf19-bdc07e6c6758", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.462436, - "y": 27.367939 - }, - "endPoint": { - "x": 329.484958, - "y": 27.366848 - } - } - }, - { - "id": "fb0f891a-eb0b-52bd-9098-cec3de08b757", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.484958, - "y": 27.366848 - }, - "endPoint": { - "x": 329.507485, - "y": 27.36583 - } - } - }, - { - "id": "0f96160b-6600-59a1-a112-77bab6e4f701", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.507485, - "y": 27.36583 - }, - "endPoint": { - "x": 329.514287, - "y": 27.365571 - } - } - }, - { - "id": "384fb690-adaa-56a4-a613-c4e6e6061fa6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.514287, - "y": 27.365571 - }, - "endPoint": { - "x": 329.521092, - "y": 27.365386 - } - } - }, - { - "id": "66df7701-8dd4-5dab-a589-ddc6d5b56c79", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.521092, - "y": 27.365386 - }, - "endPoint": { - "x": 329.527898, - "y": 27.365275 - } - } - }, - { - "id": "4a3af90b-9dc9-5817-8b29-88c178ccfcb8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.527898, - "y": 27.365275 - }, - "endPoint": { - "x": 329.534705, - "y": 27.365238 - } - } - }, - { - "id": "f48ef59e-293a-536b-8ed7-31b89e705d0b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.534705, - "y": 27.365238 - }, - "endPoint": { - "x": 329.606099, - "y": 27.365238 - } - } - }, - { - "id": "ed94fc91-e7eb-5ad6-9293-2ec8ecc6045d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.606099, - "y": 27.365238 - }, - "endPoint": { - "x": 329.667311, - "y": 27.365238 - } - } - }, - { - "id": "0047fd24-39ae-585f-8d87-7460a953abff", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.667311, - "y": 27.365238 - }, - "endPoint": { - "x": 329.668515, - "y": 27.365145 - } - } - }, - { - "id": "2be9c832-ab6a-5191-8f4a-5b9e64b45a08", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.668515, - "y": 27.365145 - }, - "endPoint": { - "x": 329.669683, - "y": 27.364872 - } - } - }, - { - "id": "ade5f7b4-591c-5a39-be54-6a3d55a46e32", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.669683, - "y": 27.364872 - }, - "endPoint": { - "x": 329.670796, - "y": 27.364423 - } - } - }, - { - "id": "9b89eae6-1a2b-5aee-a093-b44da2abdcf1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.670796, - "y": 27.364423 - }, - "endPoint": { - "x": 329.671833, - "y": 27.363807 - } - } - }, - { - "id": "92434813-d391-5408-962d-2b31e94161a6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.671833, - "y": 27.363807 - }, - "endPoint": { - "x": 329.674749, - "y": 27.361645 - } - } - }, - { - "id": "3fe4c3c3-782f-595d-8647-539481a22fe0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.674749, - "y": 27.361645 - }, - "endPoint": { - "x": 329.677552, - "y": 27.359344 - } - } - }, - { - "id": "c1e995c4-2508-5b20-9a2e-43b60f6efcd2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.677552, - "y": 27.359344 - }, - "endPoint": { - "x": 329.680238, - "y": 27.356906 - } - } - }, - { - "id": "186a9d84-5322-55ae-b483-c8289dff48df", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.680238, - "y": 27.356906 - }, - "endPoint": { - "x": 329.682802, - "y": 27.354337 - } - } - }, - { - "id": "1861ef2a-b7b6-52f6-b56d-0fb19c4e8693", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.682802, - "y": 27.354337 - }, - "endPoint": { - "x": 329.685037, - "y": 27.351883 - } - } - }, - { - "id": "d06b0de6-b1d7-54e5-b195-60ae8c0419a6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.685037, - "y": 27.351883 - }, - "endPoint": { - "x": 329.687164, - "y": 27.349337 - } - } - }, - { - "id": "403ba925-3739-5321-aec7-ee6e2adb6914", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.687164, - "y": 27.349337 - }, - "endPoint": { - "x": 329.689183, - "y": 27.346704 - } - } - }, - { - "id": "1daa7190-5a66-5e7c-9051-cf05356c30f6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.689183, - "y": 27.346704 - }, - "endPoint": { - "x": 329.691089, - "y": 27.343986 - } - } - }, - { - "id": "7df2ffed-6909-59fd-bc5e-e7db6990e836", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.691089, - "y": 27.343986 - }, - "endPoint": { - "x": 329.691713, - "y": 27.342927 - } - } - }, - { - "id": "c2baf15f-ff4d-58ef-8566-3c320848fbc3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.691713, - "y": 27.342927 - }, - "endPoint": { - "x": 329.692208, - "y": 27.341806 - } - } - }, - { - "id": "e1e05258-e33d-5c6f-80ef-7a31a28f2d7a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.692208, - "y": 27.341806 - }, - "endPoint": { - "x": 329.692571, - "y": 27.340636 - } - } - }, - { - "id": "0e72eba9-cbcf-5bde-ae94-47ab60320a41", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.692571, - "y": 27.340636 - }, - "endPoint": { - "x": 329.692796, - "y": 27.339427 - } - } - }, - { - "id": "f37a738a-9fb5-56e3-9e6f-b6f6ffbc96c6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.692796, - "y": 27.339427 - }, - "endPoint": { - "x": 329.693003, - "y": 27.337645 - } - } - }, - { - "id": "c2294df1-6628-5a93-9aea-6666ad6e6cfa", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.693003, - "y": 27.337645 - }, - "endPoint": { - "x": 329.693173, - "y": 27.33586 - } - } - }, - { - "id": "11a30bc4-243e-532b-8532-1b56778eacb4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.693173, - "y": 27.33586 - }, - "endPoint": { - "x": 329.693306, - "y": 27.334071 - } - } - }, - { - "id": "88700155-a52c-5983-91ff-dac2e1b9d8fd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.693306, - "y": 27.334071 - }, - "endPoint": { - "x": 329.693403, - "y": 27.33228 - } - } - }, - { - "id": "92958e99-5632-54b0-9dff-ff7cb74902d9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.693403, - "y": 27.33228 - }, - "endPoint": { - "x": 329.693603, - "y": 27.32724 - } - } - }, - { - "id": "55aad1f4-56b9-5b11-8157-83090ecd279e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.693603, - "y": 27.32724 - }, - "endPoint": { - "x": 329.693767, - "y": 27.322198 - } - } - }, - { - "id": "d4be3dd8-411e-5eb2-8bd9-8d447c27a298", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.693767, - "y": 27.322198 - }, - "endPoint": { - "x": 329.693893, - "y": 27.317156 - } - } - }, - { - "id": "172ccc66-8568-5222-84aa-f1dc7fc28049", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.693893, - "y": 27.317156 - }, - "endPoint": { - "x": 329.693983, - "y": 27.312112 - } - } - }, - { - "id": "cb42bf36-d6bd-5056-9f74-0c104d557cd5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.693983, - "y": 27.312112 - }, - "endPoint": { - "x": 329.69403, - "y": 27.307982 - } - } - }, - { - "id": "75bc965c-1917-5f16-b5e0-6b3ee943e5f1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.69403, - "y": 27.307982 - }, - "endPoint": { - "x": 329.694056, - "y": 27.303852 - } - } - }, - { - "id": "c83cc0e8-8591-5c56-ac9a-011e7014d1c9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.694056, - "y": 27.303852 - }, - "endPoint": { - "x": 329.69406, - "y": 27.299722 - } - } - }, - { - "id": "90f4f854-c527-5f26-bf63-344438b1f0f3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.69406, - "y": 27.299722 - }, - "endPoint": { - "x": 329.694043, - "y": 27.295591 - } - } - }, - { - "id": "56e5d7e7-cd65-58cb-9c3b-a3fe66026701", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.694043, - "y": 27.295591 - }, - "endPoint": { - "x": 329.693996, - "y": 27.286988 - } - } - }, - { - "id": "433d4eef-eaec-5e5e-a528-52b7fdd26570", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.693996, - "y": 27.286988 - }, - "endPoint": { - "x": 329.69397, - "y": 27.278385 - } - } - }, - { - "id": "d541eb17-3d9c-57b9-a8eb-d40650867642", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.69397, - "y": 27.278385 - }, - "endPoint": { - "x": 329.693965, - "y": 27.269782 - } - } - }, - { - "id": "aae65ba9-6f2e-5efc-a278-db40c289c206", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.693965, - "y": 27.269782 - }, - "endPoint": { - "x": 329.693983, - "y": 27.261179 - } - } - }, - { - "id": "a64eefaf-a664-5468-ad57-9be4f9fc8a64", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.693983, - "y": 27.261179 - }, - "endPoint": { - "x": 329.696547, - "y": 27.193029 - } - } - }, - { - "id": "f4c6b150-49c8-57e3-a6e3-06d46af11b55", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.696547, - "y": 27.193029 - }, - "endPoint": { - "x": 329.703774, - "y": 27.125295 - } - } - }, - { - "id": "b96b9172-5724-5fac-989a-46af2233d87d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.703774, - "y": 27.125295 - }, - "endPoint": { - "x": 329.715631, - "y": 27.058217 - } - } - }, - { - "id": "bb047ce3-452a-5e6e-bbd5-54845617e98e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.715631, - "y": 27.058217 - }, - "endPoint": { - "x": 329.732084, - "y": 26.992033 - } - } - }, - { - "id": "c95e4f1e-3c76-5934-9d3b-34aea6e8a07e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.732084, - "y": 26.992033 - }, - "endPoint": { - "x": 329.74687, - "y": 26.931676 - } - } - }, - { - "id": "8fbf1c64-1eb8-5406-878d-74166821d48d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.74687, - "y": 26.931676 - }, - "endPoint": { - "x": 329.757047, - "y": 26.870463 - } - } - }, - { - "id": "f0d3b0c9-5421-5542-b90c-77465d96e448", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.757047, - "y": 26.870463 - }, - "endPoint": { - "x": 329.762582, - "y": 26.808656 - } - } - }, - { - "id": "62de873b-d284-5ba8-88c5-b88cd4c326f0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.762582, - "y": 26.808656 - }, - "endPoint": { - "x": 329.76344, - "y": 26.74652 - } - } - }, - { - "id": "a967e2ad-5cf3-520c-ab7b-06cc39619b52", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.76344, - "y": 26.74652 - }, - "endPoint": { - "x": 329.763344, - "y": 26.742765 - } - } - }, - { - "id": "0bb80bba-5ab9-5f4d-a14e-49921f14b14f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.763344, - "y": 26.742765 - }, - "endPoint": { - "x": 329.763234, - "y": 26.739011 - } - } - }, - { - "id": "46b15d36-04de-54cd-a6a0-88e06e00811d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.763234, - "y": 26.739011 - }, - "endPoint": { - "x": 329.76311, - "y": 26.735257 - } - } - }, - { - "id": "af6482b8-f801-5de8-81bf-5ad54f8dcaf9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.76311, - "y": 26.735257 - }, - "endPoint": { - "x": 329.762973, - "y": 26.731504 - } - } - }, - { - "id": "397c5c75-d3e8-5355-9d2e-826ff202dd8d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.762973, - "y": 26.731504 - }, - "endPoint": { - "x": 329.762954, - "y": 26.731168 - } - } - }, - { - "id": "f7ce092b-f6e4-5df5-8519-64be5080a367", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.762954, - "y": 26.731168 - }, - "endPoint": { - "x": 329.762921, - "y": 26.730833 - } - } - }, - { - "id": "93d1f429-a61c-561f-8e63-547e66b4c03f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.762921, - "y": 26.730833 - }, - "endPoint": { - "x": 329.762875, - "y": 26.7305 - } - } - }, - { - "id": "bcb55bc2-cdcb-5d84-b52b-9325cfccf95d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.762875, - "y": 26.7305 - }, - "endPoint": { - "x": 329.762816, - "y": 26.730169 - } - } - }, - { - "id": "e3a71444-3b48-5c87-a1f8-8443e4b9ed38", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.762816, - "y": 26.730169 - }, - "endPoint": { - "x": 329.762504, - "y": 26.728818 - } - } - }, - { - "id": "5f3d4f2e-c163-5b87-8554-a9cf1dc33258", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.762504, - "y": 26.728818 - }, - "endPoint": { - "x": 329.762114, - "y": 26.727489 - } - } - }, - { - "id": "a046f49d-f3d5-5c19-bd26-9d319231700e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.762114, - "y": 26.727489 - }, - "endPoint": { - "x": 329.761647, - "y": 26.726185 - } - } - }, - { - "id": "a875a395-1b99-5bf4-b248-be2aca8f9c2a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.761647, - "y": 26.726185 - }, - "endPoint": { - "x": 329.761105, - "y": 26.724909 - } - } - }, - { - "id": "4e7ebe86-b5a2-5884-8512-95d91b767e52", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.761105, - "y": 26.724909 - }, - "endPoint": { - "x": 329.759501, - "y": 26.721525 - } - } - }, - { - "id": "03cf546f-2194-597f-a5a5-6377c8c9a3ab", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.759501, - "y": 26.721525 - }, - "endPoint": { - "x": 329.757825, - "y": 26.718177 - } - } - }, - { - "id": "963bbb41-c305-5dbd-b88f-e8a790cea0b0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.757825, - "y": 26.718177 - }, - "endPoint": { - "x": 329.756077, - "y": 26.714866 - } - } - }, - { - "id": "d783e660-3233-521c-b834-7baa78a1f0b8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.756077, - "y": 26.714866 - }, - "endPoint": { - "x": 329.754258, - "y": 26.711594 - } - } - }, - { - "id": "14865498-27b1-5149-bf40-cd5d0404bc63", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.754258, - "y": 26.711594 - }, - "endPoint": { - "x": 329.75269, - "y": 26.708933 - } - } - }, - { - "id": "5c0d77af-5b7c-5dd3-815f-dec2062a8562", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.75269, - "y": 26.708933 - }, - "endPoint": { - "x": 329.751046, - "y": 26.70632 - } - } - }, - { - "id": "6dad5953-93ce-5d29-aa29-521e68a910cc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.751046, - "y": 26.70632 - }, - "endPoint": { - "x": 329.749327, - "y": 26.703756 - } - } - }, - { - "id": "39dbffab-741c-5df1-8254-bdf70f8c15bc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.749327, - "y": 26.703756 - }, - "endPoint": { - "x": 329.747533, - "y": 26.701242 - } - } - }, - { - "id": "c8f8e790-664a-5d2a-b546-5a8071f7c87d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.747533, - "y": 26.701242 - }, - "endPoint": { - "x": 329.746613, - "y": 26.700067 - } - } - }, - { - "id": "06d81fa3-104e-5b5d-af7c-2687997fcce0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.746613, - "y": 26.700067 - }, - "endPoint": { - "x": 329.745624, - "y": 26.698949 - } - } - }, - { - "id": "71f16d24-1659-555b-9bd6-4db7c44ac20c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.745624, - "y": 26.698949 - }, - "endPoint": { - "x": 329.744569, - "y": 26.697894 - } - } - }, - { - "id": "314b7911-18e6-5b75-8ba0-e62d70b3ce1d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.744569, - "y": 26.697894 - }, - "endPoint": { - "x": 329.743452, - "y": 26.696902 - } - } - }, - { - "id": "24fe4af7-3f84-5a79-9d81-135b7f9a7bab", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.743452, - "y": 26.696902 - }, - "endPoint": { - "x": 329.741771, - "y": 26.695627 - } - } - }, - { - "id": "d9db333c-3ab6-5931-a319-2ff8868970e5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.741771, - "y": 26.695627 - }, - "endPoint": { - "x": 329.739981, - "y": 26.694516 - } - } - }, - { - "id": "6e71351a-442c-5a0d-93f1-7e3cdd22b813", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.739981, - "y": 26.694516 - }, - "endPoint": { - "x": 329.738096, - "y": 26.693578 - } - } - }, - { - "id": "c2bb17b9-2e9a-5eb8-b5e1-b2751b024bd1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.738096, - "y": 26.693578 - }, - "endPoint": { - "x": 329.736127, - "y": 26.692817 - } - } - }, - { - "id": "9df5f048-1f11-55fd-a59d-c66c72b8386a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.736127, - "y": 26.692817 - }, - "endPoint": { - "x": 329.733364, - "y": 26.692 - } - } - }, - { - "id": "a7ab0879-decd-55bb-a88e-3b75d7f46a91", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.733364, - "y": 26.692 - }, - "endPoint": { - "x": 329.730555, - "y": 26.691374 - } - } - }, - { - "id": "8fa19555-272b-55f6-9b56-60d6404a4ea3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.730555, - "y": 26.691374 - }, - "endPoint": { - "x": 329.72771, - "y": 26.69094 - } - } - }, - { - "id": "18c65c28-924f-5f7b-a036-55a889dab616", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.72771, - "y": 26.69094 - }, - "endPoint": { - "x": 329.724839, - "y": 26.6907 - } - } - }, - { - "id": "f7e35546-a2af-56aa-aff1-ea67da467695", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.724839, - "y": 26.6907 - }, - "endPoint": { - "x": 329.721366, - "y": 26.690537 - } - } - }, - { - "id": "58727545-9a26-5b9c-9d2c-9a38d59d7a15", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.721366, - "y": 26.690537 - }, - "endPoint": { - "x": 329.717893, - "y": 26.690389 - } - } - }, - { - "id": "b09ee913-3c27-59f7-b871-2e684ee5e321", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.717893, - "y": 26.690389 - }, - "endPoint": { - "x": 329.714419, - "y": 26.690257 - } - } - }, - { - "id": "0abcfbd6-7d2a-539f-9272-b0626f96f114", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.714419, - "y": 26.690257 - }, - "endPoint": { - "x": 329.710945, - "y": 26.69014 - } - } - }, - { - "id": "eaf3805b-272b-5285-9955-cea3cf6a0b77", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.710945, - "y": 26.69014 - }, - "endPoint": { - "x": 329.708422, - "y": 26.690069 - } - } - }, - { - "id": "5c11455a-c8bd-5fc1-a0a3-4f8ae47feea8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.708422, - "y": 26.690069 - }, - "endPoint": { - "x": 329.7059, - "y": 26.690013 - } - } - }, - { - "id": "f7ab9e2a-1cad-5da7-bdb7-b0e34408cd44", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.7059, - "y": 26.690013 - }, - "endPoint": { - "x": 329.703377, - "y": 26.689973 - } - } - }, - { - "id": "cc3130a0-b997-556c-8af0-cbee01aa64b8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.703377, - "y": 26.689973 - }, - "endPoint": { - "x": 329.700853, - "y": 26.689948 - } - } - }, - { - "id": "6e7a4f60-23b9-5444-9d2f-dd286224100a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.700853, - "y": 26.689948 - }, - "endPoint": { - "x": 329.700017, - "y": 26.689943 - } - } - }, - { - "id": "578f73fe-41ba-560d-bfff-5a8b3e39df6f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.700017, - "y": 26.689943 - }, - "endPoint": { - "x": 329.69918, - "y": 26.68994 - } - } - }, - { - "id": "8c180cb2-b543-5a33-adfe-5a585b4e98a5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.69918, - "y": 26.68994 - }, - "endPoint": { - "x": 329.698343, - "y": 26.689938 - } - } - }, - { - "id": "8f42b9bd-a260-5c29-9406-7933d51257df", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.698343, - "y": 26.689938 - }, - "endPoint": { - "x": 329.697507, - "y": 26.689937 - } - } - }, - { - "id": "d7e86c2c-c4be-5ef8-baed-7f9cc39aaa6b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.697507, - "y": 26.689937 - }, - "endPoint": { - "x": 329.690598, - "y": 26.689938 - } - } - }, - { - "id": "34f09370-82bf-58ee-9a30-692ab1d7d89d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.690598, - "y": 26.689938 - }, - "endPoint": { - "x": 329.68369, - "y": 26.68994 - } - } - }, - { - "id": "ed78c825-d0e8-5ec8-9d8f-115696b12003", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.68369, - "y": 26.68994 - }, - "endPoint": { - "x": 329.676781, - "y": 26.689943 - } - } - }, - { - "id": "c5ef9071-4ad5-5614-bf33-df4d3cdeae35", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.676781, - "y": 26.689943 - }, - "endPoint": { - "x": 329.669872, - "y": 26.689948 - } - } - }, - { - "id": "8947a1c3-9629-5ede-acb3-ea89f4034649", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.669872, - "y": 26.689948 - }, - "endPoint": { - "x": 329.5683, - "y": 26.690789 - } - } - }, - { - "id": "605b9e2a-851d-5446-b6ad-a6755bb5e6af", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.5683, - "y": 26.690789 - }, - "endPoint": { - "x": 329.466758, - "y": 26.693143 - } - } - }, - { - "id": "ec63c8f2-9b43-59b7-b986-83f2d5c69e6d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.466758, - "y": 26.693143 - }, - "endPoint": { - "x": 329.365262, - "y": 26.697012 - } - } - }, - { - "id": "3ebc9e82-1844-54ce-8688-bf78b30d8f54", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.365262, - "y": 26.697012 - }, - "endPoint": { - "x": 329.263829, - "y": 26.702395 - } - } - }, - { - "id": "f92b8768-a50c-534b-9c77-b2607c42df26", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.263829, - "y": 26.702395 - }, - "endPoint": { - "x": 329.175532, - "y": 26.708501 - } - } - }, - { - "id": "31e7ad65-2a7e-5fa6-8fa1-8ddd4d89e2ab", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.175532, - "y": 26.708501 - }, - "endPoint": { - "x": 329.087359, - "y": 26.716116 - } - } - }, - { - "id": "9f8fe8c9-8ebe-5845-877c-3bf0463e4ab8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.087359, - "y": 26.716116 - }, - "endPoint": { - "x": 328.999328, - "y": 26.72524 - } - } - }, - { - "id": "e0193dcc-c478-53bf-b5d5-15bf0ed6f6fa", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.999328, - "y": 26.72524 - }, - "endPoint": { - "x": 328.911461, - "y": 26.73587 - } - } - }, - { - "id": "7d99cb45-2ea3-539f-9a50-78c96f5c0028", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.911461, - "y": 26.73587 - }, - "endPoint": { - "x": 328.879549, - "y": 26.740242 - } - } - }, - { - "id": "4318511b-db55-5a42-b5ed-de8370e1c963", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.879549, - "y": 26.740242 - }, - "endPoint": { - "x": 328.847705, - "y": 26.745072 - } - } - }, - { - "id": "e4286601-43f3-58cd-9d5f-d0e5b05331cf", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.847705, - "y": 26.745072 - }, - "endPoint": { - "x": 328.815934, - "y": 26.750359 - } - } - }, - { - "id": "658b1a7d-3cf6-5eba-8229-b7ec0ba5ef22", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.815934, - "y": 26.750359 - }, - "endPoint": { - "x": 328.78424, - "y": 26.756103 - } - } - }, - { - "id": "a3c0e8c5-03ab-5222-8a9a-28e075d8b3d4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.78424, - "y": 26.756103 - }, - "endPoint": { - "x": 328.759218, - "y": 26.760588 - } - } - }, - { - "id": "679dd11d-9ce2-50fd-b8f5-ce0d5d2e55b2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.759218, - "y": 26.760588 - }, - "endPoint": { - "x": 328.734121, - "y": 26.764617 - } - } - }, - { - "id": "a051343e-cbbe-54a3-950a-e8b821abf61b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.734121, - "y": 26.764617 - }, - "endPoint": { - "x": 328.708955, - "y": 26.768187 - } - } - }, - { - "id": "a677e681-e0f4-5f4a-9e10-573bdcd13f0d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.708955, - "y": 26.768187 - }, - "endPoint": { - "x": 328.683725, - "y": 26.771298 - } - } - }, - { - "id": "c7556a76-513e-52fe-9ba5-6b27fc762db2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.683725, - "y": 26.771298 - }, - "endPoint": { - "x": 328.643393, - "y": 26.775549 - } - } - }, - { - "id": "62353176-718f-5d2d-b2a1-07532e9ff7b9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.643393, - "y": 26.775549 - }, - "endPoint": { - "x": 328.602997, - "y": 26.779109 - } - } - }, - { - "id": "ac4548d0-e392-5b3c-984c-b2dd32421091", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.602997, - "y": 26.779109 - }, - "endPoint": { - "x": 328.562546, - "y": 26.781977 - } - } - }, - { - "id": "2c1d5ec9-b02d-5ec8-9746-7b1d3a5f7819", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.562546, - "y": 26.781977 - }, - "endPoint": { - "x": 328.522048, - "y": 26.784152 - } - } - }, - { - "id": "95a59d83-5ed8-5dc5-8bff-f05f1cad3244", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.522048, - "y": 26.784152 - }, - "endPoint": { - "x": 328.483936, - "y": 26.78622 - } - } - }, - { - "id": "5cc3d089-af27-5468-ac90-d43493af53f4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.483936, - "y": 26.78622 - }, - "endPoint": { - "x": 328.44587, - "y": 26.788981 - } - } - }, - { - "id": "a2ff131e-4e85-5cd9-973f-1d1859c7c9ae", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.44587, - "y": 26.788981 - }, - "endPoint": { - "x": 328.40786, - "y": 26.792433 - } - } - }, - { - "id": "349078ba-2218-5f35-8d5b-9338cb105d9f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.40786, - "y": 26.792433 - }, - "endPoint": { - "x": 328.369917, - "y": 26.796576 - } - } - }, - { - "id": "00749fe0-df97-5340-8a67-ccac027d1a04", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.369917, - "y": 26.796576 - }, - "endPoint": { - "x": 328.345296, - "y": 26.799585 - } - } - }, - { - "id": "61ee9e04-ab3a-58f2-9bbe-1e9da33ba23a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.345296, - "y": 26.799585 - }, - "endPoint": { - "x": 328.320699, - "y": 26.802776 - } - } - }, - { - "id": "489d4b3b-e92a-53aa-9be4-0f2a27b35a93", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.320699, - "y": 26.802776 - }, - "endPoint": { - "x": 328.296126, - "y": 26.806151 - } - } - }, - { - "id": "6945d66b-b891-51a2-8ad7-1c82666ced4f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.296126, - "y": 26.806151 - }, - "endPoint": { - "x": 328.271578, - "y": 26.809708 - } - } - }, - { - "id": "ab43dcf8-f753-5e4a-b3f7-0319c03fb195", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.271578, - "y": 26.809708 - }, - "endPoint": { - "x": 328.231678, - "y": 26.815548 - } - } - }, - { - "id": "a3d1ab96-aed6-54b5-ad94-b0641233fa9c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.231678, - "y": 26.815548 - }, - "endPoint": { - "x": 328.191752, - "y": 26.821206 - } - } - }, - { - "id": "0dc1eff9-a0f4-55b8-ba71-2083e31e7f2d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.191752, - "y": 26.821206 - }, - "endPoint": { - "x": 328.151801, - "y": 26.826681 - } - } - }, - { - "id": "86cbe01c-f702-579e-88ab-a74d0c346f10", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.151801, - "y": 26.826681 - }, - "endPoint": { - "x": 328.111825, - "y": 26.831973 - } - } - }, - { - "id": "ba6c0d1b-c3d8-558a-8b79-e38041cdce83", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.111825, - "y": 26.831973 - }, - "endPoint": { - "x": 328.066493, - "y": 26.837233 - } - } - }, - { - "id": "4ffc408d-7d1c-5ff5-acad-a78ac83ce8e5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.066493, - "y": 26.837233 - }, - "endPoint": { - "x": 328.021041, - "y": 26.84124 - } - } - }, - { - "id": "d9426c65-10b8-5d45-9be2-845972708dc4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.021041, - "y": 26.84124 - }, - "endPoint": { - "x": 327.975497, - "y": 26.843992 - } - } - }, - { - "id": "10bc858c-cda9-5675-a7b5-685e75781883", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.975497, - "y": 26.843992 - }, - "endPoint": { - "x": 327.929885, - "y": 26.845487 - } - } - }, - { - "id": "36cda7db-3501-5512-a4dd-cd57706dfbd5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.929885, - "y": 26.845487 - }, - "endPoint": { - "x": 327.906835, - "y": 26.846556 - } - } - }, - { - "id": "83394b4c-6253-5ed5-8f53-30df3d9040a0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.906835, - "y": 26.846556 - }, - "endPoint": { - "x": 327.883896, - "y": 26.848883 - } - } - }, - { - "id": "86206f56-8781-592b-8541-31eef517cb82", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.883896, - "y": 26.848883 - }, - "endPoint": { - "x": 327.861119, - "y": 26.852461 - } - } - }, - { - "id": "95607ab8-37e2-54e1-ac4b-8ef2f207e248", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.861119, - "y": 26.852461 - }, - "endPoint": { - "x": 327.838554, - "y": 26.857283 - } - } - }, - { - "id": "42e2ca12-660a-5414-b246-e568d448cebc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.838554, - "y": 26.857283 - }, - "endPoint": { - "x": 327.816746, - "y": 26.863138 - } - } - }, - { - "id": "69138c60-7b8d-5c75-affb-40302ec8207c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.816746, - "y": 26.863138 - }, - "endPoint": { - "x": 327.795261, - "y": 26.870045 - } - } - }, - { - "id": "d10f255c-6d81-585b-ad37-40f5255ab5f4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.795261, - "y": 26.870045 - }, - "endPoint": { - "x": 327.774139, - "y": 26.877991 - } - } - }, - { - "id": "be8c2978-a38b-57fc-baf5-a009dbbab1ef", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.774139, - "y": 26.877991 - }, - "endPoint": { - "x": 327.753416, - "y": 26.886962 - } - } - }, - { - "id": "2a694ec4-24e0-5f83-a400-51f0ab98fdda", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.753416, - "y": 26.886962 - }, - "endPoint": { - "x": 327.701947, - "y": 26.910144 - } - } - }, - { - "id": "86fd9a6f-0ba6-52cc-b838-18a85dc82a2c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.701947, - "y": 26.910144 - }, - "endPoint": { - "x": 327.650043, - "y": 26.932318 - } - } - }, - { - "id": "db3fb750-9eda-5921-ba7f-5a425c72fb7b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.650043, - "y": 26.932318 - }, - "endPoint": { - "x": 327.597717, - "y": 26.95348 - } - } - }, - { - "id": "2c7df514-4063-503d-bb53-d9d193d228ec", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.597717, - "y": 26.95348 - }, - "endPoint": { - "x": 327.544984, - "y": 26.973621 - } - } - }, - { - "id": "96499186-4db7-54f5-a4a1-deba17c277b7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.544984, - "y": 26.973621 - }, - "endPoint": { - "x": 327.518684, - "y": 26.983211 - } - } - }, - { - "id": "e8688385-7fd5-5400-b39a-e8cfed7f5dd4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.518684, - "y": 26.983211 - }, - "endPoint": { - "x": 327.492282, - "y": 26.99251 - } - } - }, - { - "id": "4e714c6f-4bfe-5be2-80e1-b206f3add283", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.492282, - "y": 26.99251 - }, - "endPoint": { - "x": 327.465779, - "y": 27.001518 - } - } - }, - { - "id": "5caf630a-a7eb-5637-988d-a63503ec4033", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.465779, - "y": 27.001518 - }, - "endPoint": { - "x": 327.439178, - "y": 27.010234 - } - } - }, - { - "id": "5f8778dc-41cc-51db-86da-e54d64d75213", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.439178, - "y": 27.010234 - }, - "endPoint": { - "x": 327.426244, - "y": 27.014555 - } - } - }, - { - "id": "ff1c082d-4419-5689-b609-14d08f9007a5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.426244, - "y": 27.014555 - }, - "endPoint": { - "x": 327.413414, - "y": 27.019167 - } - } - }, - { - "id": "a3a599b5-9bc4-513a-8c52-a998c589c143", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.413414, - "y": 27.019167 - }, - "endPoint": { - "x": 327.400691, - "y": 27.024067 - } - } - }, - { - "id": "22fa3ce6-89ec-56b4-96c8-7918872e5da3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.400691, - "y": 27.024067 - }, - "endPoint": { - "x": 327.38808, - "y": 27.029253 - } - } - }, - { - "id": "492907e5-3d94-5280-b7b8-8d2b0fdfe130", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.38808, - "y": 27.029253 - }, - "endPoint": { - "x": 327.382216, - "y": 27.032001 - } - } - }, - { - "id": "e027c33c-262d-547e-82e3-b05f9dde1370", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.382216, - "y": 27.032001 - }, - "endPoint": { - "x": 327.376576, - "y": 27.035166 - } - } - }, - { - "id": "d39e74ff-6e08-5b15-9d6f-3af652643588", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.376576, - "y": 27.035166 - }, - "endPoint": { - "x": 327.371184, - "y": 27.038735 - } - } - }, - { - "id": "98e7e62b-ce7d-5961-914a-eb6baa5afc6f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.371184, - "y": 27.038735 - }, - "endPoint": { - "x": 327.36606, - "y": 27.042695 - } - } - }, - { - "id": "85bf903a-cd7d-5f7e-b7b3-c050f90ba08c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.36606, - "y": 27.042695 - }, - "endPoint": { - "x": 327.348326, - "y": 27.057775 - } - } - }, - { - "id": "ef229874-eb85-5dbc-be96-d9e124d4ff40", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.348326, - "y": 27.057775 - }, - "endPoint": { - "x": 327.330903, - "y": 27.073209 - } - } - }, - { - "id": "c52fcf19-449f-54fa-8cf2-83c04fceecc4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.330903, - "y": 27.073209 - }, - "endPoint": { - "x": 327.313796, - "y": 27.088993 - } - } - }, - { - "id": "c484e1d9-eab8-52de-a6ba-ada080414967", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.313796, - "y": 27.088993 - }, - "endPoint": { - "x": 327.29701, - "y": 27.105121 - } - } - }, - { - "id": "731cce55-7e7f-55e3-83f7-b1aee76baf53", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.29701, - "y": 27.105121 - }, - "endPoint": { - "x": 327.291403, - "y": 27.110851 - } - } - }, - { - "id": "e221cdd9-7c62-58f6-b2b1-c5a5eff59170", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.291403, - "y": 27.110851 - }, - "endPoint": { - "x": 327.286041, - "y": 27.116807 - } - } - }, - { - "id": "91cb75d0-e851-512b-911b-4e3a7759296f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.286041, - "y": 27.116807 - }, - "endPoint": { - "x": 327.280929, - "y": 27.122979 - } - } - }, - { - "id": "642a6bf1-0142-5e93-8ec5-191920e003f5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.280929, - "y": 27.122979 - }, - "endPoint": { - "x": 327.276076, - "y": 27.129361 - } - } - }, - { - "id": "a849ecd5-2833-5d54-a6dc-c5b3059e4db0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.276076, - "y": 27.129361 - }, - "endPoint": { - "x": 327.268559, - "y": 27.139965 - } - } - }, - { - "id": "79219ac7-2d0d-5d6b-aa37-abd69df36625", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.268559, - "y": 27.139965 - }, - "endPoint": { - "x": 327.261315, - "y": 27.150755 - } - } - }, - { - "id": "f5ba87fe-dbd0-51f3-9e61-b292d259ba86", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.261315, - "y": 27.150755 - }, - "endPoint": { - "x": 327.25435, - "y": 27.161727 - } - } - }, - { - "id": "01a88a1e-ed21-5533-89e7-7de2532c7c7e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.25435, - "y": 27.161727 - }, - "endPoint": { - "x": 327.247666, - "y": 27.172875 - } - } - } - ] - }, - { - "id": "52777e1d-0b32-5015-a240-ac298cd0f801", - "type": "PolyLine", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": null, - "children": [ - { - "id": "69c1a76e-aca0-5407-a7ac-72ff06e7ea4f", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.632069, - "y": 24.712475 - }, - "endPoint": { - "x": 334.610615, - "y": 24.606211 - } - } - }, - { - "id": "b9efc787-575a-5978-bf5c-911169580995", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.610615, - "y": 24.606211 - }, - "endPoint": { - "x": 334.552109, - "y": 24.519435 - } - } - }, - { - "id": "552fb9bc-41bf-5539-bdc4-504f75e3f55c", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.552109, - "y": 24.519435 - }, - "endPoint": { - "x": 334.465333, - "y": 24.460928 - } - } - }, - { - "id": "480ec46e-52e0-50e2-b4be-5909cfbc718c", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.465333, - "y": 24.460928 - }, - "endPoint": { - "x": 334.359068, - "y": 24.439475 - } - } - }, - { - "id": "1e083c2e-78d6-5113-83eb-60bba9264f8d", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.359068, - "y": 24.439475 - }, - "endPoint": { - "x": 334.252804, - "y": 24.460928 - } - } - }, - { - "id": "a23f2f3f-53ba-5f7c-9169-d0998fc96761", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.252804, - "y": 24.460928 - }, - "endPoint": { - "x": 334.166028, - "y": 24.519435 - } - } - }, - { - "id": "f81d03d2-38d5-54c1-b7f0-f4bf559b2f5a", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.166028, - "y": 24.519435 - }, - "endPoint": { - "x": 334.107521, - "y": 24.606211 - } - } - }, - { - "id": "e3a9d3f4-c433-57c1-8ef6-2a8ace083ef1", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.107521, - "y": 24.606211 - }, - "endPoint": { - "x": 334.086068, - "y": 24.712475 - } - } - }, - { - "id": "e24d0967-69be-515b-8179-b6c255fac172", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.086068, - "y": 24.712475 - }, - "endPoint": { - "x": 334.107521, - "y": 24.81874 - } - } - }, - { - "id": "000bd5b8-86f9-570d-bda9-daac70b1c9b4", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.107521, - "y": 24.81874 - }, - "endPoint": { - "x": 334.166028, - "y": 24.905516 - } - } - }, - { - "id": "ccdc81ce-0e31-5af7-beea-211b4545ddeb", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.166028, - "y": 24.905516 - }, - "endPoint": { - "x": 334.252804, - "y": 24.964022 - } - } - }, - { - "id": "923a000e-d585-55b6-85c5-17ac7ff45ae3", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.252804, - "y": 24.964022 - }, - "endPoint": { - "x": 334.359068, - "y": 24.985476 - } - } - }, - { - "id": "86650f24-b5de-5e14-9d83-11bfbb33e184", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.359068, - "y": 24.985476 - }, - "endPoint": { - "x": 334.465333, - "y": 24.964022 - } - } - }, - { - "id": "d5536795-11c6-56c1-851d-720a4d23c2af", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.465333, - "y": 24.964022 - }, - "endPoint": { - "x": 334.552109, - "y": 24.905516 - } - } - }, - { - "id": "6bd677b2-4120-5174-892e-cd648ece1489", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.552109, - "y": 24.905516 - }, - "endPoint": { - "x": 334.610615, - "y": 24.81874 - } - } - }, - { - "id": "2d6950cc-1145-5fc4-bdc1-d17c07ed37b5", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 334.610615, - "y": 24.81874 - }, - "endPoint": { - "x": 334.632069, - "y": 24.712475 - } - } - } - ] - }, - { - "id": "1e602523-d287-5004-81e5-887b537581e4", - "type": "PolyLine", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": null, - "children": [ - { - "id": "1fe6a7e3-9db8-5969-a667-3228be2b1b14", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.877475, - "y": 24.712475 - }, - "endPoint": { - "x": 329.856022, - "y": 24.606211 - } - } - }, - { - "id": "b50d13d7-4d0c-5d19-bc13-3db33dcf8819", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.856022, - "y": 24.606211 - }, - "endPoint": { - "x": 329.797515, - "y": 24.519435 - } - } - }, - { - "id": "f17168f1-5c5d-5d44-a322-63f846d7f2b6", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.797515, - "y": 24.519435 - }, - "endPoint": { - "x": 329.710739, - "y": 24.460928 - } - } - }, - { - "id": "96f11ede-0ac9-5449-a284-5828909f6964", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.710739, - "y": 24.460928 - }, - "endPoint": { - "x": 329.604475, - "y": 24.439475 - } - } - }, - { - "id": "211ed599-324d-5a26-839a-d9c287373718", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.604475, - "y": 24.439475 - }, - "endPoint": { - "x": 329.498211, - "y": 24.460928 - } - } - }, - { - "id": "a822c77c-ae36-5009-ba89-140f193cb86d", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.498211, - "y": 24.460928 - }, - "endPoint": { - "x": 329.411434, - "y": 24.519435 - } - } - }, - { - "id": "d88380b0-5ee4-5cf8-b0de-3e7deec4b50e", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.411434, - "y": 24.519435 - }, - "endPoint": { - "x": 329.352928, - "y": 24.606211 - } - } - }, - { - "id": "7bc28dcb-05c2-5336-99d8-0b3ca39865a7", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.352928, - "y": 24.606211 - }, - "endPoint": { - "x": 329.331474, - "y": 24.712475 - } - } - }, - { - "id": "d94cd884-18b8-5159-9232-97ad109878de", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.331474, - "y": 24.712475 - }, - "endPoint": { - "x": 329.352928, - "y": 24.81874 - } - } - }, - { - "id": "0d8066df-50f1-5bdd-9f15-e4e55242c59d", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.352928, - "y": 24.81874 - }, - "endPoint": { - "x": 329.411434, - "y": 24.905516 - } - } - }, - { - "id": "f5babc03-1c24-5623-89ee-4353e2eefacb", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.411434, - "y": 24.905516 - }, - "endPoint": { - "x": 329.498211, - "y": 24.964022 - } - } - }, - { - "id": "936adbb0-8d5d-5068-88de-84e73ad89e7c", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.498211, - "y": 24.964022 - }, - "endPoint": { - "x": 329.604475, - "y": 24.985476 - } - } - }, - { - "id": "088a95ba-dc47-5ce5-aff5-048c4d8bc2c9", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.604475, - "y": 24.985476 - }, - "endPoint": { - "x": 329.710739, - "y": 24.964022 - } - } - }, - { - "id": "d21d509b-8227-5f57-bc70-ec12ee9306d2", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.710739, - "y": 24.964022 - }, - "endPoint": { - "x": 329.797515, - "y": 24.905516 - } - } - }, - { - "id": "7d5944e9-97e1-5f52-a4ee-b3c09557347b", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.797515, - "y": 24.905516 - }, - "endPoint": { - "x": 329.856022, - "y": 24.81874 - } - } - }, - { - "id": "6b032a4e-cf2d-5682-8de2-610e20a4ba49", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 329.856022, - "y": 24.81874 - }, - "endPoint": { - "x": 329.877475, - "y": 24.712475 - } - } - } - ] - }, - { - "id": "0a9e7c7c-dd53-5a79-bc62-7f6677e818dc", - "type": "PolyLine", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": null, - "children": [ - { - "id": "dbea768e-c2a0-59d4-b8e1-7112c9d43192", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.035003, - "y": 25.566413 - }, - "endPoint": { - "x": 333.090844, - "y": 25.616652 - } - } - }, - { - "id": "0a7c2367-be1d-55bc-91ef-7c8fc7cc77b2", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.090844, - "y": 25.616652 - }, - "endPoint": { - "x": 333.150869, - "y": 25.616652 - } - } - }, - { - "id": "c25674dd-b313-5da5-889c-f0ff31b0e048", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.150869, - "y": 25.616652 - }, - "endPoint": { - "x": 333.195904, - "y": 25.581663 - } - } - }, - { - "id": "563bd0b8-accd-53ab-a23d-406f8207670b", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.195904, - "y": 25.581663 - }, - "endPoint": { - "x": 333.225949, - "y": 25.54163 - } - } - }, - { - "id": "5a0749a1-1d88-577b-9289-39a2b511bc6d", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.225949, - "y": 25.54163 - }, - "endPoint": { - "x": 333.386038, - "y": 25.531638 - } - } - }, - { - "id": "b73dc9c3-25d4-5f46-8a3d-e353b03b4e4d", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.386038, - "y": 25.531638 - }, - "endPoint": { - "x": 333.43607, - "y": 25.486625 - } - } - }, - { - "id": "feee4bc7-9317-5e65-b0b1-48db47b39b8c", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.43607, - "y": 25.486625 - }, - "endPoint": { - "x": 333.441067, - "y": 25.416615 - } - } - }, - { - "id": "a7ff9685-1689-54a9-b7c7-28e69868b1e9", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.441067, - "y": 25.416615 - }, - "endPoint": { - "x": 333.381041, - "y": 25.391618 - } - } - }, - { - "id": "7e154978-03d3-581c-87fe-41befadf7d23", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.381041, - "y": 25.391618 - }, - "endPoint": { - "x": 333.340628, - "y": 25.348202 - } - } - }, - { - "id": "380aedfc-0121-59a1-845f-af8cc3915002", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.340628, - "y": 25.348202 - }, - "endPoint": { - "x": 333.315894, - "y": 25.316095 - } - } - }, - { - "id": "7b1a8dc3-a611-5164-9060-66dadda48244", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.315894, - "y": 25.316095 - }, - "endPoint": { - "x": 333.318392, - "y": 25.254386 - } - } - }, - { - "id": "9ecd6f4f-899c-5c7c-b8b9-9646e7fa438e", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.318392, - "y": 25.254386 - }, - "endPoint": { - "x": 333.318392, - "y": 23.392844 - } - } - }, - { - "id": "f4c966be-eea1-5a97-92b0-b74a49ae0451", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.318392, - "y": 23.392844 - }, - "endPoint": { - "x": 333.313208, - "y": 23.364371 - } - } - }, - { - "id": "b7c7bb7c-200f-52c7-892f-376bb6f8d91d", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.313208, - "y": 23.364371 - }, - "endPoint": { - "x": 333.307274, - "y": 23.347299 - } - } - }, - { - "id": "01486169-6e7a-5e1f-bc6f-17fbe1d9e09d", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.307274, - "y": 23.347299 - }, - "endPoint": { - "x": 333.293595, - "y": 23.329413 - } - } - }, - { - "id": "1f4933ff-e50c-580c-b94d-72447ce43bfe", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.293595, - "y": 23.329413 - }, - "endPoint": { - "x": 333.274794, - "y": 23.318324 - } - } - }, - { - "id": "0f4607be-00b0-5f6a-a468-3f4d00424756", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.274794, - "y": 23.318324 - }, - "endPoint": { - "x": 333.257742, - "y": 23.312341 - } - } - }, - { - "id": "046f4961-ea5a-504c-bc8d-3561312d54e6", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.257742, - "y": 23.312341 - }, - "endPoint": { - "x": 333.230446, - "y": 23.308081 - } - } - }, - { - "id": "0181717c-0143-54bb-bac2-f953a7b0b097", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.230446, - "y": 23.308081 - }, - "endPoint": { - "x": 333.208272, - "y": 23.307235 - } - } - }, - { - "id": "ee0e3c95-c023-511e-819d-3347577141d1", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.208272, - "y": 23.307235 - }, - "endPoint": { - "x": 333.176666, - "y": 23.307235 - } - } - }, - { - "id": "1490e38a-dc6c-5fcd-b681-2ce910be953a", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.176666, - "y": 23.307235 - }, - "endPoint": { - "x": 333.146809, - "y": 23.307235 - } - } - }, - { - "id": "b7cd0b28-415c-5674-a469-53ce4530f60a", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.146809, - "y": 23.307235 - }, - "endPoint": { - "x": 333.111768, - "y": 23.307235 - } - } - }, - { - "id": "e4438469-3dfb-58b6-a6c8-59e332410a06", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.111768, - "y": 23.307235 - }, - "endPoint": { - "x": 333.093842, - "y": 23.307235 - } - } - }, - { - "id": "6cde55d4-81fe-5537-8487-866b28ec78f0", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.093842, - "y": 23.307235 - }, - "endPoint": { - "x": 333.065734, - "y": 23.312341 - } - } - }, - { - "id": "9d7d0295-e32b-5f81-b64b-b21092220e0a", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.065734, - "y": 23.312341 - }, - "endPoint": { - "x": 333.050368, - "y": 23.320861 - } - } - }, - { - "id": "cb164c32-9fd7-593e-9fc4-f929bf9bf9f1", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.050368, - "y": 23.320861 - }, - "endPoint": { - "x": 333.040937, - "y": 23.334518 - } - } - }, - { - "id": "ca914446-baa2-5301-b3f5-361b977294ca", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.040937, - "y": 23.334518 - }, - "endPoint": { - "x": 333.038376, - "y": 23.345607 - } - } - }, - { - "id": "097e7ca2-1b9a-509e-8c30-854017400138", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.038376, - "y": 23.345607 - }, - "endPoint": { - "x": 333.035003, - "y": 23.380597 - } - } - }, - { - "id": "f2bc4b0e-1212-59b0-a633-94087fccfc77", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.035003, - "y": 23.380597 - }, - "endPoint": { - "x": 333.035003, - "y": 25.566413 - } - } - } - ] - }, - { - "id": "6a6e4825-3189-5bf5-8458-b08cad7647b2", - "type": "Circle", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "center": { - "x": 329.60447484590753, - "y": 24.71247533712843 - }, - "radius": 0.2730006540273411 - } - }, - { - "id": "2a61a2cf-088e-55c9-be43-fdce1921342c", - "type": "Circle", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "center": { - "x": 334.35906837165925, - "y": 24.71247533712843 - }, - "radius": 0.2730006540273411 - } - }, - { - "id": "77322839-43d6-5a26-a238-ddc06747d50a", - "type": "PolyLine", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": null, - "children": [ - { - "id": "767cef4f-10fa-5399-8f28-f70c6efa36cd", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.762892, - "y": 23.380597 - }, - "endPoint": { - "x": 330.766265, - "y": 23.345607 - } - } - }, - { - "id": "752b94fc-20aa-5685-8a4e-b36fdcbdc070", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.766265, - "y": 23.345607 - }, - "endPoint": { - "x": 330.768826, - "y": 23.334518 - } - } - }, - { - "id": "e0237f93-bece-5f73-91a4-883cd02dd35c", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.768826, - "y": 23.334518 - }, - "endPoint": { - "x": 330.778257, - "y": 23.320861 - } - } - }, - { - "id": "267e3efc-5f7c-5a43-84ea-28aefe93be1c", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.778257, - "y": 23.320861 - }, - "endPoint": { - "x": 330.793623, - "y": 23.312341 - } - } - }, - { - "id": "85961f6c-c9e5-5750-b102-3daaec31e5bf", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.793623, - "y": 23.312341 - }, - "endPoint": { - "x": 330.821731, - "y": 23.307235 - } - } - }, - { - "id": "1e6e7384-3f7a-5903-9495-ba342de7f966", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.821731, - "y": 23.307235 - }, - "endPoint": { - "x": 330.874698, - "y": 23.307235 - } - } - }, - { - "id": "646a700e-183e-5b82-9a5c-21bdc882bce7", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.874698, - "y": 23.307235 - }, - "endPoint": { - "x": 330.936161, - "y": 23.307235 - } - } - }, - { - "id": "59f512e1-e783-5c2f-9974-0f13f3fa902e", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.936161, - "y": 23.307235 - }, - "endPoint": { - "x": 330.958335, - "y": 23.308081 - } - } - }, - { - "id": "930c5ff2-21ca-560b-94f4-72df6092e840", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.958335, - "y": 23.308081 - }, - "endPoint": { - "x": 330.985631, - "y": 23.312341 - } - } - }, - { - "id": "d55e5f31-9a99-570a-aeab-b667b43de458", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.985631, - "y": 23.312341 - }, - "endPoint": { - "x": 331.002683, - "y": 23.318324 - } - } - }, - { - "id": "46a2ef2a-d4b0-5745-907b-b84f89469d39", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.002683, - "y": 23.318324 - }, - "endPoint": { - "x": 331.021484, - "y": 23.329413 - } - } - }, - { - "id": "4f6d18c4-b9d6-536d-a23a-51a9f1d75779", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.021484, - "y": 23.329413 - }, - "endPoint": { - "x": 331.035163, - "y": 23.347299 - } - } - }, - { - "id": "cad147db-fe54-5a0b-85d0-f58007eda974", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.035163, - "y": 23.347299 - }, - "endPoint": { - "x": 331.041097, - "y": 23.364371 - } - } - }, - { - "id": "95146ab4-6f29-54aa-a92c-2bb31289fd0d", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.041097, - "y": 23.364371 - }, - "endPoint": { - "x": 331.046281, - "y": 23.392844 - } - } - }, - { - "id": "328fc1d8-dc45-59f7-9f48-21d5c8f59f18", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.046281, - "y": 23.392844 - }, - "endPoint": { - "x": 331.046281, - "y": 25.254386 - } - } - }, - { - "id": "9f5d1e96-426e-56f5-9b7f-5b95e26f6c90", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.046281, - "y": 25.254386 - }, - "endPoint": { - "x": 331.043782, - "y": 25.316095 - } - } - }, - { - "id": "05d5be68-96a5-5850-a391-c80fa5870266", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.043782, - "y": 25.316095 - }, - "endPoint": { - "x": 331.068517, - "y": 25.348202 - } - } - }, - { - "id": "a510ad17-2d7d-5e57-be1f-cd397f76d914", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.068517, - "y": 25.348202 - }, - "endPoint": { - "x": 331.10893, - "y": 25.391618 - } - } - }, - { - "id": "64383f51-57fa-5fd2-a6c5-45afac31b449", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.10893, - "y": 25.391618 - }, - "endPoint": { - "x": 331.168956, - "y": 25.416615 - } - } - }, - { - "id": "11f91660-a518-5bce-add9-050cdaa32c58", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.168956, - "y": 25.416615 - }, - "endPoint": { - "x": 331.163959, - "y": 25.486625 - } - } - }, - { - "id": "dd65e2e1-4742-5845-a08d-8bd4d9cd1846", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.163959, - "y": 25.486625 - }, - "endPoint": { - "x": 331.113927, - "y": 25.531638 - } - } - }, - { - "id": "f2d708c8-3817-52e6-a898-4bcbc35d34f5", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.113927, - "y": 25.531638 - }, - "endPoint": { - "x": 330.953837, - "y": 25.54163 - } - } - }, - { - "id": "7cfa04bd-fcb1-5cc8-a343-002100bbb6fb", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.953837, - "y": 25.54163 - }, - "endPoint": { - "x": 330.923793, - "y": 25.581663 - } - } - }, - { - "id": "529a1fd9-7e5b-5bff-8f55-f9f9e0e9877a", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.923793, - "y": 25.581663 - }, - "endPoint": { - "x": 330.878758, - "y": 25.616652 - } - } - }, - { - "id": "f6a62ff2-82b4-53f5-ae78-a859fd3106e3", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.878758, - "y": 25.616652 - }, - "endPoint": { - "x": 330.818733, - "y": 25.616652 - } - } - }, - { - "id": "96951085-0ccb-5420-ac91-7c61749d33bf", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.818733, - "y": 25.616652 - }, - "endPoint": { - "x": 330.762892, - "y": 25.566413 - } - } - }, - { - "id": "9dd1a7bd-0211-5c60-a5f4-e3e55e86fa8a", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.762892, - "y": 25.566413 - }, - "endPoint": { - "x": 330.762892, - "y": 23.380597 - } - } - } - ] - }, - { - "id": "a96965f9-0c46-58fe-8c16-5873573a19ad", - "type": "PolyLine", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": null, - "children": [ - { - "id": "3c6610a3-76c9-526a-a06e-d9fd3bdbc332", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.762892, - "y": 25.566413 - }, - "endPoint": { - "x": 330.818733, - "y": 25.616652 - } - } - }, - { - "id": "2f815abc-600b-52ea-a122-b741d28e345e", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.818733, - "y": 25.616652 - }, - "endPoint": { - "x": 330.878758, - "y": 25.616652 - } - } - }, - { - "id": "ff15c9bc-0109-5b5d-a6d3-5fbf7bfe0c97", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.878758, - "y": 25.616652 - }, - "endPoint": { - "x": 330.923793, - "y": 25.581663 - } - } - }, - { - "id": "8160a040-4bad-5681-9c57-eaa4d9f41afd", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.923793, - "y": 25.581663 - }, - "endPoint": { - "x": 330.953837, - "y": 25.54163 - } - } - }, - { - "id": "e0f391ba-2797-5275-ba18-83548ab4044e", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.953837, - "y": 25.54163 - }, - "endPoint": { - "x": 331.113927, - "y": 25.531638 - } - } - }, - { - "id": "f2556396-92e5-5182-acf7-10e76fba59cb", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.113927, - "y": 25.531638 - }, - "endPoint": { - "x": 331.163959, - "y": 25.486625 - } - } - }, - { - "id": "39553a67-b6f4-5d83-b3a8-761feccf5d4b", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.163959, - "y": 25.486625 - }, - "endPoint": { - "x": 331.168956, - "y": 25.416615 - } - } - }, - { - "id": "1b16f1b4-3239-53dd-ba3d-8630fd989a91", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.168956, - "y": 25.416615 - }, - "endPoint": { - "x": 331.10893, - "y": 25.391618 - } - } - }, - { - "id": "d15e707e-075a-5b8d-aa6d-fdb7f7aa212a", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.10893, - "y": 25.391618 - }, - "endPoint": { - "x": 331.068517, - "y": 25.348202 - } - } - }, - { - "id": "12147978-50f6-5746-b305-76ac3e3a4b02", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.068517, - "y": 25.348202 - }, - "endPoint": { - "x": 331.043782, - "y": 25.316095 - } - } - }, - { - "id": "53732ce9-cf5c-58be-b2eb-33657446ce5b", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.043782, - "y": 25.316095 - }, - "endPoint": { - "x": 331.046281, - "y": 25.254386 - } - } - }, - { - "id": "6ef85e43-94c9-5068-a7da-dd49bf56a05f", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.046281, - "y": 25.254386 - }, - "endPoint": { - "x": 331.046281, - "y": 23.392844 - } - } - }, - { - "id": "216b1e60-b381-507d-9a6f-187a5a2f3af0", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.046281, - "y": 23.392844 - }, - "endPoint": { - "x": 331.041097, - "y": 23.364371 - } - } - }, - { - "id": "674393c1-9fcc-572f-82bd-e1d9ef2bb757", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.041097, - "y": 23.364371 - }, - "endPoint": { - "x": 331.035163, - "y": 23.347299 - } - } - }, - { - "id": "49b39efe-0d0f-516d-a294-59be37ff4890", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.035163, - "y": 23.347299 - }, - "endPoint": { - "x": 331.021484, - "y": 23.329413 - } - } - }, - { - "id": "1c3486bf-203e-5332-bcd2-c1014494361c", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.021484, - "y": 23.329413 - }, - "endPoint": { - "x": 331.002683, - "y": 23.318324 - } - } - }, - { - "id": "9208b87b-9aa0-5f46-a569-071cb016d286", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.002683, - "y": 23.318324 - }, - "endPoint": { - "x": 330.985631, - "y": 23.312341 - } - } - }, - { - "id": "37b48d12-1d9a-5ab2-bdf1-dcf23bc5f231", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.985631, - "y": 23.312341 - }, - "endPoint": { - "x": 330.958335, - "y": 23.308081 - } - } - }, - { - "id": "89058879-6349-5d32-9b4e-7641203b3451", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.958335, - "y": 23.308081 - }, - "endPoint": { - "x": 330.936161, - "y": 23.307235 - } - } - }, - { - "id": "0a356c8f-de36-5add-9630-17a303c0b92c", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.936161, - "y": 23.307235 - }, - "endPoint": { - "x": 330.904555, - "y": 23.307235 - } - } - }, - { - "id": "9d8bc964-9bc9-5f7b-8449-03c0523413ce", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.904555, - "y": 23.307235 - }, - "endPoint": { - "x": 330.874698, - "y": 23.307235 - } - } - }, - { - "id": "9cce4730-8e37-5a95-8c35-f81b24b3f932", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.874698, - "y": 23.307235 - }, - "endPoint": { - "x": 330.839657, - "y": 23.307235 - } - } - }, - { - "id": "cdb5e6a3-24b0-5ee0-82fa-a08c0e7c7afb", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.839657, - "y": 23.307235 - }, - "endPoint": { - "x": 330.821731, - "y": 23.307235 - } - } - }, - { - "id": "bc29c85c-565b-59cb-aefa-b7860dfd38ed", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.821731, - "y": 23.307235 - }, - "endPoint": { - "x": 330.793623, - "y": 23.312341 - } - } - }, - { - "id": "48af5225-5de2-5993-b2b4-d014fec9f5f6", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.793623, - "y": 23.312341 - }, - "endPoint": { - "x": 330.778257, - "y": 23.320861 - } - } - }, - { - "id": "b60af79c-91df-516a-b015-c4bdae8937ff", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.778257, - "y": 23.320861 - }, - "endPoint": { - "x": 330.768826, - "y": 23.334518 - } - } - }, - { - "id": "0ecb27dc-b390-5fdd-96aa-4dd5dd83be96", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.768826, - "y": 23.334518 - }, - "endPoint": { - "x": 330.766265, - "y": 23.345607 - } - } - }, - { - "id": "83ea3a2b-4133-5fbc-9eec-3abd87360f4c", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.766265, - "y": 23.345607 - }, - "endPoint": { - "x": 330.762892, - "y": 23.380597 - } - } - }, - { - "id": "3805788f-6edb-5eba-9a60-9549d62ffd2b", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 330.762892, - "y": 23.380597 - }, - "endPoint": { - "x": 330.762892, - "y": 25.566413 - } - } - } - ] - }, - { - "id": "9482d459-a336-5dad-b5f1-2d481bb78f39", - "type": "PolyLine", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": null, - "children": [ - { - "id": "90e4d23a-81b0-578e-92ac-84e96b2bd1f8", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.035003, - "y": 25.566413 - }, - "endPoint": { - "x": 333.090844, - "y": 25.616652 - } - } - }, - { - "id": "765e4479-9a08-5031-80a8-8e7279b96a0d", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.090844, - "y": 25.616652 - }, - "endPoint": { - "x": 333.150869, - "y": 25.616652 - } - } - }, - { - "id": "3c897cb0-1df5-5324-91cb-0e18a9aeddf5", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.150869, - "y": 25.616652 - }, - "endPoint": { - "x": 333.195904, - "y": 25.581663 - } - } - }, - { - "id": "a432971e-5e22-593e-a3b8-d9941cc8f468", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.195904, - "y": 25.581663 - }, - "endPoint": { - "x": 333.225949, - "y": 25.54163 - } - } - }, - { - "id": "41b49395-6a19-5176-8887-ab4bf8051341", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.225949, - "y": 25.54163 - }, - "endPoint": { - "x": 333.386038, - "y": 25.531638 - } - } - }, - { - "id": "cf2f1319-04dd-5731-90c8-91c12d995275", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.386038, - "y": 25.531638 - }, - "endPoint": { - "x": 333.43607, - "y": 25.486625 - } - } - }, - { - "id": "5d3337bc-13b7-555b-922f-7eed90f5813b", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.43607, - "y": 25.486625 - }, - "endPoint": { - "x": 333.441067, - "y": 25.416615 - } - } - }, - { - "id": "9144bea9-0242-5120-bd92-6c4299863bf5", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.441067, - "y": 25.416615 - }, - "endPoint": { - "x": 333.381041, - "y": 25.391618 - } - } - }, - { - "id": "0bec77b7-6f88-58a0-a26b-4a8943476bc4", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.381041, - "y": 25.391618 - }, - "endPoint": { - "x": 333.340628, - "y": 25.348202 - } - } - }, - { - "id": "37363510-5cc2-5c04-934e-f5c613d10a7a", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.340628, - "y": 25.348202 - }, - "endPoint": { - "x": 333.315894, - "y": 25.316095 - } - } - }, - { - "id": "9b41d2ca-9016-5df1-a481-3d82e3af818d", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.315894, - "y": 25.316095 - }, - "endPoint": { - "x": 333.318392, - "y": 25.254386 - } - } - }, - { - "id": "067fcd57-5ca3-5bd8-942f-0e26801455d0", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.318392, - "y": 25.254386 - }, - "endPoint": { - "x": 333.318392, - "y": 23.392844 - } - } - }, - { - "id": "b8d1499a-80e0-54bb-9de8-6f672a9f1e7c", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.318392, - "y": 23.392844 - }, - "endPoint": { - "x": 333.313208, - "y": 23.364371 - } - } - }, - { - "id": "dd02f0fa-9098-59c0-a57a-6c0f36a7e16c", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.313208, - "y": 23.364371 - }, - "endPoint": { - "x": 333.307274, - "y": 23.347299 - } - } - }, - { - "id": "7c1e3472-041c-5ebc-bd7f-b388c58284dc", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.307274, - "y": 23.347299 - }, - "endPoint": { - "x": 333.293595, - "y": 23.329413 - } - } - }, - { - "id": "abc87695-be5e-526a-8f11-7d76d9649c17", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.293595, - "y": 23.329413 - }, - "endPoint": { - "x": 333.274794, - "y": 23.318324 - } - } - }, - { - "id": "4e287e54-1412-5817-a802-df31b866b2f1", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.274794, - "y": 23.318324 - }, - "endPoint": { - "x": 333.257742, - "y": 23.312341 - } - } - }, - { - "id": "1cbff360-146e-57f2-9615-c94adcad76bc", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.257742, - "y": 23.312341 - }, - "endPoint": { - "x": 333.230446, - "y": 23.308081 - } - } - }, - { - "id": "c2452a7d-53bf-579f-b8ed-e1a1392f6c5e", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.230446, - "y": 23.308081 - }, - "endPoint": { - "x": 333.208272, - "y": 23.307235 - } - } - }, - { - "id": "8fa36d7f-e7f8-57c3-bbb0-1dead87b3835", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.208272, - "y": 23.307235 - }, - "endPoint": { - "x": 333.176666, - "y": 23.307235 - } - } - }, - { - "id": "47355149-6402-58ad-9a01-d43ff8ed45df", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.176666, - "y": 23.307235 - }, - "endPoint": { - "x": 333.146809, - "y": 23.307235 - } - } - }, - { - "id": "36134ce4-e124-56cf-9cdd-0aa2494867c7", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.146809, - "y": 23.307235 - }, - "endPoint": { - "x": 333.111768, - "y": 23.307235 - } - } - }, - { - "id": "8dfedaec-8cba-5ce8-9271-56ee37742561", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.111768, - "y": 23.307235 - }, - "endPoint": { - "x": 333.093842, - "y": 23.307235 - } - } - }, - { - "id": "9fd9c475-ead7-5c3f-add3-710937da4ed6", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.093842, - "y": 23.307235 - }, - "endPoint": { - "x": 333.065734, - "y": 23.312341 - } - } - }, - { - "id": "b504461e-b1c3-562b-9920-565087a4c856", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.065734, - "y": 23.312341 - }, - "endPoint": { - "x": 333.050368, - "y": 23.320861 - } - } - }, - { - "id": "fa454935-0854-573a-b546-34decd3d7110", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.050368, - "y": 23.320861 - }, - "endPoint": { - "x": 333.040937, - "y": 23.334518 - } - } - }, - { - "id": "47a1f067-80d3-52eb-804e-59922d3af282", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.040937, - "y": 23.334518 - }, - "endPoint": { - "x": 333.038376, - "y": 23.345607 - } - } - }, - { - "id": "fce3ab2b-0cf2-55e7-a254-99b6fd6c5285", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.038376, - "y": 23.345607 - }, - "endPoint": { - "x": 333.035003, - "y": 23.380597 - } - } - }, - { - "id": "07c4b727-131a-52ad-a91e-aa7705c2dde5", - "type": "Line", - "lineColor": "#3f7f5f", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.035003, - "y": 23.380597 - }, - "endPoint": { - "x": 333.035003, - "y": 25.566413 - } - } - } - ] - }, - { - "id": "017e7613-991c-5d13-9489-21cb7a325713", - "type": "PolyLine", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": null, - "children": [ - { - "id": "5ad64c74-8def-50a2-9a36-79207b07914d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.200266, - "y": 23.66333 - }, - "endPoint": { - "x": 333.035003, - "y": 23.66333 - } - } - }, - { - "id": "b50b9fb2-2701-5c63-a4e5-3c8a050fcf22", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.035003, - "y": 23.66333 - }, - "endPoint": { - "x": 333.035003, - "y": 23.512253 - } - } - }, - { - "id": "56820ab4-4e1e-5cac-85d4-66ba1a81cf01", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.035003, - "y": 23.512253 - }, - "endPoint": { - "x": 331.046281, - "y": 23.512253 - } - } - }, - { - "id": "b9062a6d-5ea4-5df2-a9ad-38698fc00a0b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.046281, - "y": 23.512253 - }, - "endPoint": { - "x": 331.046281, - "y": 23.66333 - } - } - }, - { - "id": "6f46803d-2bf6-5f0a-b7fb-de8a8794fc89", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.046281, - "y": 23.66333 - }, - "endPoint": { - "x": 331.902707, - "y": 23.66333 - } - } - }, - { - "id": "b306c6b5-fe4f-5e60-8c01-041da821380d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.902707, - "y": 23.66333 - }, - "endPoint": { - "x": 331.902707, - "y": 26.043448 - } - } - }, - { - "id": "8ea7f2b6-686c-5947-a459-d23a0395004a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.902707, - "y": 26.043448 - }, - "endPoint": { - "x": 331.96134, - "y": 26.096199 - } - } - }, - { - "id": "2721716e-fbe0-5b7e-89b5-e96e68815773", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.96134, - "y": 26.096199 - }, - "endPoint": { - "x": 332.024367, - "y": 26.096199 - } - } - }, - { - "id": "686881ee-7f97-5203-8fc9-4e7039b4bd9e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.024367, - "y": 26.096199 - }, - "endPoint": { - "x": 332.071654, - "y": 26.05946 - } - } - }, - { - "id": "0cbbec28-4dbd-5e10-b614-30537d68e53b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.071654, - "y": 26.05946 - }, - "endPoint": { - "x": 332.103201, - "y": 26.017426 - } - } - }, - { - "id": "bcdddb33-658f-50ca-bb05-b601b8123468", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.103201, - "y": 26.017426 - }, - "endPoint": { - "x": 332.271295, - "y": 26.006934 - } - } - }, - { - "id": "733aeff7-8dfc-54ce-b7bb-3702bbe37238", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.271295, - "y": 26.006934 - }, - "endPoint": { - "x": 332.323828, - "y": 25.95967 - } - } - }, - { - "id": "30d01f1d-f3a8-5139-8ced-85053e405ee1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.323828, - "y": 25.95967 - }, - "endPoint": { - "x": 332.329075, - "y": 25.88616 - } - } - }, - { - "id": "af26f7b5-2aa9-5d4b-986f-f537efafcfd5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.329075, - "y": 25.88616 - }, - "endPoint": { - "x": 332.266048, - "y": 25.859913 - } - } - }, - { - "id": "48140255-1667-5ce0-8bc0-c5eabd33b7b3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.266048, - "y": 25.859913 - }, - "endPoint": { - "x": 332.223614, - "y": 25.814327 - } - } - }, - { - "id": "225b812e-3622-5391-8510-0a7f412042df", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.223614, - "y": 25.814327 - }, - "endPoint": { - "x": 332.197643, - "y": 25.780614 - } - } - }, - { - "id": "7bfbac5a-c559-5e1d-9dbf-d3a91dedaf20", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.197643, - "y": 25.780614 - }, - "endPoint": { - "x": 332.200266, - "y": 25.71582 - } - } - }, - { - "id": "7e7521bc-527a-517b-a868-5741c7a61318", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.200266, - "y": 25.71582 - }, - "endPoint": { - "x": 332.200266, - "y": 23.66333 - } - } - } - ] - }, - { - "id": "4d6984a3-3518-54a4-8038-27a1138a1458", - "type": "PolyLine", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": null, - "children": [ - { - "id": "09e7734c-3335-51cd-accd-07c4a4525ab4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.200266, - "y": 23.66333 - }, - "endPoint": { - "x": 333.035003, - "y": 23.66333 - } - } - }, - { - "id": "a1ca4763-2804-5be1-9f2b-b192c4325ef1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.035003, - "y": 23.66333 - }, - "endPoint": { - "x": 333.035003, - "y": 23.512253 - } - } - }, - { - "id": "f6c017c9-2686-5422-aff9-abba8ea0d524", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 333.035003, - "y": 23.512253 - }, - "endPoint": { - "x": 331.046281, - "y": 23.512253 - } - } - }, - { - "id": "4fdf8c60-591f-5402-81c8-d02cbe47f45d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.046281, - "y": 23.512253 - }, - "endPoint": { - "x": 331.046281, - "y": 23.66333 - } - } - }, - { - "id": "b95ff2bf-e2c1-5a33-92e1-86532f12fc9b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.046281, - "y": 23.66333 - }, - "endPoint": { - "x": 331.902707, - "y": 23.66333 - } - } - }, - { - "id": "d76ff387-ca13-54f6-ba49-c287fb7c2361", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.902707, - "y": 23.66333 - }, - "endPoint": { - "x": 331.902707, - "y": 26.043448 - } - } - }, - { - "id": "c6f4ef86-e12e-54ba-9cf8-874fb4d69df2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.902707, - "y": 26.043448 - }, - "endPoint": { - "x": 331.96134, - "y": 26.096199 - } - } - }, - { - "id": "fb2330d7-d158-5ca7-828a-787de19cae92", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 331.96134, - "y": 26.096199 - }, - "endPoint": { - "x": 332.024367, - "y": 26.096199 - } - } - }, - { - "id": "30e24480-ce48-53b5-81c9-fe3a7ffdeca9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.024367, - "y": 26.096199 - }, - "endPoint": { - "x": 332.071654, - "y": 26.05946 - } - } - }, - { - "id": "2f583359-7bed-5019-a8b2-7b7353b05d08", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.071654, - "y": 26.05946 - }, - "endPoint": { - "x": 332.103201, - "y": 26.017426 - } - } - }, - { - "id": "d0960c9c-16d1-5198-8b5d-48abdc059af7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.103201, - "y": 26.017426 - }, - "endPoint": { - "x": 332.271295, - "y": 26.006934 - } - } - }, - { - "id": "5356b2fc-b663-57ab-a2e0-f8ba3fcfbd0c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.271295, - "y": 26.006934 - }, - "endPoint": { - "x": 332.323828, - "y": 25.95967 - } - } - }, - { - "id": "ae96cc05-49d0-539e-8b81-7df3d7c6b527", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.323828, - "y": 25.95967 - }, - "endPoint": { - "x": 332.329075, - "y": 25.88616 - } - } - }, - { - "id": "09048fde-a8c1-592c-b8b0-738993b7ea9f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.329075, - "y": 25.88616 - }, - "endPoint": { - "x": 332.266048, - "y": 25.859913 - } - } - }, - { - "id": "5b596998-01f7-57ce-ab8a-b13c5f45326f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.266048, - "y": 25.859913 - }, - "endPoint": { - "x": 332.223614, - "y": 25.814327 - } - } - }, - { - "id": "5ebad570-f4fa-5d8e-9a52-29892bb03906", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.223614, - "y": 25.814327 - }, - "endPoint": { - "x": 332.197643, - "y": 25.780614 - } - } - }, - { - "id": "7df0296a-6c11-582f-878e-e3fd48b3e3a0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.197643, - "y": 25.780614 - }, - "endPoint": { - "x": 332.200266, - "y": 25.71582 - } - } - }, - { - "id": "91f4b5b5-2239-568c-bb19-2e18a6359063", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 332.200266, - "y": 25.71582 - }, - "endPoint": { - "x": 332.200266, - "y": 23.66333 - } - } - } - ] - }, - { - "id": "f45f421f-0fdb-58d9-aae3-4c178fafb194", - "type": "PolyLine", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": null, - "children": [ - { - "id": "c12b8def-05f2-5cd5-a877-10c46e70f473", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.743417, - "y": 24.098869 - }, - "endPoint": { - "x": 336.826544, - "y": 24.044526 - } - } - }, - { - "id": "c7106b8a-a79f-5288-88c5-6e8f3826aa4b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.826544, - "y": 24.044526 - }, - "endPoint": { - "x": 336.890454, - "y": 24.001862 - } - } - }, - { - "id": "1f3abf1b-9f65-5512-8c64-9838fcaec06e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.890454, - "y": 24.001862 - }, - "endPoint": { - "x": 336.937845, - "y": 23.969241 - } - } - }, - { - "id": "bed33bee-85e9-50b2-aed0-2c02ed4e383a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.937845, - "y": 23.969241 - }, - "endPoint": { - "x": 336.971415, - "y": 23.945029 - } - } - }, - { - "id": "e862b1f1-d429-510a-8d4b-8835d4f1b050", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.971415, - "y": 23.945029 - }, - "endPoint": { - "x": 336.993862, - "y": 23.927588 - } - } - }, - { - "id": "477f190d-7429-5247-af72-77cf6e537e66", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.993862, - "y": 23.927588 - }, - "endPoint": { - "x": 337.007883, - "y": 23.915283 - } - } - }, - { - "id": "209f384a-b197-572e-8d72-06af25b98869", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.007883, - "y": 23.915283 - }, - "endPoint": { - "x": 337.016177, - "y": 23.906478 - } - } - }, - { - "id": "c51ad716-b253-50cf-9d6d-9ec1df04dcd5", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.016177, - "y": 23.906478 - }, - "endPoint": { - "x": 337.021441, - "y": 23.899537 - } - } - }, - { - "id": "a8ed2598-d6d1-5618-881a-ed3a2a995f6d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.021441, - "y": 23.899537 - }, - "endPoint": { - "x": 337.025933, - "y": 23.89308 - } - } - }, - { - "id": "a2dd39f5-e723-5b72-aaeb-611c663d9298", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.025933, - "y": 23.89308 - }, - "endPoint": { - "x": 337.030151, - "y": 23.886744 - } - } - }, - { - "id": "d747c374-3737-5f6e-8468-e95f7b34b3c3", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.030151, - "y": 23.886744 - }, - "endPoint": { - "x": 337.03415, - "y": 23.880424 - } - } - }, - { - "id": "3c06dc98-a853-5dea-9b77-03b3be747cc2", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.03415, - "y": 23.880424 - }, - "endPoint": { - "x": 337.037988, - "y": 23.874013 - } - } - }, - { - "id": "15e084c4-84a4-5cf3-b353-e886474a8ed6", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.037988, - "y": 23.874013 - }, - "endPoint": { - "x": 337.041723, - "y": 23.867406 - } - } - }, - { - "id": "26627525-90e9-5bb3-b1ac-489b2e273d51", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.041723, - "y": 23.867406 - }, - "endPoint": { - "x": 337.045411, - "y": 23.860494 - } - } - }, - { - "id": "8ecda3cc-1777-5b2d-b79c-06e5178fd89e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.045411, - "y": 23.860494 - }, - "endPoint": { - "x": 337.049109, - "y": 23.853173 - } - } - }, - { - "id": "28d5221e-cca4-5e79-a3b9-5b03a81dab7c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.049109, - "y": 23.853173 - }, - "endPoint": { - "x": 337.052875, - "y": 23.845337 - } - } - }, - { - "id": "5063f4d7-69d9-5c44-8feb-d47e384d904e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.052875, - "y": 23.845337 - }, - "endPoint": { - "x": 337.056744, - "y": 23.836907 - } - } - }, - { - "id": "179de599-1ad1-5c3d-ba21-a06d0e29f008", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.056744, - "y": 23.836907 - }, - "endPoint": { - "x": 337.06067, - "y": 23.827928 - } - } - }, - { - "id": "c6ef986b-9149-5f46-918f-ba34789413c0", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.06067, - "y": 23.827928 - }, - "endPoint": { - "x": 337.064586, - "y": 23.818472 - } - } - }, - { - "id": "26ee2e1a-fd61-558b-92eb-a8edf6b44f5b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.064586, - "y": 23.818472 - }, - "endPoint": { - "x": 337.068425, - "y": 23.808612 - } - } - }, - { - "id": "8a1dce67-30db-583c-a750-7e10e38d9e9d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.068425, - "y": 23.808612 - }, - "endPoint": { - "x": 337.072117, - "y": 23.79842 - } - } - }, - { - "id": "10a0c007-569b-5527-b153-9a1a566c66e2", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.072117, - "y": 23.79842 - }, - "endPoint": { - "x": 337.075597, - "y": 23.787968 - } - } - }, - { - "id": "3ee0e687-42aa-5543-a8d0-ad1097532cfb", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.075597, - "y": 23.787968 - }, - "endPoint": { - "x": 337.078797, - "y": 23.77733 - } - } - }, - { - "id": "6dfbd6c1-517b-5a7a-a6f9-b50f4ac7fe72", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.078797, - "y": 23.77733 - }, - "endPoint": { - "x": 337.08165, - "y": 23.766577 - } - } - }, - { - "id": "b2e61ba0-6e4a-5a8a-9bf0-ea798abac31c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.08165, - "y": 23.766577 - }, - "endPoint": { - "x": 337.084106, - "y": 23.755778 - } - } - }, - { - "id": "8c3cc270-8b3c-5a9f-99af-dabe0adf16bc", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.084106, - "y": 23.755778 - }, - "endPoint": { - "x": 337.086195, - "y": 23.744979 - } - } - }, - { - "id": "bef0b870-6c29-581b-86ae-01a764f8913a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.086195, - "y": 23.744979 - }, - "endPoint": { - "x": 337.087961, - "y": 23.734222 - } - } - }, - { - "id": "19cee65a-539b-5b7f-a74d-f5d1aae1ce32", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.087961, - "y": 23.734222 - }, - "endPoint": { - "x": 337.089453, - "y": 23.723548 - } - } - }, - { - "id": "95b5c5af-6a61-5ff6-b291-5ce261241f9f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.089453, - "y": 23.723548 - }, - "endPoint": { - "x": 337.090716, - "y": 23.712997 - } - } - }, - { - "id": "84ff30cb-e085-5bf7-8428-243b1af0456c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.090716, - "y": 23.712997 - }, - "endPoint": { - "x": 337.091798, - "y": 23.702613 - } - } - }, - { - "id": "9e0af6aa-5b32-51a4-930b-ac5b67e3faec", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.091798, - "y": 23.702613 - }, - "endPoint": { - "x": 337.092745, - "y": 23.692437 - } - } - }, - { - "id": "0c487f89-8e18-51cd-b332-b196f1955a0b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.092745, - "y": 23.692437 - }, - "endPoint": { - "x": 337.093604, - "y": 23.682509 - } - } - }, - { - "id": "877a197d-8e9e-5c92-8f3b-5f252dd80df9", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.093604, - "y": 23.682509 - }, - "endPoint": { - "x": 337.094408, - "y": 23.67285 - } - } - }, - { - "id": "957d1b09-9ba1-52f5-bc88-ccb56fcf01ac", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.094408, - "y": 23.67285 - }, - "endPoint": { - "x": 337.095133, - "y": 23.663399 - } - } - }, - { - "id": "96f1cf07-a760-5d80-87fc-1a50e918392a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.095133, - "y": 23.663399 - }, - "endPoint": { - "x": 337.095745, - "y": 23.654073 - } - } - }, - { - "id": "d875dca4-fb57-50b8-8d49-90b468469254", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.095745, - "y": 23.654073 - }, - "endPoint": { - "x": 337.096206, - "y": 23.644788 - } - } - }, - { - "id": "23192475-c055-547d-aa9b-e27ae0411f0b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.096206, - "y": 23.644788 - }, - "endPoint": { - "x": 337.09648, - "y": 23.635462 - } - } - }, - { - "id": "e4140468-2f31-5f4e-93c2-36932813c425", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.09648, - "y": 23.635462 - }, - "endPoint": { - "x": 337.096532, - "y": 23.626011 - } - } - }, - { - "id": "c7519f19-4edf-51f7-b29f-0b196e988cb9", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.096532, - "y": 23.626011 - }, - "endPoint": { - "x": 337.096323, - "y": 23.616352 - } - } - }, - { - "id": "06b74c70-bfb3-5b14-b9c4-77e646a47ad8", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.096323, - "y": 23.616352 - }, - "endPoint": { - "x": 337.095819, - "y": 23.606404 - } - } - }, - { - "id": "d2b031fe-a8ee-56c0-86bf-12579566eb75", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.095819, - "y": 23.606404 - }, - "endPoint": { - "x": 337.094988, - "y": 23.596121 - } - } - }, - { - "id": "28a1a2eb-ae73-528d-b6c9-53f49d00f983", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.094988, - "y": 23.596121 - }, - "endPoint": { - "x": 337.093813, - "y": 23.585621 - } - } - }, - { - "id": "4ae8ae54-0f77-5ff5-a0ef-8f06990d65e2", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.093813, - "y": 23.585621 - }, - "endPoint": { - "x": 337.092286, - "y": 23.575059 - } - } - }, - { - "id": "6cc81e06-cd7e-55b2-9949-6a7340d1fc8a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.092286, - "y": 23.575059 - }, - "endPoint": { - "x": 337.090396, - "y": 23.564591 - } - } - }, - { - "id": "4ba9f54d-43f9-5821-85e3-c7ada5d92f90", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.090396, - "y": 23.564591 - }, - "endPoint": { - "x": 337.088132, - "y": 23.554371 - } - } - }, - { - "id": "376a40c9-3185-53e6-80d3-4ba860a620f5", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.088132, - "y": 23.554371 - }, - "endPoint": { - "x": 337.085484, - "y": 23.544555 - } - } - }, - { - "id": "78676e62-3b20-51b5-821e-3a8b36201ee0", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.085484, - "y": 23.544555 - }, - "endPoint": { - "x": 337.082442, - "y": 23.5353 - } - } - }, - { - "id": "e11ca538-446c-5563-8e35-7d57f1eed642", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.082442, - "y": 23.5353 - }, - "endPoint": { - "x": 337.078995, - "y": 23.52676 - } - } - }, - { - "id": "09b15d47-c2ae-5ccb-a330-80bc2a0a0919", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.078995, - "y": 23.52676 - }, - "endPoint": { - "x": 337.075141, - "y": 23.51905 - } - } - }, - { - "id": "ef742d9b-47ff-5c6f-aca2-76760c4e2739", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.075141, - "y": 23.51905 - }, - "endPoint": { - "x": 337.070909, - "y": 23.512117 - } - } - }, - { - "id": "cd104ead-0e8e-5e0f-9062-e49fc6ab9712", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.070909, - "y": 23.512117 - }, - "endPoint": { - "x": 337.066334, - "y": 23.505869 - } - } - }, - { - "id": "6d72fd59-e353-5da3-b05c-09b600efbb1a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.066334, - "y": 23.505869 - }, - "endPoint": { - "x": 337.061453, - "y": 23.500212 - } - } - }, - { - "id": "9c8bde01-18fd-5073-bd50-c12e6ed3075d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.061453, - "y": 23.500212 - }, - "endPoint": { - "x": 337.056302, - "y": 23.495053 - } - } - }, - { - "id": "c67892db-3d6b-54ff-a299-d456b865252d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.056302, - "y": 23.495053 - }, - "endPoint": { - "x": 337.050918, - "y": 23.490298 - } - } - }, - { - "id": "e6990616-b9ba-569a-9447-ce084fb72409", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.050918, - "y": 23.490298 - }, - "endPoint": { - "x": 337.045337, - "y": 23.485855 - } - } - }, - { - "id": "f4b78364-c170-5934-8812-a885c5574a55", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.045337, - "y": 23.485855 - }, - "endPoint": { - "x": 337.039594, - "y": 23.481629 - } - } - }, - { - "id": "8bc6c653-ddc8-5a11-a7a0-40d9a7b12d7b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.039594, - "y": 23.481629 - }, - "endPoint": { - "x": 337.033722, - "y": 23.477548 - } - } - }, - { - "id": "432be3bc-f124-5452-ad7b-903862109fa6", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.033722, - "y": 23.477548 - }, - "endPoint": { - "x": 337.027724, - "y": 23.473623 - } - } - }, - { - "id": "48676bf4-e940-5aae-be5f-baeaf1571969", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.027724, - "y": 23.473623 - }, - "endPoint": { - "x": 337.021602, - "y": 23.469884 - } - } - }, - { - "id": "8ec781b9-085e-5152-88bf-c2ebbda1934e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.021602, - "y": 23.469884 - }, - "endPoint": { - "x": 337.015356, - "y": 23.466364 - } - } - }, - { - "id": "43fc1e49-49bc-56ab-be8e-ad41bc47ac6b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.015356, - "y": 23.466364 - }, - "endPoint": { - "x": 337.008985, - "y": 23.463092 - } - } - }, - { - "id": "268dfd71-cfe0-5b79-930a-972f9dade5f6", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.008985, - "y": 23.463092 - }, - "endPoint": { - "x": 337.00249, - "y": 23.4601 - } - } - }, - { - "id": "56a9f081-e109-5031-9104-13d9d4922b5f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.00249, - "y": 23.4601 - }, - "endPoint": { - "x": 336.99587, - "y": 23.457419 - } - } - }, - { - "id": "07ccbd41-5ab7-5248-a818-bc243f37955b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.99587, - "y": 23.457419 - }, - "endPoint": { - "x": 336.989125, - "y": 23.455081 - } - } - }, - { - "id": "0a4e83ab-e3f1-550c-84a4-6fbffd2c820d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.989125, - "y": 23.455081 - }, - "endPoint": { - "x": 336.982248, - "y": 23.453104 - } - } - }, - { - "id": "01b68cf0-6b5d-5a8b-9157-4b9e7bc7d2ac", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.982248, - "y": 23.453104 - }, - "endPoint": { - "x": 336.9752, - "y": 23.451465 - } - } - }, - { - "id": "87e57f02-25b6-51ef-bd77-b5aea76c27a6", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.9752, - "y": 23.451465 - }, - "endPoint": { - "x": 336.967934, - "y": 23.450126 - } - } - }, - { - "id": "f8fcc7f7-09c8-51ec-bed6-26f0be1652a0", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.967934, - "y": 23.450126 - }, - "endPoint": { - "x": 336.960404, - "y": 23.449052 - } - } - }, - { - "id": "7b816ae3-5bd2-5ed1-9668-6e95e31e5416", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.960404, - "y": 23.449052 - }, - "endPoint": { - "x": 336.952562, - "y": 23.448206 - } - } - }, - { - "id": "9501d37f-9249-5880-a252-f6752fb41861", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.952562, - "y": 23.448206 - }, - "endPoint": { - "x": 336.944362, - "y": 23.447552 - } - } - }, - { - "id": "de8cbd13-3efb-5280-951f-f1407892af92", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.944362, - "y": 23.447552 - }, - "endPoint": { - "x": 336.935758, - "y": 23.447053 - } - } - }, - { - "id": "3578ff8d-cbe9-58c4-a53d-19c881ecdc2a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.935758, - "y": 23.447053 - }, - "endPoint": { - "x": 336.926702, - "y": 23.446674 - } - } - }, - { - "id": "3d69213c-40c7-59d7-aedf-87169f814360", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.926702, - "y": 23.446674 - }, - "endPoint": { - "x": 336.917171, - "y": 23.446397 - } - } - }, - { - "id": "87f908c6-0fc1-5706-84df-8899e086a5ae", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.917171, - "y": 23.446397 - }, - "endPoint": { - "x": 336.907229, - "y": 23.446286 - } - } - }, - { - "id": "39356632-f30c-5ba7-956d-4ebb22b67c15", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.907229, - "y": 23.446286 - }, - "endPoint": { - "x": 336.896966, - "y": 23.446425 - } - } - }, - { - "id": "9b713a14-8166-5efa-88cb-5376b7f8aab4", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.896966, - "y": 23.446425 - }, - "endPoint": { - "x": 336.88647, - "y": 23.446895 - } - } - }, - { - "id": "27c81a35-34ad-5be0-8bcf-d4c972d9d59a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.88647, - "y": 23.446895 - }, - "endPoint": { - "x": 336.875829, - "y": 23.44778 - } - } - }, - { - "id": "ed3b98f4-b543-5aca-b20f-e628ee2bb6ab", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.875829, - "y": 23.44778 - }, - "endPoint": { - "x": 336.86513, - "y": 23.449163 - } - } - }, - { - "id": "11ce7ad5-61c2-5536-895c-9d38ad49b823", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.86513, - "y": 23.449163 - }, - "endPoint": { - "x": 336.854462, - "y": 23.451126 - } - } - }, - { - "id": "07ddf040-2fa8-5d04-b163-575e87932fb3", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.854462, - "y": 23.451126 - }, - "endPoint": { - "x": 336.843914, - "y": 23.453753 - } - } - }, - { - "id": "39b4a8f5-a42d-5168-afcc-439902c8fd56", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.843914, - "y": 23.453753 - }, - "endPoint": { - "x": 336.833565, - "y": 23.457108 - } - } - }, - { - "id": "1bca29d9-5b3f-5db4-b626-10e2e1c06528", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.833565, - "y": 23.457108 - }, - "endPoint": { - "x": 336.823466, - "y": 23.461179 - } - } - }, - { - "id": "01ce3851-8583-525e-9229-4f433ec911ff", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.823466, - "y": 23.461179 - }, - "endPoint": { - "x": 336.813657, - "y": 23.465934 - } - } - }, - { - "id": "de71241a-a3eb-502b-a60c-c3e4a6cc3f60", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.813657, - "y": 23.465934 - }, - "endPoint": { - "x": 336.80418, - "y": 23.471342 - } - } - }, - { - "id": "7fb53f45-7a39-50f9-92ef-18db35ec7732", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.80418, - "y": 23.471342 - }, - "endPoint": { - "x": 336.795076, - "y": 23.477373 - } - } - }, - { - "id": "dd396725-c708-5340-b172-4002eed1bfc2", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.795076, - "y": 23.477373 - }, - "endPoint": { - "x": 336.786388, - "y": 23.483994 - } - } - }, - { - "id": "8393c233-44a7-52c1-b613-6d6320190d4f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.786388, - "y": 23.483994 - }, - "endPoint": { - "x": 336.778156, - "y": 23.491176 - } - } - }, - { - "id": "397be123-70ba-5364-bf70-e4a47c71741b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.778156, - "y": 23.491176 - }, - "endPoint": { - "x": 336.770422, - "y": 23.498886 - } - } - }, - { - "id": "0ce54622-62ea-596e-a47c-7ca89a7412c5", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.770422, - "y": 23.498886 - }, - "endPoint": { - "x": 336.7632, - "y": 23.507097 - } - } - }, - { - "id": "1fd447d7-9f30-5377-b007-23fb812424bf", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.7632, - "y": 23.507097 - }, - "endPoint": { - "x": 336.756387, - "y": 23.51579 - } - } - }, - { - "id": "fbf312c7-7153-5c7c-aeb9-e939772c68e0", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.756387, - "y": 23.51579 - }, - "endPoint": { - "x": 336.749855, - "y": 23.524949 - } - } - }, - { - "id": "e8f4ed5e-a6ad-5071-9434-340958084126", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.749855, - "y": 23.524949 - }, - "endPoint": { - "x": 336.743473, - "y": 23.53456 - } - } - }, - { - "id": "ae7a0f8d-4ad9-5b17-83ca-9e0b257754ac", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.743473, - "y": 23.53456 - }, - "endPoint": { - "x": 336.737111, - "y": 23.544606 - } - } - }, - { - "id": "6fd7ce20-fb6a-5cd0-a99c-0c15df5744d7", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.737111, - "y": 23.544606 - }, - "endPoint": { - "x": 336.730641, - "y": 23.555072 - } - } - }, - { - "id": "40e742e4-ffa4-566f-8686-a3678e30a929", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.730641, - "y": 23.555072 - }, - "endPoint": { - "x": 336.723932, - "y": 23.565942 - } - } - }, - { - "id": "4fb15ef5-406f-5137-a5c1-e579138c4530", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.723932, - "y": 23.565942 - }, - "endPoint": { - "x": 336.716855, - "y": 23.577202 - } - } - }, - { - "id": "f4704423-7cc8-514a-92d7-0710eb5cd078", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.716855, - "y": 23.577202 - }, - "endPoint": { - "x": 336.709309, - "y": 23.588826 - } - } - }, - { - "id": "4fe5aa02-4c86-5a55-995d-3c70008a39d3", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.709309, - "y": 23.588826 - }, - "endPoint": { - "x": 336.701305, - "y": 23.600756 - } - } - }, - { - "id": "836d7ee7-0ca8-54d5-8ed1-e283cccd4ca5", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.701305, - "y": 23.600756 - }, - "endPoint": { - "x": 336.692887, - "y": 23.612924 - } - } - }, - { - "id": "8587f76d-dadc-5d58-8464-f75a8888adac", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.692887, - "y": 23.612924 - }, - "endPoint": { - "x": 336.684095, - "y": 23.625264 - } - } - }, - { - "id": "16f7a35e-28da-5cb4-a342-d716e83d5ead", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.684095, - "y": 23.625264 - }, - "endPoint": { - "x": 336.674972, - "y": 23.637707 - } - } - }, - { - "id": "c0d95351-48ae-5481-8695-ead9513549b7", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.674972, - "y": 23.637707 - }, - "endPoint": { - "x": 336.665557, - "y": 23.650187 - } - } - }, - { - "id": "41e26f12-abcb-5a8c-8fe1-ffa05faeac4d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.665557, - "y": 23.650187 - }, - "endPoint": { - "x": 336.655894, - "y": 23.662636 - } - } - }, - { - "id": "6403ddd2-b5be-5610-8359-b28ebc0ef516", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.655894, - "y": 23.662636 - }, - "endPoint": { - "x": 336.646022, - "y": 23.674986 - } - } - }, - { - "id": "9520d198-ce9c-5537-a0cf-db8ea97a844f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.646022, - "y": 23.674986 - }, - "endPoint": { - "x": 336.635983, - "y": 23.687189 - } - } - }, - { - "id": "29926c11-142d-5774-85d6-3d36c6a517fe", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.635983, - "y": 23.687189 - }, - "endPoint": { - "x": 336.625803, - "y": 23.699267 - } - } - }, - { - "id": "b6dbb862-269b-5422-aa03-f9887cdc3328", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.625803, - "y": 23.699267 - }, - "endPoint": { - "x": 336.615508, - "y": 23.711262 - } - } - }, - { - "id": "048eb335-8477-5d1e-b23a-d373743589d5", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.615508, - "y": 23.711262 - }, - "endPoint": { - "x": 336.605126, - "y": 23.723216 - } - } - }, - { - "id": "64efc082-061d-5bc4-9890-f3b9c8063f5b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.605126, - "y": 23.723216 - }, - "endPoint": { - "x": 336.594681, - "y": 23.735169 - } - } - }, - { - "id": "07284c77-ac1b-59f9-a619-3ace5e45b90f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.594681, - "y": 23.735169 - }, - "endPoint": { - "x": 336.5842, - "y": 23.747165 - } - } - }, - { - "id": "42f1b3f5-cea0-56d9-ad6e-c400605c6630", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.5842, - "y": 23.747165 - }, - "endPoint": { - "x": 336.573709, - "y": 23.759243 - } - } - }, - { - "id": "a60cec45-91cc-562a-ad3f-330b1c5daab8", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.573709, - "y": 23.759243 - }, - "endPoint": { - "x": 336.563233, - "y": 23.771445 - } - } - }, - { - "id": "34054dab-5083-5282-ab93-54509ff2b64e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.563233, - "y": 23.771445 - }, - "endPoint": { - "x": 336.552798, - "y": 23.783793 - } - } - }, - { - "id": "81110d8b-e522-503a-833e-79dd4691deb9", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.552798, - "y": 23.783793 - }, - "endPoint": { - "x": 336.542419, - "y": 23.796223 - } - } - }, - { - "id": "88d53783-6d27-5471-8375-5efbef9de9be", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.542419, - "y": 23.796223 - }, - "endPoint": { - "x": 336.532113, - "y": 23.808654 - } - } - }, - { - "id": "f3dc216b-a9c0-571a-9443-53b501dab292", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.532113, - "y": 23.808654 - }, - "endPoint": { - "x": 336.521895, - "y": 23.821002 - } - } - }, - { - "id": "f4547ee3-a672-5d78-8c50-6718d0aa5d29", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.521895, - "y": 23.821002 - }, - "endPoint": { - "x": 336.511781, - "y": 23.833183 - } - } - }, - { - "id": "6e636cd2-6ef4-5d76-9754-35595eaae7e6", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.511781, - "y": 23.833183 - }, - "endPoint": { - "x": 336.501786, - "y": 23.845116 - } - } - }, - { - "id": "41792e5b-2513-5859-b291-187852a52357", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.501786, - "y": 23.845116 - }, - "endPoint": { - "x": 336.491927, - "y": 23.856717 - } - } - }, - { - "id": "11037835-8e3f-5e26-b42b-29afcf2c9618", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.491927, - "y": 23.856717 - }, - "endPoint": { - "x": 336.482217, - "y": 23.867903 - } - } - }, - { - "id": "9fb08073-fd82-50a2-946c-ba0866a517be", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.482217, - "y": 23.867903 - }, - "endPoint": { - "x": 336.472664, - "y": 23.878614 - } - } - }, - { - "id": "b11c9ca9-c35d-5a97-9d60-d3f38ef62bac", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.472664, - "y": 23.878614 - }, - "endPoint": { - "x": 336.463229, - "y": 23.888885 - } - } - }, - { - "id": "21f330d2-d6d5-5628-b86f-f965bcfa0936", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.463229, - "y": 23.888885 - }, - "endPoint": { - "x": 336.453868, - "y": 23.898772 - } - } - }, - { - "id": "6d4879ed-3304-581e-9e8f-275c870bc531", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.453868, - "y": 23.898772 - }, - "endPoint": { - "x": 336.444532, - "y": 23.908333 - } - } - }, - { - "id": "0adc6585-1a0a-51ee-a827-877d12aa5058", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.444532, - "y": 23.908333 - }, - "endPoint": { - "x": 336.435175, - "y": 23.917624 - } - } - }, - { - "id": "121f230d-bf5a-5036-aef6-51160dd8efac", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.435175, - "y": 23.917624 - }, - "endPoint": { - "x": 336.425752, - "y": 23.926702 - } - } - }, - { - "id": "966b157e-cb2d-5329-ac3f-7191de95ba4c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.425752, - "y": 23.926702 - }, - "endPoint": { - "x": 336.416214, - "y": 23.935625 - } - } - }, - { - "id": "cf8ded34-1d33-59e1-a9a9-2f07d2cb252b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.416214, - "y": 23.935625 - }, - "endPoint": { - "x": 336.406515, - "y": 23.944449 - } - } - }, - { - "id": "7b452879-af27-54bc-9e45-96885724e9dc", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.406515, - "y": 23.944449 - }, - "endPoint": { - "x": 336.396633, - "y": 23.953222 - } - } - }, - { - "id": "fd5264de-5ac6-545f-ab07-2ff079e9f587", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.396633, - "y": 23.953222 - }, - "endPoint": { - "x": 336.386642, - "y": 23.961954 - } - } - }, - { - "id": "7209bfe7-3b1e-58c7-b925-c461b3d0d921", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.386642, - "y": 23.961954 - }, - "endPoint": { - "x": 336.37664, - "y": 23.970644 - } - } - }, - { - "id": "3984a03b-2971-5fde-b622-707cfe7ec6fc", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.37664, - "y": 23.970644 - }, - "endPoint": { - "x": 336.366727, - "y": 23.979293 - } - } - }, - { - "id": "96e666ea-41fa-5aa3-98cd-7b2764ad1c36", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.366727, - "y": 23.979293 - }, - "endPoint": { - "x": 336.357, - "y": 23.9879 - } - } - }, - { - "id": "fab609fc-6887-52c2-a619-fdfbaf41c8c9", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.357, - "y": 23.9879 - }, - "endPoint": { - "x": 336.347559, - "y": 23.996466 - } - } - }, - { - "id": "3942be23-abda-531c-8c55-b47d8f493e8a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.347559, - "y": 23.996466 - }, - "endPoint": { - "x": 336.338502, - "y": 24.00499 - } - } - }, - { - "id": "326d8e5e-705f-586c-9539-5fb33d97e538", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.338502, - "y": 24.00499 - }, - "endPoint": { - "x": 336.329927, - "y": 24.013473 - } - } - }, - { - "id": "966068ee-df88-5924-97d6-be00514fd9e1", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.329927, - "y": 24.013473 - }, - "endPoint": { - "x": 336.321919, - "y": 24.021914 - } - } - }, - { - "id": "5972d685-7e04-5a56-9166-92753dffd6d7", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.321919, - "y": 24.021914 - }, - "endPoint": { - "x": 336.314508, - "y": 24.030314 - } - } - }, - { - "id": "2693ce80-0a4d-5a93-b978-7677667b53eb", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.314508, - "y": 24.030314 - }, - "endPoint": { - "x": 336.307709, - "y": 24.038672 - } - } - }, - { - "id": "6f5a4e43-a237-5c73-83c8-0c0ab926d18c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.307709, - "y": 24.038672 - }, - "endPoint": { - "x": 336.301538, - "y": 24.046989 - } - } - }, - { - "id": "76d7860d-72f8-5679-881e-647ee8a788ed", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.301538, - "y": 24.046989 - }, - "endPoint": { - "x": 336.29601, - "y": 24.055265 - } - } - }, - { - "id": "47297f41-6af4-510a-af67-ee733be76091", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.29601, - "y": 24.055265 - }, - "endPoint": { - "x": 336.291141, - "y": 24.063499 - } - } - }, - { - "id": "6fede06a-2d69-5449-b99d-7c41b17f6520", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.291141, - "y": 24.063499 - }, - "endPoint": { - "x": 336.286947, - "y": 24.071691 - } - } - }, - { - "id": "050da602-5643-5a47-a519-fe931f3914ed", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.286947, - "y": 24.071691 - }, - "endPoint": { - "x": 336.283442, - "y": 24.079843 - } - } - }, - { - "id": "923d97e6-cc3c-5b30-bad3-7739f9704886", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.283442, - "y": 24.079843 - }, - "endPoint": { - "x": 336.280628, - "y": 24.087948 - } - } - }, - { - "id": "bddbfdcd-7b23-5d37-9a64-d0aecc54dbd3", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.280628, - "y": 24.087948 - }, - "endPoint": { - "x": 336.278441, - "y": 24.095986 - } - } - }, - { - "id": "19fa477d-b7a9-5fdc-9d97-103d42ce5c05", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.278441, - "y": 24.095986 - }, - "endPoint": { - "x": 336.276804, - "y": 24.103931 - } - } - }, - { - "id": "d64803e9-ccd4-52bc-9bca-b661e592a515", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.276804, - "y": 24.103931 - }, - "endPoint": { - "x": 336.275639, - "y": 24.111756 - } - } - }, - { - "id": "df5df242-1ad2-5f2f-8252-a3966a575c19", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.275639, - "y": 24.111756 - }, - "endPoint": { - "x": 336.274869, - "y": 24.119436 - } - } - }, - { - "id": "3baf6760-9d22-519d-89a7-666b09f78529", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.274869, - "y": 24.119436 - }, - "endPoint": { - "x": 336.274415, - "y": 24.126945 - } - } - }, - { - "id": "84d156ee-c238-5c59-856b-a262fe5ff3bc", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.274415, - "y": 24.126945 - }, - "endPoint": { - "x": 336.2742, - "y": 24.134257 - } - } - }, - { - "id": "f3dfb6c1-2b18-5be3-bab1-3d08fa84d420", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.2742, - "y": 24.134257 - }, - "endPoint": { - "x": 336.274146, - "y": 24.141346 - } - } - }, - { - "id": "e5648371-52f1-5320-8f25-7177382be881", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.274146, - "y": 24.141346 - }, - "endPoint": { - "x": 336.274194, - "y": 24.148196 - } - } - }, - { - "id": "97f8b1af-906b-50cb-a357-f6c961d0bba0", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.274194, - "y": 24.148196 - }, - "endPoint": { - "x": 336.274367, - "y": 24.154828 - } - } - }, - { - "id": "082fb309-541f-5948-abc4-a0ca369bb943", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.274367, - "y": 24.154828 - }, - "endPoint": { - "x": 336.274706, - "y": 24.161273 - } - } - }, - { - "id": "7d2a125f-d29d-5e20-9206-704966d24573", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.274706, - "y": 24.161273 - }, - "endPoint": { - "x": 336.275252, - "y": 24.167562 - } - } - }, - { - "id": "28fcaf90-a75f-5624-be47-4de715aa9570", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.275252, - "y": 24.167562 - }, - "endPoint": { - "x": 336.276047, - "y": 24.173727 - } - } - }, - { - "id": "9bb02841-7ab2-5209-abb4-ad5469262728", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.276047, - "y": 24.173727 - }, - "endPoint": { - "x": 336.277133, - "y": 24.179799 - } - } - }, - { - "id": "d12175af-1a69-5a15-a4d6-1e5cc5ddb038", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.277133, - "y": 24.179799 - }, - "endPoint": { - "x": 336.278551, - "y": 24.185808 - } - } - }, - { - "id": "10edffac-63b4-50c6-b2f2-d70c1c082b08", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.278551, - "y": 24.185808 - }, - "endPoint": { - "x": 336.280343, - "y": 24.191787 - } - } - }, - { - "id": "d2c8a731-ec4f-58b4-8e6e-d380c6fa9e38", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.280343, - "y": 24.191787 - }, - "endPoint": { - "x": 336.282539, - "y": 24.197752 - } - } - }, - { - "id": "e7e7d924-067c-5acf-8fdd-5cc186b3057d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.282539, - "y": 24.197752 - }, - "endPoint": { - "x": 336.28513, - "y": 24.203671 - } - } - }, - { - "id": "42744e39-be6b-50c9-a4c2-27f69a00f161", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.28513, - "y": 24.203671 - }, - "endPoint": { - "x": 336.288094, - "y": 24.209496 - } - } - }, - { - "id": "7f8c65ba-07be-5212-b87a-0a6213e6f476", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.288094, - "y": 24.209496 - }, - "endPoint": { - "x": 336.291411, - "y": 24.215182 - } - } - }, - { - "id": "27f55344-630e-59b6-991b-3a7c14d1173b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.291411, - "y": 24.215182 - }, - "endPoint": { - "x": 336.295059, - "y": 24.22068 - } - } - }, - { - "id": "703eafb6-91ca-592d-9523-98b49d4cd8a2", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.295059, - "y": 24.22068 - }, - "endPoint": { - "x": 336.29902, - "y": 24.225946 - } - } - }, - { - "id": "46b8b829-ada1-5e7c-a2fd-3fd294537cac", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.29902, - "y": 24.225946 - }, - "endPoint": { - "x": 336.30327, - "y": 24.230931 - } - } - }, - { - "id": "ac90eea6-7b62-5923-ab2f-bb7826d31da7", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.30327, - "y": 24.230931 - }, - "endPoint": { - "x": 336.307791, - "y": 24.23559 - } - } - }, - { - "id": "c4a839b1-9006-5601-b69d-ab9047cdd70a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.307791, - "y": 24.23559 - }, - "endPoint": { - "x": 336.312566, - "y": 24.239886 - } - } - }, - { - "id": "c4d666c6-9acc-51d3-85ec-5473fb057732", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.312566, - "y": 24.239886 - }, - "endPoint": { - "x": 336.317606, - "y": 24.243824 - } - } - }, - { - "id": "8ccbdbd5-09a5-59a8-be90-c3b45f25a06a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.317606, - "y": 24.243824 - }, - "endPoint": { - "x": 336.322926, - "y": 24.24742 - } - } - }, - { - "id": "bedd0dde-95d8-5ed5-8b9a-3c95dbec08af", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.322926, - "y": 24.24742 - }, - "endPoint": { - "x": 336.328542, - "y": 24.25069 - } - } - }, - { - "id": "200e1068-8a4c-5051-8861-a9482dc6b8e5", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.328542, - "y": 24.25069 - }, - "endPoint": { - "x": 336.334469, - "y": 24.253648 - } - } - }, - { - "id": "859d7004-8cb5-5c4b-b671-ed154c83491f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.334469, - "y": 24.253648 - }, - "endPoint": { - "x": 336.340723, - "y": 24.25631 - } - } - }, - { - "id": "3f64859f-9876-5a83-986d-e43223ce997c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.340723, - "y": 24.25631 - }, - "endPoint": { - "x": 336.347319, - "y": 24.258693 - } - } - }, - { - "id": "626b6095-95e5-5bc2-ac46-519ec2376b92", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.347319, - "y": 24.258693 - }, - "endPoint": { - "x": 336.354274, - "y": 24.260811 - } - } - }, - { - "id": "fd748bc9-13f8-5d72-8e97-4368bc228ad3", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.354274, - "y": 24.260811 - }, - "endPoint": { - "x": 336.36159, - "y": 24.262674 - } - } - }, - { - "id": "6f68aa4e-d313-54a1-a23a-4680fa33b982", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.36159, - "y": 24.262674 - }, - "endPoint": { - "x": 336.369222, - "y": 24.264268 - } - } - }, - { - "id": "c9ef7d98-6094-548c-aaad-58d09dd95b85", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.369222, - "y": 24.264268 - }, - "endPoint": { - "x": 336.377114, - "y": 24.265571 - } - } - }, - { - "id": "4165b757-2384-5e29-9e44-19d9529c0484", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.377114, - "y": 24.265571 - }, - "endPoint": { - "x": 336.385208, - "y": 24.266563 - } - } - }, - { - "id": "8bdbf457-831c-5eca-b520-96230c315f6b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.385208, - "y": 24.266563 - }, - "endPoint": { - "x": 336.393448, - "y": 24.267223 - } - } - }, - { - "id": "aec776b8-3042-5a96-bb3f-a33a0e953316", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.393448, - "y": 24.267223 - }, - "endPoint": { - "x": 336.401776, - "y": 24.26753 - } - } - }, - { - "id": "bec00696-6576-5a32-ac33-501315315990", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.401776, - "y": 24.26753 - }, - "endPoint": { - "x": 336.410135, - "y": 24.267465 - } - } - }, - { - "id": "6361bac2-584d-58fc-a525-9a3ed28e505c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.410135, - "y": 24.267465 - }, - "endPoint": { - "x": 336.418468, - "y": 24.267005 - } - } - }, - { - "id": "b6c97cf4-9aaf-5220-8aef-88348cc80c00", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.418468, - "y": 24.267005 - }, - "endPoint": { - "x": 336.426731, - "y": 24.266136 - } - } - }, - { - "id": "c7cb675c-512a-5da9-a970-cf62178ba34f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.426731, - "y": 24.266136 - }, - "endPoint": { - "x": 336.434932, - "y": 24.264862 - } - } - }, - { - "id": "6ab5f4f9-0cf4-51e5-937b-0107ab509c4e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.434932, - "y": 24.264862 - }, - "endPoint": { - "x": 336.443091, - "y": 24.263194 - } - } - }, - { - "id": "ec572e32-a369-5835-81cd-3c15a4701191", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.443091, - "y": 24.263194 - }, - "endPoint": { - "x": 336.45123, - "y": 24.261143 - } - } - }, - { - "id": "a066d35c-c2d8-5e5a-a748-7d2668b6e225", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.45123, - "y": 24.261143 - }, - "endPoint": { - "x": 336.459369, - "y": 24.258718 - } - } - }, - { - "id": "0c896066-7d5b-5e15-b863-a3bda7c32860", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.459369, - "y": 24.258718 - }, - "endPoint": { - "x": 336.467528, - "y": 24.25593 - } - } - }, - { - "id": "b73ba79f-a676-5a53-bdd2-ef89d47d0669", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.467528, - "y": 24.25593 - }, - "endPoint": { - "x": 336.475728, - "y": 24.25279 - } - } - }, - { - "id": "8076b995-112a-5e49-9a18-88fd068436b4", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.475728, - "y": 24.25279 - }, - "endPoint": { - "x": 336.483991, - "y": 24.249307 - } - } - }, - { - "id": "df1e9639-5452-5b03-86a4-24c2aa079986", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.483991, - "y": 24.249307 - }, - "endPoint": { - "x": 336.492343, - "y": 24.24549 - } - } - }, - { - "id": "7c5c0692-2cfe-5434-9822-d69394485dfd", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.492343, - "y": 24.24549 - }, - "endPoint": { - "x": 336.500835, - "y": 24.241336 - } - } - }, - { - "id": "e5c14639-a47e-5d6e-b5b0-b21fe3de6d3c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.500835, - "y": 24.241336 - }, - "endPoint": { - "x": 336.509523, - "y": 24.23684 - } - } - }, - { - "id": "84403595-a5cd-5fe3-a505-91a4e551ca45", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.509523, - "y": 24.23684 - }, - "endPoint": { - "x": 336.518466, - "y": 24.231996 - } - } - }, - { - "id": "22e53fc4-d179-500a-b75a-30399ce4502a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.518466, - "y": 24.231996 - }, - "endPoint": { - "x": 336.527721, - "y": 24.226799 - } - } - }, - { - "id": "c7636a3d-de24-5fe6-8ec2-07bd76a9de11", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.527721, - "y": 24.226799 - }, - "endPoint": { - "x": 336.537343, - "y": 24.221245 - } - } - }, - { - "id": "90148ec1-16d5-5b3b-95bb-00dfbea83399", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.537343, - "y": 24.221245 - }, - "endPoint": { - "x": 336.547391, - "y": 24.215328 - } - } - }, - { - "id": "c675a04a-41d5-592d-8dab-b5861be81063", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.547391, - "y": 24.215328 - }, - "endPoint": { - "x": 336.557922, - "y": 24.209043 - } - } - }, - { - "id": "5f354baf-f89b-5919-a3fd-ad5f70100432", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.557922, - "y": 24.209043 - }, - "endPoint": { - "x": 336.569142, - "y": 24.202294 - } - } - }, - { - "id": "1adb578f-4197-50ff-8b3e-5f3da8340a9b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.569142, - "y": 24.202294 - }, - "endPoint": { - "x": 336.581862, - "y": 24.194628 - } - } - }, - { - "id": "4d051fa8-c4c0-5cb3-921f-96345e4bfd8d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.581862, - "y": 24.194628 - }, - "endPoint": { - "x": 336.597042, - "y": 24.1855 - } - } - }, - { - "id": "456d177a-72b8-5179-9bad-5b3cd9c83fa8", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.597042, - "y": 24.1855 - }, - "endPoint": { - "x": 336.61564, - "y": 24.174365 - } - } - }, - { - "id": "79aed983-ef96-50b5-bd3b-e6bfd05aea29", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.61564, - "y": 24.174365 - }, - "endPoint": { - "x": 336.638617, - "y": 24.160679 - } - } - }, - { - "id": "e1bf24d5-757b-5906-8b22-ad80fccf77f7", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.638617, - "y": 24.160679 - }, - "endPoint": { - "x": 336.666932, - "y": 24.143897 - } - } - }, - { - "id": "bfd06070-9e8f-50d3-878f-62477c3b5e5f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.666932, - "y": 24.143897 - }, - "endPoint": { - "x": 336.701546, - "y": 24.123476 - } - } - }, - { - "id": "e47d0a3c-ffad-5514-8562-272197d4bfdd", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.701546, - "y": 24.123476 - }, - "endPoint": { - "x": 336.743417, - "y": 24.098869 - } - } - }, - { - "id": "1854b8df-d775-5b2d-b3a2-2e2e60d749e4", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.743417, - "y": 24.098869 - }, - "endPoint": { - "x": 336.993108, - "y": 23.936926 - } - } - }, - { - "id": "bf624677-8e62-5978-a758-1253a46c6971", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.993108, - "y": 23.936926 - }, - "endPoint": { - "x": 337.024982, - "y": 23.897103 - } - } - }, - { - "id": "cb9019f3-1edf-58a2-b55b-1543e3280674", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.024982, - "y": 23.897103 - }, - "endPoint": { - "x": 337.051547, - "y": 23.851974 - } - } - }, - { - "id": "068d9f45-a96a-569e-87df-fcf9a3da1690", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.051547, - "y": 23.851974 - }, - "endPoint": { - "x": 337.086076, - "y": 23.76702 - } - } - }, - { - "id": "169e4e03-8e12-5661-96a5-dc75d86b0a30", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.086076, - "y": 23.76702 - }, - "endPoint": { - "x": 337.094046, - "y": 23.679412 - } - } - }, - { - "id": "dbfb4a0e-afa6-50a5-b862-191902372ba1", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.094046, - "y": 23.679412 - }, - "endPoint": { - "x": 337.099362, - "y": 23.610385 - } - } - }, - { - "id": "d845682e-a48f-5aab-a734-9aa41713c894", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.099362, - "y": 23.610385 - }, - "endPoint": { - "x": 337.083422, - "y": 23.517468 - } - } - }, - { - "id": "87547861-90d8-5012-8ef8-a0cdd9609338", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.083422, - "y": 23.517468 - }, - "endPoint": { - "x": 337.040923, - "y": 23.480302 - } - } - }, - { - "id": "43e6a497-f01f-570a-a1d2-b0036f61df5d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.040923, - "y": 23.480302 - }, - "endPoint": { - "x": 336.990454, - "y": 23.451098 - } - } - }, - { - "id": "c5a5ef29-c685-55aa-8eb6-d7ddeb29da39", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.990454, - "y": 23.451098 - }, - "endPoint": { - "x": 336.932014, - "y": 23.445789 - } - } - }, - { - "id": "292d7e00-17a8-536b-a1be-925553e8fc82", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.932014, - "y": 23.445789 - }, - "endPoint": { - "x": 336.841701, - "y": 23.445789 - } - } - }, - { - "id": "86217908-551a-5498-be26-4b1ba6aa72b0", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.841701, - "y": 23.445789 - }, - "endPoint": { - "x": 336.764667, - "y": 23.493577 - } - } - }, - { - "id": "af248d19-312e-5ae5-913d-583c4f38ca07", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.764667, - "y": 23.493577 - }, - "endPoint": { - "x": 336.722168, - "y": 23.573219 - } - } - }, - { - "id": "c0b111cf-8b3f-5248-9669-0cebb167988e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.722168, - "y": 23.573219 - }, - "endPoint": { - "x": 336.647794, - "y": 23.676755 - } - } - }, - { - "id": "cc51b756-3430-5da5-8ea1-adbea86475c9", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.647794, - "y": 23.676755 - }, - "endPoint": { - "x": 336.56279, - "y": 23.769676 - } - } - }, - { - "id": "f3f80b2e-2150-5ccb-935b-7aff9c301be8", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.56279, - "y": 23.769676 - }, - "endPoint": { - "x": 336.480447, - "y": 23.873212 - } - } - }, - { - "id": "5dbad804-27cd-5656-b862-38c1ae5b712f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.480447, - "y": 23.873212 - }, - "endPoint": { - "x": 336.408728, - "y": 23.944892 - } - } - }, - { - "id": "33e189f9-c4d4-5deb-83c3-7a0e1b000f16", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.408728, - "y": 23.944892 - }, - "endPoint": { - "x": 336.32373, - "y": 24.013915 - } - } - }, - { - "id": "ca9fc9b7-ce66-526c-81dc-a4c80cdd1928", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.32373, - "y": 24.013915 - }, - "endPoint": { - "x": 336.275915, - "y": 24.080285 - } - } - }, - { - "id": "a203ec6f-c01a-51e7-98ca-c89bc9f0c024", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.275915, - "y": 24.080285 - }, - "endPoint": { - "x": 336.273261, - "y": 24.144002 - } - } - }, - { - "id": "813f7d9a-0c26-5d8b-8793-b9ba50631aeb", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.273261, - "y": 24.144002 - }, - "endPoint": { - "x": 336.275915, - "y": 24.191787 - } - } - }, - { - "id": "d6a8306b-fe90-5650-8ea2-3bbfe9f0ef0a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.275915, - "y": 24.191787 - }, - "endPoint": { - "x": 336.305135, - "y": 24.239572 - } - } - }, - { - "id": "a024621c-c8aa-5657-b3b7-8adcccc1986a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.305135, - "y": 24.239572 - }, - "endPoint": { - "x": 336.350289, - "y": 24.263466 - } - } - }, - { - "id": "8f1e891d-259f-55ce-af22-d7f2327e835d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.350289, - "y": 24.263466 - }, - "endPoint": { - "x": 336.419353, - "y": 24.271429 - } - } - }, - { - "id": "d6ecc78c-49df-5e16-9a1d-f517c567d584", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.419353, - "y": 24.271429 - }, - "endPoint": { - "x": 336.483107, - "y": 24.252847 - } - } - }, - { - "id": "fda94364-815f-5ca5-b2b8-62bd416fdc63", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.483107, - "y": 24.252847 - }, - "endPoint": { - "x": 336.552165, - "y": 24.213025 - } - } - }, - { - "id": "d6103236-b18d-5bcc-96dc-eb658f0eb516", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.552165, - "y": 24.213025 - }, - "endPoint": { - "x": 336.621229, - "y": 24.170549 - } - } - }, - { - "id": "a3cfc078-1666-5438-83db-f9270bbbfc29", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.621229, - "y": 24.170549 - }, - "endPoint": { - "x": 336.743417, - "y": 24.098869 - } - } - } - ] - }, - { - "id": "548b2d91-dc91-502c-8730-b09ee8d33877", - "type": "PolyLine", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": null, - "children": [ - { - "id": "155f7071-3233-50a1-a9e6-1577815b503a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.536487, - "y": 25.944649 - }, - "endPoint": { - "x": 336.608537, - "y": 25.939805 - } - } - }, - { - "id": "d382e547-9537-5867-8885-c4fe68b059ef", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.608537, - "y": 25.939805 - }, - "endPoint": { - "x": 336.665339, - "y": 25.935157 - } - } - }, - { - "id": "40b21d15-1473-5811-99d9-0e24b1b88e28", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.665339, - "y": 25.935157 - }, - "endPoint": { - "x": 336.709013, - "y": 25.930655 - } - } - }, - { - "id": "8c60cfbf-e972-5c4a-959f-c2c53a500ead", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.709013, - "y": 25.930655 - }, - "endPoint": { - "x": 336.741679, - "y": 25.926245 - } - } - }, - { - "id": "dcec29c3-53eb-55a0-b8d4-7f62ee131854", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.741679, - "y": 25.926245 - }, - "endPoint": { - "x": 336.765455, - "y": 25.921877 - } - } - }, - { - "id": "a97d3325-d058-5849-8c5a-1d20f3ade3f2", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.765455, - "y": 25.921877 - }, - "endPoint": { - "x": 336.782461, - "y": 25.917498 - } - } - }, - { - "id": "ef51801b-d95f-57f5-8b2a-652a22b3db08", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.782461, - "y": 25.917498 - }, - "endPoint": { - "x": 336.794814, - "y": 25.913058 - } - } - }, - { - "id": "7dcda653-fbcb-5401-b3f4-3e734f5ff8e7", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.794814, - "y": 25.913058 - }, - "endPoint": { - "x": 336.804636, - "y": 25.908504 - } - } - }, - { - "id": "bfd86a5d-a14a-578d-9b5e-8053a088bd4c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.804636, - "y": 25.908504 - }, - "endPoint": { - "x": 336.813688, - "y": 25.903797 - } - } - }, - { - "id": "a4f21563-0284-509d-ac38-a58bf68f22ec", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.813688, - "y": 25.903797 - }, - "endPoint": { - "x": 336.822311, - "y": 25.898951 - } - } - }, - { - "id": "e36813e0-61d4-5b75-9fb0-48cad74b94f9", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.822311, - "y": 25.898951 - }, - "endPoint": { - "x": 336.83049, - "y": 25.893991 - } - } - }, - { - "id": "b7e09b0a-4a27-52a2-b188-7b1daa181ed1", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.83049, - "y": 25.893991 - }, - "endPoint": { - "x": 336.838209, - "y": 25.888944 - } - } - }, - { - "id": "4c34e0fd-5674-59fa-93e9-2784e0ad7e59", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.838209, - "y": 25.888944 - }, - "endPoint": { - "x": 336.845453, - "y": 25.883834 - } - } - }, - { - "id": "306e44c8-6c44-5c1c-9243-c31c743d9aae", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.845453, - "y": 25.883834 - }, - "endPoint": { - "x": 336.852205, - "y": 25.878689 - } - } - }, - { - "id": "33484230-425b-5d84-b9f5-8078a35ee2c2", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.852205, - "y": 25.878689 - }, - "endPoint": { - "x": 336.858451, - "y": 25.873533 - } - } - }, - { - "id": "18dc4ead-a61c-58fa-b0a6-49c88f158f72", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.858451, - "y": 25.873533 - }, - "endPoint": { - "x": 336.864176, - "y": 25.868392 - } - } - }, - { - "id": "a1d2be0b-9ba7-55d5-9d4f-78c183a61588", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.864176, - "y": 25.868392 - }, - "endPoint": { - "x": 336.869369, - "y": 25.863288 - } - } - }, - { - "id": "55b2fee0-a621-581b-8e62-e9bab457443a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.869369, - "y": 25.863288 - }, - "endPoint": { - "x": 336.874051, - "y": 25.85822 - } - } - }, - { - "id": "315b852a-9ceb-5b8d-8e4a-3d1a5789b4d6", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.874051, - "y": 25.85822 - }, - "endPoint": { - "x": 336.878247, - "y": 25.853183 - } - } - }, - { - "id": "ab21a6ca-a258-5417-8c2d-130a92873ac1", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.878247, - "y": 25.853183 - }, - "endPoint": { - "x": 336.881983, - "y": 25.848172 - } - } - }, - { - "id": "3c0b1d90-517c-57f5-9121-3731a670ec25", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.881983, - "y": 25.848172 - }, - "endPoint": { - "x": 336.885285, - "y": 25.843181 - } - } - }, - { - "id": "75ef2fd1-76ae-5b0d-ab1c-899bdbb494c7", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.885285, - "y": 25.843181 - }, - "endPoint": { - "x": 336.888179, - "y": 25.838206 - } - } - }, - { - "id": "38858830-8ec3-5af8-9786-0f65c6315c38", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.888179, - "y": 25.838206 - }, - "endPoint": { - "x": 336.89069, - "y": 25.833241 - } - } - }, - { - "id": "aedacc9f-1e84-5254-b728-32fb81a36978", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.89069, - "y": 25.833241 - }, - "endPoint": { - "x": 336.892844, - "y": 25.828282 - } - } - }, - { - "id": "2f5acec4-2098-5b70-bc1f-05d6661b2d0d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.892844, - "y": 25.828282 - }, - "endPoint": { - "x": 336.894672, - "y": 25.823308 - } - } - }, - { - "id": "ee43d513-9a3e-5887-9f39-20634e6a3aea", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.894672, - "y": 25.823308 - }, - "endPoint": { - "x": 336.896221, - "y": 25.818247 - } - } - }, - { - "id": "84c58ddf-b940-5f23-b3ec-5749300f7a6d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.896221, - "y": 25.818247 - }, - "endPoint": { - "x": 336.897542, - "y": 25.81301 - } - } - }, - { - "id": "de32f38b-c5a3-55e2-a9b0-93e40ed8a078", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.897542, - "y": 25.81301 - }, - "endPoint": { - "x": 336.898688, - "y": 25.807509 - } - } - }, - { - "id": "fb79397d-9f61-55df-a327-edaf0b7b768c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.898688, - "y": 25.807509 - }, - "endPoint": { - "x": 336.89971, - "y": 25.801658 - } - } - }, - { - "id": "5fe84147-20e3-58fe-b460-7c05930e1397", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.89971, - "y": 25.801658 - }, - "endPoint": { - "x": 336.900659, - "y": 25.795367 - } - } - }, - { - "id": "ccf0ad62-b27e-55a3-9d13-2babab3e9c5b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.900659, - "y": 25.795367 - }, - "endPoint": { - "x": 336.901587, - "y": 25.788549 - } - } - }, - { - "id": "03308288-a054-52d4-9490-92e6ee4d9c97", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.901587, - "y": 25.788549 - }, - "endPoint": { - "x": 336.902547, - "y": 25.781117 - } - } - }, - { - "id": "3239f53d-f9e9-59d8-8e05-1ea03e0b4b7d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.902547, - "y": 25.781117 - }, - "endPoint": { - "x": 336.903571, - "y": 25.773016 - } - } - }, - { - "id": "333b57f0-6a2f-5cc9-8dd0-4aaaf623a3f8", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.903571, - "y": 25.773016 - }, - "endPoint": { - "x": 336.904621, - "y": 25.764332 - } - } - }, - { - "id": "ef3416e0-c985-59ea-a1b9-e2ddc33811e9", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.904621, - "y": 25.764332 - }, - "endPoint": { - "x": 336.90564, - "y": 25.755183 - } - } - }, - { - "id": "c60d4962-29e7-58d9-abbe-6324210339b0", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.90564, - "y": 25.755183 - }, - "endPoint": { - "x": 336.906572, - "y": 25.745688 - } - } - }, - { - "id": "6b1d5f31-2858-535e-be2f-168c8c8f639f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.906572, - "y": 25.745688 - }, - "endPoint": { - "x": 336.907358, - "y": 25.735965 - } - } - }, - { - "id": "08b22293-ede5-5d70-aee3-64f804d6d5b7", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.907358, - "y": 25.735965 - }, - "endPoint": { - "x": 336.907943, - "y": 25.726135 - } - } - }, - { - "id": "83a0f9ce-a9ca-5925-aa25-dc3e2d1ff25b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.907943, - "y": 25.726135 - }, - "endPoint": { - "x": 336.90827, - "y": 25.716314 - } - } - }, - { - "id": "0117feeb-a45b-5c32-b748-515d0a824a31", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.90827, - "y": 25.716314 - }, - "endPoint": { - "x": 336.908281, - "y": 25.706623 - } - } - }, - { - "id": "cd7755c6-603a-5828-9c4b-c22fb3c78c8c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.908281, - "y": 25.706623 - }, - "endPoint": { - "x": 336.907932, - "y": 25.697153 - } - } - }, - { - "id": "de7948ae-f5b7-5088-a5b8-6b181447c3c0", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.907932, - "y": 25.697153 - }, - "endPoint": { - "x": 336.907226, - "y": 25.687889 - } - } - }, - { - "id": "54d7435f-b4fa-5cf1-96d4-d606dda4a492", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.907226, - "y": 25.687889 - }, - "endPoint": { - "x": 336.906179, - "y": 25.678791 - } - } - }, - { - "id": "448f06ae-403d-5714-a174-7fdceaf5f71b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.906179, - "y": 25.678791 - }, - "endPoint": { - "x": 336.904807, - "y": 25.669817 - } - } - }, - { - "id": "4ef3881f-0097-5822-9eac-823db366da14", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.904807, - "y": 25.669817 - }, - "endPoint": { - "x": 336.903124, - "y": 25.660925 - } - } - }, - { - "id": "b29df06f-d8a3-532d-bb13-52ab3d97e0c2", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.903124, - "y": 25.660925 - }, - "endPoint": { - "x": 336.901147, - "y": 25.652075 - } - } - }, - { - "id": "ff2d3df1-e1ef-59d4-a083-175ecf796a58", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.901147, - "y": 25.652075 - }, - "endPoint": { - "x": 336.89889, - "y": 25.643225 - } - } - }, - { - "id": "8847a39d-8349-5863-9648-e4eea4bf7478", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.89889, - "y": 25.643225 - }, - "endPoint": { - "x": 336.89637, - "y": 25.634333 - } - } - }, - { - "id": "1c434b7a-7742-56fb-81b0-be352c06ab1e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.89637, - "y": 25.634333 - }, - "endPoint": { - "x": 336.893607, - "y": 25.625375 - } - } - }, - { - "id": "6a309f3c-63d1-51b7-83d6-b6131d253233", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.893607, - "y": 25.625375 - }, - "endPoint": { - "x": 336.890637, - "y": 25.616385 - } - } - }, - { - "id": "26429ca9-9f4f-5a8f-ae26-3a5897188704", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.890637, - "y": 25.616385 - }, - "endPoint": { - "x": 336.887501, - "y": 25.607416 - } - } - }, - { - "id": "943a6eff-4413-5d68-b711-7f2537340e6f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.887501, - "y": 25.607416 - }, - "endPoint": { - "x": 336.884242, - "y": 25.59852 - } - } - }, - { - "id": "4a2f3fb7-6e9e-5d44-8a7f-fb831b79b4de", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.884242, - "y": 25.59852 - }, - "endPoint": { - "x": 336.880899, - "y": 25.589747 - } - } - }, - { - "id": "547e5864-c748-5e72-93f1-f88a047de72c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.880899, - "y": 25.589747 - }, - "endPoint": { - "x": 336.877516, - "y": 25.58115 - } - } - }, - { - "id": "2225f4cb-90a5-55c9-92bc-7d92a5f2427f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.877516, - "y": 25.58115 - }, - "endPoint": { - "x": 336.874132, - "y": 25.572781 - } - } - }, - { - "id": "e0585a52-98d3-543d-8105-385c4fe2f3ee", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.874132, - "y": 25.572781 - }, - "endPoint": { - "x": 336.87079, - "y": 25.56469 - } - } - }, - { - "id": "f6fa0950-8564-567c-84ef-8edb2ec67e56", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.87079, - "y": 25.56469 - }, - "endPoint": { - "x": 336.867522, - "y": 25.55692 - } - } - }, - { - "id": "5f53dc2d-f975-5ac9-b165-c46a3fae282a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.867522, - "y": 25.55692 - }, - "endPoint": { - "x": 336.864326, - "y": 25.549476 - } - } - }, - { - "id": "0a4f6d23-dc70-559a-ac0d-949a1879bce5", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.864326, - "y": 25.549476 - }, - "endPoint": { - "x": 336.861193, - "y": 25.542352 - } - } - }, - { - "id": "51b49885-95a0-57a6-b48e-75d4af32e9a7", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.861193, - "y": 25.542352 - }, - "endPoint": { - "x": 336.85811, - "y": 25.535543 - } - } - }, - { - "id": "6ec307ac-8fa2-5e41-8c14-d5d5d268296e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.85811, - "y": 25.535543 - }, - "endPoint": { - "x": 336.85507, - "y": 25.529044 - } - } - }, - { - "id": "040b3b24-f8eb-5ba1-8c3b-96710bd5c80c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.85507, - "y": 25.529044 - }, - "endPoint": { - "x": 336.85206, - "y": 25.52285 - } - } - }, - { - "id": "3f7a9576-3a59-5a70-ab77-a096ace5c8a9", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.85206, - "y": 25.52285 - }, - "endPoint": { - "x": 336.849071, - "y": 25.516955 - } - } - }, - { - "id": "b385b8ca-17f3-5c56-8066-f16e7341a305", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.849071, - "y": 25.516955 - }, - "endPoint": { - "x": 336.846092, - "y": 25.511355 - } - } - }, - { - "id": "6b243e60-d686-5622-89c8-7f71139c619e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.846092, - "y": 25.511355 - }, - "endPoint": { - "x": 336.843122, - "y": 25.506042 - } - } - }, - { - "id": "da3dc80d-8c84-59ec-94c8-387e9ff73152", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.843122, - "y": 25.506042 - }, - "endPoint": { - "x": 336.8402, - "y": 25.500997 - } - } - }, - { - "id": "5390d6d4-4961-5021-a3fc-f9940d8d0064", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.8402, - "y": 25.500997 - }, - "endPoint": { - "x": 336.83737, - "y": 25.4962 - } - } - }, - { - "id": "950f70a0-0a70-52a1-9052-3630be3932c9", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.83737, - "y": 25.4962 - }, - "endPoint": { - "x": 336.83468, - "y": 25.49163 - } - } - }, - { - "id": "d9106bff-b11c-53a6-9301-cf3fc5449609", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.83468, - "y": 25.49163 - }, - "endPoint": { - "x": 336.832175, - "y": 25.487267 - } - } - }, - { - "id": "6c98c8d4-357a-5bae-9f52-3155e476609a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.832175, - "y": 25.487267 - }, - "endPoint": { - "x": 336.829904, - "y": 25.48309 - } - } - }, - { - "id": "de4ee528-f344-5268-8f00-85db4d670ce3", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.829904, - "y": 25.48309 - }, - "endPoint": { - "x": 336.827911, - "y": 25.479078 - } - } - }, - { - "id": "94c75e81-e1fc-55ce-9534-1552aa323198", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.827911, - "y": 25.479078 - }, - "endPoint": { - "x": 336.826245, - "y": 25.475211 - } - } - }, - { - "id": "3dc9145c-3f44-50c3-a47f-3dda5d10ba3f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.826245, - "y": 25.475211 - }, - "endPoint": { - "x": 336.82494, - "y": 25.471468 - } - } - }, - { - "id": "e2e61909-a182-5de5-8b53-38a11462ffac", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.82494, - "y": 25.471468 - }, - "endPoint": { - "x": 336.823991, - "y": 25.467834 - } - } - }, - { - "id": "0b0283b8-114d-5e1a-a81e-77d6b50a1779", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.823991, - "y": 25.467834 - }, - "endPoint": { - "x": 336.823384, - "y": 25.464293 - } - } - }, - { - "id": "ba64d6f7-1c38-537a-9204-5dce7a06a52c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.823384, - "y": 25.464293 - }, - "endPoint": { - "x": 336.823102, - "y": 25.46083 - } - } - }, - { - "id": "f5453f48-3a7e-5112-954a-4f01d80e0b42", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.823102, - "y": 25.46083 - }, - "endPoint": { - "x": 336.823131, - "y": 25.457428 - } - } - }, - { - "id": "b36ffc23-43ac-5060-8002-e99501247a43", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.823131, - "y": 25.457428 - }, - "endPoint": { - "x": 336.823454, - "y": 25.454073 - } - } - }, - { - "id": "818766b0-d14c-5276-8bbd-fe2610f79220", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.823454, - "y": 25.454073 - }, - "endPoint": { - "x": 336.824056, - "y": 25.450749 - } - } - }, - { - "id": "620491c6-94ad-55d3-a890-76c81d988ed3", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.824056, - "y": 25.450749 - }, - "endPoint": { - "x": 336.824921, - "y": 25.447441 - } - } - }, - { - "id": "a59a0426-40be-53b8-950b-92b2d8527603", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.824921, - "y": 25.447441 - }, - "endPoint": { - "x": 336.826046, - "y": 25.444129 - } - } - }, - { - "id": "a53f9114-1856-53d3-9f3a-227610583952", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.826046, - "y": 25.444129 - }, - "endPoint": { - "x": 336.827471, - "y": 25.440781 - } - } - }, - { - "id": "720796f7-442d-5550-a181-6698a1082968", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.827471, - "y": 25.440781 - }, - "endPoint": { - "x": 336.829248, - "y": 25.437361 - } - } - }, - { - "id": "b9d9bc31-b6f7-56ee-a3fd-55ec2e326123", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.829248, - "y": 25.437361 - }, - "endPoint": { - "x": 336.831427, - "y": 25.433832 - } - } - }, - { - "id": "c102bc10-26bc-5109-855b-e4914891333b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.831427, - "y": 25.433832 - }, - "endPoint": { - "x": 336.834061, - "y": 25.430158 - } - } - }, - { - "id": "df447482-2f17-5370-ac66-af77f02ae007", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.834061, - "y": 25.430158 - }, - "endPoint": { - "x": 336.837202, - "y": 25.426304 - } - } - }, - { - "id": "dde1d7d3-4a5c-5b7e-9b92-6729d756fb65", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.837202, - "y": 25.426304 - }, - "endPoint": { - "x": 336.840901, - "y": 25.422233 - } - } - }, - { - "id": "7a3be996-c4a2-5c4a-a9e4-90d095906d10", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.840901, - "y": 25.422233 - }, - "endPoint": { - "x": 336.84521, - "y": 25.417908 - } - } - }, - { - "id": "ab8f0739-663f-549f-a6e7-19b757208686", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.84521, - "y": 25.417908 - }, - "endPoint": { - "x": 336.850167, - "y": 25.413309 - } - } - }, - { - "id": "0ad04d42-1ac1-54e3-890a-b025dddc0cf2", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.850167, - "y": 25.413309 - }, - "endPoint": { - "x": 336.855754, - "y": 25.408473 - } - } - }, - { - "id": "e3ac7999-f4a7-509e-bf13-8e634d9c6af7", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.855754, - "y": 25.408473 - }, - "endPoint": { - "x": 336.861941, - "y": 25.40345 - } - } - }, - { - "id": "76ef1260-73c1-5dac-a341-dfb33c59e614", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.861941, - "y": 25.40345 - }, - "endPoint": { - "x": 336.868696, - "y": 25.398294 - } - } - }, - { - "id": "e1dd8568-38a2-57bd-8283-ec82b4c75770", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.868696, - "y": 25.398294 - }, - "endPoint": { - "x": 336.875989, - "y": 25.393054 - } - } - }, - { - "id": "fd2b98f0-7543-56aa-8253-77821b5347c7", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.875989, - "y": 25.393054 - }, - "endPoint": { - "x": 336.883789, - "y": 25.387784 - } - } - }, - { - "id": "6797f47f-62ac-5d4a-b087-bf801c5f8db2", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.883789, - "y": 25.387784 - }, - "endPoint": { - "x": 336.892063, - "y": 25.382534 - } - } - }, - { - "id": "6c678e6b-6935-5ea2-89cf-93bae2c48f33", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.892063, - "y": 25.382534 - }, - "endPoint": { - "x": 336.900782, - "y": 25.377356 - } - } - }, - { - "id": "b3632a72-834c-5462-bb34-a4939d72062e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.900782, - "y": 25.377356 - }, - "endPoint": { - "x": 336.909927, - "y": 25.372285 - } - } - }, - { - "id": "d90e8f59-fff9-55a7-ac96-99b48da51e9f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.909927, - "y": 25.372285 - }, - "endPoint": { - "x": 336.919526, - "y": 25.367286 - } - } - }, - { - "id": "4cb1e9ad-3565-5c62-b82d-64de50af8930", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.919526, - "y": 25.367286 - }, - "endPoint": { - "x": 336.929621, - "y": 25.362308 - } - } - }, - { - "id": "2a49bfaa-35a7-5340-aef8-910e1865c306", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.929621, - "y": 25.362308 - }, - "endPoint": { - "x": 336.940254, - "y": 25.357299 - } - } - }, - { - "id": "8e04a219-bc23-5e56-b148-940b6041b34b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.940254, - "y": 25.357299 - }, - "endPoint": { - "x": 336.951465, - "y": 25.352208 - } - } - }, - { - "id": "7354b1f8-1747-5579-8653-12d8929a1103", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.951465, - "y": 25.352208 - }, - "endPoint": { - "x": 336.963297, - "y": 25.346982 - } - } - }, - { - "id": "ee2a788d-a3f6-55f5-afff-6b74388386d8", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.963297, - "y": 25.346982 - }, - "endPoint": { - "x": 336.97579, - "y": 25.34157 - } - } - }, - { - "id": "840c12d2-160b-5116-a25c-1347ba8d9c45", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.97579, - "y": 25.34157 - }, - "endPoint": { - "x": 336.988987, - "y": 25.335921 - } - } - }, - { - "id": "10367f92-efaf-5446-a527-03949130aaef", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.988987, - "y": 25.335921 - }, - "endPoint": { - "x": 337.002923, - "y": 25.329989 - } - } - }, - { - "id": "d3119a38-1bd5-5fef-8e69-74c2670d4bc3", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.002923, - "y": 25.329989 - }, - "endPoint": { - "x": 337.017621, - "y": 25.323762 - } - } - }, - { - "id": "dc317513-bb7e-5e83-a05c-ad67610ff06a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.017621, - "y": 25.323762 - }, - "endPoint": { - "x": 337.033098, - "y": 25.317229 - } - } - }, - { - "id": "eddf0b01-448a-5189-96ca-052d4e0f41bf", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.033098, - "y": 25.317229 - }, - "endPoint": { - "x": 337.04937, - "y": 25.310386 - } - } - }, - { - "id": "84f30113-31f8-5072-8a4e-b9f856e56516", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.04937, - "y": 25.310386 - }, - "endPoint": { - "x": 337.066455, - "y": 25.303223 - } - } - }, - { - "id": "444c85c4-f9fb-5a27-bcff-1d93494e861e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.066455, - "y": 25.303223 - }, - "endPoint": { - "x": 337.084369, - "y": 25.295734 - } - } - }, - { - "id": "81714363-ac1e-5410-853a-65b13dda1a34", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.084369, - "y": 25.295734 - }, - "endPoint": { - "x": 337.103129, - "y": 25.28791 - } - } - }, - { - "id": "6cd90270-4d96-5e82-bfb2-6f6732beba42", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.103129, - "y": 25.28791 - }, - "endPoint": { - "x": 337.122754, - "y": 25.279746 - } - } - }, - { - "id": "725eba92-b423-5d69-b34f-d0f0e6acc3c8", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.122754, - "y": 25.279746 - }, - "endPoint": { - "x": 337.143207, - "y": 25.271251 - } - } - }, - { - "id": "a3f7f44f-a73a-5727-87f6-1f835fe9d738", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.143207, - "y": 25.271251 - }, - "endPoint": { - "x": 337.164249, - "y": 25.262516 - } - } - }, - { - "id": "3f3aa3a1-3f63-5588-9056-8e17ce5d4894", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.164249, - "y": 25.262516 - }, - "endPoint": { - "x": 337.185587, - "y": 25.253647 - } - } - }, - { - "id": "53c5d2dc-0e93-50a1-8786-aaf1bce0f3ff", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.185587, - "y": 25.253647 - }, - "endPoint": { - "x": 337.206927, - "y": 25.244753 - } - } - }, - { - "id": "508a2b84-b72c-5167-9a30-921bfb51e38b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.206927, - "y": 25.244753 - }, - "endPoint": { - "x": 337.227978, - "y": 25.235942 - } - } - }, - { - "id": "4d33e9a3-8ebc-58ee-b3df-ac2a59854348", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.227978, - "y": 25.235942 - }, - "endPoint": { - "x": 337.248447, - "y": 25.227322 - } - } - }, - { - "id": "510b0119-f617-5083-8204-aaac129388ad", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.248447, - "y": 25.227322 - }, - "endPoint": { - "x": 337.268041, - "y": 25.218999 - } - } - }, - { - "id": "f288fe22-4808-58bb-90e7-2fd4db52d22a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.268041, - "y": 25.218999 - }, - "endPoint": { - "x": 337.286468, - "y": 25.211083 - } - } - }, - { - "id": "7da255c6-74a0-5068-9c6d-b4497a071200", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.286468, - "y": 25.211083 - }, - "endPoint": { - "x": 337.303512, - "y": 25.203654 - } - } - }, - { - "id": "b115d7ae-a057-54e7-8bfb-8fa64c3845b9", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.303512, - "y": 25.203654 - }, - "endPoint": { - "x": 337.319257, - "y": 25.196679 - } - } - }, - { - "id": "ca26bddb-2fed-577d-bfb6-0b3becb1b173", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.319257, - "y": 25.196679 - }, - "endPoint": { - "x": 337.333867, - "y": 25.190101 - } - } - }, - { - "id": "ed792f43-78b4-564c-8483-8071f2b1774b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.333867, - "y": 25.190101 - }, - "endPoint": { - "x": 337.347502, - "y": 25.183859 - } - } - }, - { - "id": "f9791f3e-6cc9-520b-958f-6d648bea679b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.347502, - "y": 25.183859 - }, - "endPoint": { - "x": 337.360324, - "y": 25.177895 - } - } - }, - { - "id": "582ffdc1-6d12-5678-9d94-a6755c7b6b5c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.360324, - "y": 25.177895 - }, - "endPoint": { - "x": 337.372496, - "y": 25.17215 - } - } - }, - { - "id": "0a311cd6-aba0-5f88-a43d-8a8a1c263795", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.372496, - "y": 25.17215 - }, - "endPoint": { - "x": 337.384179, - "y": 25.166565 - } - } - }, - { - "id": "9cb03421-ada5-50b7-9c09-6801167490fb", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.384179, - "y": 25.166565 - }, - "endPoint": { - "x": 337.395535, - "y": 25.161079 - } - } - }, - { - "id": "3f993cb4-c95e-594e-8f78-33590e7a8fab", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.395535, - "y": 25.161079 - }, - "endPoint": { - "x": 337.4067, - "y": 25.155643 - } - } - }, - { - "id": "089a5c39-2357-503f-a50c-ec075164616b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.4067, - "y": 25.155643 - }, - "endPoint": { - "x": 337.417711, - "y": 25.150232 - } - } - }, - { - "id": "fda8ce7d-56db-5089-bf10-a70f407cf8e6", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.417711, - "y": 25.150232 - }, - "endPoint": { - "x": 337.428576, - "y": 25.144831 - } - } - }, - { - "id": "4f7dc7bb-d65b-558b-94c5-8e18dc014ed1", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.428576, - "y": 25.144831 - }, - "endPoint": { - "x": 337.439308, - "y": 25.139426 - } - } - }, - { - "id": "f8705e1e-3929-586b-a198-0fdfbedc5a6b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.439308, - "y": 25.139426 - }, - "endPoint": { - "x": 337.449915, - "y": 25.133999 - } - } - }, - { - "id": "8657d9dc-8869-596a-92d2-6a126eaff978", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.449915, - "y": 25.133999 - }, - "endPoint": { - "x": 337.460409, - "y": 25.128537 - } - } - }, - { - "id": "49721dcc-3311-5a3a-b140-c5ecf84be092", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.460409, - "y": 25.128537 - }, - "endPoint": { - "x": 337.470799, - "y": 25.123022 - } - } - }, - { - "id": "3b9468a4-59e5-52ce-acef-c05e00b55b31", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.470799, - "y": 25.123022 - }, - "endPoint": { - "x": 337.481096, - "y": 25.117441 - } - } - }, - { - "id": "05da7b8a-36ba-56db-9b4a-7feab4dda93a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.481096, - "y": 25.117441 - }, - "endPoint": { - "x": 337.491308, - "y": 25.111782 - } - } - }, - { - "id": "71994c9c-a08d-570e-b846-f5a18e2d787d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.491308, - "y": 25.111782 - }, - "endPoint": { - "x": 337.501426, - "y": 25.106056 - } - } - }, - { - "id": "fd7035a2-b408-5bbe-a418-504346f66014", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.501426, - "y": 25.106056 - }, - "endPoint": { - "x": 337.511441, - "y": 25.100278 - } - } - }, - { - "id": "adc52a44-ed0e-5f57-8689-511b050f8a80", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.511441, - "y": 25.100278 - }, - "endPoint": { - "x": 337.521342, - "y": 25.094464 - } - } - }, - { - "id": "39ffb0c4-15cf-5872-b54d-564d980617dd", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.521342, - "y": 25.094464 - }, - "endPoint": { - "x": 337.531119, - "y": 25.08863 - } - } - }, - { - "id": "a3327046-ec7e-57b0-8486-7d3ec12d1b82", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.531119, - "y": 25.08863 - }, - "endPoint": { - "x": 337.540762, - "y": 25.08279 - } - } - }, - { - "id": "b32d291d-e872-5ff9-abaa-3a8c97dd4b66", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.540762, - "y": 25.08279 - }, - "endPoint": { - "x": 337.55026, - "y": 25.076961 - } - } - }, - { - "id": "b48e8e85-f525-577f-b148-3b814728bf46", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.55026, - "y": 25.076961 - }, - "endPoint": { - "x": 337.559603, - "y": 25.071157 - } - } - }, - { - "id": "7115a47b-2abd-5d33-8c79-5af58beeb62c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.559603, - "y": 25.071157 - }, - "endPoint": { - "x": 337.568781, - "y": 25.065394 - } - } - }, - { - "id": "451965d4-742a-5a81-8743-5d554e9d483b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.568781, - "y": 25.065394 - }, - "endPoint": { - "x": 337.577789, - "y": 25.059683 - } - } - }, - { - "id": "fa24a5ce-ea1f-575b-a585-775a4860624f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.577789, - "y": 25.059683 - }, - "endPoint": { - "x": 337.586621, - "y": 25.054033 - } - } - }, - { - "id": "9ce3c5ad-744f-59b8-87d7-1ba964fa017e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.586621, - "y": 25.054033 - }, - "endPoint": { - "x": 337.595272, - "y": 25.048456 - } - } - }, - { - "id": "250d8df3-0a54-519c-9a87-ed88bc66d115", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.595272, - "y": 25.048456 - }, - "endPoint": { - "x": 337.603737, - "y": 25.042962 - } - } - }, - { - "id": "a0889288-33e4-521e-93fe-361465c17794", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.603737, - "y": 25.042962 - }, - "endPoint": { - "x": 337.61201, - "y": 25.037561 - } - } - }, - { - "id": "18d617c6-59cc-5022-bcf0-1f6b0b3fcd0d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.61201, - "y": 25.037561 - }, - "endPoint": { - "x": 337.620087, - "y": 25.032263 - } - } - }, - { - "id": "a8a0127e-6861-5c48-ac49-c2a5614faf88", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.620087, - "y": 25.032263 - }, - "endPoint": { - "x": 337.627963, - "y": 25.027079 - } - } - }, - { - "id": "4b6644ab-efcb-513d-87c6-dbb63da49ca0", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.627963, - "y": 25.027079 - }, - "endPoint": { - "x": 337.63563, - "y": 25.022013 - } - } - }, - { - "id": "3ff5e276-9f2c-54e5-947d-45fdc0cf5bc0", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.63563, - "y": 25.022013 - }, - "endPoint": { - "x": 337.643075, - "y": 25.017051 - } - } - }, - { - "id": "96a9fd29-5d43-571d-9e87-29ce3c4673f2", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.643075, - "y": 25.017051 - }, - "endPoint": { - "x": 337.650281, - "y": 25.012171 - } - } - }, - { - "id": "ab551251-8f41-56d9-91c4-d52775ddc67b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.650281, - "y": 25.012171 - }, - "endPoint": { - "x": 337.657235, - "y": 25.007354 - } - } - }, - { - "id": "ffd677a8-5322-59b6-b310-904b36afdc72", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.657235, - "y": 25.007354 - }, - "endPoint": { - "x": 337.66392, - "y": 25.002577 - } - } - }, - { - "id": "399cd92d-787b-5c4a-b0e5-edc9f884b5d5", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.66392, - "y": 25.002577 - }, - "endPoint": { - "x": 337.670321, - "y": 24.997822 - } - } - }, - { - "id": "3b7428e7-48e4-5245-a1a8-a100b8a3f840", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.670321, - "y": 24.997822 - }, - "endPoint": { - "x": 337.676422, - "y": 24.993066 - } - } - }, - { - "id": "c026ede0-aa7d-5e86-8009-18756280f989", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.676422, - "y": 24.993066 - }, - "endPoint": { - "x": 337.682208, - "y": 24.98829 - } - } - }, - { - "id": "fc2145d2-ae28-5d73-9572-9bb13ecc0b0b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.682208, - "y": 24.98829 - }, - "endPoint": { - "x": 337.687678, - "y": 24.98347 - } - } - }, - { - "id": "9e377509-9534-59e6-988f-68474a7006e3", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.687678, - "y": 24.98347 - }, - "endPoint": { - "x": 337.692889, - "y": 24.978578 - } - } - }, - { - "id": "530e3568-50ad-5769-a090-09f2b316fbf6", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.692889, - "y": 24.978578 - }, - "endPoint": { - "x": 337.697915, - "y": 24.973583 - } - } - }, - { - "id": "3207680f-7387-5802-aa42-53bfdbbac9f9", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.697915, - "y": 24.973583 - }, - "endPoint": { - "x": 337.702827, - "y": 24.968454 - } - } - }, - { - "id": "d1ad43a9-f7e4-588d-abc5-802067233008", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.702827, - "y": 24.968454 - }, - "endPoint": { - "x": 337.707697, - "y": 24.963159 - } - } - }, - { - "id": "3fb169a6-2435-5a34-9b87-60847fefb5c2", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.707697, - "y": 24.963159 - }, - "endPoint": { - "x": 337.712599, - "y": 24.957668 - } - } - }, - { - "id": "bb20f1ab-6b2c-5cd7-84ad-171549e29849", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.712599, - "y": 24.957668 - }, - "endPoint": { - "x": 337.717603, - "y": 24.95195 - } - } - }, - { - "id": "1459ec48-0b3f-59ee-b6d3-bc7e8723d32e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.717603, - "y": 24.95195 - }, - "endPoint": { - "x": 337.722784, - "y": 24.945974 - } - } - }, - { - "id": "07f7296b-612c-5d76-84e1-0154ac2add3e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.722784, - "y": 24.945974 - }, - "endPoint": { - "x": 337.728185, - "y": 24.939717 - } - } - }, - { - "id": "0c064908-9f50-51dc-bfc9-13f1f16c5811", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.728185, - "y": 24.939717 - }, - "endPoint": { - "x": 337.733741, - "y": 24.933198 - } - } - }, - { - "id": "9046ec51-350a-57d7-a6e4-155bd6f56d40", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.733741, - "y": 24.933198 - }, - "endPoint": { - "x": 337.739359, - "y": 24.926441 - } - } - }, - { - "id": "9f1621a6-0574-5b9e-80f5-2e893b82fa34", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.739359, - "y": 24.926441 - }, - "endPoint": { - "x": 337.744946, - "y": 24.919472 - } - } - }, - { - "id": "a456e594-0fd7-5126-86fd-fe8168762d09", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.744946, - "y": 24.919472 - }, - "endPoint": { - "x": 337.750409, - "y": 24.912317 - } - } - }, - { - "id": "4c8e2fd7-197b-5531-a536-fa5895ef7e4b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.750409, - "y": 24.912317 - }, - "endPoint": { - "x": 337.755654, - "y": 24.905002 - } - } - }, - { - "id": "8946abca-2820-592d-9a24-520b7c8b00b8", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.755654, - "y": 24.905002 - }, - "endPoint": { - "x": 337.76059, - "y": 24.897552 - } - } - }, - { - "id": "5cda19bb-696d-5649-9022-0e54e9709486", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.76059, - "y": 24.897552 - }, - "endPoint": { - "x": 337.765123, - "y": 24.889994 - } - } - }, - { - "id": "d84454b2-26ed-56a0-bacd-18f98cc64b45", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.765123, - "y": 24.889994 - }, - "endPoint": { - "x": 337.769183, - "y": 24.882349 - } - } - }, - { - "id": "efdf091c-64a4-5086-8ee9-80c8854c3008", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.769183, - "y": 24.882349 - }, - "endPoint": { - "x": 337.7728, - "y": 24.874622 - } - } - }, - { - "id": "0fe08a84-edbd-5e74-b74f-de641bcaa674", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.7728, - "y": 24.874622 - }, - "endPoint": { - "x": 337.776023, - "y": 24.866812 - } - } - }, - { - "id": "ec3e813b-01a6-541f-ae11-33a2596fc253", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.776023, - "y": 24.866812 - }, - "endPoint": { - "x": 337.778906, - "y": 24.858918 - } - } - }, - { - "id": "67298841-f8e8-5e23-8d26-56511374689d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.778906, - "y": 24.858918 - }, - "endPoint": { - "x": 337.781499, - "y": 24.850943 - } - } - }, - { - "id": "466248c4-2a5a-59a3-8796-c66778d30a4f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.781499, - "y": 24.850943 - }, - "endPoint": { - "x": 337.783854, - "y": 24.842884 - } - } - }, - { - "id": "7f480d68-6e98-576a-9119-41a7cbbdfbfe", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.783854, - "y": 24.842884 - }, - "endPoint": { - "x": 337.786023, - "y": 24.834743 - } - } - }, - { - "id": "8b0cfdea-b81c-5b7f-a4e1-1d48cebf3197", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.786023, - "y": 24.834743 - }, - "endPoint": { - "x": 337.788058, - "y": 24.82652 - } - } - }, - { - "id": "85d7d542-9746-564b-83c3-2e583f7d553c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.788058, - "y": 24.82652 - }, - "endPoint": { - "x": 337.789998, - "y": 24.818207 - } - } - }, - { - "id": "7eb56603-f9b5-534b-b5a5-431d80dfb167", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.789998, - "y": 24.818207 - }, - "endPoint": { - "x": 337.791841, - "y": 24.80977 - } - } - }, - { - "id": "7c406bcc-e919-55ff-a9f2-6d6d77d50c1c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.791841, - "y": 24.80977 - }, - "endPoint": { - "x": 337.79357, - "y": 24.801167 - } - } - }, - { - "id": "ff5fe719-1c9b-5c51-9ece-2c0e9c774ca0", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.79357, - "y": 24.801167 - }, - "endPoint": { - "x": 337.795169, - "y": 24.792358 - } - } - }, - { - "id": "afdad7f6-3a01-5645-9db5-253439b6c25c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.795169, - "y": 24.792358 - }, - "endPoint": { - "x": 337.796624, - "y": 24.783302 - } - } - }, - { - "id": "6504f1b7-f40b-5b98-94e8-dd98594f8cad", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.796624, - "y": 24.783302 - }, - "endPoint": { - "x": 337.797919, - "y": 24.773955 - } - } - }, - { - "id": "a9c044d7-5852-5d74-976f-55ee78f65d63", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.797919, - "y": 24.773955 - }, - "endPoint": { - "x": 337.799037, - "y": 24.764279 - } - } - }, - { - "id": "8390a6e1-7582-5da8-a701-0b2c3abcf931", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.799037, - "y": 24.764279 - }, - "endPoint": { - "x": 337.799965, - "y": 24.75423 - } - } - }, - { - "id": "7afa435b-9db4-50ed-a5f9-cdca8a43c8c9", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.799965, - "y": 24.75423 - }, - "endPoint": { - "x": 337.80069, - "y": 24.743797 - } - } - }, - { - "id": "eacdd01c-5994-5aa9-b3ab-8ceab945c312", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.80069, - "y": 24.743797 - }, - "endPoint": { - "x": 337.801219, - "y": 24.733079 - } - } - }, - { - "id": "189eba14-1d3c-5c9d-82d3-94fd70238e78", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.801219, - "y": 24.733079 - }, - "endPoint": { - "x": 337.801562, - "y": 24.722207 - } - } - }, - { - "id": "01a9ec2e-1e2d-537b-83f7-a08bcdec0a55", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.801562, - "y": 24.722207 - }, - "endPoint": { - "x": 337.801729, - "y": 24.711308 - } - } - }, - { - "id": "77d0c20f-ad02-5b7b-a076-68d37b207287", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.801729, - "y": 24.711308 - }, - "endPoint": { - "x": 337.801731, - "y": 24.700513 - } - } - }, - { - "id": "39fa27c3-0d7f-560e-9873-fe93fc45b91c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.801731, - "y": 24.700513 - }, - "endPoint": { - "x": 337.801577, - "y": 24.689951 - } - } - }, - { - "id": "c42d95c4-092e-5682-b973-9dec30b0868d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.801577, - "y": 24.689951 - }, - "endPoint": { - "x": 337.801279, - "y": 24.67975 - } - } - }, - { - "id": "31f0184a-0d55-52be-9b9e-c66780f0943f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.801279, - "y": 24.67975 - }, - "endPoint": { - "x": 337.800847, - "y": 24.67004 - } - } - }, - { - "id": "9e59e694-25d1-5497-9e97-e8efc65ff6a5", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.800847, - "y": 24.67004 - }, - "endPoint": { - "x": 337.800283, - "y": 24.660922 - } - } - }, - { - "id": "fb768d4c-3f8a-5976-932f-449345e9f5dc", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.800283, - "y": 24.660922 - }, - "endPoint": { - "x": 337.799565, - "y": 24.652388 - } - } - }, - { - "id": "cff0897e-0a1b-587b-9e6a-2756561bce88", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.799565, - "y": 24.652388 - }, - "endPoint": { - "x": 337.79866, - "y": 24.644401 - } - } - }, - { - "id": "a0c602b0-c48f-5f87-823c-3cb745a955a4", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.79866, - "y": 24.644401 - }, - "endPoint": { - "x": 337.797539, - "y": 24.636926 - } - } - }, - { - "id": "d178e3bd-3b35-5c71-bf6a-cb1e30b3e7b0", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.797539, - "y": 24.636926 - }, - "endPoint": { - "x": 337.796169, - "y": 24.629926 - } - } - }, - { - "id": "30cae83a-1906-5e05-9437-1658cc68a811", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.796169, - "y": 24.629926 - }, - "endPoint": { - "x": 337.79452, - "y": 24.623365 - } - } - }, - { - "id": "7c0da194-7192-5c66-a5bb-c57f7a44d9df", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.79452, - "y": 24.623365 - }, - "endPoint": { - "x": 337.792562, - "y": 24.617207 - } - } - }, - { - "id": "0e10a1b1-96e9-5c98-8cca-a167ae7913d7", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.792562, - "y": 24.617207 - }, - "endPoint": { - "x": 337.790262, - "y": 24.611416 - } - } - }, - { - "id": "0a96a53f-36e8-5065-8f46-b96d6d38b27e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.790262, - "y": 24.611416 - }, - "endPoint": { - "x": 337.787595, - "y": 24.605952 - } - } - }, - { - "id": "c4be0a5c-7669-52c7-92a9-f76d8eb65662", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.787595, - "y": 24.605952 - }, - "endPoint": { - "x": 337.784555, - "y": 24.600761 - } - } - }, - { - "id": "c1a65ac2-9ede-5fa7-a4b2-f6e8735cd365", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.784555, - "y": 24.600761 - }, - "endPoint": { - "x": 337.781144, - "y": 24.595788 - } - } - }, - { - "id": "30b99145-a7c6-597e-8ef9-abba9eb10b70", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.781144, - "y": 24.595788 - }, - "endPoint": { - "x": 337.777361, - "y": 24.590974 - } - } - }, - { - "id": "59249240-047c-57f2-9697-c840acf9c758", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.777361, - "y": 24.590974 - }, - "endPoint": { - "x": 337.773205, - "y": 24.586264 - } - } - }, - { - "id": "28b72e96-61c0-506d-88ee-4bb9f314c0c8", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.773205, - "y": 24.586264 - }, - "endPoint": { - "x": 337.768678, - "y": 24.581601 - } - } - }, - { - "id": "4bbb79d0-58b2-5efb-a540-40c0879a2b17", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.768678, - "y": 24.581601 - }, - "endPoint": { - "x": 337.763778, - "y": 24.576927 - } - } - }, - { - "id": "de493ed3-5df4-5817-927d-ac4f9c2b8804", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.763778, - "y": 24.576927 - }, - "endPoint": { - "x": 337.758506, - "y": 24.572186 - } - } - }, - { - "id": "937dcc33-4734-5da5-8e43-8e3b1c166aab", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.758506, - "y": 24.572186 - }, - "endPoint": { - "x": 337.752868, - "y": 24.567346 - } - } - }, - { - "id": "d6e9dbe6-46cd-5cb5-bca1-30f78d1bb071", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.752868, - "y": 24.567346 - }, - "endPoint": { - "x": 337.746894, - "y": 24.562475 - } - } - }, - { - "id": "4ee9b985-321d-52e0-aa52-cf40e81371ac", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.746894, - "y": 24.562475 - }, - "endPoint": { - "x": 337.74062, - "y": 24.557665 - } - } - }, - { - "id": "10e1475f-936a-58c3-99c8-2d323d27cb6e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.74062, - "y": 24.557665 - }, - "endPoint": { - "x": 337.734083, - "y": 24.553011 - } - } - }, - { - "id": "635cdeaa-ccfb-5f75-8abd-cf44fe7f7f51", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.734083, - "y": 24.553011 - }, - "endPoint": { - "x": 337.727318, - "y": 24.548605 - } - } - }, - { - "id": "b4263fe3-2a96-55c6-ad21-d5d4eb7e4ad7", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.727318, - "y": 24.548605 - }, - "endPoint": { - "x": 337.720363, - "y": 24.54454 - } - } - }, - { - "id": "45ee2857-886d-5bb7-ba1d-a956f360ed88", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.720363, - "y": 24.54454 - }, - "endPoint": { - "x": 337.713252, - "y": 24.540909 - } - } - }, - { - "id": "2b2f38ff-7309-5a21-a001-88c70441a780", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.713252, - "y": 24.540909 - }, - "endPoint": { - "x": 337.706022, - "y": 24.537804 - } - } - }, - { - "id": "a4ff5cc9-704f-558f-8248-c4b1a5b32c0c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.706022, - "y": 24.537804 - }, - "endPoint": { - "x": 337.698703, - "y": 24.535292 - } - } - }, - { - "id": "39b08ae3-2576-51e4-9206-e602cca17a44", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.698703, - "y": 24.535292 - }, - "endPoint": { - "x": 337.69129, - "y": 24.533327 - } - } - }, - { - "id": "231942fa-6ee5-5107-ad1a-ddbd1485edc9", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.69129, - "y": 24.533327 - }, - "endPoint": { - "x": 337.683774, - "y": 24.531838 - } - } - }, - { - "id": "96c44ab3-f739-5c89-847d-b014ab1801a7", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.683774, - "y": 24.531838 - }, - "endPoint": { - "x": 337.676144, - "y": 24.530752 - } - } - }, - { - "id": "b833e535-e11e-552d-8ae0-88fffb88a523", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.676144, - "y": 24.530752 - }, - "endPoint": { - "x": 337.66839, - "y": 24.529996 - } - } - }, - { - "id": "e31d62b8-2b81-54e9-b0f6-58b8ea7f5c87", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.66839, - "y": 24.529996 - }, - "endPoint": { - "x": 337.660502, - "y": 24.529498 - } - } - }, - { - "id": "eb86448d-2fd8-57e6-bd14-d46761332105", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.660502, - "y": 24.529498 - }, - "endPoint": { - "x": 337.652469, - "y": 24.529187 - } - } - }, - { - "id": "b7c0597d-57c9-5449-bb14-eedd49076000", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.652469, - "y": 24.529187 - }, - "endPoint": { - "x": 337.644281, - "y": 24.528989 - } - } - }, - { - "id": "b689b9e7-5182-5691-b860-838820fc2626", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.644281, - "y": 24.528989 - }, - "endPoint": { - "x": 337.635935, - "y": 24.528851 - } - } - }, - { - "id": "f791fa37-c1d3-530d-b1f1-7b8e6e30ccbb", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.635935, - "y": 24.528851 - }, - "endPoint": { - "x": 337.62746, - "y": 24.528796 - } - } - }, - { - "id": "c13a1863-e6eb-5514-b9e0-6ed587f8b3af", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.62746, - "y": 24.528796 - }, - "endPoint": { - "x": 337.618891, - "y": 24.528865 - } - } - }, - { - "id": "7305393d-8a42-54a9-9960-0f8d44c8821f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.618891, - "y": 24.528865 - }, - "endPoint": { - "x": 337.610266, - "y": 24.529099 - } - } - }, - { - "id": "b67c57f8-ab56-5140-8790-261d861d290b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.610266, - "y": 24.529099 - }, - "endPoint": { - "x": 337.60162, - "y": 24.52954 - } - } - }, - { - "id": "e518041b-f374-55cd-915c-6378bb6f2d81", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.60162, - "y": 24.52954 - }, - "endPoint": { - "x": 337.59299, - "y": 24.530229 - } - } - }, - { - "id": "f2a1e91c-e27d-5984-a21c-c7726d497a15", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.59299, - "y": 24.530229 - }, - "endPoint": { - "x": 337.584411, - "y": 24.531207 - } - } - }, - { - "id": "ad8a5e68-1617-57ad-bfc1-ac36b5b8bb8f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.584411, - "y": 24.531207 - }, - "endPoint": { - "x": 337.57592, - "y": 24.532516 - } - } - }, - { - "id": "4d72c9d8-1bd4-59d6-b49d-da90ad23a471", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.57592, - "y": 24.532516 - }, - "endPoint": { - "x": 337.567547, - "y": 24.534186 - } - } - }, - { - "id": "b94ddd38-82e8-55a9-a507-361f1c30370a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.567547, - "y": 24.534186 - }, - "endPoint": { - "x": 337.559298, - "y": 24.536207 - } - } - }, - { - "id": "b1a8903a-dc63-59f2-9d5b-6c87f3e82a80", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.559298, - "y": 24.536207 - }, - "endPoint": { - "x": 337.551173, - "y": 24.538559 - } - } - }, - { - "id": "666c9d4b-79e8-5042-a962-720178942743", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.551173, - "y": 24.538559 - }, - "endPoint": { - "x": 337.543172, - "y": 24.541221 - } - } - }, - { - "id": "91e5e574-1f3f-50b0-9661-56cf39fb735b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.543172, - "y": 24.541221 - }, - "endPoint": { - "x": 337.535295, - "y": 24.544173 - } - } - }, - { - "id": "cc9976e4-e947-5529-afac-dc819064f283", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.535295, - "y": 24.544173 - }, - "endPoint": { - "x": 337.527542, - "y": 24.547392 - } - } - }, - { - "id": "65e67da2-fd1f-5c38-a8d7-c1aeff97ccea", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.527542, - "y": 24.547392 - }, - "endPoint": { - "x": 337.519914, - "y": 24.55086 - } - } - }, - { - "id": "9907a501-4aff-5b3a-9b32-c8de12081e25", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.519914, - "y": 24.55086 - }, - "endPoint": { - "x": 337.512409, - "y": 24.554555 - } - } - }, - { - "id": "58dd5d44-e68c-5a35-b1d3-5f15ac1ff5d6", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.512409, - "y": 24.554555 - }, - "endPoint": { - "x": 337.505008, - "y": 24.558476 - } - } - }, - { - "id": "ff82d65a-bc36-508d-9042-5ff335f74734", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.505008, - "y": 24.558476 - }, - "endPoint": { - "x": 337.497601, - "y": 24.562696 - } - } - }, - { - "id": "4b4c1ce3-6030-5877-bd13-032a963239e8", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.497601, - "y": 24.562696 - }, - "endPoint": { - "x": 337.49006, - "y": 24.567309 - } - } - }, - { - "id": "a2be7ea9-123d-52c8-bed4-2712f90ba19f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.49006, - "y": 24.567309 - }, - "endPoint": { - "x": 337.482255, - "y": 24.572407 - } - } - }, - { - "id": "e0b360d8-db3d-5536-bb88-be87307ee713", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.482255, - "y": 24.572407 - }, - "endPoint": { - "x": 337.474057, - "y": 24.578084 - } - } - }, - { - "id": "3f3af659-1647-5951-8a39-58273a8f2b7e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.474057, - "y": 24.578084 - }, - "endPoint": { - "x": 337.465338, - "y": 24.584432 - } - } - }, - { - "id": "45a389bc-c433-51d5-bc17-a3b9c3163465", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.465338, - "y": 24.584432 - }, - "endPoint": { - "x": 337.455967, - "y": 24.591545 - } - } - }, - { - "id": "3b5fdd29-c1ce-55e5-b71d-5d1af8125467", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.455967, - "y": 24.591545 - }, - "endPoint": { - "x": 337.445816, - "y": 24.599515 - } - } - }, - { - "id": "50a31d01-5280-554f-a508-cf077c3e05dc", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.445816, - "y": 24.599515 - }, - "endPoint": { - "x": 337.434793, - "y": 24.608399 - } - } - }, - { - "id": "286861a2-7ad6-5451-b466-60b2d891a483", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.434793, - "y": 24.608399 - }, - "endPoint": { - "x": 337.422958, - "y": 24.618104 - } - } - }, - { - "id": "5a3d4a20-f04f-50a8-8b62-3b2a715bf749", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.422958, - "y": 24.618104 - }, - "endPoint": { - "x": 337.41041, - "y": 24.628501 - } - } - }, - { - "id": "57252e12-6217-588e-bad3-3f74d5df59f2", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.41041, - "y": 24.628501 - }, - "endPoint": { - "x": 337.397248, - "y": 24.639461 - } - } - }, - { - "id": "add12f89-75a7-5518-bff5-92a7b510b561", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.397248, - "y": 24.639461 - }, - "endPoint": { - "x": 337.383568, - "y": 24.650855 - } - } - }, - { - "id": "e60c4df0-d0c7-5e00-a2eb-0368d2818dcd", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.383568, - "y": 24.650855 - }, - "endPoint": { - "x": 337.369469, - "y": 24.662554 - } - } - }, - { - "id": "76e63d64-6771-5818-b735-0651d3ac0818", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.369469, - "y": 24.662554 - }, - "endPoint": { - "x": 337.355051, - "y": 24.674429 - } - } - }, - { - "id": "8c68b223-6c9c-5f16-ba27-3a77287637ae", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.355051, - "y": 24.674429 - }, - "endPoint": { - "x": 337.340409, - "y": 24.68635 - } - } - }, - { - "id": "e7892146-c315-5d70-8f67-aaf18d7cbba6", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.340409, - "y": 24.68635 - }, - "endPoint": { - "x": 337.325635, - "y": 24.698206 - } - } - }, - { - "id": "9abec815-2127-56f7-9383-c5a2b1693e3a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.325635, - "y": 24.698206 - }, - "endPoint": { - "x": 337.310777, - "y": 24.70996 - } - } - }, - { - "id": "59998b22-9df2-5858-a81b-57258b8c6c6e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.310777, - "y": 24.70996 - }, - "endPoint": { - "x": 337.295879, - "y": 24.721589 - } - } - }, - { - "id": "c33739d3-865b-5f3f-aa57-de8868c7bdd7", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.295879, - "y": 24.721589 - }, - "endPoint": { - "x": 337.28098, - "y": 24.733074 - } - } - }, - { - "id": "327bc392-fe65-52b9-a69f-287bf022033b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.28098, - "y": 24.733074 - }, - "endPoint": { - "x": 337.266123, - "y": 24.744393 - } - } - }, - { - "id": "e96e265d-d70d-586d-a936-b5cc928f6cb2", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.266123, - "y": 24.744393 - }, - "endPoint": { - "x": 337.251348, - "y": 24.755526 - } - } - }, - { - "id": "28a2f97b-b5cb-56d6-99c6-ed7c965bba4b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.251348, - "y": 24.755526 - }, - "endPoint": { - "x": 337.236697, - "y": 24.766453 - } - } - }, - { - "id": "682b7045-9716-5f59-b8db-8f8204846933", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.236697, - "y": 24.766453 - }, - "endPoint": { - "x": 337.222212, - "y": 24.777153 - } - } - }, - { - "id": "df2b82ba-a4cc-5960-ba2e-2c381fc80b52", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.222212, - "y": 24.777153 - }, - "endPoint": { - "x": 337.207923, - "y": 24.787615 - } - } - }, - { - "id": "37c57546-e346-5158-a9e7-fe47fd5116ae", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.207923, - "y": 24.787615 - }, - "endPoint": { - "x": 337.19382, - "y": 24.79787 - } - } - }, - { - "id": "9b13c41e-b679-57b6-9d02-8116d75ea1e7", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.19382, - "y": 24.79787 - }, - "endPoint": { - "x": 337.179883, - "y": 24.80796 - } - } - }, - { - "id": "72922ad7-e9ba-5270-88e5-4164f40148d9", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.179883, - "y": 24.80796 - }, - "endPoint": { - "x": 337.16609, - "y": 24.817926 - } - } - }, - { - "id": "85220eb5-0941-5e60-9dab-9d7a421e802c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.16609, - "y": 24.817926 - }, - "endPoint": { - "x": 337.152421, - "y": 24.827809 - } - } - }, - { - "id": "516a2fcc-7fd7-59f8-9446-a553ee72d7c1", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.152421, - "y": 24.827809 - }, - "endPoint": { - "x": 337.138856, - "y": 24.837651 - } - } - }, - { - "id": "a706a7b7-cfd9-53ec-aded-894a4d730333", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.138856, - "y": 24.837651 - }, - "endPoint": { - "x": 337.125373, - "y": 24.847493 - } - } - }, - { - "id": "a66d9e49-3271-5a8e-a563-cf71cd399baf", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.125373, - "y": 24.847493 - }, - "endPoint": { - "x": 337.111952, - "y": 24.857376 - } - } - }, - { - "id": "c91f4878-b9e6-55d3-b018-45367b10ea5f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.111952, - "y": 24.857376 - }, - "endPoint": { - "x": 337.098569, - "y": 24.867335 - } - } - }, - { - "id": "719ea13d-0927-5a62-b467-44617b97954b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.098569, - "y": 24.867335 - }, - "endPoint": { - "x": 337.08518, - "y": 24.877377 - } - } - }, - { - "id": "2030017a-e2fd-5603-9801-6cafbe36a045", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.08518, - "y": 24.877377 - }, - "endPoint": { - "x": 337.07174, - "y": 24.887501 - } - } - }, - { - "id": "99962c54-27f3-52c4-9972-b419ddaa0cad", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.07174, - "y": 24.887501 - }, - "endPoint": { - "x": 337.058201, - "y": 24.897708 - } - } - }, - { - "id": "ed2cf79a-8f34-5517-8075-1062b11f29e4", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.058201, - "y": 24.897708 - }, - "endPoint": { - "x": 337.044518, - "y": 24.907998 - } - } - }, - { - "id": "c59a122b-8d5a-55cb-834f-8c0061726016", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.044518, - "y": 24.907998 - }, - "endPoint": { - "x": 337.030643, - "y": 24.91837 - } - } - }, - { - "id": "a4a12728-4b79-56f3-b740-c6377c5f9c00", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.030643, - "y": 24.91837 - }, - "endPoint": { - "x": 337.016531, - "y": 24.928825 - } - } - }, - { - "id": "ff39f08b-e657-58a2-9b7f-fad6f5ee5f07", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.016531, - "y": 24.928825 - }, - "endPoint": { - "x": 337.002135, - "y": 24.939362 - } - } - }, - { - "id": "5f935792-c6ee-5d2f-abc9-dda3c3d233cd", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.002135, - "y": 24.939362 - }, - "endPoint": { - "x": 336.987427, - "y": 24.94997 - } - } - }, - { - "id": "7a6f0a69-9a1d-5f6f-beb2-234e0504c62c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.987427, - "y": 24.94997 - }, - "endPoint": { - "x": 336.972455, - "y": 24.960589 - } - } - }, - { - "id": "1bc25e4c-abee-52fb-ba92-8c5ad9ac8903", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.972455, - "y": 24.960589 - }, - "endPoint": { - "x": 336.957287, - "y": 24.971145 - } - } - }, - { - "id": "ac9ef200-360c-5c3d-a46f-af8ada71fc3d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.957287, - "y": 24.971145 - }, - "endPoint": { - "x": 336.94199, - "y": 24.981567 - } - } - }, - { - "id": "16cc28cd-b34d-5418-9329-905b582f23d4", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.94199, - "y": 24.981567 - }, - "endPoint": { - "x": 336.92663, - "y": 24.991783 - } - } - }, - { - "id": "ae05a049-ff9a-5550-9a98-863c769870bb", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.92663, - "y": 24.991783 - }, - "endPoint": { - "x": 336.911276, - "y": 25.00172 - } - } - }, - { - "id": "f1082940-a639-5b3d-a751-845e8cca469e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.911276, - "y": 25.00172 - }, - "endPoint": { - "x": 336.895994, - "y": 25.011305 - } - } - }, - { - "id": "c0c248d1-63a0-508b-9b6f-e947ceb017e2", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.895994, - "y": 25.011305 - }, - "endPoint": { - "x": 336.880852, - "y": 25.020467 - } - } - }, - { - "id": "a4992618-06ce-5ddb-a93f-df3721b79a3d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.880852, - "y": 25.020467 - }, - "endPoint": { - "x": 336.865908, - "y": 25.029152 - } - } - }, - { - "id": "774acfaa-0ada-5141-9e87-42d945949a9e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.865908, - "y": 25.029152 - }, - "endPoint": { - "x": 336.851192, - "y": 25.037384 - } - } - }, - { - "id": "c3f13f92-29fe-58f6-84e9-6be1fdee8ffe", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.851192, - "y": 25.037384 - }, - "endPoint": { - "x": 336.836722, - "y": 25.045203 - } - } - }, - { - "id": "9dd3a07e-35e1-552a-bc14-d99726195fa7", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.836722, - "y": 25.045203 - }, - "endPoint": { - "x": 336.822519, - "y": 25.052654 - } - } - }, - { - "id": "fbbffaea-033a-50c6-b767-c987b6eb04bb", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.822519, - "y": 25.052654 - }, - "endPoint": { - "x": 336.808604, - "y": 25.059777 - } - } - }, - { - "id": "d2c5a353-9f9b-5c48-83cc-c5f1bd388103", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.808604, - "y": 25.059777 - }, - "endPoint": { - "x": 336.794996, - "y": 25.066614 - } - } - }, - { - "id": "54577e22-938b-57d2-b382-60b615975e85", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.794996, - "y": 25.066614 - }, - "endPoint": { - "x": 336.781715, - "y": 25.073209 - } - } - }, - { - "id": "a744e572-3d11-5bc8-9789-02402a0820f1", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.781715, - "y": 25.073209 - }, - "endPoint": { - "x": 336.768782, - "y": 25.079602 - } - } - }, - { - "id": "9e387612-a962-5a86-b613-bc04ff5d2428", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.768782, - "y": 25.079602 - }, - "endPoint": { - "x": 336.756218, - "y": 25.085823 - } - } - }, - { - "id": "b3087350-5c9a-5b63-9e46-ee1c8aa83fd5", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.756218, - "y": 25.085823 - }, - "endPoint": { - "x": 336.74405, - "y": 25.091845 - } - } - }, - { - "id": "4bf78d4e-8a0b-5b23-a9f5-cbe4d83c06ea", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.74405, - "y": 25.091845 - }, - "endPoint": { - "x": 336.732307, - "y": 25.097629 - } - } - }, - { - "id": "4183fed7-c071-5082-a3a8-a951c7dd3d01", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.732307, - "y": 25.097629 - }, - "endPoint": { - "x": 336.721018, - "y": 25.103135 - } - } - }, - { - "id": "94b77259-1baf-5d1f-82a9-117fdfaf2fd0", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.721018, - "y": 25.103135 - }, - "endPoint": { - "x": 336.710211, - "y": 25.108323 - } - } - }, - { - "id": "6aab3488-ab8d-5e21-8d1d-05178529f745", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.710211, - "y": 25.108323 - }, - "endPoint": { - "x": 336.699915, - "y": 25.113154 - } - } - }, - { - "id": "c4c12030-994b-569c-8296-09a132950834", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.699915, - "y": 25.113154 - }, - "endPoint": { - "x": 336.690158, - "y": 25.117587 - } - } - }, - { - "id": "aa0ff510-bacc-5056-9270-6cda1497c59b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.690158, - "y": 25.117587 - }, - "endPoint": { - "x": 336.68097, - "y": 25.121584 - } - } - }, - { - "id": "e7ff2ebf-7abb-5146-a328-852dbedeb927", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.68097, - "y": 25.121584 - }, - "endPoint": { - "x": 336.67237, - "y": 25.125113 - } - } - }, - { - "id": "f325565d-505c-5860-beee-f69554dc1e12", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.67237, - "y": 25.125113 - }, - "endPoint": { - "x": 336.664343, - "y": 25.128181 - } - } - }, - { - "id": "4a87ccf2-6702-5213-8a75-608b87380494", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.664343, - "y": 25.128181 - }, - "endPoint": { - "x": 336.656865, - "y": 25.130805 - } - } - }, - { - "id": "e4b43b9f-791b-5bbb-9dca-d64b89b17101", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.656865, - "y": 25.130805 - }, - "endPoint": { - "x": 336.649913, - "y": 25.133001 - } - } - }, - { - "id": "06daf471-d035-575d-905e-ba2bb37547aa", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.649913, - "y": 25.133001 - }, - "endPoint": { - "x": 336.643463, - "y": 25.134784 - } - } - }, - { - "id": "032a990b-f5c1-5ecb-8230-e3c07b5857ef", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.643463, - "y": 25.134784 - }, - "endPoint": { - "x": 336.637491, - "y": 25.13617 - } - } - }, - { - "id": "bdfa8cf5-ffeb-578f-8339-4ea22825b3bc", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.637491, - "y": 25.13617 - }, - "endPoint": { - "x": 336.631973, - "y": 25.137176 - } - } - }, - { - "id": "2878b3a9-b3aa-51da-87df-a99cfd815516", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.631973, - "y": 25.137176 - }, - "endPoint": { - "x": 336.626885, - "y": 25.137817 - } - } - }, - { - "id": "557b840a-1a15-55b7-a228-9d8fff62bf94", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.626885, - "y": 25.137817 - }, - "endPoint": { - "x": 336.622194, - "y": 25.138112 - } - } - }, - { - "id": "6b019543-3ec0-5e92-82ef-15edfb2494b3", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.622194, - "y": 25.138112 - }, - "endPoint": { - "x": 336.617827, - "y": 25.138083 - } - } - }, - { - "id": "4d373ea8-d243-5433-9267-ecf06d71fbbb", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.617827, - "y": 25.138083 - }, - "endPoint": { - "x": 336.613699, - "y": 25.137757 - } - } - }, - { - "id": "a09b1c7f-3b51-5a8c-9e66-9be1dc49ea97", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.613699, - "y": 25.137757 - }, - "endPoint": { - "x": 336.609727, - "y": 25.137159 - } - } - }, - { - "id": "b2662479-a3a2-57a6-aae9-169070ed758c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.609727, - "y": 25.137159 - }, - "endPoint": { - "x": 336.605827, - "y": 25.136314 - } - } - }, - { - "id": "1ca7a26a-f7aa-5039-9a0a-7181ab8582f2", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.605827, - "y": 25.136314 - }, - "endPoint": { - "x": 336.601917, - "y": 25.135248 - } - } - }, - { - "id": "576785bd-3437-5384-bc98-b4f685285366", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.601917, - "y": 25.135248 - }, - "endPoint": { - "x": 336.597912, - "y": 25.133985 - } - } - }, - { - "id": "3951e63a-5a0d-51b4-86e9-2e2622f6a3aa", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.597912, - "y": 25.133985 - }, - "endPoint": { - "x": 336.593729, - "y": 25.132552 - } - } - }, - { - "id": "10c8a2ad-38af-57b9-864c-92c52d7cbaa2", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.593729, - "y": 25.132552 - }, - "endPoint": { - "x": 336.589303, - "y": 25.130967 - } - } - }, - { - "id": "cbaa56d2-5d57-5b4d-ac1d-8d6ea91b547c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.589303, - "y": 25.130967 - }, - "endPoint": { - "x": 336.584641, - "y": 25.129223 - } - } - }, - { - "id": "959ac9f6-47f6-5853-8e4a-c325435a3c92", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.584641, - "y": 25.129223 - }, - "endPoint": { - "x": 336.579768, - "y": 25.127304 - } - } - }, - { - "id": "e566099a-19f7-5edc-ae5e-3c95ffacad9f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.579768, - "y": 25.127304 - }, - "endPoint": { - "x": 336.57471, - "y": 25.125197 - } - } - }, - { - "id": "706661e4-4c34-5242-a5fc-de8d01008ef7", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.57471, - "y": 25.125197 - }, - "endPoint": { - "x": 336.569492, - "y": 25.122886 - } - } - }, - { - "id": "66ca4ea1-7148-5f68-ab7b-612014477e06", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.569492, - "y": 25.122886 - }, - "endPoint": { - "x": 336.564139, - "y": 25.120358 - } - } - }, - { - "id": "db14a8bf-782b-5f03-96ca-34b9aa58090b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.564139, - "y": 25.120358 - }, - "endPoint": { - "x": 336.558678, - "y": 25.117597 - } - } - }, - { - "id": "1ba6e75f-84a5-5260-8683-e63726009c86", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.558678, - "y": 25.117597 - }, - "endPoint": { - "x": 336.553133, - "y": 25.114589 - } - } - }, - { - "id": "11d5e58a-2e96-58c6-9288-94cb8dcc7145", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.553133, - "y": 25.114589 - }, - "endPoint": { - "x": 336.547529, - "y": 25.111322 - } - } - }, - { - "id": "f1c17569-f9f1-5c26-ba57-73b65b359768", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.547529, - "y": 25.111322 - }, - "endPoint": { - "x": 336.541881, - "y": 25.10779 - } - } - }, - { - "id": "235cf02a-d552-5fda-bdec-f0f7598bdc29", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.541881, - "y": 25.10779 - }, - "endPoint": { - "x": 336.536204, - "y": 25.10399 - } - } - }, - { - "id": "2358eccb-f305-5a1e-9a79-b08d5c5445db", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.536204, - "y": 25.10399 - }, - "endPoint": { - "x": 336.530513, - "y": 25.099917 - } - } - }, - { - "id": "298fbd1e-86c5-5087-bfe0-3b5f268ccee3", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.530513, - "y": 25.099917 - }, - "endPoint": { - "x": 336.524822, - "y": 25.095568 - } - } - }, - { - "id": "a7d16093-3125-5f10-9ea1-fded5f31abb6", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.524822, - "y": 25.095568 - }, - "endPoint": { - "x": 336.519145, - "y": 25.09094 - } - } - }, - { - "id": "ac26eb47-9aa7-56d6-8995-a07e888a3d46", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.519145, - "y": 25.09094 - }, - "endPoint": { - "x": 336.513497, - "y": 25.086029 - } - } - }, - { - "id": "dbec0977-4e3c-57d9-93b9-eb2bd2436834", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.513497, - "y": 25.086029 - }, - "endPoint": { - "x": 336.507893, - "y": 25.080832 - } - } - }, - { - "id": "7cc53b82-c15d-5a42-8f87-52a3c8b7295e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.507893, - "y": 25.080832 - }, - "endPoint": { - "x": 336.502345, - "y": 25.075357 - } - } - }, - { - "id": "1f855478-77ea-51da-b9ba-fbc625a68abd", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.502345, - "y": 25.075357 - }, - "endPoint": { - "x": 336.496855, - "y": 25.069668 - } - } - }, - { - "id": "bd099244-ce7f-5262-954b-4c5483d917dd", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.496855, - "y": 25.069668 - }, - "endPoint": { - "x": 336.491422, - "y": 25.063841 - } - } - }, - { - "id": "b0d9b735-1a9d-55fa-a936-412b879da06f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.491422, - "y": 25.063841 - }, - "endPoint": { - "x": 336.486048, - "y": 25.057952 - } - } - }, - { - "id": "5f730db7-2d23-5d5e-bddb-c625bafbdbd1", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.486048, - "y": 25.057952 - }, - "endPoint": { - "x": 336.480732, - "y": 25.052078 - } - } - }, - { - "id": "3576b859-da2e-5f41-8dc0-c38dd91dee4d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.480732, - "y": 25.052078 - }, - "endPoint": { - "x": 336.475474, - "y": 25.046295 - } - } - }, - { - "id": "a3b48d95-ff52-561c-936f-d1933b30f4cb", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.475474, - "y": 25.046295 - }, - "endPoint": { - "x": 336.470274, - "y": 25.040679 - } - } - }, - { - "id": "0b3607bb-4474-51ee-a4f8-0bb9b83e34a1", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.470274, - "y": 25.040679 - }, - "endPoint": { - "x": 336.465132, - "y": 25.035306 - } - } - }, - { - "id": "a0fb9f26-f869-5364-aea9-ddb676f94bfc", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.465132, - "y": 25.035306 - }, - "endPoint": { - "x": 336.46002, - "y": 25.03021 - } - } - }, - { - "id": "949d6d7e-6a20-58c4-a6ca-7ef00612d59f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.46002, - "y": 25.03021 - }, - "endPoint": { - "x": 336.4548, - "y": 25.02526 - } - } - }, - { - "id": "ac53d92d-8ca1-5182-aafa-c80a609d13b9", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.4548, - "y": 25.02526 - }, - "endPoint": { - "x": 336.449303, - "y": 25.020281 - } - } - }, - { - "id": "fc478f1e-965b-5eb9-ae57-3da72b895f6e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.449303, - "y": 25.020281 - }, - "endPoint": { - "x": 336.443363, - "y": 25.015099 - } - } - }, - { - "id": "d764226b-3b22-51d9-8d79-74c24325dce0", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.443363, - "y": 25.015099 - }, - "endPoint": { - "x": 336.436813, - "y": 25.009539 - } - } - }, - { - "id": "4904cf85-6c77-5441-b9f6-be7d605b5632", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.436813, - "y": 25.009539 - }, - "endPoint": { - "x": 336.429487, - "y": 25.003427 - } - } - }, - { - "id": "2c5c2ca3-dda0-5db0-8321-6ece1c8700c0", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.429487, - "y": 25.003427 - }, - "endPoint": { - "x": 336.421216, - "y": 24.99659 - } - } - }, - { - "id": "143bf7de-dcf3-54e0-902d-9dd492e0aec0", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.421216, - "y": 24.99659 - }, - "endPoint": { - "x": 336.411833, - "y": 24.988852 - } - } - }, - { - "id": "0f7cbf1c-127d-502d-9778-167b5433e3e6", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.411833, - "y": 24.988852 - }, - "endPoint": { - "x": 336.401213, - "y": 24.980085 - } - } - }, - { - "id": "7c874cb2-b033-516e-aa1a-74b94bb69fb5", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.401213, - "y": 24.980085 - }, - "endPoint": { - "x": 336.389387, - "y": 24.970339 - } - } - }, - { - "id": "f1fbc016-0147-5f09-a2dc-a4ba617d1a71", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.389387, - "y": 24.970339 - }, - "endPoint": { - "x": 336.376428, - "y": 24.959706 - } - } - }, - { - "id": "44601bd2-bf90-525d-9e9c-50981b81c2b4", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.376428, - "y": 24.959706 - }, - "endPoint": { - "x": 336.362408, - "y": 24.948283 - } - } - }, - { - "id": "70a4fb11-e3b7-53db-b2ca-361ff128b1bf", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.362408, - "y": 24.948283 - }, - "endPoint": { - "x": 336.347401, - "y": 24.936162 - } - } - }, - { - "id": "84673640-fb46-5ae1-bda1-4bcb1c44cea2", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.347401, - "y": 24.936162 - }, - "endPoint": { - "x": 336.331479, - "y": 24.923439 - } - } - }, - { - "id": "98fae88a-9b88-5b2f-a83a-00c56aa8669a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.331479, - "y": 24.923439 - }, - "endPoint": { - "x": 336.314715, - "y": 24.910208 - } - } - }, - { - "id": "165f8e80-36d1-529f-af5a-b638a1ef9059", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.314715, - "y": 24.910208 - }, - "endPoint": { - "x": 336.29718, - "y": 24.896563 - } - } - }, - { - "id": "ae3d8284-79d8-5d82-a390-9cbda143349e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.29718, - "y": 24.896563 - }, - "endPoint": { - "x": 336.278961, - "y": 24.8826 - } - } - }, - { - "id": "ed10b513-39e4-53a0-8a2b-5b23e7b2e2e1", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.278961, - "y": 24.8826 - }, - "endPoint": { - "x": 336.26019, - "y": 24.868419 - } - } - }, - { - "id": "ddb511ce-2661-5680-b8b6-77b4b18d7542", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.26019, - "y": 24.868419 - }, - "endPoint": { - "x": 336.241012, - "y": 24.854122 - } - } - }, - { - "id": "2d882e8b-e45d-5d87-b67b-ff885cc56f85", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.241012, - "y": 24.854122 - }, - "endPoint": { - "x": 336.221573, - "y": 24.839811 - } - } - }, - { - "id": "ec15a342-c2ce-5734-aca2-4a72835781e5", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.221573, - "y": 24.839811 - }, - "endPoint": { - "x": 336.202017, - "y": 24.825586 - } - } - }, - { - "id": "988f6342-be58-5188-bd05-f898566bf105", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.202017, - "y": 24.825586 - }, - "endPoint": { - "x": 336.182491, - "y": 24.811551 - } - } - }, - { - "id": "34b5dc86-f389-54a5-8868-f0459c0f5b66", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.182491, - "y": 24.811551 - }, - "endPoint": { - "x": 336.163139, - "y": 24.797805 - } - } - }, - { - "id": "0b069faf-a4e0-5ca7-8245-78933bcd4f19", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.163139, - "y": 24.797805 - }, - "endPoint": { - "x": 336.144106, - "y": 24.784452 - } - } - }, - { - "id": "e33ad7c7-9387-5273-8fec-0168f141da2e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.144106, - "y": 24.784452 - }, - "endPoint": { - "x": 336.125509, - "y": 24.771573 - } - } - }, - { - "id": "7ff5eb8b-472b-5872-acc3-f8a096ae0159", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.125509, - "y": 24.771573 - }, - "endPoint": { - "x": 336.107346, - "y": 24.759176 - } - } - }, - { - "id": "72ca7e38-f304-58be-a12f-9e4f6180a4ef", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.107346, - "y": 24.759176 - }, - "endPoint": { - "x": 336.089585, - "y": 24.747248 - } - } - }, - { - "id": "fcbb85e8-69da-5c4c-aae4-ddc8780326bc", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.089585, - "y": 24.747248 - }, - "endPoint": { - "x": 336.072195, - "y": 24.735778 - } - } - }, - { - "id": "6c7ca4d3-5a9a-57f3-bac0-f90531485390", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.072195, - "y": 24.735778 - }, - "endPoint": { - "x": 336.055146, - "y": 24.724753 - } - } - }, - { - "id": "7d6196d7-f6dc-55ec-a889-7f8ae83d1cfb", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.055146, - "y": 24.724753 - }, - "endPoint": { - "x": 336.038407, - "y": 24.714162 - } - } - }, - { - "id": "936ff509-3223-5b33-a740-e19fa536bff6", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.038407, - "y": 24.714162 - }, - "endPoint": { - "x": 336.021946, - "y": 24.703992 - } - } - }, - { - "id": "89f285f0-480c-5571-b35f-8999c7c12787", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.021946, - "y": 24.703992 - }, - "endPoint": { - "x": 336.005732, - "y": 24.694232 - } - } - }, - { - "id": "8ed8ecee-638a-5436-b042-14ba2edd178c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.005732, - "y": 24.694232 - }, - "endPoint": { - "x": 335.989748, - "y": 24.684868 - } - } - }, - { - "id": "c4a1c181-aad5-5c0d-b5f1-22d3cda19fe4", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.989748, - "y": 24.684868 - }, - "endPoint": { - "x": 335.974036, - "y": 24.67589 - } - } - }, - { - "id": "6b4c67be-11ec-53a6-b6f7-1cd277c0f9b9", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.974036, - "y": 24.67589 - }, - "endPoint": { - "x": 335.958649, - "y": 24.667284 - } - } - }, - { - "id": "9f784c97-929a-56a1-a512-fdc8eb319675", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.958649, - "y": 24.667284 - }, - "endPoint": { - "x": 335.943644, - "y": 24.65904 - } - } - }, - { - "id": "afc0d66e-c849-5428-bf0a-ec6eddd5d82c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.943644, - "y": 24.65904 - }, - "endPoint": { - "x": 335.929074, - "y": 24.651143 - } - } - }, - { - "id": "9942274e-8302-552d-a8f1-15c1498749b9", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.929074, - "y": 24.651143 - }, - "endPoint": { - "x": 335.914994, - "y": 24.643583 - } - } - }, - { - "id": "234186e9-ebec-5b45-bb30-bbb03b92a3eb", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.914994, - "y": 24.643583 - }, - "endPoint": { - "x": 335.901461, - "y": 24.636347 - } - } - }, - { - "id": "3aa0a041-efb7-587d-a495-26f11afc71b8", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.901461, - "y": 24.636347 - }, - "endPoint": { - "x": 335.888527, - "y": 24.629422 - } - } - }, - { - "id": "21257a7b-d8d0-5757-904f-b7d1f5297f29", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.888527, - "y": 24.629422 - }, - "endPoint": { - "x": 335.876232, - "y": 24.6228 - } - } - }, - { - "id": "0f0cedcf-7974-5430-86df-23620ad6bd88", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.876232, - "y": 24.6228 - }, - "endPoint": { - "x": 335.864542, - "y": 24.616484 - } - } - }, - { - "id": "bb89c51a-d73b-5936-8dc4-6aa49a255a87", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.864542, - "y": 24.616484 - }, - "endPoint": { - "x": 335.85341, - "y": 24.610479 - } - } - }, - { - "id": "b1603d17-74e6-5dc0-818a-a6424d35e9ab", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.85341, - "y": 24.610479 - }, - "endPoint": { - "x": 335.842785, - "y": 24.604793 - } - } - }, - { - "id": "496f4336-ef2f-50ee-ba83-eb98dfc86b0c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.842785, - "y": 24.604793 - }, - "endPoint": { - "x": 335.832618, - "y": 24.59943 - } - } - }, - { - "id": "550a0861-27b8-5aff-a4ef-76963f59180d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.832618, - "y": 24.59943 - }, - "endPoint": { - "x": 335.822861, - "y": 24.594398 - } - } - }, - { - "id": "41d1c9c5-5544-50bb-87a6-cfe15c38bbe3", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.822861, - "y": 24.594398 - }, - "endPoint": { - "x": 335.813463, - "y": 24.589701 - } - } - }, - { - "id": "5c42574b-9f01-5d55-91b7-6f7a11f7152e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.813463, - "y": 24.589701 - }, - "endPoint": { - "x": 335.804377, - "y": 24.585347 - } - } - }, - { - "id": "4bc62d24-8bfd-56ad-9c7d-787405978f3c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.804377, - "y": 24.585347 - }, - "endPoint": { - "x": 335.79554, - "y": 24.581327 - } - } - }, - { - "id": "281baff5-de34-5ddf-a3a7-0f96527a96c1", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.79554, - "y": 24.581327 - }, - "endPoint": { - "x": 335.786849, - "y": 24.577571 - } - } - }, - { - "id": "f6e0c411-cf6a-5ae5-80ce-6ffb2361d9df", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.786849, - "y": 24.577571 - }, - "endPoint": { - "x": 335.778188, - "y": 24.573997 - } - } - }, - { - "id": "636132a6-0a08-5290-bbca-2f6d23efb0c8", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.778188, - "y": 24.573997 - }, - "endPoint": { - "x": 335.769439, - "y": 24.570521 - } - } - }, - { - "id": "ee21eca2-7d83-5bb4-adb9-277e8d1def99", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.769439, - "y": 24.570521 - }, - "endPoint": { - "x": 335.760486, - "y": 24.567059 - } - } - }, - { - "id": "40927728-fc59-55a5-8f4f-601ed7e08f22", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.760486, - "y": 24.567059 - }, - "endPoint": { - "x": 335.751215, - "y": 24.563529 - } - } - }, - { - "id": "3c2cf9cc-d93a-5dc4-8cd3-24b7b3250263", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.751215, - "y": 24.563529 - }, - "endPoint": { - "x": 335.741507, - "y": 24.559846 - } - } - }, - { - "id": "a173317c-5c1a-5d87-89d9-659124457a26", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.741507, - "y": 24.559846 - }, - "endPoint": { - "x": 335.731247, - "y": 24.555927 - } - } - }, - { - "id": "71ec54f0-7b88-5cf7-8972-a5a764e3a628", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.731247, - "y": 24.555927 - }, - "endPoint": { - "x": 335.720365, - "y": 24.551718 - } - } - }, - { - "id": "c4a28051-b455-5549-89f9-3a2ad9b081f8", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.720365, - "y": 24.551718 - }, - "endPoint": { - "x": 335.70897, - "y": 24.54728 - } - } - }, - { - "id": "3e1e87be-2cc0-5baf-a6fd-41ce9590d66f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.70897, - "y": 24.54728 - }, - "endPoint": { - "x": 335.69722, - "y": 24.542704 - } - } - }, - { - "id": "d4ddbdf2-1f69-5756-991e-17bafc5bc7ff", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.69722, - "y": 24.542704 - }, - "endPoint": { - "x": 335.68527, - "y": 24.538081 - } - } - }, - { - "id": "b534006c-5f5b-5376-ab0e-83ea32af521a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.68527, - "y": 24.538081 - }, - "endPoint": { - "x": 335.673276, - "y": 24.533501 - } - } - }, - { - "id": "045c9686-e150-529a-b529-df1f7fcea585", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.673276, - "y": 24.533501 - }, - "endPoint": { - "x": 335.661395, - "y": 24.529056 - } - } - }, - { - "id": "05168cd3-a072-5250-b20c-3bdccf7770e1", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.661395, - "y": 24.529056 - }, - "endPoint": { - "x": 335.649782, - "y": 24.524835 - } - } - }, - { - "id": "712ed471-ef03-5cb7-a25c-575f4af88bf5", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.649782, - "y": 24.524835 - }, - "endPoint": { - "x": 335.638595, - "y": 24.520931 - } - } - }, - { - "id": "de15f5b8-e8eb-598e-b5c8-d3a257fb246c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.638595, - "y": 24.520931 - }, - "endPoint": { - "x": 335.627952, - "y": 24.517415 - } - } - }, - { - "id": "02a536e5-e015-5653-a63a-541240b75422", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.627952, - "y": 24.517415 - }, - "endPoint": { - "x": 335.617833, - "y": 24.514287 - } - } - }, - { - "id": "a6e99fc4-13d0-5701-93f7-dcc8791cd158", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.617833, - "y": 24.514287 - }, - "endPoint": { - "x": 335.608179, - "y": 24.511529 - } - } - }, - { - "id": "531c17c1-0f77-533f-9a91-acd11c60ca35", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.608179, - "y": 24.511529 - }, - "endPoint": { - "x": 335.598931, - "y": 24.509123 - } - } - }, - { - "id": "d58ec34a-25f5-5662-ba06-c5165a938d4d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.598931, - "y": 24.509123 - }, - "endPoint": { - "x": 335.590032, - "y": 24.507052 - } - } - }, - { - "id": "0b939179-844f-599d-9b0f-675dda781184", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.590032, - "y": 24.507052 - }, - "endPoint": { - "x": 335.581424, - "y": 24.505296 - } - } - }, - { - "id": "4238ed17-481c-5f1d-9a9e-d0c08a4237e7", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.581424, - "y": 24.505296 - }, - "endPoint": { - "x": 335.573048, - "y": 24.503837 - } - } - }, - { - "id": "66216ecd-4b7f-5570-8ed2-0fabbeced064", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.573048, - "y": 24.503837 - }, - "endPoint": { - "x": 335.564846, - "y": 24.502658 - } - } - }, - { - "id": "fc112bca-33d7-58bd-855b-8edfd48b1c69", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.564846, - "y": 24.502658 - }, - "endPoint": { - "x": 335.556768, - "y": 24.501738 - } - } - }, - { - "id": "af80d37b-4c30-5268-9ec5-40a20fdb5e49", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.556768, - "y": 24.501738 - }, - "endPoint": { - "x": 335.548795, - "y": 24.501047 - } - } - }, - { - "id": "db0655a2-9188-5c01-94da-c8261588e34e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.548795, - "y": 24.501047 - }, - "endPoint": { - "x": 335.540917, - "y": 24.500551 - } - } - }, - { - "id": "9e67ee97-a391-57fd-84b3-c9a06213b3be", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.540917, - "y": 24.500551 - }, - "endPoint": { - "x": 335.533123, - "y": 24.500219 - } - } - }, - { - "id": "bfe5eb9d-a614-5792-80cb-8c045e6f41e8", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.533123, - "y": 24.500219 - }, - "endPoint": { - "x": 335.5254, - "y": 24.500018 - } - } - }, - { - "id": "87f21140-3595-5e6c-88d2-f4227e999d93", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.5254, - "y": 24.500018 - }, - "endPoint": { - "x": 335.51774, - "y": 24.499914 - } - } - }, - { - "id": "bf2f1045-7e31-5411-af52-a3f970f87859", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.51774, - "y": 24.499914 - }, - "endPoint": { - "x": 335.510131, - "y": 24.499876 - } - } - }, - { - "id": "2fcfeb58-cbb6-5ab3-8b30-df87dfff4fc2", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.510131, - "y": 24.499876 - }, - "endPoint": { - "x": 335.502561, - "y": 24.499871 - } - } - }, - { - "id": "e8ed76b4-4020-5b21-8d5c-fb4ab0413e5e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.502561, - "y": 24.499871 - }, - "endPoint": { - "x": 335.495021, - "y": 24.499873 - } - } - }, - { - "id": "392beba0-cd74-5fc0-8b7f-f088da376bcb", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.495021, - "y": 24.499873 - }, - "endPoint": { - "x": 335.487498, - "y": 24.49989 - } - } - }, - { - "id": "0b2f5aa5-96db-5e12-acad-847b2fdc734a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.487498, - "y": 24.49989 - }, - "endPoint": { - "x": 335.479983, - "y": 24.499936 - } - } - }, - { - "id": "a76ef2e2-33af-55b3-bb8d-880832796e38", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.479983, - "y": 24.499936 - }, - "endPoint": { - "x": 335.472465, - "y": 24.500026 - } - } - }, - { - "id": "12620529-ab3b-5faa-8ca0-a229e9bd69cf", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.472465, - "y": 24.500026 - }, - "endPoint": { - "x": 335.464932, - "y": 24.500173 - } - } - }, - { - "id": "a6f581b7-0aa2-57e5-9d3a-2b2ad4fbb70e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.464932, - "y": 24.500173 - }, - "endPoint": { - "x": 335.457373, - "y": 24.500394 - } - } - }, - { - "id": "6b549ba9-814e-51fb-999c-a273d41c140e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.457373, - "y": 24.500394 - }, - "endPoint": { - "x": 335.449778, - "y": 24.500701 - } - } - }, - { - "id": "66a69221-aa58-573f-9a19-0ca10add5968", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.449778, - "y": 24.500701 - }, - "endPoint": { - "x": 335.442137, - "y": 24.50111 - } - } - }, - { - "id": "c4a9ab1c-41e4-503d-9410-1073837ae6ad", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.442137, - "y": 24.50111 - }, - "endPoint": { - "x": 335.434444, - "y": 24.50164 - } - } - }, - { - "id": "f16d8e46-7234-520b-9767-afa576855ad2", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.434444, - "y": 24.50164 - }, - "endPoint": { - "x": 335.426726, - "y": 24.502329 - } - } - }, - { - "id": "6fa6cc35-ae49-5c86-b055-4f3ec1c75893", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.426726, - "y": 24.502329 - }, - "endPoint": { - "x": 335.419015, - "y": 24.503222 - } - } - }, - { - "id": "f2c736c5-45c8-560a-b09e-b646fb75545d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.419015, - "y": 24.503222 - }, - "endPoint": { - "x": 335.411344, - "y": 24.504362 - } - } - }, - { - "id": "defa2ebe-47a8-533c-b17e-2ffec0f1a897", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.411344, - "y": 24.504362 - }, - "endPoint": { - "x": 335.403746, - "y": 24.505792 - } - } - }, - { - "id": "3fea6b9d-b8df-57a8-8568-177a65f03d04", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.403746, - "y": 24.505792 - }, - "endPoint": { - "x": 335.396253, - "y": 24.507556 - } - } - }, - { - "id": "a9e5a4dc-b4f5-559a-aea2-5648a6942ff0", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.396253, - "y": 24.507556 - }, - "endPoint": { - "x": 335.388897, - "y": 24.509697 - } - } - }, - { - "id": "a3bf6834-dfe9-522e-a60d-f970ef730139", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.388897, - "y": 24.509697 - }, - "endPoint": { - "x": 335.381713, - "y": 24.512259 - } - } - }, - { - "id": "8c3d384c-1871-5968-b575-0065aba0e050", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.381713, - "y": 24.512259 - }, - "endPoint": { - "x": 335.374731, - "y": 24.51527 - } - } - }, - { - "id": "1778dae4-1ba3-540d-8ec8-4fe84d758ad5", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.374731, - "y": 24.51527 - }, - "endPoint": { - "x": 335.367977, - "y": 24.518695 - } - } - }, - { - "id": "73f30cb4-6998-54e5-b427-4b5520e13ca5", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.367977, - "y": 24.518695 - }, - "endPoint": { - "x": 335.361478, - "y": 24.522483 - } - } - }, - { - "id": "59f9ce7f-b684-5c73-b72c-ebe3319b85af", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.361478, - "y": 24.522483 - }, - "endPoint": { - "x": 335.355258, - "y": 24.526583 - } - } - }, - { - "id": "2eed341e-5d85-5bee-beb9-02c7c580eeee", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.355258, - "y": 24.526583 - }, - "endPoint": { - "x": 335.349343, - "y": 24.530944 - } - } - }, - { - "id": "5cec6105-a5ea-5a7c-980e-33254e6c0613", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.349343, - "y": 24.530944 - }, - "endPoint": { - "x": 335.343759, - "y": 24.535515 - } - } - }, - { - "id": "39ff1945-c7e1-5221-a1f7-cc8fc2526853", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.343759, - "y": 24.535515 - }, - "endPoint": { - "x": 335.33853, - "y": 24.540247 - } - } - }, - { - "id": "34a36cd1-a325-5667-bc36-0c9b440e5cfe", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.33853, - "y": 24.540247 - }, - "endPoint": { - "x": 335.333683, - "y": 24.545087 - } - } - }, - { - "id": "c1756e38-d783-561d-9932-1b60f1c036d2", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.333683, - "y": 24.545087 - }, - "endPoint": { - "x": 335.329238, - "y": 24.549993 - } - } - }, - { - "id": "44f1e8d4-b9d6-5ca5-9c42-4ebe1f489dbc", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.329238, - "y": 24.549993 - }, - "endPoint": { - "x": 335.325196, - "y": 24.554949 - } - } - }, - { - "id": "250feb09-7493-5e3c-8684-31e843e28957", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.325196, - "y": 24.554949 - }, - "endPoint": { - "x": 335.321553, - "y": 24.559949 - } - } - }, - { - "id": "af4b2b98-0db3-5fbc-b7d7-74e91461fddf", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.321553, - "y": 24.559949 - }, - "endPoint": { - "x": 335.318307, - "y": 24.564985 - } - } - }, - { - "id": "dadcd4ad-95e1-5da8-916b-b94f403fd578", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.318307, - "y": 24.564985 - }, - "endPoint": { - "x": 335.315452, - "y": 24.570051 - } - } - }, - { - "id": "84cac419-9eba-511f-b033-2cb00f832c66", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.315452, - "y": 24.570051 - }, - "endPoint": { - "x": 335.312986, - "y": 24.575138 - } - } - }, - { - "id": "a09332e3-4747-5c6f-858c-69e5a4b96056", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.312986, - "y": 24.575138 - }, - "endPoint": { - "x": 335.310905, - "y": 24.580239 - } - } - }, - { - "id": "fd66fac0-aeb8-5dac-9245-7f60e7edda1d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.310905, - "y": 24.580239 - }, - "endPoint": { - "x": 335.309205, - "y": 24.585348 - } - } - }, - { - "id": "dd8bc490-3bb7-558b-a5a8-205b847a8aa3", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.309205, - "y": 24.585348 - }, - "endPoint": { - "x": 335.307881, - "y": 24.590462 - } - } - }, - { - "id": "a233b9c0-63c0-5da6-b28e-1b3fd7c36132", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.307881, - "y": 24.590462 - }, - "endPoint": { - "x": 335.306915, - "y": 24.595597 - } - } - }, - { - "id": "a492b938-1d3d-54f6-bc06-c0a903e7484e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.306915, - "y": 24.595597 - }, - "endPoint": { - "x": 335.306292, - "y": 24.600776 - } - } - }, - { - "id": "4029a136-b9a0-5372-8509-7f8f5035fb0c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.306292, - "y": 24.600776 - }, - "endPoint": { - "x": 335.305991, - "y": 24.60602 - } - } - }, - { - "id": "6a74aa68-9115-55d7-941a-5f72d856662a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.305991, - "y": 24.60602 - }, - "endPoint": { - "x": 335.305995, - "y": 24.611351 - } - } - }, - { - "id": "e5fb76c7-cdcf-56fc-bbf6-09977ef704d9", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.305995, - "y": 24.611351 - }, - "endPoint": { - "x": 335.306286, - "y": 24.616791 - } - } - }, - { - "id": "a5b8e273-ebe1-5909-9274-424ff68b8152", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.306286, - "y": 24.616791 - }, - "endPoint": { - "x": 335.306846, - "y": 24.622362 - } - } - }, - { - "id": "045bfe3a-c5af-58c0-9d8d-f18d8facc7a3", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.306846, - "y": 24.622362 - }, - "endPoint": { - "x": 335.307656, - "y": 24.628086 - } - } - }, - { - "id": "99aca121-771f-5e77-b6d1-2e51ba6c001c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.307656, - "y": 24.628086 - }, - "endPoint": { - "x": 335.308707, - "y": 24.633972 - } - } - }, - { - "id": "6566dd7e-36fc-528f-8dad-cfea1d25319f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.308707, - "y": 24.633972 - }, - "endPoint": { - "x": 335.310019, - "y": 24.639985 - } - } - }, - { - "id": "70729182-598b-504d-91c3-16e647df808b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.310019, - "y": 24.639985 - }, - "endPoint": { - "x": 335.311621, - "y": 24.646078 - } - } - }, - { - "id": "559eaf0e-e443-5b19-80ff-e9d1390a9694", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.311621, - "y": 24.646078 - }, - "endPoint": { - "x": 335.313543, - "y": 24.652203 - } - } - }, - { - "id": "85785584-b1c2-5434-a5d5-b7b8596132e2", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.313543, - "y": 24.652203 - }, - "endPoint": { - "x": 335.315814, - "y": 24.658314 - } - } - }, - { - "id": "c23b1ec1-6c4c-54a7-88f8-34e980ce6b15", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.315814, - "y": 24.658314 - }, - "endPoint": { - "x": 335.318462, - "y": 24.664364 - } - } - }, - { - "id": "92ffbeec-fc58-5592-8ce3-9fa805f5fbde", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.318462, - "y": 24.664364 - }, - "endPoint": { - "x": 335.321517, - "y": 24.670304 - } - } - }, - { - "id": "b2e3897b-2b07-53fd-ac56-85707f442dc9", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.321517, - "y": 24.670304 - }, - "endPoint": { - "x": 335.325008, - "y": 24.676089 - } - } - }, - { - "id": "e95d27cf-6ed4-56f6-a6e9-ee1970cdd8ea", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.325008, - "y": 24.676089 - }, - "endPoint": { - "x": 335.328978, - "y": 24.681697 - } - } - }, - { - "id": "2bb79711-655e-5196-8f78-f26d81907d0c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.328978, - "y": 24.681697 - }, - "endPoint": { - "x": 335.33353, - "y": 24.687214 - } - } - }, - { - "id": "9438b2b2-0388-531a-b20f-07dd9e9a6a58", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.33353, - "y": 24.687214 - }, - "endPoint": { - "x": 335.338778, - "y": 24.692753 - } - } - }, - { - "id": "56cf9aa8-6632-5959-9f9d-3e30cf07402d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.338778, - "y": 24.692753 - }, - "endPoint": { - "x": 335.34484, - "y": 24.698427 - } - } - }, - { - "id": "6b075555-1408-506f-ae7d-cb9c6560abcf", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.34484, - "y": 24.698427 - }, - "endPoint": { - "x": 335.351832, - "y": 24.704347 - } - } - }, - { - "id": "fe6738f5-babc-5421-965c-a74c7983f8f8", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.351832, - "y": 24.704347 - }, - "endPoint": { - "x": 335.359869, - "y": 24.710626 - } - } - }, - { - "id": "de90daef-c1a8-5508-aa54-8741dc60a8ec", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.359869, - "y": 24.710626 - }, - "endPoint": { - "x": 335.369068, - "y": 24.717377 - } - } - }, - { - "id": "274bf022-a9e1-5125-9b72-c9f3f74fbc36", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.369068, - "y": 24.717377 - }, - "endPoint": { - "x": 335.379546, - "y": 24.724713 - } - } - }, - { - "id": "bfe175db-38b7-5041-a30d-4d9dd3fd3ebd", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.379546, - "y": 24.724713 - }, - "endPoint": { - "x": 335.391376, - "y": 24.732718 - } - } - }, - { - "id": "421781e8-7006-5494-a3b6-59396aa91dc3", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.391376, - "y": 24.732718 - }, - "endPoint": { - "x": 335.404471, - "y": 24.741369 - } - } - }, - { - "id": "150a372f-6496-57e7-92fa-7d1f37440076", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.404471, - "y": 24.741369 - }, - "endPoint": { - "x": 335.418698, - "y": 24.750615 - } - } - }, - { - "id": "78462ec2-8ddf-5c5f-9a6d-2730f49f084f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.418698, - "y": 24.750615 - }, - "endPoint": { - "x": 335.433927, - "y": 24.760405 - } - } - }, - { - "id": "36bf0b78-205c-5923-887c-f6244078c5a2", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.433927, - "y": 24.760405 - }, - "endPoint": { - "x": 335.450028, - "y": 24.770689 - } - } - }, - { - "id": "0579dc41-238f-5785-bff6-40d503f98cae", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.450028, - "y": 24.770689 - }, - "endPoint": { - "x": 335.46687, - "y": 24.781416 - } - } - }, - { - "id": "793ec61e-6751-5aa6-89a3-57878b2c8b84", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.46687, - "y": 24.781416 - }, - "endPoint": { - "x": 335.484322, - "y": 24.792535 - } - } - }, - { - "id": "ac4f718e-bbe3-5e97-94d6-69d98d45ccf0", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.484322, - "y": 24.792535 - }, - "endPoint": { - "x": 335.502253, - "y": 24.803995 - } - } - }, - { - "id": "da5bb2cb-c0cd-503b-9329-b6217c0699d2", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.502253, - "y": 24.803995 - }, - "endPoint": { - "x": 335.52053, - "y": 24.815737 - } - } - }, - { - "id": "136dd063-5277-5565-807d-a6f981a1166a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.52053, - "y": 24.815737 - }, - "endPoint": { - "x": 335.539011, - "y": 24.827668 - } - } - }, - { - "id": "1338cece-a029-5395-b3f7-7c817fcab9d7", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.539011, - "y": 24.827668 - }, - "endPoint": { - "x": 335.55755, - "y": 24.839686 - } - } - }, - { - "id": "fb406440-e700-529e-aeed-9a35671ac44e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.55755, - "y": 24.839686 - }, - "endPoint": { - "x": 335.576001, - "y": 24.851689 - } - } - }, - { - "id": "aa6634ac-1366-5cef-9dc0-4fc5bf61e25c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.576001, - "y": 24.851689 - }, - "endPoint": { - "x": 335.594221, - "y": 24.863576 - } - } - }, - { - "id": "c58143c4-fa83-5232-96a4-44313c8d523f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.594221, - "y": 24.863576 - }, - "endPoint": { - "x": 335.612062, - "y": 24.875245 - } - } - }, - { - "id": "d4f66f99-7965-5967-938d-7957fb888425", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.612062, - "y": 24.875245 - }, - "endPoint": { - "x": 335.629381, - "y": 24.886595 - } - } - }, - { - "id": "d15843ef-ad93-5cf6-9d52-3323c621d12b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.629381, - "y": 24.886595 - }, - "endPoint": { - "x": 335.646032, - "y": 24.897524 - } - } - }, - { - "id": "ba92ed2c-1cf1-5cc7-a81d-a17d80758bea", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.646032, - "y": 24.897524 - }, - "endPoint": { - "x": 335.661923, - "y": 24.907977 - } - } - }, - { - "id": "bbff478a-5fa9-553f-b42e-514feb93ba6b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.661923, - "y": 24.907977 - }, - "endPoint": { - "x": 335.67718, - "y": 24.918082 - } - } - }, - { - "id": "67ab4095-2ffb-5e66-83dd-f67821f12771", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.67718, - "y": 24.918082 - }, - "endPoint": { - "x": 335.691981, - "y": 24.928016 - } - } - }, - { - "id": "c9077d97-4ae0-5d03-969d-a25f62998396", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.691981, - "y": 24.928016 - }, - "endPoint": { - "x": 335.706504, - "y": 24.937955 - } - } - }, - { - "id": "de5dfc41-234e-54f4-ae98-7f8f7f503ff6", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.706504, - "y": 24.937955 - }, - "endPoint": { - "x": 335.72093, - "y": 24.948073 - } - } - }, - { - "id": "969e8782-42b3-57e2-80a1-546a4471a84d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.72093, - "y": 24.948073 - }, - "endPoint": { - "x": 335.735436, - "y": 24.958547 - } - } - }, - { - "id": "f6d075ed-4157-5fda-89cd-0a82965993cd", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.735436, - "y": 24.958547 - }, - "endPoint": { - "x": 335.750202, - "y": 24.969552 - } - } - }, - { - "id": "ffdb6b5f-299f-5e27-bbeb-e6a3272dc92e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.750202, - "y": 24.969552 - }, - "endPoint": { - "x": 335.765406, - "y": 24.981265 - } - } - }, - { - "id": "8373e1c7-20a4-5f36-bed3-59ab85c7ab62", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.765406, - "y": 24.981265 - }, - "endPoint": { - "x": 335.781172, - "y": 24.993807 - } - } - }, - { - "id": "c823f737-80e1-5bb0-9f8c-3d423905acb5", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.781172, - "y": 24.993807 - }, - "endPoint": { - "x": 335.797413, - "y": 25.007096 - } - } - }, - { - "id": "720c50b2-0a4f-57f0-ae54-398c8088b78b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.797413, - "y": 25.007096 - }, - "endPoint": { - "x": 335.813984, - "y": 25.020992 - } - } - }, - { - "id": "2472c732-72e6-5bbe-b7bd-7353a399968b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.813984, - "y": 25.020992 - }, - "endPoint": { - "x": 335.830741, - "y": 25.035359 - } - } - }, - { - "id": "daad719c-69c3-50d3-81b9-bd4c0ae343ff", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.830741, - "y": 25.035359 - }, - "endPoint": { - "x": 335.847542, - "y": 25.050061 - } - } - }, - { - "id": "574f3161-ba3b-5bd4-bd7d-9403432ebc4e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.847542, - "y": 25.050061 - }, - "endPoint": { - "x": 335.864244, - "y": 25.064959 - } - } - }, - { - "id": "32a683fc-cc13-5698-b956-66d7abf62fa1", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.864244, - "y": 25.064959 - }, - "endPoint": { - "x": 335.880702, - "y": 25.079917 - } - } - }, - { - "id": "898f5644-8a68-538c-9060-b970efb13a20", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.880702, - "y": 25.079917 - }, - "endPoint": { - "x": 335.896774, - "y": 25.094797 - } - } - }, - { - "id": "bbbb73a4-40c2-5e56-b0cb-705745164c12", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.896774, - "y": 25.094797 - }, - "endPoint": { - "x": 335.912351, - "y": 25.109492 - } - } - }, - { - "id": "885e748d-fccf-5ad8-9d64-9ad4db4f873b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.912351, - "y": 25.109492 - }, - "endPoint": { - "x": 335.92746, - "y": 25.124014 - } - } - }, - { - "id": "95d64844-93ed-5fb4-a668-f8d55f6530bf", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.92746, - "y": 25.124014 - }, - "endPoint": { - "x": 335.942165, - "y": 25.138404 - } - } - }, - { - "id": "cd8e6106-225c-5ea1-b997-04b130171e07", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.942165, - "y": 25.138404 - }, - "endPoint": { - "x": 335.956528, - "y": 25.152703 - } - } - }, - { - "id": "8611fa18-1233-506f-8b38-fd5a430c4ea3", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.956528, - "y": 25.152703 - }, - "endPoint": { - "x": 335.970611, - "y": 25.166952 - } - } - }, - { - "id": "45f346c8-6aad-54c6-9ad4-e1fe7bd089ce", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.970611, - "y": 25.166952 - }, - "endPoint": { - "x": 335.984477, - "y": 25.181194 - } - } - }, - { - "id": "0f3cec0f-1832-52df-9ca6-6b236d0a465a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.984477, - "y": 25.181194 - }, - "endPoint": { - "x": 335.99819, - "y": 25.195469 - } - } - }, - { - "id": "1d4ca505-e733-5d7a-8ac7-62a794c33341", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.99819, - "y": 25.195469 - }, - "endPoint": { - "x": 336.01181, - "y": 25.209819 - } - } - }, - { - "id": "edeebac1-3f0f-5ba4-9f33-e275be9406af", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.01181, - "y": 25.209819 - }, - "endPoint": { - "x": 336.025385, - "y": 25.224274 - } - } - }, - { - "id": "49e7d3bc-fcb3-5517-8141-22f3d9708039", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.025385, - "y": 25.224274 - }, - "endPoint": { - "x": 336.03889, - "y": 25.238824 - } - } - }, - { - "id": "37f6ece7-bddc-526c-b703-359226ba2c79", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.03889, - "y": 25.238824 - }, - "endPoint": { - "x": 336.052286, - "y": 25.253446 - } - } - }, - { - "id": "7d7c6e11-d2bb-5e10-9eaa-5eb57e8342f9", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.052286, - "y": 25.253446 - }, - "endPoint": { - "x": 336.065534, - "y": 25.268119 - } - } - }, - { - "id": "fa7d6d99-7156-58b0-ad56-f49ef7638ffb", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.065534, - "y": 25.268119 - }, - "endPoint": { - "x": 336.078593, - "y": 25.282821 - } - } - }, - { - "id": "91c198a1-b176-5f67-9b7a-2917a55f777a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.078593, - "y": 25.282821 - }, - "endPoint": { - "x": 336.091423, - "y": 25.297531 - } - } - }, - { - "id": "bcdbbf1c-b462-5b66-8ce6-56ec193f7604", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.091423, - "y": 25.297531 - }, - "endPoint": { - "x": 336.103984, - "y": 25.312226 - } - } - }, - { - "id": "14fc1241-5ecb-5897-a180-f5f3a8a94988", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.103984, - "y": 25.312226 - }, - "endPoint": { - "x": 336.116237, - "y": 25.326884 - } - } - }, - { - "id": "e7ea2c80-2b6d-5cf2-9583-b8a705e75c23", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.116237, - "y": 25.326884 - }, - "endPoint": { - "x": 336.128144, - "y": 25.341475 - } - } - }, - { - "id": "da4d438f-fa6c-5925-9b7d-ac181f8c3e1f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.128144, - "y": 25.341475 - }, - "endPoint": { - "x": 336.139677, - "y": 25.355925 - } - } - }, - { - "id": "5eeb0c3a-7322-59d3-a3f6-0134d3699307", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.139677, - "y": 25.355925 - }, - "endPoint": { - "x": 336.150812, - "y": 25.370155 - } - } - }, - { - "id": "8a768872-b2a7-5a1e-a933-fc148d99f485", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.150812, - "y": 25.370155 - }, - "endPoint": { - "x": 336.161523, - "y": 25.384081 - } - } - }, - { - "id": "874b2361-aa0d-5d24-a496-ae6aaaf69e5e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.161523, - "y": 25.384081 - }, - "endPoint": { - "x": 336.171785, - "y": 25.397622 - } - } - }, - { - "id": "013c104a-d3a9-57bc-8096-d5384c8c2fbd", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.171785, - "y": 25.397622 - }, - "endPoint": { - "x": 336.181574, - "y": 25.410696 - } - } - }, - { - "id": "483badc0-55fa-5010-b17c-d8ecddb99a9b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.181574, - "y": 25.410696 - }, - "endPoint": { - "x": 336.190863, - "y": 25.423222 - } - } - }, - { - "id": "e7348c4a-8c2c-50ee-970a-0ec70315b121", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.190863, - "y": 25.423222 - }, - "endPoint": { - "x": 336.19963, - "y": 25.435118 - } - } - }, - { - "id": "4242f7cb-7e87-5739-b062-5135c407aa01", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.19963, - "y": 25.435118 - }, - "endPoint": { - "x": 336.207854, - "y": 25.446324 - } - } - }, - { - "id": "4fa83c2c-df9a-5ca3-9ce8-f80546a93f6e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.207854, - "y": 25.446324 - }, - "endPoint": { - "x": 336.215547, - "y": 25.456865 - } - } - }, - { - "id": "66ce96fa-b88c-55e1-ad0b-c3c01e4c64e0", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.215547, - "y": 25.456865 - }, - "endPoint": { - "x": 336.222726, - "y": 25.466788 - } - } - }, - { - "id": "8f6c021c-bcf7-5463-9996-ec1ff46a97d6", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.222726, - "y": 25.466788 - }, - "endPoint": { - "x": 336.229408, - "y": 25.476142 - } - } - }, - { - "id": "3fc590b6-12d2-5700-9854-380eaeaef6b6", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.229408, - "y": 25.476142 - }, - "endPoint": { - "x": 336.235611, - "y": 25.484973 - } - } - }, - { - "id": "27a846c3-9662-526b-b9bd-6b59aab0f5e5", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.235611, - "y": 25.484973 - }, - "endPoint": { - "x": 336.241352, - "y": 25.493329 - } - } - }, - { - "id": "9e3ee40d-d70f-5134-9335-26ab0d1ed197", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.241352, - "y": 25.493329 - }, - "endPoint": { - "x": 336.246648, - "y": 25.501257 - } - } - }, - { - "id": "78b3ce50-14cf-5020-a6e2-30cbe6cf396c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.246648, - "y": 25.501257 - }, - "endPoint": { - "x": 336.251517, - "y": 25.508804 - } - } - }, - { - "id": "0f029e21-6960-5269-83dc-7b2f8714499d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.251517, - "y": 25.508804 - }, - "endPoint": { - "x": 336.255976, - "y": 25.516013 - } - } - }, - { - "id": "4e615cca-4780-53cb-9b71-2ca8a9e3ae3e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.255976, - "y": 25.516013 - }, - "endPoint": { - "x": 336.260048, - "y": 25.522909 - } - } - }, - { - "id": "0881fda8-b872-51cb-a128-f6cf19826b9f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.260048, - "y": 25.522909 - }, - "endPoint": { - "x": 336.263754, - "y": 25.529511 - } - } - }, - { - "id": "281b10b2-49f8-5077-a177-a3593c4a664b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.263754, - "y": 25.529511 - }, - "endPoint": { - "x": 336.267117, - "y": 25.53584 - } - } - }, - { - "id": "7386f881-a658-5e5b-a91f-d212aa914a9f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.267117, - "y": 25.53584 - }, - "endPoint": { - "x": 336.270159, - "y": 25.541914 - } - } - }, - { - "id": "4443a7f2-4dda-5fac-8606-90e4b929a88c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.270159, - "y": 25.541914 - }, - "endPoint": { - "x": 336.272901, - "y": 25.547755 - } - } - }, - { - "id": "cf994305-ed41-5d5b-b046-986a86f5bdae", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.272901, - "y": 25.547755 - }, - "endPoint": { - "x": 336.275367, - "y": 25.553382 - } - } - }, - { - "id": "b0e3ae42-75e2-5953-82a2-7dbab0a999b2", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.275367, - "y": 25.553382 - }, - "endPoint": { - "x": 336.277579, - "y": 25.558814 - } - } - }, - { - "id": "c2c61a0d-07e9-57a5-8811-5a7d672f6a22", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.277579, - "y": 25.558814 - }, - "endPoint": { - "x": 336.279559, - "y": 25.564068 - } - } - }, - { - "id": "118fec21-a1e4-5ef3-b88e-dbeec092be93", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.279559, - "y": 25.564068 - }, - "endPoint": { - "x": 336.281336, - "y": 25.56914 - } - } - }, - { - "id": "500a2768-52e2-5e78-a00a-7e0ac9fd0e54", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.281336, - "y": 25.56914 - }, - "endPoint": { - "x": 336.282939, - "y": 25.574024 - } - } - }, - { - "id": "bf1f4b30-d6e2-5abc-8060-4aa465c64670", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.282939, - "y": 25.574024 - }, - "endPoint": { - "x": 336.284397, - "y": 25.578712 - } - } - }, - { - "id": "a7721efa-afde-53b7-8eaf-f8f73ca67921", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.284397, - "y": 25.578712 - }, - "endPoint": { - "x": 336.285739, - "y": 25.583196 - } - } - }, - { - "id": "672936eb-f4d7-5560-b849-5e8d424f73b7", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.285739, - "y": 25.583196 - }, - "endPoint": { - "x": 336.286993, - "y": 25.58747 - } - } - }, - { - "id": "e3cd658f-d565-5546-90c5-7ccada4ef6a9", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.286993, - "y": 25.58747 - }, - "endPoint": { - "x": 336.288189, - "y": 25.591527 - } - } - }, - { - "id": "d41f6ccd-8a2e-5952-b56b-1b9a5df9404c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.288189, - "y": 25.591527 - }, - "endPoint": { - "x": 336.289356, - "y": 25.595358 - } - } - }, - { - "id": "b5aeabd7-bbd6-5ede-b3a5-5914f67123e6", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.289356, - "y": 25.595358 - }, - "endPoint": { - "x": 336.290512, - "y": 25.598964 - } - } - }, - { - "id": "855968e4-877b-5e45-9b83-2a20ee6137a1", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.290512, - "y": 25.598964 - }, - "endPoint": { - "x": 336.291632, - "y": 25.602375 - } - } - }, - { - "id": "1995eacb-c75b-52ae-be60-915c82cc343d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.291632, - "y": 25.602375 - }, - "endPoint": { - "x": 336.292679, - "y": 25.605626 - } - } - }, - { - "id": "3e404aa4-7112-5d5e-8242-d901e579e148", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.292679, - "y": 25.605626 - }, - "endPoint": { - "x": 336.293617, - "y": 25.608753 - } - } - }, - { - "id": "2a5fdf18-dac1-577f-a6ff-931e141abe9b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.293617, - "y": 25.608753 - }, - "endPoint": { - "x": 336.29441, - "y": 25.611793 - } - } - }, - { - "id": "5934cd6a-1e76-512f-a81e-f10b7d787358", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.29441, - "y": 25.611793 - }, - "endPoint": { - "x": 336.295021, - "y": 25.614783 - } - } - }, - { - "id": "4be6d139-8413-5984-a063-870751bec106", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.295021, - "y": 25.614783 - }, - "endPoint": { - "x": 336.295414, - "y": 25.617758 - } - } - }, - { - "id": "f094e6b5-f427-58ea-94e8-ed2c8b2b39e7", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.295414, - "y": 25.617758 - }, - "endPoint": { - "x": 336.295553, - "y": 25.620754 - } - } - }, - { - "id": "85e24628-a71a-5575-9fc0-16c102b567e3", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.295553, - "y": 25.620754 - }, - "endPoint": { - "x": 336.295408, - "y": 25.623798 - } - } - }, - { - "id": "669554cd-02b1-5332-8fe3-c21911646658", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.295408, - "y": 25.623798 - }, - "endPoint": { - "x": 336.294972, - "y": 25.626871 - } - } - }, - { - "id": "f10542b7-b842-53c7-8d94-806aef9e0f9a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.294972, - "y": 25.626871 - }, - "endPoint": { - "x": 336.294246, - "y": 25.629944 - } - } - }, - { - "id": "31219043-9911-5bdc-8c43-957081163799", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.294246, - "y": 25.629944 - }, - "endPoint": { - "x": 336.29323, - "y": 25.632988 - } - } - }, - { - "id": "9125fa3b-3f71-5d25-8e81-0e4f9d6173cc", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.29323, - "y": 25.632988 - }, - "endPoint": { - "x": 336.291923, - "y": 25.635973 - } - } - }, - { - "id": "4492cc20-832a-5497-9e43-fed34fac717b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.291923, - "y": 25.635973 - }, - "endPoint": { - "x": 336.290325, - "y": 25.638872 - } - } - }, - { - "id": "534d8a66-d9cd-5039-9a16-4c0d8b13e0ef", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.290325, - "y": 25.638872 - }, - "endPoint": { - "x": 336.288437, - "y": 25.641654 - } - } - }, - { - "id": "757d9c56-b166-5e10-93e4-d2ade744b636", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.288437, - "y": 25.641654 - }, - "endPoint": { - "x": 336.286258, - "y": 25.644291 - } - } - }, - { - "id": "24b04e9c-3174-5953-a565-2669d4cc2bc4", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.286258, - "y": 25.644291 - }, - "endPoint": { - "x": 336.28378, - "y": 25.646764 - } - } - }, - { - "id": "1f7d8995-7e8f-5495-9a31-1f61459b3998", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.28378, - "y": 25.646764 - }, - "endPoint": { - "x": 336.280956, - "y": 25.649091 - } - } - }, - { - "id": "5d6abfc3-2e47-5a88-ac4b-1a058560f11f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.280956, - "y": 25.649091 - }, - "endPoint": { - "x": 336.277734, - "y": 25.651303 - } - } - }, - { - "id": "dc7e68c1-0ff5-553a-a403-29d335b0574b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.277734, - "y": 25.651303 - }, - "endPoint": { - "x": 336.274057, - "y": 25.653427 - } - } - }, - { - "id": "78a8ba1c-802a-5e05-98f0-cee4f45eb64d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.274057, - "y": 25.653427 - }, - "endPoint": { - "x": 336.269872, - "y": 25.655493 - } - } - }, - { - "id": "e9738d8d-ce1e-5193-9aaf-257da37c07e1", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.269872, - "y": 25.655493 - }, - "endPoint": { - "x": 336.265123, - "y": 25.65753 - } - } - }, - { - "id": "bdab8b72-02d4-5c79-90b9-5a9d7d7d7590", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.265123, - "y": 25.65753 - }, - "endPoint": { - "x": 336.259758, - "y": 25.659567 - } - } - }, - { - "id": "dfe981c2-2e18-5571-b5c6-b167162600a0", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.259758, - "y": 25.659567 - }, - "endPoint": { - "x": 336.253721, - "y": 25.661633 - } - } - }, - { - "id": "49f3a3a6-b723-5f84-9f82-7560e1d7dbd1", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.253721, - "y": 25.661633 - }, - "endPoint": { - "x": 336.246995, - "y": 25.663751 - } - } - }, - { - "id": "86c81a66-cea6-5883-953a-4908d78a15a8", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.246995, - "y": 25.663751 - }, - "endPoint": { - "x": 336.239718, - "y": 25.665915 - } - } - }, - { - "id": "9c9fbe87-091f-5180-8ab5-7b1e6a0646e3", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.239718, - "y": 25.665915 - }, - "endPoint": { - "x": 336.232062, - "y": 25.668116 - } - } - }, - { - "id": "8edb495e-b34c-52a7-adf7-e7df1a637679", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.232062, - "y": 25.668116 - }, - "endPoint": { - "x": 336.224204, - "y": 25.670343 - } - } - }, - { - "id": "417e2016-c5c8-5af3-a475-35b0a68612e7", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.224204, - "y": 25.670343 - }, - "endPoint": { - "x": 336.216316, - "y": 25.672584 - } - } - }, - { - "id": "59b5dac9-2b4c-594f-8b4d-53447c4c9ed9", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.216316, - "y": 25.672584 - }, - "endPoint": { - "x": 336.208574, - "y": 25.674829 - } - } - }, - { - "id": "1ef03417-5030-5600-96d6-080e91fcf2c9", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.208574, - "y": 25.674829 - }, - "endPoint": { - "x": 336.201151, - "y": 25.677066 - } - } - }, - { - "id": "1ec4663a-7160-5990-8e48-d41197d632cc", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.201151, - "y": 25.677066 - }, - "endPoint": { - "x": 336.194223, - "y": 25.679285 - } - } - }, - { - "id": "6bb86bcc-fcab-55d7-80e4-d11f179f24a9", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.194223, - "y": 25.679285 - }, - "endPoint": { - "x": 336.187921, - "y": 25.681482 - } - } - }, - { - "id": "464b4e60-671a-5ab8-a447-195234e52fe0", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.187921, - "y": 25.681482 - }, - "endPoint": { - "x": 336.182215, - "y": 25.683674 - } - } - }, - { - "id": "ed5fa10a-887d-5430-8fee-ab4ba895604f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.182215, - "y": 25.683674 - }, - "endPoint": { - "x": 336.177032, - "y": 25.685889 - } - } - }, - { - "id": "0dcad499-61d4-5b15-8008-0a689a911966", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.177032, - "y": 25.685889 - }, - "endPoint": { - "x": 336.172299, - "y": 25.688151 - } - } - }, - { - "id": "575dd8c1-bae1-5064-b226-3d9365da4831", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.172299, - "y": 25.688151 - }, - "endPoint": { - "x": 336.167944, - "y": 25.690485 - } - } - }, - { - "id": "4d1498b1-1004-5c67-9d28-f7cbd71d7480", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.167944, - "y": 25.690485 - }, - "endPoint": { - "x": 336.163894, - "y": 25.692917 - } - } - }, - { - "id": "286ea3ff-9e02-5129-ade6-f3bfd7a8636a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.163894, - "y": 25.692917 - }, - "endPoint": { - "x": 336.160076, - "y": 25.695473 - } - } - }, - { - "id": "f27abd78-1345-51fa-adf6-8d127214473f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.160076, - "y": 25.695473 - }, - "endPoint": { - "x": 336.156419, - "y": 25.698178 - } - } - }, - { - "id": "35f0d307-a66c-5f2c-aa65-9460fbfa1607", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.156419, - "y": 25.698178 - }, - "endPoint": { - "x": 336.152863, - "y": 25.701052 - } - } - }, - { - "id": "61f01cbd-46bf-52bb-bb33-9208f6013272", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.152863, - "y": 25.701052 - }, - "endPoint": { - "x": 336.149413, - "y": 25.704096 - } - } - }, - { - "id": "61a1d901-3cc4-5ebb-b6a5-69c3661022b5", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.149413, - "y": 25.704096 - }, - "endPoint": { - "x": 336.146086, - "y": 25.707308 - } - } - }, - { - "id": "4da77c98-ccd6-5811-981f-77d01cf33762", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.146086, - "y": 25.707308 - }, - "endPoint": { - "x": 336.142901, - "y": 25.710683 - } - } - }, - { - "id": "782d89ca-43ac-50fa-93e5-9e7616a53f17", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.142901, - "y": 25.710683 - }, - "endPoint": { - "x": 336.139876, - "y": 25.714217 - } - } - }, - { - "id": "3ea615d7-2e43-5afe-a7e4-6f3d58a1a244", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.139876, - "y": 25.714217 - }, - "endPoint": { - "x": 336.137028, - "y": 25.717908 - } - } - }, - { - "id": "bb9552b9-9ede-5564-88aa-cacedde6a23a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.137028, - "y": 25.717908 - }, - "endPoint": { - "x": 336.134377, - "y": 25.721751 - } - } - }, - { - "id": "d675eecb-60c9-54db-8654-c670863e9ab2", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.134377, - "y": 25.721751 - }, - "endPoint": { - "x": 336.13194, - "y": 25.725742 - } - } - }, - { - "id": "47872e87-d56c-5c47-bbb6-794e5776bd72", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.13194, - "y": 25.725742 - }, - "endPoint": { - "x": 336.129728, - "y": 25.729883 - } - } - }, - { - "id": "4086fd5b-e857-5fe3-9d8e-bd54cae53ddf", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.129728, - "y": 25.729883 - }, - "endPoint": { - "x": 336.127728, - "y": 25.734187 - } - } - }, - { - "id": "d764fa16-27cb-5ed0-af64-ef7019291172", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.127728, - "y": 25.734187 - }, - "endPoint": { - "x": 336.125916, - "y": 25.738672 - } - } - }, - { - "id": "90f3c73e-52d3-53aa-b2df-5f6e8390ff77", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.125916, - "y": 25.738672 - }, - "endPoint": { - "x": 336.124271, - "y": 25.743357 - } - } - }, - { - "id": "7c3add1e-664b-5a5f-8e83-019f2830f911", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.124271, - "y": 25.743357 - }, - "endPoint": { - "x": 336.122771, - "y": 25.748259 - } - } - }, - { - "id": "26ff98e2-1eaf-5d33-8096-6b76844eae8f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.122771, - "y": 25.748259 - }, - "endPoint": { - "x": 336.121395, - "y": 25.753398 - } - } - }, - { - "id": "619990ac-0d83-5e56-9a9b-d94fdc2d9635", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.121395, - "y": 25.753398 - }, - "endPoint": { - "x": 336.12012, - "y": 25.75879 - } - } - }, - { - "id": "d6d767d7-c3b5-5578-a270-c9e00e11703d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.12012, - "y": 25.75879 - }, - "endPoint": { - "x": 336.118926, - "y": 25.764455 - } - } - }, - { - "id": "822d8e7e-10f4-5ef5-8e02-6978bd1bc292", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.118926, - "y": 25.764455 - }, - "endPoint": { - "x": 336.117794, - "y": 25.770394 - } - } - }, - { - "id": "915378ee-cb19-536e-8e13-dfa56a3f63c2", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.117794, - "y": 25.770394 - }, - "endPoint": { - "x": 336.116728, - "y": 25.776552 - } - } - }, - { - "id": "22af9fe9-784f-5020-a08f-05d4af53da93", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.116728, - "y": 25.776552 - }, - "endPoint": { - "x": 336.115735, - "y": 25.782855 - } - } - }, - { - "id": "d3a15399-2162-56c2-b7a0-6d5225c8b4ad", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.115735, - "y": 25.782855 - }, - "endPoint": { - "x": 336.114821, - "y": 25.78923 - } - } - }, - { - "id": "a1bcd728-cbca-54e7-a961-fdcefdfabef7", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.114821, - "y": 25.78923 - }, - "endPoint": { - "x": 336.113995, - "y": 25.795605 - } - } - }, - { - "id": "d7898c1a-5fb2-5db0-8d47-3156e3532b92", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.113995, - "y": 25.795605 - }, - "endPoint": { - "x": 336.113263, - "y": 25.801908 - } - } - }, - { - "id": "ec3da57a-3913-5faa-96f8-1a5c1ae7f67e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.113263, - "y": 25.801908 - }, - "endPoint": { - "x": 336.112633, - "y": 25.808066 - } - } - }, - { - "id": "86be62d0-e8d6-5dd5-8bf1-511cf1e90bca", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.112633, - "y": 25.808066 - }, - "endPoint": { - "x": 336.112111, - "y": 25.814006 - } - } - }, - { - "id": "d5f90edf-4db6-5478-942d-2b436ff4982a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.112111, - "y": 25.814006 - }, - "endPoint": { - "x": 336.111704, - "y": 25.819675 - } - } - }, - { - "id": "4b16d194-709a-5e4c-bd3d-5299234aadaa", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.111704, - "y": 25.819675 - }, - "endPoint": { - "x": 336.11141, - "y": 25.825101 - } - } - }, - { - "id": "238af911-1fdd-5aed-877f-7bdb44421a8a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.11141, - "y": 25.825101 - }, - "endPoint": { - "x": 336.111224, - "y": 25.830332 - } - } - }, - { - "id": "04420151-c75a-53cc-8ca6-b8d27d143610", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.111224, - "y": 25.830332 - }, - "endPoint": { - "x": 336.111143, - "y": 25.835413 - } - } - }, - { - "id": "720d7f64-d99b-5807-a247-accb8201df54", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.111143, - "y": 25.835413 - }, - "endPoint": { - "x": 336.111165, - "y": 25.840393 - } - } - }, - { - "id": "9383e950-5d8c-55da-879e-433107832f94", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.111165, - "y": 25.840393 - }, - "endPoint": { - "x": 336.111284, - "y": 25.845318 - } - } - }, - { - "id": "5808277b-c08e-5072-ad42-30dedb8fae2a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.111284, - "y": 25.845318 - }, - "endPoint": { - "x": 336.111497, - "y": 25.850237 - } - } - }, - { - "id": "df792d78-e12e-5eaa-abde-5bd628dad129", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.111497, - "y": 25.850237 - }, - "endPoint": { - "x": 336.111801, - "y": 25.855195 - } - } - }, - { - "id": "71240dc0-467f-5956-b380-f12a9f87c54f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.111801, - "y": 25.855195 - }, - "endPoint": { - "x": 336.112198, - "y": 25.860226 - } - } - }, - { - "id": "fbb5ce37-f82e-5187-ba2f-ddfbeb65a0c6", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.112198, - "y": 25.860226 - }, - "endPoint": { - "x": 336.11271, - "y": 25.865304 - } - } - }, - { - "id": "1ec8e5ad-6cfc-5158-80c5-ceb593deb259", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.11271, - "y": 25.865304 - }, - "endPoint": { - "x": 336.113368, - "y": 25.870389 - } - } - }, - { - "id": "c55179ee-a327-578f-add9-9ae31a710d62", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.113368, - "y": 25.870389 - }, - "endPoint": { - "x": 336.114201, - "y": 25.875442 - } - } - }, - { - "id": "cc2b0eba-611c-5f9e-9c48-ff41837668e2", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.114201, - "y": 25.875442 - }, - "endPoint": { - "x": 336.115236, - "y": 25.880422 - } - } - }, - { - "id": "c429c202-0fda-5ee9-9014-3f1348f9a4b1", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.115236, - "y": 25.880422 - }, - "endPoint": { - "x": 336.116504, - "y": 25.885289 - } - } - }, - { - "id": "4f5b9c2f-4215-5834-b7d7-4191e2cb225d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.116504, - "y": 25.885289 - }, - "endPoint": { - "x": 336.118034, - "y": 25.890004 - } - } - }, - { - "id": "8747a853-b43d-5332-9f49-12dfa994612b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.118034, - "y": 25.890004 - }, - "endPoint": { - "x": 336.119855, - "y": 25.894527 - } - } - }, - { - "id": "867afbff-ceb8-5202-9018-0f0f57d5a7a2", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.119855, - "y": 25.894527 - }, - "endPoint": { - "x": 336.121987, - "y": 25.898827 - } - } - }, - { - "id": "8f14963a-e0b6-5860-b2e8-50383f9f8f1f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.121987, - "y": 25.898827 - }, - "endPoint": { - "x": 336.124425, - "y": 25.902918 - } - } - }, - { - "id": "15681c49-6359-52a5-859e-9b423ddb2929", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.124425, - "y": 25.902918 - }, - "endPoint": { - "x": 336.127154, - "y": 25.906819 - } - } - }, - { - "id": "4165ddb3-d7d7-5603-9a3e-2bd2e3c670e3", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.127154, - "y": 25.906819 - }, - "endPoint": { - "x": 336.130158, - "y": 25.910554 - } - } - }, - { - "id": "84419059-f423-53eb-b9ee-237312847832", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.130158, - "y": 25.910554 - }, - "endPoint": { - "x": 336.133425, - "y": 25.914143 - } - } - }, - { - "id": "6ac693ed-a38f-5342-be3b-056491176fb3", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.133425, - "y": 25.914143 - }, - "endPoint": { - "x": 336.136938, - "y": 25.917609 - } - } - }, - { - "id": "45c41cf2-f350-5468-8916-89d301583a95", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.136938, - "y": 25.917609 - }, - "endPoint": { - "x": 336.140683, - "y": 25.920973 - } - } - }, - { - "id": "d0fcb6a3-e617-5f43-b9cc-da9e740c6d04", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.140683, - "y": 25.920973 - }, - "endPoint": { - "x": 336.144647, - "y": 25.924258 - } - } - }, - { - "id": "0a5e5114-6d12-5051-892c-5c91b24193e3", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.144647, - "y": 25.924258 - }, - "endPoint": { - "x": 336.148819, - "y": 25.927476 - } - } - }, - { - "id": "85c4d156-d7ed-57b5-975a-32a7ccaaa338", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.148819, - "y": 25.927476 - }, - "endPoint": { - "x": 336.153212, - "y": 25.930611 - } - } - }, - { - "id": "fcebfed7-5952-5e13-aba4-220059e2a9f5", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.153212, - "y": 25.930611 - }, - "endPoint": { - "x": 336.157845, - "y": 25.933638 - } - } - }, - { - "id": "1b715f9d-335f-594f-b887-d6ec125828f0", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.157845, - "y": 25.933638 - }, - "endPoint": { - "x": 336.162736, - "y": 25.93653 - } - } - }, - { - "id": "8a87db0e-d1e3-5f26-a49e-6f825c20c5ab", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.162736, - "y": 25.93653 - }, - "endPoint": { - "x": 336.167903, - "y": 25.939262 - } - } - }, - { - "id": "aacc7a0c-f716-5289-a884-39f20d6a92a6", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.167903, - "y": 25.939262 - }, - "endPoint": { - "x": 336.173364, - "y": 25.941809 - } - } - }, - { - "id": "2f0cd605-99b5-5283-80cf-040fae64bfd5", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.173364, - "y": 25.941809 - }, - "endPoint": { - "x": 336.179137, - "y": 25.944146 - } - } - }, - { - "id": "93490cfa-4fec-5b00-99a5-ea0d97db05a9", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.179137, - "y": 25.944146 - }, - "endPoint": { - "x": 336.185241, - "y": 25.946247 - } - } - }, - { - "id": "033667d2-36f2-54dd-b21b-54a5f6ba427a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.185241, - "y": 25.946247 - }, - "endPoint": { - "x": 336.191711, - "y": 25.948095 - } - } - }, - { - "id": "98c692e9-7af7-5fec-ae0e-dab667517367", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.191711, - "y": 25.948095 - }, - "endPoint": { - "x": 336.198661, - "y": 25.949705 - } - } - }, - { - "id": "fa7f0269-bdcf-5920-a15c-f04274bc88ad", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.198661, - "y": 25.949705 - }, - "endPoint": { - "x": 336.206221, - "y": 25.9511 - } - } - }, - { - "id": "2ea636e0-23de-56db-9041-0ccc3da42ba8", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.206221, - "y": 25.9511 - }, - "endPoint": { - "x": 336.214522, - "y": 25.952306 - } - } - }, - { - "id": "cb4f3bfe-de17-5d75-9d58-3d1224045c05", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.214522, - "y": 25.952306 - }, - "endPoint": { - "x": 336.223695, - "y": 25.953344 - } - } - }, - { - "id": "57885b7c-1b1f-5ec7-8241-353f4ad83006", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.223695, - "y": 25.953344 - }, - "endPoint": { - "x": 336.233869, - "y": 25.954239 - } - } - }, - { - "id": "6c769ef3-edf6-50c1-8530-06b6909b2426", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.233869, - "y": 25.954239 - }, - "endPoint": { - "x": 336.245177, - "y": 25.955014 - } - } - }, - { - "id": "7b1874eb-1353-5621-94c2-aad8f2f63bb0", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.245177, - "y": 25.955014 - }, - "endPoint": { - "x": 336.257748, - "y": 25.955693 - } - } - }, - { - "id": "4c6ee322-ceb5-57fc-993e-b445af8e6328", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.257748, - "y": 25.955693 - }, - "endPoint": { - "x": 336.271943, - "y": 25.956268 - } - } - }, - { - "id": "12176597-fdcc-566e-a380-a175f2826395", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.271943, - "y": 25.956268 - }, - "endPoint": { - "x": 336.289034, - "y": 25.956609 - } - } - }, - { - "id": "aa189d30-2dc9-5281-95e8-83f359719bf5", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.289034, - "y": 25.956609 - }, - "endPoint": { - "x": 336.310522, - "y": 25.956553 - } - } - }, - { - "id": "39b3e8af-0642-54b1-879a-87a8c15f4e1f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.310522, - "y": 25.956553 - }, - "endPoint": { - "x": 336.33791, - "y": 25.955938 - } - } - }, - { - "id": "bbfaa5b1-2c49-5f11-912c-44601e9a0c6d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.33791, - "y": 25.955938 - }, - "endPoint": { - "x": 336.372699, - "y": 25.954602 - } - } - }, - { - "id": "c8753d8e-8852-5ff1-b64e-156a65ddf8c7", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.372699, - "y": 25.954602 - }, - "endPoint": { - "x": 336.41639, - "y": 25.952384 - } - } - }, - { - "id": "6e95d678-a5a8-53bf-9603-ce38ea02dceb", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.41639, - "y": 25.952384 - }, - "endPoint": { - "x": 336.470486, - "y": 25.94912 - } - } - }, - { - "id": "5a5b51fb-054a-57fd-9d09-54e5a0bc249d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.470486, - "y": 25.94912 - }, - "endPoint": { - "x": 336.536487, - "y": 25.944649 - } - } - }, - { - "id": "dfe08184-03c7-5ba9-92d1-8104d16af835", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.536487, - "y": 25.944649 - }, - "endPoint": { - "x": 336.750831, - "y": 25.931424 - } - } - }, - { - "id": "d583c8b4-aff3-582a-aef3-463d1d0358f2", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.750831, - "y": 25.931424 - }, - "endPoint": { - "x": 336.809046, - "y": 25.910267 - } - } - }, - { - "id": "46a862e6-bd97-597e-8958-34fe8b33c819", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.809046, - "y": 25.910267 - }, - "endPoint": { - "x": 336.869908, - "y": 25.867951 - } - } - }, - { - "id": "ded7c93e-af94-5d2a-b97f-11bedef9df78", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.869908, - "y": 25.867951 - }, - "endPoint": { - "x": 336.896374, - "y": 25.828282 - } - } - }, - { - "id": "37fa0753-2ace-5c1a-8188-fbf7971bd27e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.896374, - "y": 25.828282 - }, - "endPoint": { - "x": 336.901664, - "y": 25.78861 - } - } - }, - { - "id": "8212788b-974b-5a83-8af6-5b3a4dfc5479", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.901664, - "y": 25.78861 - }, - "endPoint": { - "x": 336.912251, - "y": 25.703978 - } - } - }, - { - "id": "544af412-c6dc-575a-b4ea-a80d6225c843", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.912251, - "y": 25.703978 - }, - "endPoint": { - "x": 336.899016, - "y": 25.635215 - } - } - }, - { - "id": "387da5da-b8fb-515d-96f4-ae0467f3a0aa", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.899016, - "y": 25.635215 - }, - "endPoint": { - "x": 336.869908, - "y": 25.561164 - } - } - }, - { - "id": "ece12e3e-8e4f-50dd-8a93-097afdf41960", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.869908, - "y": 25.561164 - }, - "endPoint": { - "x": 336.846092, - "y": 25.50827 - } - } - }, - { - "id": "6538b1a0-831f-5c96-b73b-c4bac66a603a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.846092, - "y": 25.50827 - }, - "endPoint": { - "x": 336.822275, - "y": 25.473888 - } - } - }, - { - "id": "daf65cb0-4418-512e-b337-37991367bcb5", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.822275, - "y": 25.473888 - }, - "endPoint": { - "x": 336.822275, - "y": 25.447441 - } - } - }, - { - "id": "9b3258fa-dcd7-5091-916a-f1737e81f80a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.822275, - "y": 25.447441 - }, - "endPoint": { - "x": 336.838153, - "y": 25.420994 - } - } - }, - { - "id": "8fa4e0b6-d654-571c-b5d2-f227a04a6ee0", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.838153, - "y": 25.420994 - }, - "endPoint": { - "x": 336.896374, - "y": 25.376034 - } - } - }, - { - "id": "dc581f37-3acb-526a-99f0-e23f00fc6e53", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.896374, - "y": 25.376034 - }, - "endPoint": { - "x": 336.981047, - "y": 25.339006 - } - } - }, - { - "id": "0a7a6948-5a18-51e8-a2c7-ff7d58f98c81", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.981047, - "y": 25.339006 - }, - "endPoint": { - "x": 337.11336, - "y": 25.283468 - } - } - }, - { - "id": "f6164e9a-5619-5466-bfb5-7c40f5b9c521", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.11336, - "y": 25.283468 - }, - "endPoint": { - "x": 337.302038, - "y": 25.205598 - } - } - }, - { - "id": "a751fd38-776c-57ac-9f7e-d394f680640a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.302038, - "y": 25.205598 - }, - "endPoint": { - "x": 337.397299, - "y": 25.160639 - } - } - }, - { - "id": "2b13b5a9-6fec-5798-ac60-a1b3a468c805", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.397299, - "y": 25.160639 - }, - "endPoint": { - "x": 337.481978, - "y": 25.118323 - } - } - }, - { - "id": "8c1817dd-ddc1-599f-bd59-82486aee5a58", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.481978, - "y": 25.118323 - }, - "endPoint": { - "x": 337.561367, - "y": 25.070716 - } - } - }, - { - "id": "469837bf-d4b3-5218-b312-cf9ac4d507b3", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.561367, - "y": 25.070716 - }, - "endPoint": { - "x": 337.630169, - "y": 25.025756 - } - } - }, - { - "id": "07e176d7-709a-5eba-8808-37f85957de51", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.630169, - "y": 25.025756 - }, - "endPoint": { - "x": 337.685735, - "y": 24.988731 - } - } - }, - { - "id": "032b739e-ec0e-545e-97a1-1a41c60a96d4", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.685735, - "y": 24.988731 - }, - "endPoint": { - "x": 337.720139, - "y": 24.949059 - } - } - }, - { - "id": "b5e2cdc8-3cd1-5480-9ffc-f2f93a2e2e1a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.720139, - "y": 24.949059 - }, - "endPoint": { - "x": 337.770414, - "y": 24.890877 - } - } - }, - { - "id": "c3573cdf-79fd-5f49-b028-b7dc858e1ffd", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.770414, - "y": 24.890877 - }, - "endPoint": { - "x": 337.78894, - "y": 24.827401 - } - } - }, - { - "id": "6bf2bd26-715a-5b75-a30f-fba2b89bcc9c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.78894, - "y": 24.827401 - }, - "endPoint": { - "x": 337.80217, - "y": 24.758638 - } - } - }, - { - "id": "0b6531be-4e00-5eb0-b9b6-0ac095ed4de7", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.80217, - "y": 24.758638 - }, - "endPoint": { - "x": 337.80217, - "y": 24.663428 - } - } - }, - { - "id": "2b93060c-ca47-54c8-a4a5-ebf465870ae8", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.80217, - "y": 24.663428 - }, - "endPoint": { - "x": 337.794231, - "y": 24.60789 - } - } - }, - { - "id": "709d3579-4bde-56ea-8dcf-97c8e8bf3941", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.794231, - "y": 24.60789 - }, - "endPoint": { - "x": 337.762475, - "y": 24.573508 - } - } - }, - { - "id": "7c3cf31b-91eb-5551-8e1f-6b235acd88d4", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.762475, - "y": 24.573508 - }, - "endPoint": { - "x": 337.706903, - "y": 24.531192 - } - } - }, - { - "id": "127e6a67-7c1f-5445-a8d4-8ef92fc4f080", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.706903, - "y": 24.531192 - }, - "endPoint": { - "x": 337.646047, - "y": 24.528548 - } - } - }, - { - "id": "daa32c41-7a85-526d-b669-33aec1946028", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.646047, - "y": 24.528548 - }, - "endPoint": { - "x": 337.574596, - "y": 24.528548 - } - } - }, - { - "id": "6ed734ab-ec4a-5e09-b257-9297b39d78ae", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.574596, - "y": 24.528548 - }, - "endPoint": { - "x": 337.511085, - "y": 24.552352 - } - } - }, - { - "id": "1857b40a-58c5-5d39-ba37-a920c0e795b5", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.511085, - "y": 24.552352 - }, - "endPoint": { - "x": 337.455519, - "y": 24.589377 - } - } - }, - { - "id": "c4225f7a-0603-5b92-88d4-75be63ea020b", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.455519, - "y": 24.589377 - }, - "endPoint": { - "x": 337.341733, - "y": 24.687231 - } - } - }, - { - "id": "a41b271e-1569-54cf-ac09-aedb04b827ef", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.341733, - "y": 24.687231 - }, - "endPoint": { - "x": 337.220007, - "y": 24.779798 - } - } - }, - { - "id": "a128371f-a613-5459-b750-af03f7554847", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.220007, - "y": 24.779798 - }, - "endPoint": { - "x": 337.111511, - "y": 24.856495 - } - } - }, - { - "id": "780ac4ba-b1b0-53e2-a4e9-c70dfca87603", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.111511, - "y": 24.856495 - }, - "endPoint": { - "x": 337.005663, - "y": 24.93848 - } - } - }, - { - "id": "f5d2beb7-6ea3-582c-a1b8-7dc67ad0eeb3", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 337.005663, - "y": 24.93848 - }, - "endPoint": { - "x": 336.878647, - "y": 25.025756 - } - } - }, - { - "id": "aef2489a-5f78-589c-ae31-cb834e775613", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.878647, - "y": 25.025756 - }, - "endPoint": { - "x": 336.76486, - "y": 25.081297 - } - } - }, - { - "id": "51b68cdd-78bb-5064-b616-d39a402781eb", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.76486, - "y": 25.081297 - }, - "endPoint": { - "x": 336.674603, - "y": 25.126667 - } - } - }, - { - "id": "22523f67-e08a-57e9-81a9-f850d61053f5", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.674603, - "y": 25.126667 - }, - "endPoint": { - "x": 336.622547, - "y": 25.141534 - } - } - }, - { - "id": "da2bf6fa-bf63-502e-9e06-baea525d7cf4", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.622547, - "y": 25.141534 - }, - "endPoint": { - "x": 336.596519, - "y": 25.134101 - } - } - }, - { - "id": "29c2aa6a-c433-5303-b6c9-a9154028a2d8", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.596519, - "y": 25.134101 - }, - "endPoint": { - "x": 336.553752, - "y": 25.117377 - } - } - }, - { - "id": "a5cd8c8a-5af7-511f-951f-ad3cc4dff2d6", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.553752, - "y": 25.117377 - }, - "endPoint": { - "x": 336.507274, - "y": 25.083929 - } - } - }, - { - "id": "c3acca93-e85d-583d-a4c4-e6bd7e5e1297", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.507274, - "y": 25.083929 - }, - "endPoint": { - "x": 336.464513, - "y": 25.031899 - } - } - }, - { - "id": "048b8f3a-e8ce-5a8a-8eae-661a1ede6c05", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.464513, - "y": 25.031899 - }, - "endPoint": { - "x": 336.425468, - "y": 25.000311 - } - } - }, - { - "id": "b572814b-4402-5166-ab48-41938be815aa", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.425468, - "y": 25.000311 - }, - "endPoint": { - "x": 336.304617, - "y": 24.89997 - } - } - }, - { - "id": "0883c09b-a4fd-5e53-8a9d-d25d213f2da0", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.304617, - "y": 24.89997 - }, - "endPoint": { - "x": 336.139149, - "y": 24.779187 - } - } - }, - { - "id": "42746951-7340-5137-98ea-5ea38b5a3be2", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.139149, - "y": 24.779187 - }, - "endPoint": { - "x": 336.003426, - "y": 24.689994 - } - } - }, - { - "id": "3b4584fc-553f-509f-bff5-997995a89aef", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.003426, - "y": 24.689994 - }, - "endPoint": { - "x": 335.881538, - "y": 24.626227 - } - } - }, - { - "id": "e8916a63-a862-589e-b07a-4192ba9157b4", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.881538, - "y": 24.626227 - }, - "endPoint": { - "x": 335.801587, - "y": 24.581631 - } - } - }, - { - "id": "627f9fca-766f-5699-b8ba-e1ece6d98e27", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.801587, - "y": 24.581631 - }, - "endPoint": { - "x": 335.738375, - "y": 24.559334 - } - } - }, - { - "id": "b063eaec-9c58-5e14-813e-8a0b7b2edd55", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.738375, - "y": 24.559334 - }, - "endPoint": { - "x": 335.632396, - "y": 24.516595 - } - } - }, - { - "id": "e894ee03-cf9d-5834-b55c-4325dba60892", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.632396, - "y": 24.516595 - }, - "endPoint": { - "x": 335.563607, - "y": 24.499871 - } - } - }, - { - "id": "1a4e2f37-c8b9-5517-88e8-21d84026ffc9", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.563607, - "y": 24.499871 - }, - "endPoint": { - "x": 335.502251, - "y": 24.499871 - } - } - }, - { - "id": "b3d623fe-cf43-5016-9600-909d47f59047", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.502251, - "y": 24.499871 - }, - "endPoint": { - "x": 335.442756, - "y": 24.499871 - } - } - }, - { - "id": "cc5b3c8b-b7be-5ccd-a7c6-b67984fd63a9", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.442756, - "y": 24.499871 - }, - "endPoint": { - "x": 335.379545, - "y": 24.507304 - } - } - }, - { - "id": "9d4e8398-e227-58de-84a8-e734c2dfa9fb", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.379545, - "y": 24.507304 - }, - "endPoint": { - "x": 335.329344, - "y": 24.544467 - } - } - }, - { - "id": "690b71b4-49f6-54e3-a71e-ab2556569a24", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.329344, - "y": 24.544467 - }, - "endPoint": { - "x": 335.305178, - "y": 24.585349 - } - } - }, - { - "id": "833e8bf1-055f-59a7-b448-f1839b775aca", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.305178, - "y": 24.585349 - }, - "endPoint": { - "x": 335.305178, - "y": 24.626227 - } - } - }, - { - "id": "1b620328-5db7-5f6e-ac67-2bc71c696576", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.305178, - "y": 24.626227 - }, - "endPoint": { - "x": 335.32005, - "y": 24.678257 - } - } - }, - { - "id": "9b9f3482-8d33-52b1-a7cc-9514b98733e4", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.32005, - "y": 24.678257 - }, - "endPoint": { - "x": 335.364672, - "y": 24.71728 - } - } - }, - { - "id": "e3c56ad8-4169-52bc-9ddf-f0a4c2382a0d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.364672, - "y": 24.71728 - }, - "endPoint": { - "x": 335.498534, - "y": 24.800898 - } - } - }, - { - "id": "9ec022fa-5ea0-5554-9e6e-6cfb804708c8", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.498534, - "y": 24.800898 - }, - "endPoint": { - "x": 335.654708, - "y": 24.903099 - } - } - }, - { - "id": "f9b915d1-6c0e-5db9-a39e-0aff50c2a62e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.654708, - "y": 24.903099 - }, - "endPoint": { - "x": 335.758825, - "y": 24.97185 - } - } - }, - { - "id": "8057b941-3ce4-5c54-a7a3-3ba8afb6756e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.758825, - "y": 24.97185 - }, - "endPoint": { - "x": 335.902425, - "y": 25.097088 - } - } - }, - { - "id": "b29b4ab2-07c6-5b74-8526-558749759a6e", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 335.902425, - "y": 25.097088 - }, - "endPoint": { - "x": 336.01212, - "y": 25.208581 - } - } - }, - { - "id": "01d4ec3c-f02b-5575-8b2d-ded953013247", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.01212, - "y": 25.208581 - }, - "endPoint": { - "x": 336.119954, - "y": 25.327503 - } - } - }, - { - "id": "6aa1523a-b403-5ddf-a03d-a475267b37b3", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.119954, - "y": 25.327503 - }, - "endPoint": { - "x": 336.205483, - "y": 25.442711 - } - } - }, - { - "id": "3e1505f1-9070-51d7-922b-c811c8fc95a9", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.205483, - "y": 25.442711 - }, - "endPoint": { - "x": 336.25589, - "y": 25.512361 - } - } - }, - { - "id": "196ae63c-b36e-57ab-bd14-8854b4f88850", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.25589, - "y": 25.512361 - }, - "endPoint": { - "x": 336.280057, - "y": 25.560672 - } - } - }, - { - "id": "65d07971-2533-5ece-b872-e409dc44cf8d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.280057, - "y": 25.560672 - }, - "endPoint": { - "x": 336.289357, - "y": 25.597835 - } - } - }, - { - "id": "7ebc3b9e-aa4b-58cd-b213-8114be9feb50", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.289357, - "y": 25.597835 - }, - "endPoint": { - "x": 336.298651, - "y": 25.620135 - } - } - }, - { - "id": "a7dfd802-fc1c-5af2-984c-3076b40f9bb6", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.298651, - "y": 25.620135 - }, - "endPoint": { - "x": 336.289357, - "y": 25.64615 - } - } - }, - { - "id": "3b954d66-a4d9-5e79-8151-ec6857215038", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.289357, - "y": 25.64615 - }, - "endPoint": { - "x": 336.261468, - "y": 25.661013 - } - } - }, - { - "id": "e3d513d4-5827-5d39-a18e-6bdcc79a0e9a", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.261468, - "y": 25.661013 - }, - "endPoint": { - "x": 336.187095, - "y": 25.679595 - } - } - }, - { - "id": "90f09e3d-c917-5dc0-89f9-4c2b4d7d910d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.187095, - "y": 25.679595 - }, - "endPoint": { - "x": 336.155489, - "y": 25.696319 - } - } - }, - { - "id": "e0aa2c00-a565-5c79-b255-971786b60f59", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.155489, - "y": 25.696319 - }, - "endPoint": { - "x": 336.129461, - "y": 25.724195 - } - } - }, - { - "id": "156b9b8e-055d-559a-b007-dc561d553644", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.129461, - "y": 25.724195 - }, - "endPoint": { - "x": 336.118305, - "y": 25.761358 - } - } - }, - { - "id": "29718771-296d-5528-af68-3f31c0acb599", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.118305, - "y": 25.761358 - }, - "endPoint": { - "x": 336.110872, - "y": 25.817102 - } - } - }, - { - "id": "a2ee52f4-e611-5d7c-8f0f-78c5d0a2b97f", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.110872, - "y": 25.817102 - }, - "endPoint": { - "x": 336.110872, - "y": 25.854266 - } - } - }, - { - "id": "96531008-d6f3-5abf-8ff8-016be1d88d13", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.110872, - "y": 25.854266 - }, - "endPoint": { - "x": 336.116444, - "y": 25.897005 - } - } - }, - { - "id": "f04e4dab-0dde-594d-b37d-6c14d937c157", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.116444, - "y": 25.897005 - }, - "endPoint": { - "x": 336.142478, - "y": 25.924877 - } - } - }, - { - "id": "1ddc7454-0ff7-5969-a652-1cacb69543e7", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.142478, - "y": 25.924877 - }, - "endPoint": { - "x": 336.181523, - "y": 25.949034 - } - } - }, - { - "id": "ae516a66-6aec-53aa-8ab5-1dfcaa660fe6", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.181523, - "y": 25.949034 - }, - "endPoint": { - "x": 336.242873, - "y": 25.956467 - } - } - }, - { - "id": "073a09e9-8c80-5073-b029-9ecc52168a8c", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.242873, - "y": 25.956467 - }, - "endPoint": { - "x": 336.343274, - "y": 25.958325 - } - } - }, - { - "id": "603895a3-648e-54ef-b7c9-bb413d436d1d", - "type": "Line", - "lineColor": "#ffbf00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 336.343274, - "y": 25.958325 - }, - "endPoint": { - "x": 336.536487, - "y": 25.944649 - } - } - } - ] - }, - { - "id": "cb29da52-5641-5234-8a71-ad003aba8826", - "type": "PolyLine", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": null, - "children": [ - { - "id": "544ace33-ccde-5ce9-9c02-fb7e8e9b2c67", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.166352, - "y": 25.460318 - }, - "endPoint": { - "x": 326.183429, - "y": 25.471174 - } - } - }, - { - "id": "2f61b21a-ed95-56ef-80eb-10e7954290f6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.183429, - "y": 25.471174 - }, - "endPoint": { - "x": 326.200328, - "y": 25.482303 - } - } - }, - { - "id": "9e85db7a-088b-5de8-af28-4111df9ca41e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.200328, - "y": 25.482303 - }, - "endPoint": { - "x": 326.217044, - "y": 25.493705 - } - } - }, - { - "id": "62c82c55-53b1-5e30-a0d6-1d7e003b3630", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.217044, - "y": 25.493705 - }, - "endPoint": { - "x": 326.233574, - "y": 25.505378 - } - } - }, - { - "id": "65d7b443-7853-52fe-a0d7-b187aef1b1f9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.233574, - "y": 25.505378 - }, - "endPoint": { - "x": 326.24369, - "y": 25.512846 - } - } - }, - { - "id": "9766099f-e9d8-53bd-a8b2-b6d4812a69b6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.24369, - "y": 25.512846 - }, - "endPoint": { - "x": 326.253606, - "y": 25.520575 - } - } - }, - { - "id": "f130f37f-d2e0-542a-8bbf-01300dff5694", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.253606, - "y": 25.520575 - }, - "endPoint": { - "x": 326.263317, - "y": 25.52856 - } - } - }, - { - "id": "5b934581-1c84-5f2c-be93-d0631804ef78", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.263317, - "y": 25.52856 - }, - "endPoint": { - "x": 326.272818, - "y": 25.536797 - } - } - }, - { - "id": "49b59e58-c514-5f34-80bb-10710c89f58d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.272818, - "y": 25.536797 - }, - "endPoint": { - "x": 326.286827, - "y": 25.549274 - } - } - }, - { - "id": "270d17b2-bbcc-5fea-afdc-42fc98c9e626", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.286827, - "y": 25.549274 - }, - "endPoint": { - "x": 326.300829, - "y": 25.561759 - } - } - }, - { - "id": "81c035ec-28fa-55be-b10f-43c3f5eabb25", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.300829, - "y": 25.561759 - }, - "endPoint": { - "x": 326.314824, - "y": 25.574252 - } - } - }, - { - "id": "cb9f7567-10d2-59e4-9f45-68923d0b6742", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.314824, - "y": 25.574252 - }, - "endPoint": { - "x": 326.328811, - "y": 25.586754 - } - } - }, - { - "id": "73de7756-ca15-57fd-9edb-38de65398ea0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.328811, - "y": 25.586754 - }, - "endPoint": { - "x": 326.330627, - "y": 25.588385 - } - } - }, - { - "id": "291da605-2b11-5beb-b792-b693522c4b9f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.330627, - "y": 25.588385 - }, - "endPoint": { - "x": 326.332435, - "y": 25.590024 - } - } - }, - { - "id": "65a1db1e-8a6f-5caf-ac98-e59e4337e09c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.332435, - "y": 25.590024 - }, - "endPoint": { - "x": 326.334236, - "y": 25.591672 - } - } - }, - { - "id": "a72ec5a4-8d8f-56a5-84f6-5249d425a28b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.334236, - "y": 25.591672 - }, - "endPoint": { - "x": 326.336029, - "y": 25.593328 - } - } - }, - { - "id": "a6194a9e-7c2d-5843-8974-ebd862c748d0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.336029, - "y": 25.593328 - }, - "endPoint": { - "x": 326.350179, - "y": 25.606508 - } - } - }, - { - "id": "7f8b1b28-09ba-5e7f-ba77-786dd9f2b6a1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.350179, - "y": 25.606508 - }, - "endPoint": { - "x": 326.364274, - "y": 25.619748 - } - } - }, - { - "id": "66fdc91f-1e9d-56f7-a53a-ac845e9771e5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.364274, - "y": 25.619748 - }, - "endPoint": { - "x": 326.378312, - "y": 25.633047 - } - } - }, - { - "id": "27c2d1a6-50ec-51ed-ad87-607e763bb635", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.378312, - "y": 25.633047 - }, - "endPoint": { - "x": 326.392294, - "y": 25.646405 - } - } - }, - { - "id": "00041cbe-d2a6-5578-aab3-8f05c5f56efd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.392294, - "y": 25.646405 - }, - "endPoint": { - "x": 326.399109, - "y": 25.653 - } - } - }, - { - "id": "ea966d35-606b-5a8a-8972-7cefc06d4808", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.399109, - "y": 25.653 - }, - "endPoint": { - "x": 326.405867, - "y": 25.659653 - } - } - }, - { - "id": "78a45727-bb86-5dc0-954b-bc6c78f8f980", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.405867, - "y": 25.659653 - }, - "endPoint": { - "x": 326.412567, - "y": 25.666364 - } - } - }, - { - "id": "e0c94436-9d6f-5fa3-8785-3b3b49f0a1d4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.412567, - "y": 25.666364 - }, - "endPoint": { - "x": 326.419209, - "y": 25.673133 - } - } - }, - { - "id": "8e79af2e-d883-5d44-8589-b045889d162d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.419209, - "y": 25.673133 - }, - "endPoint": { - "x": 326.42493, - "y": 25.67907 - } - } - }, - { - "id": "2c0080a1-158d-55ad-995e-b30583b4f325", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.42493, - "y": 25.67907 - }, - "endPoint": { - "x": 326.430594, - "y": 25.685062 - } - } - }, - { - "id": "4c20b66a-1fb5-5129-868f-b9b47f01aba0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.430594, - "y": 25.685062 - }, - "endPoint": { - "x": 326.436199, - "y": 25.691108 - } - } - }, - { - "id": "a2677349-91ca-5675-a20c-20bdf9498cfa", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.436199, - "y": 25.691108 - }, - "endPoint": { - "x": 326.441745, - "y": 25.697208 - } - } - }, - { - "id": "e0277258-f888-57dc-9ecd-4f6ed060d7fb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.441745, - "y": 25.697208 - }, - "endPoint": { - "x": 326.451173, - "y": 25.707736 - } - } - }, - { - "id": "0c61d6b9-e6c4-5e53-84cb-986f561f69b6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.451173, - "y": 25.707736 - }, - "endPoint": { - "x": 326.460541, - "y": 25.718318 - } - } - }, - { - "id": "fcf54d21-15d5-5200-b941-52448b54c919", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.460541, - "y": 25.718318 - }, - "endPoint": { - "x": 326.469849, - "y": 25.728951 - } - } - }, - { - "id": "c1a15a15-950a-5642-9f7d-eb9e896eb648", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.469849, - "y": 25.728951 - }, - "endPoint": { - "x": 326.479098, - "y": 25.739637 - } - } - }, - { - "id": "07c9fec9-9c98-5f48-8487-7df2abe69a0e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.479098, - "y": 25.739637 - }, - "endPoint": { - "x": 326.484558, - "y": 25.746027 - } - } - }, - { - "id": "2b37004f-cdcc-5b18-a96a-29569ea8a80c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.484558, - "y": 25.746027 - }, - "endPoint": { - "x": 326.489973, - "y": 25.752456 - } - } - }, - { - "id": "8720f509-c2d0-5000-9d3b-8477fdc3bbef", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.489973, - "y": 25.752456 - }, - "endPoint": { - "x": 326.495343, - "y": 25.758921 - } - } - }, - { - "id": "48a56c79-b051-53f2-9901-f09001cdd7c6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.495343, - "y": 25.758921 - }, - "endPoint": { - "x": 326.500668, - "y": 25.765425 - } - } - }, - { - "id": "c4e23913-ffc5-5b85-8d04-d720a6828cfa", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.500668, - "y": 25.765425 - }, - "endPoint": { - "x": 326.506157, - "y": 25.772224 - } - } - }, - { - "id": "f3b3884a-4d47-5922-a0cc-61829483bc95", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.506157, - "y": 25.772224 - }, - "endPoint": { - "x": 326.5116, - "y": 25.77906 - } - } - }, - { - "id": "2dd8f5d2-4cc4-5fb1-9317-14adf92cdf8d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.5116, - "y": 25.77906 - }, - "endPoint": { - "x": 326.516996, - "y": 25.785933 - } - } - }, - { - "id": "642961b2-edef-5ee1-8459-e5c79bc856af", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.516996, - "y": 25.785933 - }, - "endPoint": { - "x": 326.522346, - "y": 25.792842 - } - } - }, - { - "id": "3d8a1653-4933-52b5-8b09-fd0143706265", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.522346, - "y": 25.792842 - }, - "endPoint": { - "x": 326.528403, - "y": 25.800907 - } - } - }, - { - "id": "9baddb89-9fcd-5bd8-aa39-f41355cc1157", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.528403, - "y": 25.800907 - }, - "endPoint": { - "x": 326.534271, - "y": 25.809109 - } - } - }, - { - "id": "c3771483-d319-5487-b1a7-aa1467b5dc72", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.534271, - "y": 25.809109 - }, - "endPoint": { - "x": 326.53995, - "y": 25.817444 - } - } - }, - { - "id": "b89a51eb-a4da-5efc-960d-ef942b8d8e78", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.53995, - "y": 25.817444 - }, - "endPoint": { - "x": 326.545436, - "y": 25.825907 - } - } - }, - { - "id": "166d7d47-908f-5478-82bb-67d6c035718d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.545436, - "y": 25.825907 - }, - "endPoint": { - "x": 326.549947, - "y": 25.833264 - } - } - }, - { - "id": "4639d787-0550-53d0-b77d-d4843c5c7809", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.549947, - "y": 25.833264 - }, - "endPoint": { - "x": 326.554259, - "y": 25.840737 - } - } - }, - { - "id": "6881c501-f920-5b9e-9ccc-874781a8c165", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.554259, - "y": 25.840737 - }, - "endPoint": { - "x": 326.558368, - "y": 25.848324 - } - } - }, - { - "id": "61b6fe84-64f4-5f55-997b-3785aadb63a4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.558368, - "y": 25.848324 - }, - "endPoint": { - "x": 326.562272, - "y": 25.85602 - } - } - }, - { - "id": "ac64fcef-f520-5b17-899a-6d2a87e43251", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.562272, - "y": 25.85602 - }, - "endPoint": { - "x": 326.564179, - "y": 25.859971 - } - } - }, - { - "id": "de5a9f82-7431-5535-9dc1-1f258688a897", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.564179, - "y": 25.859971 - }, - "endPoint": { - "x": 326.566036, - "y": 25.863946 - } - } - }, - { - "id": "a4b580c6-7145-55fd-9d65-9e1cd7931e14", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.566036, - "y": 25.863946 - }, - "endPoint": { - "x": 326.567841, - "y": 25.867944 - } - } - }, - { - "id": "62a9c43a-e76f-5c04-af4b-0e94bfa521ba", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.567841, - "y": 25.867944 - }, - "endPoint": { - "x": 326.569596, - "y": 25.871966 - } - } - }, - { - "id": "dfd04139-5c09-52c5-9193-6d2a8496ca8f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.569596, - "y": 25.871966 - }, - "endPoint": { - "x": 326.572833, - "y": 25.879586 - } - } - }, - { - "id": "7aa54bb3-15cb-52c6-b909-c5929200d814", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.572833, - "y": 25.879586 - }, - "endPoint": { - "x": 326.576019, - "y": 25.887227 - } - } - }, - { - "id": "eaa0a480-6134-5234-9b86-600e71c8435a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.576019, - "y": 25.887227 - }, - "endPoint": { - "x": 326.579153, - "y": 25.89489 - } - } - }, - { - "id": "08a1b8e8-d00a-57b2-aa2b-7d73debb7547", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.579153, - "y": 25.89489 - }, - "endPoint": { - "x": 326.582235, - "y": 25.902574 - } - } - }, - { - "id": "45be7d7e-4740-520b-9f0d-0d36d225f819", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.582235, - "y": 25.902574 - }, - "endPoint": { - "x": 326.585963, - "y": 25.912156 - } - } - }, - { - "id": "f0b9c0a8-97e6-5db1-9122-a3873a80af7c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.585963, - "y": 25.912156 - }, - "endPoint": { - "x": 326.589556, - "y": 25.921788 - } - } - }, - { - "id": "35b90641-8ab2-550d-bbc5-f21be7c3ab1a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.589556, - "y": 25.921788 - }, - "endPoint": { - "x": 326.593013, - "y": 25.931471 - } - } - }, - { - "id": "c71639a6-740c-50b5-adb0-309ca301532d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.593013, - "y": 25.931471 - }, - "endPoint": { - "x": 326.596334, - "y": 25.941201 - } - } - }, - { - "id": "3230f178-8aae-57f2-bab9-89a17d784207", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.596334, - "y": 25.941201 - }, - "endPoint": { - "x": 326.597179, - "y": 25.943963 - } - } - }, - { - "id": "cdb3ca68-ba53-5e67-a037-f2747234075e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.597179, - "y": 25.943963 - }, - "endPoint": { - "x": 326.597884, - "y": 25.946763 - } - } - }, - { - "id": "9df7304e-27c7-5261-8f6d-152fbd42d628", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.597884, - "y": 25.946763 - }, - "endPoint": { - "x": 326.598447, - "y": 25.949594 - } - } - }, - { - "id": "c22a6184-0c93-54f3-b069-1541e8ca7572", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.598447, - "y": 25.949594 - }, - "endPoint": { - "x": 326.598868, - "y": 25.952452 - } - } - }, - { - "id": "a7e6a58f-6cd6-5b94-b585-dc39f3b4f02f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.598868, - "y": 25.952452 - }, - "endPoint": { - "x": 326.599141, - "y": 25.955336 - } - } - }, - { - "id": "1b1bc80c-4ae6-5772-ad5b-146cc14ff52c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.599141, - "y": 25.955336 - }, - "endPoint": { - "x": 326.59926, - "y": 25.958228 - } - } - }, - { - "id": "a6c2d35d-22de-53f0-b014-ff0037b2d983", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.59926, - "y": 25.958228 - }, - "endPoint": { - "x": 326.599223, - "y": 25.961123 - } - } - }, - { - "id": "00c72a17-2f28-50bd-9ba1-e0732b26ef1f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.599223, - "y": 25.961123 - }, - "endPoint": { - "x": 326.599031, - "y": 25.964013 - } - } - }, - { - "id": "a854813d-5553-500c-9e47-49238fb76e70", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.599031, - "y": 25.964013 - }, - "endPoint": { - "x": 326.598758, - "y": 25.967768 - } - } - }, - { - "id": "7b55a510-d762-5396-950a-db51310b3ce7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.598758, - "y": 25.967768 - }, - "endPoint": { - "x": 326.59864, - "y": 25.971529 - } - } - }, - { - "id": "15992c47-fbcf-5dab-ab1f-8bc96f6264bb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.59864, - "y": 25.971529 - }, - "endPoint": { - "x": 326.598677, - "y": 25.975292 - } - } - }, - { - "id": "e4b4297b-8d35-58f5-b2aa-24cb086edbb2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.598677, - "y": 25.975292 - }, - "endPoint": { - "x": 326.598868, - "y": 25.979052 - } - } - }, - { - "id": "6e03c5ea-3c5a-5509-befb-4feb5ffcbcaa", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.598868, - "y": 25.979052 - }, - "endPoint": { - "x": 326.599151, - "y": 25.982683 - } - } - }, - { - "id": "cd2ef3d1-8ae9-5d0e-a012-44c582d3531d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.599151, - "y": 25.982683 - }, - "endPoint": { - "x": 326.59948, - "y": 25.986309 - } - } - }, - { - "id": "853125ae-ae6a-51f1-b060-21d49344904c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.59948, - "y": 25.986309 - }, - "endPoint": { - "x": 326.599853, - "y": 25.989931 - } - } - }, - { - "id": "c084cfae-91c3-566c-beed-946e8aa44b3b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.599853, - "y": 25.989931 - }, - "endPoint": { - "x": 326.600273, - "y": 25.993548 - } - } - }, - { - "id": "28a365c7-8651-5965-9da6-e61427c2d344", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.600273, - "y": 25.993548 - }, - "endPoint": { - "x": 326.600822, - "y": 25.998231 - } - } - }, - { - "id": "e930a8a7-82b8-5802-b1a3-c579f8b20930", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.600822, - "y": 25.998231 - }, - "endPoint": { - "x": 326.601326, - "y": 26.002918 - } - } - }, - { - "id": "3df7e10e-58a4-5eb0-8efc-7c529408bc82", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.601326, - "y": 26.002918 - }, - "endPoint": { - "x": 326.601784, - "y": 26.00761 - } - } - }, - { - "id": "126db72a-aa11-5287-96ad-6d06e626eadd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.601784, - "y": 26.00761 - }, - "endPoint": { - "x": 326.602198, - "y": 26.012306 - } - } - }, - { - "id": "7699d016-a669-57d9-a4e0-ae8ff2ef7c2a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.602198, - "y": 26.012306 - }, - "endPoint": { - "x": 326.602468, - "y": 26.016029 - } - } - }, - { - "id": "ce55f655-58c8-5963-b384-c78d02278631", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.602468, - "y": 26.016029 - }, - "endPoint": { - "x": 326.602662, - "y": 26.019756 - } - } - }, - { - "id": "6fdf4c17-cdff-5674-93ca-1b8ba44b5492", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.602662, - "y": 26.019756 - }, - "endPoint": { - "x": 326.602778, - "y": 26.023486 - } - } - }, - { - "id": "5ca356d1-ffb9-5a2a-938a-1f441f563657", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.602778, - "y": 26.023486 - }, - "endPoint": { - "x": 326.602816, - "y": 26.027219 - } - } - }, - { - "id": "6a9ac8a2-2bf0-52f2-a9e1-64aadd60276f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.602816, - "y": 26.027219 - }, - "endPoint": { - "x": 326.602778, - "y": 26.030146 - } - } - }, - { - "id": "01768ce9-5d39-585a-9cf4-5cc02d78ad72", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.602778, - "y": 26.030146 - }, - "endPoint": { - "x": 326.602661, - "y": 26.033071 - } - } - }, - { - "id": "86c4dbc5-aba3-5deb-9161-ecb422cf07f4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.602661, - "y": 26.033071 - }, - "endPoint": { - "x": 326.602468, - "y": 26.035992 - } - } - }, - { - "id": "0ff77c66-ce24-598d-973b-3300d95c8254", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.602468, - "y": 26.035992 - }, - "endPoint": { - "x": 326.602198, - "y": 26.038907 - } - } - }, - { - "id": "9ab164e4-b671-5389-9720-d2ce4441abdd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.602198, - "y": 26.038907 - }, - "endPoint": { - "x": 326.601769, - "y": 26.041323 - } - } - }, - { - "id": "518e08c9-fb95-5680-a8e2-af46609048cb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.601769, - "y": 26.041323 - }, - "endPoint": { - "x": 326.601014, - "y": 26.043645 - } - } - }, - { - "id": "f9377001-642b-50f7-8573-107c5f72d950", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.601014, - "y": 26.043645 - }, - "endPoint": { - "x": 326.599945, - "y": 26.04584 - } - } - }, - { - "id": "ca2ca898-33ac-544c-966a-8602f2336428", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.599945, - "y": 26.04584 - }, - "endPoint": { - "x": 326.598575, - "y": 26.047875 - } - } - }, - { - "id": "18a18874-8a24-572e-af10-780a690889b3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.598575, - "y": 26.047875 - }, - "endPoint": { - "x": 326.595991, - "y": 26.050916 - } - } - }, - { - "id": "4c14828e-20db-5ed6-a23f-5c3257936371", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.595991, - "y": 26.050916 - }, - "endPoint": { - "x": 326.593167, - "y": 26.053725 - } - } - }, - { - "id": "ae9999c0-ebc9-5664-a5b4-48ceb8072af1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.593167, - "y": 26.053725 - }, - "endPoint": { - "x": 326.590117, - "y": 26.056287 - } - } - }, - { - "id": "0af12d08-b438-5b01-9b4f-9d3909ab8548", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.590117, - "y": 26.056287 - }, - "endPoint": { - "x": 326.586857, - "y": 26.058588 - } - } - }, - { - "id": "0f8edf77-3500-5265-b3d7-2c813bf7458f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.586857, - "y": 26.058588 - }, - "endPoint": { - "x": 326.582772, - "y": 26.061062 - } - } - }, - { - "id": "41815e1d-5674-5c7d-9251-b5437bdf08b1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.582772, - "y": 26.061062 - }, - "endPoint": { - "x": 326.578557, - "y": 26.063302 - } - } - }, - { - "id": "609c3617-c747-5099-bef6-20ce77b80f85", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.578557, - "y": 26.063302 - }, - "endPoint": { - "x": 326.574224, - "y": 26.065303 - } - } - }, - { - "id": "89fa7b3e-8390-57d8-badc-7bc93e5b3307", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.574224, - "y": 26.065303 - }, - "endPoint": { - "x": 326.569783, - "y": 26.06706 - } - } - }, - { - "id": "d160f7f5-64de-5776-8a42-5f3a24ef482f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.569783, - "y": 26.06706 - }, - "endPoint": { - "x": 326.565118, - "y": 26.068613 - } - } - }, - { - "id": "f20d7a2a-b0a0-555b-b9dd-efce36850d16", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.565118, - "y": 26.068613 - }, - "endPoint": { - "x": 326.56038, - "y": 26.06991 - } - } - }, - { - "id": "2304ebe4-4115-56c6-98b1-bf4edff1bb85", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.56038, - "y": 26.06991 - }, - "endPoint": { - "x": 326.555578, - "y": 26.070947 - } - } - }, - { - "id": "0fa184f8-4ad6-5796-9fd9-bf5383bdbb0e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.555578, - "y": 26.070947 - }, - "endPoint": { - "x": 326.550723, - "y": 26.071722 - } - } - }, - { - "id": "a3a4409d-3fe9-547b-a8d8-42e61d2d78fe", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.550723, - "y": 26.071722 - }, - "endPoint": { - "x": 326.545649, - "y": 26.072325 - } - } - }, - { - "id": "22e61a26-e2e4-5c73-a57c-69e5cab43055", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.545649, - "y": 26.072325 - }, - "endPoint": { - "x": 326.540561, - "y": 26.072795 - } - } - }, - { - "id": "b60e2859-d78c-5806-bd9b-989e20161be8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.540561, - "y": 26.072795 - }, - "endPoint": { - "x": 326.535464, - "y": 26.073132 - } - } - }, - { - "id": "56634062-5fa3-5f5e-b920-caf5cb24dbed", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.535464, - "y": 26.073132 - }, - "endPoint": { - "x": 326.530358, - "y": 26.073337 - } - } - }, - { - "id": "aaae2bd5-26ec-5e7c-9a05-c8c5729c6a5d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.530358, - "y": 26.073337 - }, - "endPoint": { - "x": 326.524759, - "y": 26.073555 - } - } - }, - { - "id": "2e5a7181-5811-5e1f-bbd0-63735969fb3c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.524759, - "y": 26.073555 - }, - "endPoint": { - "x": 326.519168, - "y": 26.073906 - } - } - }, - { - "id": "2feba928-d723-55c0-b79a-17f45746bddf", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.519168, - "y": 26.073906 - }, - "endPoint": { - "x": 326.513587, - "y": 26.074389 - } - } - }, - { - "id": "05e21588-8a49-5355-ae93-06f2db836693", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.513587, - "y": 26.074389 - }, - "endPoint": { - "x": 326.508018, - "y": 26.075005 - } - } - }, - { - "id": "365b6361-fdb9-58d7-9960-b7793f064d02", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.508018, - "y": 26.075005 - }, - "endPoint": { - "x": 326.500217, - "y": 26.076036 - } - } - }, - { - "id": "61fc64c2-fc81-59e1-8ab2-9fba6f3357ee", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.500217, - "y": 26.076036 - }, - "endPoint": { - "x": 326.492439, - "y": 26.077213 - } - } - }, - { - "id": "94df2bec-b4e7-56f2-9b3f-163fe7ab9cea", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.492439, - "y": 26.077213 - }, - "endPoint": { - "x": 326.484683, - "y": 26.078537 - } - } - }, - { - "id": "d6f3d9f9-6154-55bf-a4b5-4c53854fcd7e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.484683, - "y": 26.078537 - }, - "endPoint": { - "x": 326.476954, - "y": 26.080007 - } - } - }, - { - "id": "5e50e490-2d6a-50a0-8c4c-6a5348d16ed6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.476954, - "y": 26.080007 - }, - "endPoint": { - "x": 326.472347, - "y": 26.081003 - } - } - }, - { - "id": "a6b65f0d-520a-5638-af56-08f5dab626aa", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.472347, - "y": 26.081003 - }, - "endPoint": { - "x": 326.467775, - "y": 26.082144 - } - } - }, - { - "id": "18faf93d-d1ac-5aaf-a9da-7f8c6afc81bc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.467775, - "y": 26.082144 - }, - "endPoint": { - "x": 326.46324, - "y": 26.083427 - } - } - }, - { - "id": "c5f7cd78-ac1f-5cd6-b4dd-27ee4062e080", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.46324, - "y": 26.083427 - }, - "endPoint": { - "x": 326.458748, - "y": 26.084853 - } - } - }, - { - "id": "d413ec66-2175-5901-8b24-695e620a38ac", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.458748, - "y": 26.084853 - }, - "endPoint": { - "x": 326.455196, - "y": 26.086175 - } - } - }, - { - "id": "5645599d-6841-5113-a788-b633544a24aa", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.455196, - "y": 26.086175 - }, - "endPoint": { - "x": 326.451743, - "y": 26.087726 - } - } - }, - { - "id": "11ed936e-c588-5663-b69c-55294b0d44ad", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.451743, - "y": 26.087726 - }, - "endPoint": { - "x": 326.448401, - "y": 26.089503 - } - } - }, - { - "id": "78bc9c8b-d7e9-5439-a17a-0851f3ca4bfe", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.448401, - "y": 26.089503 - }, - "endPoint": { - "x": 326.445179, - "y": 26.091498 - } - } - }, - { - "id": "52e06917-5a2c-5ebc-b7dc-b13c39a292c7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.445179, - "y": 26.091498 - }, - "endPoint": { - "x": 326.440947, - "y": 26.094468 - } - } - }, - { - "id": "c1c4dc3b-e043-5bbd-b8d5-56e5f34af629", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.440947, - "y": 26.094468 - }, - "endPoint": { - "x": 326.436866, - "y": 26.097637 - } - } - }, - { - "id": "33c01f4b-b34a-53c1-8919-d82f2d9590f2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.436866, - "y": 26.097637 - }, - "endPoint": { - "x": 326.432943, - "y": 26.101 - } - } - }, - { - "id": "79928097-a1e6-5189-824d-9e19af020350", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.432943, - "y": 26.101 - }, - "endPoint": { - "x": 326.429185, - "y": 26.10455 - } - } - }, - { - "id": "a050bc4b-e590-5afa-b16f-252842b42a23", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.429185, - "y": 26.10455 - }, - "endPoint": { - "x": 326.426599, - "y": 26.107224 - } - } - }, - { - "id": "603c979a-b16f-59da-9ec0-8c74ee3bce90", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.426599, - "y": 26.107224 - }, - "endPoint": { - "x": 326.42413, - "y": 26.110004 - } - } - }, - { - "id": "90f807ec-dd44-5504-b8bf-b29b562b45ad", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.42413, - "y": 26.110004 - }, - "endPoint": { - "x": 326.421781, - "y": 26.112886 - } - } - }, - { - "id": "a53bc445-0c58-5669-94a1-192903a0e246", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.421781, - "y": 26.112886 - }, - "endPoint": { - "x": 326.419554, - "y": 26.115866 - } - } - }, - { - "id": "79b1f150-977c-5da2-8f12-079e61ef7776", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.419554, - "y": 26.115866 - }, - "endPoint": { - "x": 326.417652, - "y": 26.118662 - } - } - }, - { - "id": "663a07e6-0174-5e2a-a743-2a92c4d299f4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.417652, - "y": 26.118662 - }, - "endPoint": { - "x": 326.415884, - "y": 26.121541 - } - } - }, - { - "id": "812a9d03-8eb7-5ad7-896f-498a12fbd341", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.415884, - "y": 26.121541 - }, - "endPoint": { - "x": 326.414251, - "y": 26.1245 - } - } - }, - { - "id": "27b38662-ee5c-59fc-9528-ae4c5756618e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.414251, - "y": 26.1245 - }, - "endPoint": { - "x": 326.412757, - "y": 26.127533 - } - } - }, - { - "id": "793b3fce-4b07-5a44-82bd-62622fb5e54e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.412757, - "y": 26.127533 - }, - "endPoint": { - "x": 326.411231, - "y": 26.131106 - } - } - }, - { - "id": "ee0e541d-039e-562a-ba8f-723efa2af08e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.411231, - "y": 26.131106 - }, - "endPoint": { - "x": 326.409929, - "y": 26.134763 - } - } - }, - { - "id": "a79cba69-9ba4-5380-9fb1-97bbb7b51e94", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.409929, - "y": 26.134763 - }, - "endPoint": { - "x": 326.408854, - "y": 26.138493 - } - } - }, - { - "id": "bb04a82f-974f-5294-98b4-80666e9fb5b0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.408854, - "y": 26.138493 - }, - "endPoint": { - "x": 326.40801, - "y": 26.142285 - } - } - }, - { - "id": "59266c3e-a61f-5a10-927b-941f0257b509", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.40801, - "y": 26.142285 - }, - "endPoint": { - "x": 326.4072, - "y": 26.147177 - } - } - }, - { - "id": "b89e2eca-88cd-5bff-8a85-8196f314b98f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.4072, - "y": 26.147177 - }, - "endPoint": { - "x": 326.406626, - "y": 26.1521 - } - } - }, - { - "id": "9608ba77-beb5-589f-81a9-496d561d7a43", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.406626, - "y": 26.1521 - }, - "endPoint": { - "x": 326.40629, - "y": 26.157044 - } - } - }, - { - "id": "ad5ab037-1148-5400-8825-1118619ba74a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.40629, - "y": 26.157044 - }, - "endPoint": { - "x": 326.406192, - "y": 26.162002 - } - } - }, - { - "id": "c641e917-044f-5575-beb8-d128a89eb4f4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.406192, - "y": 26.162002 - }, - "endPoint": { - "x": 326.406313, - "y": 26.166239 - } - } - }, - { - "id": "030ed4c4-2770-5ba5-8d77-e680d72b7757", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.406313, - "y": 26.166239 - }, - "endPoint": { - "x": 326.406638, - "y": 26.170463 - } - } - }, - { - "id": "a17d204c-6ec8-5f96-8188-15d77bf977ed", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.406638, - "y": 26.170463 - }, - "endPoint": { - "x": 326.407166, - "y": 26.174666 - } - } - }, - { - "id": "0a56e7ec-5458-54b5-8510-b6cac4b874f6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.407166, - "y": 26.174666 - }, - "endPoint": { - "x": 326.407896, - "y": 26.178841 - } - } - }, - { - "id": "b90e8345-cc81-5e61-af1e-c20fcdebcaf9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.407896, - "y": 26.178841 - }, - "endPoint": { - "x": 326.408817, - "y": 26.182924 - } - } - }, - { - "id": "900fe7be-5a5f-5b6a-a381-b6f0d9aae0e0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.408817, - "y": 26.182924 - }, - "endPoint": { - "x": 326.409936, - "y": 26.186956 - } - } - }, - { - "id": "503ef16b-7dc0-5380-a2cd-5995d09ff254", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.409936, - "y": 26.186956 - }, - "endPoint": { - "x": 326.41125, - "y": 26.190928 - } - } - }, - { - "id": "fc7d3765-b853-52d5-b0ab-96df217cf248", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.41125, - "y": 26.190928 - }, - "endPoint": { - "x": 326.412757, - "y": 26.194833 - } - } - }, - { - "id": "6aaf009c-f3b6-59ea-b5e4-4597103ebcb7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.412757, - "y": 26.194833 - }, - "endPoint": { - "x": 326.414466, - "y": 26.198606 - } - } - }, - { - "id": "ba6533cd-dd43-5469-8049-f93dcd3da8a6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.414466, - "y": 26.198606 - }, - "endPoint": { - "x": 326.416415, - "y": 26.202255 - } - } - }, - { - "id": "03ff5724-b996-51e7-a7bf-6cc9216f5afc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.416415, - "y": 26.202255 - }, - "endPoint": { - "x": 326.418597, - "y": 26.20577 - } - } - }, - { - "id": "949336e9-2352-5ef7-825b-a32ff5f63ac4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.418597, - "y": 26.20577 - }, - "endPoint": { - "x": 326.421005, - "y": 26.209139 - } - } - }, - { - "id": "cd0bbe34-52ba-55a5-92a0-c65c581c8120", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.421005, - "y": 26.209139 - }, - "endPoint": { - "x": 326.423988, - "y": 26.212815 - } - } - }, - { - "id": "8fe699a8-8e80-5041-97db-714714b300aa", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.423988, - "y": 26.212815 - }, - "endPoint": { - "x": 326.427172, - "y": 26.216313 - } - } - }, - { - "id": "8f4d4ee8-cbb2-5223-af2f-17ec9776ed03", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.427172, - "y": 26.216313 - }, - "endPoint": { - "x": 326.43055, - "y": 26.219624 - } - } - }, - { - "id": "1e4b7e1f-24b2-5551-8d25-b96b937747fa", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.43055, - "y": 26.219624 - }, - "endPoint": { - "x": 326.434113, - "y": 26.22274 - } - } - }, - { - "id": "4c4d9787-cd90-56c5-bab9-b1b475574c1d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.434113, - "y": 26.22274 - }, - "endPoint": { - "x": 326.438672, - "y": 26.226254 - } - } - }, - { - "id": "5bf2f2f9-af45-5f6a-90d5-3dc24a49f9c2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.438672, - "y": 26.226254 - }, - "endPoint": { - "x": 326.443451, - "y": 26.229452 - } - } - }, - { - "id": "d77d438e-71d5-5f06-bdde-72dc8e8d912d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.443451, - "y": 26.229452 - }, - "endPoint": { - "x": 326.448433, - "y": 26.232324 - } - } - }, - { - "id": "7c22db08-fe74-596c-b9d1-1fb614ae6cff", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.448433, - "y": 26.232324 - }, - "endPoint": { - "x": 326.453601, - "y": 26.23486 - } - } - }, - { - "id": "d2ba46e0-0f91-54d4-a751-ee9cc0c5f69a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.453601, - "y": 26.23486 - }, - "endPoint": { - "x": 326.456812, - "y": 26.23609 - } - } - }, - { - "id": "e15734ce-c1bb-5d82-a7a7-2b13708f9d62", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.456812, - "y": 26.23609 - }, - "endPoint": { - "x": 326.460131, - "y": 26.236946 - } - } - }, - { - "id": "20d31335-5e79-5df5-b430-a2a92258c478", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.460131, - "y": 26.236946 - }, - "endPoint": { - "x": 326.463525, - "y": 26.237423 - } - } - }, - { - "id": "52494a60-ffaa-51d4-8e52-9f609726a2f0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.463525, - "y": 26.237423 - }, - "endPoint": { - "x": 326.466962, - "y": 26.237512 - } - } - }, - { - "id": "147d845e-72aa-59d8-9ed9-0386feb93b4d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.466962, - "y": 26.237512 - }, - "endPoint": { - "x": 326.47024, - "y": 26.237382 - } - } - }, - { - "id": "730e4059-d27f-50f9-8023-9807977e176d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.47024, - "y": 26.237382 - }, - "endPoint": { - "x": 326.473515, - "y": 26.23719 - } - } - }, - { - "id": "c1db05b8-fb10-5ed7-acca-8b2a571936c0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.473515, - "y": 26.23719 - }, - "endPoint": { - "x": 326.476786, - "y": 26.236938 - } - } - }, - { - "id": "26f6b4c6-86ce-54b8-8fa2-d3662482862d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.476786, - "y": 26.236938 - }, - "endPoint": { - "x": 326.480052, - "y": 26.236625 - } - } - }, - { - "id": "b98894a2-703b-5bc7-bdde-b30a51a7564e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.480052, - "y": 26.236625 - }, - "endPoint": { - "x": 326.484592, - "y": 26.236117 - } - } - }, - { - "id": "ea9ade3f-92f2-5ac2-ac32-c237b649a960", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.484592, - "y": 26.236117 - }, - "endPoint": { - "x": 326.489126, - "y": 26.235548 - } - } - }, - { - "id": "e0212267-7832-581c-b1be-41716a4199ab", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.489126, - "y": 26.235548 - }, - "endPoint": { - "x": 326.493651, - "y": 26.234919 - } - } - }, - { - "id": "6b1c2fc4-26c8-5f0c-a758-0a5848d886e3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.493651, - "y": 26.234919 - }, - "endPoint": { - "x": 326.498167, - "y": 26.23423 - } - } - }, - { - "id": "bf0db015-16ed-552f-a147-42f1e01aa0f8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.498167, - "y": 26.23423 - }, - "endPoint": { - "x": 326.504552, - "y": 26.23318 - } - } - }, - { - "id": "3230cb56-520b-5f83-88cc-8fc985df727d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.504552, - "y": 26.23318 - }, - "endPoint": { - "x": 326.510926, - "y": 26.232067 - } - } - }, - { - "id": "2c99da86-fac4-5a05-9182-622fbe58f71b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.510926, - "y": 26.232067 - }, - "endPoint": { - "x": 326.517289, - "y": 26.230892 - } - } - }, - { - "id": "ff59a69d-11d5-5c25-919d-7576285e5f5b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.517289, - "y": 26.230892 - }, - "endPoint": { - "x": 326.52364, - "y": 26.229655 - } - } - }, - { - "id": "760d9db0-69f4-5d5f-9c92-53d9efcac825", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.52364, - "y": 26.229655 - }, - "endPoint": { - "x": 326.525508, - "y": 26.22925 - } - } - }, - { - "id": "721b3fb5-bdb7-5dd4-af73-00b85fddfa60", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.525508, - "y": 26.22925 - }, - "endPoint": { - "x": 326.527361, - "y": 26.228782 - } - } - }, - { - "id": "ad42df88-4d98-5202-ba83-edebf4f2e240", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.527361, - "y": 26.228782 - }, - "endPoint": { - "x": 326.529198, - "y": 26.228254 - } - } - }, - { - "id": "4233e13a-8d62-54c2-8c08-cec12bb438b3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.529198, - "y": 26.228254 - }, - "endPoint": { - "x": 326.531016, - "y": 26.227664 - } - } - }, - { - "id": "89f22e0d-3b5b-58e8-b4cf-50132aa7986f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.531016, - "y": 26.227664 - }, - "endPoint": { - "x": 326.533468, - "y": 26.226691 - } - } - }, - { - "id": "37646937-84f9-5484-b9d6-845f57a53497", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.533468, - "y": 26.226691 - }, - "endPoint": { - "x": 326.535811, - "y": 26.225493 - } - } - }, - { - "id": "c40fe604-407f-5cfd-bcda-aae8d66ac8c4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.535811, - "y": 26.225493 - }, - "endPoint": { - "x": 326.538031, - "y": 26.224079 - } - } - }, - { - "id": "07e29b62-b72e-55d1-88d4-58a3dbbf21f0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.538031, - "y": 26.224079 - }, - "endPoint": { - "x": 326.540111, - "y": 26.222457 - } - } - }, - { - "id": "54d39877-de1a-540e-9e35-28648173799d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.540111, - "y": 26.222457 - }, - "endPoint": { - "x": 326.542967, - "y": 26.220166 - } - } - }, - { - "id": "f448fa34-50d2-57f2-bf79-be0d9b70886e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.542967, - "y": 26.220166 - }, - "endPoint": { - "x": 326.545968, - "y": 26.218077 - } - } - }, - { - "id": "91ef95b2-72de-5a2a-9243-9552c8668478", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.545968, - "y": 26.218077 - }, - "endPoint": { - "x": 326.549105, - "y": 26.216197 - } - } - }, - { - "id": "c9c7db3b-4ce1-585c-8342-87f46673cb70", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.549105, - "y": 26.216197 - }, - "endPoint": { - "x": 326.552366, - "y": 26.214533 - } - } - }, - { - "id": "f7b91515-41df-5694-8f36-64ac6c4e8964", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.552366, - "y": 26.214533 - }, - "endPoint": { - "x": 326.556697, - "y": 26.212565 - } - } - }, - { - "id": "aa03df66-4ecf-5dbc-a1ba-5bb7fd4bd9fd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.556697, - "y": 26.212565 - }, - "endPoint": { - "x": 326.561072, - "y": 26.210699 - } - } - }, - { - "id": "2b5c8740-8042-5815-9a6f-6b988f0c8689", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.561072, - "y": 26.210699 - }, - "endPoint": { - "x": 326.565488, - "y": 26.208934 - } - } - }, - { - "id": "1a60dad0-87cc-54eb-85fc-88ab9713aa29", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.565488, - "y": 26.208934 - }, - "endPoint": { - "x": 326.569946, - "y": 26.207272 - } - } - }, - { - "id": "f872c560-7949-5399-bb52-cf86bb225106", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.569946, - "y": 26.207272 - }, - "endPoint": { - "x": 326.575765, - "y": 26.205236 - } - } - }, - { - "id": "234bcabc-607e-5419-bf68-c24c679ca3f7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.575765, - "y": 26.205236 - }, - "endPoint": { - "x": 326.58162, - "y": 26.203305 - } - } - }, - { - "id": "4c544585-b79b-53a5-b929-c789b26fe46f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.58162, - "y": 26.203305 - }, - "endPoint": { - "x": 326.587508, - "y": 26.201478 - } - } - }, - { - "id": "b6457bdb-dc2e-57f2-a859-fd824993a7e2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.587508, - "y": 26.201478 - }, - "endPoint": { - "x": 326.593428, - "y": 26.199757 - } - } - }, - { - "id": "f8ec8707-8fb1-5c6d-a480-a07ed8875a15", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.593428, - "y": 26.199757 - }, - "endPoint": { - "x": 326.60363, - "y": 26.197016 - } - } - }, - { - "id": "c457a8ec-c844-51c2-9552-21c583beba0b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.60363, - "y": 26.197016 - }, - "endPoint": { - "x": 326.61389, - "y": 26.19451 - } - } - }, - { - "id": "ae3386fd-6356-5d34-879b-a6505e4f8516", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.61389, - "y": 26.19451 - }, - "endPoint": { - "x": 326.624205, - "y": 26.19224 - } - } - }, - { - "id": "4c0c04d3-d72b-512e-b7c9-d1dceeacd3a4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.624205, - "y": 26.19224 - }, - "endPoint": { - "x": 326.634572, - "y": 26.190208 - } - } - }, - { - "id": "cc9e8d4d-ca8f-5cbd-9dae-3560872aaf0e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.634572, - "y": 26.190208 - }, - "endPoint": { - "x": 326.63985, - "y": 26.18936 - } - } - }, - { - "id": "56020951-2fa0-536b-a48c-1cee4f32def8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.63985, - "y": 26.18936 - }, - "endPoint": { - "x": 326.645158, - "y": 26.188754 - } - } - }, - { - "id": "ee30b536-336e-5e25-b063-7b9684d1053e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.645158, - "y": 26.188754 - }, - "endPoint": { - "x": 326.650489, - "y": 26.188389 - } - } - }, - { - "id": "532486c3-650a-5656-9813-5cabc997a53f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.650489, - "y": 26.188389 - }, - "endPoint": { - "x": 326.655834, - "y": 26.188267 - } - } - }, - { - "id": "b532f4a8-b7d5-5586-b328-404f818442b1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.655834, - "y": 26.188267 - }, - "endPoint": { - "x": 326.729745, - "y": 26.188267 - } - } - }, - { - "id": "818c5c98-52a4-5c73-9a71-bfb538342afc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.729745, - "y": 26.188267 - }, - "endPoint": { - "x": 326.818434, - "y": 26.188267 - } - } - }, - { - "id": "deb17732-226a-53c3-95d2-2606837fcfe0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.818434, - "y": 26.188267 - }, - "endPoint": { - "x": 326.826692, - "y": 26.188318 - } - } - }, - { - "id": "8abcb0c8-6e7f-5e78-a4c8-4943b38bdfdc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.826692, - "y": 26.188318 - }, - "endPoint": { - "x": 326.834948, - "y": 26.188469 - } - } - }, - { - "id": "2f432028-0050-5559-a9c1-0368a00291f2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.834948, - "y": 26.188469 - }, - "endPoint": { - "x": 326.843202, - "y": 26.188721 - } - } - }, - { - "id": "97b171df-ccbf-5e6c-8d53-f0c8d903e87c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.843202, - "y": 26.188721 - }, - "endPoint": { - "x": 326.851452, - "y": 26.189074 - } - } - }, - { - "id": "01d3261d-52c3-5f02-b523-9cd41950ed17", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.851452, - "y": 26.189074 - }, - "endPoint": { - "x": 326.868239, - "y": 26.189844 - } - } - }, - { - "id": "d2b1b5e9-0d0c-5654-a2bf-47f6ebf906b3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.868239, - "y": 26.189844 - }, - "endPoint": { - "x": 326.88503, - "y": 26.190514 - } - } - }, - { - "id": "f311ad20-8b21-5a1c-8ad3-b2468f3d7325", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.88503, - "y": 26.190514 - }, - "endPoint": { - "x": 326.901825, - "y": 26.191082 - } - } - }, - { - "id": "0952be99-57bc-537f-b27a-78ad970da2bd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.901825, - "y": 26.191082 - }, - "endPoint": { - "x": 326.918623, - "y": 26.19155 - } - } - }, - { - "id": "0c039d2a-01d4-5f41-9b4c-a28bb22db1d0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.918623, - "y": 26.19155 - }, - "endPoint": { - "x": 326.924613, - "y": 26.191681 - } - } - }, - { - "id": "fa86845d-7ad3-5309-959d-b703ce1b3316", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.924613, - "y": 26.191681 - }, - "endPoint": { - "x": 326.930604, - "y": 26.191774 - } - } - }, - { - "id": "47463aaa-cbbf-53f6-a4b4-3eaf02bc4945", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.930604, - "y": 26.191774 - }, - "endPoint": { - "x": 326.936595, - "y": 26.191829 - } - } - }, - { - "id": "5eb8b45b-bdaa-5aee-b3e6-550c0e86168e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.936595, - "y": 26.191829 - }, - "endPoint": { - "x": 326.942587, - "y": 26.191848 - } - } - }, - { - "id": "348c10bd-f110-51e7-9ff8-40a9ff478a1a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.942587, - "y": 26.191848 - }, - "endPoint": { - "x": 326.948914, - "y": 26.191829 - } - } - }, - { - "id": "49defa7c-d4a5-5be5-a80e-f8ef4338dffe", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.948914, - "y": 26.191829 - }, - "endPoint": { - "x": 326.955241, - "y": 26.191774 - } - } - }, - { - "id": "f9876dba-d335-573b-9c91-fe59217af948", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.955241, - "y": 26.191774 - }, - "endPoint": { - "x": 326.961567, - "y": 26.191681 - } - } - }, - { - "id": "15c57424-7226-53fc-81fe-db8e01811a49", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.961567, - "y": 26.191681 - }, - "endPoint": { - "x": 326.967893, - "y": 26.19155 - } - } - }, - { - "id": "18edd860-8e81-5350-8dd9-175930bdd9a0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.967893, - "y": 26.19155 - }, - "endPoint": { - "x": 326.971104, - "y": 26.191399 - } - } - }, - { - "id": "28a4a517-a29f-5362-a2a3-69546796b298", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.971104, - "y": 26.191399 - }, - "endPoint": { - "x": 326.974303, - "y": 26.191098 - } - } - }, - { - "id": "7296b89d-7b3b-5c34-9252-f89edeba7495", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.974303, - "y": 26.191098 - }, - "endPoint": { - "x": 326.977485, - "y": 26.190648 - } - } - }, - { - "id": "2e81809f-4ed4-59d2-94d2-c8d8ac07ebbd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.977485, - "y": 26.190648 - }, - "endPoint": { - "x": 326.980643, - "y": 26.190049 - } - } - }, - { - "id": "cf92afd8-fb99-52aa-87c1-1465914a0ec6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.980643, - "y": 26.190049 - }, - "endPoint": { - "x": 326.983274, - "y": 26.189408 - } - } - }, - { - "id": "35d6b4f9-3f31-5508-a7ce-b23bacca9cc6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.983274, - "y": 26.189408 - }, - "endPoint": { - "x": 326.985863, - "y": 26.188623 - } - } - }, - { - "id": "482938db-c6c7-5de7-ae7f-d08bc0807e85", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.985863, - "y": 26.188623 - }, - "endPoint": { - "x": 326.988404, - "y": 26.187695 - } - } - }, - { - "id": "f9c2e152-995d-5cff-8fc8-755df21eafe4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.988404, - "y": 26.187695 - }, - "endPoint": { - "x": 326.990891, - "y": 26.186626 - } - } - }, - { - "id": "192cff28-8ff7-5b15-9d21-827e683d06d2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.990891, - "y": 26.186626 - }, - "endPoint": { - "x": 326.993105, - "y": 26.18548 - } - } - }, - { - "id": "e91e738b-4211-5835-85a3-98b10d8d12b1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.993105, - "y": 26.18548 - }, - "endPoint": { - "x": 326.995205, - "y": 26.184147 - } - } - }, - { - "id": "7875cb6b-a563-53da-ac9c-d0f4e370323d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.995205, - "y": 26.184147 - }, - "endPoint": { - "x": 326.99718, - "y": 26.182635 - } - } - }, - { - "id": "998ff2b3-3b45-5e86-b3df-a1c9f2aa4aa9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.99718, - "y": 26.182635 - }, - "endPoint": { - "x": 326.999019, - "y": 26.180952 - } - } - }, - { - "id": "19f5f6f4-b092-5f05-8451-40a2bf562516", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.999019, - "y": 26.180952 - }, - "endPoint": { - "x": 327.003389, - "y": 26.176431 - } - } - }, - { - "id": "76f86b59-c06a-5f09-8d24-08a0c33477d6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.003389, - "y": 26.176431 - }, - "endPoint": { - "x": 327.007599, - "y": 26.171762 - } - } - }, - { - "id": "f9e87bd3-22bf-5d48-9736-a50f4d9023fe", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.007599, - "y": 26.171762 - }, - "endPoint": { - "x": 327.011646, - "y": 26.166951 - } - } - }, - { - "id": "a6038058-9bbf-53ba-b239-a39f6cb26a29", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.011646, - "y": 26.166951 - }, - "endPoint": { - "x": 327.015526, - "y": 26.162002 - } - } - }, - { - "id": "e0aff1da-8587-5afa-ad8a-c052bc6d8b07", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.015526, - "y": 26.162002 - }, - "endPoint": { - "x": 327.019679, - "y": 26.15639 - } - } - }, - { - "id": "90120c67-9545-5906-9f3d-035addf7d9bf", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.019679, - "y": 26.15639 - }, - "endPoint": { - "x": 327.023713, - "y": 26.150693 - } - } - }, - { - "id": "5d07d72e-a4ea-5076-a083-a0f74af02d6d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.023713, - "y": 26.150693 - }, - "endPoint": { - "x": 327.027626, - "y": 26.144912 - } - } - }, - { - "id": "96e4aed9-547f-54e2-8a72-03945e8a627b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.027626, - "y": 26.144912 - }, - "endPoint": { - "x": 327.031418, - "y": 26.139049 - } - } - }, - { - "id": "55c29057-3b3d-5cd2-aa26-fbeb2f6ae6a7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.031418, - "y": 26.139049 - }, - "endPoint": { - "x": 327.03257, - "y": 26.137087 - } - } - }, - { - "id": "71f3b04f-548d-5653-b5b8-6aa4048eb86c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.03257, - "y": 26.137087 - }, - "endPoint": { - "x": 327.033593, - "y": 26.135056 - } - } - }, - { - "id": "89d3a382-bf27-5b73-b442-9076fb4cc810", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.033593, - "y": 26.135056 - }, - "endPoint": { - "x": 327.034481, - "y": 26.132964 - } - } - }, - { - "id": "16b3e4bc-7f5a-5e24-a70c-435f0a2d24ed", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.034481, - "y": 26.132964 - }, - "endPoint": { - "x": 327.035233, - "y": 26.130816 - } - } - }, - { - "id": "187c66e9-9a6d-5395-a9e6-fb2b1fb69ef7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.035233, - "y": 26.130816 - }, - "endPoint": { - "x": 327.036036, - "y": 26.128191 - } - } - }, - { - "id": "e0ede2f0-88c3-500a-aeb6-f716ca35a477", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.036036, - "y": 26.128191 - }, - "endPoint": { - "x": 327.0368, - "y": 26.125556 - } - } - }, - { - "id": "42ae0df2-62a5-5788-853f-12629124a5c3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.0368, - "y": 26.125556 - }, - "endPoint": { - "x": 327.037524, - "y": 26.122909 - } - } - }, - { - "id": "9547b916-b874-5df1-95de-8e627a893ac1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.037524, - "y": 26.122909 - }, - "endPoint": { - "x": 327.03821, - "y": 26.120252 - } - } - }, - { - "id": "10cbe3ca-1079-51ea-9dc1-d6100d947037", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.03821, - "y": 26.120252 - }, - "endPoint": { - "x": 327.038757, - "y": 26.117981 - } - } - }, - { - "id": "21b9892f-0d6b-5e12-b6d6-f30945524d8f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.038757, - "y": 26.117981 - }, - "endPoint": { - "x": 327.039265, - "y": 26.115701 - } - } - }, - { - "id": "95f7a648-29ed-5b49-abad-8bc159314734", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.039265, - "y": 26.115701 - }, - "endPoint": { - "x": 327.039733, - "y": 26.113412 - } - } - }, - { - "id": "8cc2337c-f8e1-53c6-bb73-23e3139beb4c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.039733, - "y": 26.113412 - }, - "endPoint": { - "x": 327.040161, - "y": 26.111116 - } - } - }, - { - "id": "65eb54d8-0383-56a2-a7da-c3c985de05b2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.040161, - "y": 26.111116 - }, - "endPoint": { - "x": 327.04081, - "y": 26.107396 - } - } - }, - { - "id": "1f7847d2-b0d8-5bbf-87e4-1e27a44c3347", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.04081, - "y": 26.107396 - }, - "endPoint": { - "x": 327.041438, - "y": 26.103672 - } - } - }, - { - "id": "fc05023b-ec66-5900-a927-a8a1eaeeb281", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.041438, - "y": 26.103672 - }, - "endPoint": { - "x": 327.042045, - "y": 26.099945 - } - } - }, - { - "id": "5ee2e80f-3d54-56e6-a2ad-e7a6cfe4f09a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.042045, - "y": 26.099945 - }, - "endPoint": { - "x": 327.04263, - "y": 26.096215 - } - } - }, - { - "id": "417335f3-69fa-5d86-8c16-4132bf902352", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.04263, - "y": 26.096215 - }, - "endPoint": { - "x": 327.042867, - "y": 26.09461 - } - } - }, - { - "id": "a557a7b0-e1c3-51a8-ad0e-5dff73561713", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.042867, - "y": 26.09461 - }, - "endPoint": { - "x": 327.043081, - "y": 26.093002 - } - } - }, - { - "id": "4a7b5bf7-ed05-54e7-afb1-8817f45524e8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.043081, - "y": 26.093002 - }, - "endPoint": { - "x": 327.043275, - "y": 26.091391 - } - } - }, - { - "id": "8e3d526c-c3dc-533d-ad0f-a1598245ad57", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.043275, - "y": 26.091391 - }, - "endPoint": { - "x": 327.043447, - "y": 26.089778 - } - } - }, - { - "id": "607d793d-2a2a-5ff0-9514-211e64cab6a7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.043447, - "y": 26.089778 - }, - "endPoint": { - "x": 327.043598, - "y": 26.088176 - } - } - }, - { - "id": "3d709699-63ee-567a-9a45-a4ba4c06eea1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.043598, - "y": 26.088176 - }, - "endPoint": { - "x": 327.043731, - "y": 26.086573 - } - } - }, - { - "id": "3a447d29-9915-5044-a6f8-03716c8bb112", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.043731, - "y": 26.086573 - }, - "endPoint": { - "x": 327.043847, - "y": 26.084969 - } - } - }, - { - "id": "622c06fb-3d3a-57f1-9168-61b5ac7068d9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.043847, - "y": 26.084969 - }, - "endPoint": { - "x": 327.043945, - "y": 26.083363 - } - } - }, - { - "id": "cf0333b7-f406-57cc-b402-f4ce3195e665", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.043945, - "y": 26.083363 - }, - "endPoint": { - "x": 327.044257, - "y": 26.077581 - } - } - }, - { - "id": "85b411b0-2897-52a4-a44e-ea0550138c4e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.044257, - "y": 26.077581 - }, - "endPoint": { - "x": 327.044552, - "y": 26.071798 - } - } - }, - { - "id": "b90bcf61-506e-570a-af11-e2fdb339dfcf", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.044552, - "y": 26.071798 - }, - "endPoint": { - "x": 327.04483, - "y": 26.066014 - } - } - }, - { - "id": "d428c1fc-1e63-5625-a6ab-d70f0bb8c7d0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.04483, - "y": 26.066014 - }, - "endPoint": { - "x": 327.045089, - "y": 26.060229 - } - } - }, - { - "id": "f667529c-445e-5474-85d9-924fb2d0beb1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.045089, - "y": 26.060229 - }, - "endPoint": { - "x": 327.045248, - "y": 26.056041 - } - } - }, - { - "id": "c56a2b0a-8a9e-5048-9592-92a2cf7b6255", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.045248, - "y": 26.056041 - }, - "endPoint": { - "x": 327.045362, - "y": 26.051852 - } - } - }, - { - "id": "1ae7d5b1-c19e-507b-a470-9e0b01d9f559", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.045362, - "y": 26.051852 - }, - "endPoint": { - "x": 327.04543, - "y": 26.047661 - } - } - }, - { - "id": "1d30793b-4e01-5720-9253-fffd1506568d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.04543, - "y": 26.047661 - }, - "endPoint": { - "x": 327.045453, - "y": 26.04347 - } - } - }, - { - "id": "66a10755-6431-53e2-9ec4-f455fa211ff3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.045453, - "y": 26.04347 - }, - "endPoint": { - "x": 327.04543, - "y": 26.041502 - } - } - }, - { - "id": "9a96fd0a-46e4-5988-a60b-fa7881b6c4bc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.04543, - "y": 26.041502 - }, - "endPoint": { - "x": 327.045362, - "y": 26.039535 - } - } - }, - { - "id": "ef66c2fe-7452-57c2-8cd6-a834a660c221", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.045362, - "y": 26.039535 - }, - "endPoint": { - "x": 327.045248, - "y": 26.03757 - } - } - }, - { - "id": "88762c87-d259-571d-83d2-a417db28db26", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.045248, - "y": 26.03757 - }, - "endPoint": { - "x": 327.045089, - "y": 26.035608 - } - } - }, - { - "id": "ef3d3fff-056e-5f5e-a32f-25d3a95d7950", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.045089, - "y": 26.035608 - }, - "endPoint": { - "x": 327.044856, - "y": 26.033877 - } - } - }, - { - "id": "039ec5a3-439d-57fc-9051-e9bc503baa6c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.044856, - "y": 26.033877 - }, - "endPoint": { - "x": 327.044479, - "y": 26.032174 - } - } - }, - { - "id": "477a8206-23bc-58df-9ff2-ea315f8600b9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.044479, - "y": 26.032174 - }, - "endPoint": { - "x": 327.043961, - "y": 26.030508 - } - } - }, - { - "id": "42f0fa69-1455-5922-9f7d-d0588bdbdee0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.043961, - "y": 26.030508 - }, - "endPoint": { - "x": 327.043305, - "y": 26.028889 - } - } - }, - { - "id": "f2951352-efec-55c6-a341-c91197880321", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.043305, - "y": 26.028889 - }, - "endPoint": { - "x": 327.041888, - "y": 26.02595 - } - } - }, - { - "id": "cb47cb8b-fb96-5240-a458-da7b6be128f5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.041888, - "y": 26.02595 - }, - "endPoint": { - "x": 327.040342, - "y": 26.023078 - } - } - }, - { - "id": "51e11bbf-24e0-5dc8-9ea9-939f4c90b155", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.040342, - "y": 26.023078 - }, - "endPoint": { - "x": 327.038671, - "y": 26.020278 - } - } - }, - { - "id": "d057ba7f-4237-5aca-bbfc-02ac6e62f229", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.038671, - "y": 26.020278 - }, - "endPoint": { - "x": 327.036876, - "y": 26.017553 - } - } - }, - { - "id": "815ca397-8bcf-5c4e-a39c-181fac246294", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.036876, - "y": 26.017553 - }, - "endPoint": { - "x": 327.034595, - "y": 26.014373 - } - } - }, - { - "id": "e9ba4f64-8213-51cf-8cbb-43bbef3c5734", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.034595, - "y": 26.014373 - }, - "endPoint": { - "x": 327.032206, - "y": 26.011276 - } - } - }, - { - "id": "482a9a73-c8ce-5351-a8ec-b4d80b996e34", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.032206, - "y": 26.011276 - }, - "endPoint": { - "x": 327.02971, - "y": 26.008263 - } - } - }, - { - "id": "b03878b8-fad7-58ec-8efc-46f1bdf104b7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.02971, - "y": 26.008263 - }, - "endPoint": { - "x": 327.027111, - "y": 26.005338 - } - } - }, - { - "id": "15622d7c-e0c7-531b-b935-66acf61fad9e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.027111, - "y": 26.005338 - }, - "endPoint": { - "x": 327.024468, - "y": 26.002364 - } - } - }, - { - "id": "c2877273-5874-50d1-baeb-0c5b1e5e3033", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.024468, - "y": 26.002364 - }, - "endPoint": { - "x": 327.021928, - "y": 25.999303 - } - } - }, - { - "id": "36c622f4-c876-5bd2-9b40-b1e96663b315", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.021928, - "y": 25.999303 - }, - "endPoint": { - "x": 327.019494, - "y": 25.996157 - } - } - }, - { - "id": "ad3ceb91-8cac-50bb-abad-b0afcf53a361", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.019494, - "y": 25.996157 - }, - "endPoint": { - "x": 327.017169, - "y": 25.992929 - } - } - }, - { - "id": "25dbca30-c3d7-5180-80af-0590f644bbaa", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.017169, - "y": 25.992929 - }, - "endPoint": { - "x": 327.014537, - "y": 25.989104 - } - } - }, - { - "id": "ccf4dfd8-da29-50d8-ac1d-674b1b29c6ac", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.014537, - "y": 25.989104 - }, - "endPoint": { - "x": 327.011938, - "y": 25.985255 - } - } - }, - { - "id": "6d8c3dd9-37ab-5e4a-8d42-e2fc90539989", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.011938, - "y": 25.985255 - }, - "endPoint": { - "x": 327.009374, - "y": 25.981384 - } - } - }, - { - "id": "2aa398cd-00e6-525b-92e2-ed02d325e421", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.009374, - "y": 25.981384 - }, - "endPoint": { - "x": 327.006845, - "y": 25.97749 - } - } - }, - { - "id": "005e93e4-bf9c-5f08-a020-a1565ca4b500", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.006845, - "y": 25.97749 - }, - "endPoint": { - "x": 327.005677, - "y": 25.975637 - } - } - }, - { - "id": "d743902a-4738-5260-a4ee-08a17587bd0a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.005677, - "y": 25.975637 - }, - "endPoint": { - "x": 327.004544, - "y": 25.973762 - } - } - }, - { - "id": "7eb37628-36a6-54ce-8161-9e6a465574dc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.004544, - "y": 25.973762 - }, - "endPoint": { - "x": 327.003446, - "y": 25.971866 - } - } - }, - { - "id": "b0efd6e2-d0af-5fde-819f-b899cd6b8425", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.003446, - "y": 25.971866 - }, - "endPoint": { - "x": 327.002384, - "y": 25.969949 - } - } - }, - { - "id": "96e3b413-a7ca-5d13-8688-78832ed9bd6f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.002384, - "y": 25.969949 - }, - "endPoint": { - "x": 327.000338, - "y": 25.966005 - } - } - }, - { - "id": "d0474210-0e79-59e3-a64c-095d29ab19ef", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.000338, - "y": 25.966005 - }, - "endPoint": { - "x": 326.998438, - "y": 25.961989 - } - } - }, - { - "id": "9b8b031d-1fbc-52dc-804c-aa083be568f9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.998438, - "y": 25.961989 - }, - "endPoint": { - "x": 326.996684, - "y": 25.957908 - } - } - }, - { - "id": "71551ff2-ea20-59ea-bff2-ca875929f62a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.996684, - "y": 25.957908 - }, - "endPoint": { - "x": 326.995079, - "y": 25.953764 - } - } - }, - { - "id": "a3f54396-043e-5288-a676-2c7f909a3420", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.995079, - "y": 25.953764 - }, - "endPoint": { - "x": 326.993432, - "y": 25.949505 - } - } - }, - { - "id": "afbd923b-92ea-5e97-82fb-5492c7aff12e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.993432, - "y": 25.949505 - }, - "endPoint": { - "x": 326.991637, - "y": 25.945309 - } - } - }, - { - "id": "8ed368d7-d481-55d3-bd7c-04c9eb97e1ba", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.991637, - "y": 25.945309 - }, - "endPoint": { - "x": 326.989694, - "y": 25.941179 - } - } - }, - { - "id": "89108fc3-c06f-5fb5-bf58-2d23bef38c7f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.989694, - "y": 25.941179 - }, - "endPoint": { - "x": 326.987606, - "y": 25.937118 - } - } - }, - { - "id": "f902b0dc-24cc-52a5-baa9-06acb4740a09", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.987606, - "y": 25.937118 - }, - "endPoint": { - "x": 326.98666, - "y": 25.935361 - } - } - }, - { - "id": "8add66f2-6798-55c7-8869-55e68123aacb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.98666, - "y": 25.935361 - }, - "endPoint": { - "x": 326.985712, - "y": 25.933605 - } - } - }, - { - "id": "b187f987-b2d3-5fb1-8b54-54ac457bd54b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.985712, - "y": 25.933605 - }, - "endPoint": { - "x": 326.98476, - "y": 25.931851 - } - } - }, - { - "id": "e4f610e8-5988-5418-bc8f-b40612cdf9b5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.98476, - "y": 25.931851 - }, - "endPoint": { - "x": 326.983806, - "y": 25.930099 - } - } - }, - { - "id": "e4f3a967-13ea-5704-83bc-f9058cd79c62", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.983806, - "y": 25.930099 - }, - "endPoint": { - "x": 326.979832, - "y": 25.922823 - } - } - }, - { - "id": "fa31adce-f84a-5e5a-b6b7-9abe9efc7259", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.979832, - "y": 25.922823 - }, - "endPoint": { - "x": 326.975855, - "y": 25.915548 - } - } - }, - { - "id": "f482f3f8-7957-5f68-b406-efe920e82ee7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.975855, - "y": 25.915548 - }, - "endPoint": { - "x": 326.971876, - "y": 25.908276 - } - } - }, - { - "id": "8b524f80-b449-5a3b-8190-5d42cf0e40f4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.971876, - "y": 25.908276 - }, - "endPoint": { - "x": 326.967893, - "y": 25.901005 - } - } - }, - { - "id": "dab578b1-b560-5029-ae27-c4ab3810e0ed", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.967893, - "y": 25.901005 - }, - "endPoint": { - "x": 326.963406, - "y": 25.892889 - } - } - }, - { - "id": "e9bc7dc1-f717-510c-88c9-6c537f1ec07b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.963406, - "y": 25.892889 - }, - "endPoint": { - "x": 326.95886, - "y": 25.884806 - } - } - }, - { - "id": "2f89dfe2-9475-5379-ac59-fd31e5595186", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.95886, - "y": 25.884806 - }, - "endPoint": { - "x": 326.954255, - "y": 25.876757 - } - } - }, - { - "id": "5dac4a88-0b5d-5a26-9f59-844fb8bce1a3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.954255, - "y": 25.876757 - }, - "endPoint": { - "x": 326.949591, - "y": 25.868742 - } - } - }, - { - "id": "dd89910a-a25c-5940-8d77-61fc6ba5f7ea", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.949591, - "y": 25.868742 - }, - "endPoint": { - "x": 326.946686, - "y": 25.863725 - } - } - }, - { - "id": "69a0b215-746d-5b46-939e-6a9a88b378f3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.946686, - "y": 25.863725 - }, - "endPoint": { - "x": 326.943841, - "y": 25.858676 - } - } - }, - { - "id": "b0efda2b-eb3d-56c0-b9ca-f43f46e244e7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.943841, - "y": 25.858676 - }, - "endPoint": { - "x": 326.941056, - "y": 25.853592 - } - } - }, - { - "id": "20c36d9b-a0f9-5ea6-80c5-ab48fe80a9bd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.941056, - "y": 25.853592 - }, - "endPoint": { - "x": 326.93833, - "y": 25.848477 - } - } - }, - { - "id": "1626b898-041b-587c-862e-986387ed51f2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.93833, - "y": 25.848477 - }, - "endPoint": { - "x": 326.937086, - "y": 25.845851 - } - } - }, - { - "id": "3059bb06-9759-593a-889d-a153cfc201e6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.937086, - "y": 25.845851 - }, - "endPoint": { - "x": 326.936065, - "y": 25.843136 - } - } - }, - { - "id": "1cc0bc68-ef57-52d3-a498-5b051ebf8808", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.936065, - "y": 25.843136 - }, - "endPoint": { - "x": 326.935272, - "y": 25.840346 - } - } - }, - { - "id": "04ac178d-b078-5067-8fb1-1073afe96374", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.935272, - "y": 25.840346 - }, - "endPoint": { - "x": 326.934712, - "y": 25.837495 - } - } - }, - { - "id": "7e56f60b-db95-5b48-adb9-78c18bc1b822", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.934712, - "y": 25.837495 - }, - "endPoint": { - "x": 326.934435, - "y": 25.834902 - } - } - }, - { - "id": "c422d482-15bc-5574-921e-842f322fcd9a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.934435, - "y": 25.834902 - }, - "endPoint": { - "x": 326.934398, - "y": 25.832301 - } - } - }, - { - "id": "624eba91-67e2-5af0-8950-1d9497722639", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.934398, - "y": 25.832301 - }, - "endPoint": { - "x": 326.934601, - "y": 25.829708 - } - } - }, - { - "id": "24771ac5-ffa7-54dc-879d-0d5cbcc7e643", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.934601, - "y": 25.829708 - }, - "endPoint": { - "x": 326.935044, - "y": 25.827139 - } - } - }, - { - "id": "9abaac55-49b4-50a2-be73-85d836986725", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.935044, - "y": 25.827139 - }, - "endPoint": { - "x": 326.935371, - "y": 25.825697 - } - } - }, - { - "id": "fa3bee0f-36b2-5e97-999e-6c160c6f45b5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.935371, - "y": 25.825697 - }, - "endPoint": { - "x": 326.935716, - "y": 25.824259 - } - } - }, - { - "id": "5db04f00-cca7-5841-b63c-48018ac4e172", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.935716, - "y": 25.824259 - }, - "endPoint": { - "x": 326.936079, - "y": 25.822826 - } - } - }, - { - "id": "f93f629c-c6b7-5291-9c39-4c85df4cf3ea", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.936079, - "y": 25.822826 - }, - "endPoint": { - "x": 326.93646, - "y": 25.821397 - } - } - }, - { - "id": "69be53ec-f65d-50b0-8b1c-6600e3950c75", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.93646, - "y": 25.821397 - }, - "endPoint": { - "x": 326.937311, - "y": 25.81831 - } - } - }, - { - "id": "52c66929-2d56-5fe6-ac8f-386110754f2c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.937311, - "y": 25.81831 - }, - "endPoint": { - "x": 326.938181, - "y": 25.815229 - } - } - }, - { - "id": "ac81e913-9116-56bb-9f13-3154641a78c2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.938181, - "y": 25.815229 - }, - "endPoint": { - "x": 326.939068, - "y": 25.812152 - } - } - }, - { - "id": "4d72bd53-cd3f-5e38-bc92-000325a8c38d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.939068, - "y": 25.812152 - }, - "endPoint": { - "x": 326.939972, - "y": 25.80908 - } - } - }, - { - "id": "fa7d23ca-83bf-5797-a318-5aa407fac5cb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.939972, - "y": 25.80908 - }, - "endPoint": { - "x": 326.941233, - "y": 25.804905 - } - } - }, - { - "id": "0234c977-cf47-5b2f-948f-1919429816e0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.941233, - "y": 25.804905 - }, - "endPoint": { - "x": 326.942529, - "y": 25.800741 - } - } - }, - { - "id": "ed389448-170d-5614-b520-7bbebf4121e6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.942529, - "y": 25.800741 - }, - "endPoint": { - "x": 326.943858, - "y": 25.796587 - } - } - }, - { - "id": "f18dacd9-2abe-5110-a45c-86deed7fed26", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.943858, - "y": 25.796587 - }, - "endPoint": { - "x": 326.945221, - "y": 25.792445 - } - } - }, - { - "id": "873da123-bd1a-5dba-bd8c-c40247ccb0ce", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.945221, - "y": 25.792445 - }, - "endPoint": { - "x": 326.945502, - "y": 25.791659 - } - } - }, - { - "id": "f2f70036-c2a6-56c1-8d7c-f9cfaac451af", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.945502, - "y": 25.791659 - }, - "endPoint": { - "x": 326.945817, - "y": 25.790886 - } - } - }, - { - "id": "aa98a1e4-3227-5c3b-80d8-af4c53f0e4ff", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.945817, - "y": 25.790886 - }, - "endPoint": { - "x": 326.946164, - "y": 25.790127 - } - } - }, - { - "id": "5f9d65f9-b945-5a9e-a05b-477b8b530260", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.946164, - "y": 25.790127 - }, - "endPoint": { - "x": 326.946543, - "y": 25.789384 - } - } - }, - { - "id": "0cca7a2f-c5b2-5123-b158-55d86d55e90a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.946543, - "y": 25.789384 - }, - "endPoint": { - "x": 326.947154, - "y": 25.788368 - } - } - }, - { - "id": "f2ffc8ab-87c4-5ba0-9485-65a2106bc877", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.947154, - "y": 25.788368 - }, - "endPoint": { - "x": 326.947857, - "y": 25.787418 - } - } - }, - { - "id": "183c9e55-5470-58ee-8233-940f028231a2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.947857, - "y": 25.787418 - }, - "endPoint": { - "x": 326.948648, - "y": 25.78654 - } - } - }, - { - "id": "473c4089-2943-5db5-a802-5741ec6191ce", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.948648, - "y": 25.78654 - }, - "endPoint": { - "x": 326.949521, - "y": 25.785739 - } - } - }, - { - "id": "1f4badc0-1db0-52fc-94ab-52c3765cc29a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.949521, - "y": 25.785739 - }, - "endPoint": { - "x": 326.9536, - "y": 25.782413 - } - } - }, - { - "id": "ea470759-c830-51f8-ab6f-10ac094e2ca1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.9536, - "y": 25.782413 - }, - "endPoint": { - "x": 326.95775, - "y": 25.779176 - } - } - }, - { - "id": "3499151c-50d6-537f-b00f-4b5aeb59168a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.95775, - "y": 25.779176 - }, - "endPoint": { - "x": 326.961967, - "y": 25.776028 - } - } - }, - { - "id": "b8a64c2b-3cb7-5ceb-8ca8-c95eb2b2591e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.961967, - "y": 25.776028 - }, - "endPoint": { - "x": 326.96625, - "y": 25.77297 - } - } - }, - { - "id": "845ca76d-bd1e-5af4-858f-abf5940869e2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.96625, - "y": 25.77297 - }, - "endPoint": { - "x": 326.971464, - "y": 25.769344 - } - } - }, - { - "id": "1576a001-a73e-58b6-b716-642670760923", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.971464, - "y": 25.769344 - }, - "endPoint": { - "x": 326.976689, - "y": 25.765735 - } - } - }, - { - "id": "7f93e637-c1ef-5b90-8606-7b486ae18da1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.976689, - "y": 25.765735 - }, - "endPoint": { - "x": 326.981927, - "y": 25.762144 - } - } - }, - { - "id": "75baf0a9-1dd3-5505-ba1d-934cd7ead38e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.981927, - "y": 25.762144 - }, - "endPoint": { - "x": 326.987177, - "y": 25.758571 - } - } - }, - { - "id": "e8998d4c-1498-52d4-806f-1e231aece3ff", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.987177, - "y": 25.758571 - }, - "endPoint": { - "x": 326.993425, - "y": 25.754347 - } - } - }, - { - "id": "283294db-a373-58e1-aa83-f7fef640bb97", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.993425, - "y": 25.754347 - }, - "endPoint": { - "x": 326.999685, - "y": 25.75014 - } - } - }, - { - "id": "16e01730-451c-5035-8b41-4f099a13a0a9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.999685, - "y": 25.75014 - }, - "endPoint": { - "x": 327.005957, - "y": 25.745951 - } - } - }, - { - "id": "42db7710-4cbe-503a-a64a-9c45cb4a8b2e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.005957, - "y": 25.745951 - }, - "endPoint": { - "x": 327.012241, - "y": 25.74178 - } - } - }, - { - "id": "dc81007a-3dd3-5ecc-8d90-a5351c039179", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.012241, - "y": 25.74178 - }, - "endPoint": { - "x": 327.019976, - "y": 25.736699 - } - } - }, - { - "id": "12452054-c9b5-55e6-98b2-e2a1bc613093", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.019976, - "y": 25.736699 - }, - "endPoint": { - "x": 327.027745, - "y": 25.73167 - } - } - }, - { - "id": "653c117a-3969-5c4c-aa03-bd78a54b62e7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.027745, - "y": 25.73167 - }, - "endPoint": { - "x": 327.035549, - "y": 25.726695 - } - } - }, - { - "id": "e06a6437-eb42-5098-835c-fb40f706ab59", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.035549, - "y": 25.726695 - }, - "endPoint": { - "x": 327.043386, - "y": 25.721772 - } - } - }, - { - "id": "f4b4657e-3910-5d33-bdaf-c96388a7d259", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.043386, - "y": 25.721772 - }, - "endPoint": { - "x": 327.046397, - "y": 25.719932 - } - } - }, - { - "id": "864e18c3-6f1d-5dd1-8338-f51af02b01e5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.046397, - "y": 25.719932 - }, - "endPoint": { - "x": 327.049441, - "y": 25.718146 - } - } - }, - { - "id": "a6f2efb7-827f-55cb-b264-cad853e0bdf4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.049441, - "y": 25.718146 - }, - "endPoint": { - "x": 327.052515, - "y": 25.716414 - } - } - }, - { - "id": "0ae3d5a0-10ac-5b12-a3f8-65bd6b1d1412", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.052515, - "y": 25.716414 - }, - "endPoint": { - "x": 327.05562, - "y": 25.714738 - } - } - }, - { - "id": "2492a427-62e5-53cb-9238-4aa0efdcc36a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.05562, - "y": 25.714738 - }, - "endPoint": { - "x": 327.06497, - "y": 25.710196 - } - } - }, - { - "id": "3462fcfd-db49-5987-bbdb-7b2c21d108da", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.06497, - "y": 25.710196 - }, - "endPoint": { - "x": 327.074595, - "y": 25.706303 - } - } - }, - { - "id": "6d2c7ab4-c8a7-5e26-b1b4-027abcf0e012", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.074595, - "y": 25.706303 - }, - "endPoint": { - "x": 327.084461, - "y": 25.703073 - } - } - }, - { - "id": "0f808640-0852-5561-b83c-cb8fd828285f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.084461, - "y": 25.703073 - }, - "endPoint": { - "x": 327.094536, - "y": 25.700516 - } - } - }, - { - "id": "c846a07e-aeb9-51cb-b79b-52f71a2268b1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.094536, - "y": 25.700516 - }, - "endPoint": { - "x": 327.117111, - "y": 25.695238 - } - } - }, - { - "id": "5f3a505d-8ff9-5aa8-b302-c6ce10c5295e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.117111, - "y": 25.695238 - }, - "endPoint": { - "x": 327.139511, - "y": 25.68928 - } - } - }, - { - "id": "ab8f32db-9655-5587-9e77-bba069384c96", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.139511, - "y": 25.68928 - }, - "endPoint": { - "x": 327.16172, - "y": 25.682646 - } - } - }, - { - "id": "c7302043-494c-5c9e-b059-5756ca5754dd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.16172, - "y": 25.682646 - }, - "endPoint": { - "x": 327.183723, - "y": 25.675341 - } - } - }, - { - "id": "5c201454-175b-5619-a9ba-56f9fb0c22cc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.183723, - "y": 25.675341 - }, - "endPoint": { - "x": 327.211606, - "y": 25.665602 - } - } - }, - { - "id": "e1e36c64-17f5-5d4c-af81-f0af77589e32", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.211606, - "y": 25.665602 - }, - "endPoint": { - "x": 327.239482, - "y": 25.655843 - } - } - }, - { - "id": "fe5f64f2-93e4-5789-ad29-be94aa435544", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.239482, - "y": 25.655843 - }, - "endPoint": { - "x": 327.267351, - "y": 25.646065 - } - } - }, - { - "id": "dcfbb4ae-8637-55b5-82d3-cf63fb38ed7d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.267351, - "y": 25.646065 - }, - "endPoint": { - "x": 327.295213, - "y": 25.636267 - } - } - }, - { - "id": "b2144536-de2d-5139-8fe3-2cda1dbaa2e6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.295213, - "y": 25.636267 - }, - "endPoint": { - "x": 327.315371, - "y": 25.629181 - } - } - }, - { - "id": "c1814b9f-323d-5d5c-8f0f-58a10d08c179", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.315371, - "y": 25.629181 - }, - "endPoint": { - "x": 327.335536, - "y": 25.622115 - } - } - }, - { - "id": "7b64a4b1-49b0-59ec-91d0-30d374c9491e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.335536, - "y": 25.622115 - }, - "endPoint": { - "x": 327.355708, - "y": 25.615068 - } - } - }, - { - "id": "137696a6-5053-54b0-af2b-fe244d2cae99", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.355708, - "y": 25.615068 - }, - "endPoint": { - "x": 327.375887, - "y": 25.608041 - } - } - }, - { - "id": "4c4e0cf4-f3b5-5b5a-a9b8-2eb0163e017f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.375887, - "y": 25.608041 - }, - "endPoint": { - "x": 327.403486, - "y": 25.598492 - } - } - }, - { - "id": "1caa85f8-26eb-5f59-a1da-56fba24d3f10", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.403486, - "y": 25.598492 - }, - "endPoint": { - "x": 327.431114, - "y": 25.589027 - } - } - }, - { - "id": "0296e7c7-5314-5976-8f16-4fe83a031898", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.431114, - "y": 25.589027 - }, - "endPoint": { - "x": 327.45877, - "y": 25.579646 - } - } - }, - { - "id": "eec140ae-321a-52a9-95b9-9ff912c2845f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.45877, - "y": 25.579646 - }, - "endPoint": { - "x": 327.486455, - "y": 25.570349 - } - } - }, - { - "id": "27935995-d8bd-51c3-b1c2-eb664dd40c8d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.486455, - "y": 25.570349 - }, - "endPoint": { - "x": 327.495811, - "y": 25.567176 - } - } - }, - { - "id": "c3932c75-c61d-5e02-9006-2fea2eb09336", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.495811, - "y": 25.567176 - }, - "endPoint": { - "x": 327.505138, - "y": 25.563919 - } - } - }, - { - "id": "2807f612-1393-5785-8dc2-b42eeab4590e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.505138, - "y": 25.563919 - }, - "endPoint": { - "x": 327.514436, - "y": 25.560579 - } - } - }, - { - "id": "a7e42b77-5c8e-5abe-af6b-2130d1c1e26d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.514436, - "y": 25.560579 - }, - "endPoint": { - "x": 327.523703, - "y": 25.557154 - } - } - }, - { - "id": "2f0b84f4-109e-5003-8339-2a25b51de5c3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.523703, - "y": 25.557154 - }, - "endPoint": { - "x": 327.525162, - "y": 25.556599 - } - } - }, - { - "id": "53023f4b-0865-5c58-aac7-3c0ab5c7fdc7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.525162, - "y": 25.556599 - }, - "endPoint": { - "x": 327.526616, - "y": 25.556029 - } - } - }, - { - "id": "dbb17267-3b1d-5ede-a00b-7dd3420708ca", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.526616, - "y": 25.556029 - }, - "endPoint": { - "x": 327.528063, - "y": 25.555443 - } - } - }, - { - "id": "98c3a67a-3a13-52c7-b633-c41b1874abea", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.528063, - "y": 25.555443 - }, - "endPoint": { - "x": 327.529504, - "y": 25.554843 - } - } - }, - { - "id": "b4f04126-9f0b-5f84-b9cd-d8e3c4e632be", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.529504, - "y": 25.554843 - }, - "endPoint": { - "x": 327.560091, - "y": 25.541901 - } - } - }, - { - "id": "f68c1680-54d1-5bd1-9812-b26f2055db0f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.560091, - "y": 25.541901 - }, - "endPoint": { - "x": 327.590671, - "y": 25.528944 - } - } - }, - { - "id": "8b68cf3e-ee2d-5d13-ad6c-9024b8ea2f69", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.590671, - "y": 25.528944 - }, - "endPoint": { - "x": 327.621245, - "y": 25.515972 - } - } - }, - { - "id": "a0eaa682-ba4c-5943-9b44-87c2bc66e42b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.621245, - "y": 25.515972 - }, - "endPoint": { - "x": 327.651812, - "y": 25.502985 - } - } - }, - { - "id": "6188aa9d-bbbb-5e24-88dd-04318bc144da", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.651812, - "y": 25.502985 - }, - "endPoint": { - "x": 327.67235, - "y": 25.494231 - } - } - }, - { - "id": "e87081ad-2d91-51b0-8701-53254dbca375", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.67235, - "y": 25.494231 - }, - "endPoint": { - "x": 327.692873, - "y": 25.48544 - } - } - }, - { - "id": "6eae3947-504d-569e-b541-0953d1ce3ead", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.692873, - "y": 25.48544 - }, - "endPoint": { - "x": 327.713379, - "y": 25.476611 - } - } - }, - { - "id": "a1aa7958-23f9-56cd-9dc4-2bc738d3fd9d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.713379, - "y": 25.476611 - }, - "endPoint": { - "x": 327.733869, - "y": 25.467745 - } - } - }, - { - "id": "5b365110-6cd2-5bda-b6d8-b85c7573d199", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.733869, - "y": 25.467745 - }, - "endPoint": { - "x": 327.737376, - "y": 25.466201 - } - } - }, - { - "id": "3c6bbf49-67c3-5209-a8da-dca1fcaedf97", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.737376, - "y": 25.466201 - }, - "endPoint": { - "x": 327.740867, - "y": 25.464619 - } - } - }, - { - "id": "a6272234-755e-5c73-8ddc-6aa5edd724f2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.740867, - "y": 25.464619 - }, - "endPoint": { - "x": 327.744341, - "y": 25.463001 - } - } - }, - { - "id": "c05eda0b-e821-5ab3-ac3c-9449d4bc6140", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.744341, - "y": 25.463001 - }, - "endPoint": { - "x": 327.747797, - "y": 25.461346 - } - } - }, - { - "id": "1c77eb3a-5a37-5cf8-871d-187d61dfbabd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.747797, - "y": 25.461346 - }, - "endPoint": { - "x": 327.751017, - "y": 25.459539 - } - } - }, - { - "id": "9446c12a-a238-514e-8b9f-1ca659ff6ba6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.751017, - "y": 25.459539 - }, - "endPoint": { - "x": 327.753991, - "y": 25.457372 - } - } - }, - { - "id": "72669105-e2bc-5e0c-80aa-5c17a9e8857d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.753991, - "y": 25.457372 - }, - "endPoint": { - "x": 327.756687, - "y": 25.454868 - } - } - }, - { - "id": "f7e60d5c-8434-5150-be80-ee6e77b08fc1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.756687, - "y": 25.454868 - }, - "endPoint": { - "x": 327.759077, - "y": 25.452053 - } - } - }, - { - "id": "9d905db2-bfcb-53b5-8cdd-0250d5d959d9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.759077, - "y": 25.452053 - }, - "endPoint": { - "x": 327.763179, - "y": 25.446955 - } - } - }, - { - "id": "90edcdeb-f81f-50d3-97e6-fd409050f8b8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.763179, - "y": 25.446955 - }, - "endPoint": { - "x": 327.767604, - "y": 25.442144 - } - } - }, - { - "id": "f78740c8-e010-59d0-b9a2-af09eb93d891", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.767604, - "y": 25.442144 - }, - "endPoint": { - "x": 327.772336, - "y": 25.437634 - } - } - }, - { - "id": "5955f27c-22d2-5091-8cdc-4d60f3e6f761", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.772336, - "y": 25.437634 - }, - "endPoint": { - "x": 327.777361, - "y": 25.433442 - } - } - }, - { - "id": "b349a863-2df3-5b0e-8419-26968d65ce3f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.777361, - "y": 25.433442 - }, - "endPoint": { - "x": 327.781886, - "y": 25.430094 - } - } - }, - { - "id": "ba296220-9f96-5f52-94ce-4f641b19f7e5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.781886, - "y": 25.430094 - }, - "endPoint": { - "x": 327.786573, - "y": 25.426983 - } - } - }, - { - "id": "007ec9d2-ca8b-5150-abd0-f567d68e083f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.786573, - "y": 25.426983 - }, - "endPoint": { - "x": 327.791412, - "y": 25.424113 - } - } - }, - { - "id": "2a82f07b-40da-50b7-afa0-c946b463da3e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.791412, - "y": 25.424113 - }, - "endPoint": { - "x": 327.796393, - "y": 25.42149 - } - } - }, - { - "id": "29eedd41-4ccc-5ead-b09e-f5228826339d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.796393, - "y": 25.42149 - }, - "endPoint": { - "x": 327.799274, - "y": 25.419906 - } - } - }, - { - "id": "defb8c07-3d55-597a-971d-c396651babee", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.799274, - "y": 25.419906 - }, - "endPoint": { - "x": 327.801999, - "y": 25.418079 - } - } - }, - { - "id": "d60823ec-7b88-5d13-bf18-126ee3d24d36", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.801999, - "y": 25.418079 - }, - "endPoint": { - "x": 327.804554, - "y": 25.416021 - } - } - }, - { - "id": "46a00237-2caa-5bc1-9b21-0358d0de1f0e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.804554, - "y": 25.416021 - }, - "endPoint": { - "x": 327.806924, - "y": 25.413742 - } - } - }, - { - "id": "89a203a8-75be-5220-a10c-a436b7f53563", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.806924, - "y": 25.413742 - }, - "endPoint": { - "x": 327.810112, - "y": 25.410271 - } - } - }, - { - "id": "d026b93c-649a-5b85-b0be-cca34d23820f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.810112, - "y": 25.410271 - }, - "endPoint": { - "x": 327.813171, - "y": 25.406688 - } - } - }, - { - "id": "aa997b91-9b29-5447-b2d3-0b4690f006c0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.813171, - "y": 25.406688 - }, - "endPoint": { - "x": 327.816096, - "y": 25.402995 - } - } - }, - { - "id": "ca720a83-5c81-5f9b-a1ef-ff10cf766eeb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.816096, - "y": 25.402995 - }, - "endPoint": { - "x": 327.818886, - "y": 25.399196 - } - } - }, - { - "id": "35563383-daa9-5891-95fd-0d557a67f5cc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.818886, - "y": 25.399196 - }, - "endPoint": { - "x": 327.823492, - "y": 25.392828 - } - } - }, - { - "id": "5423209b-09ae-5941-a1dd-0bd6f4c51978", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.823492, - "y": 25.392828 - }, - "endPoint": { - "x": 327.828236, - "y": 25.386562 - } - } - }, - { - "id": "1a146cae-ce72-587f-8cb0-d47f5a04a8c5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.828236, - "y": 25.386562 - }, - "endPoint": { - "x": 327.833116, - "y": 25.380402 - } - } - }, - { - "id": "17534e0b-63e9-537d-bced-0c9447537974", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.833116, - "y": 25.380402 - }, - "endPoint": { - "x": 327.83813, - "y": 25.374349 - } - } - }, - { - "id": "3b900dbf-65f7-5dc3-9c6a-432454e9964e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.83813, - "y": 25.374349 - }, - "endPoint": { - "x": 327.842463, - "y": 25.369321 - } - } - }, - { - "id": "dcab9d69-839d-5162-9468-d6c2269dfc47", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.842463, - "y": 25.369321 - }, - "endPoint": { - "x": 327.846881, - "y": 25.364369 - } - } - }, - { - "id": "b7112fb6-f55b-58ef-967a-57461c208598", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.846881, - "y": 25.364369 - }, - "endPoint": { - "x": 327.851384, - "y": 25.359493 - } - } - }, - { - "id": "764bf840-f14b-538b-b9da-1b0bb7a36190", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.851384, - "y": 25.359493 - }, - "endPoint": { - "x": 327.855971, - "y": 25.354696 - } - } - }, - { - "id": "3e2b2f8b-cca1-5640-8cf1-f107f6256865", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.855971, - "y": 25.354696 - }, - "endPoint": { - "x": 327.857394, - "y": 25.35315 - } - } - }, - { - "id": "45709f37-4e5e-5be1-8d36-49cdf793c791", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.857394, - "y": 25.35315 - }, - "endPoint": { - "x": 327.85873, - "y": 25.35153 - } - } - }, - { - "id": "7ae39ca4-64d0-5940-ba4e-4f1e69586a65", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.85873, - "y": 25.35153 - }, - "endPoint": { - "x": 327.859976, - "y": 25.34984 - } - } - }, - { - "id": "476db919-ba55-5aaa-942c-2ed5d6d70386", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.859976, - "y": 25.34984 - }, - "endPoint": { - "x": 327.861128, - "y": 25.348083 - } - } - }, - { - "id": "17a72b5a-2b20-55e6-99f2-12282891c623", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.861128, - "y": 25.348083 - }, - "endPoint": { - "x": 327.862276, - "y": 25.346175 - } - } - }, - { - "id": "50f56775-107c-5a3b-9238-06b3dc863a43", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.862276, - "y": 25.346175 - }, - "endPoint": { - "x": 327.863379, - "y": 25.34424 - } - } - }, - { - "id": "52574d7a-af6b-5124-802a-503bad0c2d81", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.863379, - "y": 25.34424 - }, - "endPoint": { - "x": 327.864436, - "y": 25.34228 - } - } - }, - { - "id": "22643a1b-6724-56cd-8f89-9a8921afa432", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.864436, - "y": 25.34228 - }, - "endPoint": { - "x": 327.865448, - "y": 25.340296 - } - } - }, - { - "id": "ccb5721d-fdcf-5ab2-bc95-164cfe796b59", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.865448, - "y": 25.340296 - }, - "endPoint": { - "x": 327.867172, - "y": 25.336872 - } - } - }, - { - "id": "7979336e-eb43-554a-89e5-d9c36ed60ec8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.867172, - "y": 25.336872 - }, - "endPoint": { - "x": 327.868942, - "y": 25.333472 - } - } - }, - { - "id": "44ccf311-7939-5b40-8ca4-2bca8a79808d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.868942, - "y": 25.333472 - }, - "endPoint": { - "x": 327.870759, - "y": 25.330096 - } - } - }, - { - "id": "304680cd-0efd-5613-b622-8ab3b297636c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.870759, - "y": 25.330096 - }, - "endPoint": { - "x": 327.872621, - "y": 25.326745 - } - } - }, - { - "id": "e26c46ac-9090-5102-97c5-51b6d0fc5163", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.872621, - "y": 25.326745 - }, - "endPoint": { - "x": 327.874318, - "y": 25.323749 - } - } - }, - { - "id": "ed3aa548-c310-54c4-b070-85264e5a4937", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.874318, - "y": 25.323749 - }, - "endPoint": { - "x": 327.876024, - "y": 25.320757 - } - } - }, - { - "id": "0ece7313-d689-55d3-b286-d7fb60252625", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.876024, - "y": 25.320757 - }, - "endPoint": { - "x": 327.877739, - "y": 25.317771 - } - } - }, - { - "id": "db4ac280-0c97-529c-95b3-895d6aba642d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.877739, - "y": 25.317771 - }, - "endPoint": { - "x": 327.879462, - "y": 25.314789 - } - } - }, - { - "id": "b8453dc0-d948-5b3a-ac30-208b20bbcb16", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.879462, - "y": 25.314789 - }, - "endPoint": { - "x": 327.88105, - "y": 25.31204 - } - } - }, - { - "id": "be697619-bde8-5f49-8e64-10d5724218b6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.88105, - "y": 25.31204 - }, - "endPoint": { - "x": 327.882629, - "y": 25.309285 - } - } - }, - { - "id": "fa33d046-0cb7-5c95-907e-d725a93cb175", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.882629, - "y": 25.309285 - }, - "endPoint": { - "x": 327.8842, - "y": 25.306526 - } - } - }, - { - "id": "5bc98b50-f7ee-56d3-a5a1-a80201fa5e33", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.8842, - "y": 25.306526 - }, - "endPoint": { - "x": 327.885763, - "y": 25.303763 - } - } - }, - { - "id": "c8e5219d-1f7d-58ca-b46e-ff5c4205dd35", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.885763, - "y": 25.303763 - }, - "endPoint": { - "x": 327.888228, - "y": 25.299323 - } - } - }, - { - "id": "3cc5e5d6-225d-56d9-8cf5-601a1f511f87", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.888228, - "y": 25.299323 - }, - "endPoint": { - "x": 327.890639, - "y": 25.294853 - } - } - }, - { - "id": "c2973568-ceab-5202-9b4d-88b829c4341b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.890639, - "y": 25.294853 - }, - "endPoint": { - "x": 327.892994, - "y": 25.290355 - } - } - }, - { - "id": "b1bc3fd3-14bd-5941-9981-9cc2305e10f0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.892994, - "y": 25.290355 - }, - "endPoint": { - "x": 327.895293, - "y": 25.285827 - } - } - }, - { - "id": "d3f5ce58-d69d-532f-9fc4-635487465e6d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.895293, - "y": 25.285827 - }, - "endPoint": { - "x": 327.895871, - "y": 25.284601 - } - } - }, - { - "id": "c302a2a4-3188-5964-80b1-737bcf9b0618", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.895871, - "y": 25.284601 - }, - "endPoint": { - "x": 327.896391, - "y": 25.28335 - } - } - }, - { - "id": "75d84157-1b71-5449-83e6-4c28de17bcf6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.896391, - "y": 25.28335 - }, - "endPoint": { - "x": 327.896853, - "y": 25.282077 - } - } - }, - { - "id": "83dc063b-46f1-5962-8969-bb410c5aba55", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.896853, - "y": 25.282077 - }, - "endPoint": { - "x": 327.897256, - "y": 25.280783 - } - } - }, - { - "id": "082be430-0f9d-5dae-ac50-ca075f7f0591", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.897256, - "y": 25.280783 - }, - "endPoint": { - "x": 327.897483, - "y": 25.279983 - } - } - }, - { - "id": "93bd142c-257b-55df-b913-68f0400a66fa", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.897483, - "y": 25.279983 - }, - "endPoint": { - "x": 327.897706, - "y": 25.279181 - } - } - }, - { - "id": "3027b4bd-d40a-574c-9ca8-2510bfb57f72", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.897706, - "y": 25.279181 - }, - "endPoint": { - "x": 327.897926, - "y": 25.278379 - } - } - }, - { - "id": "06c6495c-ccac-543f-a47c-f056195fc617", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.897926, - "y": 25.278379 - }, - "endPoint": { - "x": 327.898143, - "y": 25.277576 - } - } - }, - { - "id": "bd9dd388-11b7-5c5f-8027-93af4bb808e7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.898143, - "y": 25.277576 - }, - "endPoint": { - "x": 327.899569, - "y": 25.272223 - } - } - }, - { - "id": "5273e175-815e-51d6-af55-7d73b9754edd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.899569, - "y": 25.272223 - }, - "endPoint": { - "x": 327.900992, - "y": 25.266869 - } - } - }, - { - "id": "9574a2c7-e9b1-59e1-84b7-e70a0a6573af", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.900992, - "y": 25.266869 - }, - "endPoint": { - "x": 327.902411, - "y": 25.261515 - } - } - }, - { - "id": "dc09373e-8add-5706-9e22-df5fea5cda61", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.902411, - "y": 25.261515 - }, - "endPoint": { - "x": 327.903827, - "y": 25.256159 - } - } - }, - { - "id": "233a017f-04de-5f08-86d8-2097734aaf07", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.903827, - "y": 25.256159 - }, - "endPoint": { - "x": 327.905307, - "y": 25.250544 - } - } - }, - { - "id": "10ade199-e043-5166-92ea-eb358e9c8c58", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.905307, - "y": 25.250544 - }, - "endPoint": { - "x": 327.906784, - "y": 25.244927 - } - } - }, - { - "id": "2557ebcd-848c-5628-b468-bf51dcf6758a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.906784, - "y": 25.244927 - }, - "endPoint": { - "x": 327.908256, - "y": 25.23931 - } - } - }, - { - "id": "f0bfd88e-e0ef-5aeb-9e72-383afe7c3e81", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.908256, - "y": 25.23931 - }, - "endPoint": { - "x": 327.909725, - "y": 25.233692 - } - } - }, - { - "id": "22e73ae6-ee01-5d25-8a46-5d414b2a782a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.909725, - "y": 25.233692 - }, - "endPoint": { - "x": 327.910721, - "y": 25.229871 - } - } - }, - { - "id": "5dd70f0c-cc9f-5d7d-a83f-bf999862b66f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.910721, - "y": 25.229871 - }, - "endPoint": { - "x": 327.911712, - "y": 25.22605 - } - } - }, - { - "id": "b5e73de4-1f01-5a5b-87bf-f72648b19a7e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.911712, - "y": 25.22605 - }, - "endPoint": { - "x": 327.9127, - "y": 25.222227 - } - } - }, - { - "id": "675a50eb-eaef-53fa-9f4d-452bc27f6b26", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.9127, - "y": 25.222227 - }, - "endPoint": { - "x": 327.913683, - "y": 25.218404 - } - } - }, - { - "id": "953a3b92-8ee9-51b7-9937-611e6d55ff4e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.913683, - "y": 25.218404 - }, - "endPoint": { - "x": 327.914878, - "y": 25.213413 - } - } - }, - { - "id": "dcd6c4db-5df2-5267-8eb0-5434c36ee59c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.914878, - "y": 25.213413 - }, - "endPoint": { - "x": 327.915906, - "y": 25.208387 - } - } - }, - { - "id": "e070056f-2556-5c70-9487-3898ab448320", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.915906, - "y": 25.208387 - }, - "endPoint": { - "x": 327.916769, - "y": 25.20333 - } - } - }, - { - "id": "5a43e3e0-67d8-5e6d-9fd6-f39811474021", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.916769, - "y": 25.20333 - }, - "endPoint": { - "x": 327.917465, - "y": 25.198245 - } - } - }, - { - "id": "982f6423-1623-562f-a1b3-d2d6ece5fda3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.917465, - "y": 25.198245 - }, - "endPoint": { - "x": 327.918005, - "y": 25.193042 - } - } - }, - { - "id": "25dc9034-ec52-53fa-8fce-8d750a8092c0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.918005, - "y": 25.193042 - }, - "endPoint": { - "x": 327.918376, - "y": 25.187826 - } - } - }, - { - "id": "9cb34429-9f9f-5708-803c-d67051bbab9d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.918376, - "y": 25.187826 - }, - "endPoint": { - "x": 327.918578, - "y": 25.1826 - } - } - }, - { - "id": "e941b4f2-9c06-5b86-a82e-8be70cbd3fc3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.918578, - "y": 25.1826 - }, - "endPoint": { - "x": 327.918612, - "y": 25.177369 - } - } - }, - { - "id": "7e541b4a-0657-5454-b9b6-e11e864c6165", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.918612, - "y": 25.177369 - }, - "endPoint": { - "x": 327.918544, - "y": 25.173642 - } - } - }, - { - "id": "ab132aaf-8aef-57ab-94ac-9a297c19eb96", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.918544, - "y": 25.173642 - }, - "endPoint": { - "x": 327.918415, - "y": 25.169917 - } - } - }, - { - "id": "c9d4ae12-eb60-57fd-a60e-07636b1b657a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.918415, - "y": 25.169917 - }, - "endPoint": { - "x": 327.918223, - "y": 25.166195 - } - } - }, - { - "id": "91405b00-86ec-5488-a128-dfe6935479be", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.918223, - "y": 25.166195 - }, - "endPoint": { - "x": 327.91797, - "y": 25.162476 - } - } - }, - { - "id": "e220df33-c900-5cae-a33a-1501ad308b7d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.91797, - "y": 25.162476 - }, - "endPoint": { - "x": 327.917626, - "y": 25.157586 - } - } - }, - { - "id": "30fae25f-dd83-5a8d-a70f-33c4abf7f8d8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.917626, - "y": 25.157586 - }, - "endPoint": { - "x": 327.917345, - "y": 25.152693 - } - } - }, - { - "id": "cbb58aaf-6482-5674-a5a0-074b056e0f5a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.917345, - "y": 25.152693 - }, - "endPoint": { - "x": 327.917126, - "y": 25.147796 - } - } - }, - { - "id": "542d72c0-e485-5737-966d-f52d9ec3dcc8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.917126, - "y": 25.147796 - }, - "endPoint": { - "x": 327.916969, - "y": 25.142897 - } - } - }, - { - "id": "67b49381-c5c3-5bd5-b438-e418078568ff", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.916969, - "y": 25.142897 - }, - "endPoint": { - "x": 327.916919, - "y": 25.140334 - } - } - }, - { - "id": "8b9fa7d9-3966-5440-9f80-155df8402e2a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.916919, - "y": 25.140334 - }, - "endPoint": { - "x": 327.9169, - "y": 25.137772 - } - } - }, - { - "id": "a07a923a-e3df-5f38-8113-494deedc3e88", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.9169, - "y": 25.137772 - }, - "endPoint": { - "x": 327.916914, - "y": 25.135209 - } - } - }, - { - "id": "a15e45c5-548f-584b-a9c9-3a8dfe92fccf", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.916914, - "y": 25.135209 - }, - "endPoint": { - "x": 327.916959, - "y": 25.132647 - } - } - }, - { - "id": "511a31df-bea2-5111-b624-80b827845373", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.916959, - "y": 25.132647 - }, - "endPoint": { - "x": 327.917009, - "y": 25.129874 - } - } - }, - { - "id": "adacc8a4-0672-5965-8cdc-6ddc7ce8b1c6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.917009, - "y": 25.129874 - }, - "endPoint": { - "x": 327.917027, - "y": 25.127101 - } - } - }, - { - "id": "a1846bba-09f3-5c0f-a098-1e217581e28b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.917027, - "y": 25.127101 - }, - "endPoint": { - "x": 327.917014, - "y": 25.124328 - } - } - }, - { - "id": "af2ba351-51dc-587b-802c-f3f94fbfb720", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.917014, - "y": 25.124328 - }, - "endPoint": { - "x": 327.916969, - "y": 25.121555 - } - } - }, - { - "id": "4f28eac5-1e09-5ffb-8b6a-fa5f11065de8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.916969, - "y": 25.121555 - }, - "endPoint": { - "x": 327.916817, - "y": 25.118998 - } - } - }, - { - "id": "1f25b807-631d-5dea-b122-ddbf85d07766", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.916817, - "y": 25.118998 - }, - "endPoint": { - "x": 327.916473, - "y": 25.116463 - } - } - }, - { - "id": "bce7f5c3-a141-54f2-9625-bc516ef5bcad", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.916473, - "y": 25.116463 - }, - "endPoint": { - "x": 327.915942, - "y": 25.11396 - } - } - }, - { - "id": "1a2a3b0f-66f1-543e-ab16-66c0a2949165", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.915942, - "y": 25.11396 - }, - "endPoint": { - "x": 327.915223, - "y": 25.111501 - } - } - }, - { - "id": "2252f91b-82f5-5254-8ee3-c585bdebdffe", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.915223, - "y": 25.111501 - }, - "endPoint": { - "x": 327.913869, - "y": 25.107746 - } - } - }, - { - "id": "c312572d-6278-5569-94a2-2fb79c22dd0b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.913869, - "y": 25.107746 - }, - "endPoint": { - "x": 327.912338, - "y": 25.104063 - } - } - }, - { - "id": "c8b59773-bbd8-5dc8-b29e-89861e576fc2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.912338, - "y": 25.104063 - }, - "endPoint": { - "x": 327.910633, - "y": 25.100457 - } - } - }, - { - "id": "9f5cf860-0152-5e4a-85e7-e5bffcdf3bd0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.910633, - "y": 25.100457 - }, - "endPoint": { - "x": 327.908755, - "y": 25.096934 - } - } - }, - { - "id": "9d94f12a-5f1b-5e22-9bac-854c303f7bdd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.908755, - "y": 25.096934 - }, - "endPoint": { - "x": 327.906611, - "y": 25.093507 - } - } - }, - { - "id": "3c4c609d-7a57-5e8d-b423-b0eb2f22a3bd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.906611, - "y": 25.093507 - }, - "endPoint": { - "x": 327.90417, - "y": 25.090294 - } - } - }, - { - "id": "08fc775f-5b09-5991-a8c1-d44ea9b89fe8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.90417, - "y": 25.090294 - }, - "endPoint": { - "x": 327.901449, - "y": 25.087315 - } - } - }, - { - "id": "9c9d4c7a-3c9d-5d55-a0b0-10feec6a63c7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.901449, - "y": 25.087315 - }, - "endPoint": { - "x": 327.898462, - "y": 25.084589 - } - } - }, - { - "id": "0466cbd2-8710-59c4-bc62-002fe583d0f5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.898462, - "y": 25.084589 - }, - "endPoint": { - "x": 327.896347, - "y": 25.083071 - } - } - }, - { - "id": "a0f473c8-aff6-53c4-8169-bfcb71200903", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.896347, - "y": 25.083071 - }, - "endPoint": { - "x": 327.894049, - "y": 25.081876 - } - } - }, - { - "id": "5614a240-3f1d-59a9-a758-0eef7fc6e4fc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.894049, - "y": 25.081876 - }, - "endPoint": { - "x": 327.891604, - "y": 25.08102 - } - } - }, - { - "id": "bf22b899-3cd4-58ff-837c-2a96dc56b468", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.891604, - "y": 25.08102 - }, - "endPoint": { - "x": 327.889048, - "y": 25.08052 - } - } - }, - { - "id": "dc5b7ca9-15ca-5975-9e4b-dd15f91fd33a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.889048, - "y": 25.08052 - }, - "endPoint": { - "x": 327.885687, - "y": 25.080138 - } - } - }, - { - "id": "265f51bd-8331-5959-9c8a-1a39312c3b7e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.885687, - "y": 25.080138 - }, - "endPoint": { - "x": 327.88232, - "y": 25.079812 - } - } - }, - { - "id": "13b684ff-0392-5918-bcc5-d2eef736f510", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.88232, - "y": 25.079812 - }, - "endPoint": { - "x": 327.878948, - "y": 25.079541 - } - } - }, - { - "id": "5d6fe11a-5d04-5607-a17d-2be56577ab94", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.878948, - "y": 25.079541 - }, - "endPoint": { - "x": 327.875572, - "y": 25.079325 - } - } - }, - { - "id": "514e1240-2c2b-539b-b2c1-3cce20d14c83", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.875572, - "y": 25.079325 - }, - "endPoint": { - "x": 327.871553, - "y": 25.07913 - } - } - }, - { - "id": "b1c82c37-eb96-5842-88c6-1ec8bd66cc4b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.871553, - "y": 25.07913 - }, - "endPoint": { - "x": 327.867532, - "y": 25.078991 - } - } - }, - { - "id": "a1e3f4fb-94b8-5806-b141-425b49400c30", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.867532, - "y": 25.078991 - }, - "endPoint": { - "x": 327.863509, - "y": 25.078907 - } - } - }, - { - "id": "25a95d7f-1df7-59e3-b113-66544b002b10", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.863509, - "y": 25.078907 - }, - "endPoint": { - "x": 327.859485, - "y": 25.078879 - } - } - }, - { - "id": "d74cc1ba-3047-5afc-a1c1-a1b951780c4f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.859485, - "y": 25.078879 - }, - "endPoint": { - "x": 327.81678, - "y": 25.078879 - } - } - }, - { - "id": "d7da2c96-82ca-5095-a7d1-0e3a56425bf4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.81678, - "y": 25.078879 - }, - "endPoint": { - "x": 327.769153, - "y": 25.078879 - } - } - }, - { - "id": "ffcc09a8-8980-56a5-a512-a5709a11e65b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.769153, - "y": 25.078879 - }, - "endPoint": { - "x": 327.768708, - "y": 25.078882 - } - } - }, - { - "id": "1f9a0436-2a39-5e86-8773-309460939a9a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.768708, - "y": 25.078882 - }, - "endPoint": { - "x": 327.768263, - "y": 25.078892 - } - } - }, - { - "id": "17444e02-9493-5490-b2cb-4aad1261fa73", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.768263, - "y": 25.078892 - }, - "endPoint": { - "x": 327.767819, - "y": 25.078908 - } - } - }, - { - "id": "068badb1-539f-523e-a0a5-2e8c9be691c1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.767819, - "y": 25.078908 - }, - "endPoint": { - "x": 327.767374, - "y": 25.078931 - } - } - }, - { - "id": "8400c6a4-94a4-50fc-8ab6-74a79745c2a0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.767374, - "y": 25.078931 - }, - "endPoint": { - "x": 327.760837, - "y": 25.079319 - } - } - }, - { - "id": "617816a3-a6e3-5cd8-a70a-7e51ff7facb6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.760837, - "y": 25.079319 - }, - "endPoint": { - "x": 327.7543, - "y": 25.079713 - } - } - }, - { - "id": "6591d8b1-8f96-5f1f-b625-c0d060dd76ac", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.7543, - "y": 25.079713 - }, - "endPoint": { - "x": 327.747763, - "y": 25.080113 - } - } - }, - { - "id": "1ec1177c-2ff5-55d4-b918-93d0300dd07c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.747763, - "y": 25.080113 - }, - "endPoint": { - "x": 327.741226, - "y": 25.08052 - } - } - }, - { - "id": "ed0c674b-4222-5232-8311-2fff8da4edc9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.741226, - "y": 25.08052 - }, - "endPoint": { - "x": 327.732767, - "y": 25.081112 - } - } - }, - { - "id": "8ecfb6cf-a0ea-5925-92a7-04582ec306bd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.732767, - "y": 25.081112 - }, - "endPoint": { - "x": 327.724316, - "y": 25.081823 - } - } - }, - { - "id": "606d7d64-2dc5-59c7-a0d2-18ec8a44f329", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.724316, - "y": 25.081823 - }, - "endPoint": { - "x": 327.715877, - "y": 25.082653 - } - } - }, - { - "id": "48bd0b5d-3ef8-539d-8e90-bf5d827a2d07", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.715877, - "y": 25.082653 - }, - "endPoint": { - "x": 327.70745, - "y": 25.083604 - } - } - }, - { - "id": "f80c8854-5365-5265-9797-54311fee6eda", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.70745, - "y": 25.083604 - }, - "endPoint": { - "x": 327.705589, - "y": 25.083888 - } - } - }, - { - "id": "d6005d52-74be-508f-b307-58211d2ce40d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.705589, - "y": 25.083888 - }, - "endPoint": { - "x": 327.703751, - "y": 25.08429 - } - } - }, - { - "id": "9779e4b4-67fb-5afc-be59-42e7d963f756", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.703751, - "y": 25.08429 - }, - "endPoint": { - "x": 327.701943, - "y": 25.08481 - } - } - }, - { - "id": "e28850fa-9c94-5666-b029-07699d6346ce", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.701943, - "y": 25.08481 - }, - "endPoint": { - "x": 327.70017, - "y": 25.085445 - } - } - }, - { - "id": "8b045ecf-23f4-5a10-bbe1-3a8786c0c627", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.70017, - "y": 25.085445 - }, - "endPoint": { - "x": 327.699204, - "y": 25.085875 - } - } - }, - { - "id": "1ef87539-5ee4-579f-8479-497fdab02637", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.699204, - "y": 25.085875 - }, - "endPoint": { - "x": 327.698279, - "y": 25.086385 - } - } - }, - { - "id": "2da69427-0e52-59e6-b0f3-1aa6394de80a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.698279, - "y": 25.086385 - }, - "endPoint": { - "x": 327.697401, - "y": 25.086973 - } - } - }, - { - "id": "788dd699-56ce-55d4-a11b-fff16df73f3e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.697401, - "y": 25.086973 - }, - "endPoint": { - "x": 327.696576, - "y": 25.087635 - } - } - }, - { - "id": "23f18f51-3f53-5830-8483-5f89c6673014", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.696576, - "y": 25.087635 - }, - "endPoint": { - "x": 327.694095, - "y": 25.089863 - } - } - }, - { - "id": "39d2a7a7-f655-5ea8-8c79-2637b153e6e1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.694095, - "y": 25.089863 - }, - "endPoint": { - "x": 327.691677, - "y": 25.092156 - } - } - }, - { - "id": "0adcd5d7-f5b8-5a2e-b5a8-3e381ca4567a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.691677, - "y": 25.092156 - }, - "endPoint": { - "x": 327.689321, - "y": 25.094514 - } - } - }, - { - "id": "7245fddb-a558-5d25-b16f-2ed710ccfa64", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.689321, - "y": 25.094514 - }, - "endPoint": { - "x": 327.687028, - "y": 25.096934 - } - } - }, - { - "id": "25c8e4d0-8ce0-53e6-b547-0f7383ca6aa8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.687028, - "y": 25.096934 - }, - "endPoint": { - "x": 327.683321, - "y": 25.101173 - } - } - }, - { - "id": "36d4f62c-bc11-5504-a4a9-3795de68aea8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.683321, - "y": 25.101173 - }, - "endPoint": { - "x": 327.679843, - "y": 25.105597 - } - } - }, - { - "id": "94333b77-db57-5871-85f3-3b93f50be66a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.679843, - "y": 25.105597 - }, - "endPoint": { - "x": 327.6766, - "y": 25.110197 - } - } - }, - { - "id": "50f0dcb2-81a0-53b5-b1cf-9316f79d3a96", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.6766, - "y": 25.110197 - }, - "endPoint": { - "x": 327.673601, - "y": 25.114963 - } - } - }, - { - "id": "665bb0ab-2eeb-5f59-b770-16979783a58c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.673601, - "y": 25.114963 - }, - "endPoint": { - "x": 327.671556, - "y": 25.118119 - } - } - }, - { - "id": "140b1c90-60ec-5d9e-87f1-31f41c890487", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.671556, - "y": 25.118119 - }, - "endPoint": { - "x": 327.669272, - "y": 25.1211 - } - } - }, - { - "id": "cc0f6e3b-ae5e-53e2-97f1-3100358e98cf", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.669272, - "y": 25.1211 - }, - "endPoint": { - "x": 327.666762, - "y": 25.123892 - } - } - }, - { - "id": "ec34ed5d-048f-5c93-848a-a86aa3e206f3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.666762, - "y": 25.123892 - }, - "endPoint": { - "x": 327.664036, - "y": 25.126483 - } - } - }, - { - "id": "ea675d32-4671-5a16-b16e-a6e3edf0bbb2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.664036, - "y": 25.126483 - }, - "endPoint": { - "x": 327.660294, - "y": 25.129743 - } - } - }, - { - "id": "f4905665-b5b0-5752-b09a-dbc47fafce5b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.660294, - "y": 25.129743 - }, - "endPoint": { - "x": 327.656528, - "y": 25.132975 - } - } - }, - { - "id": "c6d3f69e-6c11-50df-90ad-0956078f3cb6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.656528, - "y": 25.132975 - }, - "endPoint": { - "x": 327.652737, - "y": 25.136178 - } - } - }, - { - "id": "c185b26a-93bf-55ae-91f2-61371b08da28", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.652737, - "y": 25.136178 - }, - "endPoint": { - "x": 327.648922, - "y": 25.139353 - } - } - }, - { - "id": "04aca040-674a-5e10-8a59-9ecf3a057479", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.648922, - "y": 25.139353 - }, - "endPoint": { - "x": 327.644452, - "y": 25.143068 - } - } - }, - { - "id": "f87f0c29-6cfc-516c-b374-f64973d0a0ab", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.644452, - "y": 25.143068 - }, - "endPoint": { - "x": 327.640006, - "y": 25.146812 - } - } - }, - { - "id": "9c0d3b78-60b9-5b07-8aa8-b8600011468d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.640006, - "y": 25.146812 - }, - "endPoint": { - "x": 327.635584, - "y": 25.150585 - } - } - }, - { - "id": "452478cf-8974-5ab2-b1e9-b3d2d75caaf6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.635584, - "y": 25.150585 - }, - "endPoint": { - "x": 327.631187, - "y": 25.154386 - } - } - }, - { - "id": "cf1ff7b5-ddfb-5e39-8ec6-1a0dbf80c38e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.631187, - "y": 25.154386 - }, - "endPoint": { - "x": 327.626678, - "y": 25.158313 - } - } - }, - { - "id": "e3a89315-03ca-5ffc-9b71-ba5c9452081e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.626678, - "y": 25.158313 - }, - "endPoint": { - "x": 327.622171, - "y": 25.162242 - } - } - }, - { - "id": "a3b287ce-a98d-51d5-ad8a-d8f3da7c3526", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.622171, - "y": 25.162242 - }, - "endPoint": { - "x": 327.617666, - "y": 25.166174 - } - } - }, - { - "id": "123795ea-2cf2-5bb7-8ea0-51639c5f6777", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.617666, - "y": 25.166174 - }, - "endPoint": { - "x": 327.613164, - "y": 25.170109 - } - } - }, - { - "id": "cb9792af-e082-5e19-b79d-29083798251f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.613164, - "y": 25.170109 - }, - "endPoint": { - "x": 327.607811, - "y": 25.174792 - } - } - }, - { - "id": "0bd562d1-9b69-5931-8c04-dddeaf04395e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.607811, - "y": 25.174792 - }, - "endPoint": { - "x": 327.602461, - "y": 25.179478 - } - } - }, - { - "id": "67581bd6-8417-5339-867d-22f5ea03e648", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.602461, - "y": 25.179478 - }, - "endPoint": { - "x": 327.597113, - "y": 25.184167 - } - } - }, - { - "id": "7a3fada7-f78c-5306-b2c0-1d61502a2f3b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.597113, - "y": 25.184167 - }, - "endPoint": { - "x": 327.591768, - "y": 25.188859 - } - } - }, - { - "id": "8aa63a08-fa17-5bdc-bd67-90aa01d776b6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.591768, - "y": 25.188859 - }, - "endPoint": { - "x": 327.583969, - "y": 25.195841 - } - } - }, - { - "id": "db5e91ec-254b-5e4a-8d68-7ab4f3d6c333", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.583969, - "y": 25.195841 - }, - "endPoint": { - "x": 327.576308, - "y": 25.202972 - } - } - }, - { - "id": "54a167a7-6552-5b75-b4d6-f666152caca3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.576308, - "y": 25.202972 - }, - "endPoint": { - "x": 327.568785, - "y": 25.210249 - } - } - }, - { - "id": "25723149-4012-525d-893b-c89c8c0e9398", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.568785, - "y": 25.210249 - }, - "endPoint": { - "x": 327.561403, - "y": 25.21767 - } - } - }, - { - "id": "6fe2e8d8-ff2e-5de2-a86e-f06c16029e28", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.561403, - "y": 25.21767 - }, - "endPoint": { - "x": 327.556062, - "y": 25.223 - } - } - }, - { - "id": "7a27a08b-d8a7-5bfd-9cd4-1476ea20c61e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.556062, - "y": 25.223 - }, - "endPoint": { - "x": 327.550581, - "y": 25.228184 - } - } - }, - { - "id": "266f3fc6-3ef1-50c6-9acf-e5570e555030", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.550581, - "y": 25.228184 - }, - "endPoint": { - "x": 327.544964, - "y": 25.233219 - } - } - }, - { - "id": "8adadac8-2670-575e-a5b6-72b66400835d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.544964, - "y": 25.233219 - }, - "endPoint": { - "x": 327.539212, - "y": 25.238104 - } - } - }, - { - "id": "9f88c418-3da2-537e-a1c8-462742fde372", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.539212, - "y": 25.238104 - }, - "endPoint": { - "x": 327.533093, - "y": 25.24296 - } - } - }, - { - "id": "9b90f3c7-f39b-56a9-81ad-0c6e428603cc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.533093, - "y": 25.24296 - }, - "endPoint": { - "x": 327.526788, - "y": 25.247568 - } - } - }, - { - "id": "4c39d562-7016-5628-a5c8-5514e82bd22d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.526788, - "y": 25.247568 - }, - "endPoint": { - "x": 327.520306, - "y": 25.251923 - } - } - }, - { - "id": "409daa9c-1d76-54d8-9e4d-9b0579227bdd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.520306, - "y": 25.251923 - }, - "endPoint": { - "x": 327.513653, - "y": 25.256018 - } - } - }, - { - "id": "60288a2c-7e5e-58ba-a702-71105256952e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.513653, - "y": 25.256018 - }, - "endPoint": { - "x": 327.501315, - "y": 25.26346 - } - } - }, - { - "id": "e958d58f-c055-587c-b9aa-bd2d7b50706f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.501315, - "y": 25.26346 - }, - "endPoint": { - "x": 327.489141, - "y": 25.271164 - } - } - }, - { - "id": "e60cecb3-6266-549e-8c1e-da19e9233391", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.489141, - "y": 25.271164 - }, - "endPoint": { - "x": 327.477135, - "y": 25.279128 - } - } - }, - { - "id": "3baaf5fd-009e-5338-af21-fbdca4c9b399", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.477135, - "y": 25.279128 - }, - "endPoint": { - "x": 327.465301, - "y": 25.287349 - } - } - }, - { - "id": "e743d44d-f345-5a2e-8767-962212906f10", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.465301, - "y": 25.287349 - }, - "endPoint": { - "x": 327.449603, - "y": 25.298612 - } - } - }, - { - "id": "118fafd5-6c72-579a-9959-9cd5099f1fd3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.449603, - "y": 25.298612 - }, - "endPoint": { - "x": 327.434007, - "y": 25.310016 - } - } - }, - { - "id": "4fa63754-62c8-5a72-bea6-b5d221d8fb50", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.434007, - "y": 25.310016 - }, - "endPoint": { - "x": 327.418513, - "y": 25.32156 - } - } - }, - { - "id": "8aa979a7-8a43-5766-ac96-0af3ff07974a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.418513, - "y": 25.32156 - }, - "endPoint": { - "x": 327.403124, - "y": 25.333242 - } - } - }, - { - "id": "1d4366a3-ab5a-542c-a981-cfb3661aad3f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.403124, - "y": 25.333242 - }, - "endPoint": { - "x": 327.390902, - "y": 25.342497 - } - } - }, - { - "id": "1f5d3ee7-4361-575e-a353-1b7bbdc834c7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.390902, - "y": 25.342497 - }, - "endPoint": { - "x": 327.378576, - "y": 25.351613 - } - } - }, - { - "id": "5e5d3c3d-2d36-5e15-8bcf-36900303ad09", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.378576, - "y": 25.351613 - }, - "endPoint": { - "x": 327.366148, - "y": 25.360589 - } - } - }, - { - "id": "cbafca9e-dc45-59fd-8acd-7b7668649571", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.366148, - "y": 25.360589 - }, - "endPoint": { - "x": 327.35362, - "y": 25.369425 - } - } - }, - { - "id": "9b1690df-cca4-5bad-848b-02b9d3132b0f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.35362, - "y": 25.369425 - }, - "endPoint": { - "x": 327.342176, - "y": 25.377334 - } - } - }, - { - "id": "9b8257d9-d0bc-536e-afc6-3ee1d00b2de8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.342176, - "y": 25.377334 - }, - "endPoint": { - "x": 327.330673, - "y": 25.385157 - } - } - }, - { - "id": "51600fd9-25d9-51d3-82ac-a0e5c19ee6c7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.330673, - "y": 25.385157 - }, - "endPoint": { - "x": 327.319111, - "y": 25.392892 - } - } - }, - { - "id": "f1635e2c-1c1f-586c-8d8e-4475fbe384fa", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.319111, - "y": 25.392892 - }, - "endPoint": { - "x": 327.30749, - "y": 25.400539 - } - } - }, - { - "id": "ee33014f-c84e-5378-99e0-ef00b90d410d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.30749, - "y": 25.400539 - }, - "endPoint": { - "x": 327.298988, - "y": 25.406026 - } - } - }, - { - "id": "97885317-e8b1-5a37-9c11-7b767719c54a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.298988, - "y": 25.406026 - }, - "endPoint": { - "x": 327.290428, - "y": 25.411425 - } - } - }, - { - "id": "49500436-4ca4-5912-a91c-bde1b777415d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.290428, - "y": 25.411425 - }, - "endPoint": { - "x": 327.281814, - "y": 25.416733 - } - } - }, - { - "id": "2049687d-1473-5cb6-916e-cc2b0674754d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.281814, - "y": 25.416733 - }, - "endPoint": { - "x": 327.273144, - "y": 25.421952 - } - } - }, - { - "id": "764ab354-ca76-52c7-bbcd-d1f0ad7a99dd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.273144, - "y": 25.421952 - }, - "endPoint": { - "x": 327.256416, - "y": 25.43171 - } - } - }, - { - "id": "3e48fe4a-ad66-5d6b-aef4-dd140c51b53e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.256416, - "y": 25.43171 - }, - "endPoint": { - "x": 327.239525, - "y": 25.441177 - } - } - }, - { - "id": "85facbcf-7cfa-5f25-9f09-ca385a6ebfdc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.239525, - "y": 25.441177 - }, - "endPoint": { - "x": 327.222472, - "y": 25.450352 - } - } - }, - { - "id": "f980ea17-4fa3-54e4-8e6e-5ac8efc4ca51", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.222472, - "y": 25.450352 - }, - "endPoint": { - "x": 327.205263, - "y": 25.459232 - } - } - }, - { - "id": "653063f4-6457-53b7-8303-c03a1d89bade", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.205263, - "y": 25.459232 - }, - "endPoint": { - "x": 327.183913, - "y": 25.470205 - } - } - }, - { - "id": "c8c41a91-cf96-5250-b7e1-e381324c3ab7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.183913, - "y": 25.470205 - }, - "endPoint": { - "x": 327.162717, - "y": 25.481473 - } - } - }, - { - "id": "a8b87094-3a54-5bf6-b4b9-7918405198dd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.162717, - "y": 25.481473 - }, - "endPoint": { - "x": 327.141681, - "y": 25.493034 - } - } - }, - { - "id": "adff45db-d3a5-566b-9a96-7c0acde12b61", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.141681, - "y": 25.493034 - }, - "endPoint": { - "x": 327.120806, - "y": 25.504887 - } - } - }, - { - "id": "185d3fee-0ed7-5c2a-a764-4f6b0895e8d2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.120806, - "y": 25.504887 - }, - "endPoint": { - "x": 327.102571, - "y": 25.515418 - } - } - }, - { - "id": "973dd2fd-07e6-59be-b48d-f0c204020308", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.102571, - "y": 25.515418 - }, - "endPoint": { - "x": 327.084346, - "y": 25.525965 - } - } - }, - { - "id": "3537a399-ec86-59db-b776-a9b584184f26", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.084346, - "y": 25.525965 - }, - "endPoint": { - "x": 327.06613, - "y": 25.536527 - } - } - }, - { - "id": "fbfc304d-5721-5360-94af-eb51bce6b4eb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.06613, - "y": 25.536527 - }, - "endPoint": { - "x": 327.047922, - "y": 25.547105 - } - } - }, - { - "id": "33038c01-4c8d-5757-98cf-3e9b30d5179f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.047922, - "y": 25.547105 - }, - "endPoint": { - "x": 327.043546, - "y": 25.549659 - } - } - }, - { - "id": "fdd3a435-922b-5b40-88ec-851361f9014c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.043546, - "y": 25.549659 - }, - "endPoint": { - "x": 327.03918, - "y": 25.552229 - } - } - }, - { - "id": "d7d97d2f-267d-53a5-903b-339937ae353e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.03918, - "y": 25.552229 - }, - "endPoint": { - "x": 327.034822, - "y": 25.554814 - } - } - }, - { - "id": "d2c4594b-0ebe-5086-bb7b-73c6fdb08732", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.034822, - "y": 25.554814 - }, - "endPoint": { - "x": 327.030473, - "y": 25.557414 - } - } - }, - { - "id": "95ab1dbf-cac7-52c3-98da-96dbbbf9d117", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.030473, - "y": 25.557414 - }, - "endPoint": { - "x": 327.024397, - "y": 25.56107 - } - } - }, - { - "id": "43174434-ec3e-5854-83b4-6485889c1b26", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.024397, - "y": 25.56107 - }, - "endPoint": { - "x": 327.018327, - "y": 25.564736 - } - } - }, - { - "id": "cb91f2f4-8c58-514d-aa72-fe83e5ec8c32", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.018327, - "y": 25.564736 - }, - "endPoint": { - "x": 327.012264, - "y": 25.568412 - } - } - }, - { - "id": "7e415b82-291e-5fb1-bb1f-c1d998f0336c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.012264, - "y": 25.568412 - }, - "endPoint": { - "x": 327.006207, - "y": 25.5721 - } - } - }, - { - "id": "5e9f9944-c789-55c2-b5ce-d7b20d6269bc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.006207, - "y": 25.5721 - }, - "endPoint": { - "x": 326.998732, - "y": 25.576653 - } - } - }, - { - "id": "92a5d9d5-6b17-5cae-a5c5-8967efe2eea6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.998732, - "y": 25.576653 - }, - "endPoint": { - "x": 326.991251, - "y": 25.581194 - } - } - }, - { - "id": "8768c828-90b1-5209-971f-c48c9e0ae6fc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.991251, - "y": 25.581194 - }, - "endPoint": { - "x": 326.983763, - "y": 25.585725 - } - } - }, - { - "id": "d0ddf8e2-0e02-51ef-9e42-645237df6929", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.983763, - "y": 25.585725 - }, - "endPoint": { - "x": 326.976269, - "y": 25.590245 - } - } - }, - { - "id": "b1d55084-e0a7-5bc7-bc2f-f0fdcf1f70dd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.976269, - "y": 25.590245 - }, - "endPoint": { - "x": 326.972678, - "y": 25.592394 - } - } - }, - { - "id": "c30f7fa2-37da-5729-8d70-92b22e3dc2c5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.972678, - "y": 25.592394 - }, - "endPoint": { - "x": 326.969076, - "y": 25.594524 - } - } - }, - { - "id": "18983d00-7f45-59a7-88c7-fc32c25bd62e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.969076, - "y": 25.594524 - }, - "endPoint": { - "x": 326.965462, - "y": 25.596633 - } - } - }, - { - "id": "18ef3c9d-b5df-589b-aa57-1ad8fb1bb885", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.965462, - "y": 25.596633 - }, - "endPoint": { - "x": 326.961836, - "y": 25.598723 - } - } - }, - { - "id": "95b438de-0ade-5c6a-a54d-91d28f7f8216", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.961836, - "y": 25.598723 - }, - "endPoint": { - "x": 326.958447, - "y": 25.600678 - } - } - }, - { - "id": "f8811be9-c372-57ee-beda-a4933faca465", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.958447, - "y": 25.600678 - }, - "endPoint": { - "x": 326.955069, - "y": 25.602652 - } - } - }, - { - "id": "341cb92d-e7f2-575b-92df-42019d89e463", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.955069, - "y": 25.602652 - }, - "endPoint": { - "x": 326.951703, - "y": 25.604646 - } - } - }, - { - "id": "85fa58db-914f-573e-bb1d-c7a38b8089af", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.951703, - "y": 25.604646 - }, - "endPoint": { - "x": 326.948349, - "y": 25.606659 - } - } - }, - { - "id": "27ca4480-e109-534a-97b5-54a731136cb7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.948349, - "y": 25.606659 - }, - "endPoint": { - "x": 326.945394, - "y": 25.608566 - } - } - }, - { - "id": "748d4cfa-4027-57a5-a648-6aeb312366bd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.945394, - "y": 25.608566 - }, - "endPoint": { - "x": 326.942559, - "y": 25.610641 - } - } - }, - { - "id": "04fcf70f-fa5b-5a91-a8d9-f52c8e430423", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.942559, - "y": 25.610641 - }, - "endPoint": { - "x": 326.939851, - "y": 25.61288 - } - } - }, - { - "id": "14b6648f-7c09-541c-858e-43843b391724", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.939851, - "y": 25.61288 - }, - "endPoint": { - "x": 326.937277, - "y": 25.615277 - } - } - }, - { - "id": "0c5672e1-d215-5642-b129-abb741633c52", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.937277, - "y": 25.615277 - }, - "endPoint": { - "x": 326.934085, - "y": 25.618284 - } - } - }, - { - "id": "c4c3854a-51bd-547b-b7bf-596e5f3bebbb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.934085, - "y": 25.618284 - }, - "endPoint": { - "x": 326.930757, - "y": 25.621137 - } - } - }, - { - "id": "78b9ffcf-10d7-50cd-b7df-6c81096e117a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.930757, - "y": 25.621137 - }, - "endPoint": { - "x": 326.927298, - "y": 25.623829 - } - } - }, - { - "id": "edef11b9-ed86-5569-8ac1-4ed941dcafff", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.927298, - "y": 25.623829 - }, - "endPoint": { - "x": 326.923714, - "y": 25.626356 - } - } - }, - { - "id": "9e63f63c-7c0f-5e78-9898-1799719643af", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.923714, - "y": 25.626356 - }, - "endPoint": { - "x": 326.921936, - "y": 25.627528 - } - } - }, - { - "id": "09263f1a-df55-5d2b-b6c7-fd25a2147998", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.921936, - "y": 25.627528 - }, - "endPoint": { - "x": 326.92014, - "y": 25.628672 - } - } - }, - { - "id": "7485bcaf-a924-5aaf-88d5-b422027df9f3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.92014, - "y": 25.628672 - }, - "endPoint": { - "x": 326.918327, - "y": 25.629787 - } - } - }, - { - "id": "ebcab990-6e94-5faa-9aec-69a8fb64cb37", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.918327, - "y": 25.629787 - }, - "endPoint": { - "x": 326.916496, - "y": 25.630874 - } - } - }, - { - "id": "0db960f8-55e5-54f1-a2d4-93cff2d52352", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.916496, - "y": 25.630874 - }, - "endPoint": { - "x": 326.913398, - "y": 25.632661 - } - } - }, - { - "id": "22558995-f43e-5e34-89b8-8b084f6726e3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.913398, - "y": 25.632661 - }, - "endPoint": { - "x": 326.910284, - "y": 25.63442 - } - } - }, - { - "id": "040b5db8-6b78-5fff-97d4-0b6664093be5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.910284, - "y": 25.63442 - }, - "endPoint": { - "x": 326.907153, - "y": 25.636149 - } - } - }, - { - "id": "0b7b2eca-2501-5490-b826-003e3862a865", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.907153, - "y": 25.636149 - }, - "endPoint": { - "x": 326.904007, - "y": 25.637849 - } - } - }, - { - "id": "c3a2280f-f488-5f73-a06b-15b2820356b6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.904007, - "y": 25.637849 - }, - "endPoint": { - "x": 326.899419, - "y": 25.64022 - } - } - }, - { - "id": "b09962b1-744e-503e-ac5d-5da5ac6a7fd8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.899419, - "y": 25.64022 - }, - "endPoint": { - "x": 326.894768, - "y": 25.642462 - } - } - }, - { - "id": "9c9c25dd-01ba-5c86-90a5-dcc24e6f83c6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.894768, - "y": 25.642462 - }, - "endPoint": { - "x": 326.890058, - "y": 25.644575 - } - } - }, - { - "id": "01d46844-a725-5662-8184-1ce250e4cc44", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.890058, - "y": 25.644575 - }, - "endPoint": { - "x": 326.885289, - "y": 25.646558 - } - } - }, - { - "id": "a6856dda-4373-5f9b-bea1-c0e0fc2d6a71", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.885289, - "y": 25.646558 - }, - "endPoint": { - "x": 326.883856, - "y": 25.647054 - } - } - }, - { - "id": "729f7ecd-7030-5ee9-9373-ed7b94d1674c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.883856, - "y": 25.647054 - }, - "endPoint": { - "x": 326.882385, - "y": 25.64741 - } - } - }, - { - "id": "4baeab36-8682-564b-bdd0-5f933c030834", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.882385, - "y": 25.64741 - }, - "endPoint": { - "x": 326.880887, - "y": 25.647625 - } - } - }, - { - "id": "bc92312a-2b3d-53f2-8c68-efe169808caf", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.880887, - "y": 25.647625 - }, - "endPoint": { - "x": 326.879372, - "y": 25.647697 - } - } - }, - { - "id": "6a6e855e-786b-5956-8674-eb637311353e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.879372, - "y": 25.647697 - }, - "endPoint": { - "x": 326.854731, - "y": 25.647697 - } - } - }, - { - "id": "f40f40c8-fed0-5c17-90ee-4ca9c0c57836", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.854731, - "y": 25.647697 - }, - "endPoint": { - "x": 326.82681, - "y": 25.647697 - } - } - }, - { - "id": "da302515-6bc4-5fe7-9a88-cca8946cc7ed", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.82681, - "y": 25.647697 - }, - "endPoint": { - "x": 326.82405, - "y": 25.64768 - } - } - }, - { - "id": "f7e51741-b9d2-5785-b07c-1916abd04a75", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.82405, - "y": 25.64768 - }, - "endPoint": { - "x": 326.82129, - "y": 25.647628 - } - } - }, - { - "id": "dd0318be-5c6c-50b6-9cec-c9297ef6acd3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.82129, - "y": 25.647628 - }, - "endPoint": { - "x": 326.81853, - "y": 25.647542 - } - } - }, - { - "id": "5846d6f8-7ca7-5f81-8358-bad2cfba9910", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.81853, - "y": 25.647542 - }, - "endPoint": { - "x": 326.815772, - "y": 25.647422 - } - } - }, - { - "id": "404df586-ada8-5a87-af19-82da50fde9e1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.815772, - "y": 25.647422 - }, - "endPoint": { - "x": 326.810317, - "y": 25.647132 - } - } - }, - { - "id": "4fc71d64-6c2d-5685-affb-b67a911bd863", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.810317, - "y": 25.647132 - }, - "endPoint": { - "x": 326.804863, - "y": 25.646808 - } - } - }, - { - "id": "31a566b0-ec58-5bbe-a0a0-0ad725f244ab", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.804863, - "y": 25.646808 - }, - "endPoint": { - "x": 326.799411, - "y": 25.646449 - } - } - }, - { - "id": "bf4c8f8a-7d1f-50e3-960b-6995d9826145", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.799411, - "y": 25.646449 - }, - "endPoint": { - "x": 326.793962, - "y": 25.646056 - } - } - }, - { - "id": "3180aeaf-55c4-5990-a50a-03ae95e9d36c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.793962, - "y": 25.646056 - }, - "endPoint": { - "x": 326.789288, - "y": 25.645559 - } - } - }, - { - "id": "8c688f54-98f7-5900-9463-ed9eeb21f624", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.789288, - "y": 25.645559 - }, - "endPoint": { - "x": 326.784659, - "y": 25.644776 - } - } - }, - { - "id": "1d0d6f28-f76a-523b-84c5-63aa698730a1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.784659, - "y": 25.644776 - }, - "endPoint": { - "x": 326.780087, - "y": 25.643709 - } - } - }, - { - "id": "b645e6a3-c8bc-5b13-aac8-af4bf30ad2f1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.780087, - "y": 25.643709 - }, - "endPoint": { - "x": 326.775584, - "y": 25.642361 - } - } - }, - { - "id": "b2843eff-6e70-5932-af29-0dc2537212c3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.775584, - "y": 25.642361 - }, - "endPoint": { - "x": 326.772586, - "y": 25.641209 - } - } - }, - { - "id": "4050d462-71ea-54dc-addc-98633269e593", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.772586, - "y": 25.641209 - }, - "endPoint": { - "x": 326.769711, - "y": 25.639792 - } - } - }, - { - "id": "11734c15-fa5c-55ad-8f65-e99690e23db7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.769711, - "y": 25.639792 - }, - "endPoint": { - "x": 326.766976, - "y": 25.638121 - } - } - }, - { - "id": "33633078-7af6-5749-946a-f46658d02caa", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.766976, - "y": 25.638121 - }, - "endPoint": { - "x": 326.764398, - "y": 25.636205 - } - } - }, - { - "id": "4368f978-69ea-51d6-9aa6-77205da02bc2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.764398, - "y": 25.636205 - }, - "endPoint": { - "x": 326.761693, - "y": 25.633817 - } - } - }, - { - "id": "187af35d-861d-5928-857f-f3211b70ef4a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.761693, - "y": 25.633817 - }, - "endPoint": { - "x": 326.759183, - "y": 25.631233 - } - } - }, - { - "id": "f9f381c8-ff88-5a7c-9f84-18dcfd26f90d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.759183, - "y": 25.631233 - }, - "endPoint": { - "x": 326.756878, - "y": 25.628464 - } - } - }, - { - "id": "5b054240-6b78-59bd-8b4b-f386343a87f8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.756878, - "y": 25.628464 - }, - "endPoint": { - "x": 326.754789, - "y": 25.625523 - } - } - }, - { - "id": "dc03d755-b85b-5e98-8edf-5ab54965434c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.754789, - "y": 25.625523 - }, - "endPoint": { - "x": 326.752174, - "y": 25.621776 - } - } - }, - { - "id": "6884ebc1-1d3b-52b5-942d-17516fac9786", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.752174, - "y": 25.621776 - }, - "endPoint": { - "x": 326.749341, - "y": 25.618198 - } - } - }, - { - "id": "7df53d3c-5d8c-55b4-bb51-e8ec819eaa32", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.749341, - "y": 25.618198 - }, - "endPoint": { - "x": 326.746296, - "y": 25.614797 - } - } - }, - { - "id": "90a171bf-1fb3-5697-bb33-25b4ebaf3dab", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.746296, - "y": 25.614797 - }, - "endPoint": { - "x": 326.743049, - "y": 25.611584 - } - } - }, - { - "id": "3125bfb5-3b12-5c81-a5a6-6bd181a432ad", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.743049, - "y": 25.611584 - }, - "endPoint": { - "x": 326.737196, - "y": 25.606155 - } - } - }, - { - "id": "4eb60fd2-569a-5a44-9f54-781dcd833fd3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.737196, - "y": 25.606155 - }, - "endPoint": { - "x": 326.731319, - "y": 25.600751 - } - } - }, - { - "id": "4cb4bc3b-2563-5184-9d36-407610a92c6f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.731319, - "y": 25.600751 - }, - "endPoint": { - "x": 326.725419, - "y": 25.595374 - } - } - }, - { - "id": "ba6d4fc0-a4cb-5e3b-8bdf-4968dbe7c42e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.725419, - "y": 25.595374 - }, - "endPoint": { - "x": 326.719495, - "y": 25.590022 - } - } - }, - { - "id": "763e9a96-ade9-57d5-a6f5-0ac454a31d64", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.719495, - "y": 25.590022 - }, - "endPoint": { - "x": 326.717205, - "y": 25.587986 - } - } - }, - { - "id": "93f0f49f-04a6-5c4d-afff-303d853326e6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.717205, - "y": 25.587986 - }, - "endPoint": { - "x": 326.714893, - "y": 25.585976 - } - } - }, - { - "id": "63ca4692-b87c-5ce9-9458-475c5e1e8c4b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.714893, - "y": 25.585976 - }, - "endPoint": { - "x": 326.712558, - "y": 25.583992 - } - } - }, - { - "id": "6ac650f8-2320-5a27-8b23-83551d116fb0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.712558, - "y": 25.583992 - }, - "endPoint": { - "x": 326.7102, - "y": 25.582035 - } - } - }, - { - "id": "bc61b07e-6f69-53f0-999c-4792df11c917", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.7102, - "y": 25.582035 - }, - "endPoint": { - "x": 326.702882, - "y": 25.576083 - } - } - }, - { - "id": "dadf8e8f-46c5-576d-afc1-7e0788419c68", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.702882, - "y": 25.576083 - }, - "endPoint": { - "x": 326.695512, - "y": 25.570194 - } - } - }, - { - "id": "e0558699-8229-5cba-b49b-7292318a0323", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.695512, - "y": 25.570194 - }, - "endPoint": { - "x": 326.688092, - "y": 25.564369 - } - } - }, - { - "id": "2af1aaff-834a-5310-96b1-16090aa4502c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.688092, - "y": 25.564369 - }, - "endPoint": { - "x": 326.680622, - "y": 25.558608 - } - } - }, - { - "id": "2a535507-dba4-5c73-9107-5fa06bd8de38", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.680622, - "y": 25.558608 - }, - "endPoint": { - "x": 326.67398, - "y": 25.55348 - } - } - }, - { - "id": "8a511b59-8642-5581-9cdc-05346365cae9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.67398, - "y": 25.55348 - }, - "endPoint": { - "x": 326.667389, - "y": 25.548289 - } - } - }, - { - "id": "69eba235-f916-5004-ac45-2fa5540a9db9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.667389, - "y": 25.548289 - }, - "endPoint": { - "x": 326.660849, - "y": 25.543033 - } - } - }, - { - "id": "84f59a1d-81b1-5116-ab06-9a1ec972bd90", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.660849, - "y": 25.543033 - }, - "endPoint": { - "x": 326.654359, - "y": 25.537715 - } - } - }, - { - "id": "15d9d637-623c-5487-bd94-7f119ceb10d3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.654359, - "y": 25.537715 - }, - "endPoint": { - "x": 326.647888, - "y": 25.532333 - } - } - }, - { - "id": "0d8f5a46-0b85-5676-9a20-8ffac3e99c93", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.647888, - "y": 25.532333 - }, - "endPoint": { - "x": 326.641442, - "y": 25.526921 - } - } - }, - { - "id": "4480c4df-5364-51d0-82be-27064201ecd1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.641442, - "y": 25.526921 - }, - "endPoint": { - "x": 326.635021, - "y": 25.521479 - } - } - }, - { - "id": "045cd6f8-62bf-52b0-814a-2d4849dc845f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.635021, - "y": 25.521479 - }, - "endPoint": { - "x": 326.628625, - "y": 25.516008 - } - } - }, - { - "id": "0ccac874-fd6d-5314-a982-7a3608d6a723", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.628625, - "y": 25.516008 - }, - "endPoint": { - "x": 326.624831, - "y": 25.512773 - } - } - }, - { - "id": "d415153c-e58e-5d9b-9acb-7d9f1aa36ae9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.624831, - "y": 25.512773 - }, - "endPoint": { - "x": 326.621011, - "y": 25.509567 - } - } - }, - { - "id": "094b057f-e485-5384-ad21-5a2cdd9f3eca", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.621011, - "y": 25.509567 - }, - "endPoint": { - "x": 326.617166, - "y": 25.506391 - } - } - }, - { - "id": "3b84bd37-9fc5-555a-9492-630f15cbc206", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.617166, - "y": 25.506391 - }, - "endPoint": { - "x": 326.613297, - "y": 25.503245 - } - } - }, - { - "id": "571f7e10-bb0a-5842-9f57-ba8664eb55fb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.613297, - "y": 25.503245 - }, - "endPoint": { - "x": 326.607367, - "y": 25.498479 - } - } - }, - { - "id": "35453212-920a-5644-9864-ff3aab79a5cd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.607367, - "y": 25.498479 - }, - "endPoint": { - "x": 326.60142, - "y": 25.493733 - } - } - }, - { - "id": "ba531225-fc44-51cc-932f-591cf2b2d4eb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.60142, - "y": 25.493733 - }, - "endPoint": { - "x": 326.595457, - "y": 25.489007 - } - } - }, - { - "id": "1cbfad89-4969-559a-ac0b-5ac0375f2fb8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.595457, - "y": 25.489007 - }, - "endPoint": { - "x": 326.589479, - "y": 25.484302 - } - } - }, - { - "id": "a66484c2-33cf-50d3-aba2-e68d696bd079", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.589479, - "y": 25.484302 - }, - "endPoint": { - "x": 326.581449, - "y": 25.477988 - } - } - }, - { - "id": "8a6516a1-341d-57e3-8c02-4ee4a5df3ae1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.581449, - "y": 25.477988 - }, - "endPoint": { - "x": 326.573435, - "y": 25.471654 - } - } - }, - { - "id": "522f89fe-6c3a-5056-9fcc-8200669d5bb6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.573435, - "y": 25.471654 - }, - "endPoint": { - "x": 326.565438, - "y": 25.465299 - } - } - }, - { - "id": "b38740f5-8279-5fb2-9b6d-21bb218d3cf4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.565438, - "y": 25.465299 - }, - "endPoint": { - "x": 326.557456, - "y": 25.458925 - } - } - }, - { - "id": "449dd5ab-dee8-5a0c-bab2-b6ac35450349", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.557456, - "y": 25.458925 - }, - "endPoint": { - "x": 326.553366, - "y": 25.455643 - } - } - }, - { - "id": "82daa987-5486-514e-bd78-4d95875f1f61", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.553366, - "y": 25.455643 - }, - "endPoint": { - "x": 326.54928, - "y": 25.452356 - } - } - }, - { - "id": "3f542b78-8997-5cba-9e54-473bde7469e3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.54928, - "y": 25.452356 - }, - "endPoint": { - "x": 326.5452, - "y": 25.449062 - } - } - }, - { - "id": "5a288b06-2cc0-515e-a709-eaaf83256962", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.5452, - "y": 25.449062 - }, - "endPoint": { - "x": 326.541124, - "y": 25.445761 - } - } - }, - { - "id": "de4f74f6-e2d4-50fb-86ae-16abebe4e4d8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.541124, - "y": 25.445761 - }, - "endPoint": { - "x": 326.534539, - "y": 25.440424 - } - } - }, - { - "id": "8df89343-aefb-556e-8048-3b4ccd7ab365", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.534539, - "y": 25.440424 - }, - "endPoint": { - "x": 326.527948, - "y": 25.435094 - } - } - }, - { - "id": "9ec01ba7-ceff-531a-aff9-c238216028e7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.527948, - "y": 25.435094 - }, - "endPoint": { - "x": 326.521352, - "y": 25.42977 - } - } - }, - { - "id": "f24c66c8-de3b-5a6c-9d12-4cb4cddf3d3d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.521352, - "y": 25.42977 - }, - "endPoint": { - "x": 326.514751, - "y": 25.424452 - } - } - }, - { - "id": "4938fa5c-7664-5ac5-82c5-fd3172efa22c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.514751, - "y": 25.424452 - }, - "endPoint": { - "x": 326.502645, - "y": 25.414785 - } - } - }, - { - "id": "db33380a-f990-5ffb-a146-fe563a99130d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.502645, - "y": 25.414785 - }, - "endPoint": { - "x": 326.490465, - "y": 25.405211 - } - } - }, - { - "id": "f3ce2f3c-9465-5407-a247-f20fdec1ee6d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.490465, - "y": 25.405211 - }, - "endPoint": { - "x": 326.478213, - "y": 25.395729 - } - } - }, - { - "id": "efb2ad28-f9ef-5574-aa5e-ff14b19d02a6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.478213, - "y": 25.395729 - }, - "endPoint": { - "x": 326.465889, - "y": 25.386342 - } - } - }, - { - "id": "1fd27d9e-f432-56a0-b295-62108f6746e0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.465889, - "y": 25.386342 - }, - "endPoint": { - "x": 326.461372, - "y": 25.383003 - } - } - }, - { - "id": "bd90a35f-6e20-5f51-832b-251f1e6648bf", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.461372, - "y": 25.383003 - }, - "endPoint": { - "x": 326.456787, - "y": 25.379759 - } - } - }, - { - "id": "b3a1348f-3a85-50b3-b995-47ecaaca26a0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.456787, - "y": 25.379759 - }, - "endPoint": { - "x": 326.452135, - "y": 25.376614 - } - } - }, - { - "id": "b10b5efe-16a8-5a01-9e2d-9101844a01ee", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.452135, - "y": 25.376614 - }, - "endPoint": { - "x": 326.447417, - "y": 25.373566 - } - } - }, - { - "id": "9b38a340-ecbd-5872-890d-5edeffe2f7d1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.447417, - "y": 25.373566 - }, - "endPoint": { - "x": 326.438926, - "y": 25.368256 - } - } - }, - { - "id": "af53347a-4b28-5d62-bb56-17165e546038", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.438926, - "y": 25.368256 - }, - "endPoint": { - "x": 326.43039, - "y": 25.363019 - } - } - }, - { - "id": "54449c18-4cf6-5ee6-87a7-7e0a8428805c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.43039, - "y": 25.363019 - }, - "endPoint": { - "x": 326.421809, - "y": 25.357855 - } - } - }, - { - "id": "4e8bfde0-870a-557a-898a-d4217ec29b16", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.421809, - "y": 25.357855 - }, - "endPoint": { - "x": 326.413185, - "y": 25.352764 - } - } - }, - { - "id": "d1fbfff5-d9c1-5583-aefa-f170de5badc2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.413185, - "y": 25.352764 - }, - "endPoint": { - "x": 326.386929, - "y": 25.337366 - } - } - }, - { - "id": "835191d1-5ad5-5306-91bd-66e6524b794f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.386929, - "y": 25.337366 - }, - "endPoint": { - "x": 326.360716, - "y": 25.321895 - } - } - }, - { - "id": "113cc16d-b8af-54ef-a2d4-6aa8ab43e0b2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.360716, - "y": 25.321895 - }, - "endPoint": { - "x": 326.334547, - "y": 25.30635 - } - } - }, - { - "id": "8c4f686a-dbc8-54d4-8553-8ebe10289d1b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.334547, - "y": 25.30635 - }, - "endPoint": { - "x": 326.308421, - "y": 25.290732 - } - } - }, - { - "id": "0f1bb6bf-58d5-5edc-a22e-03d1ee838b56", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.308421, - "y": 25.290732 - }, - "endPoint": { - "x": 326.28751, - "y": 25.278149 - } - } - }, - { - "id": "61f6215c-3a3a-545e-a73b-063a41a4646c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.28751, - "y": 25.278149 - }, - "endPoint": { - "x": 326.266638, - "y": 25.265503 - } - } - }, - { - "id": "37e3e94b-6138-5f07-ba98-d6c647f8c689", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.266638, - "y": 25.265503 - }, - "endPoint": { - "x": 326.245803, - "y": 25.252794 - } - } - }, - { - "id": "48a3c3bf-2b8c-53a2-ae83-5dcee6d13f30", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.245803, - "y": 25.252794 - }, - "endPoint": { - "x": 326.225007, - "y": 25.240023 - } - } - }, - { - "id": "4cab897e-7a5a-5620-bbcb-3ca40d633409", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.225007, - "y": 25.240023 - }, - "endPoint": { - "x": 326.220049, - "y": 25.237011 - } - } - }, - { - "id": "40e476a2-8e3a-588e-bee6-ca0c846494c8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.220049, - "y": 25.237011 - }, - "endPoint": { - "x": 326.215054, - "y": 25.234062 - } - } - }, - { - "id": "cf81c99f-0190-58d1-8e49-ed515b1987c0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.215054, - "y": 25.234062 - }, - "endPoint": { - "x": 326.210022, - "y": 25.231177 - } - } - }, - { - "id": "22467ecc-fdc7-58ee-ae9e-d557d06be59e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.210022, - "y": 25.231177 - }, - "endPoint": { - "x": 326.204953, - "y": 25.228356 - } - } - }, - { - "id": "42dc4b70-9379-5ba8-ac0f-52302637b6ee", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.204953, - "y": 25.228356 - }, - "endPoint": { - "x": 326.199887, - "y": 25.225669 - } - } - }, - { - "id": "ec9f354f-3fcc-5bdb-9db6-3a647279950e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.199887, - "y": 25.225669 - }, - "endPoint": { - "x": 326.194749, - "y": 25.223126 - } - } - }, - { - "id": "534c1888-f268-5ed3-ad07-0006175e1b9c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.194749, - "y": 25.223126 - }, - "endPoint": { - "x": 326.189542, - "y": 25.220728 - } - } - }, - { - "id": "ef5e17e1-14bd-5893-94d8-f4a23801dc3e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.189542, - "y": 25.220728 - }, - "endPoint": { - "x": 326.184269, - "y": 25.218476 - } - } - }, - { - "id": "c0c1696e-ba4b-589f-aab9-7f45dddcdb9e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.184269, - "y": 25.218476 - }, - "endPoint": { - "x": 326.170045, - "y": 25.212548 - } - } - }, - { - "id": "dbe1fc24-5fff-5ae4-89fc-85ba260a5590", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.170045, - "y": 25.212548 - }, - "endPoint": { - "x": 326.155885, - "y": 25.206473 - } - } - }, - { - "id": "2935fdba-d09b-573a-a814-3f63135cf147", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.155885, - "y": 25.206473 - }, - "endPoint": { - "x": 326.141788, - "y": 25.200252 - } - } - }, - { - "id": "5b310080-80a3-5c4a-8bd5-471a18c6ca7e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.141788, - "y": 25.200252 - }, - "endPoint": { - "x": 326.127756, - "y": 25.193883 - } - } - }, - { - "id": "ea788f2f-b101-5f8b-9515-006cb44d6108", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.127756, - "y": 25.193883 - }, - "endPoint": { - "x": 326.10703, - "y": 25.184336 - } - } - }, - { - "id": "d94c9100-d702-5e26-b407-b8a3882ded2c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.10703, - "y": 25.184336 - }, - "endPoint": { - "x": 326.086311, - "y": 25.174772 - } - } - }, - { - "id": "180ae660-ae36-580f-bcc7-e0eb9f8c43b8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.086311, - "y": 25.174772 - }, - "endPoint": { - "x": 326.0656, - "y": 25.165191 - } - } - }, - { - "id": "733f4416-e92e-56ae-85d5-dd58c3b3cf1d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.0656, - "y": 25.165191 - }, - "endPoint": { - "x": 326.044896, - "y": 25.155594 - } - } - }, - { - "id": "f6a57e4b-6b57-5d6a-a16d-97623e550cdb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.044896, - "y": 25.155594 - }, - "endPoint": { - "x": 326.042606, - "y": 25.154521 - } - } - }, - { - "id": "7385488e-486a-5626-8833-f258ad846945", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.042606, - "y": 25.154521 - }, - "endPoint": { - "x": 326.040323, - "y": 25.153432 - } - } - }, - { - "id": "e386087d-e972-503f-9888-73ec7f23f091", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.040323, - "y": 25.153432 - }, - "endPoint": { - "x": 326.038048, - "y": 25.152326 - } - } - }, - { - "id": "74034bc9-2091-51b7-860d-84e21492f6c6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.038048, - "y": 25.152326 - }, - "endPoint": { - "x": 326.035781, - "y": 25.151204 - } - } - }, - { - "id": "0e7c056c-3385-5348-9f1e-d4473b06450e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.035781, - "y": 25.151204 - }, - "endPoint": { - "x": 326.034546, - "y": 25.150587 - } - } - }, - { - "id": "692ebc9e-e31e-542d-8cf1-dccead60259a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.034546, - "y": 25.150587 - }, - "endPoint": { - "x": 326.033312, - "y": 25.14997 - } - } - }, - { - "id": "e1cc3560-2483-595d-8b72-d9448f1b0082", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.033312, - "y": 25.14997 - }, - "endPoint": { - "x": 326.032077, - "y": 25.149353 - } - } - }, - { - "id": "bef109d1-a9b4-53e8-9d7b-c9d030a8ec41", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.032077, - "y": 25.149353 - }, - "endPoint": { - "x": 326.030842, - "y": 25.148736 - } - } - }, - { - "id": "c6e5314f-c6f0-513b-93da-c0548855adc9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.030842, - "y": 25.148736 - }, - "endPoint": { - "x": 326.023043, - "y": 25.144839 - } - } - }, - { - "id": "729febd0-0cbc-5297-9039-9523418ae61c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.023043, - "y": 25.144839 - }, - "endPoint": { - "x": 326.015244, - "y": 25.140942 - } - } - }, - { - "id": "a0c774b3-6664-5633-8c03-8e6888eeb434", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.015244, - "y": 25.140942 - }, - "endPoint": { - "x": 326.007446, - "y": 25.137045 - } - } - }, - { - "id": "56319a5f-54ea-53a0-8697-254c946bd9b9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.007446, - "y": 25.137045 - }, - "endPoint": { - "x": 325.999647, - "y": 25.133148 - } - } - }, - { - "id": "792bda3d-d621-5bb0-a294-15534a10a938", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.999647, - "y": 25.133148 - }, - "endPoint": { - "x": 325.992667, - "y": 25.12966 - } - } - }, - { - "id": "3891425a-f101-58f6-9da1-afe94e45f687", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.992667, - "y": 25.12966 - }, - "endPoint": { - "x": 325.985687, - "y": 25.126172 - } - } - }, - { - "id": "d481904e-1815-5a1e-bd29-fd6a1af452c2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.985687, - "y": 25.126172 - }, - "endPoint": { - "x": 325.978707, - "y": 25.122684 - } - } - }, - { - "id": "26cd6d61-d0da-53ca-8a31-88e29571c8bd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.978707, - "y": 25.122684 - }, - "endPoint": { - "x": 325.971727, - "y": 25.119195 - } - } - }, - { - "id": "0e40b5b5-4f50-5c2c-a7cc-833942d1d079", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.971727, - "y": 25.119195 - }, - "endPoint": { - "x": 325.964747, - "y": 25.115706 - } - } - }, - { - "id": "8569843d-72b0-5bcc-935a-c71069d30eb3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.964747, - "y": 25.115706 - }, - "endPoint": { - "x": 325.957767, - "y": 25.112217 - } - } - }, - { - "id": "661d9b8b-a565-5bab-91fa-9ec05e722053", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.957767, - "y": 25.112217 - }, - "endPoint": { - "x": 325.950787, - "y": 25.108729 - } - } - }, - { - "id": "a58e858a-291a-5fe9-a66a-b978612b3b9a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.950787, - "y": 25.108729 - }, - "endPoint": { - "x": 325.943806, - "y": 25.105242 - } - } - }, - { - "id": "14def4f5-923a-538b-b0a1-803d3142fd10", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.943806, - "y": 25.105242 - }, - "endPoint": { - "x": 325.941706, - "y": 25.104235 - } - } - }, - { - "id": "e8d23ce4-b3c7-550d-a5c5-7212803e530a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.941706, - "y": 25.104235 - }, - "endPoint": { - "x": 325.939575, - "y": 25.103298 - } - } - }, - { - "id": "bdc26b85-e560-5514-84a4-32d5ac07f144", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.939575, - "y": 25.103298 - }, - "endPoint": { - "x": 325.937415, - "y": 25.10243 - } - } - }, - { - "id": "5d5f9206-94e2-5188-ab2b-2b0bacfe3cb2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.937415, - "y": 25.10243 - }, - "endPoint": { - "x": 325.935227, - "y": 25.101633 - } - } - }, - { - "id": "fa2b6613-8820-54ad-b343-b99d15c2400b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.935227, - "y": 25.101633 - }, - "endPoint": { - "x": 325.926731, - "y": 25.098734 - } - } - }, - { - "id": "a4dd4d95-3127-5855-8de8-acc27c7a1759", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.926731, - "y": 25.098734 - }, - "endPoint": { - "x": 325.918211, - "y": 25.095907 - } - } - }, - { - "id": "676a3c29-344b-5440-829b-4c1478f0dd04", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.918211, - "y": 25.095907 - }, - "endPoint": { - "x": 325.909668, - "y": 25.093152 - } - } - }, - { - "id": "22f61454-86d4-55fb-9ec4-26e9ca3b5b57", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.909668, - "y": 25.093152 - }, - "endPoint": { - "x": 325.901101, - "y": 25.090469 - } - } - }, - { - "id": "a2fee49d-4d65-5855-8a0c-15944c756f5f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.901101, - "y": 25.090469 - }, - "endPoint": { - "x": 325.894587, - "y": 25.088482 - } - } - }, - { - "id": "f8a1a2d3-3138-5a5c-aff8-280a7e83e588", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.894587, - "y": 25.088482 - }, - "endPoint": { - "x": 325.888059, - "y": 25.086539 - } - } - }, - { - "id": "4718a98e-b446-5217-8fe3-1883336d2751", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.888059, - "y": 25.086539 - }, - "endPoint": { - "x": 325.881519, - "y": 25.084638 - } - } - }, - { - "id": "b9c2880d-b4c5-5214-a170-e927c6641175", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.881519, - "y": 25.084638 - }, - "endPoint": { - "x": 325.874966, - "y": 25.08278 - } - } - }, - { - "id": "92ca1e39-c4ac-5c95-ad23-c5a085ae582f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.874966, - "y": 25.08278 - }, - "endPoint": { - "x": 325.871253, - "y": 25.081764 - } - } - }, - { - "id": "81540b0e-0025-5ad5-9939-dbaf91e4de4d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.871253, - "y": 25.081764 - }, - "endPoint": { - "x": 325.867528, - "y": 25.080791 - } - } - }, - { - "id": "a6ce52a6-dc02-5437-9402-056ffc18be1d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.867528, - "y": 25.080791 - }, - "endPoint": { - "x": 325.863792, - "y": 25.079862 - } - } - }, - { - "id": "4f6ad086-f78b-597f-b2e9-bc7b96115aad", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.863792, - "y": 25.079862 - }, - "endPoint": { - "x": 325.860045, - "y": 25.078976 - } - } - }, - { - "id": "ea0156f8-0561-59f9-8d6f-2aed14b39c83", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.860045, - "y": 25.078976 - }, - "endPoint": { - "x": 325.855632, - "y": 25.078016 - } - } - }, - { - "id": "953175f5-8f80-534d-bbcb-2e13740a42f1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.855632, - "y": 25.078016 - }, - "endPoint": { - "x": 325.851197, - "y": 25.077161 - } - } - }, - { - "id": "05c81fe6-2198-5782-a572-e9a0fc71e6f4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.851197, - "y": 25.077161 - }, - "endPoint": { - "x": 325.846743, - "y": 25.076413 - } - } - }, - { - "id": "0595c754-6e7a-561d-a7c2-5f718e3c03e2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.846743, - "y": 25.076413 - }, - "endPoint": { - "x": 325.842272, - "y": 25.075773 - } - } - }, - { - "id": "d09b6de0-92ad-56be-afe6-63fb42dcc735", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.842272, - "y": 25.075773 - }, - "endPoint": { - "x": 325.834371, - "y": 25.074682 - } - } - }, - { - "id": "b4cb65a5-fdf3-5630-9fad-da4672b2c6ea", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.834371, - "y": 25.074682 - }, - "endPoint": { - "x": 325.826486, - "y": 25.073485 - } - } - }, - { - "id": "f5186888-c849-550d-a0cb-fc87db498739", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.826486, - "y": 25.073485 - }, - "endPoint": { - "x": 325.818619, - "y": 25.07218 - } - } - }, - { - "id": "26100a94-4ab5-5b0d-8c2f-558bfbde3456", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.818619, - "y": 25.07218 - }, - "endPoint": { - "x": 325.810769, - "y": 25.070769 - } - } - }, - { - "id": "cbefdce2-9ded-54dd-9a79-953f6fec8fc1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.810769, - "y": 25.070769 - }, - "endPoint": { - "x": 325.803771, - "y": 25.069384 - } - } - }, - { - "id": "87c3f1b0-dedb-5c2b-9e29-da55871d8af3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.803771, - "y": 25.069384 - }, - "endPoint": { - "x": 325.796805, - "y": 25.067849 - } - } - }, - { - "id": "53a14b49-c555-5a89-b165-b7da6c420340", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.796805, - "y": 25.067849 - }, - "endPoint": { - "x": 325.789874, - "y": 25.066164 - } - } - }, - { - "id": "dd016188-baf0-5c9b-bd6f-b258f542893d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.789874, - "y": 25.066164 - }, - "endPoint": { - "x": 325.78298, - "y": 25.064331 - } - } - }, - { - "id": "e0e25d5b-a65d-5424-b92e-d2b004f07777", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.78298, - "y": 25.064331 - }, - "endPoint": { - "x": 325.774379, - "y": 25.062024 - } - } - }, - { - "id": "c65d522a-b983-5025-ab89-9937aab74819", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.774379, - "y": 25.062024 - }, - "endPoint": { - "x": 325.76574, - "y": 25.059866 - } - } - }, - { - "id": "35430baa-df54-52b0-8b5a-28c44bacca1e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.76574, - "y": 25.059866 - }, - "endPoint": { - "x": 325.757066, - "y": 25.057856 - } - } - }, - { - "id": "0a284353-7bd6-5f4b-b38e-0825692dc1c2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.757066, - "y": 25.057856 - }, - "endPoint": { - "x": 325.748357, - "y": 25.055997 - } - } - }, - { - "id": "e593c531-6f4c-5d8c-a184-786928897348", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.748357, - "y": 25.055997 - }, - "endPoint": { - "x": 325.739781, - "y": 25.054437 - } - } - }, - { - "id": "850a62e0-c280-50e8-8ff0-2a438b1acfe5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.739781, - "y": 25.054437 - }, - "endPoint": { - "x": 325.73115, - "y": 25.053253 - } - } - }, - { - "id": "4deec391-6d7c-521f-9797-4ff242367f8d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.73115, - "y": 25.053253 - }, - "endPoint": { - "x": 325.722475, - "y": 25.052448 - } - } - }, - { - "id": "bc3215af-88fe-563c-bc74-386a273daa7f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.722475, - "y": 25.052448 - }, - "endPoint": { - "x": 325.713769, - "y": 25.052023 - } - } - }, - { - "id": "6731152f-bede-5d0f-9e08-3d6691304fb9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.713769, - "y": 25.052023 - }, - "endPoint": { - "x": 325.707181, - "y": 25.052036 - } - } - }, - { - "id": "bd0b5de6-d70e-5920-b6c2-89c23763180c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.707181, - "y": 25.052036 - }, - "endPoint": { - "x": 325.700611, - "y": 25.05243 - } - } - }, - { - "id": "a4e26499-073d-5518-ab32-4575a9c05ef2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.700611, - "y": 25.05243 - }, - "endPoint": { - "x": 325.694074, - "y": 25.053203 - } - } - }, - { - "id": "dd018a89-989d-57ea-bd18-5e5206af5fae", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.694074, - "y": 25.053203 - }, - "endPoint": { - "x": 325.687588, - "y": 25.054355 - } - } - }, - { - "id": "0fe9d162-1754-5ac5-82f1-9223e308dc4b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.687588, - "y": 25.054355 - }, - "endPoint": { - "x": 325.683944, - "y": 25.0552 - } - } - }, - { - "id": "5eaef461-0b45-5a5e-b9a3-15daa384057f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.683944, - "y": 25.0552 - }, - "endPoint": { - "x": 325.680344, - "y": 25.05621 - } - } - }, - { - "id": "3bb2a5a4-d3f8-5a8d-a52a-3df913570790", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.680344, - "y": 25.05621 - }, - "endPoint": { - "x": 325.676794, - "y": 25.057383 - } - } - }, - { - "id": "497561ee-ae55-5b0f-a6d7-3a1bd1a31d51", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.676794, - "y": 25.057383 - }, - "endPoint": { - "x": 325.6733, - "y": 25.058719 - } - } - }, - { - "id": "2d0cf378-3888-5017-8dc8-597478998a32", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.6733, - "y": 25.058719 - }, - "endPoint": { - "x": 325.667731, - "y": 25.061089 - } - } - }, - { - "id": "0df58afb-4392-5b02-9fa8-18d4866f543a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.667731, - "y": 25.061089 - }, - "endPoint": { - "x": 325.662233, - "y": 25.063615 - } - } - }, - { - "id": "dd4fef4e-17d9-5652-8446-36e9015a701e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.662233, - "y": 25.063615 - }, - "endPoint": { - "x": 325.656808, - "y": 25.066295 - } - } - }, - { - "id": "309a6dd6-c350-5d51-b05e-58f5fec1df7c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.656808, - "y": 25.066295 - }, - "endPoint": { - "x": 325.65146, - "y": 25.069128 - } - } - }, - { - "id": "62c17952-88c2-562b-81ce-ee654f064eed", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.65146, - "y": 25.069128 - }, - "endPoint": { - "x": 325.647606, - "y": 25.07133 - } - } - }, - { - "id": "731e5b8e-a502-5d09-a6e4-6a6cf66bce5d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.647606, - "y": 25.07133 - }, - "endPoint": { - "x": 325.643833, - "y": 25.073666 - } - } - }, - { - "id": "c730ecd3-0127-50e3-a1ef-11fbfc25b3d9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.643833, - "y": 25.073666 - }, - "endPoint": { - "x": 325.640146, - "y": 25.076135 - } - } - }, - { - "id": "5d358f7e-7f53-5377-ae08-2bebf72659c5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.640146, - "y": 25.076135 - }, - "endPoint": { - "x": 325.636547, - "y": 25.078734 - } - } - }, - { - "id": "5230a17b-83d2-5fcd-86bb-51b81f9c7be8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.636547, - "y": 25.078734 - }, - "endPoint": { - "x": 325.635177, - "y": 25.079861 - } - } - }, - { - "id": "589dfe1a-b698-5d37-b2c6-0ab8a5c3a7bc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.635177, - "y": 25.079861 - }, - "endPoint": { - "x": 325.633915, - "y": 25.081103 - } - } - }, - { - "id": "8c8bc7f3-adb1-52fc-8794-b78cda041765", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.633915, - "y": 25.081103 - }, - "endPoint": { - "x": 325.632769, - "y": 25.082453 - } - } - }, - { - "id": "f10340c1-ad66-5fb0-a4d9-214d65f43b6c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.632769, - "y": 25.082453 - }, - "endPoint": { - "x": 325.631747, - "y": 25.083903 - } - } - }, - { - "id": "3f02887b-c54d-5b54-87e6-ef0dd02f5d44", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.631747, - "y": 25.083903 - }, - "endPoint": { - "x": 325.630851, - "y": 25.085553 - } - } - }, - { - "id": "702644ec-434e-5493-ab85-6b4745640e97", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.630851, - "y": 25.085553 - }, - "endPoint": { - "x": 325.630201, - "y": 25.087303 - } - } - }, - { - "id": "6d19aa05-a381-5f4f-87db-9b018614fa0a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.630201, - "y": 25.087303 - }, - "endPoint": { - "x": 325.629805, - "y": 25.089128 - } - } - }, - { - "id": "622ec86b-31a6-5c20-93de-b7c503190278", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.629805, - "y": 25.089128 - }, - "endPoint": { - "x": 325.629671, - "y": 25.091001 - } - } - }, - { - "id": "ac8038be-232f-5c04-82c0-55ca9c173da1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.629671, - "y": 25.091001 - }, - "endPoint": { - "x": 325.629802, - "y": 25.09461 - } - } - }, - { - "id": "8e6bca34-859b-524f-8e2d-6e2aaa31ac6a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.629802, - "y": 25.09461 - }, - "endPoint": { - "x": 325.630193, - "y": 25.098196 - } - } - }, - { - "id": "f9acfbb2-1612-50ba-aea3-a147f35c0a22", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.630193, - "y": 25.098196 - }, - "endPoint": { - "x": 325.630842, - "y": 25.101745 - } - } - }, - { - "id": "a84cf37c-ad43-508b-9900-55fdbcbf37d8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.630842, - "y": 25.101745 - }, - "endPoint": { - "x": 325.631747, - "y": 25.105242 - } - } - }, - { - "id": "bb078fa6-3d7c-5a3e-ac97-568ab6e57a0a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.631747, - "y": 25.105242 - }, - "endPoint": { - "x": 325.632851, - "y": 25.108672 - } - } - }, - { - "id": "3c47eead-82b0-58c7-a519-939a320e0679", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.632851, - "y": 25.108672 - }, - "endPoint": { - "x": 325.634103, - "y": 25.112049 - } - } - }, - { - "id": "aaa51262-84e4-53a8-9b68-4c8d5c402809", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.634103, - "y": 25.112049 - }, - "endPoint": { - "x": 325.635501, - "y": 25.115369 - } - } - }, - { - "id": "11c75eb7-a2e4-5760-bda3-ab9ec5d004e8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.635501, - "y": 25.115369 - }, - "endPoint": { - "x": 325.637042, - "y": 25.118626 - } - } - }, - { - "id": "6ce0ea81-77d8-5415-9beb-fac0c32729a6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.637042, - "y": 25.118626 - }, - "endPoint": { - "x": 325.637988, - "y": 25.120339 - } - } - }, - { - "id": "a5a9ddfb-acd1-534a-8362-d7957bc1f00e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.637988, - "y": 25.120339 - }, - "endPoint": { - "x": 325.639067, - "y": 25.121967 - } - } - }, - { - "id": "14d8dd18-8d22-5d2a-b0d3-d214e325d00a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.639067, - "y": 25.121967 - }, - "endPoint": { - "x": 325.640274, - "y": 25.123503 - } - } - }, - { - "id": "10a3dafc-9f57-5ec7-bc3f-323212eebd2a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.640274, - "y": 25.123503 - }, - "endPoint": { - "x": 325.641604, - "y": 25.124938 - } - } - }, - { - "id": "8acbae6d-70f3-5421-ba27-693b93417879", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.641604, - "y": 25.124938 - }, - "endPoint": { - "x": 325.644719, - "y": 25.127914 - } - } - }, - { - "id": "ee5a9359-9c12-5628-a437-fcfcb791d022", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.644719, - "y": 25.127914 - }, - "endPoint": { - "x": 325.647954, - "y": 25.130755 - } - } - }, - { - "id": "34ce8080-0d79-5b1d-adb6-7bbb8de5f7e8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.647954, - "y": 25.130755 - }, - "endPoint": { - "x": 325.651305, - "y": 25.133458 - } - } - }, - { - "id": "225dce16-bbb1-5fc6-bb52-11a0d460b2a9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.651305, - "y": 25.133458 - }, - "endPoint": { - "x": 325.654768, - "y": 25.13602 - } - } - }, - { - "id": "3ff9cd15-5d02-5779-9438-963eda479f5e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.654768, - "y": 25.13602 - }, - "endPoint": { - "x": 325.661185, - "y": 25.140453 - } - } - }, - { - "id": "49ff4a97-1777-57a5-9d1f-7df5c18bebad", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.661185, - "y": 25.140453 - }, - "endPoint": { - "x": 325.667702, - "y": 25.144736 - } - } - }, - { - "id": "82038e7c-9954-5cb8-8e99-9a080c1007f2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.667702, - "y": 25.144736 - }, - "endPoint": { - "x": 325.674315, - "y": 25.148867 - } - } - }, - { - "id": "9c4fc768-6c67-5232-9c4f-469e58c68c57", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.674315, - "y": 25.148867 - }, - "endPoint": { - "x": 325.681023, - "y": 25.152845 - } - } - }, - { - "id": "4596eb92-5799-5078-adba-9fd7d1f1c397", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.681023, - "y": 25.152845 - }, - "endPoint": { - "x": 325.694226, - "y": 25.160438 - } - } - }, - { - "id": "842bc26a-2637-5124-abb2-2a271ced0ef3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.694226, - "y": 25.160438 - }, - "endPoint": { - "x": 325.707458, - "y": 25.167982 - } - } - }, - { - "id": "f9cc93f0-8434-54a1-9257-ba17a79b51ef", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.707458, - "y": 25.167982 - }, - "endPoint": { - "x": 325.720717, - "y": 25.175476 - } - } - }, - { - "id": "beb3e8e2-17a0-52e6-ba64-523923ef41a4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.720717, - "y": 25.175476 - }, - "endPoint": { - "x": 325.734004, - "y": 25.182921 - } - } - }, - { - "id": "f6a21776-0054-518b-aa6e-46687cee27a3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.734004, - "y": 25.182921 - }, - "endPoint": { - "x": 325.738374, - "y": 25.185326 - } - } - }, - { - "id": "aee5c404-fa6e-565a-8993-a127d57df985", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.738374, - "y": 25.185326 - }, - "endPoint": { - "x": 325.74277, - "y": 25.187682 - } - } - }, - { - "id": "bd34dd59-301d-564f-a23c-b44f44499a3f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.74277, - "y": 25.187682 - }, - "endPoint": { - "x": 325.747193, - "y": 25.189987 - } - } - }, - { - "id": "6d87eacf-06d2-5dd7-8e22-f98fd26db68c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.747193, - "y": 25.189987 - }, - "endPoint": { - "x": 325.751643, - "y": 25.192242 - } - } - }, - { - "id": "2ad5d478-b9f6-518c-9a22-00e39ca306eb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.751643, - "y": 25.192242 - }, - "endPoint": { - "x": 325.757802, - "y": 25.19532 - } - } - }, - { - "id": "70d0ddec-45bf-55b4-b04c-a9b4283486df", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.757802, - "y": 25.19532 - }, - "endPoint": { - "x": 325.763962, - "y": 25.198397 - } - } - }, - { - "id": "29418df1-4c2f-5acd-9f26-62585d8b7209", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.763962, - "y": 25.198397 - }, - "endPoint": { - "x": 325.770121, - "y": 25.201475 - } - } - }, - { - "id": "4070457d-2ef8-59b9-bce8-92d5dab259c3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.770121, - "y": 25.201475 - }, - "endPoint": { - "x": 325.776281, - "y": 25.204552 - } - } - }, - { - "id": "a3cc3b01-8d54-5be0-8965-45bfc7ac561f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.776281, - "y": 25.204552 - }, - "endPoint": { - "x": 325.78244, - "y": 25.20763 - } - } - }, - { - "id": "65db9b9a-9b5e-5e62-ae79-a8447c86900c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.78244, - "y": 25.20763 - }, - "endPoint": { - "x": 325.7886, - "y": 25.210707 - } - } - }, - { - "id": "19c17a1f-f893-5924-86be-4f5bf56e5df0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.7886, - "y": 25.210707 - }, - "endPoint": { - "x": 325.794759, - "y": 25.213785 - } - } - }, - { - "id": "e4570be8-95f6-524a-b208-3507580916be", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.794759, - "y": 25.213785 - }, - "endPoint": { - "x": 325.800919, - "y": 25.216863 - } - } - }, - { - "id": "8e7c14d2-80d0-5173-9cd0-90b27fdbb2c6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.800919, - "y": 25.216863 - }, - "endPoint": { - "x": 325.809119, - "y": 25.220961 - } - } - }, - { - "id": "636de1ed-d9d4-5069-99a7-7ac3f2f0fb68", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.809119, - "y": 25.220961 - }, - "endPoint": { - "x": 325.81732, - "y": 25.225058 - } - } - }, - { - "id": "636a2a05-9cf7-5ca9-9a6d-5730095e1784", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.81732, - "y": 25.225058 - }, - "endPoint": { - "x": 325.82552, - "y": 25.229157 - } - } - }, - { - "id": "63a0aa1d-63ac-5838-bfbc-f199ba987768", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.82552, - "y": 25.229157 - }, - "endPoint": { - "x": 325.833721, - "y": 25.233255 - } - } - }, - { - "id": "130b816e-4c4d-5958-ac05-6a0ee1f8ee0f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.833721, - "y": 25.233255 - }, - "endPoint": { - "x": 325.843586, - "y": 25.238185 - } - } - }, - { - "id": "d31f4549-b8de-5141-832b-db5318b83611", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.843586, - "y": 25.238185 - }, - "endPoint": { - "x": 325.853451, - "y": 25.243115 - } - } - }, - { - "id": "b55cd44a-7ecf-5d4e-8908-86311f1cee44", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.853451, - "y": 25.243115 - }, - "endPoint": { - "x": 325.863316, - "y": 25.248046 - } - } - }, - { - "id": "16466e13-9e6a-5bba-be36-1f88cb24158c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.863316, - "y": 25.248046 - }, - "endPoint": { - "x": 325.873181, - "y": 25.252976 - } - } - }, - { - "id": "1249291f-305c-57d5-b317-ef12215eec65", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.873181, - "y": 25.252976 - }, - "endPoint": { - "x": 325.882779, - "y": 25.257869 - } - } - }, - { - "id": "e39ab0ce-2e53-5171-b65a-466e4240dae7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.882779, - "y": 25.257869 - }, - "endPoint": { - "x": 325.892297, - "y": 25.262912 - } - } - }, - { - "id": "c7800713-252d-59da-85e2-b77a4219aa59", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.892297, - "y": 25.262912 - }, - "endPoint": { - "x": 325.901735, - "y": 25.268105 - } - } - }, - { - "id": "02546116-c040-504c-8179-08a978b93ab3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.901735, - "y": 25.268105 - }, - "endPoint": { - "x": 325.91109, - "y": 25.273446 - } - } - }, - { - "id": "dbc86b72-8bd7-5dff-bd44-57a0b5e876e4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.91109, - "y": 25.273446 - }, - "endPoint": { - "x": 325.924328, - "y": 25.281243 - } - } - }, - { - "id": "82e7d432-f0ca-5631-9e8e-6b239f4a320b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.924328, - "y": 25.281243 - }, - "endPoint": { - "x": 325.937479, - "y": 25.289185 - } - } - }, - { - "id": "64384aa4-9d41-554b-8d2a-a30d4d1cb2a7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.937479, - "y": 25.289185 - }, - "endPoint": { - "x": 325.950541, - "y": 25.297272 - } - } - }, - { - "id": "07a82fa3-52fd-5372-a967-893b32a53f95", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.950541, - "y": 25.297272 - }, - "endPoint": { - "x": 325.963513, - "y": 25.305504 - } - } - }, - { - "id": "46da113d-bd87-5f46-b43f-7bce3242b996", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.963513, - "y": 25.305504 - }, - "endPoint": { - "x": 325.976212, - "y": 25.31376 - } - } - }, - { - "id": "5afdbd37-f335-5d41-8c42-3fdf56a55b15", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.976212, - "y": 25.31376 - }, - "endPoint": { - "x": 325.988821, - "y": 25.322152 - } - } - }, - { - "id": "5f9e05ca-37ff-5dff-9f6d-d42134dacfab", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.988821, - "y": 25.322152 - }, - "endPoint": { - "x": 326.001338, - "y": 25.330681 - } - } - }, - { - "id": "b1e9d37e-044f-5296-bc0a-1a5964332e42", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.001338, - "y": 25.330681 - }, - "endPoint": { - "x": 326.013762, - "y": 25.339345 - } - } - }, - { - "id": "05588c73-86b2-5406-ae2e-f9230325e8ae", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.013762, - "y": 25.339345 - }, - "endPoint": { - "x": 326.022289, - "y": 25.345461 - } - } - }, - { - "id": "ae762d91-97f7-5a53-b78f-95235da5d734", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.022289, - "y": 25.345461 - }, - "endPoint": { - "x": 326.030719, - "y": 25.351709 - } - } - }, - { - "id": "e1f490bb-3dcc-541a-85b9-6fff98842e6c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.030719, - "y": 25.351709 - }, - "endPoint": { - "x": 326.03905, - "y": 25.358088 - } - } - }, - { - "id": "cf43fd9d-badd-50ed-9def-5ea347a349be", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.03905, - "y": 25.358088 - }, - "endPoint": { - "x": 326.047281, - "y": 25.364598 - } - } - }, - { - "id": "332aad99-6f87-576c-919d-0ff4d16d9c06", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.047281, - "y": 25.364598 - }, - "endPoint": { - "x": 326.051692, - "y": 25.368143 - } - } - }, - { - "id": "3847d3ec-6fde-50b0-b7f6-621b583b590e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.051692, - "y": 25.368143 - }, - "endPoint": { - "x": 326.056102, - "y": 25.37169 - } - } - }, - { - "id": "ee6699a0-fdf1-569c-bdcc-6ce90fbad23d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.056102, - "y": 25.37169 - }, - "endPoint": { - "x": 326.060512, - "y": 25.375237 - } - } - }, - { - "id": "1a6fd86d-2436-50cf-9b9f-518694d07c04", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.060512, - "y": 25.375237 - }, - "endPoint": { - "x": 326.064922, - "y": 25.378785 - } - } - }, - { - "id": "1b4f8948-47a5-516f-a1f8-857e2ee4a4a3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.064922, - "y": 25.378785 - }, - "endPoint": { - "x": 326.077344, - "y": 25.388782 - } - } - }, - { - "id": "db5684bc-3f91-538d-96f1-9d8870f92334", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.077344, - "y": 25.388782 - }, - "endPoint": { - "x": 326.089767, - "y": 25.398777 - } - } - }, - { - "id": "a960a989-1707-507f-a4b9-24164f0f4327", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.089767, - "y": 25.398777 - }, - "endPoint": { - "x": 326.10219, - "y": 25.408772 - } - } - }, - { - "id": "cc76c9d5-e80b-5f3d-9ecc-31cd566a9fe9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.10219, - "y": 25.408772 - }, - "endPoint": { - "x": 326.114614, - "y": 25.418767 - } - } - }, - { - "id": "cce96a39-1e37-5125-86f7-9a8ace1cc721", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.114614, - "y": 25.418767 - }, - "endPoint": { - "x": 326.118748, - "y": 25.422091 - } - } - }, - { - "id": "2de8a6e9-4b89-56c8-8430-038012028316", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.118748, - "y": 25.422091 - }, - "endPoint": { - "x": 326.122882, - "y": 25.425414 - } - } - }, - { - "id": "e8b092ef-cea0-56b9-808f-ba82a0715b1b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.122882, - "y": 25.425414 - }, - "endPoint": { - "x": 326.127016, - "y": 25.428737 - } - } - }, - { - "id": "19ae3ff3-14d0-581c-897b-97bf131f11cf", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.127016, - "y": 25.428737 - }, - "endPoint": { - "x": 326.131152, - "y": 25.432059 - } - } - }, - { - "id": "16262706-484e-558b-a60b-9efe771bfa31", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.131152, - "y": 25.432059 - }, - "endPoint": { - "x": 326.139951, - "y": 25.439125 - } - } - }, - { - "id": "64be987d-22e7-56f4-b0a2-46220f2b4a21", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.139951, - "y": 25.439125 - }, - "endPoint": { - "x": 326.14875, - "y": 25.44619 - } - } - }, - { - "id": "229e6e07-809a-5ff7-946c-9dc3e2a6442b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.14875, - "y": 25.44619 - }, - "endPoint": { - "x": 326.157551, - "y": 25.453255 - } - } - }, - { - "id": "9f17ba6b-4d36-5f79-98d3-c144b8ce438b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.157551, - "y": 25.453255 - }, - "endPoint": { - "x": 326.166352, - "y": 25.460318 - } - } - } - ] - }, - { - "id": "156c6aec-0fdc-57d3-aaec-825cd41a633a", - "type": "PolyLine", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": null, - "children": [ - { - "id": "e9910d94-f878-5bd4-9cb8-13a0f41b89b3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.166352, - "y": 25.460318 - }, - "endPoint": { - "x": 326.233574, - "y": 25.505378 - } - } - }, - { - "id": "301aab6c-2e17-56a9-8e83-f2356e078dd4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.233574, - "y": 25.505378 - }, - "endPoint": { - "x": 326.24369, - "y": 25.512846 - } - } - }, - { - "id": "8d4ebe37-0417-53bd-bd3f-9834c59d6112", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.24369, - "y": 25.512846 - }, - "endPoint": { - "x": 326.253606, - "y": 25.520575 - } - } - }, - { - "id": "3f98d8d6-e5b3-5860-a202-81de6794895c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.253606, - "y": 25.520575 - }, - "endPoint": { - "x": 326.263317, - "y": 25.52856 - } - } - }, - { - "id": "1ce0609a-6e9b-5cb8-abd7-654d175a4869", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.263317, - "y": 25.52856 - }, - "endPoint": { - "x": 326.272818, - "y": 25.536797 - } - } - }, - { - "id": "99676b54-81b9-5cae-9cc5-6730cfb6ba00", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.272818, - "y": 25.536797 - }, - "endPoint": { - "x": 326.328811, - "y": 25.586754 - } - } - }, - { - "id": "abc6507d-95bf-5a11-8f17-d4190e32bd53", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.328811, - "y": 25.586754 - }, - "endPoint": { - "x": 326.330627, - "y": 25.588385 - } - } - }, - { - "id": "960a7c49-0853-5a41-af5f-b435d64f27bc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.330627, - "y": 25.588385 - }, - "endPoint": { - "x": 326.332435, - "y": 25.590024 - } - } - }, - { - "id": "32845aa8-87d4-5de9-a9a0-c2bd9445dd38", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.332435, - "y": 25.590024 - }, - "endPoint": { - "x": 326.334236, - "y": 25.591672 - } - } - }, - { - "id": "9908dbc8-7aa1-5744-aeae-202367e586c8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.334236, - "y": 25.591672 - }, - "endPoint": { - "x": 326.336029, - "y": 25.593328 - } - } - }, - { - "id": "467f9f81-e034-5274-a841-70f91d55df8b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.336029, - "y": 25.593328 - }, - "endPoint": { - "x": 326.392294, - "y": 25.646405 - } - } - }, - { - "id": "6ebe69fd-2e8d-5386-8029-21ce9e0dffc3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.392294, - "y": 25.646405 - }, - "endPoint": { - "x": 326.399109, - "y": 25.653 - } - } - }, - { - "id": "48b28970-9f50-5655-8b1f-6dffd88c3f7f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.399109, - "y": 25.653 - }, - "endPoint": { - "x": 326.405867, - "y": 25.659653 - } - } - }, - { - "id": "f47ebc24-f669-593e-bfdc-c30012b6d6b8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.405867, - "y": 25.659653 - }, - "endPoint": { - "x": 326.412567, - "y": 25.666364 - } - } - }, - { - "id": "54f66c32-bb51-5365-9de7-9c3b615e4977", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.412567, - "y": 25.666364 - }, - "endPoint": { - "x": 326.419209, - "y": 25.673133 - } - } - }, - { - "id": "991604f6-b5ae-5b3b-8f30-e906fce763a5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.419209, - "y": 25.673133 - }, - "endPoint": { - "x": 326.441745, - "y": 25.697208 - } - } - }, - { - "id": "1e812f64-4ed8-59b0-a123-d35164a3eab1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.441745, - "y": 25.697208 - }, - "endPoint": { - "x": 326.451173, - "y": 25.707736 - } - } - }, - { - "id": "cf630b36-3556-5d7d-b9f1-cc47f6bf5a8e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.451173, - "y": 25.707736 - }, - "endPoint": { - "x": 326.460541, - "y": 25.718318 - } - } - }, - { - "id": "c27923f0-d35c-5d7e-b61f-2377a4e9278c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.460541, - "y": 25.718318 - }, - "endPoint": { - "x": 326.469849, - "y": 25.728951 - } - } - }, - { - "id": "850b569b-69f3-5319-9e89-ee5f31d9b940", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.469849, - "y": 25.728951 - }, - "endPoint": { - "x": 326.479098, - "y": 25.739637 - } - } - }, - { - "id": "1a14b50e-6823-56ac-8192-d903f9d96964", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.479098, - "y": 25.739637 - }, - "endPoint": { - "x": 326.500668, - "y": 25.765425 - } - } - }, - { - "id": "f7d79541-b979-57af-88dd-1e2f85a1b308", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.500668, - "y": 25.765425 - }, - "endPoint": { - "x": 326.506157, - "y": 25.772224 - } - } - }, - { - "id": "11b10b1c-30fa-5a72-b078-e1bc0b4817be", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.506157, - "y": 25.772224 - }, - "endPoint": { - "x": 326.5116, - "y": 25.77906 - } - } - }, - { - "id": "8cc58ab0-e5b6-575e-b1da-29e91d39d4d7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.5116, - "y": 25.77906 - }, - "endPoint": { - "x": 326.516996, - "y": 25.785933 - } - } - }, - { - "id": "19e26977-627f-5a09-872a-30c34e2ea61c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.516996, - "y": 25.785933 - }, - "endPoint": { - "x": 326.522346, - "y": 25.792842 - } - } - }, - { - "id": "80703c26-2a48-5e64-8208-575f53b1b508", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.522346, - "y": 25.792842 - }, - "endPoint": { - "x": 326.545436, - "y": 25.825907 - } - } - }, - { - "id": "5bedd7e3-4ff3-57c5-ad32-5d2bd34994c3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.545436, - "y": 25.825907 - }, - "endPoint": { - "x": 326.549947, - "y": 25.833264 - } - } - }, - { - "id": "237bbaa5-9c84-5d50-9466-c726ab98c5c0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.549947, - "y": 25.833264 - }, - "endPoint": { - "x": 326.554259, - "y": 25.840737 - } - } - }, - { - "id": "d4e0cb7a-a54a-529a-a0cd-ac9d76663fa0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.554259, - "y": 25.840737 - }, - "endPoint": { - "x": 326.558368, - "y": 25.848324 - } - } - }, - { - "id": "726b5bdc-fb8d-55e3-9e18-2fef25452d0f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.558368, - "y": 25.848324 - }, - "endPoint": { - "x": 326.562272, - "y": 25.85602 - } - } - }, - { - "id": "337392d9-aae7-5e0c-bef8-f88fef4c5c78", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.562272, - "y": 25.85602 - }, - "endPoint": { - "x": 326.569596, - "y": 25.871966 - } - } - }, - { - "id": "d279186a-b908-5c50-9513-a25896530a68", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.569596, - "y": 25.871966 - }, - "endPoint": { - "x": 326.572833, - "y": 25.879586 - } - } - }, - { - "id": "ec5ce552-5ffe-5e43-8d44-3ffdfb442438", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.572833, - "y": 25.879586 - }, - "endPoint": { - "x": 326.576019, - "y": 25.887227 - } - } - }, - { - "id": "a9dba558-5484-5ac1-818e-1ad0ca8c8300", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.576019, - "y": 25.887227 - }, - "endPoint": { - "x": 326.579153, - "y": 25.89489 - } - } - }, - { - "id": "14f9a749-041b-5bcb-bcea-e6790c9780a4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.579153, - "y": 25.89489 - }, - "endPoint": { - "x": 326.582235, - "y": 25.902574 - } - } - }, - { - "id": "14420061-9d85-574e-9b44-76a5ad630c6d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.582235, - "y": 25.902574 - }, - "endPoint": { - "x": 326.596334, - "y": 25.941201 - } - } - }, - { - "id": "60b70211-ecb9-5af2-82b0-065ff4f8a00d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.596334, - "y": 25.941201 - }, - "endPoint": { - "x": 326.597179, - "y": 25.943963 - } - } - }, - { - "id": "3eb7bb18-dc34-503a-84bd-3f067e3aa581", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.597179, - "y": 25.943963 - }, - "endPoint": { - "x": 326.597884, - "y": 25.946763 - } - } - }, - { - "id": "ca95852e-7c84-5472-a268-a54c946e1f4b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.597884, - "y": 25.946763 - }, - "endPoint": { - "x": 326.598447, - "y": 25.949594 - } - } - }, - { - "id": "8014ee93-b9af-5114-ac5b-6a1eb2ee493c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.598447, - "y": 25.949594 - }, - "endPoint": { - "x": 326.598868, - "y": 25.952452 - } - } - }, - { - "id": "ac81004a-f5ec-570a-a07e-a727879908d9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.598868, - "y": 25.952452 - }, - "endPoint": { - "x": 326.599031, - "y": 25.964013 - } - } - }, - { - "id": "37e8fc4e-dccb-52e2-bab8-5b3291f367e2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.599031, - "y": 25.964013 - }, - "endPoint": { - "x": 326.598758, - "y": 25.967768 - } - } - }, - { - "id": "31cadaec-ec51-58e0-8cc2-e4945f5c9e53", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.598758, - "y": 25.967768 - }, - "endPoint": { - "x": 326.59864, - "y": 25.971529 - } - } - }, - { - "id": "72f71920-0533-59c0-bdbf-1fd445197dc8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.59864, - "y": 25.971529 - }, - "endPoint": { - "x": 326.598677, - "y": 25.975292 - } - } - }, - { - "id": "8d4e0474-0640-505d-961a-4f5d4a896547", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.598677, - "y": 25.975292 - }, - "endPoint": { - "x": 326.598868, - "y": 25.979052 - } - } - }, - { - "id": "2cd5e3ad-b555-535b-abcb-bb249bf770e7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.598868, - "y": 25.979052 - }, - "endPoint": { - "x": 326.600273, - "y": 25.993548 - } - } - }, - { - "id": "7722225f-86b2-5052-9fe2-80a0788869f1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.600273, - "y": 25.993548 - }, - "endPoint": { - "x": 326.600822, - "y": 25.998231 - } - } - }, - { - "id": "617066b8-28dd-5879-b6dd-bbba00cf6b81", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.600822, - "y": 25.998231 - }, - "endPoint": { - "x": 326.601326, - "y": 26.002918 - } - } - }, - { - "id": "38a583f6-8ea3-50dc-9169-43e36f06455c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.601326, - "y": 26.002918 - }, - "endPoint": { - "x": 326.601784, - "y": 26.00761 - } - } - }, - { - "id": "e8103a73-6a89-59bc-9112-662db073e676", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.601784, - "y": 26.00761 - }, - "endPoint": { - "x": 326.602198, - "y": 26.012306 - } - } - }, - { - "id": "dc0f2c9f-6452-566d-81ff-983f07a7bf5e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.602198, - "y": 26.012306 - }, - "endPoint": { - "x": 326.602816, - "y": 26.027219 - } - } - }, - { - "id": "5a899b58-f003-5107-81e5-ca941e370127", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.602816, - "y": 26.027219 - }, - "endPoint": { - "x": 326.602778, - "y": 26.030146 - } - } - }, - { - "id": "45b5e4a5-9b39-5052-a10e-2c30d7985033", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.602778, - "y": 26.030146 - }, - "endPoint": { - "x": 326.602661, - "y": 26.033071 - } - } - }, - { - "id": "d11e3451-247c-528b-bd99-568dbb2c27d8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.602661, - "y": 26.033071 - }, - "endPoint": { - "x": 326.602468, - "y": 26.035992 - } - } - }, - { - "id": "cf2ddc28-1c37-5010-883f-ff97d9570918", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.602468, - "y": 26.035992 - }, - "endPoint": { - "x": 326.602198, - "y": 26.038907 - } - } - }, - { - "id": "6ace49ad-825d-5c56-a902-6474cb2523ef", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.602198, - "y": 26.038907 - }, - "endPoint": { - "x": 326.598575, - "y": 26.047875 - } - } - }, - { - "id": "8ab1921d-4c08-5c8a-8567-8f5431d6f92b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.598575, - "y": 26.047875 - }, - "endPoint": { - "x": 326.595991, - "y": 26.050916 - } - } - }, - { - "id": "5b98f34f-0781-5657-9306-ae228682ec19", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.595991, - "y": 26.050916 - }, - "endPoint": { - "x": 326.593167, - "y": 26.053725 - } - } - }, - { - "id": "08e35e02-25a9-50ac-b0c3-f8897ffa4217", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.593167, - "y": 26.053725 - }, - "endPoint": { - "x": 326.590117, - "y": 26.056287 - } - } - }, - { - "id": "4fcc01dd-1001-51d4-a2d6-29559e007d3e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.590117, - "y": 26.056287 - }, - "endPoint": { - "x": 326.586857, - "y": 26.058588 - } - } - }, - { - "id": "d4b79dd8-3867-5e2f-8522-f44dc583bcad", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.586857, - "y": 26.058588 - }, - "endPoint": { - "x": 326.569783, - "y": 26.06706 - } - } - }, - { - "id": "34a688e9-f86a-5bc3-8133-7d7dfe66350e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.569783, - "y": 26.06706 - }, - "endPoint": { - "x": 326.565118, - "y": 26.068613 - } - } - }, - { - "id": "e944c669-7acb-5409-8fde-269aef6f56ac", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.565118, - "y": 26.068613 - }, - "endPoint": { - "x": 326.56038, - "y": 26.06991 - } - } - }, - { - "id": "508f4b03-671c-5966-ade4-66b05e06e1fb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.56038, - "y": 26.06991 - }, - "endPoint": { - "x": 326.555578, - "y": 26.070947 - } - } - }, - { - "id": "388b37f0-d7a8-51d9-b9bf-6c6988d63fec", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.555578, - "y": 26.070947 - }, - "endPoint": { - "x": 326.550723, - "y": 26.071722 - } - } - }, - { - "id": "273b3b71-cab7-50c1-9279-e30030b4c7d9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.550723, - "y": 26.071722 - }, - "endPoint": { - "x": 326.530358, - "y": 26.073337 - } - } - }, - { - "id": "517b6790-b7b0-50aa-b9fb-89141815657b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.530358, - "y": 26.073337 - }, - "endPoint": { - "x": 326.524759, - "y": 26.073555 - } - } - }, - { - "id": "d5aa7f0b-370f-5184-be7e-511d7cfa7537", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.524759, - "y": 26.073555 - }, - "endPoint": { - "x": 326.519168, - "y": 26.073906 - } - } - }, - { - "id": "a83a3b10-efdf-5340-a927-31f1fd1237f7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.519168, - "y": 26.073906 - }, - "endPoint": { - "x": 326.513587, - "y": 26.074389 - } - } - }, - { - "id": "281a5ae0-bf74-526a-9340-7875c2e30365", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.513587, - "y": 26.074389 - }, - "endPoint": { - "x": 326.508018, - "y": 26.075005 - } - } - }, - { - "id": "0fafe9d6-f6bf-54ef-9f9f-6ad4415d6021", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.508018, - "y": 26.075005 - }, - "endPoint": { - "x": 326.476954, - "y": 26.080007 - } - } - }, - { - "id": "f746cfd7-4405-56e7-af97-0220829cfd85", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.476954, - "y": 26.080007 - }, - "endPoint": { - "x": 326.472347, - "y": 26.081003 - } - } - }, - { - "id": "de71fe79-3bd9-5188-9e91-5ef48fe25c6d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.472347, - "y": 26.081003 - }, - "endPoint": { - "x": 326.467775, - "y": 26.082144 - } - } - }, - { - "id": "00ccefa1-bcd1-51b0-9172-9077352f867d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.467775, - "y": 26.082144 - }, - "endPoint": { - "x": 326.46324, - "y": 26.083427 - } - } - }, - { - "id": "7a3d0fba-b6b1-5254-8ce8-8bbf9517b033", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.46324, - "y": 26.083427 - }, - "endPoint": { - "x": 326.458748, - "y": 26.084853 - } - } - }, - { - "id": "11d7d6fe-df9c-5084-b5cf-1d5a0a99f753", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.458748, - "y": 26.084853 - }, - "endPoint": { - "x": 326.445179, - "y": 26.091498 - } - } - }, - { - "id": "c4c61f24-8651-5ca7-bd66-cfc6ac17398e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.445179, - "y": 26.091498 - }, - "endPoint": { - "x": 326.440947, - "y": 26.094468 - } - } - }, - { - "id": "f6eea85e-e05a-5a41-beed-47f5717231bb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.440947, - "y": 26.094468 - }, - "endPoint": { - "x": 326.436866, - "y": 26.097637 - } - } - }, - { - "id": "ec3fda53-068c-514d-8515-ed39264a76a0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.436866, - "y": 26.097637 - }, - "endPoint": { - "x": 326.432943, - "y": 26.101 - } - } - }, - { - "id": "4b1f1531-c3f3-5bff-bbd1-2aeda80bddec", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.432943, - "y": 26.101 - }, - "endPoint": { - "x": 326.429185, - "y": 26.10455 - } - } - }, - { - "id": "69d13706-affb-5cbc-998f-73f8bf0be0e5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.429185, - "y": 26.10455 - }, - "endPoint": { - "x": 326.419554, - "y": 26.115866 - } - } - }, - { - "id": "aa8c0dc4-d87d-5101-b357-f28e085073cd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.419554, - "y": 26.115866 - }, - "endPoint": { - "x": 326.417652, - "y": 26.118662 - } - } - }, - { - "id": "c35d35f4-b5da-5366-b610-f0a032ccb206", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.417652, - "y": 26.118662 - }, - "endPoint": { - "x": 326.415884, - "y": 26.121541 - } - } - }, - { - "id": "50278b2b-dd49-5410-bb45-8f70c53eac13", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.415884, - "y": 26.121541 - }, - "endPoint": { - "x": 326.414251, - "y": 26.1245 - } - } - }, - { - "id": "3488d55b-2915-512c-b7b2-30837efd093e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.414251, - "y": 26.1245 - }, - "endPoint": { - "x": 326.412757, - "y": 26.127533 - } - } - }, - { - "id": "08f1e93f-228e-58c6-b760-b45d08a5bd7d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.412757, - "y": 26.127533 - }, - "endPoint": { - "x": 326.40801, - "y": 26.142285 - } - } - }, - { - "id": "5e061302-9e18-5f63-9ba9-e215cc105498", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.40801, - "y": 26.142285 - }, - "endPoint": { - "x": 326.4072, - "y": 26.147177 - } - } - }, - { - "id": "ea684209-5905-57a4-9c96-09ce58c28031", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.4072, - "y": 26.147177 - }, - "endPoint": { - "x": 326.406626, - "y": 26.1521 - } - } - }, - { - "id": "dc198068-c8d0-5795-b3dd-e53296955295", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.406626, - "y": 26.1521 - }, - "endPoint": { - "x": 326.40629, - "y": 26.157044 - } - } - }, - { - "id": "a5634f8b-74ac-5363-b205-d1853f754280", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.40629, - "y": 26.157044 - }, - "endPoint": { - "x": 326.406192, - "y": 26.162002 - } - } - }, - { - "id": "4474c7d9-ced2-5085-8ada-e7c5e2a7b219", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.406192, - "y": 26.162002 - }, - "endPoint": { - "x": 326.407896, - "y": 26.178841 - } - } - }, - { - "id": "5fce4732-a68e-5952-be11-0c0d08f5e3bf", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.407896, - "y": 26.178841 - }, - "endPoint": { - "x": 326.408817, - "y": 26.182924 - } - } - }, - { - "id": "f670ec7f-d855-5886-ba5d-9d9392602d58", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.408817, - "y": 26.182924 - }, - "endPoint": { - "x": 326.409936, - "y": 26.186956 - } - } - }, - { - "id": "3285803e-5410-5df2-88fe-0eb66d08f9e5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.409936, - "y": 26.186956 - }, - "endPoint": { - "x": 326.41125, - "y": 26.190928 - } - } - }, - { - "id": "aa2e9c59-7fe7-5215-a377-de786fe17977", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.41125, - "y": 26.190928 - }, - "endPoint": { - "x": 326.412757, - "y": 26.194833 - } - } - }, - { - "id": "10887c8f-ac1e-5f21-b86f-2e22b9fda7ea", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.412757, - "y": 26.194833 - }, - "endPoint": { - "x": 326.421005, - "y": 26.209139 - } - } - }, - { - "id": "33a09cf7-972f-577b-9b83-a318bc74ed86", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.421005, - "y": 26.209139 - }, - "endPoint": { - "x": 326.423988, - "y": 26.212815 - } - } - }, - { - "id": "84d2e44c-bb24-55d6-ad21-4330458f3910", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.423988, - "y": 26.212815 - }, - "endPoint": { - "x": 326.427172, - "y": 26.216313 - } - } - }, - { - "id": "c170d89e-56ac-5c92-b9fb-c2a22aa6ee03", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.427172, - "y": 26.216313 - }, - "endPoint": { - "x": 326.43055, - "y": 26.219624 - } - } - }, - { - "id": "3dbca317-86ff-5499-9a91-baf5986b7e37", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.43055, - "y": 26.219624 - }, - "endPoint": { - "x": 326.434113, - "y": 26.22274 - } - } - }, - { - "id": "b9ba6a4f-6036-5ed6-a1e7-198e301bd676", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.434113, - "y": 26.22274 - }, - "endPoint": { - "x": 326.453601, - "y": 26.23486 - } - } - }, - { - "id": "b245b049-adbf-5f6c-8150-aa19660b8d2c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.453601, - "y": 26.23486 - }, - "endPoint": { - "x": 326.456812, - "y": 26.23609 - } - } - }, - { - "id": "a6d34011-8cc4-5c35-9e06-9537ecd000a6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.456812, - "y": 26.23609 - }, - "endPoint": { - "x": 326.460131, - "y": 26.236946 - } - } - }, - { - "id": "83a8b925-3aa2-52e7-a41c-e15190f8bfff", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.460131, - "y": 26.236946 - }, - "endPoint": { - "x": 326.463525, - "y": 26.237423 - } - } - }, - { - "id": "be73cdb6-c0ed-5a9e-918b-2fa673f582b8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.463525, - "y": 26.237423 - }, - "endPoint": { - "x": 326.466962, - "y": 26.237512 - } - } - }, - { - "id": "6443aeaa-e0dc-57e6-9ef7-f3439aedaf71", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.466962, - "y": 26.237512 - }, - "endPoint": { - "x": 326.480052, - "y": 26.236625 - } - } - }, - { - "id": "77f204b3-10d5-5e23-bdea-29dfbc8b7523", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.480052, - "y": 26.236625 - }, - "endPoint": { - "x": 326.484592, - "y": 26.236117 - } - } - }, - { - "id": "9062cec1-a28d-560b-a986-6b4ad2d59d1a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.484592, - "y": 26.236117 - }, - "endPoint": { - "x": 326.489126, - "y": 26.235548 - } - } - }, - { - "id": "48062808-62a6-5086-b3d5-138174eb5237", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.489126, - "y": 26.235548 - }, - "endPoint": { - "x": 326.493651, - "y": 26.234919 - } - } - }, - { - "id": "81f4e980-49de-5fa0-81f2-d59ef900e299", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.493651, - "y": 26.234919 - }, - "endPoint": { - "x": 326.498167, - "y": 26.23423 - } - } - }, - { - "id": "3bf18bef-df0c-59ba-8c53-8e5fbd8e2d54", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.498167, - "y": 26.23423 - }, - "endPoint": { - "x": 326.52364, - "y": 26.229655 - } - } - }, - { - "id": "1e700d95-ecbc-571d-a19a-a28821fc1795", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.52364, - "y": 26.229655 - }, - "endPoint": { - "x": 326.525508, - "y": 26.22925 - } - } - }, - { - "id": "a32fb366-b6e0-50ef-bf35-f318f5f1f7c1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.525508, - "y": 26.22925 - }, - "endPoint": { - "x": 326.527361, - "y": 26.228782 - } - } - }, - { - "id": "26b0adeb-adcd-5533-9b47-ee3a9b2bd35b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.527361, - "y": 26.228782 - }, - "endPoint": { - "x": 326.529198, - "y": 26.228254 - } - } - }, - { - "id": "12c8209a-153c-5102-bdb1-d5de35571f62", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.529198, - "y": 26.228254 - }, - "endPoint": { - "x": 326.531016, - "y": 26.227664 - } - } - }, - { - "id": "7cbf5ff5-dc06-55cf-8fe7-43970def0e23", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.531016, - "y": 26.227664 - }, - "endPoint": { - "x": 326.540111, - "y": 26.222457 - } - } - }, - { - "id": "c9a32260-5b3d-51d9-9048-77a58495d7b3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.540111, - "y": 26.222457 - }, - "endPoint": { - "x": 326.542967, - "y": 26.220166 - } - } - }, - { - "id": "05248926-2174-5d55-9b31-aa3feb535bdf", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.542967, - "y": 26.220166 - }, - "endPoint": { - "x": 326.545968, - "y": 26.218077 - } - } - }, - { - "id": "dc74ea25-7085-517f-8319-71ad8003de52", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.545968, - "y": 26.218077 - }, - "endPoint": { - "x": 326.549105, - "y": 26.216197 - } - } - }, - { - "id": "54cf28a5-06c4-5382-b728-9d78fefb03cf", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.549105, - "y": 26.216197 - }, - "endPoint": { - "x": 326.552366, - "y": 26.214533 - } - } - }, - { - "id": "5fcd240d-4da3-5603-ae14-3bd750fde7ef", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.552366, - "y": 26.214533 - }, - "endPoint": { - "x": 326.569946, - "y": 26.207272 - } - } - }, - { - "id": "0a1a4984-2aa6-5c2a-96f1-14809f46d306", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.569946, - "y": 26.207272 - }, - "endPoint": { - "x": 326.575765, - "y": 26.205236 - } - } - }, - { - "id": "47a9c4de-c560-5d76-9bf8-16b3aa62ece6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.575765, - "y": 26.205236 - }, - "endPoint": { - "x": 326.58162, - "y": 26.203305 - } - } - }, - { - "id": "0663f1f4-dde9-5d0a-a3ae-0aac1c91a143", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.58162, - "y": 26.203305 - }, - "endPoint": { - "x": 326.587508, - "y": 26.201478 - } - } - }, - { - "id": "8625bbeb-412b-5219-99d9-dac5abdc855c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.587508, - "y": 26.201478 - }, - "endPoint": { - "x": 326.593428, - "y": 26.199757 - } - } - }, - { - "id": "2cf51311-82ae-53d8-95e0-5eabbb506c47", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.593428, - "y": 26.199757 - }, - "endPoint": { - "x": 326.634572, - "y": 26.190208 - } - } - }, - { - "id": "988ed812-edde-5148-864f-60ea7641d1e4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.634572, - "y": 26.190208 - }, - "endPoint": { - "x": 326.63985, - "y": 26.18936 - } - } - }, - { - "id": "b6b8968c-0ac6-514c-a560-1f2fb5a34352", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.63985, - "y": 26.18936 - }, - "endPoint": { - "x": 326.645158, - "y": 26.188754 - } - } - }, - { - "id": "3ee10e80-7a4d-533c-84b5-82d8616120eb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.645158, - "y": 26.188754 - }, - "endPoint": { - "x": 326.650489, - "y": 26.188389 - } - } - }, - { - "id": "c394876a-6e87-5981-b780-ba1afd74615a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.650489, - "y": 26.188389 - }, - "endPoint": { - "x": 326.655834, - "y": 26.188267 - } - } - }, - { - "id": "e7643c4c-89fa-528c-9ea3-df82a20c58f0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.655834, - "y": 26.188267 - }, - "endPoint": { - "x": 326.729745, - "y": 26.188267 - } - } - }, - { - "id": "8f6c351a-8323-538e-92eb-cc037ce5a274", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.729745, - "y": 26.188267 - }, - "endPoint": { - "x": 326.818434, - "y": 26.188267 - } - } - }, - { - "id": "d6d70be8-1102-5673-98b6-c52512853ecf", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.818434, - "y": 26.188267 - }, - "endPoint": { - "x": 326.851452, - "y": 26.189074 - } - } - }, - { - "id": "69b4a663-cfec-5bc1-be83-d595177bb2d1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.851452, - "y": 26.189074 - }, - "endPoint": { - "x": 326.868239, - "y": 26.189844 - } - } - }, - { - "id": "8c34f604-4b93-5199-9b6b-5c57b7cad1ca", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.868239, - "y": 26.189844 - }, - "endPoint": { - "x": 326.88503, - "y": 26.190514 - } - } - }, - { - "id": "831defee-a7bd-53e9-925c-d7cb168fca5a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.88503, - "y": 26.190514 - }, - "endPoint": { - "x": 326.901825, - "y": 26.191082 - } - } - }, - { - "id": "1fd9e940-befd-5c73-868d-d1a40b9a665c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.901825, - "y": 26.191082 - }, - "endPoint": { - "x": 326.918623, - "y": 26.19155 - } - } - }, - { - "id": "2601c2f0-93f2-519b-acca-706cb62c157b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.918623, - "y": 26.19155 - }, - "endPoint": { - "x": 326.942587, - "y": 26.191848 - } - } - }, - { - "id": "56434873-f50e-51d7-9a6d-0998cf0f0996", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.942587, - "y": 26.191848 - }, - "endPoint": { - "x": 326.948914, - "y": 26.191829 - } - } - }, - { - "id": "7fb2cc60-3c87-5e75-9121-adef71455b86", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.948914, - "y": 26.191829 - }, - "endPoint": { - "x": 326.955241, - "y": 26.191774 - } - } - }, - { - "id": "66822fdd-cf49-51b0-a413-319ea633dbb7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.955241, - "y": 26.191774 - }, - "endPoint": { - "x": 326.961567, - "y": 26.191681 - } - } - }, - { - "id": "722738d6-70d9-5a0c-92d0-ad7c23d35f0d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.961567, - "y": 26.191681 - }, - "endPoint": { - "x": 326.967893, - "y": 26.19155 - } - } - }, - { - "id": "61e93811-8a92-5bf1-851c-24770721486d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.967893, - "y": 26.19155 - }, - "endPoint": { - "x": 326.980643, - "y": 26.190049 - } - } - }, - { - "id": "6316439c-8fc2-578b-bcf0-1cdb74e7d23d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.980643, - "y": 26.190049 - }, - "endPoint": { - "x": 326.983274, - "y": 26.189408 - } - } - }, - { - "id": "16c6fb62-2601-555a-90d3-50df0dc686c6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.983274, - "y": 26.189408 - }, - "endPoint": { - "x": 326.985863, - "y": 26.188623 - } - } - }, - { - "id": "125fe786-0db1-50d5-bca8-23970f5e2f34", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.985863, - "y": 26.188623 - }, - "endPoint": { - "x": 326.988404, - "y": 26.187695 - } - } - }, - { - "id": "ceb2fd86-58ec-5241-85eb-005356f73f69", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.988404, - "y": 26.187695 - }, - "endPoint": { - "x": 326.990891, - "y": 26.186626 - } - } - }, - { - "id": "005ad105-2bd9-51f9-b5aa-8b490ad1b8a2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.990891, - "y": 26.186626 - }, - "endPoint": { - "x": 326.999019, - "y": 26.180952 - } - } - }, - { - "id": "9800f5af-5d40-514c-a4fd-f6778db31434", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.999019, - "y": 26.180952 - }, - "endPoint": { - "x": 327.003389, - "y": 26.176431 - } - } - }, - { - "id": "25746938-6d2c-527e-a24f-df08803665f5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.003389, - "y": 26.176431 - }, - "endPoint": { - "x": 327.007599, - "y": 26.171762 - } - } - }, - { - "id": "32245b53-bae6-5bf0-8677-828989db707d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.007599, - "y": 26.171762 - }, - "endPoint": { - "x": 327.011646, - "y": 26.166951 - } - } - }, - { - "id": "d74ad148-4412-58bb-aad9-5b2febc03a83", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.011646, - "y": 26.166951 - }, - "endPoint": { - "x": 327.015526, - "y": 26.162002 - } - } - }, - { - "id": "f6233920-7bd2-533b-9d44-6001862d28bd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.015526, - "y": 26.162002 - }, - "endPoint": { - "x": 327.031418, - "y": 26.139049 - } - } - }, - { - "id": "16d0e884-cb5a-5b57-975a-2a811438dc47", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.031418, - "y": 26.139049 - }, - "endPoint": { - "x": 327.03257, - "y": 26.137087 - } - } - }, - { - "id": "59deb75a-c907-51e5-ab59-b89a1023488a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.03257, - "y": 26.137087 - }, - "endPoint": { - "x": 327.033593, - "y": 26.135056 - } - } - }, - { - "id": "5e1ea6ee-79a4-5b61-b34b-0e0d6bd8c0a6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.033593, - "y": 26.135056 - }, - "endPoint": { - "x": 327.034481, - "y": 26.132964 - } - } - }, - { - "id": "3f46acfd-f204-5a36-8a0d-7a78394677c3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.034481, - "y": 26.132964 - }, - "endPoint": { - "x": 327.035233, - "y": 26.130816 - } - } - }, - { - "id": "60d91d91-502c-5a98-91db-a0a86ba1dbe8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.035233, - "y": 26.130816 - }, - "endPoint": { - "x": 327.03821, - "y": 26.120252 - } - } - }, - { - "id": "e7148151-417d-520e-9072-19598143eedc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.03821, - "y": 26.120252 - }, - "endPoint": { - "x": 327.038757, - "y": 26.117981 - } - } - }, - { - "id": "3f0dbe71-ad3d-57a3-a958-d695ca64b2c6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.038757, - "y": 26.117981 - }, - "endPoint": { - "x": 327.039265, - "y": 26.115701 - } - } - }, - { - "id": "b578ea41-b16f-5577-ae75-727b772fb3d2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.039265, - "y": 26.115701 - }, - "endPoint": { - "x": 327.039733, - "y": 26.113412 - } - } - }, - { - "id": "93fc4df6-a387-54af-9e7a-b108530d747b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.039733, - "y": 26.113412 - }, - "endPoint": { - "x": 327.040161, - "y": 26.111116 - } - } - }, - { - "id": "08d855e8-d8f3-57b1-b3ef-3f23e89e7e59", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.040161, - "y": 26.111116 - }, - "endPoint": { - "x": 327.04263, - "y": 26.096215 - } - } - }, - { - "id": "0078e5af-b9dc-5754-9ef0-6e35e0e32bbc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.04263, - "y": 26.096215 - }, - "endPoint": { - "x": 327.042867, - "y": 26.09461 - } - } - }, - { - "id": "921a57e3-64ae-50ec-8df5-c8d43407b204", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.042867, - "y": 26.09461 - }, - "endPoint": { - "x": 327.043081, - "y": 26.093002 - } - } - }, - { - "id": "426e1514-ffe7-5527-ad34-182b8c05d057", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.043081, - "y": 26.093002 - }, - "endPoint": { - "x": 327.043275, - "y": 26.091391 - } - } - }, - { - "id": "f11dcf26-404c-536f-945f-90a5b72be8de", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.043275, - "y": 26.091391 - }, - "endPoint": { - "x": 327.043447, - "y": 26.089778 - } - } - }, - { - "id": "65e8685b-9c93-5dda-9dcf-1ac86cb25a7c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.043447, - "y": 26.089778 - }, - "endPoint": { - "x": 327.043945, - "y": 26.083363 - } - } - }, - { - "id": "0155b50f-8507-5fa5-a595-3aa72cb4411c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.043945, - "y": 26.083363 - }, - "endPoint": { - "x": 327.044257, - "y": 26.077581 - } - } - }, - { - "id": "a8e3cd1d-1f38-5340-9050-c4a950f06337", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.044257, - "y": 26.077581 - }, - "endPoint": { - "x": 327.044552, - "y": 26.071798 - } - } - }, - { - "id": "adae541a-39a6-5c08-8c44-aa6ec608f25b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.044552, - "y": 26.071798 - }, - "endPoint": { - "x": 327.04483, - "y": 26.066014 - } - } - }, - { - "id": "9b7f7cb8-41ce-567e-ae8b-9aeee9bbb915", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.04483, - "y": 26.066014 - }, - "endPoint": { - "x": 327.045089, - "y": 26.060229 - } - } - }, - { - "id": "90199b50-ad4d-5715-aacf-07869de5777b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.045089, - "y": 26.060229 - }, - "endPoint": { - "x": 327.045453, - "y": 26.04347 - } - } - }, - { - "id": "3c059f45-d81b-5ded-9c36-7d86e1b0053f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.045453, - "y": 26.04347 - }, - "endPoint": { - "x": 327.04543, - "y": 26.041502 - } - } - }, - { - "id": "95264b80-e7d4-51da-a8b9-4df7a4d86e92", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.04543, - "y": 26.041502 - }, - "endPoint": { - "x": 327.045362, - "y": 26.039535 - } - } - }, - { - "id": "2b1434ba-a94d-57e8-be91-f84606d62d51", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.045362, - "y": 26.039535 - }, - "endPoint": { - "x": 327.045248, - "y": 26.03757 - } - } - }, - { - "id": "cf1174d4-cf12-52b5-8292-48d11d66b80a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.045248, - "y": 26.03757 - }, - "endPoint": { - "x": 327.045089, - "y": 26.035608 - } - } - }, - { - "id": "d0791945-b11e-5b98-b877-74becb7db8c8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.045089, - "y": 26.035608 - }, - "endPoint": { - "x": 327.043305, - "y": 26.028889 - } - } - }, - { - "id": "a79d0cde-a2ca-5d26-8cd7-71ec25f8d129", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.043305, - "y": 26.028889 - }, - "endPoint": { - "x": 327.041888, - "y": 26.02595 - } - } - }, - { - "id": "2080555c-604b-5577-a1a5-955d996dac8b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.041888, - "y": 26.02595 - }, - "endPoint": { - "x": 327.040342, - "y": 26.023078 - } - } - }, - { - "id": "5fbf4a6f-2c0a-5fb5-8581-c79ef103ad01", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.040342, - "y": 26.023078 - }, - "endPoint": { - "x": 327.038671, - "y": 26.020278 - } - } - }, - { - "id": "5f39d30f-c360-514f-8f6a-8f9657660191", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.038671, - "y": 26.020278 - }, - "endPoint": { - "x": 327.036876, - "y": 26.017553 - } - } - }, - { - "id": "d9e40270-8498-5a58-8dcf-a4136ca7fb25", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.036876, - "y": 26.017553 - }, - "endPoint": { - "x": 327.027111, - "y": 26.005338 - } - } - }, - { - "id": "e6faacce-d30a-59b7-b423-5eb7dc3510ad", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.027111, - "y": 26.005338 - }, - "endPoint": { - "x": 327.024468, - "y": 26.002364 - } - } - }, - { - "id": "a08508f1-85ae-5f4c-851c-c9b1e4c487b2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.024468, - "y": 26.002364 - }, - "endPoint": { - "x": 327.021928, - "y": 25.999303 - } - } - }, - { - "id": "43608a21-c8d7-5080-9dfe-d4e0832fc67c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.021928, - "y": 25.999303 - }, - "endPoint": { - "x": 327.019494, - "y": 25.996157 - } - } - }, - { - "id": "a9a964ed-6341-595b-877d-644625ca7e2d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.019494, - "y": 25.996157 - }, - "endPoint": { - "x": 327.017169, - "y": 25.992929 - } - } - }, - { - "id": "62367cc6-2439-52bc-b689-f43cf2d59daf", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.017169, - "y": 25.992929 - }, - "endPoint": { - "x": 327.006845, - "y": 25.97749 - } - } - }, - { - "id": "2d844208-d164-568e-8be8-0b3da93f6c1e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.006845, - "y": 25.97749 - }, - "endPoint": { - "x": 327.005677, - "y": 25.975637 - } - } - }, - { - "id": "856f28a0-0bda-5045-964b-8688bdffc3a7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.005677, - "y": 25.975637 - }, - "endPoint": { - "x": 327.004544, - "y": 25.973762 - } - } - }, - { - "id": "cd7f1266-3359-5cdc-ab60-b8dea25be922", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.004544, - "y": 25.973762 - }, - "endPoint": { - "x": 327.003446, - "y": 25.971866 - } - } - }, - { - "id": "c5886ff0-26b9-557c-9c14-27882920130e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.003446, - "y": 25.971866 - }, - "endPoint": { - "x": 327.002384, - "y": 25.969949 - } - } - }, - { - "id": "12a3216b-0952-5905-8670-e86480863da0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.002384, - "y": 25.969949 - }, - "endPoint": { - "x": 326.995079, - "y": 25.953764 - } - } - }, - { - "id": "05fd2071-7ef5-532d-8179-2f5083a4a1c6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.995079, - "y": 25.953764 - }, - "endPoint": { - "x": 326.993432, - "y": 25.949505 - } - } - }, - { - "id": "527e98a8-5de9-532b-a0a9-f7c923fcd509", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.993432, - "y": 25.949505 - }, - "endPoint": { - "x": 326.991637, - "y": 25.945309 - } - } - }, - { - "id": "8c8abe04-23b5-55f6-800d-c11a8a6806b3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.991637, - "y": 25.945309 - }, - "endPoint": { - "x": 326.989694, - "y": 25.941179 - } - } - }, - { - "id": "465cdbc7-e92d-52e6-a562-bdbc2c5b56cf", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.989694, - "y": 25.941179 - }, - "endPoint": { - "x": 326.987606, - "y": 25.937118 - } - } - }, - { - "id": "e754d872-96e5-540a-aa08-9c47f17ea992", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.987606, - "y": 25.937118 - }, - "endPoint": { - "x": 326.983806, - "y": 25.930099 - } - } - }, - { - "id": "0a47d3aa-531f-5764-b33a-b90792b64716", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.983806, - "y": 25.930099 - }, - "endPoint": { - "x": 326.979832, - "y": 25.922823 - } - } - }, - { - "id": "4c9d77d3-e5fc-5df4-95ff-252a59d48f75", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.979832, - "y": 25.922823 - }, - "endPoint": { - "x": 326.975855, - "y": 25.915548 - } - } - }, - { - "id": "797619b0-3e4f-5ac6-8dfc-c7fdc199ab30", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.975855, - "y": 25.915548 - }, - "endPoint": { - "x": 326.971876, - "y": 25.908276 - } - } - }, - { - "id": "6ae32e01-9b35-59e4-b6eb-352931687192", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.971876, - "y": 25.908276 - }, - "endPoint": { - "x": 326.967893, - "y": 25.901005 - } - } - }, - { - "id": "779b38f2-fc8e-559b-9c86-da40efdec4b1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.967893, - "y": 25.901005 - }, - "endPoint": { - "x": 326.949591, - "y": 25.868742 - } - } - }, - { - "id": "4a3797bc-fc12-5e69-bb8f-67a90a75111f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.949591, - "y": 25.868742 - }, - "endPoint": { - "x": 326.946686, - "y": 25.863725 - } - } - }, - { - "id": "5e4e9a78-4d72-5f0e-bb46-b201cf2800ba", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.946686, - "y": 25.863725 - }, - "endPoint": { - "x": 326.943841, - "y": 25.858676 - } - } - }, - { - "id": "0d4f5816-5d73-5d3e-bd76-d77b0203d368", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.943841, - "y": 25.858676 - }, - "endPoint": { - "x": 326.941056, - "y": 25.853592 - } - } - }, - { - "id": "d9f0c197-6ab4-580e-bf3e-e99223492c05", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.941056, - "y": 25.853592 - }, - "endPoint": { - "x": 326.93833, - "y": 25.848477 - } - } - }, - { - "id": "8e694875-89a0-57ec-a9ef-1c8e6a343c13", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.93833, - "y": 25.848477 - }, - "endPoint": { - "x": 326.934712, - "y": 25.837495 - } - } - }, - { - "id": "a7446007-c81c-59f4-98ca-e985539c3cd4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.934712, - "y": 25.837495 - }, - "endPoint": { - "x": 326.934435, - "y": 25.834902 - } - } - }, - { - "id": "8838b464-ae98-5d1a-a307-a48340668570", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.934435, - "y": 25.834902 - }, - "endPoint": { - "x": 326.934398, - "y": 25.832301 - } - } - }, - { - "id": "d4e295f0-5bf5-550f-8f2e-6a434b6f93ba", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.934398, - "y": 25.832301 - }, - "endPoint": { - "x": 326.934601, - "y": 25.829708 - } - } - }, - { - "id": "1889adce-b84c-5506-a4b3-2b54882ac21a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.934601, - "y": 25.829708 - }, - "endPoint": { - "x": 326.935044, - "y": 25.827139 - } - } - }, - { - "id": "82f389ba-fd7a-547f-86f8-d523c4f81e36", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.935044, - "y": 25.827139 - }, - "endPoint": { - "x": 326.93646, - "y": 25.821397 - } - } - }, - { - "id": "55688e3e-9806-56d9-8ec7-fee18c6c2608", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.93646, - "y": 25.821397 - }, - "endPoint": { - "x": 326.937311, - "y": 25.81831 - } - } - }, - { - "id": "3e27c4aa-afc5-55c8-bee5-a82db3dfe89b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.937311, - "y": 25.81831 - }, - "endPoint": { - "x": 326.938181, - "y": 25.815229 - } - } - }, - { - "id": "5ade7679-82ca-5d4a-a961-683fa723c8b7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.938181, - "y": 25.815229 - }, - "endPoint": { - "x": 326.939068, - "y": 25.812152 - } - } - }, - { - "id": "0730e727-0c47-50e3-8ddf-29d8022201de", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.939068, - "y": 25.812152 - }, - "endPoint": { - "x": 326.939972, - "y": 25.80908 - } - } - }, - { - "id": "36fad7af-9310-5589-b279-2f41f434d13b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.939972, - "y": 25.80908 - }, - "endPoint": { - "x": 326.945221, - "y": 25.792445 - } - } - }, - { - "id": "6aeb1039-8846-5bb1-8a30-3d4d0d4362f8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.945221, - "y": 25.792445 - }, - "endPoint": { - "x": 326.945502, - "y": 25.791659 - } - } - }, - { - "id": "ecf2c491-9bdf-52ac-9507-04954fce88c9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.945502, - "y": 25.791659 - }, - "endPoint": { - "x": 326.945817, - "y": 25.790886 - } - } - }, - { - "id": "3ad63c47-b388-5703-b54c-1f8ebc9792e5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.945817, - "y": 25.790886 - }, - "endPoint": { - "x": 326.946164, - "y": 25.790127 - } - } - }, - { - "id": "050a7d65-bab5-54b4-b581-ebd1e2765984", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.946164, - "y": 25.790127 - }, - "endPoint": { - "x": 326.946543, - "y": 25.789384 - } - } - }, - { - "id": "a6113e1b-05bb-5dc1-9cd9-fbe7c0dfee3c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.946543, - "y": 25.789384 - }, - "endPoint": { - "x": 326.949521, - "y": 25.785739 - } - } - }, - { - "id": "af314444-af4f-5ec5-9c0c-52f972f9b06c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.949521, - "y": 25.785739 - }, - "endPoint": { - "x": 326.9536, - "y": 25.782413 - } - } - }, - { - "id": "109036b6-222c-547a-b29b-d712c5e3c6cf", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.9536, - "y": 25.782413 - }, - "endPoint": { - "x": 326.95775, - "y": 25.779176 - } - } - }, - { - "id": "17046917-6895-568e-aee1-b72481db167c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.95775, - "y": 25.779176 - }, - "endPoint": { - "x": 326.961967, - "y": 25.776028 - } - } - }, - { - "id": "dba06f8c-d343-5f61-8d43-c460d8e8e7ae", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.961967, - "y": 25.776028 - }, - "endPoint": { - "x": 326.96625, - "y": 25.77297 - } - } - }, - { - "id": "0545b3b8-f1f1-5ab2-965a-8f62d388da92", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.96625, - "y": 25.77297 - }, - "endPoint": { - "x": 326.987177, - "y": 25.758571 - } - } - }, - { - "id": "460b1b63-9b8f-520e-9734-612c6c6faf1c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.987177, - "y": 25.758571 - }, - "endPoint": { - "x": 326.993425, - "y": 25.754347 - } - } - }, - { - "id": "b7b7a30b-2bca-5611-b675-e2573ee29317", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.993425, - "y": 25.754347 - }, - "endPoint": { - "x": 326.999685, - "y": 25.75014 - } - } - }, - { - "id": "713d6852-efbb-52c1-8db2-76e80a79f7af", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.999685, - "y": 25.75014 - }, - "endPoint": { - "x": 327.005957, - "y": 25.745951 - } - } - }, - { - "id": "30757799-a892-5caf-9264-b5dccc93169b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.005957, - "y": 25.745951 - }, - "endPoint": { - "x": 327.012241, - "y": 25.74178 - } - } - }, - { - "id": "24a861ce-0ad6-5a77-85fa-21914b4306d0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.012241, - "y": 25.74178 - }, - "endPoint": { - "x": 327.043386, - "y": 25.721772 - } - } - }, - { - "id": "d012b269-090d-5f1e-9bd9-504a8a6ae068", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.043386, - "y": 25.721772 - }, - "endPoint": { - "x": 327.046397, - "y": 25.719932 - } - } - }, - { - "id": "1434afa7-c653-5530-8010-c149b9a68dbd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.046397, - "y": 25.719932 - }, - "endPoint": { - "x": 327.049441, - "y": 25.718146 - } - } - }, - { - "id": "24424e9c-6287-594f-94bb-41dfe7f4f15b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.049441, - "y": 25.718146 - }, - "endPoint": { - "x": 327.052515, - "y": 25.716414 - } - } - }, - { - "id": "f3f466fe-200b-5ca8-975c-19f3495b6e1d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.052515, - "y": 25.716414 - }, - "endPoint": { - "x": 327.05562, - "y": 25.714738 - } - } - }, - { - "id": "7fa36945-f769-5a53-ad57-3a97c9c4483b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.05562, - "y": 25.714738 - }, - "endPoint": { - "x": 327.094536, - "y": 25.700516 - } - } - }, - { - "id": "761b1278-8e3f-5068-9f93-c501f3889603", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.094536, - "y": 25.700516 - }, - "endPoint": { - "x": 327.117111, - "y": 25.695238 - } - } - }, - { - "id": "a6aab0a7-1d2c-5036-b7c1-67e6adfc8d11", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.117111, - "y": 25.695238 - }, - "endPoint": { - "x": 327.139511, - "y": 25.68928 - } - } - }, - { - "id": "f10d540c-9e65-5c74-be2c-8d9069afcc93", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.139511, - "y": 25.68928 - }, - "endPoint": { - "x": 327.16172, - "y": 25.682646 - } - } - }, - { - "id": "b27c0887-0857-5914-910f-37375da660a6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.16172, - "y": 25.682646 - }, - "endPoint": { - "x": 327.183723, - "y": 25.675341 - } - } - }, - { - "id": "68639e75-26a6-507c-a5b6-cdf39e54172e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.183723, - "y": 25.675341 - }, - "endPoint": { - "x": 327.295213, - "y": 25.636267 - } - } - }, - { - "id": "9e2e82c8-c83a-5b93-891e-a3bb9d87956b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.295213, - "y": 25.636267 - }, - "endPoint": { - "x": 327.315371, - "y": 25.629181 - } - } - }, - { - "id": "da7c63a7-d14f-5df8-ae32-98e26e7d939f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.315371, - "y": 25.629181 - }, - "endPoint": { - "x": 327.335536, - "y": 25.622115 - } - } - }, - { - "id": "9d860c11-7465-54b1-8053-4072ecfac51d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.335536, - "y": 25.622115 - }, - "endPoint": { - "x": 327.355708, - "y": 25.615068 - } - } - }, - { - "id": "51ba96b8-5c99-57c3-9f75-90b30a0031bc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.355708, - "y": 25.615068 - }, - "endPoint": { - "x": 327.375887, - "y": 25.608041 - } - } - }, - { - "id": "0516a5d8-e356-5cf7-972a-27c4aa0eabdb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.375887, - "y": 25.608041 - }, - "endPoint": { - "x": 327.486455, - "y": 25.570349 - } - } - }, - { - "id": "7112793f-a7fa-5bf0-ab06-fe2518cf7553", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.486455, - "y": 25.570349 - }, - "endPoint": { - "x": 327.495811, - "y": 25.567176 - } - } - }, - { - "id": "8ecc0eea-03f4-5f1f-8f6c-cf4021dc6e97", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.495811, - "y": 25.567176 - }, - "endPoint": { - "x": 327.505138, - "y": 25.563919 - } - } - }, - { - "id": "cb2fd0c7-ad62-5f4c-94b8-bdd0876996b7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.505138, - "y": 25.563919 - }, - "endPoint": { - "x": 327.514436, - "y": 25.560579 - } - } - }, - { - "id": "69bc2545-60e5-5697-84cd-d4ed971f7b04", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.514436, - "y": 25.560579 - }, - "endPoint": { - "x": 327.523703, - "y": 25.557154 - } - } - }, - { - "id": "9f3de707-226b-51d2-b8d5-64ab18806e9e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.523703, - "y": 25.557154 - }, - "endPoint": { - "x": 327.529504, - "y": 25.554843 - } - } - }, - { - "id": "e3375aba-1cde-58da-b8f2-aa63384224e7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.529504, - "y": 25.554843 - }, - "endPoint": { - "x": 327.560091, - "y": 25.541901 - } - } - }, - { - "id": "b0d108b1-77dc-592a-b669-d89460b94a3e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.560091, - "y": 25.541901 - }, - "endPoint": { - "x": 327.590671, - "y": 25.528944 - } - } - }, - { - "id": "7abc9186-3d1d-56e0-8469-ae467176653e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.590671, - "y": 25.528944 - }, - "endPoint": { - "x": 327.621245, - "y": 25.515972 - } - } - }, - { - "id": "5d7a2d42-b64e-5fbc-bbd7-f65809508fc1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.621245, - "y": 25.515972 - }, - "endPoint": { - "x": 327.651812, - "y": 25.502985 - } - } - }, - { - "id": "2a32b646-23d6-5ee1-8773-34c8e00a9a12", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.651812, - "y": 25.502985 - }, - "endPoint": { - "x": 327.733869, - "y": 25.467745 - } - } - }, - { - "id": "9ac6edf5-37f8-550d-8892-414a34f13edc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.733869, - "y": 25.467745 - }, - "endPoint": { - "x": 327.737376, - "y": 25.466201 - } - } - }, - { - "id": "f4abcc50-f1d8-54fa-8f9f-e016077c6c28", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.737376, - "y": 25.466201 - }, - "endPoint": { - "x": 327.740867, - "y": 25.464619 - } - } - }, - { - "id": "f2eb0230-a2d3-5931-ba42-c8a16e01f3f4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.740867, - "y": 25.464619 - }, - "endPoint": { - "x": 327.744341, - "y": 25.463001 - } - } - }, - { - "id": "bf748661-0157-5953-a38f-89c0195eab30", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.744341, - "y": 25.463001 - }, - "endPoint": { - "x": 327.747797, - "y": 25.461346 - } - } - }, - { - "id": "0eba0bed-507b-590c-99e3-3fae3b678e30", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.747797, - "y": 25.461346 - }, - "endPoint": { - "x": 327.759077, - "y": 25.452053 - } - } - }, - { - "id": "81cb4fa9-0cf5-576a-b1cf-823068e04d4c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.759077, - "y": 25.452053 - }, - "endPoint": { - "x": 327.763179, - "y": 25.446955 - } - } - }, - { - "id": "dd002bc7-825a-59d1-8d20-987ab0bb6a10", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.763179, - "y": 25.446955 - }, - "endPoint": { - "x": 327.767604, - "y": 25.442144 - } - } - }, - { - "id": "f18511c6-f9bf-5721-aefc-f455601fcc7c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.767604, - "y": 25.442144 - }, - "endPoint": { - "x": 327.772336, - "y": 25.437634 - } - } - }, - { - "id": "53a69e95-86e1-5a55-a33d-045a5b4ac6c6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.772336, - "y": 25.437634 - }, - "endPoint": { - "x": 327.777361, - "y": 25.433442 - } - } - }, - { - "id": "34ebb058-1c0d-5315-afdd-44ad7d59a6a9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.777361, - "y": 25.433442 - }, - "endPoint": { - "x": 327.796393, - "y": 25.42149 - } - } - }, - { - "id": "b5c79dd8-c511-5dac-be04-6597c9485184", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.796393, - "y": 25.42149 - }, - "endPoint": { - "x": 327.799274, - "y": 25.419906 - } - } - }, - { - "id": "0b5ddb8d-eaa8-520c-8617-5982dfab6965", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.799274, - "y": 25.419906 - }, - "endPoint": { - "x": 327.801999, - "y": 25.418079 - } - } - }, - { - "id": "44129c2f-8090-5058-b4ed-bfe04b4ebb5a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.801999, - "y": 25.418079 - }, - "endPoint": { - "x": 327.804554, - "y": 25.416021 - } - } - }, - { - "id": "cdf756a0-3f8f-5f68-88bd-b212e2c18e40", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.804554, - "y": 25.416021 - }, - "endPoint": { - "x": 327.806924, - "y": 25.413742 - } - } - }, - { - "id": "d2a1b71c-2445-58dc-9d9e-bf8b70e45a53", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.806924, - "y": 25.413742 - }, - "endPoint": { - "x": 327.818886, - "y": 25.399196 - } - } - }, - { - "id": "938b1d32-c8fd-53bd-a80e-1a4eaa78476b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.818886, - "y": 25.399196 - }, - "endPoint": { - "x": 327.823492, - "y": 25.392828 - } - } - }, - { - "id": "d1c94acb-ef8e-5672-a54b-ecf2b1a63116", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.823492, - "y": 25.392828 - }, - "endPoint": { - "x": 327.828236, - "y": 25.386562 - } - } - }, - { - "id": "bdd38969-1c99-5868-a722-58bfa0695c43", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.828236, - "y": 25.386562 - }, - "endPoint": { - "x": 327.833116, - "y": 25.380402 - } - } - }, - { - "id": "3c595018-964a-5a38-8065-d415f46e1b0c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.833116, - "y": 25.380402 - }, - "endPoint": { - "x": 327.83813, - "y": 25.374349 - } - } - }, - { - "id": "92b2409e-a030-555c-bfca-ce6984649b9c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.83813, - "y": 25.374349 - }, - "endPoint": { - "x": 327.855971, - "y": 25.354696 - } - } - }, - { - "id": "89c952c8-123e-5758-bc38-9373aad2ca1d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.855971, - "y": 25.354696 - }, - "endPoint": { - "x": 327.857394, - "y": 25.35315 - } - } - }, - { - "id": "5fb23ceb-85de-5e64-8733-ab2a6d9fa4a2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.857394, - "y": 25.35315 - }, - "endPoint": { - "x": 327.85873, - "y": 25.35153 - } - } - }, - { - "id": "cb99dc0d-ea76-58d5-9e2f-98ef71636e38", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.85873, - "y": 25.35153 - }, - "endPoint": { - "x": 327.859976, - "y": 25.34984 - } - } - }, - { - "id": "530bb197-671d-5ffa-b348-fba5a2822d7d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.859976, - "y": 25.34984 - }, - "endPoint": { - "x": 327.861128, - "y": 25.348083 - } - } - }, - { - "id": "dae3f6cc-371d-5505-a745-b981301dac56", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.861128, - "y": 25.348083 - }, - "endPoint": { - "x": 327.865448, - "y": 25.340296 - } - } - }, - { - "id": "91be995c-305c-588a-ad19-1596bd3a0128", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.865448, - "y": 25.340296 - }, - "endPoint": { - "x": 327.867172, - "y": 25.336872 - } - } - }, - { - "id": "fa2a94ee-6fa7-570b-ad9c-50438245836d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.867172, - "y": 25.336872 - }, - "endPoint": { - "x": 327.868942, - "y": 25.333472 - } - } - }, - { - "id": "f00e98c0-2a73-5309-a23a-ada769f3a576", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.868942, - "y": 25.333472 - }, - "endPoint": { - "x": 327.870759, - "y": 25.330096 - } - } - }, - { - "id": "cd357d88-50bd-5d14-ab85-e14de5fa09c9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.870759, - "y": 25.330096 - }, - "endPoint": { - "x": 327.872621, - "y": 25.326745 - } - } - }, - { - "id": "c1847754-c59b-5c8b-bcb5-3124162d64b6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.872621, - "y": 25.326745 - }, - "endPoint": { - "x": 327.879462, - "y": 25.314789 - } - } - }, - { - "id": "d6558cbb-6c55-5cc4-a0c0-4dfbc753492a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.879462, - "y": 25.314789 - }, - "endPoint": { - "x": 327.88105, - "y": 25.31204 - } - } - }, - { - "id": "3917947d-9282-5da6-888f-a949010b599b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.88105, - "y": 25.31204 - }, - "endPoint": { - "x": 327.882629, - "y": 25.309285 - } - } - }, - { - "id": "4e952a78-f861-53ec-bb25-111c9b29c846", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.882629, - "y": 25.309285 - }, - "endPoint": { - "x": 327.8842, - "y": 25.306526 - } - } - }, - { - "id": "0850cf80-cd1c-5dfe-92ff-3ccef6a6f4d8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.8842, - "y": 25.306526 - }, - "endPoint": { - "x": 327.885763, - "y": 25.303763 - } - } - }, - { - "id": "f780b25a-0a1a-58df-844c-c95ae1ff8738", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.885763, - "y": 25.303763 - }, - "endPoint": { - "x": 327.895293, - "y": 25.285827 - } - } - }, - { - "id": "0033be04-5bb1-5931-8c54-6085d2af2459", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.895293, - "y": 25.285827 - }, - "endPoint": { - "x": 327.895871, - "y": 25.284601 - } - } - }, - { - "id": "ec37e040-4626-5e95-8fea-29f5113483b0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.895871, - "y": 25.284601 - }, - "endPoint": { - "x": 327.896391, - "y": 25.28335 - } - } - }, - { - "id": "22a5f111-1a58-5ce9-a04a-a459196ac91d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.896391, - "y": 25.28335 - }, - "endPoint": { - "x": 327.896853, - "y": 25.282077 - } - } - }, - { - "id": "4e4bad3e-cc1e-5aef-93f0-4c6cd0f893af", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.896853, - "y": 25.282077 - }, - "endPoint": { - "x": 327.897256, - "y": 25.280783 - } - } - }, - { - "id": "27e70ed2-a1ad-55b7-8b14-8753a5837ebe", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.897256, - "y": 25.280783 - }, - "endPoint": { - "x": 327.898143, - "y": 25.277576 - } - } - }, - { - "id": "910b485e-6607-5000-b3a2-c211617ea206", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.898143, - "y": 25.277576 - }, - "endPoint": { - "x": 327.899569, - "y": 25.272223 - } - } - }, - { - "id": "8dd9880e-32f5-5949-9a1d-496ea78cf7ce", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.899569, - "y": 25.272223 - }, - "endPoint": { - "x": 327.900992, - "y": 25.266869 - } - } - }, - { - "id": "b286058b-4e40-5dbf-b1b3-8dd532da36ad", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.900992, - "y": 25.266869 - }, - "endPoint": { - "x": 327.902411, - "y": 25.261515 - } - } - }, - { - "id": "001141ed-fd3b-505f-9e47-d42950a58f08", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.902411, - "y": 25.261515 - }, - "endPoint": { - "x": 327.903827, - "y": 25.256159 - } - } - }, - { - "id": "39155611-8376-564a-ae68-dcc00a63bd46", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.903827, - "y": 25.256159 - }, - "endPoint": { - "x": 327.909725, - "y": 25.233692 - } - } - }, - { - "id": "3a7664a2-4087-5524-9ebf-17caec9ec823", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.909725, - "y": 25.233692 - }, - "endPoint": { - "x": 327.910721, - "y": 25.229871 - } - } - }, - { - "id": "8d4a0aa8-10c3-5c82-9492-7014cf48ee03", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.910721, - "y": 25.229871 - }, - "endPoint": { - "x": 327.911712, - "y": 25.22605 - } - } - }, - { - "id": "34f29140-ba02-5c98-b8b2-cd58721a725d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.911712, - "y": 25.22605 - }, - "endPoint": { - "x": 327.9127, - "y": 25.222227 - } - } - }, - { - "id": "a101bca7-8eb2-581b-9f1f-98c786c461cc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.9127, - "y": 25.222227 - }, - "endPoint": { - "x": 327.913683, - "y": 25.218404 - } - } - }, - { - "id": "d108f238-4122-5ea1-bb89-71e704d575b9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.913683, - "y": 25.218404 - }, - "endPoint": { - "x": 327.917465, - "y": 25.198245 - } - } - }, - { - "id": "e21b06be-50db-5bbd-8a55-c164d4659e80", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.917465, - "y": 25.198245 - }, - "endPoint": { - "x": 327.918005, - "y": 25.193042 - } - } - }, - { - "id": "d9cca815-a0ff-5f3b-a3f3-85cc856ac2cb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.918005, - "y": 25.193042 - }, - "endPoint": { - "x": 327.918376, - "y": 25.187826 - } - } - }, - { - "id": "22c13ef1-fa83-55fe-baf7-a11d28e28a46", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.918376, - "y": 25.187826 - }, - "endPoint": { - "x": 327.918578, - "y": 25.1826 - } - } - }, - { - "id": "43003a93-d76a-5be0-9c90-826f5a5a9fd6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.918578, - "y": 25.1826 - }, - "endPoint": { - "x": 327.918612, - "y": 25.177369 - } - } - }, - { - "id": "cc62e192-cf48-597d-b453-26d385b2f7c4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.918612, - "y": 25.177369 - }, - "endPoint": { - "x": 327.91797, - "y": 25.162476 - } - } - }, - { - "id": "a5ab7c1e-0cd0-52e6-8386-2a0aa31a87a9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.91797, - "y": 25.162476 - }, - "endPoint": { - "x": 327.917626, - "y": 25.157586 - } - } - }, - { - "id": "11d2023e-70b2-5ba8-97bb-31031a603157", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.917626, - "y": 25.157586 - }, - "endPoint": { - "x": 327.917345, - "y": 25.152693 - } - } - }, - { - "id": "731deafd-b2be-544d-af52-56d0e1ed352f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.917345, - "y": 25.152693 - }, - "endPoint": { - "x": 327.917126, - "y": 25.147796 - } - } - }, - { - "id": "b210b331-e08f-517e-bdce-56cbb1d1bedf", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.917126, - "y": 25.147796 - }, - "endPoint": { - "x": 327.916969, - "y": 25.142897 - } - } - }, - { - "id": "37a4834e-37cc-514b-890c-c9b8095e3494", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.916969, - "y": 25.142897 - }, - "endPoint": { - "x": 327.916959, - "y": 25.132647 - } - } - }, - { - "id": "d3c0fdc9-05a6-5977-9884-0fa1b871f332", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.916959, - "y": 25.132647 - }, - "endPoint": { - "x": 327.917009, - "y": 25.129874 - } - } - }, - { - "id": "7dc5f679-e7e9-5176-a01e-397552868201", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.917009, - "y": 25.129874 - }, - "endPoint": { - "x": 327.917027, - "y": 25.127101 - } - } - }, - { - "id": "33a0d42a-5f9a-54f7-9511-dc64bc45e4b9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.917027, - "y": 25.127101 - }, - "endPoint": { - "x": 327.917014, - "y": 25.124328 - } - } - }, - { - "id": "a9a4ab56-d56a-5bda-8fd5-1884a2796d18", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.917014, - "y": 25.124328 - }, - "endPoint": { - "x": 327.916969, - "y": 25.121555 - } - } - }, - { - "id": "1a20f5a5-281e-5f35-8db1-6a79dd1dc829", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.916969, - "y": 25.121555 - }, - "endPoint": { - "x": 327.915223, - "y": 25.111501 - } - } - }, - { - "id": "3f4924fc-2dff-5ecb-a58e-a2c741409201", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.915223, - "y": 25.111501 - }, - "endPoint": { - "x": 327.913869, - "y": 25.107746 - } - } - }, - { - "id": "fc465a07-85c9-527b-9232-1776a7dd0e36", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.913869, - "y": 25.107746 - }, - "endPoint": { - "x": 327.912338, - "y": 25.104063 - } - } - }, - { - "id": "092ac448-7514-5c5f-ab92-34bc40c585ae", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.912338, - "y": 25.104063 - }, - "endPoint": { - "x": 327.910633, - "y": 25.100457 - } - } - }, - { - "id": "becc4cc7-725d-5cb6-8e70-870ffa9a390b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.910633, - "y": 25.100457 - }, - "endPoint": { - "x": 327.908755, - "y": 25.096934 - } - } - }, - { - "id": "bf015963-40c3-535d-a4cf-8acbc9b695d3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.908755, - "y": 25.096934 - }, - "endPoint": { - "x": 327.898462, - "y": 25.084589 - } - } - }, - { - "id": "738a5bdd-f5e1-5b93-a59f-58edc79c4500", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.898462, - "y": 25.084589 - }, - "endPoint": { - "x": 327.896347, - "y": 25.083071 - } - } - }, - { - "id": "0943338e-8210-57b8-98d3-cd0b849da9e2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.896347, - "y": 25.083071 - }, - "endPoint": { - "x": 327.894049, - "y": 25.081876 - } - } - }, - { - "id": "1d5ca65e-4362-5d4e-a20f-7d04b840ad68", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.894049, - "y": 25.081876 - }, - "endPoint": { - "x": 327.891604, - "y": 25.08102 - } - } - }, - { - "id": "a080979d-3ad3-50e7-8364-e628643493d9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.891604, - "y": 25.08102 - }, - "endPoint": { - "x": 327.889048, - "y": 25.08052 - } - } - }, - { - "id": "aec4e3de-43c6-5e9f-8546-a34ac85bfb47", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.889048, - "y": 25.08052 - }, - "endPoint": { - "x": 327.875572, - "y": 25.079325 - } - } - }, - { - "id": "6d32c438-16c0-53d0-9cb7-d3068cd40d4b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.875572, - "y": 25.079325 - }, - "endPoint": { - "x": 327.871553, - "y": 25.07913 - } - } - }, - { - "id": "a8780526-703e-54f3-bdf6-130e691fa5fe", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.871553, - "y": 25.07913 - }, - "endPoint": { - "x": 327.867532, - "y": 25.078991 - } - } - }, - { - "id": "77d15a5b-8c77-5ad6-9f43-cb0877c1af81", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.867532, - "y": 25.078991 - }, - "endPoint": { - "x": 327.863509, - "y": 25.078907 - } - } - }, - { - "id": "b567d151-fac1-5de1-8d2e-31095d16f30d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.863509, - "y": 25.078907 - }, - "endPoint": { - "x": 327.859485, - "y": 25.078879 - } - } - }, - { - "id": "2808b603-b95a-5961-98f8-d5f666e6e163", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.859485, - "y": 25.078879 - }, - "endPoint": { - "x": 327.81678, - "y": 25.078879 - } - } - }, - { - "id": "cac93600-8438-5a77-b76d-f85b1a7f4b10", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.81678, - "y": 25.078879 - }, - "endPoint": { - "x": 327.769153, - "y": 25.078879 - } - } - }, - { - "id": "261b3427-812a-5161-b06c-972f0ae4249a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.769153, - "y": 25.078879 - }, - "endPoint": { - "x": 327.767374, - "y": 25.078931 - } - } - }, - { - "id": "7c4b108e-7efc-51e1-b712-d47b9c4e43bd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.767374, - "y": 25.078931 - }, - "endPoint": { - "x": 327.760837, - "y": 25.079319 - } - } - }, - { - "id": "c2cf109e-01e3-5e5c-8df3-143217cb8fb9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.760837, - "y": 25.079319 - }, - "endPoint": { - "x": 327.7543, - "y": 25.079713 - } - } - }, - { - "id": "e5f7ef8f-7729-534d-b1b8-163cb2744655", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.7543, - "y": 25.079713 - }, - "endPoint": { - "x": 327.747763, - "y": 25.080113 - } - } - }, - { - "id": "6b90622d-3e88-54ad-96ce-27f6d660d80b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.747763, - "y": 25.080113 - }, - "endPoint": { - "x": 327.741226, - "y": 25.08052 - } - } - }, - { - "id": "91059f38-a6e9-525b-860e-18699da79eab", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.741226, - "y": 25.08052 - }, - "endPoint": { - "x": 327.70745, - "y": 25.083604 - } - } - }, - { - "id": "65113f7e-e9cf-5330-80c8-329a2682e725", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.70745, - "y": 25.083604 - }, - "endPoint": { - "x": 327.705589, - "y": 25.083888 - } - } - }, - { - "id": "e611a813-a4e4-582f-85e0-20743e8d92eb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.705589, - "y": 25.083888 - }, - "endPoint": { - "x": 327.703751, - "y": 25.08429 - } - } - }, - { - "id": "7ba996af-38ba-57bf-b93b-1dd908acc656", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.703751, - "y": 25.08429 - }, - "endPoint": { - "x": 327.701943, - "y": 25.08481 - } - } - }, - { - "id": "0aed3bfa-130f-58d4-8c28-1777696f1155", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.701943, - "y": 25.08481 - }, - "endPoint": { - "x": 327.70017, - "y": 25.085445 - } - } - }, - { - "id": "93361f48-df65-5098-b025-b077dcbba520", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.70017, - "y": 25.085445 - }, - "endPoint": { - "x": 327.696576, - "y": 25.087635 - } - } - }, - { - "id": "cb9fb696-d644-5551-b301-7bd6c38ad069", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.696576, - "y": 25.087635 - }, - "endPoint": { - "x": 327.694095, - "y": 25.089863 - } - } - }, - { - "id": "a75c5dd7-ac1c-5adb-84ef-c7eee0b66265", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.694095, - "y": 25.089863 - }, - "endPoint": { - "x": 327.691677, - "y": 25.092156 - } - } - }, - { - "id": "b9c9847f-2718-5f9a-bacc-812888197573", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.691677, - "y": 25.092156 - }, - "endPoint": { - "x": 327.689321, - "y": 25.094514 - } - } - }, - { - "id": "d5fa4beb-d5d7-5469-9dc1-50ea8dc668af", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.689321, - "y": 25.094514 - }, - "endPoint": { - "x": 327.687028, - "y": 25.096934 - } - } - }, - { - "id": "d10a1c2a-e50e-5790-a7f0-e15bcac1e659", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.687028, - "y": 25.096934 - }, - "endPoint": { - "x": 327.673601, - "y": 25.114963 - } - } - }, - { - "id": "70a79272-683f-56ff-8873-7f05cb6fd6c8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.673601, - "y": 25.114963 - }, - "endPoint": { - "x": 327.671556, - "y": 25.118119 - } - } - }, - { - "id": "3dea6d41-f62a-58b9-9b2e-e39f93ae3865", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.671556, - "y": 25.118119 - }, - "endPoint": { - "x": 327.669272, - "y": 25.1211 - } - } - }, - { - "id": "544b6f79-76ae-5179-aa17-0202dd3e7301", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.669272, - "y": 25.1211 - }, - "endPoint": { - "x": 327.666762, - "y": 25.123892 - } - } - }, - { - "id": "202af169-411e-51a0-ac2d-10958c2b2ba4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.666762, - "y": 25.123892 - }, - "endPoint": { - "x": 327.664036, - "y": 25.126483 - } - } - }, - { - "id": "6314a6e1-0d63-5606-ae24-5441d9b55eb9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.664036, - "y": 25.126483 - }, - "endPoint": { - "x": 327.648922, - "y": 25.139353 - } - } - }, - { - "id": "157ab669-7d89-55bf-a566-291e203bb6b9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.648922, - "y": 25.139353 - }, - "endPoint": { - "x": 327.644452, - "y": 25.143068 - } - } - }, - { - "id": "deda37c2-556e-5135-818f-7a0fbecf7cf5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.644452, - "y": 25.143068 - }, - "endPoint": { - "x": 327.640006, - "y": 25.146812 - } - } - }, - { - "id": "2bf3e54f-2262-5877-99df-d9f06ddfc0c4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.640006, - "y": 25.146812 - }, - "endPoint": { - "x": 327.635584, - "y": 25.150585 - } - } - }, - { - "id": "f46f6ac7-5164-5ad7-a7fc-4adf5d7a8db9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.635584, - "y": 25.150585 - }, - "endPoint": { - "x": 327.631187, - "y": 25.154386 - } - } - }, - { - "id": "d0e54035-0647-5a92-8f3c-d8b26df16201", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.631187, - "y": 25.154386 - }, - "endPoint": { - "x": 327.613164, - "y": 25.170109 - } - } - }, - { - "id": "0e7a7a2a-b451-5a7e-b6b8-1ba89fc2fed5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.613164, - "y": 25.170109 - }, - "endPoint": { - "x": 327.607811, - "y": 25.174792 - } - } - }, - { - "id": "c4202d21-5660-55e5-bc5c-7a264b0a764a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.607811, - "y": 25.174792 - }, - "endPoint": { - "x": 327.602461, - "y": 25.179478 - } - } - }, - { - "id": "56c0ab75-26ca-5c73-9ac9-ebb5785e76df", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.602461, - "y": 25.179478 - }, - "endPoint": { - "x": 327.597113, - "y": 25.184167 - } - } - }, - { - "id": "cf4a9793-c7e6-56b8-835b-9b09ba11c88c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.597113, - "y": 25.184167 - }, - "endPoint": { - "x": 327.591768, - "y": 25.188859 - } - } - }, - { - "id": "aca940dc-0bb0-5989-85d6-bdaa7f3c3268", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.591768, - "y": 25.188859 - }, - "endPoint": { - "x": 327.561403, - "y": 25.21767 - } - } - }, - { - "id": "b4949bb5-d71d-53c4-aec8-be54ca01677b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.561403, - "y": 25.21767 - }, - "endPoint": { - "x": 327.556062, - "y": 25.223 - } - } - }, - { - "id": "848114a3-76dd-534c-bebd-e586d0d9fdaa", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.556062, - "y": 25.223 - }, - "endPoint": { - "x": 327.550581, - "y": 25.228184 - } - } - }, - { - "id": "866b2075-964e-52e3-a777-6ec0d2b0baa1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.550581, - "y": 25.228184 - }, - "endPoint": { - "x": 327.544964, - "y": 25.233219 - } - } - }, - { - "id": "67b0004e-6d0a-56fd-ab82-2c849558d872", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.544964, - "y": 25.233219 - }, - "endPoint": { - "x": 327.539212, - "y": 25.238104 - } - } - }, - { - "id": "f16ff812-6b9c-5faa-80f3-f1f4f9276ebb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.539212, - "y": 25.238104 - }, - "endPoint": { - "x": 327.513653, - "y": 25.256018 - } - } - }, - { - "id": "d5f91907-3a43-558b-ae80-8ed09cb71a36", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.513653, - "y": 25.256018 - }, - "endPoint": { - "x": 327.501315, - "y": 25.26346 - } - } - }, - { - "id": "eb131b8d-c932-560a-b97e-faeb2f2d3d6e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.501315, - "y": 25.26346 - }, - "endPoint": { - "x": 327.489141, - "y": 25.271164 - } - } - }, - { - "id": "09a99cfa-29aa-5a2a-8f89-574f4caf8334", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.489141, - "y": 25.271164 - }, - "endPoint": { - "x": 327.477135, - "y": 25.279128 - } - } - }, - { - "id": "daacb508-185f-5371-99f8-2d1fc60e3814", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.477135, - "y": 25.279128 - }, - "endPoint": { - "x": 327.465301, - "y": 25.287349 - } - } - }, - { - "id": "69c117d5-ead4-542e-8284-449b518e459b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.465301, - "y": 25.287349 - }, - "endPoint": { - "x": 327.403124, - "y": 25.333242 - } - } - }, - { - "id": "983e9e68-af2e-5a01-a254-66bd6fc19f56", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.403124, - "y": 25.333242 - }, - "endPoint": { - "x": 327.390902, - "y": 25.342497 - } - } - }, - { - "id": "8f32aaa1-e4ed-5546-8978-98a0f69cbff2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.390902, - "y": 25.342497 - }, - "endPoint": { - "x": 327.378576, - "y": 25.351613 - } - } - }, - { - "id": "a399178e-fb58-5dad-9702-184ef306c7f9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.378576, - "y": 25.351613 - }, - "endPoint": { - "x": 327.366148, - "y": 25.360589 - } - } - }, - { - "id": "0c6f750d-d240-57e9-88bd-45120cdb9c6a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.366148, - "y": 25.360589 - }, - "endPoint": { - "x": 327.35362, - "y": 25.369425 - } - } - }, - { - "id": "cabbcbb7-b4ce-5e7f-a654-45ebf06d2e58", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.35362, - "y": 25.369425 - }, - "endPoint": { - "x": 327.30749, - "y": 25.400539 - } - } - }, - { - "id": "b01facfa-4ff4-5bf2-821c-c37d603c038b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.30749, - "y": 25.400539 - }, - "endPoint": { - "x": 327.298988, - "y": 25.406026 - } - } - }, - { - "id": "e221755b-2f36-56f4-b482-e20268bfcfac", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.298988, - "y": 25.406026 - }, - "endPoint": { - "x": 327.290428, - "y": 25.411425 - } - } - }, - { - "id": "352b62f0-e101-5091-ae5b-f31ea4590b30", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.290428, - "y": 25.411425 - }, - "endPoint": { - "x": 327.281814, - "y": 25.416733 - } - } - }, - { - "id": "67c3b262-8e2b-5244-9b84-fda60f2d7954", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.281814, - "y": 25.416733 - }, - "endPoint": { - "x": 327.273144, - "y": 25.421952 - } - } - }, - { - "id": "1aadc95f-efc6-524e-9b9b-27d6405fe7f9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.273144, - "y": 25.421952 - }, - "endPoint": { - "x": 327.205263, - "y": 25.459232 - } - } - }, - { - "id": "05a1e14f-9379-57cc-85d2-ac128a9d2746", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.205263, - "y": 25.459232 - }, - "endPoint": { - "x": 327.183913, - "y": 25.470205 - } - } - }, - { - "id": "cfd7a492-d958-5e0f-896a-13b21aa50bbf", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.183913, - "y": 25.470205 - }, - "endPoint": { - "x": 327.162717, - "y": 25.481473 - } - } - }, - { - "id": "bfdd1304-7f16-52b4-b5ec-008ea18c762a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.162717, - "y": 25.481473 - }, - "endPoint": { - "x": 327.141681, - "y": 25.493034 - } - } - }, - { - "id": "e3e08ca2-e365-58b0-bc40-30307f8a5c89", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.141681, - "y": 25.493034 - }, - "endPoint": { - "x": 327.120806, - "y": 25.504887 - } - } - }, - { - "id": "f2b0735b-e519-5a97-9165-e04fbd687461", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.120806, - "y": 25.504887 - }, - "endPoint": { - "x": 327.047922, - "y": 25.547105 - } - } - }, - { - "id": "30d8dd9e-ab1a-5572-bca7-4dd164722649", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.047922, - "y": 25.547105 - }, - "endPoint": { - "x": 327.043546, - "y": 25.549659 - } - } - }, - { - "id": "011c4deb-e4f7-5a85-ac90-74ee754b37a7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.043546, - "y": 25.549659 - }, - "endPoint": { - "x": 327.03918, - "y": 25.552229 - } - } - }, - { - "id": "0c1844d0-3631-5307-9617-5744c3f92130", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.03918, - "y": 25.552229 - }, - "endPoint": { - "x": 327.034822, - "y": 25.554814 - } - } - }, - { - "id": "9e8009c8-aeba-5d3e-8e9f-ae172e6da9de", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.034822, - "y": 25.554814 - }, - "endPoint": { - "x": 327.030473, - "y": 25.557414 - } - } - }, - { - "id": "b5923c0a-4ffa-5bdf-8672-568577068c92", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.030473, - "y": 25.557414 - }, - "endPoint": { - "x": 327.006207, - "y": 25.5721 - } - } - }, - { - "id": "c3811596-9960-5353-9d43-ceaf8606e7e2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.006207, - "y": 25.5721 - }, - "endPoint": { - "x": 326.998732, - "y": 25.576653 - } - } - }, - { - "id": "79c29fba-cbcc-5660-9b82-0f87eda26f59", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.998732, - "y": 25.576653 - }, - "endPoint": { - "x": 326.991251, - "y": 25.581194 - } - } - }, - { - "id": "446d5cb1-423d-5d80-bc8c-098d05b851f3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.991251, - "y": 25.581194 - }, - "endPoint": { - "x": 326.983763, - "y": 25.585725 - } - } - }, - { - "id": "88a91244-f2c4-5eb8-80fa-30d1e164d0c5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.983763, - "y": 25.585725 - }, - "endPoint": { - "x": 326.976269, - "y": 25.590245 - } - } - }, - { - "id": "064c6008-be63-5be9-9443-b0f28e5e76af", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.976269, - "y": 25.590245 - }, - "endPoint": { - "x": 326.961836, - "y": 25.598723 - } - } - }, - { - "id": "fa13c858-a4a8-52e4-881a-36825a63ac84", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.961836, - "y": 25.598723 - }, - "endPoint": { - "x": 326.958447, - "y": 25.600678 - } - } - }, - { - "id": "c671b4d7-9877-5fba-8bb0-5ffa8e6ccf7b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.958447, - "y": 25.600678 - }, - "endPoint": { - "x": 326.955069, - "y": 25.602652 - } - } - }, - { - "id": "518789da-9931-5481-b73f-39d6ce71acf0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.955069, - "y": 25.602652 - }, - "endPoint": { - "x": 326.951703, - "y": 25.604646 - } - } - }, - { - "id": "34bdb2b3-41d1-5193-9fce-4062996ece2d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.951703, - "y": 25.604646 - }, - "endPoint": { - "x": 326.948349, - "y": 25.606659 - } - } - }, - { - "id": "fedaf509-f0d1-5d7e-9d7c-1da6ad336a02", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.948349, - "y": 25.606659 - }, - "endPoint": { - "x": 326.937277, - "y": 25.615277 - } - } - }, - { - "id": "38aa966f-1b56-57f9-9a3a-6f9c156057c5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.937277, - "y": 25.615277 - }, - "endPoint": { - "x": 326.934085, - "y": 25.618284 - } - } - }, - { - "id": "1c4e5922-2bf0-5ad1-8e5c-ffced548c20b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.934085, - "y": 25.618284 - }, - "endPoint": { - "x": 326.930757, - "y": 25.621137 - } - } - }, - { - "id": "4556fc4e-56af-5dd2-901c-6f340f77da6d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.930757, - "y": 25.621137 - }, - "endPoint": { - "x": 326.927298, - "y": 25.623829 - } - } - }, - { - "id": "40c564dc-b51c-5a05-91a6-0fe4c76a2068", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.927298, - "y": 25.623829 - }, - "endPoint": { - "x": 326.923714, - "y": 25.626356 - } - } - }, - { - "id": "4a654efb-cf32-5978-85b7-d64f0d7ecf28", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.923714, - "y": 25.626356 - }, - "endPoint": { - "x": 326.916496, - "y": 25.630874 - } - } - }, - { - "id": "74851435-1449-534a-a0b7-763cc21344e0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.916496, - "y": 25.630874 - }, - "endPoint": { - "x": 326.913398, - "y": 25.632661 - } - } - }, - { - "id": "bbe0a6b7-e08c-5793-8c1a-2a9c0db53f62", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.913398, - "y": 25.632661 - }, - "endPoint": { - "x": 326.910284, - "y": 25.63442 - } - } - }, - { - "id": "8093c7b3-dbdf-58a3-87e5-d406859eb4f1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.910284, - "y": 25.63442 - }, - "endPoint": { - "x": 326.907153, - "y": 25.636149 - } - } - }, - { - "id": "b47799a8-4478-55f4-aba2-91dd557182f1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.907153, - "y": 25.636149 - }, - "endPoint": { - "x": 326.904007, - "y": 25.637849 - } - } - }, - { - "id": "2b5946de-0d81-5331-b810-eaeff30b5412", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.904007, - "y": 25.637849 - }, - "endPoint": { - "x": 326.885289, - "y": 25.646558 - } - } - }, - { - "id": "3ae4b9ab-b0e9-5070-8559-c699d0f32bea", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.885289, - "y": 25.646558 - }, - "endPoint": { - "x": 326.883856, - "y": 25.647054 - } - } - }, - { - "id": "e8ee8d4b-436f-5ec1-94e0-1f135342f7fb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.883856, - "y": 25.647054 - }, - "endPoint": { - "x": 326.882385, - "y": 25.64741 - } - } - }, - { - "id": "05610233-32d1-5772-9273-164f23ac0812", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.882385, - "y": 25.64741 - }, - "endPoint": { - "x": 326.880887, - "y": 25.647625 - } - } - }, - { - "id": "6fbbd1bd-1fa3-59b7-a9cc-54f1cae1f3a6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.880887, - "y": 25.647625 - }, - "endPoint": { - "x": 326.879372, - "y": 25.647697 - } - } - }, - { - "id": "89dffa52-ef5c-5c5b-8539-63823cf7334e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.879372, - "y": 25.647697 - }, - "endPoint": { - "x": 326.854731, - "y": 25.647697 - } - } - }, - { - "id": "d7bf6a88-5a3c-56ee-b7e5-91c41b2f3bf5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.854731, - "y": 25.647697 - }, - "endPoint": { - "x": 326.82681, - "y": 25.647697 - } - } - }, - { - "id": "db6fd9ae-863e-5165-98c5-13c816f25392", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.82681, - "y": 25.647697 - }, - "endPoint": { - "x": 326.815772, - "y": 25.647422 - } - } - }, - { - "id": "174d0923-e82e-5f32-9ac8-a8aadd6f89eb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.815772, - "y": 25.647422 - }, - "endPoint": { - "x": 326.810317, - "y": 25.647132 - } - } - }, - { - "id": "21d9a9a4-89c0-5756-bc8b-733015954155", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.810317, - "y": 25.647132 - }, - "endPoint": { - "x": 326.804863, - "y": 25.646808 - } - } - }, - { - "id": "0d611da7-4eec-5afc-bfb4-3f3b5abce4be", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.804863, - "y": 25.646808 - }, - "endPoint": { - "x": 326.799411, - "y": 25.646449 - } - } - }, - { - "id": "13c7bf2a-61e0-505f-bb77-6049c39aebf7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.799411, - "y": 25.646449 - }, - "endPoint": { - "x": 326.793962, - "y": 25.646056 - } - } - }, - { - "id": "0270fcd7-7f38-529a-8580-26b33e47513e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.793962, - "y": 25.646056 - }, - "endPoint": { - "x": 326.775584, - "y": 25.642361 - } - } - }, - { - "id": "692b20d6-bbf2-58c3-967d-c092b7cafb88", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.775584, - "y": 25.642361 - }, - "endPoint": { - "x": 326.772586, - "y": 25.641209 - } - } - }, - { - "id": "b58ebe1c-01ef-5dc3-ac20-8adb8d26ae20", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.772586, - "y": 25.641209 - }, - "endPoint": { - "x": 326.769711, - "y": 25.639792 - } - } - }, - { - "id": "e4733bea-abe4-5826-a587-d218bcdb3ae3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.769711, - "y": 25.639792 - }, - "endPoint": { - "x": 326.766976, - "y": 25.638121 - } - } - }, - { - "id": "d266fce2-5ff7-50d7-aad3-34feb817f270", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.766976, - "y": 25.638121 - }, - "endPoint": { - "x": 326.764398, - "y": 25.636205 - } - } - }, - { - "id": "2179f2e1-f993-5a54-a46e-02f6df0d59ac", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.764398, - "y": 25.636205 - }, - "endPoint": { - "x": 326.754789, - "y": 25.625523 - } - } - }, - { - "id": "24cabaf4-b4e5-5d75-acd1-d3d5837dae32", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.754789, - "y": 25.625523 - }, - "endPoint": { - "x": 326.752174, - "y": 25.621776 - } - } - }, - { - "id": "fe13bc2a-1ee6-57f1-a07b-ad48824d0a92", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.752174, - "y": 25.621776 - }, - "endPoint": { - "x": 326.749341, - "y": 25.618198 - } - } - }, - { - "id": "07a5368a-2cc0-57e4-b5c9-db4f733c1a7a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.749341, - "y": 25.618198 - }, - "endPoint": { - "x": 326.746296, - "y": 25.614797 - } - } - }, - { - "id": "f949a293-f501-5982-ad75-6ed6363d7bf2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.746296, - "y": 25.614797 - }, - "endPoint": { - "x": 326.743049, - "y": 25.611584 - } - } - }, - { - "id": "c0b26f0e-74af-53ff-b23a-5341f2b783c6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.743049, - "y": 25.611584 - }, - "endPoint": { - "x": 326.719495, - "y": 25.590022 - } - } - }, - { - "id": "26891084-4d92-5425-9fea-4cd78ab9ad36", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.719495, - "y": 25.590022 - }, - "endPoint": { - "x": 326.717205, - "y": 25.587986 - } - } - }, - { - "id": "77e571eb-7dc7-575d-8565-47f642c7747e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.717205, - "y": 25.587986 - }, - "endPoint": { - "x": 326.714893, - "y": 25.585976 - } - } - }, - { - "id": "51d81196-a14c-592d-b3cc-971135340a87", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.714893, - "y": 25.585976 - }, - "endPoint": { - "x": 326.712558, - "y": 25.583992 - } - } - }, - { - "id": "ca5ec1a6-c1a9-506c-ba3d-549d31eb1508", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.712558, - "y": 25.583992 - }, - "endPoint": { - "x": 326.7102, - "y": 25.582035 - } - } - }, - { - "id": "cd461862-9a02-57a0-bfd8-7a5898b03117", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.7102, - "y": 25.582035 - }, - "endPoint": { - "x": 326.680622, - "y": 25.558608 - } - } - }, - { - "id": "7047a484-1030-533f-8ec4-8a8d6ae60bd9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.680622, - "y": 25.558608 - }, - "endPoint": { - "x": 326.67398, - "y": 25.55348 - } - } - }, - { - "id": "0a758a25-6c3a-5f0c-8429-22579b07d803", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.67398, - "y": 25.55348 - }, - "endPoint": { - "x": 326.667389, - "y": 25.548289 - } - } - }, - { - "id": "473e7330-406e-5df6-8ff6-60b157818b3d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.667389, - "y": 25.548289 - }, - "endPoint": { - "x": 326.660849, - "y": 25.543033 - } - } - }, - { - "id": "ed5933f1-b655-5d4c-a6e6-42be4a9afe6f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.660849, - "y": 25.543033 - }, - "endPoint": { - "x": 326.654359, - "y": 25.537715 - } - } - }, - { - "id": "bce42756-77f0-534d-8a5f-fcfc9d8cf85d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.654359, - "y": 25.537715 - }, - "endPoint": { - "x": 326.628625, - "y": 25.516008 - } - } - }, - { - "id": "4e99cebe-75ac-59f7-ac8e-5e342c87e32a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.628625, - "y": 25.516008 - }, - "endPoint": { - "x": 326.624831, - "y": 25.512773 - } - } - }, - { - "id": "9ca175cd-08b3-577c-90b4-be1e36597347", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.624831, - "y": 25.512773 - }, - "endPoint": { - "x": 326.621011, - "y": 25.509567 - } - } - }, - { - "id": "ff228fdc-63b6-51b9-a040-d2839b8b428a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.621011, - "y": 25.509567 - }, - "endPoint": { - "x": 326.617166, - "y": 25.506391 - } - } - }, - { - "id": "2760d71b-8b27-529d-ac27-f066e6867c08", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.617166, - "y": 25.506391 - }, - "endPoint": { - "x": 326.613297, - "y": 25.503245 - } - } - }, - { - "id": "2d631711-a38e-58c1-a1cd-a5ce3fc9f53e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.613297, - "y": 25.503245 - }, - "endPoint": { - "x": 326.589479, - "y": 25.484302 - } - } - }, - { - "id": "9e1a5462-1241-5c17-aa0c-91da5360acff", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.589479, - "y": 25.484302 - }, - "endPoint": { - "x": 326.581449, - "y": 25.477988 - } - } - }, - { - "id": "b04d29e4-2665-5fa8-9f6a-afee4cededd1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.581449, - "y": 25.477988 - }, - "endPoint": { - "x": 326.573435, - "y": 25.471654 - } - } - }, - { - "id": "e08d753f-318c-51bd-a079-3fa4ac3136ab", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.573435, - "y": 25.471654 - }, - "endPoint": { - "x": 326.565438, - "y": 25.465299 - } - } - }, - { - "id": "bf2eb87c-a4c1-5407-aa72-a963beede2af", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.565438, - "y": 25.465299 - }, - "endPoint": { - "x": 326.557456, - "y": 25.458925 - } - } - }, - { - "id": "bda791a3-d5fd-50f1-8ae8-c760e12ea0d8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.557456, - "y": 25.458925 - }, - "endPoint": { - "x": 326.541124, - "y": 25.445761 - } - } - }, - { - "id": "4601e295-9ddb-502f-93ea-b74448776ac7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.541124, - "y": 25.445761 - }, - "endPoint": { - "x": 326.534539, - "y": 25.440424 - } - } - }, - { - "id": "b64c0946-798b-5d26-9d9d-ffbaca42a8a0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.534539, - "y": 25.440424 - }, - "endPoint": { - "x": 326.527948, - "y": 25.435094 - } - } - }, - { - "id": "eba89f59-b046-5b13-98c2-d3b3965c12c0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.527948, - "y": 25.435094 - }, - "endPoint": { - "x": 326.521352, - "y": 25.42977 - } - } - }, - { - "id": "eb2a1dd0-0a61-5673-a373-7d8adc3bb58b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.521352, - "y": 25.42977 - }, - "endPoint": { - "x": 326.514751, - "y": 25.424452 - } - } - }, - { - "id": "b6a2b3d2-5b7f-5562-ad3c-c2a82f150bea", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.514751, - "y": 25.424452 - }, - "endPoint": { - "x": 326.465889, - "y": 25.386342 - } - } - }, - { - "id": "372745a5-86b5-5bf0-a50d-8f990bf91b74", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.465889, - "y": 25.386342 - }, - "endPoint": { - "x": 326.461372, - "y": 25.383003 - } - } - }, - { - "id": "77109f36-4667-5637-ab6c-8b18924231d4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.461372, - "y": 25.383003 - }, - "endPoint": { - "x": 326.456787, - "y": 25.379759 - } - } - }, - { - "id": "239b6632-c39b-51f4-bdcb-c05d6a5f7af9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.456787, - "y": 25.379759 - }, - "endPoint": { - "x": 326.452135, - "y": 25.376614 - } - } - }, - { - "id": "2b8a74fe-b739-5a74-be88-ab3adf020db1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.452135, - "y": 25.376614 - }, - "endPoint": { - "x": 326.447417, - "y": 25.373566 - } - } - }, - { - "id": "f16de905-deda-5bc8-91a1-da59efd3b8c2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.447417, - "y": 25.373566 - }, - "endPoint": { - "x": 326.413185, - "y": 25.352764 - } - } - }, - { - "id": "d6a6123d-ad2f-5649-be55-3fdde79499df", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.413185, - "y": 25.352764 - }, - "endPoint": { - "x": 326.386929, - "y": 25.337366 - } - } - }, - { - "id": "9bc47941-ae04-533a-bfaa-9fcf6d6d3337", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.386929, - "y": 25.337366 - }, - "endPoint": { - "x": 326.360716, - "y": 25.321895 - } - } - }, - { - "id": "c03a07d5-72ac-573a-9340-160ca1c55328", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.360716, - "y": 25.321895 - }, - "endPoint": { - "x": 326.334547, - "y": 25.30635 - } - } - }, - { - "id": "29c21102-5fd8-52ed-923b-a6e1a0183353", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.334547, - "y": 25.30635 - }, - "endPoint": { - "x": 326.308421, - "y": 25.290732 - } - } - }, - { - "id": "70220faa-cf04-5be2-b3b9-c3dcac0a83f2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.308421, - "y": 25.290732 - }, - "endPoint": { - "x": 326.225007, - "y": 25.240023 - } - } - }, - { - "id": "347aaad6-23bb-588f-ab84-833c3c57760b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.225007, - "y": 25.240023 - }, - "endPoint": { - "x": 326.220049, - "y": 25.237011 - } - } - }, - { - "id": "d6935b73-3208-5ad9-86a1-a26d37539b87", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.220049, - "y": 25.237011 - }, - "endPoint": { - "x": 326.215054, - "y": 25.234062 - } - } - }, - { - "id": "9fe42497-6117-53db-91f2-f2ed5dedaf28", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.215054, - "y": 25.234062 - }, - "endPoint": { - "x": 326.210022, - "y": 25.231177 - } - } - }, - { - "id": "94bf72d8-0e76-52d3-a3a0-a2dc38e6dcbb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.210022, - "y": 25.231177 - }, - "endPoint": { - "x": 326.204953, - "y": 25.228356 - } - } - }, - { - "id": "2b729416-6648-5185-909f-574a6cf5c410", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.204953, - "y": 25.228356 - }, - "endPoint": { - "x": 326.184269, - "y": 25.218476 - } - } - }, - { - "id": "c0ad1909-c7e2-5e8c-b20b-2e6489d20376", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.184269, - "y": 25.218476 - }, - "endPoint": { - "x": 326.170045, - "y": 25.212548 - } - } - }, - { - "id": "e483a365-7af8-5812-af5b-44f037a3dcc9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.170045, - "y": 25.212548 - }, - "endPoint": { - "x": 326.155885, - "y": 25.206473 - } - } - }, - { - "id": "6546495e-857b-5b5e-b2f4-6e95dffb0aa7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.155885, - "y": 25.206473 - }, - "endPoint": { - "x": 326.141788, - "y": 25.200252 - } - } - }, - { - "id": "be1777f3-5f60-5efb-aae3-37109e81ed92", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.141788, - "y": 25.200252 - }, - "endPoint": { - "x": 326.127756, - "y": 25.193883 - } - } - }, - { - "id": "65103789-3fff-5228-beb3-ee7ae0aadb6b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.127756, - "y": 25.193883 - }, - "endPoint": { - "x": 326.044896, - "y": 25.155594 - } - } - }, - { - "id": "b55299e1-3b64-5e34-b5a7-4aa35d9ccc90", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.044896, - "y": 25.155594 - }, - "endPoint": { - "x": 326.042606, - "y": 25.154521 - } - } - }, - { - "id": "5065f88e-6a20-5f71-904b-0b4208fb0639", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.042606, - "y": 25.154521 - }, - "endPoint": { - "x": 326.040323, - "y": 25.153432 - } - } - }, - { - "id": "ac722da7-d2e6-566e-a4e0-2f47214584ae", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.040323, - "y": 25.153432 - }, - "endPoint": { - "x": 326.038048, - "y": 25.152326 - } - } - }, - { - "id": "c9a434c1-6370-5dfa-9253-c6a39244f068", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.038048, - "y": 25.152326 - }, - "endPoint": { - "x": 326.035781, - "y": 25.151204 - } - } - }, - { - "id": "09362c5b-d656-56fc-925b-bbc5e1982bd1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.035781, - "y": 25.151204 - }, - "endPoint": { - "x": 326.030842, - "y": 25.148736 - } - } - }, - { - "id": "8de21442-e03c-52cf-b709-2c96566d6928", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.030842, - "y": 25.148736 - }, - "endPoint": { - "x": 326.023043, - "y": 25.144839 - } - } - }, - { - "id": "10593be9-c19d-51fb-9bd8-c460b5dbbc2b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.023043, - "y": 25.144839 - }, - "endPoint": { - "x": 326.015244, - "y": 25.140942 - } - } - }, - { - "id": "5865162f-733a-5175-8d6d-cdf9ed77b502", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.015244, - "y": 25.140942 - }, - "endPoint": { - "x": 326.007446, - "y": 25.137045 - } - } - }, - { - "id": "7c44d50a-d44e-52e1-8722-a9d9fdbf156b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.007446, - "y": 25.137045 - }, - "endPoint": { - "x": 325.999647, - "y": 25.133148 - } - } - }, - { - "id": "182633c7-549a-51bf-b399-91074870ff8a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.999647, - "y": 25.133148 - }, - "endPoint": { - "x": 325.971727, - "y": 25.119195 - } - } - }, - { - "id": "202e33f5-3ac1-5a23-b038-30a509b31689", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.971727, - "y": 25.119195 - }, - "endPoint": { - "x": 325.964747, - "y": 25.115706 - } - } - }, - { - "id": "dc6de78e-2825-5ca1-bcfe-cb452f84d70d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.964747, - "y": 25.115706 - }, - "endPoint": { - "x": 325.957767, - "y": 25.112217 - } - } - }, - { - "id": "b24f2fd8-07ca-554f-b404-83084a375545", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.957767, - "y": 25.112217 - }, - "endPoint": { - "x": 325.950787, - "y": 25.108729 - } - } - }, - { - "id": "892b6a5f-9fb8-5578-a5a7-f6c06b2feb55", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.950787, - "y": 25.108729 - }, - "endPoint": { - "x": 325.943806, - "y": 25.105242 - } - } - }, - { - "id": "24999043-5222-55a9-8355-0905da953e7e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.943806, - "y": 25.105242 - }, - "endPoint": { - "x": 325.935227, - "y": 25.101633 - } - } - }, - { - "id": "17581245-d2f6-5803-bb7b-130871f837fc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.935227, - "y": 25.101633 - }, - "endPoint": { - "x": 325.926731, - "y": 25.098734 - } - } - }, - { - "id": "bf1801bc-ecab-572c-a333-1ba3bdc0bffc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.926731, - "y": 25.098734 - }, - "endPoint": { - "x": 325.918211, - "y": 25.095907 - } - } - }, - { - "id": "a573d8de-cfaa-5042-b5e5-dffa40c11086", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.918211, - "y": 25.095907 - }, - "endPoint": { - "x": 325.909668, - "y": 25.093152 - } - } - }, - { - "id": "94592cea-25f0-52b8-b2b2-46e8b129c6ca", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.909668, - "y": 25.093152 - }, - "endPoint": { - "x": 325.901101, - "y": 25.090469 - } - } - }, - { - "id": "74b4d5d1-b76e-5ea1-81b6-7ab178dbb30d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.901101, - "y": 25.090469 - }, - "endPoint": { - "x": 325.874966, - "y": 25.08278 - } - } - }, - { - "id": "b243b44b-661b-5097-91fc-8d818b96411a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.874966, - "y": 25.08278 - }, - "endPoint": { - "x": 325.871253, - "y": 25.081764 - } - } - }, - { - "id": "1ad929b7-98fc-57df-bafd-019afed6fcc7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.871253, - "y": 25.081764 - }, - "endPoint": { - "x": 325.867528, - "y": 25.080791 - } - } - }, - { - "id": "2c97f206-3c63-546e-9f15-2965d89c6a97", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.867528, - "y": 25.080791 - }, - "endPoint": { - "x": 325.863792, - "y": 25.079862 - } - } - }, - { - "id": "8ea5307a-9d09-5524-9ecf-b3e90d43ec5b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.863792, - "y": 25.079862 - }, - "endPoint": { - "x": 325.860045, - "y": 25.078976 - } - } - }, - { - "id": "a13b161d-8626-5c23-b4c4-2b874cd5ce75", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.860045, - "y": 25.078976 - }, - "endPoint": { - "x": 325.842272, - "y": 25.075773 - } - } - }, - { - "id": "6e0e00aa-a97d-5adb-925d-e7dbe82ef981", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.842272, - "y": 25.075773 - }, - "endPoint": { - "x": 325.834371, - "y": 25.074682 - } - } - }, - { - "id": "59dc1376-135d-55f6-ba61-72c25bb7c1b5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.834371, - "y": 25.074682 - }, - "endPoint": { - "x": 325.826486, - "y": 25.073485 - } - } - }, - { - "id": "de10f1d8-9759-5de8-8dd8-f8e0f68c3239", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.826486, - "y": 25.073485 - }, - "endPoint": { - "x": 325.818619, - "y": 25.07218 - } - } - }, - { - "id": "2f3e5908-7eb2-534e-a0fe-b2972fce3a79", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.818619, - "y": 25.07218 - }, - "endPoint": { - "x": 325.810769, - "y": 25.070769 - } - } - }, - { - "id": "999a0ccd-9edf-5120-b251-1dcae6317c96", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.810769, - "y": 25.070769 - }, - "endPoint": { - "x": 325.78298, - "y": 25.064331 - } - } - }, - { - "id": "a4e4e6e6-8434-562c-be0d-fa6d573d3988", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.78298, - "y": 25.064331 - }, - "endPoint": { - "x": 325.774379, - "y": 25.062024 - } - } - }, - { - "id": "f5cc4eb2-07d3-5495-b0d3-3ce48ad3fe80", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.774379, - "y": 25.062024 - }, - "endPoint": { - "x": 325.76574, - "y": 25.059866 - } - } - }, - { - "id": "dd65f403-10ac-512d-adc6-b45425319d58", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.76574, - "y": 25.059866 - }, - "endPoint": { - "x": 325.757066, - "y": 25.057856 - } - } - }, - { - "id": "0fc9d7c8-6e48-5e8d-91f3-b00f01f01582", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.757066, - "y": 25.057856 - }, - "endPoint": { - "x": 325.748357, - "y": 25.055997 - } - } - }, - { - "id": "937a6804-f8bd-525a-b12c-057894b69fe5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.748357, - "y": 25.055997 - }, - "endPoint": { - "x": 325.713769, - "y": 25.052023 - } - } - }, - { - "id": "ea07ddd6-8946-57f3-aa6f-99ee66302a78", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.713769, - "y": 25.052023 - }, - "endPoint": { - "x": 325.707181, - "y": 25.052036 - } - } - }, - { - "id": "0914c8ea-40c8-533c-a9fe-c3e527d4d95d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.707181, - "y": 25.052036 - }, - "endPoint": { - "x": 325.700611, - "y": 25.05243 - } - } - }, - { - "id": "ec052a4e-0a05-587e-8404-5740a5807790", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.700611, - "y": 25.05243 - }, - "endPoint": { - "x": 325.694074, - "y": 25.053203 - } - } - }, - { - "id": "9990deb5-37ed-5a39-a7aa-0d29cc957d5d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.694074, - "y": 25.053203 - }, - "endPoint": { - "x": 325.687588, - "y": 25.054355 - } - } - }, - { - "id": "432feb35-fb82-53c0-9b1e-bba5f142b560", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.687588, - "y": 25.054355 - }, - "endPoint": { - "x": 325.6733, - "y": 25.058719 - } - } - }, - { - "id": "454ed55f-6283-5ff6-9ba3-990f7540fe30", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.6733, - "y": 25.058719 - }, - "endPoint": { - "x": 325.667731, - "y": 25.061089 - } - } - }, - { - "id": "97c80fa0-cba3-5f0b-97ae-1c8997d7a0a6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.667731, - "y": 25.061089 - }, - "endPoint": { - "x": 325.662233, - "y": 25.063615 - } - } - }, - { - "id": "f41cdf24-d0af-5b23-9a4b-f3be4ad1dc48", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.662233, - "y": 25.063615 - }, - "endPoint": { - "x": 325.656808, - "y": 25.066295 - } - } - }, - { - "id": "1ebefbf6-97c6-5e51-8167-af9d5b5de9d8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.656808, - "y": 25.066295 - }, - "endPoint": { - "x": 325.65146, - "y": 25.069128 - } - } - }, - { - "id": "b5af4ee0-826f-564c-bf22-425c8fc2c3df", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.65146, - "y": 25.069128 - }, - "endPoint": { - "x": 325.636547, - "y": 25.078734 - } - } - }, - { - "id": "9e7ba9c5-9981-50db-94c4-1cd98f1908f0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.636547, - "y": 25.078734 - }, - "endPoint": { - "x": 325.635177, - "y": 25.079861 - } - } - }, - { - "id": "994f2fed-9e5f-583b-b9d3-5d61557c03df", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.635177, - "y": 25.079861 - }, - "endPoint": { - "x": 325.633915, - "y": 25.081103 - } - } - }, - { - "id": "bdb66831-dd61-5003-9e18-a8a966ff18e4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.633915, - "y": 25.081103 - }, - "endPoint": { - "x": 325.632769, - "y": 25.082453 - } - } - }, - { - "id": "146f18af-c34a-5c63-9754-0f25894e62b7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.632769, - "y": 25.082453 - }, - "endPoint": { - "x": 325.631747, - "y": 25.083903 - } - } - }, - { - "id": "0de5be9e-c9b7-5394-adee-8a7a1e98187c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.631747, - "y": 25.083903 - }, - "endPoint": { - "x": 325.629671, - "y": 25.091001 - } - } - }, - { - "id": "54a482a9-16d3-56b0-8ac0-bb661ec586ea", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.629671, - "y": 25.091001 - }, - "endPoint": { - "x": 325.629802, - "y": 25.09461 - } - } - }, - { - "id": "e4b093f0-20bb-5c63-accd-d1db8c1c47d4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.629802, - "y": 25.09461 - }, - "endPoint": { - "x": 325.630193, - "y": 25.098196 - } - } - }, - { - "id": "7de28e5e-f88d-5e16-8e1f-907fa4198da2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.630193, - "y": 25.098196 - }, - "endPoint": { - "x": 325.630842, - "y": 25.101745 - } - } - }, - { - "id": "d6ac47be-7cd1-5b94-aea6-b68cadd590ce", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.630842, - "y": 25.101745 - }, - "endPoint": { - "x": 325.631747, - "y": 25.105242 - } - } - }, - { - "id": "e4f55852-757b-5b9b-ac07-349cc34efd48", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.631747, - "y": 25.105242 - }, - "endPoint": { - "x": 325.637042, - "y": 25.118626 - } - } - }, - { - "id": "a4a0eee2-20db-5535-976c-55d5622fe9eb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.637042, - "y": 25.118626 - }, - "endPoint": { - "x": 325.637988, - "y": 25.120339 - } - } - }, - { - "id": "e57e2293-b4b3-5584-89c9-14d07445aa5a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.637988, - "y": 25.120339 - }, - "endPoint": { - "x": 325.639067, - "y": 25.121967 - } - } - }, - { - "id": "84b203f0-996f-5882-afc7-b1426bae4356", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.639067, - "y": 25.121967 - }, - "endPoint": { - "x": 325.640274, - "y": 25.123503 - } - } - }, - { - "id": "90e4b9f0-4dba-559b-b431-a033eb72e654", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.640274, - "y": 25.123503 - }, - "endPoint": { - "x": 325.641604, - "y": 25.124938 - } - } - }, - { - "id": "85d95731-76a9-5c6b-8c68-7ecc8e117831", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.641604, - "y": 25.124938 - }, - "endPoint": { - "x": 325.654768, - "y": 25.13602 - } - } - }, - { - "id": "4079c1ef-a23e-5060-860b-017346e55c14", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.654768, - "y": 25.13602 - }, - "endPoint": { - "x": 325.661185, - "y": 25.140453 - } - } - }, - { - "id": "0ea44661-4051-5615-ab9b-3f34fe1f1975", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.661185, - "y": 25.140453 - }, - "endPoint": { - "x": 325.667702, - "y": 25.144736 - } - } - }, - { - "id": "fbe0e68b-f2aa-5382-9ae6-0d707a5af13f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.667702, - "y": 25.144736 - }, - "endPoint": { - "x": 325.674315, - "y": 25.148867 - } - } - }, - { - "id": "b8c12f89-e7ce-5433-a3ec-2f3472f1aa0c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.674315, - "y": 25.148867 - }, - "endPoint": { - "x": 325.681023, - "y": 25.152845 - } - } - }, - { - "id": "f58e0a1f-e780-556c-8749-0302f3efff9f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.681023, - "y": 25.152845 - }, - "endPoint": { - "x": 325.734004, - "y": 25.182921 - } - } - }, - { - "id": "66bdbfd6-9192-5681-87d8-81b9e7b43d00", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.734004, - "y": 25.182921 - }, - "endPoint": { - "x": 325.738374, - "y": 25.185326 - } - } - }, - { - "id": "122ffc8e-8d86-5ee8-a2d0-fe1cea36c0fc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.738374, - "y": 25.185326 - }, - "endPoint": { - "x": 325.74277, - "y": 25.187682 - } - } - }, - { - "id": "18a43d0a-baa8-5774-b878-9ab33db3b0fc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.74277, - "y": 25.187682 - }, - "endPoint": { - "x": 325.747193, - "y": 25.189987 - } - } - }, - { - "id": "aa36b99d-5aed-5397-b7d3-013eaa8fa59c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.747193, - "y": 25.189987 - }, - "endPoint": { - "x": 325.751643, - "y": 25.192242 - } - } - }, - { - "id": "a3b890cf-e52d-59f2-9aca-3ff9dbb1d19a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.751643, - "y": 25.192242 - }, - "endPoint": { - "x": 325.776281, - "y": 25.204552 - } - } - }, - { - "id": "fefcc806-855a-5432-96ff-de5db4f4174e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.776281, - "y": 25.204552 - }, - "endPoint": { - "x": 325.78244, - "y": 25.20763 - } - } - }, - { - "id": "c36686c4-2167-5711-a4bf-958ca9beb182", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.78244, - "y": 25.20763 - }, - "endPoint": { - "x": 325.7886, - "y": 25.210707 - } - } - }, - { - "id": "930f6bdb-2851-58fe-bb43-95202aa270ce", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.7886, - "y": 25.210707 - }, - "endPoint": { - "x": 325.794759, - "y": 25.213785 - } - } - }, - { - "id": "0a1a257b-0b42-55b9-b7ae-fbda894b1625", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.794759, - "y": 25.213785 - }, - "endPoint": { - "x": 325.800919, - "y": 25.216863 - } - } - }, - { - "id": "52422fb3-0779-5024-8f12-da8be1a5550b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.800919, - "y": 25.216863 - }, - "endPoint": { - "x": 325.833721, - "y": 25.233255 - } - } - }, - { - "id": "be30f8d9-5b8b-5221-b7f3-53e04ba720bb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.833721, - "y": 25.233255 - }, - "endPoint": { - "x": 325.843586, - "y": 25.238185 - } - } - }, - { - "id": "43293aa6-e269-5e81-93df-95436b285042", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.843586, - "y": 25.238185 - }, - "endPoint": { - "x": 325.853451, - "y": 25.243115 - } - } - }, - { - "id": "2dd4c62f-ff17-593b-83c8-9ec20e4efd04", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.853451, - "y": 25.243115 - }, - "endPoint": { - "x": 325.863316, - "y": 25.248046 - } - } - }, - { - "id": "46b0d2af-d3d5-5276-be92-38cc8163a879", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.863316, - "y": 25.248046 - }, - "endPoint": { - "x": 325.873181, - "y": 25.252976 - } - } - }, - { - "id": "b44c8682-8f2c-56b2-a9f2-6efd32056e51", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.873181, - "y": 25.252976 - }, - "endPoint": { - "x": 325.91109, - "y": 25.273446 - } - } - }, - { - "id": "bd6042f8-2c8c-5f2d-805f-7ed81b45611b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.91109, - "y": 25.273446 - }, - "endPoint": { - "x": 325.924328, - "y": 25.281243 - } - } - }, - { - "id": "6efa4ae7-a442-540d-9630-0f922b570cd3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.924328, - "y": 25.281243 - }, - "endPoint": { - "x": 325.937479, - "y": 25.289185 - } - } - }, - { - "id": "98f694cd-ca06-59d5-8ec2-58f3d09d7a3a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.937479, - "y": 25.289185 - }, - "endPoint": { - "x": 325.950541, - "y": 25.297272 - } - } - }, - { - "id": "0db2ad2d-56dd-5eec-8f4b-42d7a298b125", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.950541, - "y": 25.297272 - }, - "endPoint": { - "x": 325.963513, - "y": 25.305504 - } - } - }, - { - "id": "6cc266bf-2781-547c-acee-7dd3916878bb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.963513, - "y": 25.305504 - }, - "endPoint": { - "x": 326.013762, - "y": 25.339345 - } - } - }, - { - "id": "52f835e7-f651-5971-8ea6-8fc90e0aeb28", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.013762, - "y": 25.339345 - }, - "endPoint": { - "x": 326.022289, - "y": 25.345461 - } - } - }, - { - "id": "db0a2cea-ae1f-5955-806a-eebc35a53a64", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.022289, - "y": 25.345461 - }, - "endPoint": { - "x": 326.030719, - "y": 25.351709 - } - } - }, - { - "id": "02ccce32-4e95-5fd6-8728-df9b76703f5f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.030719, - "y": 25.351709 - }, - "endPoint": { - "x": 326.03905, - "y": 25.358088 - } - } - }, - { - "id": "20043db3-9249-5468-a0c7-60c2c79af6c0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.03905, - "y": 25.358088 - }, - "endPoint": { - "x": 326.047281, - "y": 25.364598 - } - } - }, - { - "id": "fc5fde82-34ba-5ba5-af31-6475c8567513", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.047281, - "y": 25.364598 - }, - "endPoint": { - "x": 326.064922, - "y": 25.378785 - } - } - }, - { - "id": "4ab9ca15-b201-5f4e-b04b-a7dbe4f0f356", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.064922, - "y": 25.378785 - }, - "endPoint": { - "x": 326.077344, - "y": 25.388782 - } - } - }, - { - "id": "546d3c34-4a48-5c1f-af39-821066d176db", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.077344, - "y": 25.388782 - }, - "endPoint": { - "x": 326.089767, - "y": 25.398777 - } - } - }, - { - "id": "9322b546-a803-5dfb-aa23-61c274c7cf56", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.089767, - "y": 25.398777 - }, - "endPoint": { - "x": 326.10219, - "y": 25.408772 - } - } - }, - { - "id": "d3b0dcd3-0b58-5e17-bc61-127c1ff1b4a8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.10219, - "y": 25.408772 - }, - "endPoint": { - "x": 326.114614, - "y": 25.418767 - } - } - }, - { - "id": "3e515d09-8dfc-5299-9082-ef37877c668c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.114614, - "y": 25.418767 - }, - "endPoint": { - "x": 326.131152, - "y": 25.432059 - } - } - }, - { - "id": "2e14987b-80f1-5bdf-94b4-aaae94cd49d6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.131152, - "y": 25.432059 - }, - "endPoint": { - "x": 326.139951, - "y": 25.439125 - } - } - }, - { - "id": "dcf54fa8-e7b1-59f7-bcf4-a8458058fdc5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.139951, - "y": 25.439125 - }, - "endPoint": { - "x": 326.14875, - "y": 25.44619 - } - } - }, - { - "id": "2bdf67ca-2af5-5b66-8251-ee2a909d7514", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.14875, - "y": 25.44619 - }, - "endPoint": { - "x": 326.157551, - "y": 25.453255 - } - } - }, - { - "id": "af945f2b-3e67-53e5-a962-fe475b421ce5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.157551, - "y": 25.453255 - }, - "endPoint": { - "x": 326.166352, - "y": 25.460318 - } - } - } - ] - }, - { - "id": "0d064f76-933f-59ad-bf14-ea5e0a1d5513", - "type": "PolyLine", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": null, - "children": [ - { - "id": "a4029000-e8b3-5035-8200-7c940831597b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.951372, - "y": 24.630935 - }, - "endPoint": { - "x": 327.791334, - "y": 24.630935 - } - } - }, - { - "id": "9ac382c1-8277-5c80-a7b4-2413834774bc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.791334, - "y": 24.630935 - }, - "endPoint": { - "x": 327.815743, - "y": 24.613187 - } - } - }, - { - "id": "6bf32c10-d18a-5a90-bba9-40cf4f06d1dd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.815743, - "y": 24.613187 - }, - "endPoint": { - "x": 327.846593, - "y": 24.595924 - } - } - }, - { - "id": "b75c3e75-e29f-582f-850a-72ffc5ea531f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.846593, - "y": 24.595924 - }, - "endPoint": { - "x": 327.890816, - "y": 24.587773 - } - } - }, - { - "id": "51816ed9-4e44-5069-b49f-e7ad6cbb9c21", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.890816, - "y": 24.587773 - }, - "endPoint": { - "x": 327.95557, - "y": 24.58886 - } - } - }, - { - "id": "bcd4c7d0-bfda-571d-af08-60c2f9d793d4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.95557, - "y": 24.58886 - }, - "endPoint": { - "x": 328.0699, - "y": 24.58886 - } - } - }, - { - "id": "f3c8ca09-7ddf-5522-98bf-2b61849434e2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.0699, - "y": 24.58886 - }, - "endPoint": { - "x": 328.166292, - "y": 24.58662 - } - } - }, - { - "id": "1320be94-b545-5f73-ae67-aa21615992cd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.166292, - "y": 24.58662 - }, - "endPoint": { - "x": 328.267174, - "y": 24.577659 - } - } - }, - { - "id": "eac7e133-9247-5996-9f02-5ff866ee7124", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.267174, - "y": 24.577659 - }, - "endPoint": { - "x": 328.347874, - "y": 24.595582 - } - } - }, - { - "id": "1905946b-e531-52e6-b59d-d9a95bcbd66d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.347874, - "y": 24.595582 - }, - "endPoint": { - "x": 328.39943, - "y": 24.658316 - } - } - }, - { - "id": "40d89fd9-f22b-5055-8d2a-8b78d2909231", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.39943, - "y": 24.658316 - }, - "endPoint": { - "x": 328.415127, - "y": 24.696406 - } - } - }, - { - "id": "f681ce29-73f0-56bf-b18b-37e631334ba7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.415127, - "y": 24.696406 - }, - "endPoint": { - "x": 328.410642, - "y": 24.747934 - } - } - }, - { - "id": "99380d27-975d-5fcf-b9ee-909419764653", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.410642, - "y": 24.747934 - }, - "endPoint": { - "x": 328.374777, - "y": 24.788265 - } - } - }, - { - "id": "39808390-959b-5ecc-be96-cbe097b963cd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.374777, - "y": 24.788265 - }, - "endPoint": { - "x": 328.303039, - "y": 24.824112 - } - } - }, - { - "id": "e58c8b8c-0090-55ce-9bbc-b9ff26576098", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.303039, - "y": 24.824112 - }, - "endPoint": { - "x": 328.249235, - "y": 24.842036 - } - } - }, - { - "id": "de567365-2ff8-5196-ba50-e53183453a16", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.249235, - "y": 24.842036 - }, - "endPoint": { - "x": 328.123699, - "y": 24.848758 - } - } - }, - { - "id": "a04f61ef-fa7a-57ab-959c-40dd08944f18", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.123699, - "y": 24.848758 - }, - "endPoint": { - "x": 327.971261, - "y": 24.848758 - } - } - }, - { - "id": "8eae05ed-75e4-5d70-a3a6-c864ce17a8ab", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.971261, - "y": 24.848758 - }, - "endPoint": { - "x": 327.895045, - "y": 24.835314 - } - } - }, - { - "id": "397a73af-8a94-592d-8d99-22810d2f4a94", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.895045, - "y": 24.835314 - }, - "endPoint": { - "x": 327.852452, - "y": 24.821872 - } - } - }, - { - "id": "b89aee3b-66d4-598a-92d3-811d478be705", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.852452, - "y": 24.821872 - }, - "endPoint": { - "x": 327.787896, - "y": 24.791237 - } - } - }, - { - "id": "e4fc9000-313f-5a70-a8dc-d684048aa55b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.787896, - "y": 24.791237 - }, - "endPoint": { - "x": 325.720449, - "y": 24.791237 - } - } - }, - { - "id": "b0c67fa7-8eee-5cf2-b6bc-527887e00b4b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.720449, - "y": 24.791237 - }, - "endPoint": { - "x": 325.6061, - "y": 24.80351 - } - } - }, - { - "id": "4b7f9ad1-41bc-5f23-9087-e4dc48d6dd85", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.6061, - "y": 24.80351 - }, - "endPoint": { - "x": 325.514394, - "y": 24.812989 - } - } - }, - { - "id": "ff6a79bb-66bd-5c00-a124-9109bbb84bc5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.514394, - "y": 24.812989 - }, - "endPoint": { - "x": 325.44325, - "y": 24.827213 - } - } - }, - { - "id": "9166993b-2044-50fc-8d21-dea071929027", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.44325, - "y": 24.827213 - }, - "endPoint": { - "x": 325.364198, - "y": 24.839853 - } - } - }, - { - "id": "41826b74-06b2-5e88-905c-c963a8987f2d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.364198, - "y": 24.839853 - }, - "endPoint": { - "x": 325.305696, - "y": 24.844595 - } - } - }, - { - "id": "0894b80b-41fe-575f-b52e-8af12dc3c38a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.305696, - "y": 24.844595 - }, - "endPoint": { - "x": 325.253522, - "y": 24.847756 - } - } - }, - { - "id": "2dbb2af0-26ae-5f39-891e-d288e42bb3fb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.253522, - "y": 24.847756 - }, - "endPoint": { - "x": 325.212416, - "y": 24.841434 - } - } - }, - { - "id": "edc5dfa6-1c08-507a-a130-5d36607d516e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.212416, - "y": 24.841434 - }, - "endPoint": { - "x": 325.182378, - "y": 24.814571 - } - } - }, - { - "id": "82cc9293-711e-5515-a04c-5f182bc9de83", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.182378, - "y": 24.814571 - }, - "endPoint": { - "x": 325.168143, - "y": 24.784546 - } - } - }, - { - "id": "ea984990-7077-5d4a-bf6a-795a151cc12b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.168143, - "y": 24.784546 - }, - "endPoint": { - "x": 325.163402, - "y": 24.760843 - } - } - }, - { - "id": "a9b17f11-572c-5ea0-bce3-5c33bc39f46b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.163402, - "y": 24.760843 - }, - "endPoint": { - "x": 325.163402, - "y": 24.730822 - } - } - }, - { - "id": "31b6f478-9df1-50dc-8ff0-a7ba591123e5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.163402, - "y": 24.730822 - }, - "endPoint": { - "x": 325.188699, - "y": 24.692898 - } - } - }, - { - "id": "a5e860ab-314d-52bd-9af2-8878d78a29f0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.188699, - "y": 24.692898 - }, - "endPoint": { - "x": 325.259849, - "y": 24.654973 - } - } - }, - { - "id": "dd1dd7b4-94d6-5668-96c1-94bac937460f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.259849, - "y": 24.654973 - }, - "endPoint": { - "x": 325.318345, - "y": 24.63127 - } - } - }, - { - "id": "d017c100-2683-51ec-93bb-af91ef0fcd50", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.318345, - "y": 24.63127 - }, - "endPoint": { - "x": 325.362618, - "y": 24.612306 - } - } - }, - { - "id": "495666f1-4850-517b-bd1e-337aae906995", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.362618, - "y": 24.612306 - }, - "endPoint": { - "x": 325.408465, - "y": 24.599667 - } - } - }, - { - "id": "284fdc3a-7e9a-5014-9a80-60f21f6ef91f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.408465, - "y": 24.599667 - }, - "endPoint": { - "x": 325.487517, - "y": 24.591767 - } - } - }, - { - "id": "83f01b19-2fc8-597d-af52-f41a1df00910", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.487517, - "y": 24.591767 - }, - "endPoint": { - "x": 325.557087, - "y": 24.588606 - } - } - }, - { - "id": "b76fa2f5-e707-52e3-abdb-0ab91be2d6dc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.557087, - "y": 24.588606 - }, - "endPoint": { - "x": 325.647206, - "y": 24.590185 - } - } - }, - { - "id": "de2b8aa8-273e-58c0-a35c-c5a5edb00261", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.647206, - "y": 24.590185 - }, - "endPoint": { - "x": 325.71835, - "y": 24.596506 - } - } - }, - { - "id": "5a96a9ec-9be1-5878-af51-06bb48f66c24", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.71835, - "y": 24.596506 - }, - "endPoint": { - "x": 325.783173, - "y": 24.607567 - } - } - }, - { - "id": "c5b7bbe6-328d-580d-af86-63b24bd5494e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.783173, - "y": 24.607567 - }, - "endPoint": { - "x": 325.817752, - "y": 24.630935 - } - } - }, - { - "id": "ecfd0eb1-21ca-507b-a988-20428860a6e5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.817752, - "y": 24.630935 - }, - "endPoint": { - "x": 326.607007, - "y": 24.630935 - } - } - }, - { - "id": "443c1cb6-c8be-56e6-9976-a87130de0af0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.607007, - "y": 24.630935 - }, - "endPoint": { - "x": 326.607007, - "y": 24.163075 - } - } - }, - { - "id": "d6de5398-fdc3-568c-b885-a5f21b5362b0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.607007, - "y": 24.163075 - }, - "endPoint": { - "x": 326.153547, - "y": 24.163075 - } - } - }, - { - "id": "a0930e1f-32a3-532f-8ce8-5283df73aec3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.153547, - "y": 24.163075 - }, - "endPoint": { - "x": 326.056616, - "y": 24.198597 - } - } - }, - { - "id": "e355df86-ae8c-54fc-96c3-cb7a31549c5d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.056616, - "y": 24.198597 - }, - "endPoint": { - "x": 326.017549, - "y": 24.205826 - } - } - }, - { - "id": "7a62da1a-e3d0-5c81-abff-8b5dd51e69ea", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.017549, - "y": 24.205826 - }, - "endPoint": { - "x": 325.978872, - "y": 24.205826 - } - } - }, - { - "id": "21845e7b-9325-5bb8-ac87-d012f20353a0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.978872, - "y": 24.205826 - }, - "endPoint": { - "x": 325.919253, - "y": 24.205826 - } - } - }, - { - "id": "03145873-740d-5dbb-aac8-1a5642a646cb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.919253, - "y": 24.205826 - }, - "endPoint": { - "x": 325.87413, - "y": 24.196166 - } - } - }, - { - "id": "65cc6607-6d16-5fdd-a1d8-8bd6fa407331", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.87413, - "y": 24.196166 - }, - "endPoint": { - "x": 325.848346, - "y": 24.184889 - } - } - }, - { - "id": "2fe5122b-5ca0-50c7-9b97-166504ae94da", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.848346, - "y": 24.184889 - }, - "endPoint": { - "x": 325.845123, - "y": 24.154292 - } - } - }, - { - "id": "1d5b8de7-9578-580d-bccc-6d59a2738df8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.845123, - "y": 24.154292 - }, - "endPoint": { - "x": 325.845123, - "y": 24.115637 - } - } - }, - { - "id": "2aa6433a-0c38-52a7-a07c-17bc65053b90", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.845123, - "y": 24.115637 - }, - "endPoint": { - "x": 325.861238, - "y": 24.078596 - } - } - }, - { - "id": "87db96bd-06bf-5302-b101-0d7ee0ce1743", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.861238, - "y": 24.078596 - }, - "endPoint": { - "x": 325.890245, - "y": 24.041552 - } - } - }, - { - "id": "9f36d8fc-ea9e-59b0-a349-c2f0f1d9b404", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.890245, - "y": 24.041552 - }, - "endPoint": { - "x": 325.945031, - "y": 24.014175 - } - } - }, - { - "id": "1ab0aec8-2e8d-529a-8e71-a26db34968fb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.945031, - "y": 24.014175 - }, - "endPoint": { - "x": 326.014326, - "y": 23.988404 - } - } - }, - { - "id": "8201c781-3917-5b61-bbed-6f2a39fd9da2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.014326, - "y": 23.988404 - }, - "endPoint": { - "x": 326.107787, - "y": 23.959417 - } - } - }, - { - "id": "6fcdbcc5-e99f-52ec-94e3-2f354b91c00d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.107787, - "y": 23.959417 - }, - "endPoint": { - "x": 326.17772, - "y": 23.949324 - } - } - }, - { - "id": "bc840755-bdbd-5bf0-b596-8429c0ad738f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.17772, - "y": 23.949324 - }, - "endPoint": { - "x": 326.17772, - "y": 23.366281 - } - } - }, - { - "id": "b8cfd1ab-4146-5bd6-8e4e-ef31cab96d69", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.17772, - "y": 23.366281 - }, - "endPoint": { - "x": 326.055864, - "y": 23.366281 - } - } - }, - { - "id": "2c6df564-ef7c-5248-ac57-82aa3d18f23e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.055864, - "y": 23.366281 - }, - "endPoint": { - "x": 326.014632, - "y": 23.385417 - } - } - }, - { - "id": "f6cbffac-851b-538b-bb13-1be9c488d1ed", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.014632, - "y": 23.385417 - }, - "endPoint": { - "x": 325.986437, - "y": 23.393308 - } - } - }, - { - "id": "1c27d029-3ab7-5dcd-973a-f18a9ecba2b4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.986437, - "y": 23.393308 - }, - "endPoint": { - "x": 325.952601, - "y": 23.396688 - } - } - }, - { - "id": "9e1792a3-e415-56d0-8235-86c92e0fa02a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.952601, - "y": 23.396688 - }, - "endPoint": { - "x": 325.900714, - "y": 23.396688 - } - } - }, - { - "id": "04c1eb76-378a-5722-833c-f600850189fe", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.900714, - "y": 23.396688 - }, - "endPoint": { - "x": 325.844317, - "y": 23.395563 - } - } - }, - { - "id": "b3980b62-9491-5620-97f8-7fd7a6a41612", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.844317, - "y": 23.395563 - }, - "endPoint": { - "x": 325.782286, - "y": 23.380907 - } - } - }, - { - "id": "ad11b23e-d1d9-5d8e-a313-e25cef7007df", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.782286, - "y": 23.380907 - }, - "endPoint": { - "x": 325.754091, - "y": 23.36287 - } - } - }, - { - "id": "6af6124e-0bbc-5037-a9e4-a46967e1570c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.754091, - "y": 23.36287 - }, - "endPoint": { - "x": 325.748451, - "y": 23.341454 - } - } - }, - { - "id": "4bb0b02f-0a58-573f-a90e-d2066a091f33", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.748451, - "y": 23.341454 - }, - "endPoint": { - "x": 325.748451, - "y": 23.317782 - } - } - }, - { - "id": "44e10f2a-0491-55fc-ad4b-267cc54bcf95", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.748451, - "y": 23.317782 - }, - "endPoint": { - "x": 325.754091, - "y": 23.294107 - } - } - }, - { - "id": "9e0d705d-5bcb-589e-94f7-60afafc903e2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.754091, - "y": 23.294107 - }, - "endPoint": { - "x": 325.772136, - "y": 23.263672 - } - } - }, - { - "id": "ff4a6893-c20a-5149-a055-4ffe6b411818", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.772136, - "y": 23.263672 - }, - "endPoint": { - "x": 325.801462, - "y": 23.241125 - } - } - }, - { - "id": "48605be7-9c9c-51cc-83f2-f3447cc7dc0c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.801462, - "y": 23.241125 - }, - "endPoint": { - "x": 325.845448, - "y": 23.220836 - } - } - }, - { - "id": "e8443532-7141-5241-9163-6ab0f6ab2220", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.845448, - "y": 23.220836 - }, - "endPoint": { - "x": 325.908609, - "y": 23.193781 - } - } - }, - { - "id": "e8f47e24-601e-5522-a258-852f9736a912", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.908609, - "y": 23.193781 - }, - "endPoint": { - "x": 325.985306, - "y": 23.171234 - } - } - }, - { - "id": "4341bbde-11db-580d-89fc-565e8ae2d5a6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.985306, - "y": 23.171234 - }, - "endPoint": { - "x": 326.060879, - "y": 23.159964 - } - } - }, - { - "id": "80fe779a-4dc5-5e23-b6c9-3dd6429a8a03", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.060879, - "y": 23.159964 - }, - "endPoint": { - "x": 326.13419, - "y": 23.159964 - } - } - }, - { - "id": "66b6ae57-231c-5d7b-a99f-dbbad09eb461", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.13419, - "y": 23.159964 - }, - "endPoint": { - "x": 326.195096, - "y": 23.171234 - } - } - }, - { - "id": "f1a17709-de64-56de-a542-fbc6932f5ee5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.195096, - "y": 23.171234 - }, - "endPoint": { - "x": 326.249232, - "y": 23.192654 - } - } - }, - { - "id": "3c80f39a-b4eb-5b6b-8975-5b6bce0c991d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.249232, - "y": 23.192654 - }, - "endPoint": { - "x": 326.294383, - "y": 23.205979 - } - } - }, - { - "id": "05e127b4-3acb-5afe-85df-c98c6bd08e5a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.294383, - "y": 23.205979 - }, - "endPoint": { - "x": 327.232194, - "y": 23.205979 - } - } - }, - { - "id": "3a383d3f-9498-5b5f-a09a-2f90782b67d6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.232194, - "y": 23.205979 - }, - "endPoint": { - "x": 327.359603, - "y": 23.182367 - } - } - }, - { - "id": "7fdb6391-27a5-5ca2-81ef-725cc432bc3c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.359603, - "y": 23.182367 - }, - "endPoint": { - "x": 327.502247, - "y": 23.182367 - } - } - }, - { - "id": "9ea717bf-bbf5-5d7b-92ce-4c7d725abcf5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.502247, - "y": 23.182367 - }, - "endPoint": { - "x": 327.699165, - "y": 23.184892 - } - } - }, - { - "id": "5e17e968-9480-5c08-87a4-1e6bb5a362be", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.699165, - "y": 23.184892 - }, - "endPoint": { - "x": 327.748391, - "y": 23.188676 - } - } - }, - { - "id": "34b54bc7-53a7-5fc5-98c1-93ec2f2cc4fd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.748391, - "y": 23.188676 - }, - "endPoint": { - "x": 327.781214, - "y": 23.201293 - } - } - }, - { - "id": "ba3209c1-6147-5d80-a405-ee058a137fe8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.781214, - "y": 23.201293 - }, - "endPoint": { - "x": 327.811508, - "y": 23.220216 - } - } - }, - { - "id": "ec3ccb71-90dd-53ee-a865-5c001a9e4473", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.811508, - "y": 23.220216 - }, - "endPoint": { - "x": 327.836755, - "y": 23.24671 - } - } - }, - { - "id": "0cf9ab6a-b144-5306-bd39-7ee375a6611d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.836755, - "y": 23.24671 - }, - "endPoint": { - "x": 327.846849, - "y": 23.271942 - } - } - }, - { - "id": "6416de93-ccab-59d2-afc6-8edd3d6f1761", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.846849, - "y": 23.271942 - }, - "endPoint": { - "x": 327.845588, - "y": 23.299698 - } - } - }, - { - "id": "50658ee7-acf1-5be3-8fe6-d21d6745a826", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.845588, - "y": 23.299698 - }, - "endPoint": { - "x": 327.835494, - "y": 23.335023 - } - } - }, - { - "id": "5624dc41-5853-5bb3-859d-e89cc7a471b2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.835494, - "y": 23.335023 - }, - "endPoint": { - "x": 327.816555, - "y": 23.360255 - } - } - }, - { - "id": "209b7738-bb9d-5262-96a8-112ff85c0e7a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.816555, - "y": 23.360255 - }, - "endPoint": { - "x": 327.781214, - "y": 23.384224 - } - } - }, - { - "id": "104e25ed-a84d-57fe-9fda-2aa742c1cdda", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.781214, - "y": 23.384224 - }, - "endPoint": { - "x": 327.748391, - "y": 23.404409 - } - } - }, - { - "id": "ed95a96f-42ce-5be6-88ad-48957f4b8891", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.748391, - "y": 23.404409 - }, - "endPoint": { - "x": 327.70295, - "y": 23.425857 - } - } - }, - { - "id": "213e961f-cb09-5bea-b513-f80d8c615502", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.70295, - "y": 23.425857 - }, - "endPoint": { - "x": 327.656247, - "y": 23.433425 - } - } - }, - { - "id": "364bd817-6fc6-5482-b111-7faa5d7c82bc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.656247, - "y": 23.433425 - }, - "endPoint": { - "x": 327.567882, - "y": 23.438471 - } - } - }, - { - "id": "f9805224-107d-5483-87d2-879530190407", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.567882, - "y": 23.438471 - }, - "endPoint": { - "x": 327.492147, - "y": 23.438471 - } - } - }, - { - "id": "40161391-6b67-5447-98d4-a0e0541d1742", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.492147, - "y": 23.438471 - }, - "endPoint": { - "x": 327.441653, - "y": 23.432166 - } - } - }, - { - "id": "e74489a0-9bf9-5713-8fc7-b6350f6b4a81", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.441653, - "y": 23.432166 - }, - "endPoint": { - "x": 327.371215, - "y": 23.416491 - } - } - }, - { - "id": "dd66b613-5942-5e13-8c64-20328b7ada69", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.371215, - "y": 23.416491 - }, - "endPoint": { - "x": 327.371215, - "y": 24.028193 - } - } - }, - { - "id": "26e0334b-6ab9-5590-870b-1b1b873b2a49", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.371215, - "y": 24.028193 - }, - "endPoint": { - "x": 327.425082, - "y": 24.018911 - } - } - }, - { - "id": "5c2350c8-8826-5f9b-a00f-bb8bfd8f043c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.425082, - "y": 24.018911 - }, - "endPoint": { - "x": 327.482928, - "y": 24.011371 - } - } - }, - { - "id": "7d9fd6c2-83d5-52df-bc0b-cbff7c198cf3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.482928, - "y": 24.011371 - }, - "endPoint": { - "x": 327.540774, - "y": 24.0076 - } - } - }, - { - "id": "4ba9f16a-6810-58eb-b059-69caffef27f9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.540774, - "y": 24.0076 - }, - "endPoint": { - "x": 327.603648, - "y": 24.005084 - } - } - }, - { - "id": "898a0f11-2f47-5533-94a6-5278a863075b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.603648, - "y": 24.005084 - }, - "endPoint": { - "x": 327.656466, - "y": 24.006344 - } - } - }, - { - "id": "a902b49e-ea25-5ddf-ab74-00344dd32861", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.656466, - "y": 24.006344 - }, - "endPoint": { - "x": 327.697959, - "y": 24.016396 - } - } - }, - { - "id": "ab00570f-8b26-5a4c-b091-21149fb59b5e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.697959, - "y": 24.016396 - }, - "endPoint": { - "x": 327.723112, - "y": 24.044046 - } - } - }, - { - "id": "b40a0040-c77e-5b56-9c77-35f6e4d56143", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.723112, - "y": 24.044046 - }, - "endPoint": { - "x": 327.723112, - "y": 24.081751 - } - } - }, - { - "id": "0fc8dd80-9560-5d2f-a346-356bb93c049b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.723112, - "y": 24.081751 - }, - "endPoint": { - "x": 327.718078, - "y": 24.114428 - } - } - }, - { - "id": "ee2fe555-086c-5b71-a089-1bff7947ad90", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.718078, - "y": 24.114428 - }, - "endPoint": { - "x": 327.704249, - "y": 24.147103 - } - } - }, - { - "id": "93d2551a-1ea1-56ec-83c5-46b8282ac005", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.704249, - "y": 24.147103 - }, - "endPoint": { - "x": 327.672812, - "y": 24.183552 - } - } - }, - { - "id": "fccd53e2-7087-58b3-8692-92fcad3a1344", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.672812, - "y": 24.183552 - }, - "endPoint": { - "x": 327.635085, - "y": 24.201147 - } - } - }, - { - "id": "0c3f63ac-0aa9-507f-9118-7386b10e4cd0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.635085, - "y": 24.201147 - }, - "endPoint": { - "x": 327.588557, - "y": 24.213714 - } - } - }, - { - "id": "cbb208dd-0094-5e11-90a1-627fda61d2c3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.588557, - "y": 24.213714 - }, - "endPoint": { - "x": 327.519393, - "y": 24.221254 - } - } - }, - { - "id": "7618f045-8938-5054-a58c-305cdee47c42", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.519393, - "y": 24.221254 - }, - "endPoint": { - "x": 327.437662, - "y": 24.226281 - } - } - }, - { - "id": "727b2766-1178-5cd0-94f8-d55b545cc5bf", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.437662, - "y": 24.226281 - }, - "endPoint": { - "x": 327.371009, - "y": 24.226281 - } - } - }, - { - "id": "cd3bf340-0cf2-54e4-a070-9738de511a7b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.371009, - "y": 24.226281 - }, - "endPoint": { - "x": 327.298078, - "y": 24.21497 - } - } - }, - { - "id": "43b512a6-376c-56d2-9c2a-8f9ce5b1a7b6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.298078, - "y": 24.21497 - }, - "endPoint": { - "x": 327.23646, - "y": 24.193607 - } - } - }, - { - "id": "6ec14860-0d3b-502a-9072-568fe9ce85ac", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.23646, - "y": 24.193607 - }, - "endPoint": { - "x": 327.161184, - "y": 24.163075 - } - } - }, - { - "id": "90a5d422-9169-5489-9e1d-e2a7db312207", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.161184, - "y": 24.163075 - }, - "endPoint": { - "x": 326.951372, - "y": 24.163075 - } - } - }, - { - "id": "373d3500-1919-5331-a4cd-d5c96afb412c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.951372, - "y": 24.163075 - }, - "endPoint": { - "x": 326.951372, - "y": 24.630935 - } - } - } - ] - }, - { - "id": "7837ac77-bcbc-5c20-8119-7240b7a349bb", - "type": "PolyLine", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": null, - "children": [ - { - "id": "d995d9c8-0288-5efb-ac9a-f45605590cc2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.026851, - "y": 24.02163 - }, - "endPoint": { - "x": 327.026851, - "y": 23.366281 - } - } - }, - { - "id": "5d0511d3-9f9a-5d15-be9c-78495116c674", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.026851, - "y": 23.366281 - }, - "endPoint": { - "x": 326.522084, - "y": 23.366281 - } - } - }, - { - "id": "7b97fe11-e3a6-5590-958d-6cc45f0c940c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.522084, - "y": 23.366281 - }, - "endPoint": { - "x": 326.522084, - "y": 24.02163 - } - } - }, - { - "id": "f815d65b-73eb-5160-9c2c-8ada4023a884", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.522084, - "y": 24.02163 - }, - "endPoint": { - "x": 327.026851, - "y": 24.02163 - } - } - } - ] - }, - { - "id": "3bae56c1-52a5-52c6-949a-4bf2d3c04747", - "type": "PolyLine", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": null, - "children": [ - { - "id": "48f9e41a-4060-56b9-a064-47be76043bd2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.522084, - "y": 24.02163 - }, - "endPoint": { - "x": 327.026851, - "y": 24.02163 - } - } - }, - { - "id": "0dd39132-daf1-53c4-86fa-39f6cc7a3dfd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.026851, - "y": 24.02163 - }, - "endPoint": { - "x": 327.026851, - "y": 23.366281 - } - } - }, - { - "id": "f6ea9dcb-be27-59e0-b65f-c0e8841b94d7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.026851, - "y": 23.366281 - }, - "endPoint": { - "x": 326.522084, - "y": 23.366281 - } - } - }, - { - "id": "76a1574e-5350-5b58-bf44-1366dd31f323", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.522084, - "y": 23.366281 - }, - "endPoint": { - "x": 326.522084, - "y": 24.02163 - } - } - } - ] - }, - { - "id": "e897ade9-2850-5dcb-b909-6d16008bb5de", - "type": "PolyLine", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": null, - "children": [ - { - "id": "2120157c-9db3-5963-9a2b-84f20ded9624", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.17772, - "y": 23.366281 - }, - "endPoint": { - "x": 326.17772, - "y": 23.949324 - } - } - }, - { - "id": "2b9d1cdf-7a2a-5b9c-9574-7e161071637a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.17772, - "y": 23.949324 - }, - "endPoint": { - "x": 326.107787, - "y": 23.959417 - } - } - }, - { - "id": "d862f3cb-4af1-535a-9a46-7a6e3ea52581", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.107787, - "y": 23.959417 - }, - "endPoint": { - "x": 326.014326, - "y": 23.988404 - } - } - }, - { - "id": "06426cdd-f372-5cf5-afb0-2030ff4dff40", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.014326, - "y": 23.988404 - }, - "endPoint": { - "x": 325.945031, - "y": 24.014175 - } - } - }, - { - "id": "a2cf39ca-f442-5aa5-b1d3-c879f74c8558", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.945031, - "y": 24.014175 - }, - "endPoint": { - "x": 325.890245, - "y": 24.041552 - } - } - }, - { - "id": "c4c92e05-f46c-5eb9-ab55-ecfbcfa652fc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.890245, - "y": 24.041552 - }, - "endPoint": { - "x": 325.861238, - "y": 24.078596 - } - } - }, - { - "id": "a43a37a0-ffeb-5492-80db-27345b416fc3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.861238, - "y": 24.078596 - }, - "endPoint": { - "x": 325.845123, - "y": 24.115637 - } - } - }, - { - "id": "9187853a-205e-5ffa-8408-6bcda93c02e4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.845123, - "y": 24.115637 - }, - "endPoint": { - "x": 325.845123, - "y": 24.154292 - } - } - }, - { - "id": "5bc8cc48-0d04-5819-b727-1e0edb5ddfa4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.845123, - "y": 24.154292 - }, - "endPoint": { - "x": 325.848346, - "y": 24.184889 - } - } - }, - { - "id": "8f46b33e-29ac-5c1a-939c-e58c587d5cbe", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.848346, - "y": 24.184889 - }, - "endPoint": { - "x": 325.87413, - "y": 24.196166 - } - } - }, - { - "id": "7ba17bf5-73ab-5140-bba9-d27b338c4932", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.87413, - "y": 24.196166 - }, - "endPoint": { - "x": 325.919253, - "y": 24.205826 - } - } - }, - { - "id": "4d935b33-4113-5e27-bb63-7d9c982a6ae6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.919253, - "y": 24.205826 - }, - "endPoint": { - "x": 325.978872, - "y": 24.205826 - } - } - }, - { - "id": "d71b31e7-722f-5a07-9e6a-3a117db51112", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.978872, - "y": 24.205826 - }, - "endPoint": { - "x": 326.017549, - "y": 24.205826 - } - } - }, - { - "id": "cca4e1c2-6b19-5dfb-b2bd-c67552baa25b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.017549, - "y": 24.205826 - }, - "endPoint": { - "x": 326.061053, - "y": 24.197776 - } - } - }, - { - "id": "115ef72d-d843-5460-a30f-3a8ea271aaf6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.061053, - "y": 24.197776 - }, - "endPoint": { - "x": 326.085226, - "y": 24.188112 - } - } - }, - { - "id": "0812adf2-1f5a-58ec-b2bc-eb95f927b5b6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.085226, - "y": 24.188112 - }, - "endPoint": { - "x": 326.133572, - "y": 24.170395 - } - } - }, - { - "id": "6dfb6100-0e21-51b3-8e3e-936c393bba7a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.133572, - "y": 24.170395 - }, - "endPoint": { - "x": 326.159208, - "y": 24.163075 - } - } - }, - { - "id": "97b4af6b-7978-5aa4-830f-b48c8be93647", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.159208, - "y": 24.163075 - }, - "endPoint": { - "x": 326.607007, - "y": 24.163075 - } - } - }, - { - "id": "a638da27-efc1-57e6-92ba-1147b793707a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.607007, - "y": 24.163075 - }, - "endPoint": { - "x": 326.607007, - "y": 24.630935 - } - } - }, - { - "id": "3719dd24-34d6-50ad-bea5-647d9775bd42", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.607007, - "y": 24.630935 - }, - "endPoint": { - "x": 325.817752, - "y": 24.630935 - } - } - }, - { - "id": "46e298fa-2a97-5c27-a6f1-148513be8f13", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.817752, - "y": 24.630935 - }, - "endPoint": { - "x": 325.783173, - "y": 24.607567 - } - } - }, - { - "id": "614fec1f-48ae-559f-aca1-3589b4d6d12c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.783173, - "y": 24.607567 - }, - "endPoint": { - "x": 325.71835, - "y": 24.596506 - } - } - }, - { - "id": "68743717-054a-5446-8297-c7577185aa68", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.71835, - "y": 24.596506 - }, - "endPoint": { - "x": 325.647206, - "y": 24.590185 - } - } - }, - { - "id": "bc7f6ec7-aa6d-5a8c-aa96-1c8a08061644", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.647206, - "y": 24.590185 - }, - "endPoint": { - "x": 325.557087, - "y": 24.588606 - } - } - }, - { - "id": "60055ad0-d783-522c-b18e-8be2f1890542", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.557087, - "y": 24.588606 - }, - "endPoint": { - "x": 325.487517, - "y": 24.591767 - } - } - }, - { - "id": "84a15652-1d20-507c-9c81-1f198682b27f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.487517, - "y": 24.591767 - }, - "endPoint": { - "x": 325.408465, - "y": 24.599667 - } - } - }, - { - "id": "42d3d878-77fe-57b6-8918-0b946202e7af", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.408465, - "y": 24.599667 - }, - "endPoint": { - "x": 325.362618, - "y": 24.612306 - } - } - }, - { - "id": "4c10df06-ce4a-5565-8541-eb41e8d0d269", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.362618, - "y": 24.612306 - }, - "endPoint": { - "x": 325.318345, - "y": 24.63127 - } - } - }, - { - "id": "aea1d576-b64e-5bff-9e33-59553bb8357f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.318345, - "y": 24.63127 - }, - "endPoint": { - "x": 325.259849, - "y": 24.654973 - } - } - }, - { - "id": "b76ab04f-3c21-5b22-9f6e-ef831eb957ce", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.259849, - "y": 24.654973 - }, - "endPoint": { - "x": 325.188699, - "y": 24.692898 - } - } - }, - { - "id": "990bdfff-9f08-5404-9377-37ac7c15cef3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.188699, - "y": 24.692898 - }, - "endPoint": { - "x": 325.163402, - "y": 24.730822 - } - } - }, - { - "id": "e1836ea3-0eed-5fb3-889c-d8774bb2eeb0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.163402, - "y": 24.730822 - }, - "endPoint": { - "x": 325.163402, - "y": 24.760843 - } - } - }, - { - "id": "6a08ed40-9844-5f74-ad59-12a31cb954bb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.163402, - "y": 24.760843 - }, - "endPoint": { - "x": 325.168143, - "y": 24.784546 - } - } - }, - { - "id": "c6332650-a5a0-5bf9-9871-b6990ec15dba", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.168143, - "y": 24.784546 - }, - "endPoint": { - "x": 325.182378, - "y": 24.814571 - } - } - }, - { - "id": "9b0abced-760e-52e3-b9ed-9a5817419e11", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.182378, - "y": 24.814571 - }, - "endPoint": { - "x": 325.212416, - "y": 24.841434 - } - } - }, - { - "id": "be4fa0e6-0459-5d5f-a257-f5ad510b3183", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.212416, - "y": 24.841434 - }, - "endPoint": { - "x": 325.253522, - "y": 24.847756 - } - } - }, - { - "id": "b5939977-42ee-5916-99b0-b603baea6cb7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.253522, - "y": 24.847756 - }, - "endPoint": { - "x": 325.305696, - "y": 24.844595 - } - } - }, - { - "id": "081da9c5-77d0-5f77-a6ee-0a3095cea220", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.305696, - "y": 24.844595 - }, - "endPoint": { - "x": 325.364198, - "y": 24.839853 - } - } - }, - { - "id": "4ed2362d-9efd-5a6e-9640-fc9e630e2a83", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.364198, - "y": 24.839853 - }, - "endPoint": { - "x": 325.44325, - "y": 24.827213 - } - } - }, - { - "id": "aaed59e4-c79c-58f0-ba7e-1a8487c17d6e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.44325, - "y": 24.827213 - }, - "endPoint": { - "x": 325.514394, - "y": 24.812989 - } - } - }, - { - "id": "5480bba7-222b-5133-a995-33d3aabcbf76", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.514394, - "y": 24.812989 - }, - "endPoint": { - "x": 325.6061, - "y": 24.80351 - } - } - }, - { - "id": "0ef1f7b8-fa6c-598a-bb41-3f2d40d0f898", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.6061, - "y": 24.80351 - }, - "endPoint": { - "x": 325.720449, - "y": 24.791237 - } - } - }, - { - "id": "77f20d96-447f-54da-87fb-f91a747d2941", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.720449, - "y": 24.791237 - }, - "endPoint": { - "x": 327.787896, - "y": 24.791237 - } - } - }, - { - "id": "98e06ae6-a073-56c6-9243-ad8a097faa6c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.787896, - "y": 24.791237 - }, - "endPoint": { - "x": 327.852452, - "y": 24.821872 - } - } - }, - { - "id": "7271381c-f480-5675-9b88-34eb20c3f14a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.852452, - "y": 24.821872 - }, - "endPoint": { - "x": 327.895045, - "y": 24.835314 - } - } - }, - { - "id": "55cb5b5d-8ce1-5269-b888-3a17a5e1e674", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.895045, - "y": 24.835314 - }, - "endPoint": { - "x": 327.971261, - "y": 24.848758 - } - } - }, - { - "id": "485056a0-8bef-5c6a-8511-f4b467797344", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.971261, - "y": 24.848758 - }, - "endPoint": { - "x": 328.123699, - "y": 24.848758 - } - } - }, - { - "id": "30dbbbb9-8a14-5698-8e59-f4c3d2e238a8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.123699, - "y": 24.848758 - }, - "endPoint": { - "x": 328.249235, - "y": 24.842036 - } - } - }, - { - "id": "842cff01-f560-5541-b777-dff92f9b0975", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.249235, - "y": 24.842036 - }, - "endPoint": { - "x": 328.303039, - "y": 24.824112 - } - } - }, - { - "id": "4c4f2c23-5966-509e-966a-ba94b995169f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.303039, - "y": 24.824112 - }, - "endPoint": { - "x": 328.374777, - "y": 24.788265 - } - } - }, - { - "id": "3ca36e56-314c-517a-90cd-df59096a0588", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.374777, - "y": 24.788265 - }, - "endPoint": { - "x": 328.410642, - "y": 24.747934 - } - } - }, - { - "id": "e91529e6-71ea-5637-8506-b60ad2648296", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.410642, - "y": 24.747934 - }, - "endPoint": { - "x": 328.415127, - "y": 24.696406 - } - } - }, - { - "id": "e9c87840-74dc-5f1b-b31f-cc4dad7cd7f7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.415127, - "y": 24.696406 - }, - "endPoint": { - "x": 328.39943, - "y": 24.658316 - } - } - }, - { - "id": "4f591a40-35b5-5334-8b2c-5cccb274cbec", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.39943, - "y": 24.658316 - }, - "endPoint": { - "x": 328.347874, - "y": 24.595582 - } - } - }, - { - "id": "c19d4eb8-cc31-534a-8869-adafc0a6656a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.347874, - "y": 24.595582 - }, - "endPoint": { - "x": 328.267174, - "y": 24.577659 - } - } - }, - { - "id": "2903c42e-0c1c-507b-87cc-4d2c0f3c0d74", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.267174, - "y": 24.577659 - }, - "endPoint": { - "x": 328.166292, - "y": 24.58662 - } - } - }, - { - "id": "c9576514-b043-5729-bbdb-61b182f5e5f1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.166292, - "y": 24.58662 - }, - "endPoint": { - "x": 328.0699, - "y": 24.58886 - } - } - }, - { - "id": "106c0c25-b22f-5002-95dc-1da9ed57ade0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 328.0699, - "y": 24.58886 - }, - "endPoint": { - "x": 327.95557, - "y": 24.58886 - } - } - }, - { - "id": "885b1bb8-754c-5d40-a3bf-3e100c928bc4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.95557, - "y": 24.58886 - }, - "endPoint": { - "x": 327.890816, - "y": 24.587773 - } - } - }, - { - "id": "853b38b7-b670-5026-9b29-29dee69437c2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.890816, - "y": 24.587773 - }, - "endPoint": { - "x": 327.846593, - "y": 24.595924 - } - } - }, - { - "id": "07dc4844-8b0b-552d-944b-4208b42b1d39", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.846593, - "y": 24.595924 - }, - "endPoint": { - "x": 327.815743, - "y": 24.613187 - } - } - }, - { - "id": "ca70aa9a-caab-5c37-ab93-7c561c278183", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.815743, - "y": 24.613187 - }, - "endPoint": { - "x": 327.791334, - "y": 24.630935 - } - } - }, - { - "id": "a6ab989b-0c3c-53df-9808-fb47b2ebcfea", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.791334, - "y": 24.630935 - }, - "endPoint": { - "x": 326.951372, - "y": 24.630935 - } - } - }, - { - "id": "4b99b893-7d40-5e8d-9ab9-6e7f81c74efc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.951372, - "y": 24.630935 - }, - "endPoint": { - "x": 326.951372, - "y": 24.163075 - } - } - }, - { - "id": "2481fe6f-7108-5a6e-b9f2-9ea3543c31e6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.951372, - "y": 24.163075 - }, - "endPoint": { - "x": 327.161184, - "y": 24.163075 - } - } - }, - { - "id": "66e81af4-742f-59e0-8479-939d542b1299", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.161184, - "y": 24.163075 - }, - "endPoint": { - "x": 327.23646, - "y": 24.193607 - } - } - }, - { - "id": "3424b015-a4b2-541e-925f-3fdb428931bc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.23646, - "y": 24.193607 - }, - "endPoint": { - "x": 327.298078, - "y": 24.21497 - } - } - }, - { - "id": "e246a89d-3e53-5b1d-a1d2-2275a142724b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.298078, - "y": 24.21497 - }, - "endPoint": { - "x": 327.371009, - "y": 24.226281 - } - } - }, - { - "id": "709007a9-db48-5932-95b7-ebe181d5b5bf", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.371009, - "y": 24.226281 - }, - "endPoint": { - "x": 327.437662, - "y": 24.226281 - } - } - }, - { - "id": "430be505-af7f-5ffc-8d32-f65638c7808d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.437662, - "y": 24.226281 - }, - "endPoint": { - "x": 327.519393, - "y": 24.221254 - } - } - }, - { - "id": "b1156b50-d60e-5c98-a954-b6472502e1b7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.519393, - "y": 24.221254 - }, - "endPoint": { - "x": 327.588557, - "y": 24.213714 - } - } - }, - { - "id": "5d4abad9-8e9a-54f9-b8ee-baf1e49a61ee", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.588557, - "y": 24.213714 - }, - "endPoint": { - "x": 327.635085, - "y": 24.201147 - } - } - }, - { - "id": "638fb0d7-9687-5b6e-a731-0ca46af464ff", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.635085, - "y": 24.201147 - }, - "endPoint": { - "x": 327.672812, - "y": 24.183552 - } - } - }, - { - "id": "25d46ff0-6583-51bb-88a8-bfd63adc0376", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.672812, - "y": 24.183552 - }, - "endPoint": { - "x": 327.704249, - "y": 24.147103 - } - } - }, - { - "id": "be3561f5-6878-58fe-a7af-efd2ec9eb401", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.704249, - "y": 24.147103 - }, - "endPoint": { - "x": 327.718078, - "y": 24.114428 - } - } - }, - { - "id": "806be191-4d73-593d-95e3-0724c1b38061", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.718078, - "y": 24.114428 - }, - "endPoint": { - "x": 327.723112, - "y": 24.081751 - } - } - }, - { - "id": "670b8477-9430-5bec-8b80-ecc39c28045f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.723112, - "y": 24.081751 - }, - "endPoint": { - "x": 327.723112, - "y": 24.044046 - } - } - }, - { - "id": "ff261729-fbb1-5471-a067-7f78a0d1d57d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.723112, - "y": 24.044046 - }, - "endPoint": { - "x": 327.697959, - "y": 24.016396 - } - } - }, - { - "id": "9c1d0d9c-f714-54eb-9b75-9e43ae5f8b5d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.697959, - "y": 24.016396 - }, - "endPoint": { - "x": 327.656466, - "y": 24.006344 - } - } - }, - { - "id": "c4c35621-9c49-5c0b-bcde-5e7d2933bf47", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.656466, - "y": 24.006344 - }, - "endPoint": { - "x": 327.603648, - "y": 24.005084 - } - } - }, - { - "id": "fe563402-d3dd-5864-8e1d-c46d53525b30", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.603648, - "y": 24.005084 - }, - "endPoint": { - "x": 327.540774, - "y": 24.0076 - } - } - }, - { - "id": "e30df786-ed3b-58eb-af5a-aef506a761d9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.540774, - "y": 24.0076 - }, - "endPoint": { - "x": 327.482928, - "y": 24.011371 - } - } - }, - { - "id": "59a88ca8-016a-5248-a7b1-2e508ab9078d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.482928, - "y": 24.011371 - }, - "endPoint": { - "x": 327.425082, - "y": 24.018911 - } - } - }, - { - "id": "36ba3f22-80d0-521c-8a41-5b541385f531", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.425082, - "y": 24.018911 - }, - "endPoint": { - "x": 327.388617, - "y": 24.025195 - } - } - }, - { - "id": "1c307a62-fb3d-56db-a3dc-13a7ccb74a60", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.388617, - "y": 24.025195 - }, - "endPoint": { - "x": 327.371215, - "y": 24.02163 - } - } - }, - { - "id": "f6febbc4-e607-5423-a679-4cb7bc922e6f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.371215, - "y": 24.02163 - }, - "endPoint": { - "x": 327.371215, - "y": 23.416491 - } - } - }, - { - "id": "10607602-e5ec-5df7-9294-a741e29429fb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.371215, - "y": 23.416491 - }, - "endPoint": { - "x": 327.441653, - "y": 23.432166 - } - } - }, - { - "id": "74211d05-4de0-5f47-b8c3-b971ccf54262", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.441653, - "y": 23.432166 - }, - "endPoint": { - "x": 327.492147, - "y": 23.438471 - } - } - }, - { - "id": "49657ade-0684-5098-845f-38df67f079ac", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.492147, - "y": 23.438471 - }, - "endPoint": { - "x": 327.567882, - "y": 23.438471 - } - } - }, - { - "id": "3d566b3b-0338-5daf-807f-c25d9211c87a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.567882, - "y": 23.438471 - }, - "endPoint": { - "x": 327.656247, - "y": 23.433425 - } - } - }, - { - "id": "470229bd-a986-5835-ac14-74bfda64a21e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.656247, - "y": 23.433425 - }, - "endPoint": { - "x": 327.70295, - "y": 23.425857 - } - } - }, - { - "id": "96cbb4c8-62eb-551b-86e8-f3acf75e27b8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.70295, - "y": 23.425857 - }, - "endPoint": { - "x": 327.748391, - "y": 23.404409 - } - } - }, - { - "id": "057017a2-6ce1-5a6a-948e-b7ab88fe5314", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.748391, - "y": 23.404409 - }, - "endPoint": { - "x": 327.781214, - "y": 23.384224 - } - } - }, - { - "id": "7885bb02-78e9-5600-b501-21580875360b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.781214, - "y": 23.384224 - }, - "endPoint": { - "x": 327.816555, - "y": 23.360255 - } - } - }, - { - "id": "e8124dcf-bedf-5037-90e7-854f345f05ac", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.816555, - "y": 23.360255 - }, - "endPoint": { - "x": 327.835494, - "y": 23.335023 - } - } - }, - { - "id": "585f6e06-c040-5e30-8832-358d5895aebd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.835494, - "y": 23.335023 - }, - "endPoint": { - "x": 327.845588, - "y": 23.299698 - } - } - }, - { - "id": "f2ea9785-a658-5ebb-aa36-a63b11c0abcc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.845588, - "y": 23.299698 - }, - "endPoint": { - "x": 327.846849, - "y": 23.271942 - } - } - }, - { - "id": "fb7b7230-d104-5539-b85c-c829473c4e5f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.846849, - "y": 23.271942 - }, - "endPoint": { - "x": 327.836755, - "y": 23.24671 - } - } - }, - { - "id": "176f2842-d4b3-5405-8246-8e55cc6938df", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.836755, - "y": 23.24671 - }, - "endPoint": { - "x": 327.811508, - "y": 23.220216 - } - } - }, - { - "id": "56c64c48-c928-541f-b373-ec7a9ff7a1cf", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.811508, - "y": 23.220216 - }, - "endPoint": { - "x": 327.781214, - "y": 23.201293 - } - } - }, - { - "id": "bec2c229-1b7a-505e-8ec3-ba9176fbf6af", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.781214, - "y": 23.201293 - }, - "endPoint": { - "x": 327.748391, - "y": 23.188676 - } - } - }, - { - "id": "be009915-579b-562b-8aad-c8bd03b76999", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.748391, - "y": 23.188676 - }, - "endPoint": { - "x": 327.699165, - "y": 23.184892 - } - } - }, - { - "id": "193f8395-65ca-5dab-a526-34ab9d883ae5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.699165, - "y": 23.184892 - }, - "endPoint": { - "x": 327.502247, - "y": 23.182367 - } - } - }, - { - "id": "b2351dc5-523f-5763-be33-a8bd72774ac6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.502247, - "y": 23.182367 - }, - "endPoint": { - "x": 327.359603, - "y": 23.182367 - } - } - }, - { - "id": "7e64cd1d-f641-52e9-b9e9-7859b9a6e19a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.359603, - "y": 23.182367 - }, - "endPoint": { - "x": 327.232194, - "y": 23.205979 - } - } - }, - { - "id": "ccf7ccca-5464-54c7-9424-51982cb3b484", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 327.232194, - "y": 23.205979 - }, - "endPoint": { - "x": 326.294383, - "y": 23.205979 - } - } - }, - { - "id": "b25f49df-f809-5399-a8a2-8d218e888015", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.294383, - "y": 23.205979 - }, - "endPoint": { - "x": 326.249232, - "y": 23.192654 - } - } - }, - { - "id": "03dff0e1-55bf-5ea9-a869-df26eb863be6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.249232, - "y": 23.192654 - }, - "endPoint": { - "x": 326.195096, - "y": 23.171234 - } - } - }, - { - "id": "62e6894a-deae-56e3-ae34-3346aefa7921", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.195096, - "y": 23.171234 - }, - "endPoint": { - "x": 326.13419, - "y": 23.159964 - } - } - }, - { - "id": "45466f01-f4e3-5e9d-abef-be9eb31f8627", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.13419, - "y": 23.159964 - }, - "endPoint": { - "x": 326.060879, - "y": 23.159964 - } - } - }, - { - "id": "3b0b9b8c-6927-522c-9ef0-947b7dc15a1d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.060879, - "y": 23.159964 - }, - "endPoint": { - "x": 325.985306, - "y": 23.171234 - } - } - }, - { - "id": "920692d6-6047-572c-957f-a1af9a840b7d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.985306, - "y": 23.171234 - }, - "endPoint": { - "x": 325.908609, - "y": 23.193781 - } - } - }, - { - "id": "7542ba98-05ea-5f62-aa3a-4a0a05382795", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.908609, - "y": 23.193781 - }, - "endPoint": { - "x": 325.845448, - "y": 23.220836 - } - } - }, - { - "id": "2dc8dca1-a957-56a4-84bc-93561c105467", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.845448, - "y": 23.220836 - }, - "endPoint": { - "x": 325.801462, - "y": 23.241125 - } - } - }, - { - "id": "995e9ca4-1e9a-5c63-b851-090cf93c4f6f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.801462, - "y": 23.241125 - }, - "endPoint": { - "x": 325.772136, - "y": 23.263672 - } - } - }, - { - "id": "b96bab28-3836-56e8-ae04-71d657fd3667", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.772136, - "y": 23.263672 - }, - "endPoint": { - "x": 325.754091, - "y": 23.294107 - } - } - }, - { - "id": "a79650f6-0b72-5aa6-baea-8e6b687ec114", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.754091, - "y": 23.294107 - }, - "endPoint": { - "x": 325.748451, - "y": 23.317782 - } - } - }, - { - "id": "34a52311-c8b4-5f8c-b683-da0cd600d742", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.748451, - "y": 23.317782 - }, - "endPoint": { - "x": 325.748451, - "y": 23.341454 - } - } - }, - { - "id": "db92d023-3a11-5aae-bded-70fa0eca10e9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.748451, - "y": 23.341454 - }, - "endPoint": { - "x": 325.754091, - "y": 23.36287 - } - } - }, - { - "id": "3a3d87f7-6290-5004-9f07-e94e38fb54dd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.754091, - "y": 23.36287 - }, - "endPoint": { - "x": 325.782286, - "y": 23.380907 - } - } - }, - { - "id": "c1a7bdac-a6c7-53ba-ba43-f12785eb1dd8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.782286, - "y": 23.380907 - }, - "endPoint": { - "x": 325.844317, - "y": 23.395563 - } - } - }, - { - "id": "72fddfe7-e58d-5c37-82d8-beaeb578e413", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.844317, - "y": 23.395563 - }, - "endPoint": { - "x": 325.900714, - "y": 23.396688 - } - } - }, - { - "id": "b05a0ef9-8a26-56dd-9ca1-bb89600b0a32", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.900714, - "y": 23.396688 - }, - "endPoint": { - "x": 325.952601, - "y": 23.396688 - } - } - }, - { - "id": "a4599242-f33b-5ca0-89e2-3094dcb8ecaa", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.952601, - "y": 23.396688 - }, - "endPoint": { - "x": 325.986437, - "y": 23.393308 - } - } - }, - { - "id": "025e2c70-e180-574f-97ef-03f7bf8159d6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 325.986437, - "y": 23.393308 - }, - "endPoint": { - "x": 326.014632, - "y": 23.385417 - } - } - }, - { - "id": "cce3e7c8-92fc-529c-8416-c23a1f503628", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.014632, - "y": 23.385417 - }, - "endPoint": { - "x": 326.046213, - "y": 23.370761 - } - } - }, - { - "id": "9ae3f838-70e8-56c9-ad1a-3bcc532f5f7e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.046213, - "y": 23.370761 - }, - "endPoint": { - "x": 326.056671, - "y": 23.366281 - } - } - }, - { - "id": "0fea669e-605d-55d2-8578-261dcacdb0b9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 326.056671, - "y": 23.366281 - }, - "endPoint": { - "x": 326.17772, - "y": 23.366281 - } - } - } - ] - }, { "id": "a2c8ae54-0aca-59c5-9768-f5f0a7869ad6", "type": "Text", @@ -94888,7 +1007,7 @@ "lineWidth": 1, "layerId": "-00.기본BOX", "shapeData": { - "label": "숲산사산림기술사사무소", + "label": "{{용역회사}}", "basePoint": { "x": 380.474721, "y": 28.814653 @@ -94983,30 +1102,6 @@ } ] }, - { - "id": "8cac6917-5296-5f6b-9c89-9808359952b1", - "type": "Text", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "label": "FOREST PROFESSIONAL ENGINEER OFFICE", - "basePoint": { - "x": 380.63893, - "y": 23.456446 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ff7f00", - "fontSize": 2.5755, - "fontFamily": "sans-serif" - } - } - }, { "id": "9f90034d-aa58-52e3-ba60-c64f0ed5bcd9", "type": "Text", @@ -95014,7 +1109,7 @@ "lineWidth": 1, "layerId": "-00.기본BOX", "shapeData": { - "label": "한국광해관리공단", + "label": "{{시행청}}", "basePoint": { "x": 263.627137, "y": 28.814653 @@ -95031,52581 +1126,6 @@ } } }, - { - "id": "c3226ee5-cd5e-521f-a7a7-679637e9b512", - "type": "Text", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "label": "Mine Reclamation Corp.", - "basePoint": { - "x": 292.323477, - "y": 23.608872 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ff7f00", - "fontSize": 2.5755, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "b3af11a9-3083-5a61-81e5-8c41cc95dd54", - "type": "PolyLine", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": null, - "children": [ - { - "id": "b74fce68-b8d3-56e9-9fd1-031a1fe1e519", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 218.634248, - "y": 32.484718 - }, - "endPoint": { - "x": 218.914289, - "y": 32.457548 - } - } - }, - { - "id": "02b64f45-bd33-5e3f-a3b5-0d6184cad760", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 218.914289, - "y": 32.457548 - }, - "endPoint": { - "x": 219.178604, - "y": 32.371117 - } - } - }, - { - "id": "648a5c58-7e3a-5b09-bc2c-5ef9ef62654b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 219.178604, - "y": 32.371117 - }, - "endPoint": { - "x": 219.417984, - "y": 32.229591 - } - } - }, - { - "id": "ed0c4398-cfa5-510b-93d7-4b35eb859c02", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 219.417984, - "y": 32.229591 - }, - "endPoint": { - "x": 219.623224, - "y": 32.037139 - } - } - }, - { - "id": "cc9e34e4-b65e-5422-8a18-f627400c5f96", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 219.623224, - "y": 32.037139 - }, - "endPoint": { - "x": 219.781408, - "y": 31.804461 - } - } - }, - { - "id": "8a82447b-b3c4-5141-aef3-a22436392448", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 219.781408, - "y": 31.804461 - }, - "endPoint": { - "x": 219.883975, - "y": 31.54598 - } - } - }, - { - "id": "8c26af93-184c-515d-a1c4-4b43eb882105", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 219.883975, - "y": 31.54598 - }, - "endPoint": { - "x": 219.92824, - "y": 31.271438 - } - } - }, - { - "id": "6082cc51-c993-5d9e-8762-ad65dc99dce7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 219.92824, - "y": 31.271438 - }, - "endPoint": { - "x": 219.911518, - "y": 30.990579 - } - } - }, - { - "id": "1daf062e-efc4-50d7-920c-ae06c361a8dc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 219.911518, - "y": 30.990579 - }, - "endPoint": { - "x": 219.911518, - "y": 29.977022 - } - } - }, - { - "id": "2a1ef506-ca1b-56c1-8846-a5611ee0a084", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 219.911518, - "y": 29.977022 - }, - "endPoint": { - "x": 220.077679, - "y": 30.698322 - } - } - }, - { - "id": "b20923ac-2906-5f8a-80a1-aa6939950ab4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 220.077679, - "y": 30.698322 - }, - "endPoint": { - "x": 220.344273, - "y": 31.375825 - } - } - }, - { - "id": "4b13b3bb-a0b9-5ce7-83ad-bd6d8514352d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 220.344273, - "y": 31.375825 - }, - "endPoint": { - "x": 220.703377, - "y": 32.00084 - } - } - }, - { - "id": "285a5f84-5bb4-51ca-a4c4-92d00b2dfbeb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 220.703377, - "y": 32.00084 - }, - "endPoint": { - "x": 221.14707, - "y": 32.564674 - } - } - }, - { - "id": "671a17ac-d200-58f9-b82c-b960777931a2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 221.14707, - "y": 32.564674 - }, - "endPoint": { - "x": 221.66743, - "y": 33.058635 - } - } - }, - { - "id": "7ea257bd-c545-554f-be06-0bc2e234b543", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 221.66743, - "y": 33.058635 - }, - "endPoint": { - "x": 222.256536, - "y": 33.474032 - } - } - }, - { - "id": "c91ce0c4-f530-5941-8af5-71de9944fdab", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 222.256536, - "y": 33.474032 - }, - "endPoint": { - "x": 222.906465, - "y": 33.802171 - } - } - }, - { - "id": "23e7d83c-a8be-5b2b-8ef3-006b849c63cd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 222.906465, - "y": 33.802171 - }, - "endPoint": { - "x": 223.609295, - "y": 34.034361 - } - } - }, - { - "id": "a4bcf613-f4fd-58a4-a522-29fad4461c2b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 223.609295, - "y": 34.034361 - }, - "endPoint": { - "x": 222.930747, - "y": 34.838583 - } - } - }, - { - "id": "fccb53dc-5f34-5d20-a117-9cc196c0d3a0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 222.930747, - "y": 34.838583 - }, - "endPoint": { - "x": 222.097703, - "y": 35.459333 - } - } - }, - { - "id": "746241a0-8926-595d-8553-d030588a5329", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 222.097703, - "y": 35.459333 - }, - "endPoint": { - "x": 221.14595, - "y": 35.875815 - } - } - }, - { - "id": "6b1418e4-a114-50c0-8fac-7f375044031f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 221.14595, - "y": 35.875815 - }, - "endPoint": { - "x": 220.111272, - "y": 36.067232 - } - } - }, - { - "id": "f9a5fe01-9e1d-5444-bc46-a6414c3b6cc8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 220.111272, - "y": 36.067232 - }, - "endPoint": { - "x": 216.772379, - "y": 35.896118 - } - } - }, - { - "id": "8f4468de-74d5-550b-9d9d-40900db51aba", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 216.772379, - "y": 35.896118 - }, - "endPoint": { - "x": 216.034508, - "y": 35.694104 - } - } - }, - { - "id": "942f13a4-d741-50a5-8785-d0d790266a3c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 216.034508, - "y": 35.694104 - }, - "endPoint": { - "x": 215.35395, - "y": 35.379998 - } - } - }, - { - "id": "5cabde9b-8a2b-582c-83fb-3cff0e968a5c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 215.35395, - "y": 35.379998 - }, - "endPoint": { - "x": 214.740702, - "y": 34.964855 - } - } - }, - { - "id": "30478db7-d87e-51ae-ab36-7308fd3d90d8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 214.740702, - "y": 34.964855 - }, - "endPoint": { - "x": 214.204761, - "y": 34.459735 - } - } - }, - { - "id": "856e23d2-c25f-561e-929d-518f7ef2e205", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 214.204761, - "y": 34.459735 - }, - "endPoint": { - "x": 213.756121, - "y": 33.875695 - } - } - }, - { - "id": "60449bf5-b67f-5da1-b38a-daa329d47799", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 213.756121, - "y": 33.875695 - }, - "endPoint": { - "x": 213.40478, - "y": 33.223793 - } - } - }, - { - "id": "373950cd-d469-528c-8962-f6977d131fca", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 213.40478, - "y": 33.223793 - }, - "endPoint": { - "x": 213.160733, - "y": 32.515088 - } - } - }, - { - "id": "28da6258-49c8-5b9b-8e82-8c4f6d34e621", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 213.160733, - "y": 32.515088 - }, - "endPoint": { - "x": 213.033978, - "y": 31.760637 - } - } - }, - { - "id": "f5b5d1e1-5615-503b-8f29-08f5802ac811", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 213.033978, - "y": 31.760637 - }, - "endPoint": { - "x": 213.033978, - "y": 27.339966 - } - } - }, - { - "id": "789a5a9e-2ca2-5bdd-a883-bfd34c603aac", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 213.033978, - "y": 27.339966 - }, - "endPoint": { - "x": 213.05963, - "y": 27.25936 - } - } - }, - { - "id": "ae6c31d3-4e74-58c7-aca0-1607ee197149", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 213.05963, - "y": 27.25936 - }, - "endPoint": { - "x": 213.100682, - "y": 27.186382 - } - } - }, - { - "id": "5fc1c898-5703-5f29-b05d-ba4d3e2c4e7a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 213.100682, - "y": 27.186382 - }, - "endPoint": { - "x": 213.155613, - "y": 27.123188 - } - } - }, - { - "id": "46aac093-1b7d-5752-a255-cbc3a8e586cd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 213.155613, - "y": 27.123188 - }, - "endPoint": { - "x": 213.222905, - "y": 27.071933 - } - } - }, - { - "id": "86572d3f-2e69-54eb-b663-86105dc19985", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 213.222905, - "y": 27.071933 - }, - "endPoint": { - "x": 213.299231, - "y": 27.035469 - } - } - }, - { - "id": "18abc60d-0e59-5015-83bd-4483db4c5d2e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 213.299231, - "y": 27.035469 - }, - "endPoint": { - "x": 213.380535, - "y": 27.015452 - } - } - }, - { - "id": "5d8f7845-ad8b-5a06-9d9f-6ab9c2482b4f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 213.380535, - "y": 27.015452 - }, - "endPoint": { - "x": 213.464206, - "y": 27.012252 - } - } - }, - { - "id": "c81e9bf5-a551-5165-8283-db2230ac9142", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 213.464206, - "y": 27.012252 - }, - "endPoint": { - "x": 213.547631, - "y": 27.026235 - } - } - }, - { - "id": "a542a42f-af9a-5290-b53e-19e433d7c7f5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 213.547631, - "y": 27.026235 - }, - "endPoint": { - "x": 216.351345, - "y": 27.734842 - } - } - }, - { - "id": "9c9eba71-20ed-50e5-a344-997ba1ea56da", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 216.351345, - "y": 27.734842 - }, - "endPoint": { - "x": 216.781324, - "y": 27.877291 - } - } - }, - { - "id": "fd11ddf7-54b0-5e65-b243-5160b36b4f33", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 216.781324, - "y": 27.877291 - }, - "endPoint": { - "x": 217.127092, - "y": 28.150067 - } - } - }, - { - "id": "4dbbaaa4-82cc-544e-b9f6-ad2a3f49384e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 217.127092, - "y": 28.150067 - }, - "endPoint": { - "x": 217.361474, - "y": 28.52293 - } - } - }, - { - "id": "5923832a-4c08-57d0-b652-bf216ff588ef", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 217.361474, - "y": 28.52293 - }, - "endPoint": { - "x": 217.457299, - "y": 28.965639 - } - } - }, - { - "id": "73d6a663-b5c7-5f85-bd81-643b9841841f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 217.457299, - "y": 28.965639 - }, - "endPoint": { - "x": 217.457299, - "y": 31.133196 - } - } - }, - { - "id": "29081c3d-66d7-58fa-b1fd-e786be47eee6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 217.457299, - "y": 31.133196 - }, - "endPoint": { - "x": 217.463931, - "y": 31.382955 - } - } - }, - { - "id": "14c8549f-277b-50be-a3c2-2b1c6443e2e3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 217.463931, - "y": 31.382955 - }, - "endPoint": { - "x": 217.518865, - "y": 31.624264 - } - } - }, - { - "id": "641d27cd-b76c-5f74-92b9-ae7925b62ca6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 217.518865, - "y": 31.624264 - }, - "endPoint": { - "x": 217.619801, - "y": 31.850228 - } - } - }, - { - "id": "215c3bb4-7a6d-59f3-af17-537875aaf79c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 217.619801, - "y": 31.850228 - }, - "endPoint": { - "x": 217.76444, - "y": 32.053951 - } - } - }, - { - "id": "d0db086d-36c4-506d-8ddc-ab6cd1de9330", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 217.76444, - "y": 32.053951 - }, - "endPoint": { - "x": 217.946353, - "y": 32.225215 - } - } - }, - { - "id": "a07902fb-eb6d-5e3a-9829-119ddec2eb98", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 217.946353, - "y": 32.225215 - }, - "endPoint": { - "x": 218.1563, - "y": 32.356248 - } - } - }, - { - "id": "4f7cf484-a0ae-5b2d-8526-f4c6272964d8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 218.1563, - "y": 32.356248 - }, - "endPoint": { - "x": 218.38777, - "y": 32.443824 - } - } - }, - { - "id": "6bdd6e25-f445-51dd-a50b-c198061f10f3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 218.38777, - "y": 32.443824 - }, - "endPoint": { - "x": 218.634248, - "y": 32.484718 - } - } - } - ] - }, - { - "id": "7b9efb85-2f4a-53e9-9057-9ec964f95575", - "type": "PolyLine", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": null, - "children": [ - { - "id": "e3c9a04f-21e5-5af7-a226-666bad8df549", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 226.887751, - "y": 29.595882 - }, - "endPoint": { - "x": 226.887751, - "y": 28.895094 - } - } - }, - { - "id": "4c1307fb-5ec3-5842-979e-279f04a5dfd2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 226.887751, - "y": 28.895094 - }, - "endPoint": { - "x": 226.980437, - "y": 28.537454 - } - } - }, - { - "id": "e720775c-7dd9-55c0-b330-0f203a764f7a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 226.980437, - "y": 28.537454 - }, - "endPoint": { - "x": 227.172151, - "y": 28.2311 - } - } - }, - { - "id": "acf1711c-2ea2-5786-a2bd-a25543ecb375", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 227.172151, - "y": 28.2311 - }, - "endPoint": { - "x": 227.446179, - "y": 27.995481 - } - } - }, - { - "id": "9b99d6df-b102-55bb-bc72-8e19b2e124f6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 227.446179, - "y": 27.995481 - }, - "endPoint": { - "x": 227.785804, - "y": 27.850048 - } - } - }, - { - "id": "733e8748-9a25-503f-8bc0-0f690eb0ece5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 227.785804, - "y": 27.850048 - }, - "endPoint": { - "x": 230.866291, - "y": 26.985568 - } - } - }, - { - "id": "60279437-2e2e-5dca-9c69-0ef7645e8114", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 230.866291, - "y": 26.985568 - }, - "endPoint": { - "x": 230.91885, - "y": 26.964891 - } - } - }, - { - "id": "828bf792-3f03-518f-bb7d-7a05e1dbf125", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 230.91885, - "y": 26.964891 - }, - "endPoint": { - "x": 230.974002, - "y": 26.956281 - } - } - }, - { - "id": "9414b60e-f63c-57db-bba3-32042c079f75", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 230.974002, - "y": 26.956281 - }, - "endPoint": { - "x": 231.029709, - "y": 26.95983 - } - } - }, - { - "id": "6b56cd30-399c-50b5-a392-2ff850d7d835", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 231.029709, - "y": 26.95983 - }, - "endPoint": { - "x": 231.083933, - "y": 26.975632 - } - } - }, - { - "id": "4c6f9fc6-d0aa-51b3-958f-a3b3a1f5cb19", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 231.083933, - "y": 26.975632 - }, - "endPoint": { - "x": 231.133373, - "y": 27.002939 - } - } - }, - { - "id": "f0fbea1f-cb1b-5500-920f-4f946706743c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 231.133373, - "y": 27.002939 - }, - "endPoint": { - "x": 231.175169, - "y": 27.039938 - } - } - }, - { - "id": "18ec9f86-c2f5-57a5-be39-3a9bf8299be3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 231.175169, - "y": 27.039938 - }, - "endPoint": { - "x": 231.207952, - "y": 27.085117 - } - } - }, - { - "id": "7dc7467a-7462-5a74-bd0c-a862985f1ee6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 231.207952, - "y": 27.085117 - }, - "endPoint": { - "x": 231.230351, - "y": 27.136966 - } - } - }, - { - "id": "5159759b-f3cb-5caf-937b-ddca9ece9255", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 231.230351, - "y": 27.136966 - }, - "endPoint": { - "x": 231.230351, - "y": 30.382729 - } - } - }, - { - "id": "3e4a456e-fcbb-5e17-819a-8a6de3f83e57", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 231.230351, - "y": 30.382729 - }, - "endPoint": { - "x": 231.022062, - "y": 31.13395 - } - } - }, - { - "id": "248f061a-772f-56f5-91fa-14ed81cdd17c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 231.022062, - "y": 31.13395 - }, - "endPoint": { - "x": 230.700262, - "y": 31.826819 - } - } - }, - { - "id": "cb10d1c7-9627-5002-8995-21b7c84f9849", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 230.700262, - "y": 31.826819 - }, - "endPoint": { - "x": 230.276112, - "y": 32.451253 - } - } - }, - { - "id": "41c2ca19-c42c-5433-8c61-c9ddeb45968e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 230.276112, - "y": 32.451253 - }, - "endPoint": { - "x": 229.760775, - "y": 32.997171 - } - } - }, - { - "id": "9c5b6a6d-1ff0-5462-a718-0063e817dc76", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 229.760775, - "y": 32.997171 - }, - "endPoint": { - "x": 229.165411, - "y": 33.454491 - } - } - }, - { - "id": "7c9359e4-ee5d-553a-8f2c-60d5b18f569d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 229.165411, - "y": 33.454491 - }, - "endPoint": { - "x": 228.501184, - "y": 33.813132 - } - } - }, - { - "id": "3fa973cf-ecd6-5756-ac3d-aa4ac632ede6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 228.501184, - "y": 33.813132 - }, - "endPoint": { - "x": 227.779254, - "y": 34.06301 - } - } - }, - { - "id": "7a5d68c5-8e3b-5986-8e64-64b68857ef82", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 227.779254, - "y": 34.06301 - }, - "endPoint": { - "x": 227.010783, - "y": 34.194045 - } - } - }, - { - "id": "e068d278-8b89-58eb-b9f7-351e7033b589", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 227.010783, - "y": 34.194045 - }, - "endPoint": { - "x": 224.808749, - "y": 34.181751 - } - } - }, - { - "id": "f1eae2b5-8d41-575a-89e6-d1f2cb185587", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 224.808749, - "y": 34.181751 - }, - "endPoint": { - "x": 224.505924, - "y": 34.172487 - } - } - }, - { - "id": "cadd9879-ba14-570a-ba7b-63c490127c4a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 224.505924, - "y": 34.172487 - }, - "endPoint": { - "x": 224.204511, - "y": 34.144766 - } - } - }, - { - "id": "4a21d00f-ced7-585d-89a1-512e78666a3e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 224.204511, - "y": 34.144766 - }, - "endPoint": { - "x": 223.905354, - "y": 34.098689 - } - } - }, - { - "id": "4dd516cb-60e3-5dfe-b110-779f6efaf029", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 223.905354, - "y": 34.098689 - }, - "endPoint": { - "x": 223.609295, - "y": 34.034361 - } - } - }, - { - "id": "e8a4d099-26ce-5f96-8a13-70f375f95f84", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 223.609295, - "y": 34.034361 - }, - "endPoint": { - "x": 223.874995, - "y": 33.578384 - } - } - }, - { - "id": "4195f7c5-d4eb-576c-9028-dfdb741ea3f2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 223.874995, - "y": 33.578384 - }, - "endPoint": { - "x": 224.085705, - "y": 33.096431 - } - } - }, - { - "id": "693461ee-5747-586b-ba7c-0ecfa6d834b3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 224.085705, - "y": 33.096431 - }, - "endPoint": { - "x": 224.239597, - "y": 32.593446 - } - } - }, - { - "id": "6ba5528f-6b14-5f97-8d5c-aabacfd58027", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 224.239597, - "y": 32.593446 - }, - "endPoint": { - "x": 224.33484, - "y": 32.074368 - } - } - }, - { - "id": "8edbe29e-7638-5770-8e92-be4e52f82626", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 224.33484, - "y": 32.074368 - }, - "endPoint": { - "x": 224.33484, - "y": 29.571294 - } - } - }, - { - "id": "d85e251f-6405-5794-87ee-90fba9c0966d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 224.33484, - "y": 29.571294 - }, - "endPoint": { - "x": 224.534919, - "y": 30.058174 - } - } - }, - { - "id": "7e5806da-7be3-5c2b-bf03-9630393cd38b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 224.534919, - "y": 30.058174 - }, - "endPoint": { - "x": 224.891223, - "y": 30.42144 - } - } - }, - { - "id": "bf98ead3-a607-5abe-aa30-d09b868905ec", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 224.891223, - "y": 30.42144 - }, - "endPoint": { - "x": 225.356205, - "y": 30.628098 - } - } - }, - { - "id": "02e26c71-7ca6-58f9-8f50-602e33b1d68e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 225.356205, - "y": 30.628098 - }, - "endPoint": { - "x": 225.882316, - "y": 30.645151 - } - } - }, - { - "id": "f787f265-97c7-56fd-8b85-8d564d67b23e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 225.882316, - "y": 30.645151 - }, - "endPoint": { - "x": 226.245001, - "y": 30.507092 - } - } - }, - { - "id": "f972ee96-d211-5a55-b413-d30032adcf76", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 226.245001, - "y": 30.507092 - }, - "endPoint": { - "x": 226.545179, - "y": 30.273972 - } - } - }, - { - "id": "5a6a3cb2-7ca9-5919-83b7-0a63603a3b7a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 226.545179, - "y": 30.273972 - }, - "endPoint": { - "x": 226.765285, - "y": 29.964125 - } - } - }, - { - "id": "858af354-6bb0-5340-9d7f-9eb55787af35", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 226.765285, - "y": 29.964125 - }, - "endPoint": { - "x": 226.887751, - "y": 29.595882 - } - } - } - ] - }, - { - "id": "cb5a206b-9270-5b01-aa69-0e8375d38b05", - "type": "PolyLine", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": null, - "children": [ - { - "id": "1ed9fd56-542d-585c-9470-10ed7d4b1cc6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 213.033978, - "y": 27.339966 - }, - "endPoint": { - "x": 213.033978, - "y": 31.760637 - } - } - }, - { - "id": "c1b360b0-a8a5-5f84-8488-b68b59fe9080", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 213.033978, - "y": 31.760637 - }, - "endPoint": { - "x": 213.160733, - "y": 32.515088 - } - } - }, - { - "id": "110969b4-0612-5484-99b8-162162048f06", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 213.160733, - "y": 32.515088 - }, - "endPoint": { - "x": 213.40478, - "y": 33.223793 - } - } - }, - { - "id": "21ddb4a2-c2f8-5c7e-91cb-503df35a7dfc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 213.40478, - "y": 33.223793 - }, - "endPoint": { - "x": 213.756121, - "y": 33.875695 - } - } - }, - { - "id": "8be3cc18-e063-541c-852c-c3a5ef625e43", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 213.756121, - "y": 33.875695 - }, - "endPoint": { - "x": 214.204761, - "y": 34.459735 - } - } - }, - { - "id": "d5e33f3e-d305-5e1d-abcf-8002ba04b417", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 214.204761, - "y": 34.459735 - }, - "endPoint": { - "x": 214.740702, - "y": 34.964855 - } - } - }, - { - "id": "104d9f11-29b5-53b6-b671-f5237e1323f8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 214.740702, - "y": 34.964855 - }, - "endPoint": { - "x": 215.35395, - "y": 35.379998 - } - } - }, - { - "id": "7db0967e-607a-53a5-bb0b-e2a3c362071b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 215.35395, - "y": 35.379998 - }, - "endPoint": { - "x": 216.034508, - "y": 35.694104 - } - } - }, - { - "id": "8f0872de-84b1-5ba9-9d45-b2c5f229d19b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 216.034508, - "y": 35.694104 - }, - "endPoint": { - "x": 216.772379, - "y": 35.896118 - } - } - }, - { - "id": "aeaa0c78-fbf5-53e2-8e70-706f71891187", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 216.772379, - "y": 35.896118 - }, - "endPoint": { - "x": 220.111272, - "y": 36.067232 - } - } - }, - { - "id": "c7507d52-77e8-536e-87e6-1c6130766d4c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 220.111272, - "y": 36.067232 - }, - "endPoint": { - "x": 220.908298, - "y": 35.942333 - } - } - }, - { - "id": "e1a20bc0-e6fa-5c74-9ce5-56bd1a1f4ef2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 220.908298, - "y": 35.942333 - }, - "endPoint": { - "x": 221.653999, - "y": 35.686358 - } - } - }, - { - "id": "8ee45be8-41ac-50f0-a308-c351a35daa5c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 221.653999, - "y": 35.686358 - }, - "endPoint": { - "x": 222.335596, - "y": 35.311387 - } - } - }, - { - "id": "b9b81356-ddb8-583d-8503-e1b9c499cf23", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 222.335596, - "y": 35.311387 - }, - "endPoint": { - "x": 222.940313, - "y": 34.8295 - } - } - }, - { - "id": "ebfd66f3-dd18-56b8-b194-dff2abeb5922", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 222.940313, - "y": 34.8295 - }, - "endPoint": { - "x": 223.455373, - "y": 34.252776 - } - } - }, - { - "id": "1f7c8899-4bdf-52c1-9d12-a006ff2bff74", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 223.455373, - "y": 34.252776 - }, - "endPoint": { - "x": 223.867999, - "y": 33.593293 - } - } - }, - { - "id": "bcea174c-c25e-5afa-9b42-e0412c4a24e5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 223.867999, - "y": 33.593293 - }, - "endPoint": { - "x": 224.165414, - "y": 32.863131 - } - } - }, - { - "id": "8a8da68a-ad5b-53ef-a083-feb302c4df1d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 224.165414, - "y": 32.863131 - }, - "endPoint": { - "x": 224.33484, - "y": 32.074368 - } - } - }, - { - "id": "96281893-3472-5774-ba38-d068a652d796", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 224.33484, - "y": 32.074368 - }, - "endPoint": { - "x": 224.33484, - "y": 28.594869 - } - } - }, - { - "id": "e3ee97e4-05bf-5c34-8345-7fabc551a533", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 224.33484, - "y": 28.594869 - }, - "endPoint": { - "x": 224.328922, - "y": 28.542581 - } - } - }, - { - "id": "062d5430-46f2-5cec-9f68-167380e0c919", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 224.328922, - "y": 28.542581 - }, - "endPoint": { - "x": 224.311741, - "y": 28.493518 - } - } - }, - { - "id": "3f023218-72ee-58cf-8f00-965e01516bb2", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 224.311741, - "y": 28.493518 - }, - "endPoint": { - "x": 224.284152, - "y": 28.44946 - } - } - }, - { - "id": "2e7a081d-e4cb-5cd0-a05e-63ba0ad0b1fc", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 224.284152, - "y": 28.44946 - }, - "endPoint": { - "x": 224.247009, - "y": 28.412184 - } - } - }, - { - "id": "80e360fb-4a47-5f95-a064-942d3dd9a41e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 224.247009, - "y": 28.412184 - }, - "endPoint": { - "x": 224.202475, - "y": 28.384152 - } - } - }, - { - "id": "80079f8e-fe79-5254-9850-eb7199fd1ac9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 224.202475, - "y": 28.384152 - }, - "endPoint": { - "x": 224.153426, - "y": 28.366931 - } - } - }, - { - "id": "150a2514-555f-5820-9445-98af5c931edb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 224.153426, - "y": 28.366931 - }, - "endPoint": { - "x": 224.101785, - "y": 28.360964 - } - } - }, - { - "id": "84d40fc3-6386-52ed-a339-2fe5a9ed327d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 224.101785, - "y": 28.360964 - }, - "endPoint": { - "x": 224.049477, - "y": 28.366696 - } - } - }, - { - "id": "57da2132-c7e8-544b-a131-2ff42e63c3ee", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 224.049477, - "y": 28.366696 - }, - "endPoint": { - "x": 222.19452, - "y": 28.480793 - } - } - }, - { - "id": "cb356211-16bb-51e2-a899-58f5033ac4be", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 222.19452, - "y": 28.480793 - }, - "endPoint": { - "x": 220.139808, - "y": 28.395215 - } - } - }, - { - "id": "3be280f6-8fa0-5f0e-8b3d-38d01ec7441e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 220.139808, - "y": 28.395215 - }, - "endPoint": { - "x": 220.090625, - "y": 28.398648 - } - } - }, - { - "id": "9c9b041c-823b-52e1-b1df-21bd54743c89", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 220.090625, - "y": 28.398648 - }, - "endPoint": { - "x": 220.043955, - "y": 28.412633 - } - } - }, - { - "id": "44fe41fc-115c-5050-9c74-b855894e2a18", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 220.043955, - "y": 28.412633 - }, - "endPoint": { - "x": 220.001462, - "y": 28.436465 - } - } - }, - { - "id": "193a7001-2842-55bf-845b-92ed356e3b8a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 220.001462, - "y": 28.436465 - }, - "endPoint": { - "x": 219.964807, - "y": 28.469438 - } - } - }, - { - "id": "099b7cbb-eaab-5a9e-93e4-d277cacf3c23", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 219.964807, - "y": 28.469438 - }, - "endPoint": { - "x": 219.936337, - "y": 28.509692 - } - } - }, - { - "id": "468593c1-bf9c-5bf7-a6f2-48a9c60240b1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 219.936337, - "y": 28.509692 - }, - "endPoint": { - "x": 219.917628, - "y": 28.554676 - } - } - }, - { - "id": "7bb30a9f-fdd6-5d08-bc83-85ad258271c6", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 219.917628, - "y": 28.554676 - }, - "endPoint": { - "x": 219.909187, - "y": 28.602659 - } - } - }, - { - "id": "80e3613d-9ba7-5e4d-8369-40c93181dd5a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 219.909187, - "y": 28.602659 - }, - "endPoint": { - "x": 219.911518, - "y": 28.651908 - } - } - }, - { - "id": "1f5e7264-ff29-5e53-84fc-682bbac33fe5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 219.911518, - "y": 28.651908 - }, - "endPoint": { - "x": 219.911518, - "y": 30.990579 - } - } - }, - { - "id": "2e75ba79-80b3-5959-b5e4-8a8da0b3146f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 219.911518, - "y": 30.990579 - }, - "endPoint": { - "x": 219.92824, - "y": 31.271438 - } - } - }, - { - "id": "85faa9de-95a1-5e6a-b62c-072b70001c8a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 219.92824, - "y": 31.271438 - }, - "endPoint": { - "x": 219.883975, - "y": 31.54598 - } - } - }, - { - "id": "48d119b4-295b-5c00-8255-66326894c70d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 219.883975, - "y": 31.54598 - }, - "endPoint": { - "x": 219.781408, - "y": 31.804461 - } - } - }, - { - "id": "d517e605-6b4a-52a4-a858-fd8e6b2f86be", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 219.781408, - "y": 31.804461 - }, - "endPoint": { - "x": 219.623224, - "y": 32.037139 - } - } - }, - { - "id": "e5dbc462-5cf9-5258-998f-3696d7f6cbe0", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 219.623224, - "y": 32.037139 - }, - "endPoint": { - "x": 219.417984, - "y": 32.229591 - } - } - }, - { - "id": "7dae5591-7498-5ced-bcd3-8f6d6c5dc97d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 219.417984, - "y": 32.229591 - }, - "endPoint": { - "x": 219.178604, - "y": 32.371117 - } - } - }, - { - "id": "80046884-3814-5650-a4bb-9230693d0760", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 219.178604, - "y": 32.371117 - }, - "endPoint": { - "x": 218.914289, - "y": 32.457548 - } - } - }, - { - "id": "7aa35f30-383c-5a86-9b06-8e350d56cb36", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 218.914289, - "y": 32.457548 - }, - "endPoint": { - "x": 218.634248, - "y": 32.484718 - } - } - }, - { - "id": "7c1e0179-195c-5c5c-8557-e9558f0fb378", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 218.634248, - "y": 32.484718 - }, - "endPoint": { - "x": 218.38777, - "y": 32.443824 - } - } - }, - { - "id": "0439e927-0b6d-5eca-a788-328921c6b2fa", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 218.38777, - "y": 32.443824 - }, - "endPoint": { - "x": 218.1563, - "y": 32.356248 - } - } - }, - { - "id": "63b1ab9d-1d51-5932-8f30-a34029c318c3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 218.1563, - "y": 32.356248 - }, - "endPoint": { - "x": 217.946353, - "y": 32.225215 - } - } - }, - { - "id": "5ced71bd-d000-5839-ae70-e6bb88cfd21e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 217.946353, - "y": 32.225215 - }, - "endPoint": { - "x": 217.76444, - "y": 32.053951 - } - } - }, - { - "id": "136e6daa-32a2-55c1-98e2-f4651b8421ad", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 217.76444, - "y": 32.053951 - }, - "endPoint": { - "x": 217.619801, - "y": 31.850228 - } - } - }, - { - "id": "149a1273-b997-537d-8c10-e0634474a846", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 217.619801, - "y": 31.850228 - }, - "endPoint": { - "x": 217.518865, - "y": 31.624264 - } - } - }, - { - "id": "ec5ae8cf-5e5e-5c2b-a7d2-33f0d9fe9b6a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 217.518865, - "y": 31.624264 - }, - "endPoint": { - "x": 217.463931, - "y": 31.382955 - } - } - }, - { - "id": "a20fe172-64dc-53d4-b328-98f5e402bbc8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 217.463931, - "y": 31.382955 - }, - "endPoint": { - "x": 217.457299, - "y": 31.133196 - } - } - }, - { - "id": "aeaffb7a-feb2-5287-bb6e-e216ae32578a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 217.457299, - "y": 31.133196 - }, - "endPoint": { - "x": 217.457299, - "y": 28.965639 - } - } - }, - { - "id": "bfdc77d3-d1b5-5efb-b51e-4bf5ad1b3dd8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 217.457299, - "y": 28.965639 - }, - "endPoint": { - "x": 217.361474, - "y": 28.52293 - } - } - }, - { - "id": "60e89007-48b3-5766-8bd2-c025fd5b4aa5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 217.361474, - "y": 28.52293 - }, - "endPoint": { - "x": 217.127092, - "y": 28.150067 - } - } - }, - { - "id": "8d392496-0d38-5551-a30a-843603dbe9d1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 217.127092, - "y": 28.150067 - }, - "endPoint": { - "x": 216.781324, - "y": 27.877291 - } - } - }, - { - "id": "3ee23204-cc94-5c5c-9f13-c138a4ac5e05", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 216.781324, - "y": 27.877291 - }, - "endPoint": { - "x": 216.351345, - "y": 27.734842 - } - } - }, - { - "id": "913e0c15-d6d4-5a87-9139-1b5d5513fc4e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 216.351345, - "y": 27.734842 - }, - "endPoint": { - "x": 213.547631, - "y": 27.026235 - } - } - }, - { - "id": "6d2b845f-9d5c-588c-af20-4529633e8edd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 213.547631, - "y": 27.026235 - }, - "endPoint": { - "x": 213.464206, - "y": 27.012252 - } - } - }, - { - "id": "3b4f2c56-e993-5401-8623-4e6063f7d8aa", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 213.464206, - "y": 27.012252 - }, - "endPoint": { - "x": 213.380535, - "y": 27.015452 - } - } - }, - { - "id": "3e22e17d-3f11-57ed-886b-fba891c6f279", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 213.380535, - "y": 27.015452 - }, - "endPoint": { - "x": 213.299231, - "y": 27.035469 - } - } - }, - { - "id": "6216b37c-478e-5af8-9289-8372a99e8da5", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 213.299231, - "y": 27.035469 - }, - "endPoint": { - "x": 213.222905, - "y": 27.071933 - } - } - }, - { - "id": "0cea9bf0-c5df-5f04-8874-ac6dce4f8802", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 213.222905, - "y": 27.071933 - }, - "endPoint": { - "x": 213.155613, - "y": 27.123188 - } - } - }, - { - "id": "602589db-451b-5a6a-9d4c-c0dd97f6d52f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 213.155613, - "y": 27.123188 - }, - "endPoint": { - "x": 213.100682, - "y": 27.186382 - } - } - }, - { - "id": "965a9e2b-4964-586f-9d1a-4f1f6d23fa1e", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 213.100682, - "y": 27.186382 - }, - "endPoint": { - "x": 213.05963, - "y": 27.25936 - } - } - }, - { - "id": "1bdafecb-2385-5bdd-b34f-a970466fae2f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 213.05963, - "y": 27.25936 - }, - "endPoint": { - "x": 213.033978, - "y": 27.339966 - } - } - } - ] - }, - { - "id": "b2f561e4-2e66-538e-9c76-d04ff81672fa", - "type": "PolyLine", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": null, - "children": [ - { - "id": "af4ae645-b32f-59b8-a699-8ba9d98bdf28", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 231.230351, - "y": 27.136966 - }, - "endPoint": { - "x": 231.230351, - "y": 30.382729 - } - } - }, - { - "id": "5a5813af-a8ac-5b32-9461-258f63a04b23", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 231.230351, - "y": 30.382729 - }, - "endPoint": { - "x": 231.022062, - "y": 31.13395 - } - } - }, - { - "id": "ce2f6a24-7893-5d3d-a9b4-72e77be6d3d4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 231.022062, - "y": 31.13395 - }, - "endPoint": { - "x": 230.700262, - "y": 31.826819 - } - } - }, - { - "id": "55a38bfc-26ca-59ed-b92d-7f5792d19a0b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 230.700262, - "y": 31.826819 - }, - "endPoint": { - "x": 230.276112, - "y": 32.451253 - } - } - }, - { - "id": "f0ed3289-e834-5d45-b630-4530e6c6d7cd", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 230.276112, - "y": 32.451253 - }, - "endPoint": { - "x": 229.760775, - "y": 32.997171 - } - } - }, - { - "id": "d19d9705-d5d9-5aa1-ad29-65ed8655871c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 229.760775, - "y": 32.997171 - }, - "endPoint": { - "x": 229.165411, - "y": 33.454491 - } - } - }, - { - "id": "586f1333-eb31-5a04-8718-677fff01c69b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 229.165411, - "y": 33.454491 - }, - "endPoint": { - "x": 228.501184, - "y": 33.813132 - } - } - }, - { - "id": "f69e4501-8979-58c2-9088-e5c341edeab4", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 228.501184, - "y": 33.813132 - }, - "endPoint": { - "x": 227.779254, - "y": 34.06301 - } - } - }, - { - "id": "1535934e-5f3c-506e-9319-c52fcc1347c7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 227.779254, - "y": 34.06301 - }, - "endPoint": { - "x": 227.010783, - "y": 34.194045 - } - } - }, - { - "id": "fe6854ad-f9c3-5149-989e-0e69d871585b", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 227.010783, - "y": 34.194045 - }, - "endPoint": { - "x": 224.808749, - "y": 34.181751 - } - } - }, - { - "id": "ef7def04-adae-5ee8-a4a1-aaec1e0d3b11", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 224.808749, - "y": 34.181751 - }, - "endPoint": { - "x": 223.911023, - "y": 34.100278 - } - } - }, - { - "id": "d842b3e1-31b9-5c66-8108-c3d003d8c1bb", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 223.911023, - "y": 34.100278 - }, - "endPoint": { - "x": 223.063395, - "y": 33.864874 - } - } - }, - { - "id": "b766ff1a-5d4a-57d7-8f48-32e00aceee6d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 223.063395, - "y": 33.864874 - }, - "endPoint": { - "x": 222.281611, - "y": 33.489058 - } - } - }, - { - "id": "88a54e57-18c3-512c-b337-a3adc0118ca7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 222.281611, - "y": 33.489058 - }, - "endPoint": { - "x": 221.58142, - "y": 32.986351 - } - } - }, - { - "id": "2b67b798-55d6-5267-bfb8-a70760c8e1ab", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 221.58142, - "y": 32.986351 - }, - "endPoint": { - "x": 220.978568, - "y": 32.370274 - } - } - }, - { - "id": "e85f1e95-3cab-5687-becd-19f86ee141d3", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 220.978568, - "y": 32.370274 - }, - "endPoint": { - "x": 220.488802, - "y": 31.654346 - } - } - }, - { - "id": "fd1c189f-7344-5d03-a559-888bf3590a7f", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 220.488802, - "y": 31.654346 - }, - "endPoint": { - "x": 220.12787, - "y": 30.852089 - } - } - }, - { - "id": "06b94421-f0a6-5943-8e31-a28cb2cb04e9", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 220.12787, - "y": 30.852089 - }, - "endPoint": { - "x": 219.911518, - "y": 29.977022 - } - } - } - ] - }, - { - "id": "3a5316fd-0ecb-5174-bd36-dab345fee226", - "type": "PolyLine", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": null, - "children": [ - { - "id": "10e3158e-5a29-5ec8-8ed9-520db3ac3403", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 231.230351, - "y": 27.136966 - }, - "endPoint": { - "x": 231.207952, - "y": 27.085117 - } - } - }, - { - "id": "c5f336f6-3fe7-50b7-94f6-9b70545076c8", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 231.207952, - "y": 27.085117 - }, - "endPoint": { - "x": 231.175169, - "y": 27.039938 - } - } - }, - { - "id": "dc8f4082-cbcd-5737-b4f9-abe05f0fc259", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 231.175169, - "y": 27.039938 - }, - "endPoint": { - "x": 231.133373, - "y": 27.002939 - } - } - }, - { - "id": "628f60f6-eb20-55fc-993e-6fe13f39062c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 231.133373, - "y": 27.002939 - }, - "endPoint": { - "x": 231.083933, - "y": 26.975632 - } - } - }, - { - "id": "0246a276-fc98-558a-8fe7-805725789462", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 231.083933, - "y": 26.975632 - }, - "endPoint": { - "x": 231.029709, - "y": 26.95983 - } - } - }, - { - "id": "923ad52c-355d-5240-be9f-7fcace88a7ad", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 231.029709, - "y": 26.95983 - }, - "endPoint": { - "x": 230.974002, - "y": 26.956281 - } - } - }, - { - "id": "4b6cc8d8-2a00-50b5-bb51-66345502734c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 230.974002, - "y": 26.956281 - }, - "endPoint": { - "x": 230.91885, - "y": 26.964891 - } - } - }, - { - "id": "b48c8647-fea1-5ce2-972f-07995db88baf", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 230.91885, - "y": 26.964891 - }, - "endPoint": { - "x": 230.866291, - "y": 26.985568 - } - } - }, - { - "id": "ea913368-994f-5f79-b87b-b10f31daeb3d", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 230.866291, - "y": 26.985568 - }, - "endPoint": { - "x": 227.785804, - "y": 27.850048 - } - } - }, - { - "id": "01861613-b33e-5b6a-81a1-914ca0a72025", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 227.785804, - "y": 27.850048 - }, - "endPoint": { - "x": 227.446179, - "y": 27.995481 - } - } - }, - { - "id": "3bab6043-ed8f-59cd-b62d-c5fb8a1b0b7a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 227.446179, - "y": 27.995481 - }, - "endPoint": { - "x": 227.172151, - "y": 28.2311 - } - } - }, - { - "id": "c3efae1f-9469-5600-a36e-6d8e2ac41976", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 227.172151, - "y": 28.2311 - }, - "endPoint": { - "x": 226.980437, - "y": 28.537454 - } - } - }, - { - "id": "8a6a5ae8-384e-5a6f-9edc-a012ed5574ec", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 226.980437, - "y": 28.537454 - }, - "endPoint": { - "x": 226.887751, - "y": 28.895094 - } - } - }, - { - "id": "66efe438-d2ac-5cc2-aa57-d59eb300054a", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 226.887751, - "y": 28.895094 - }, - "endPoint": { - "x": 226.887751, - "y": 29.595882 - } - } - }, - { - "id": "3d0040b0-ed20-5c19-bf8e-8f8bb8cd2a52", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 226.887751, - "y": 29.595882 - }, - "endPoint": { - "x": 226.765285, - "y": 29.964125 - } - } - }, - { - "id": "a5856eac-c5c0-5628-adfa-c7378fb23c14", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 226.765285, - "y": 29.964125 - }, - "endPoint": { - "x": 226.545179, - "y": 30.273972 - } - } - }, - { - "id": "c9e846f3-1a94-5633-8781-4aeb218c52e7", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 226.545179, - "y": 30.273972 - }, - "endPoint": { - "x": 226.245001, - "y": 30.507092 - } - } - }, - { - "id": "50873f4f-ae17-5297-9953-e2b77398eb6c", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 226.245001, - "y": 30.507092 - }, - "endPoint": { - "x": 225.882316, - "y": 30.645151 - } - } - }, - { - "id": "1028b7f6-153c-51a3-9376-a8e0c7c0d7e1", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 225.882316, - "y": 30.645151 - }, - "endPoint": { - "x": 225.356205, - "y": 30.628098 - } - } - }, - { - "id": "a4292a08-b3f7-5073-a6ce-604e49469783", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 225.356205, - "y": 30.628098 - }, - "endPoint": { - "x": 224.891223, - "y": 30.42144 - } - } - }, - { - "id": "f3910ead-3ef5-5483-96bc-3aabfc678570", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 224.891223, - "y": 30.42144 - }, - "endPoint": { - "x": 224.534919, - "y": 30.058174 - } - } - }, - { - "id": "62f82834-2e24-5e4e-81d8-6f0c15023225", - "type": "Line", - "lineColor": "#7ca500", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 224.534919, - "y": 30.058174 - }, - "endPoint": { - "x": 224.33484, - "y": 29.571294 - } - } - } - ] - }, - { - "id": "adb67463-56d1-505d-97e2-c56d95b925ad", - "type": "Text", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "label": "mireco", - "basePoint": { - "x": 222.14282, - "y": 22.999966 - }, - "options": { - "textDirection": { - "x": 1.0, - "y": 0.0 - }, - "textAlign": "center", - "textColor": "#ff7f00", - "fontSize": 4.3091, - "fontFamily": "sans-serif" - } - } - }, - { - "id": "ebf77b4d-b92d-5b53-9943-6791f4941446", - "type": "PolyLine", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": null, - "children": [ - { - "id": "b134cc37-d341-5332-b7de-0694db133719", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 615.630163, - "y": 27.823583 - }, - "endPoint": { - "x": 615.726546, - "y": 27.696836 - } - } - }, - { - "id": "05463fcd-8dec-565d-919f-c663d2d37fcc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 615.726546, - "y": 27.696836 - }, - "endPoint": { - "x": 615.830536, - "y": 27.640775 - } - } - }, - { - "id": "a104ba33-d544-5be9-9bf9-50d7aee57dac", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 615.830536, - "y": 27.640775 - }, - "endPoint": { - "x": 615.939902, - "y": 27.643625 - } - } - }, - { - "id": "acb89c38-47dd-5cd4-bf85-d94028e883fc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 615.939902, - "y": 27.643625 - }, - "endPoint": { - "x": 616.052411, - "y": 27.69361 - } - } - }, - { - "id": "12a15eac-0db3-51d5-a705-91c0ae384636", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 616.052411, - "y": 27.69361 - }, - "endPoint": { - "x": 616.165831, - "y": 27.778956 - } - } - }, - { - "id": "19e7b413-a245-5cb5-b0af-ae289017c3fd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 616.165831, - "y": 27.778956 - }, - "endPoint": { - "x": 616.27793, - "y": 27.887886 - } - } - }, - { - "id": "ef4de037-6009-5db6-bd53-c83326500147", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 616.27793, - "y": 27.887886 - }, - "endPoint": { - "x": 616.386475, - "y": 28.008626 - } - } - }, - { - "id": "a2158547-d408-5080-87d6-2b15a86ac1b9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 616.386475, - "y": 28.008626 - }, - "endPoint": { - "x": 616.489236, - "y": 28.129399 - } - } - }, - { - "id": "c76ab23d-6de3-5c4b-a905-7a9a89a5f207", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 616.489236, - "y": 28.129399 - }, - "endPoint": { - "x": 616.584537, - "y": 28.24062 - } - } - }, - { - "id": "47f03673-fc1a-5ee0-b7be-18d7b7a75173", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 616.584537, - "y": 28.24062 - }, - "endPoint": { - "x": 616.672937, - "y": 28.341454 - } - } - }, - { - "id": "938ffe52-41a8-52a8-bbb0-9110f62609e7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 616.672937, - "y": 28.341454 - }, - "endPoint": { - "x": 616.755551, - "y": 28.433254 - } - } - }, - { - "id": "ca41486e-2525-5b15-9ebd-7216ecc9eb34", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 616.755551, - "y": 28.433254 - }, - "endPoint": { - "x": 616.833497, - "y": 28.517374 - } - } - }, - { - "id": "8f4fd36a-51a8-5d4d-b00e-be7cdbb23764", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 616.833497, - "y": 28.517374 - }, - "endPoint": { - "x": 616.907889, - "y": 28.595169 - } - } - }, - { - "id": "e51a55f9-767e-541b-a2ec-50c58fcb7a5c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 616.907889, - "y": 28.595169 - }, - "endPoint": { - "x": 616.979844, - "y": 28.667992 - } - } - }, - { - "id": "3b6c3569-aad5-5796-ab7f-a4e013e86da3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 616.979844, - "y": 28.667992 - }, - "endPoint": { - "x": 617.050478, - "y": 28.737198 - } - } - }, - { - "id": "2882ad3f-d32f-53f1-91ae-7028ef6254e0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 617.050478, - "y": 28.737198 - }, - "endPoint": { - "x": 617.120907, - "y": 28.804139 - } - } - }, - { - "id": "05166e34-96f1-5b7b-a843-27546c233f0b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 617.120907, - "y": 28.804139 - }, - "endPoint": { - "x": 617.192031, - "y": 28.869902 - } - } - }, - { - "id": "08050639-580a-5c76-8b2c-e52619cac599", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 617.192031, - "y": 28.869902 - }, - "endPoint": { - "x": 617.263884, - "y": 28.934506 - } - } - }, - { - "id": "ec51745a-8ca7-5c69-afae-11ec8dce317d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 617.263884, - "y": 28.934506 - }, - "endPoint": { - "x": 617.336283, - "y": 28.997698 - } - } - }, - { - "id": "bb682e00-4cf1-5f84-a49b-087f3ac9c8e9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 617.336283, - "y": 28.997698 - }, - "endPoint": { - "x": 617.409047, - "y": 29.059229 - } - } - }, - { - "id": "8b5f5cc5-f9ef-5b49-b40c-8c8f31a9312d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 617.409047, - "y": 29.059229 - }, - "endPoint": { - "x": 617.481993, - "y": 29.118849 - } - } - }, - { - "id": "d83a2b44-7676-5668-91f2-b59735c852c8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 617.481993, - "y": 29.118849 - }, - "endPoint": { - "x": 617.554939, - "y": 29.176307 - } - } - }, - { - "id": "b8ed6ef5-c0e5-5189-9855-02bbafb51ca0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 617.554939, - "y": 29.176307 - }, - "endPoint": { - "x": 617.627702, - "y": 29.231354 - } - } - }, - { - "id": "b1dca6de-e9b9-5788-8361-c598e5c26c0d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 617.627702, - "y": 29.231354 - }, - "endPoint": { - "x": 617.700102, - "y": 29.283738 - } - } - }, - { - "id": "cdf933f2-6812-5377-bcfd-ffb478701547", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 617.700102, - "y": 29.283738 - }, - "endPoint": { - "x": 617.771993, - "y": 29.33327 - } - } - }, - { - "id": "f8803a7b-729e-5e29-af35-8dac05c512ea", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 617.771993, - "y": 29.33327 - }, - "endPoint": { - "x": 617.843382, - "y": 29.380003 - } - } - }, - { - "id": "66b2524c-ee14-52ec-9071-082ff219d262", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 617.843382, - "y": 29.380003 - }, - "endPoint": { - "x": 617.914317, - "y": 29.424051 - } - } - }, - { - "id": "7bacdcfe-00c8-5d75-91ca-99ad420c1374", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 617.914317, - "y": 29.424051 - }, - "endPoint": { - "x": 617.984841, - "y": 29.465528 - } - } - }, - { - "id": "42a849ce-8f73-5a81-896d-10253b2e241f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 617.984841, - "y": 29.465528 - }, - "endPoint": { - "x": 618.055001, - "y": 29.504548 - } - } - }, - { - "id": "ec928f6f-1eca-5085-88f3-fb075af093e0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.055001, - "y": 29.504548 - }, - "endPoint": { - "x": 618.124842, - "y": 29.541224 - } - } - }, - { - "id": "4ac51992-36eb-5740-93b2-1d8ad939634f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.124842, - "y": 29.541224 - }, - "endPoint": { - "x": 618.194409, - "y": 29.57567 - } - } - }, - { - "id": "d8af32c4-bf06-5b19-ab20-d201fcf331b7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.194409, - "y": 29.57567 - }, - "endPoint": { - "x": 618.263749, - "y": 29.608 - } - } - }, - { - "id": "c158a587-0b11-5346-b9cb-a0f8cd712c13", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.263749, - "y": 29.608 - }, - "endPoint": { - "x": 618.33291, - "y": 29.63835 - } - } - }, - { - "id": "9ab458b9-e0f3-5bec-a7c9-8d0956497bda", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.33291, - "y": 29.63835 - }, - "endPoint": { - "x": 618.401958, - "y": 29.666948 - } - } - }, - { - "id": "664ce61d-76af-5302-bfae-a9f6ab3ef356", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.401958, - "y": 29.666948 - }, - "endPoint": { - "x": 618.47096, - "y": 29.694045 - } - } - }, - { - "id": "97fe7972-8c2d-5377-8bb8-af2350dff130", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.47096, - "y": 29.694045 - }, - "endPoint": { - "x": 618.539984, - "y": 29.71989 - } - } - }, - { - "id": "92034c8c-8bca-5f52-b6a1-ef84464b9c6f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.539984, - "y": 29.71989 - }, - "endPoint": { - "x": 618.6091, - "y": 29.744734 - } - } - }, - { - "id": "f83423a4-f97c-5b32-a9ce-da717d965869", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.6091, - "y": 29.744734 - }, - "endPoint": { - "x": 618.678375, - "y": 29.768827 - } - } - }, - { - "id": "ecf6d18b-6fe8-5c05-adb8-c9115de9c11a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.678375, - "y": 29.768827 - }, - "endPoint": { - "x": 618.747877, - "y": 29.792419 - } - } - }, - { - "id": "5c820470-1775-5586-96d9-a74954f5ead3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.747877, - "y": 29.792419 - }, - "endPoint": { - "x": 618.817676, - "y": 29.815761 - } - } - }, - { - "id": "b6d0fed4-fb45-5cb2-be01-3aa321510873", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.817676, - "y": 29.815761 - }, - "endPoint": { - "x": 618.887832, - "y": 29.839012 - } - } - }, - { - "id": "4d7c212b-5df6-55e4-a1d4-69ef5334c56f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.887832, - "y": 29.839012 - }, - "endPoint": { - "x": 618.958374, - "y": 29.861967 - } - } - }, - { - "id": "1fe952b2-648f-5e46-8a70-8f7b9cb126fe", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.958374, - "y": 29.861967 - }, - "endPoint": { - "x": 619.029327, - "y": 29.884331 - } - } - }, - { - "id": "0fdb874b-d621-5c3e-b5b9-43d09c6adc9c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.029327, - "y": 29.884331 - }, - "endPoint": { - "x": 619.100713, - "y": 29.905807 - } - } - }, - { - "id": "3d2081bc-f321-5deb-bfb7-17f29d9c9763", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.100713, - "y": 29.905807 - }, - "endPoint": { - "x": 619.172554, - "y": 29.9261 - } - } - }, - { - "id": "2b6480a2-26fd-5d7d-b8d6-b5ffad750f94", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.172554, - "y": 29.9261 - }, - "endPoint": { - "x": 619.244873, - "y": 29.944914 - } - } - }, - { - "id": "ea19f3d7-55d9-5430-b3c1-fd1b86e1acc9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.244873, - "y": 29.944914 - }, - "endPoint": { - "x": 619.317694, - "y": 29.961954 - } - } - }, - { - "id": "2566ddb4-902a-5eb6-ab2a-1cbb06df4fdd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.317694, - "y": 29.961954 - }, - "endPoint": { - "x": 619.391038, - "y": 29.976922 - } - } - }, - { - "id": "98fd3896-04e5-57ca-b9ac-51eb0bda2d9a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.391038, - "y": 29.976922 - }, - "endPoint": { - "x": 619.464838, - "y": 29.989608 - } - } - }, - { - "id": "4829f54b-18f1-5fc2-8eac-c8eaaefd5b34", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.464838, - "y": 29.989608 - }, - "endPoint": { - "x": 619.538661, - "y": 30.000132 - } - } - }, - { - "id": "cdd89c1d-f20a-5e0e-bd36-2e5c3532b8c2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.538661, - "y": 30.000132 - }, - "endPoint": { - "x": 619.611983, - "y": 30.008699 - } - } - }, - { - "id": "9cec3a3f-f2e3-5806-9511-65cbd1cd7163", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.611983, - "y": 30.008699 - }, - "endPoint": { - "x": 619.68428, - "y": 30.015514 - } - } - }, - { - "id": "ff8e4869-b379-59aa-88fd-8fa09f13046c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.68428, - "y": 30.015514 - }, - "endPoint": { - "x": 619.755028, - "y": 30.020781 - } - } - }, - { - "id": "4bb7fe6f-3348-51fe-8b3e-f57e12ab574c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.755028, - "y": 30.020781 - }, - "endPoint": { - "x": 619.823704, - "y": 30.024706 - } - } - }, - { - "id": "e698e6dc-4f24-5f5e-838e-4022fccd4ad4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.823704, - "y": 30.024706 - }, - "endPoint": { - "x": 619.889783, - "y": 30.027494 - } - } - }, - { - "id": "42cb2140-ffe7-59dd-b1fa-03fc3ceff4cc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.889783, - "y": 30.027494 - }, - "endPoint": { - "x": 619.952741, - "y": 30.029348 - } - } - }, - { - "id": "4627ce25-90b6-5b08-92a2-2ca6ea3e2aca", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.952741, - "y": 30.029348 - }, - "endPoint": { - "x": 620.012218, - "y": 30.030406 - } - } - }, - { - "id": "8590a857-9817-5c7d-978e-8d3a75655392", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.012218, - "y": 30.030406 - }, - "endPoint": { - "x": 620.068507, - "y": 30.030531 - } - } - }, - { - "id": "07c96ce1-4179-5860-9b54-99ccc7ef9672", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.068507, - "y": 30.030531 - }, - "endPoint": { - "x": 620.122062, - "y": 30.029519 - } - } - }, - { - "id": "ff48b688-b672-56bb-ab08-4904a6482a83", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.122062, - "y": 30.029519 - }, - "endPoint": { - "x": 620.17334, - "y": 30.027164 - } - } - }, - { - "id": "0e59fb47-69ba-5fec-b5c2-b2d149193037", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.17334, - "y": 30.027164 - }, - "endPoint": { - "x": 620.222795, - "y": 30.023261 - } - } - }, - { - "id": "33894fcb-78eb-5ee9-aa37-3c2cc052c666", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.222795, - "y": 30.023261 - }, - "endPoint": { - "x": 620.270884, - "y": 30.017607 - } - } - }, - { - "id": "2c6217ac-c2d0-5e32-920a-705607a23c65", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.270884, - "y": 30.017607 - }, - "endPoint": { - "x": 620.318062, - "y": 30.009995 - } - } - }, - { - "id": "cd9347f0-417e-5116-a9a0-fa2dfeafaec2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.318062, - "y": 30.009995 - }, - "endPoint": { - "x": 620.364784, - "y": 30.000222 - } - } - }, - { - "id": "d0947a7b-02c8-559e-a025-1d729fbde624", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.364784, - "y": 30.000222 - }, - "endPoint": { - "x": 620.411378, - "y": 29.988102 - } - } - }, - { - "id": "c4f04648-2865-58a7-9711-d950e2d5a6d7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.411378, - "y": 29.988102 - }, - "endPoint": { - "x": 620.457652, - "y": 29.973524 - } - } - }, - { - "id": "3771663d-d130-5878-9bec-1cf2e7f7bb59", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.457652, - "y": 29.973524 - }, - "endPoint": { - "x": 620.503289, - "y": 29.956397 - } - } - }, - { - "id": "8099cd18-4aec-5e76-ab54-a790ff5e58fa", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.503289, - "y": 29.956397 - }, - "endPoint": { - "x": 620.547969, - "y": 29.936631 - } - } - }, - { - "id": "056ed822-a1dd-524e-92bc-c732e4cd3f90", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.547969, - "y": 29.936631 - }, - "endPoint": { - "x": 620.591374, - "y": 29.914135 - } - } - }, - { - "id": "683675bb-6585-5a41-9341-917442d1b5f9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.591374, - "y": 29.914135 - }, - "endPoint": { - "x": 620.633184, - "y": 29.888817 - } - } - }, - { - "id": "9a0c97b9-e7ab-5173-9251-e8e7685cf0e6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.633184, - "y": 29.888817 - }, - "endPoint": { - "x": 620.673082, - "y": 29.860587 - } - } - }, - { - "id": "cec030f7-7afc-5148-b141-7f5a4c1e852e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.673082, - "y": 29.860587 - }, - "endPoint": { - "x": 620.710747, - "y": 29.829353 - } - } - }, - { - "id": "6f7dfedb-e0b9-5ced-8871-55eef90e584f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.710747, - "y": 29.829353 - }, - "endPoint": { - "x": 620.745921, - "y": 29.795145 - } - } - }, - { - "id": "b86bb4ec-7776-58cc-b9fa-cdb3dbd6f6fe", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.745921, - "y": 29.795145 - }, - "endPoint": { - "x": 620.778591, - "y": 29.758481 - } - } - }, - { - "id": "3230f8d9-d684-5dc1-bb13-a234a5ac933b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.778591, - "y": 29.758481 - }, - "endPoint": { - "x": 620.8088, - "y": 29.719996 - } - } - }, - { - "id": "9554b343-8db8-5561-96f9-a5d9aa7343ed", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.8088, - "y": 29.719996 - }, - "endPoint": { - "x": 620.836595, - "y": 29.680328 - } - } - }, - { - "id": "aa8e67f5-bfcc-5441-a395-f16c50438ef2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.836595, - "y": 29.680328 - }, - "endPoint": { - "x": 620.862021, - "y": 29.640113 - } - } - }, - { - "id": "61f01c2f-e7e3-5cf8-b4a9-92fa7b2cf49d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.862021, - "y": 29.640113 - }, - "endPoint": { - "x": 620.885124, - "y": 29.59999 - } - } - }, - { - "id": "abff1df6-bf15-55b5-b96d-404240bede8a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.885124, - "y": 29.59999 - }, - "endPoint": { - "x": 620.905949, - "y": 29.560595 - } - } - }, - { - "id": "ee25ddc2-2438-58e8-92ba-dbc148adbb06", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.905949, - "y": 29.560595 - }, - "endPoint": { - "x": 620.924542, - "y": 29.522565 - } - } - }, - { - "id": "2b3ae6ed-bc17-53ba-8d0d-f77a9f91969a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.924542, - "y": 29.522565 - }, - "endPoint": { - "x": 620.940915, - "y": 29.486226 - } - } - }, - { - "id": "c2690cfb-fd77-50b2-b43d-c55f66e301ce", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.940915, - "y": 29.486226 - }, - "endPoint": { - "x": 620.954941, - "y": 29.450662 - } - } - }, - { - "id": "7e1835a4-8d5b-588f-a00a-84d5b11d7de4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.954941, - "y": 29.450662 - }, - "endPoint": { - "x": 620.966462, - "y": 29.414642 - } - } - }, - { - "id": "463602e3-c225-549c-add6-522ae27285e5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.966462, - "y": 29.414642 - }, - "endPoint": { - "x": 620.975318, - "y": 29.376938 - } - } - }, - { - "id": "f90b699a-31df-5b06-9654-9938fd61d9b1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.975318, - "y": 29.376938 - }, - "endPoint": { - "x": 620.98135, - "y": 29.336322 - } - } - }, - { - "id": "bfd6136d-c8f1-5b41-bc9f-37dd9bf5ca56", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.98135, - "y": 29.336322 - }, - "endPoint": { - "x": 620.984398, - "y": 29.291564 - } - } - }, - { - "id": "4ed0494d-df8c-5769-aa35-883a6f08037c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.984398, - "y": 29.291564 - }, - "endPoint": { - "x": 620.984303, - "y": 29.241437 - } - } - }, - { - "id": "62ba2ceb-b1e6-5bef-9638-73baadb8a307", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.984303, - "y": 29.241437 - }, - "endPoint": { - "x": 620.980905, - "y": 29.18471 - } - } - }, - { - "id": "da874994-7413-519f-80a2-70007f08a847", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.980905, - "y": 29.18471 - }, - "endPoint": { - "x": 620.974004, - "y": 29.120434 - } - } - }, - { - "id": "36e90ffc-02a6-5a32-83b7-80b4b07a4648", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.974004, - "y": 29.120434 - }, - "endPoint": { - "x": 620.963231, - "y": 29.048762 - } - } - }, - { - "id": "df444d5a-7f58-5dca-80d6-9938ed3e911d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.963231, - "y": 29.048762 - }, - "endPoint": { - "x": 620.948175, - "y": 28.970127 - } - } - }, - { - "id": "3f4a0539-ffd0-5a5b-a805-b155b8a50cba", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.948175, - "y": 28.970127 - }, - "endPoint": { - "x": 620.928428, - "y": 28.884962 - } - } - }, - { - "id": "03e40e19-e414-5e3f-a822-a4e5670e50b2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.928428, - "y": 28.884962 - }, - "endPoint": { - "x": 620.903579, - "y": 28.793698 - } - } - }, - { - "id": "7a9d3e4d-74e6-5d36-8208-9cfd6c3531fd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.903579, - "y": 28.793698 - }, - "endPoint": { - "x": 620.873218, - "y": 28.696769 - } - } - }, - { - "id": "7eba033b-bf6c-50d9-9060-4e25a073adfb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.873218, - "y": 28.696769 - }, - "endPoint": { - "x": 620.836935, - "y": 28.594607 - } - } - }, - { - "id": "b88fdc05-510a-5196-b25d-ac226c227ddc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.836935, - "y": 28.594607 - }, - "endPoint": { - "x": 620.79432, - "y": 28.487643 - } - } - }, - { - "id": "ec83b62b-e065-5156-be70-159ed54d5e71", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.79432, - "y": 28.487643 - }, - "endPoint": { - "x": 620.745104, - "y": 28.37626 - } - } - }, - { - "id": "203bbb87-dec3-5876-b699-752d0493ba48", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.745104, - "y": 28.37626 - }, - "endPoint": { - "x": 620.68958, - "y": 28.260638 - } - } - }, - { - "id": "ed5e9878-66ef-5439-81e1-48fea2a8b754", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.68958, - "y": 28.260638 - }, - "endPoint": { - "x": 620.628182, - "y": 28.140908 - } - } - }, - { - "id": "61a6051b-e8ba-537f-a910-994c09f72380", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.628182, - "y": 28.140908 - }, - "endPoint": { - "x": 620.561343, - "y": 28.017199 - } - } - }, - { - "id": "8bcb97d5-7b80-5d46-9395-a668f6a6bc73", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.561343, - "y": 28.017199 - }, - "endPoint": { - "x": 620.489498, - "y": 27.889641 - } - } - }, - { - "id": "45bfcc77-c0c5-55d0-b1eb-2edeb21992dd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.489498, - "y": 27.889641 - }, - "endPoint": { - "x": 620.41308, - "y": 27.758365 - } - } - }, - { - "id": "906a26e7-0924-5ccf-bd6f-8cd96a22ed42", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.41308, - "y": 27.758365 - }, - "endPoint": { - "x": 620.332524, - "y": 27.6235 - } - } - }, - { - "id": "4a8f915d-18f8-5e8d-a545-bd9ab94158a3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.332524, - "y": 27.6235 - }, - "endPoint": { - "x": 620.248262, - "y": 27.485177 - } - } - }, - { - "id": "ba56dea7-1400-526a-b790-43630472bcc2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.248262, - "y": 27.485177 - }, - "endPoint": { - "x": 620.160789, - "y": 27.343715 - } - } - }, - { - "id": "e23a3217-c9d6-5332-af74-e7d950720eef", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.160789, - "y": 27.343715 - }, - "endPoint": { - "x": 620.070841, - "y": 27.200189 - } - } - }, - { - "id": "34e89adb-cc29-5510-8c8e-ceb6e97e710e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.070841, - "y": 27.200189 - }, - "endPoint": { - "x": 619.979211, - "y": 27.055863 - } - } - }, - { - "id": "c83a5566-4791-5c3c-81d9-cb79c64eaa66", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.979211, - "y": 27.055863 - }, - "endPoint": { - "x": 619.886694, - "y": 26.912002 - } - } - }, - { - "id": "5b37b7ea-3370-513a-8ba0-8b53a6add26d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.886694, - "y": 26.912002 - }, - "endPoint": { - "x": 619.794087, - "y": 26.769871 - } - } - }, - { - "id": "6e692801-87a2-5e5b-83f8-07bf1ce5a9be", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.794087, - "y": 26.769871 - }, - "endPoint": { - "x": 619.702183, - "y": 26.630733 - } - } - }, - { - "id": "2b02328f-42d3-58ec-a698-6c1c7719120c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.702183, - "y": 26.630733 - }, - "endPoint": { - "x": 619.611779, - "y": 26.495854 - } - } - }, - { - "id": "b6a2976e-9399-584a-b346-797921f309af", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.611779, - "y": 26.495854 - }, - "endPoint": { - "x": 619.523668, - "y": 26.366496 - } - } - }, - { - "id": "d834e179-8758-5843-bd1d-74fb40aaa224", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.523668, - "y": 26.366496 - }, - "endPoint": { - "x": 619.438457, - "y": 26.243623 - } - } - }, - { - "id": "830b9855-64a3-5560-ba74-f0afda82c70b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.438457, - "y": 26.243623 - }, - "endPoint": { - "x": 619.355995, - "y": 26.126985 - } - } - }, - { - "id": "90f66a6a-42ad-5569-aa2d-3a5c22573061", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.355995, - "y": 26.126985 - }, - "endPoint": { - "x": 619.27594, - "y": 26.016028 - } - } - }, - { - "id": "1f58cc56-853f-50b4-9e83-fd674f719492", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.27594, - "y": 26.016028 - }, - "endPoint": { - "x": 619.197953, - "y": 25.910201 - } - } - }, - { - "id": "1bed4ce7-fc23-5cad-9208-dda137d91358", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.197953, - "y": 25.910201 - }, - "endPoint": { - "x": 619.121692, - "y": 25.80895 - } - } - }, - { - "id": "e2fcd738-cb3f-5d17-a439-705eeeff0471", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.121692, - "y": 25.80895 - }, - "endPoint": { - "x": 619.046817, - "y": 25.711723 - } - } - }, - { - "id": "f6b1ea41-d76b-559c-8b5c-bf5c4820f667", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.046817, - "y": 25.711723 - }, - "endPoint": { - "x": 618.972988, - "y": 25.617968 - } - } - }, - { - "id": "28e22a68-4d35-5778-a994-97009ee11c77", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.972988, - "y": 25.617968 - }, - "endPoint": { - "x": 618.899864, - "y": 25.527132 - } - } - }, - { - "id": "e3c7dadc-3342-5099-b07e-9a0baaccdbd5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.899864, - "y": 25.527132 - }, - "endPoint": { - "x": 618.827244, - "y": 25.438823 - } - } - }, - { - "id": "e9e58b0a-a52e-5f16-af84-6f4f177f4ae6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.827244, - "y": 25.438823 - }, - "endPoint": { - "x": 618.75549, - "y": 25.35329 - } - } - }, - { - "id": "b56b07b7-a4d6-59ff-bc1e-0bdbe291477c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.75549, - "y": 25.35329 - }, - "endPoint": { - "x": 618.685103, - "y": 25.270942 - } - } - }, - { - "id": "f6ae897b-6cdf-59b6-828f-beab3b3b6d89", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.685103, - "y": 25.270942 - }, - "endPoint": { - "x": 618.616583, - "y": 25.19219 - } - } - }, - { - "id": "850bb241-9fc8-5907-a2af-5de7bfbfa0c6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.616583, - "y": 25.19219 - }, - "endPoint": { - "x": 618.550432, - "y": 25.117442 - } - } - }, - { - "id": "9ca6cb69-641d-5ea6-9b99-9af8a46982ba", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.550432, - "y": 25.117442 - }, - "endPoint": { - "x": 618.487151, - "y": 25.047109 - } - } - }, - { - "id": "1d602254-2935-5302-95e4-4041bc83dc29", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.487151, - "y": 25.047109 - }, - "endPoint": { - "x": 618.427241, - "y": 24.9816 - } - } - }, - { - "id": "4c000bf8-bf2f-5860-a66e-11216bd8d312", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.427241, - "y": 24.9816 - }, - "endPoint": { - "x": 618.371203, - "y": 24.921324 - } - } - }, - { - "id": "b9fc5254-9471-5816-b58e-664a662eb558", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.371203, - "y": 24.921324 - }, - "endPoint": { - "x": 618.319527, - "y": 24.866471 - } - } - }, - { - "id": "645c6995-a254-5912-9ae4-f1b3822181e4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.319527, - "y": 24.866471 - }, - "endPoint": { - "x": 618.272656, - "y": 24.816351 - } - } - }, - { - "id": "fa0ad34d-3d5b-5fb9-bf2e-453e0adde621", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.272656, - "y": 24.816351 - }, - "endPoint": { - "x": 618.231025, - "y": 24.770054 - } - } - }, - { - "id": "1aae37e1-e681-5d40-b8bc-9a63596153dc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.231025, - "y": 24.770054 - }, - "endPoint": { - "x": 618.195065, - "y": 24.726669 - } - } - }, - { - "id": "1340be7f-3716-53ce-9b3b-2d58ec918d32", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.195065, - "y": 24.726669 - }, - "endPoint": { - "x": 618.165209, - "y": 24.685287 - } - } - }, - { - "id": "8ee51269-0851-51d5-8b49-d699d907853b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.165209, - "y": 24.685287 - }, - "endPoint": { - "x": 618.141889, - "y": 24.644997 - } - } - }, - { - "id": "065231a6-b2ee-5566-86c7-c76bf4173aa3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.141889, - "y": 24.644997 - }, - "endPoint": { - "x": 618.12554, - "y": 24.604888 - } - } - }, - { - "id": "2b71de8d-4596-545d-a179-b22a2027d155", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.12554, - "y": 24.604888 - }, - "endPoint": { - "x": 618.116593, - "y": 24.564052 - } - } - }, - { - "id": "f35abad5-1dbc-5f01-a649-9da0932076e4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.116593, - "y": 24.564052 - }, - "endPoint": { - "x": 618.115257, - "y": 24.521926 - } - } - }, - { - "id": "1350ef67-5f8f-5065-8144-8e81fb95ab29", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.115257, - "y": 24.521926 - }, - "endPoint": { - "x": 618.120845, - "y": 24.479346 - } - } - }, - { - "id": "0684eeff-de60-5e55-9923-f1c6df330d89", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.120845, - "y": 24.479346 - }, - "endPoint": { - "x": 618.132445, - "y": 24.437493 - } - } - }, - { - "id": "74109863-cc57-53d1-8648-7c8758789c33", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.132445, - "y": 24.437493 - }, - "endPoint": { - "x": 618.149148, - "y": 24.397551 - } - } - }, - { - "id": "54fbe2aa-1ad4-5c0f-a791-a79796c8cda5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.149148, - "y": 24.397551 - }, - "endPoint": { - "x": 618.170042, - "y": 24.360705 - } - } - }, - { - "id": "f6d31fc3-8dd4-5f52-ae0a-ade9ec85dee6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.170042, - "y": 24.360705 - }, - "endPoint": { - "x": 618.194216, - "y": 24.328136 - } - } - }, - { - "id": "b967f3ac-6332-5967-a884-71afdc52a3a0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.194216, - "y": 24.328136 - }, - "endPoint": { - "x": 618.220758, - "y": 24.301028 - } - } - }, - { - "id": "fe7802cf-efc3-52a5-8da0-0da6cae67288", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.220758, - "y": 24.301028 - }, - "endPoint": { - "x": 618.248758, - "y": 24.280564 - } - } - }, - { - "id": "55a3eb94-a765-5feb-82c8-3435763ed980", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.248758, - "y": 24.280564 - }, - "endPoint": { - "x": 618.277449, - "y": 24.267624 - } - } - }, - { - "id": "5fc31edc-b070-5793-beed-4347b7391842", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.277449, - "y": 24.267624 - }, - "endPoint": { - "x": 618.306641, - "y": 24.261875 - } - } - }, - { - "id": "4fa37bf4-502e-5c0a-a24d-1831b2923cb5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.306641, - "y": 24.261875 - }, - "endPoint": { - "x": 618.336288, - "y": 24.262679 - } - } - }, - { - "id": "f5c358b8-e1da-5254-9ea8-a8940c54499a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.336288, - "y": 24.262679 - }, - "endPoint": { - "x": 618.366346, - "y": 24.269399 - } - } - }, - { - "id": "5976c19d-4299-5036-b8c9-dbab389d5e38", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.366346, - "y": 24.269399 - }, - "endPoint": { - "x": 618.396768, - "y": 24.281398 - } - } - }, - { - "id": "c8815a51-8a48-5556-a41f-71b8fd703d04", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.396768, - "y": 24.281398 - }, - "endPoint": { - "x": 618.427508, - "y": 24.298039 - } - } - }, - { - "id": "87aaa1be-6fd7-5312-bd3a-57a785573137", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.427508, - "y": 24.298039 - }, - "endPoint": { - "x": 618.458523, - "y": 24.318685 - } - } - }, - { - "id": "5843d56f-255c-550c-b98c-db956b14f4e0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.458523, - "y": 24.318685 - }, - "endPoint": { - "x": 618.489764, - "y": 24.342699 - } - } - }, - { - "id": "cfc416d4-853a-56c9-82a9-9375f39c7029", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.489764, - "y": 24.342699 - }, - "endPoint": { - "x": 618.521432, - "y": 24.369788 - } - } - }, - { - "id": "3299554a-4167-5554-80ac-6b811ab32b1c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.521432, - "y": 24.369788 - }, - "endPoint": { - "x": 618.554693, - "y": 24.401041 - } - } - }, - { - "id": "33398dcf-3a4a-518f-a63a-5e902ba6a355", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.554693, - "y": 24.401041 - }, - "endPoint": { - "x": 618.590961, - "y": 24.437891 - } - } - }, - { - "id": "54535287-8e93-5311-8f7f-59bc0229b3fa", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.590961, - "y": 24.437891 - }, - "endPoint": { - "x": 618.631647, - "y": 24.481773 - } - } - }, - { - "id": "5beaafc8-0614-53a8-a742-f04884e1f695", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.631647, - "y": 24.481773 - }, - "endPoint": { - "x": 618.678165, - "y": 24.534119 - } - } - }, - { - "id": "7cd5e9f5-3060-5fe6-9a69-bc141a33316a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.678165, - "y": 24.534119 - }, - "endPoint": { - "x": 618.731925, - "y": 24.596363 - } - } - }, - { - "id": "4b0f6d66-9702-56e9-bb11-c8e3aaf742e4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.731925, - "y": 24.596363 - }, - "endPoint": { - "x": 618.79434, - "y": 24.669939 - } - } - }, - { - "id": "637c6c66-ea78-5087-b8f0-ed9ad60ee8d7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.79434, - "y": 24.669939 - }, - "endPoint": { - "x": 618.866823, - "y": 24.75628 - } - } - }, - { - "id": "3aaca81f-dd28-502a-a796-b0752464bd7f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.866823, - "y": 24.75628 - }, - "endPoint": { - "x": 618.950201, - "y": 24.856224 - } - } - }, - { - "id": "5ef72c16-f298-5e1e-9785-b229be46dc49", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.950201, - "y": 24.856224 - }, - "endPoint": { - "x": 619.042962, - "y": 24.968228 - } - } - }, - { - "id": "453a930a-af75-560c-8d51-e4542299dcfc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.042962, - "y": 24.968228 - }, - "endPoint": { - "x": 619.143012, - "y": 25.090153 - } - } - }, - { - "id": "57a6c76a-db3c-5be7-9992-569e0631d182", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.143012, - "y": 25.090153 - }, - "endPoint": { - "x": 619.248255, - "y": 25.21986 - } - } - }, - { - "id": "16a63a9d-93d8-5c38-b007-8a193b0e726d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.248255, - "y": 25.21986 - }, - "endPoint": { - "x": 619.356596, - "y": 25.35521 - } - } - }, - { - "id": "91392b59-aed6-528f-b62e-d2aa3b6c472b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.356596, - "y": 25.35521 - }, - "endPoint": { - "x": 619.465939, - "y": 25.494064 - } - } - }, - { - "id": "5e0369f0-d808-5532-8d98-0ecfd14516b0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.465939, - "y": 25.494064 - }, - "endPoint": { - "x": 619.574188, - "y": 25.634283 - } - } - }, - { - "id": "b1dc2140-2947-59d3-a48e-687e80d9458f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.574188, - "y": 25.634283 - }, - "endPoint": { - "x": 619.679249, - "y": 25.773728 - } - } - }, - { - "id": "08bea7a7-768c-5d7e-8258-8ea4505de20d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.679249, - "y": 25.773728 - }, - "endPoint": { - "x": 619.779417, - "y": 25.910633 - } - } - }, - { - "id": "0394ba54-07c8-575d-bbcf-918a6c9a05a0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.779417, - "y": 25.910633 - }, - "endPoint": { - "x": 619.874551, - "y": 26.044716 - } - } - }, - { - "id": "e0612fb1-c440-5de1-a8a6-1ad545d89f27", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.874551, - "y": 26.044716 - }, - "endPoint": { - "x": 619.964902, - "y": 26.176069 - } - } - }, - { - "id": "ca1d0295-6ee7-5514-8c8b-ad87b8990f7b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.964902, - "y": 26.176069 - }, - "endPoint": { - "x": 620.05072, - "y": 26.304782 - } - } - }, - { - "id": "6c6c431c-fb48-5db1-a15b-6d7c1ab0790d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.05072, - "y": 26.304782 - }, - "endPoint": { - "x": 620.132257, - "y": 26.430947 - } - } - }, - { - "id": "a6270f14-e17b-577e-8ca5-b360a7466c87", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.132257, - "y": 26.430947 - }, - "endPoint": { - "x": 620.209761, - "y": 26.554654 - } - } - }, - { - "id": "20cb21a4-95d3-58da-9b70-3cdd2c8bf861", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.209761, - "y": 26.554654 - }, - "endPoint": { - "x": 620.283485, - "y": 26.675995 - } - } - }, - { - "id": "a56f6dbd-fdaf-52df-8b6c-b1c82cf9254f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.283485, - "y": 26.675995 - }, - "endPoint": { - "x": 620.353679, - "y": 26.79506 - } - } - }, - { - "id": "3e5b990d-3b4d-5873-9360-7c0c437061aa", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.353679, - "y": 26.79506 - }, - "endPoint": { - "x": 620.420631, - "y": 26.911857 - } - } - }, - { - "id": "164e73e0-d975-55f9-9376-6071938d55d0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.420631, - "y": 26.911857 - }, - "endPoint": { - "x": 620.484781, - "y": 27.026061 - } - } - }, - { - "id": "af0b2f2c-e440-51c5-8873-f8e5dc455b23", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.484781, - "y": 27.026061 - }, - "endPoint": { - "x": 620.546608, - "y": 27.137261 - } - } - }, - { - "id": "dc02df14-b965-53d2-9ed8-f3bf642a7e1a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.546608, - "y": 27.137261 - }, - "endPoint": { - "x": 620.606591, - "y": 27.245047 - } - } - }, - { - "id": "dd80f044-90a8-53ef-bbd5-b1d834ed9783", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.606591, - "y": 27.245047 - }, - "endPoint": { - "x": 620.665206, - "y": 27.349011 - } - } - }, - { - "id": "978995c4-0d15-5f51-8ad2-413ccb7e8287", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.665206, - "y": 27.349011 - }, - "endPoint": { - "x": 620.722934, - "y": 27.448743 - } - } - }, - { - "id": "ca966bf9-e236-5635-ae6e-27502722e2e6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.722934, - "y": 27.448743 - }, - "endPoint": { - "x": 620.780251, - "y": 27.543833 - } - } - }, - { - "id": "d1b2b5bb-8a6f-5b47-a5c1-e81091ce6c68", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.780251, - "y": 27.543833 - }, - "endPoint": { - "x": 620.837637, - "y": 27.633872 - } - } - }, - { - "id": "cf77e2b1-297c-59ef-8675-abd96be78878", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.837637, - "y": 27.633872 - }, - "endPoint": { - "x": 620.895414, - "y": 27.718574 - } - } - }, - { - "id": "6f3e5a92-b2cd-5577-b85c-a740e52498f2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.895414, - "y": 27.718574 - }, - "endPoint": { - "x": 620.953281, - "y": 27.798157 - } - } - }, - { - "id": "668db0e0-779f-504a-930c-e4e93fd0b7c0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.953281, - "y": 27.798157 - }, - "endPoint": { - "x": 621.010785, - "y": 27.872962 - } - } - }, - { - "id": "47edc786-ed66-5762-9749-cd2388eb45ee", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.010785, - "y": 27.872962 - }, - "endPoint": { - "x": 621.067469, - "y": 27.943329 - } - } - }, - { - "id": "eedff166-ba76-52cb-88f4-2cde8cceeea9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.067469, - "y": 27.943329 - }, - "endPoint": { - "x": 621.122877, - "y": 28.009601 - } - } - }, - { - "id": "10049c77-ba66-5c83-bf09-1a25db99d0fd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.122877, - "y": 28.009601 - }, - "endPoint": { - "x": 621.176554, - "y": 28.072118 - } - } - }, - { - "id": "3926aa18-33c7-5141-b479-d6c47262cc1f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.176554, - "y": 28.072118 - }, - "endPoint": { - "x": 621.228044, - "y": 28.131222 - } - } - }, - { - "id": "6b808413-3004-5f33-b6ae-b725d303d879", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.228044, - "y": 28.131222 - }, - "endPoint": { - "x": 621.276893, - "y": 28.187255 - } - } - }, - { - "id": "6ea6ae26-1501-586a-9ecd-2b69f8c44595", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.276893, - "y": 28.187255 - }, - "endPoint": { - "x": 621.322807, - "y": 28.240515 - } - } - }, - { - "id": "3967e721-36a7-50f3-84cd-59b2c81f4558", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.322807, - "y": 28.240515 - }, - "endPoint": { - "x": 621.366147, - "y": 28.291135 - } - } - }, - { - "id": "a7eab669-8f33-53dc-b016-d95b39e0d3d7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.366147, - "y": 28.291135 - }, - "endPoint": { - "x": 621.407437, - "y": 28.339207 - } - } - }, - { - "id": "8b877ecb-0828-599a-9de4-42b435e2e2a0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.407437, - "y": 28.339207 - }, - "endPoint": { - "x": 621.447202, - "y": 28.384822 - } - } - }, - { - "id": "8db6e936-5c67-5232-9367-d2e772109d93", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.447202, - "y": 28.384822 - }, - "endPoint": { - "x": 621.485964, - "y": 28.42807 - } - } - }, - { - "id": "dbe3cf7b-38ed-5e53-a66c-78e13a6caa77", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.485964, - "y": 28.42807 - }, - "endPoint": { - "x": 621.524248, - "y": 28.469043 - } - } - }, - { - "id": "4946ea2f-38ce-51fb-af1a-19719456ce2a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.524248, - "y": 28.469043 - }, - "endPoint": { - "x": 621.562577, - "y": 28.507831 - } - } - }, - { - "id": "4ca50259-8e95-568d-a32b-e97fdc1fb6cf", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.562577, - "y": 28.507831 - }, - "endPoint": { - "x": 621.601476, - "y": 28.544526 - } - } - }, - { - "id": "0f0ea27b-c62b-523a-b73a-13e4f5b019dd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.601476, - "y": 28.544526 - }, - "endPoint": { - "x": 621.641282, - "y": 28.579192 - } - } - }, - { - "id": "96002edf-f666-55d0-b406-c4a8702f073c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.641282, - "y": 28.579192 - }, - "endPoint": { - "x": 621.681589, - "y": 28.611787 - } - } - }, - { - "id": "03a1058a-e1b5-5748-9004-51ad5fdddf55", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.681589, - "y": 28.611787 - }, - "endPoint": { - "x": 621.721805, - "y": 28.642244 - } - } - }, - { - "id": "52b8b335-50e8-5a43-9e21-985f64f7dd7f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.721805, - "y": 28.642244 - }, - "endPoint": { - "x": 621.761337, - "y": 28.670494 - } - } - }, - { - "id": "33acb175-7a67-517c-82e2-ccc655d4a4c0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.761337, - "y": 28.670494 - }, - "endPoint": { - "x": 621.799594, - "y": 28.696468 - } - } - }, - { - "id": "88def119-b7f6-5e5a-a8e1-7b41d1cd3252", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.799594, - "y": 28.696468 - }, - "endPoint": { - "x": 621.835984, - "y": 28.720098 - } - } - }, - { - "id": "2cd091e2-4805-5395-bb44-c0390dd0c604", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.835984, - "y": 28.720098 - }, - "endPoint": { - "x": 621.869913, - "y": 28.741316 - } - } - }, - { - "id": "643aa38c-966e-5523-83c1-606d30599843", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.869913, - "y": 28.741316 - }, - "endPoint": { - "x": 621.90079, - "y": 28.760054 - } - } - }, - { - "id": "480cde44-1db3-5ef3-b235-46d52d797ee1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.90079, - "y": 28.760054 - }, - "endPoint": { - "x": 621.928198, - "y": 28.77627 - } - } - }, - { - "id": "88d1dbfb-471e-5c70-877a-505c5ddf76bb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.928198, - "y": 28.77627 - }, - "endPoint": { - "x": 621.952417, - "y": 28.790029 - } - } - }, - { - "id": "a53c8385-e446-5caa-8a0c-03bc13629719", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.952417, - "y": 28.790029 - }, - "endPoint": { - "x": 621.973903, - "y": 28.801421 - } - } - }, - { - "id": "e83a0035-8f76-574c-b731-5aa3ef408b1e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.973903, - "y": 28.801421 - }, - "endPoint": { - "x": 621.993111, - "y": 28.810538 - } - } - }, - { - "id": "bfb079a7-80ba-579c-b043-21b6991c5102", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.993111, - "y": 28.810538 - }, - "endPoint": { - "x": 622.010497, - "y": 28.81747 - } - } - }, - { - "id": "a80f3998-049c-5f3e-ac7d-8e71c7e9207f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.010497, - "y": 28.81747 - }, - "endPoint": { - "x": 622.026516, - "y": 28.822309 - } - } - }, - { - "id": "e6d622fa-4bc1-5960-81d2-19d8c48496a5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.026516, - "y": 28.822309 - }, - "endPoint": { - "x": 622.041625, - "y": 28.825146 - } - } - }, - { - "id": "1a007990-9388-55b3-bc4f-3fefc715e2e4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.041625, - "y": 28.825146 - }, - "endPoint": { - "x": 622.056277, - "y": 28.826071 - } - } - }, - { - "id": "e054e965-3509-5706-b2bd-94f1e304fe9c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.056277, - "y": 28.826071 - }, - "endPoint": { - "x": 622.070824, - "y": 28.825188 - } - } - }, - { - "id": "24494a10-1cf7-5710-ad06-0c03e991afcc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.070824, - "y": 28.825188 - }, - "endPoint": { - "x": 622.085188, - "y": 28.822643 - } - } - }, - { - "id": "71fa6a39-272c-574f-acdb-7a31b2d23420", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.085188, - "y": 28.822643 - }, - "endPoint": { - "x": 622.099188, - "y": 28.818597 - } - } - }, - { - "id": "ff7e2adf-cf17-5791-8e91-3647465f9521", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.099188, - "y": 28.818597 - }, - "endPoint": { - "x": 622.112641, - "y": 28.813208 - } - } - }, - { - "id": "5f846fee-2268-51e5-9b1c-40be5537169f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.112641, - "y": 28.813208 - }, - "endPoint": { - "x": 622.125366, - "y": 28.806636 - } - } - }, - { - "id": "55f19e61-ae05-5f76-a72e-3827fd95b9b8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.125366, - "y": 28.806636 - }, - "endPoint": { - "x": 622.137179, - "y": 28.79904 - } - } - }, - { - "id": "04ff6153-b2ef-5461-a222-1504a2768636", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.137179, - "y": 28.79904 - }, - "endPoint": { - "x": 622.147899, - "y": 28.790579 - } - } - }, - { - "id": "ccb49893-c40b-5d49-a7ce-f328f3f361c2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.147899, - "y": 28.790579 - }, - "endPoint": { - "x": 622.157344, - "y": 28.781413 - } - } - }, - { - "id": "fa6ddf31-3ba6-54e2-a79d-efa93d3a2ced", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.157344, - "y": 28.781413 - }, - "endPoint": { - "x": 622.16532, - "y": 28.771435 - } - } - }, - { - "id": "1f43f352-df69-59a7-8986-72fcb4fd9d2c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.16532, - "y": 28.771435 - }, - "endPoint": { - "x": 622.171587, - "y": 28.759478 - } - } - }, - { - "id": "fe107ddf-d21f-5697-9de1-071542b74432", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.171587, - "y": 28.759478 - }, - "endPoint": { - "x": 622.175896, - "y": 28.744107 - } - } - }, - { - "id": "edb287be-e600-561b-999c-59dae3c805bb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.175896, - "y": 28.744107 - }, - "endPoint": { - "x": 622.177995, - "y": 28.72389 - } - } - }, - { - "id": "53356b0f-034d-5980-a6b7-f25f054c4c12", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.177995, - "y": 28.72389 - }, - "endPoint": { - "x": 622.177635, - "y": 28.697393 - } - } - }, - { - "id": "bdcc572b-1ad3-5eab-9820-4a84e2c9a001", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.177635, - "y": 28.697393 - }, - "endPoint": { - "x": 622.174564, - "y": 28.663182 - } - } - }, - { - "id": "85f0a605-b434-578e-b7e2-bb6adb797d24", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.174564, - "y": 28.663182 - }, - "endPoint": { - "x": 622.168532, - "y": 28.619823 - } - } - }, - { - "id": "e3747179-c943-5a6a-8fef-04ce168181a1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.168532, - "y": 28.619823 - }, - "endPoint": { - "x": 622.159289, - "y": 28.565885 - } - } - }, - { - "id": "878b7ab5-01ae-519b-bd62-0a53f270532c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.159289, - "y": 28.565885 - }, - "endPoint": { - "x": 622.146652, - "y": 28.500322 - } - } - }, - { - "id": "126e7aee-7bce-5bdf-a758-71655c4c7652", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.146652, - "y": 28.500322 - }, - "endPoint": { - "x": 622.130712, - "y": 28.423656 - } - } - }, - { - "id": "ba6bb556-609e-59c4-beac-59f0c232a79a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.130712, - "y": 28.423656 - }, - "endPoint": { - "x": 622.111629, - "y": 28.336795 - } - } - }, - { - "id": "0aa8df10-ab34-52f0-8aa4-b38e737b4a6d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.111629, - "y": 28.336795 - }, - "endPoint": { - "x": 622.089562, - "y": 28.240651 - } - } - }, - { - "id": "1b9453b9-2798-5bf8-b134-f9e17b8bd468", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.089562, - "y": 28.240651 - }, - "endPoint": { - "x": 622.064671, - "y": 28.136133 - } - } - }, - { - "id": "1919e1ea-9c95-5dff-a82b-9050318f46ee", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.064671, - "y": 28.136133 - }, - "endPoint": { - "x": 622.037115, - "y": 28.024152 - } - } - }, - { - "id": "37ee0eb9-f790-522e-b08b-079c4fed87f5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.037115, - "y": 28.024152 - }, - "endPoint": { - "x": 622.007054, - "y": 27.905618 - } - } - }, - { - "id": "6d15e87b-a4b2-51fa-96fb-526d898c8529", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.007054, - "y": 27.905618 - }, - "endPoint": { - "x": 621.974647, - "y": 27.78144 - } - } - }, - { - "id": "8d9b35e4-cc6e-5755-81c7-76b4ca6e858f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.974647, - "y": 27.78144 - }, - "endPoint": { - "x": 621.940011, - "y": 27.65245 - } - } - }, - { - "id": "772c82e8-36d2-520a-bfb1-8f2de87d278c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.940011, - "y": 27.65245 - }, - "endPoint": { - "x": 621.903098, - "y": 27.51916 - } - } - }, - { - "id": "914a3ca9-8820-56f3-94d7-88b35bf1c60c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.903098, - "y": 27.51916 - }, - "endPoint": { - "x": 621.863816, - "y": 27.382001 - } - } - }, - { - "id": "2d654b3a-86e0-51e4-a330-168e576368eb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.863816, - "y": 27.382001 - }, - "endPoint": { - "x": 621.822074, - "y": 27.241406 - } - } - }, - { - "id": "f571bb23-3166-5da4-aba0-6194425de312", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.822074, - "y": 27.241406 - }, - "endPoint": { - "x": 621.77778, - "y": 27.097808 - } - } - }, - { - "id": "160c9c15-35d8-5770-a657-71f242dd1343", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.77778, - "y": 27.097808 - }, - "endPoint": { - "x": 621.730845, - "y": 26.951638 - } - } - }, - { - "id": "efd9b7a3-077a-5852-b431-8ea288d4ecd2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.730845, - "y": 26.951638 - }, - "endPoint": { - "x": 621.681177, - "y": 26.80333 - } - } - }, - { - "id": "6c958601-edc5-531b-a508-21ec7d9ad524", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.681177, - "y": 26.80333 - }, - "endPoint": { - "x": 621.628684, - "y": 26.653315 - } - } - }, - { - "id": "af6cc610-56ef-53dd-ad35-7e60910e9d95", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.628684, - "y": 26.653315 - }, - "endPoint": { - "x": 621.573466, - "y": 26.502246 - } - } - }, - { - "id": "f0de5eb1-ca5a-549c-b313-feba4a62a00b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.573466, - "y": 26.502246 - }, - "endPoint": { - "x": 621.51638, - "y": 26.351654 - } - } - }, - { - "id": "4cafd3c6-a8ae-5c91-9df9-b28cf50e3a0d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.51638, - "y": 26.351654 - }, - "endPoint": { - "x": 621.458474, - "y": 26.203293 - } - } - }, - { - "id": "23ddee06-53be-50bb-b9d1-b72950442f20", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.458474, - "y": 26.203293 - }, - "endPoint": { - "x": 621.400796, - "y": 26.058913 - } - } - }, - { - "id": "01b98f81-4fb9-508e-8840-ef861e101529", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.400796, - "y": 26.058913 - }, - "endPoint": { - "x": 621.344394, - "y": 25.920268 - } - } - }, - { - "id": "585e203e-0fd7-5ce4-b2eb-d0403edb24ee", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.344394, - "y": 25.920268 - }, - "endPoint": { - "x": 621.290314, - "y": 25.789109 - } - } - }, - { - "id": "9ad5f143-87df-5b29-8e58-133fb6b214c3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.290314, - "y": 25.789109 - }, - "endPoint": { - "x": 621.239606, - "y": 25.667188 - } - } - }, - { - "id": "a4aaf8b4-2b1b-5c1b-ac83-47e3cb49981e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.239606, - "y": 25.667188 - }, - "endPoint": { - "x": 621.193316, - "y": 25.556257 - } - } - }, - { - "id": "daf301dc-b89e-528c-8a11-89190d8ab57a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.193316, - "y": 25.556257 - }, - "endPoint": { - "x": 621.152299, - "y": 25.457538 - } - } - }, - { - "id": "182b28a3-2ee6-504e-8d05-634c201c35c7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.152299, - "y": 25.457538 - }, - "endPoint": { - "x": 621.116635, - "y": 25.370128 - } - } - }, - { - "id": "cb73cf79-bcd7-5013-af89-fcf57268eafe", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.116635, - "y": 25.370128 - }, - "endPoint": { - "x": 621.08621, - "y": 25.292593 - } - } - }, - { - "id": "f5831f62-ace8-5cc4-82e6-a8ae05e5115b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.08621, - "y": 25.292593 - }, - "endPoint": { - "x": 621.060909, - "y": 25.2235 - } - } - }, - { - "id": "ad00be82-3bb8-5cdb-9164-b621b3d59f90", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.060909, - "y": 25.2235 - }, - "endPoint": { - "x": 621.040619, - "y": 25.161415 - } - } - }, - { - "id": "1f11317d-9f48-58c4-96ba-629a9a580f32", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.040619, - "y": 25.161415 - }, - "endPoint": { - "x": 621.025226, - "y": 25.104905 - } - } - }, - { - "id": "759db5b4-5206-51ed-915a-52556d6f694a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.025226, - "y": 25.104905 - }, - "endPoint": { - "x": 621.014616, - "y": 25.052536 - } - } - }, - { - "id": "6ae61fc9-d3f8-593b-acee-a19a43c97613", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.014616, - "y": 25.052536 - }, - "endPoint": { - "x": 621.008675, - "y": 25.002875 - } - } - }, - { - "id": "08218cc1-7089-52f7-ac79-78447ac23c45", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.008675, - "y": 25.002875 - }, - "endPoint": { - "x": 621.00724, - "y": 24.954795 - } - } - }, - { - "id": "2a010617-c486-5a86-ae2b-10ee6e6b2ac7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.00724, - "y": 24.954795 - }, - "endPoint": { - "x": 621.00995, - "y": 24.908399 - } - } - }, - { - "id": "95a3efab-55a7-56e8-ad69-da36e464dbaf", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.00995, - "y": 24.908399 - }, - "endPoint": { - "x": 621.016396, - "y": 24.864096 - } - } - }, - { - "id": "8ea92a18-9137-54dd-b14e-59a60e2bd945", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.016396, - "y": 24.864096 - }, - "endPoint": { - "x": 621.026167, - "y": 24.822297 - } - } - }, - { - "id": "35b4df86-d07e-5e5f-a5f1-edd73b7461e7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.026167, - "y": 24.822297 - }, - "endPoint": { - "x": 621.038854, - "y": 24.78341 - } - } - }, - { - "id": "41da43f2-bd89-5706-bb1d-1a8037ab5dcd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.038854, - "y": 24.78341 - }, - "endPoint": { - "x": 621.054045, - "y": 24.747845 - } - } - }, - { - "id": "1397b2be-c42b-52a6-804b-a4d5ab41ac7a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.054045, - "y": 24.747845 - }, - "endPoint": { - "x": 621.071333, - "y": 24.716012 - } - } - }, - { - "id": "20aa85d4-6b87-559f-a454-c7538b861a2a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.071333, - "y": 24.716012 - }, - "endPoint": { - "x": 621.090306, - "y": 24.68832 - } - } - }, - { - "id": "c156c9d9-2460-5e22-b61e-9dc1cc962d9c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.090306, - "y": 24.68832 - }, - "endPoint": { - "x": 621.110599, - "y": 24.665054 - } - } - }, - { - "id": "55cc9a5d-535f-5aea-8acf-22b3e327e492", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.110599, - "y": 24.665054 - }, - "endPoint": { - "x": 621.132032, - "y": 24.645997 - } - } - }, - { - "id": "e0e9c299-b27e-5174-be2f-058c148d3b2b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.132032, - "y": 24.645997 - }, - "endPoint": { - "x": 621.154467, - "y": 24.630809 - } - } - }, - { - "id": "cb16da9c-58aa-5d9e-9d8c-33e9977d6679", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.154467, - "y": 24.630809 - }, - "endPoint": { - "x": 621.177768, - "y": 24.619147 - } - } - }, - { - "id": "7523917d-8eaa-5a5c-a243-9efec755c705", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.177768, - "y": 24.619147 - }, - "endPoint": { - "x": 621.201797, - "y": 24.610671 - } - } - }, - { - "id": "cc1d9191-08a7-5178-b11d-f3815d155420", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.201797, - "y": 24.610671 - }, - "endPoint": { - "x": 621.226419, - "y": 24.60504 - } - } - }, - { - "id": "7716a809-4552-5300-948a-f1c98b305b6a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.226419, - "y": 24.60504 - }, - "endPoint": { - "x": 621.251496, - "y": 24.601911 - } - } - }, - { - "id": "28c4784b-ed23-5b60-a50e-c4819bb77e6e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.251496, - "y": 24.601911 - }, - "endPoint": { - "x": 621.276892, - "y": 24.600944 - } - } - }, - { - "id": "1891baa5-ad97-5e5c-93fb-2bd3459f03da", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.276892, - "y": 24.600944 - }, - "endPoint": { - "x": 621.30277, - "y": 24.602484 - } - } - }, - { - "id": "52c4696d-ab89-5e49-b4cb-f88e32b92f78", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.30277, - "y": 24.602484 - }, - "endPoint": { - "x": 621.330493, - "y": 24.609621 - } - } - }, - { - "id": "b713fad6-9389-5209-b50e-5099afe96d12", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.330493, - "y": 24.609621 - }, - "endPoint": { - "x": 621.361724, - "y": 24.626133 - } - } - }, - { - "id": "bd5be66c-8ee9-584c-8a10-81adc2cd4ee7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.361724, - "y": 24.626133 - }, - "endPoint": { - "x": 621.398125, - "y": 24.655797 - } - } - }, - { - "id": "7d3f3679-509a-5434-9808-88c390112a4d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.398125, - "y": 24.655797 - }, - "endPoint": { - "x": 621.441359, - "y": 24.70239 - } - } - }, - { - "id": "77376737-5fac-56be-8d00-f19b0e878d5b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.441359, - "y": 24.70239 - }, - "endPoint": { - "x": 621.493089, - "y": 24.769689 - } - } - }, - { - "id": "ce2e2533-707a-55f0-8023-4757ed2911f8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.493089, - "y": 24.769689 - }, - "endPoint": { - "x": 621.554977, - "y": 24.861472 - } - } - }, - { - "id": "6ec4998a-5940-5bb9-aa88-04dad0959ec8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.554977, - "y": 24.861472 - }, - "endPoint": { - "x": 621.628686, - "y": 24.981516 - } - } - }, - { - "id": "4565b4ed-01ac-52cc-8119-044b1de99a20", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.628686, - "y": 24.981516 - }, - "endPoint": { - "x": 621.715238, - "y": 25.132275 - } - } - }, - { - "id": "059d5fce-9c84-53c6-8b4e-1e278267d7c3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.715238, - "y": 25.132275 - }, - "endPoint": { - "x": 621.813092, - "y": 25.310915 - } - } - }, - { - "id": "5de94d6f-5c1e-5b51-9b06-57f5962d0e4e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.813092, - "y": 25.310915 - }, - "endPoint": { - "x": 621.920066, - "y": 25.513278 - } - } - }, - { - "id": "8de8e6e4-d1ce-56b0-b225-17c65b556608", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.920066, - "y": 25.513278 - }, - "endPoint": { - "x": 622.03398, - "y": 25.735207 - } - } - }, - { - "id": "901edcd4-9cef-50e7-8525-6666dc4b9b73", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.03398, - "y": 25.735207 - }, - "endPoint": { - "x": 622.152651, - "y": 25.972544 - } - } - }, - { - "id": "3d11ca57-783a-5c44-a907-5b045285304a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.152651, - "y": 25.972544 - }, - "endPoint": { - "x": 622.273897, - "y": 26.221133 - } - } - }, - { - "id": "4c369fc5-f684-5774-953e-1dfedd488b57", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.273897, - "y": 26.221133 - }, - "endPoint": { - "x": 622.395538, - "y": 26.476815 - } - } - }, - { - "id": "14cd5b36-a56a-5f65-9fda-98aace4c5c9d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.395538, - "y": 26.476815 - }, - "endPoint": { - "x": 622.515392, - "y": 26.735434 - } - } - }, - { - "id": "b3d53f50-e520-5f58-be84-2d89eb9db5db", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.515392, - "y": 26.735434 - }, - "endPoint": { - "x": 622.631593, - "y": 26.993188 - } - } - }, - { - "id": "c1604ff7-2c83-5393-81c4-21ac5d6c2c06", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.631593, - "y": 26.993188 - }, - "endPoint": { - "x": 622.743542, - "y": 27.247706 - } - } - }, - { - "id": "e17a3dfa-d7fc-552c-9bf1-deb866fa09db", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.743542, - "y": 27.247706 - }, - "endPoint": { - "x": 622.850955, - "y": 27.496972 - } - } - }, - { - "id": "bd9e68f3-ab75-570e-ab81-0cb9f0197bd8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.850955, - "y": 27.496972 - }, - "endPoint": { - "x": 622.95355, - "y": 27.738969 - } - } - }, - { - "id": "1bb3b483-8bd3-5baa-9656-547e57fbda48", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.95355, - "y": 27.738969 - }, - "endPoint": { - "x": 623.051043, - "y": 27.971683 - } - } - }, - { - "id": "8ed263fe-101d-5cfa-a975-cda8bdf517d1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.051043, - "y": 27.971683 - }, - "endPoint": { - "x": 623.14315, - "y": 28.193097 - } - } - }, - { - "id": "0a41d0a4-0ec0-5915-bdb8-7be2a748622f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.14315, - "y": 28.193097 - }, - "endPoint": { - "x": 623.22959, - "y": 28.401196 - } - } - }, - { - "id": "c67d0cec-1260-53ef-bddf-894e3d42480b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.22959, - "y": 28.401196 - }, - "endPoint": { - "x": 623.310077, - "y": 28.593965 - } - } - }, - { - "id": "8c72c285-b65d-560a-b3c1-388a95c99320", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.310077, - "y": 28.593965 - }, - "endPoint": { - "x": 623.384423, - "y": 28.769925 - } - } - }, - { - "id": "36d8b2ab-1268-5c3d-a349-9347fa1f9e0b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.384423, - "y": 28.769925 - }, - "endPoint": { - "x": 623.452812, - "y": 28.929751 - } - } - }, - { - "id": "a0b988d3-333d-511c-b8e7-a45f512f3209", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.452812, - "y": 28.929751 - }, - "endPoint": { - "x": 623.515523, - "y": 29.074657 - } - } - }, - { - "id": "fd5ba20a-6d31-57fe-8807-27a50aacc0f2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.515523, - "y": 29.074657 - }, - "endPoint": { - "x": 623.572834, - "y": 29.205853 - } - } - }, - { - "id": "cacd1617-d0f4-5b05-abb7-8f8d9146b426", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.572834, - "y": 29.205853 - }, - "endPoint": { - "x": 623.625023, - "y": 29.324554 - } - } - }, - { - "id": "a858eef6-d94e-5800-afac-72f90e055f8f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.625023, - "y": 29.324554 - }, - "endPoint": { - "x": 623.672368, - "y": 29.431971 - } - } - }, - { - "id": "e7100611-f544-51fd-a45b-3b5544c52844", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.672368, - "y": 29.431971 - }, - "endPoint": { - "x": 623.715148, - "y": 29.529318 - } - } - }, - { - "id": "6d9e3ff7-0e34-5761-87d0-e717e0a1df81", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.715148, - "y": 29.529318 - }, - "endPoint": { - "x": 623.753642, - "y": 29.617806 - } - } - }, - { - "id": "a5ba2171-e574-5d93-ab6b-604ee9272e80", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.753642, - "y": 29.617806 - }, - "endPoint": { - "x": 623.78819, - "y": 29.698588 - } - } - }, - { - "id": "7683d574-aa38-537f-942a-0c1465366228", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.78819, - "y": 29.698588 - }, - "endPoint": { - "x": 623.81939, - "y": 29.772565 - } - } - }, - { - "id": "c5563bcd-de15-5e24-ab2a-0e46a77a730e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.81939, - "y": 29.772565 - }, - "endPoint": { - "x": 623.847903, - "y": 29.840582 - } - } - }, - { - "id": "59212bfe-f62b-5f6c-8b93-cfbf91fd7f08", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.847903, - "y": 29.840582 - }, - "endPoint": { - "x": 623.874389, - "y": 29.903478 - } - } - }, - { - "id": "ae504526-255b-5352-a6a7-d91772fbc9db", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.874389, - "y": 29.903478 - }, - "endPoint": { - "x": 623.899508, - "y": 29.962097 - } - } - }, - { - "id": "7fa8cdb5-bb4c-5cfe-8766-6938aff9c60c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.899508, - "y": 29.962097 - }, - "endPoint": { - "x": 623.923921, - "y": 30.017279 - } - } - }, - { - "id": "a5218413-26e8-5264-b3d8-0adb106c4755", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.923921, - "y": 30.017279 - }, - "endPoint": { - "x": 623.948288, - "y": 30.069868 - } - } - }, - { - "id": "d61fafb2-2cb2-5576-b956-e957766dd4f5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.948288, - "y": 30.069868 - }, - "endPoint": { - "x": 623.973271, - "y": 30.120705 - } - } - }, - { - "id": "a12e759f-48a4-565e-923c-fefc1cdb0d48", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.973271, - "y": 30.120705 - }, - "endPoint": { - "x": 623.99938, - "y": 30.170499 - } - } - }, - { - "id": "a7522642-48d2-5c40-b4b9-17c4819d99c3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.99938, - "y": 30.170499 - }, - "endPoint": { - "x": 624.026538, - "y": 30.219428 - } - } - }, - { - "id": "72f93613-455f-5916-8e0b-58f4cab09ed8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.026538, - "y": 30.219428 - }, - "endPoint": { - "x": 624.054515, - "y": 30.267538 - } - } - }, - { - "id": "c93fc4f6-8f75-591a-bfdd-f20a1505cfa4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.054515, - "y": 30.267538 - }, - "endPoint": { - "x": 624.083085, - "y": 30.314875 - } - } - }, - { - "id": "9792ae3e-07d9-5faf-9d1a-8f8aac31138b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.083085, - "y": 30.314875 - }, - "endPoint": { - "x": 624.112019, - "y": 30.361483 - } - } - }, - { - "id": "ca5ba8f4-6dba-52a2-8509-d6412a49ad5c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.112019, - "y": 30.361483 - }, - "endPoint": { - "x": 624.141089, - "y": 30.407409 - } - } - }, - { - "id": "1ad25959-2929-5dde-a76c-2a59484a39ad", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.141089, - "y": 30.407409 - }, - "endPoint": { - "x": 624.170069, - "y": 30.452697 - } - } - }, - { - "id": "0f1567cc-bf35-5cba-ba76-792c0ec5f0a2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.170069, - "y": 30.452697 - }, - "endPoint": { - "x": 624.198729, - "y": 30.497394 - } - } - }, - { - "id": "4cc67740-256e-5f0f-8e21-85c270452c46", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.198729, - "y": 30.497394 - }, - "endPoint": { - "x": 624.226847, - "y": 30.541439 - } - } - }, - { - "id": "ee313544-bc6f-5a8e-966c-139a1bd9899d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.226847, - "y": 30.541439 - }, - "endPoint": { - "x": 624.254213, - "y": 30.584346 - } - } - }, - { - "id": "b4da189f-1814-5700-9ccd-6f6771bae3e2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.254213, - "y": 30.584346 - }, - "endPoint": { - "x": 624.280622, - "y": 30.625523 - } - } - }, - { - "id": "4f459dbc-9c2a-5b37-b244-770cae0ce94a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.280622, - "y": 30.625523 - }, - "endPoint": { - "x": 624.30587, - "y": 30.66438 - } - } - }, - { - "id": "4873b7a6-f3c2-5110-9925-e775cdfc0f23", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.30587, - "y": 30.66438 - }, - "endPoint": { - "x": 624.329751, - "y": 30.700324 - } - } - }, - { - "id": "fbaa868c-9fd9-59b3-9009-249fbb0faea6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.329751, - "y": 30.700324 - }, - "endPoint": { - "x": 624.352061, - "y": 30.732764 - } - } - }, - { - "id": "14c9f284-2f66-5607-9b61-7e1ead044eeb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.352061, - "y": 30.732764 - }, - "endPoint": { - "x": 624.372594, - "y": 30.761108 - } - } - }, - { - "id": "f8c5b8bd-02ad-549a-a71a-bc24913b02fd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.372594, - "y": 30.761108 - }, - "endPoint": { - "x": 624.391145, - "y": 30.784765 - } - } - }, - { - "id": "585fa817-eb02-5b70-a73e-33af01171bb5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.391145, - "y": 30.784765 - }, - "endPoint": { - "x": 624.407525, - "y": 30.803253 - } - } - }, - { - "id": "71f9b3df-5a7e-5be4-a3e9-4054dff37a99", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.407525, - "y": 30.803253 - }, - "endPoint": { - "x": 624.421605, - "y": 30.81653 - } - } - }, - { - "id": "30b081f5-eff5-5435-abc1-8d971d96dc8a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.421605, - "y": 30.81653 - }, - "endPoint": { - "x": 624.43327, - "y": 30.824665 - } - } - }, - { - "id": "cbc27dbc-3fe9-5836-a1bb-9844681c25a3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.43327, - "y": 30.824665 - }, - "endPoint": { - "x": 624.442407, - "y": 30.827725 - } - } - }, - { - "id": "98fd2c72-b083-52e5-864a-ada244a973f4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.442407, - "y": 30.827725 - }, - "endPoint": { - "x": 624.448902, - "y": 30.82578 - } - } - }, - { - "id": "fd1cb737-3352-5165-a6e9-7518fff4b61f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.448902, - "y": 30.82578 - }, - "endPoint": { - "x": 624.452641, - "y": 30.818896 - } - } - }, - { - "id": "4632a7d2-6fc3-574a-b312-c2ed8ef23b6d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.452641, - "y": 30.818896 - }, - "endPoint": { - "x": 624.45351, - "y": 30.807144 - } - } - }, - { - "id": "54520327-97f5-5b1c-a132-0f0e52370d7b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.45351, - "y": 30.807144 - }, - "endPoint": { - "x": 624.451396, - "y": 30.79059 - } - } - }, - { - "id": "8b6a60f4-8cdb-522f-8c98-e89cc0e9917b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.451396, - "y": 30.79059 - }, - "endPoint": { - "x": 624.446245, - "y": 30.769103 - } - } - }, - { - "id": "45b6a9c7-889a-5985-a26f-3bbb68b47628", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.446245, - "y": 30.769103 - }, - "endPoint": { - "x": 624.438246, - "y": 30.741745 - } - } - }, - { - "id": "6f3ead7f-989f-52e0-b0f7-5d29f2c3eb10", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.438246, - "y": 30.741745 - }, - "endPoint": { - "x": 624.427652, - "y": 30.707378 - } - } - }, - { - "id": "0e97d08e-501c-5bbf-b903-221ddf21c29c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.427652, - "y": 30.707378 - }, - "endPoint": { - "x": 624.414711, - "y": 30.664866 - } - } - }, - { - "id": "ad2ca5f7-8b8a-5fb4-a296-d0a70da8d680", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.414711, - "y": 30.664866 - }, - "endPoint": { - "x": 624.399675, - "y": 30.613069 - } - } - }, - { - "id": "7edb3113-5b31-50a7-9391-441f03dc7e73", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.399675, - "y": 30.613069 - }, - "endPoint": { - "x": 624.382794, - "y": 30.550852 - } - } - }, - { - "id": "6805e002-10d6-5bcb-9db8-554b4d655e58", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.382794, - "y": 30.550852 - }, - "endPoint": { - "x": 624.364318, - "y": 30.477075 - } - } - }, - { - "id": "e4a72831-e07f-5d28-9151-db630b3a4182", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.364318, - "y": 30.477075 - }, - "endPoint": { - "x": 624.344499, - "y": 30.390601 - } - } - }, - { - "id": "996daffb-7725-50ef-8929-006a5fc79426", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.344499, - "y": 30.390601 - }, - "endPoint": { - "x": 624.323571, - "y": 30.290869 - } - } - }, - { - "id": "7d7cafea-4733-567f-8e00-43c150c23f7f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.323571, - "y": 30.290869 - }, - "endPoint": { - "x": 624.30171, - "y": 30.179624 - } - } - }, - { - "id": "b150e2a1-df8f-5a8a-91d3-0323b9b6d026", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.30171, - "y": 30.179624 - }, - "endPoint": { - "x": 624.279074, - "y": 30.059186 - } - } - }, - { - "id": "89e2f955-51f0-5ee1-88bb-8f1d5a31e2fa", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.279074, - "y": 30.059186 - }, - "endPoint": { - "x": 624.255822, - "y": 29.931876 - } - } - }, - { - "id": "4e9e089c-cc0b-5534-b351-63328172769b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.255822, - "y": 29.931876 - }, - "endPoint": { - "x": 624.232116, - "y": 29.800015 - } - } - }, - { - "id": "89c00a24-6711-568d-b38a-eafeea608886", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.232116, - "y": 29.800015 - }, - "endPoint": { - "x": 624.208113, - "y": 29.665924 - } - } - }, - { - "id": "a048a45e-3ed6-5c71-a1e0-e15a5e1b7131", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.208113, - "y": 29.665924 - }, - "endPoint": { - "x": 624.183974, - "y": 29.531924 - } - } - }, - { - "id": "65ca224e-a25a-59b1-83fb-f69d1c6024c5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.183974, - "y": 29.531924 - }, - "endPoint": { - "x": 624.159857, - "y": 29.400336 - } - } - }, - { - "id": "83e51595-15e9-519a-9626-f5f1e8167654", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.159857, - "y": 29.400336 - }, - "endPoint": { - "x": 624.136006, - "y": 29.272935 - } - } - }, - { - "id": "f70c1258-3c2e-5308-a51a-cfc1b454e1e4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.136006, - "y": 29.272935 - }, - "endPoint": { - "x": 624.112998, - "y": 29.149312 - } - } - }, - { - "id": "2b162691-2373-5c15-ab16-64eb7a4b4174", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.112998, - "y": 29.149312 - }, - "endPoint": { - "x": 624.091493, - "y": 29.02851 - } - } - }, - { - "id": "c90c2a39-b778-5cc1-ba1d-d4174312a42c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.091493, - "y": 29.02851 - }, - "endPoint": { - "x": 624.072151, - "y": 28.909573 - } - } - }, - { - "id": "dbdf1e9b-e21c-5edf-82c3-7fbb7707710f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.072151, - "y": 28.909573 - }, - "endPoint": { - "x": 624.055634, - "y": 28.791547 - } - } - }, - { - "id": "18ee9b1a-c528-5a3e-95a2-26966ea6b53e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.055634, - "y": 28.791547 - }, - "endPoint": { - "x": 624.042602, - "y": 28.673476 - } - } - }, - { - "id": "6fd4cdf9-f03d-53cd-8e8f-6a85ebb7816f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.042602, - "y": 28.673476 - }, - "endPoint": { - "x": 624.033716, - "y": 28.554403 - } - } - }, - { - "id": "ea9a56fa-29c5-5051-91b8-a8d3ebc7ee45", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.033716, - "y": 28.554403 - }, - "endPoint": { - "x": 624.029635, - "y": 28.433373 - } - } - }, - { - "id": "dd1e83fa-b78d-5256-bc8a-db48f41fb09d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.029635, - "y": 28.433373 - }, - "endPoint": { - "x": 624.030788, - "y": 28.309829 - } - } - }, - { - "id": "bc85c6e6-e66a-5c53-bcaf-2730148e18ae", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.030788, - "y": 28.309829 - }, - "endPoint": { - "x": 624.03668, - "y": 28.184806 - } - } - }, - { - "id": "8f7075f3-118b-5904-a06e-0e154a4d51c8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.03668, - "y": 28.184806 - }, - "endPoint": { - "x": 624.04658, - "y": 28.059737 - } - } - }, - { - "id": "5a3cf7b4-e33f-53b6-808a-496b9a231237", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.04658, - "y": 28.059737 - }, - "endPoint": { - "x": 624.05976, - "y": 27.936057 - } - } - }, - { - "id": "8854bef2-7803-5a2b-80be-859cb8335cb3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.05976, - "y": 27.936057 - }, - "endPoint": { - "x": 624.075491, - "y": 27.815198 - } - } - }, - { - "id": "16d5ef87-4ba3-56cf-b2bc-58106a659845", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.075491, - "y": 27.815198 - }, - "endPoint": { - "x": 624.093044, - "y": 27.698593 - } - } - }, - { - "id": "63bf6b34-189a-59bf-b181-86c1fb282ee2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.093044, - "y": 27.698593 - }, - "endPoint": { - "x": 624.11169, - "y": 27.587678 - } - } - }, - { - "id": "8e1109bb-9fc4-58c3-a3e3-2c78898ba6ba", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.11169, - "y": 27.587678 - }, - "endPoint": { - "x": 624.130701, - "y": 27.483884 - } - } - }, - { - "id": "3bf4ba80-9162-5251-8785-fa067f48d384", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.130701, - "y": 27.483884 - }, - "endPoint": { - "x": 624.149602, - "y": 27.388263 - } - } - }, - { - "id": "737af9c4-f5a0-5256-96c2-e900c630436c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.149602, - "y": 27.388263 - }, - "endPoint": { - "x": 624.168935, - "y": 27.300333 - } - } - }, - { - "id": "a0f1e5f8-d67d-50e2-aa64-1a854293301a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.168935, - "y": 27.300333 - }, - "endPoint": { - "x": 624.189499, - "y": 27.21923 - } - } - }, - { - "id": "5320ed4f-5d78-5210-84df-56620251786f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.189499, - "y": 27.21923 - }, - "endPoint": { - "x": 624.21209, - "y": 27.144088 - } - } - }, - { - "id": "79d86824-4491-5708-a622-da73c6027035", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.21209, - "y": 27.144088 - }, - "endPoint": { - "x": 624.237505, - "y": 27.074042 - } - } - }, - { - "id": "29d46636-405d-5d63-af1f-90fc246671a3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.237505, - "y": 27.074042 - }, - "endPoint": { - "x": 624.266541, - "y": 27.00823 - } - } - }, - { - "id": "393586f2-4cab-532a-8380-f96a1fb2e663", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.266541, - "y": 27.00823 - }, - "endPoint": { - "x": 624.299996, - "y": 26.945784 - } - } - }, - { - "id": "bef3ab74-574b-5474-b95e-75d39274b75b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.299996, - "y": 26.945784 - }, - "endPoint": { - "x": 624.338667, - "y": 26.885842 - } - } - }, - { - "id": "752b2dae-31a9-5518-ba82-80a867b9027f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.338667, - "y": 26.885842 - }, - "endPoint": { - "x": 624.383097, - "y": 26.827762 - } - } - }, - { - "id": "7a3e3b1e-b285-559b-bc71-e2d2ffa628f9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.383097, - "y": 26.827762 - }, - "endPoint": { - "x": 624.432811, - "y": 26.771798 - } - } - }, - { - "id": "87c1346e-a0d8-5070-bfd1-d6ff499404f7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.432811, - "y": 26.771798 - }, - "endPoint": { - "x": 624.48708, - "y": 26.718428 - } - } - }, - { - "id": "b5fb77ed-2fb7-58d6-8b31-42df59d69cc3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.48708, - "y": 26.718428 - }, - "endPoint": { - "x": 624.545176, - "y": 26.668129 - } - } - }, - { - "id": "f9214282-536e-586b-91fb-306274be6337", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.545176, - "y": 26.668129 - }, - "endPoint": { - "x": 624.606369, - "y": 26.621381 - } - } - }, - { - "id": "e745a776-e16d-544a-b6fa-7bc207202a40", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.606369, - "y": 26.621381 - }, - "endPoint": { - "x": 624.669931, - "y": 26.57866 - } - } - }, - { - "id": "cb64fcab-d8d0-5d34-94cb-61265fbae5e2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.669931, - "y": 26.57866 - }, - "endPoint": { - "x": 624.735133, - "y": 26.540444 - } - } - }, - { - "id": "26094cda-6244-564d-abce-5c7eb1b0880b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.735133, - "y": 26.540444 - }, - "endPoint": { - "x": 624.801246, - "y": 26.507211 - } - } - }, - { - "id": "7bdf58b6-bdea-5707-9dd3-0d2b5d8a3959", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.801246, - "y": 26.507211 - }, - "endPoint": { - "x": 624.867826, - "y": 26.479281 - } - } - }, - { - "id": "df44fa42-958a-56ce-8308-f9d14287785e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.867826, - "y": 26.479281 - }, - "endPoint": { - "x": 624.935568, - "y": 26.456333 - } - } - }, - { - "id": "c4722344-94d0-5acc-b946-bf43a1c24eee", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.935568, - "y": 26.456333 - }, - "endPoint": { - "x": 625.00545, - "y": 26.437891 - } - } - }, - { - "id": "79483edd-5ed3-528f-ab00-c1f50f850511", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.00545, - "y": 26.437891 - }, - "endPoint": { - "x": 625.078453, - "y": 26.423476 - } - } - }, - { - "id": "99fd75a9-a428-5966-8041-95758d96241e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.078453, - "y": 26.423476 - }, - "endPoint": { - "x": 625.155556, - "y": 26.412611 - } - } - }, - { - "id": "4387ddfd-f0ad-586b-9a1f-b5490a5abd85", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.155556, - "y": 26.412611 - }, - "endPoint": { - "x": 625.237738, - "y": 26.404818 - } - } - }, - { - "id": "066d96d2-e54c-550c-8d60-f11f859198bf", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.237738, - "y": 26.404818 - }, - "endPoint": { - "x": 625.325978, - "y": 26.399618 - } - } - }, - { - "id": "e93ad9c8-6e25-5084-9dfa-2ee00bc65ebc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.325978, - "y": 26.399618 - }, - "endPoint": { - "x": 625.421257, - "y": 26.396535 - } - } - }, - { - "id": "e7e0d9b7-5991-5386-946f-440a696f9cd5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.421257, - "y": 26.396535 - }, - "endPoint": { - "x": 625.52418, - "y": 26.395238 - } - } - }, - { - "id": "6ee7347c-8fc5-58c0-a993-c38877b03284", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.52418, - "y": 26.395238 - }, - "endPoint": { - "x": 625.633869, - "y": 26.395989 - } - } - }, - { - "id": "fde63d88-25b8-5e9f-99fc-304454e83a70", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.633869, - "y": 26.395989 - }, - "endPoint": { - "x": 625.749069, - "y": 26.399197 - } - } - }, - { - "id": "1ec6e48f-c662-5323-bba5-6004e33bf1c0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.749069, - "y": 26.399197 - }, - "endPoint": { - "x": 625.868528, - "y": 26.405272 - } - } - }, - { - "id": "4dac372b-9c51-560c-ac81-3d7b1fca4498", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.868528, - "y": 26.405272 - }, - "endPoint": { - "x": 625.990994, - "y": 26.414624 - } - } - }, - { - "id": "23b09341-4c45-55f1-b603-860ab7fa776d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.990994, - "y": 26.414624 - }, - "endPoint": { - "x": 626.115214, - "y": 26.427662 - } - } - }, - { - "id": "77674d7b-23e1-5314-a8fe-f05b5aba70ca", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 626.115214, - "y": 26.427662 - }, - "endPoint": { - "x": 626.239935, - "y": 26.444796 - } - } - }, - { - "id": "04c3b886-08ec-5d35-a969-0000425963d9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 626.239935, - "y": 26.444796 - }, - "endPoint": { - "x": 626.363904, - "y": 26.466435 - } - } - }, - { - "id": "272bd844-c919-580b-b3ed-808b4b933bc5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 626.363904, - "y": 26.466435 - }, - "endPoint": { - "x": 626.486238, - "y": 26.492887 - } - } - }, - { - "id": "01bc110b-cf22-5050-a8fa-9801a58c86ec", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 626.486238, - "y": 26.492887 - }, - "endPoint": { - "x": 626.607523, - "y": 26.524049 - } - } - }, - { - "id": "51d6d0bb-ef0d-5a11-8022-a0418db0e34d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 626.607523, - "y": 26.524049 - }, - "endPoint": { - "x": 626.728718, - "y": 26.559716 - } - } - }, - { - "id": "e237cb8a-4b56-57e5-896a-a189ca3ccad3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 626.728718, - "y": 26.559716 - }, - "endPoint": { - "x": 626.850778, - "y": 26.599684 - } - } - }, - { - "id": "37ca3baa-0a6e-5ed7-be6c-2e13f7e0aea3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 626.850778, - "y": 26.599684 - }, - "endPoint": { - "x": 626.97466, - "y": 26.643748 - } - } - }, - { - "id": "71852e79-7de5-50a6-8aa7-39f833e3741e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 626.97466, - "y": 26.643748 - }, - "endPoint": { - "x": 627.101321, - "y": 26.691702 - } - } - }, - { - "id": "c0be682c-5a25-5629-924d-62285276d0a8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 627.101321, - "y": 26.691702 - }, - "endPoint": { - "x": 627.231717, - "y": 26.743343 - } - } - }, - { - "id": "97f4bcc3-4c5f-5812-bf0a-02f045fc9a61", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 627.231717, - "y": 26.743343 - }, - "endPoint": { - "x": 627.366805, - "y": 26.798465 - } - } - }, - { - "id": "f2ef0dbf-75d8-5fb7-be87-b4fe37c739b0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 627.366805, - "y": 26.798465 - }, - "endPoint": { - "x": 627.507234, - "y": 26.856868 - } - } - }, - { - "id": "ed359c41-77c9-5443-91f4-dda467e6c2c1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 627.507234, - "y": 26.856868 - }, - "endPoint": { - "x": 627.652424, - "y": 26.918365 - } - } - }, - { - "id": "e06d1e5f-75ed-5efb-b440-ddc99b008f08", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 627.652424, - "y": 26.918365 - }, - "endPoint": { - "x": 627.801486, - "y": 26.982775 - } - } - }, - { - "id": "83b2ae32-1592-5001-9203-7adbdcf31411", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 627.801486, - "y": 26.982775 - }, - "endPoint": { - "x": 627.953531, - "y": 27.049915 - } - } - }, - { - "id": "7a60758c-3508-5972-81e6-5f19b121f1b2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 627.953531, - "y": 27.049915 - }, - "endPoint": { - "x": 628.107672, - "y": 27.119603 - } - } - }, - { - "id": "74614e40-996e-5936-ac08-3af5d5a64542", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 628.107672, - "y": 27.119603 - }, - "endPoint": { - "x": 628.26302, - "y": 27.191658 - } - } - }, - { - "id": "d90a0b8c-3044-5da7-9f8b-3ce3a8814cdb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 628.26302, - "y": 27.191658 - }, - "endPoint": { - "x": 628.418686, - "y": 27.265898 - } - } - }, - { - "id": "22b64f06-ee63-5b57-b266-b7b4767d3d4b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 628.418686, - "y": 27.265898 - }, - "endPoint": { - "x": 628.573784, - "y": 27.342139 - } - } - }, - { - "id": "2aa898c8-4433-58be-98f5-e01ef88cb71a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 628.573784, - "y": 27.342139 - }, - "endPoint": { - "x": 628.727214, - "y": 27.420023 - } - } - }, - { - "id": "6c4e1a8d-6100-5907-9ca4-b09ccad832e3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 628.727214, - "y": 27.420023 - }, - "endPoint": { - "x": 628.877047, - "y": 27.498476 - } - } - }, - { - "id": "e6a029e6-89a6-5bf4-97ba-05b14502a7f1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 628.877047, - "y": 27.498476 - }, - "endPoint": { - "x": 629.021139, - "y": 27.576246 - } - } - }, - { - "id": "2ba69e40-248e-56fa-a423-2f8ec264fe62", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 629.021139, - "y": 27.576246 - }, - "endPoint": { - "x": 629.157351, - "y": 27.652082 - } - } - }, - { - "id": "79782e26-5b81-574c-9832-22c773b68bd4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 629.157351, - "y": 27.652082 - }, - "endPoint": { - "x": 629.283541, - "y": 27.724733 - } - } - }, - { - "id": "0bd590d8-ab93-501c-a3c6-1b42af428287", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 629.283541, - "y": 27.724733 - }, - "endPoint": { - "x": 629.397568, - "y": 27.792946 - } - } - }, - { - "id": "816338f5-83e7-5d06-9176-11d86ca4b271", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 629.397568, - "y": 27.792946 - }, - "endPoint": { - "x": 629.497292, - "y": 27.855471 - } - } - }, - { - "id": "517a4d16-710f-545f-aebb-ffd4595917af", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 629.497292, - "y": 27.855471 - }, - "endPoint": { - "x": 629.58057, - "y": 27.911056 - } - } - }, - { - "id": "634a787d-c6d5-509c-b157-a48e8317f2e1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 629.58057, - "y": 27.911056 - }, - "endPoint": { - "x": 629.64586, - "y": 27.958715 - } - } - }, - { - "id": "9a95a256-ac3d-51f3-ad39-2300d993af68", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 629.64586, - "y": 27.958715 - }, - "endPoint": { - "x": 629.693998, - "y": 27.998524 - } - } - }, - { - "id": "95cdcddc-8410-50b6-a56a-bd256f75ea58", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 629.693998, - "y": 27.998524 - }, - "endPoint": { - "x": 629.72642, - "y": 28.030823 - } - } - }, - { - "id": "12ae9d1a-55f7-54d6-af3e-02986f02d2eb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 629.72642, - "y": 28.030823 - }, - "endPoint": { - "x": 629.744562, - "y": 28.055956 - } - } - }, - { - "id": "57d414dc-c548-5dc1-91c3-c00c3a22ed3a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 629.744562, - "y": 28.055956 - }, - "endPoint": { - "x": 629.749857, - "y": 28.074262 - } - } - }, - { - "id": "910c3499-1d60-5806-bf37-314129ad1497", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 629.749857, - "y": 28.074262 - }, - "endPoint": { - "x": 629.743742, - "y": 28.086082 - } - } - }, - { - "id": "71d5121a-8915-5553-8aac-635b352e0586", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 629.743742, - "y": 28.086082 - }, - "endPoint": { - "x": 629.72765, - "y": 28.09176 - } - } - }, - { - "id": "6291bcb8-d87f-5a26-99f4-ed2ef483ac94", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 629.72765, - "y": 28.09176 - }, - "endPoint": { - "x": 629.703017, - "y": 28.091635 - } - } - }, - { - "id": "93f06b6c-2f34-5210-be2d-81f5b1a99338", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 629.703017, - "y": 28.091635 - }, - "endPoint": { - "x": 629.670981, - "y": 28.086026 - } - } - }, - { - "id": "0b9ecc81-d021-561d-816e-88cb45cc716b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 629.670981, - "y": 28.086026 - }, - "endPoint": { - "x": 629.631498, - "y": 28.075161 - } - } - }, - { - "id": "d166d8de-4182-5513-9697-e3085c5b8890", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 629.631498, - "y": 28.075161 - }, - "endPoint": { - "x": 629.584225, - "y": 28.059244 - } - } - }, - { - "id": "795a23f6-334e-5cc0-bd61-95eabd2ac66a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 629.584225, - "y": 28.059244 - }, - "endPoint": { - "x": 629.52882, - "y": 28.038481 - } - } - }, - { - "id": "91b62a16-a826-582a-bdd0-41cd1ef711b1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 629.52882, - "y": 28.038481 - }, - "endPoint": { - "x": 629.464943, - "y": 28.013075 - } - } - }, - { - "id": "3c47d9f0-931f-5009-9ad0-6e4260369aeb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 629.464943, - "y": 28.013075 - }, - "endPoint": { - "x": 629.392251, - "y": 27.983233 - } - } - }, - { - "id": "5ecd0263-56e6-5dc7-b276-e0469c324c39", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 629.392251, - "y": 27.983233 - }, - "endPoint": { - "x": 629.310403, - "y": 27.949159 - } - } - }, - { - "id": "5f7b3c26-c874-5d71-a6c3-d5756b0a1970", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 629.310403, - "y": 27.949159 - }, - "endPoint": { - "x": 629.219057, - "y": 27.911056 - } - } - }, - { - "id": "e60dfc42-4e41-5182-916a-277dc76672e6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 629.219057, - "y": 27.911056 - }, - "endPoint": { - "x": 629.118035, - "y": 27.869158 - } - } - }, - { - "id": "0748b886-a8f8-5e2f-8e77-71076ff23754", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 629.118035, - "y": 27.869158 - }, - "endPoint": { - "x": 629.007811, - "y": 27.823801 - } - } - }, - { - "id": "a76c5189-2fed-561e-9771-cdbf64b206c6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 629.007811, - "y": 27.823801 - }, - "endPoint": { - "x": 628.889023, - "y": 27.77535 - } - } - }, - { - "id": "c524c6ac-70b7-5115-9752-a31b459e1674", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 628.889023, - "y": 27.77535 - }, - "endPoint": { - "x": 628.762309, - "y": 27.724168 - } - } - }, - { - "id": "d3006103-c775-5d70-90fa-a6a4d83ad091", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 628.762309, - "y": 27.724168 - }, - "endPoint": { - "x": 628.628307, - "y": 27.67062 - } - } - }, - { - "id": "929aefec-c38a-567d-b711-e04667fc1db2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 628.628307, - "y": 27.67062 - }, - "endPoint": { - "x": 628.487654, - "y": 27.615069 - } - } - }, - { - "id": "c2636e1a-9459-5320-ac4c-09f276673635", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 628.487654, - "y": 27.615069 - }, - "endPoint": { - "x": 628.340987, - "y": 27.55788 - } - } - }, - { - "id": "8c1e95bf-2551-5b82-928c-d8dfebe9dc54", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 628.340987, - "y": 27.55788 - }, - "endPoint": { - "x": 628.188946, - "y": 27.499417 - } - } - }, - { - "id": "1a3fb3f7-db2d-54de-9a5f-6cd565164732", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 628.188946, - "y": 27.499417 - }, - "endPoint": { - "x": 628.032353, - "y": 27.440097 - } - } - }, - { - "id": "b23f1303-6398-5391-8b17-4153183af764", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 628.032353, - "y": 27.440097 - }, - "endPoint": { - "x": 627.872776, - "y": 27.380549 - } - } - }, - { - "id": "bfc9365e-070b-5a6e-bf9d-7792bce9aa91", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 627.872776, - "y": 27.380549 - }, - "endPoint": { - "x": 627.71197, - "y": 27.321457 - } - } - }, - { - "id": "d3208c61-0a9a-5e08-9ce8-9b2891e1fe25", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 627.71197, - "y": 27.321457 - }, - "endPoint": { - "x": 627.551687, - "y": 27.263502 - } - } - }, - { - "id": "e6450b6d-b7d0-5b8f-8b19-44307d36ab78", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 627.551687, - "y": 27.263502 - }, - "endPoint": { - "x": 627.393682, - "y": 27.207367 - } - } - }, - { - "id": "023be75f-7601-570e-98c5-bec38b6bf310", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 627.393682, - "y": 27.207367 - }, - "endPoint": { - "x": 627.239708, - "y": 27.153736 - } - } - }, - { - "id": "c5b42917-1b4b-5959-b4ff-0e0b51cb49d3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 627.239708, - "y": 27.153736 - }, - "endPoint": { - "x": 627.09152, - "y": 27.103289 - } - } - }, - { - "id": "6970032c-d947-5f1f-ba44-29d3559cd87d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 627.09152, - "y": 27.103289 - }, - "endPoint": { - "x": 626.95087, - "y": 27.056712 - } - } - }, - { - "id": "30aeb2fb-302b-5ba0-853c-88d57b86ce69", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 626.95087, - "y": 27.056712 - }, - "endPoint": { - "x": 626.81907, - "y": 27.014567 - } - } - }, - { - "id": "f99c2f66-6630-596f-84f5-058c778b4449", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 626.81907, - "y": 27.014567 - }, - "endPoint": { - "x": 626.695651, - "y": 26.976951 - } - } - }, - { - "id": "3df94969-7aed-5166-afec-1408a56bf839", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 626.695651, - "y": 26.976951 - }, - "endPoint": { - "x": 626.579703, - "y": 26.943839 - } - } - }, - { - "id": "f7c774cb-57a8-5449-a8f5-724bc5f528c9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 626.579703, - "y": 26.943839 - }, - "endPoint": { - "x": 626.470314, - "y": 26.915211 - } - } - }, - { - "id": "9f476449-5dab-5245-bffa-c91e8f872b8d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 626.470314, - "y": 26.915211 - }, - "endPoint": { - "x": 626.366575, - "y": 26.891042 - } - } - }, - { - "id": "2532fabf-d471-5459-8158-e81d5735e044", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 626.366575, - "y": 26.891042 - }, - "endPoint": { - "x": 626.267572, - "y": 26.87131 - } - } - }, - { - "id": "27515a7d-5238-5ce6-bc9e-cde5ba00e472", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 626.267572, - "y": 26.87131 - }, - "endPoint": { - "x": 626.172397, - "y": 26.855993 - } - } - }, - { - "id": "5d38cf3f-9712-535a-a76e-28581c651791", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 626.172397, - "y": 26.855993 - }, - "endPoint": { - "x": 626.080136, - "y": 26.845067 - } - } - }, - { - "id": "ceebcc7b-ea6b-5a29-9607-457655ab982f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 626.080136, - "y": 26.845067 - }, - "endPoint": { - "x": 625.990028, - "y": 26.838464 - } - } - }, - { - "id": "ebe835a5-1ec2-5028-8630-cda46d1caf84", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.990028, - "y": 26.838464 - }, - "endPoint": { - "x": 625.901902, - "y": 26.835935 - } - } - }, - { - "id": "9a6bc52e-e94f-5fa8-b52a-ec784c06a221", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.901902, - "y": 26.835935 - }, - "endPoint": { - "x": 625.815734, - "y": 26.837182 - } - } - }, - { - "id": "3f8e8627-de75-5b39-911c-69664d1a61be", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.815734, - "y": 26.837182 - }, - "endPoint": { - "x": 625.731503, - "y": 26.841911 - } - } - }, - { - "id": "633c0f13-c283-56bb-b0b8-10add956f8d7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.731503, - "y": 26.841911 - }, - "endPoint": { - "x": 625.649185, - "y": 26.849826 - } - } - }, - { - "id": "b6931c42-b468-5d6e-9900-737636c5bb63", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.649185, - "y": 26.849826 - }, - "endPoint": { - "x": 625.568757, - "y": 26.86063 - } - } - }, - { - "id": "5b74586d-eb6c-5adf-92e5-8876552d8a28", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.568757, - "y": 26.86063 - }, - "endPoint": { - "x": 625.490197, - "y": 26.874029 - } - } - }, - { - "id": "9f2ecc9f-33af-5a9b-bf2a-b5a9b9130deb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.490197, - "y": 26.874029 - }, - "endPoint": { - "x": 625.413481, - "y": 26.889725 - } - } - }, - { - "id": "5ae05fad-f620-57a7-86a4-6ac2ba48d637", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.413481, - "y": 26.889725 - }, - "endPoint": { - "x": 625.338668, - "y": 26.907493 - } - } - }, - { - "id": "9a1ec706-49a2-5492-85e0-0318beb41faa", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.338668, - "y": 26.907493 - }, - "endPoint": { - "x": 625.266132, - "y": 26.927376 - } - } - }, - { - "id": "c7ea245d-ec8c-57e7-8367-685e4b01e093", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.266132, - "y": 26.927376 - }, - "endPoint": { - "x": 625.19633, - "y": 26.949489 - } - } - }, - { - "id": "30444925-ce60-5a34-8e1e-488974740b6f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.19633, - "y": 26.949489 - }, - "endPoint": { - "x": 625.129716, - "y": 26.973946 - } - } - }, - { - "id": "6e87b9e8-60eb-5713-b4cf-f38a49c1e35a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.129716, - "y": 26.973946 - }, - "endPoint": { - "x": 625.066746, - "y": 27.000861 - } - } - }, - { - "id": "35b9975a-ad17-5cd2-8437-f748b8226524", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.066746, - "y": 27.000861 - }, - "endPoint": { - "x": 625.007876, - "y": 27.030346 - } - } - }, - { - "id": "e36ad0ad-1228-5a7a-9e87-8a40b6c05d60", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.007876, - "y": 27.030346 - }, - "endPoint": { - "x": 624.953562, - "y": 27.062517 - } - } - }, - { - "id": "e10e8d97-75e7-5a29-b166-9a168e3eeb55", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.953562, - "y": 27.062517 - }, - "endPoint": { - "x": 624.904258, - "y": 27.097486 - } - } - }, - { - "id": "2f4a00e0-9172-5903-abd2-1a03bbd5dbf0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.904258, - "y": 27.097486 - }, - "endPoint": { - "x": 624.860261, - "y": 27.135342 - } - } - }, - { - "id": "cc134867-09a1-5e6f-9bfe-7f3a79e19810", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.860261, - "y": 27.135342 - }, - "endPoint": { - "x": 624.82123, - "y": 27.176065 - } - } - }, - { - "id": "a98b2883-1a7b-5f2b-a916-8684b426156c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.82123, - "y": 27.176065 - }, - "endPoint": { - "x": 624.786662, - "y": 27.219609 - } - } - }, - { - "id": "9e0f4c8a-60d0-523d-a59f-6542b2fdc2be", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.786662, - "y": 27.219609 - }, - "endPoint": { - "x": 624.756058, - "y": 27.265929 - } - } - }, - { - "id": "3a769467-ff0e-583c-be7d-4c11f0b59107", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.756058, - "y": 27.265929 - }, - "endPoint": { - "x": 624.728916, - "y": 27.314979 - } - } - }, - { - "id": "e20421f3-211d-556e-8e4e-ee6f9e24dcbf", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.728916, - "y": 27.314979 - }, - "endPoint": { - "x": 624.704735, - "y": 27.366715 - } - } - }, - { - "id": "844c19c2-39c8-5b99-8ff6-e86ad3001093", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.704735, - "y": 27.366715 - }, - "endPoint": { - "x": 624.683014, - "y": 27.42109 - } - } - }, - { - "id": "67a4ccf5-18b1-5987-8793-aaec78e5ff32", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.683014, - "y": 27.42109 - }, - "endPoint": { - "x": 624.663251, - "y": 27.478059 - } - } - }, - { - "id": "1fb829f1-ae8d-5887-af56-7070589a62e3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.663251, - "y": 27.478059 - }, - "endPoint": { - "x": 624.645034, - "y": 27.537535 - } - } - }, - { - "id": "5f7080a9-d73d-5dee-9aea-8bdff536c9f5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.645034, - "y": 27.537535 - }, - "endPoint": { - "x": 624.628297, - "y": 27.599263 - } - } - }, - { - "id": "0b1ec1fa-14a0-54be-b7d2-67702fb8487a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.628297, - "y": 27.599263 - }, - "endPoint": { - "x": 624.613063, - "y": 27.662949 - } - } - }, - { - "id": "245452c2-9525-50c0-a19c-983ce9d8c0bc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.613063, - "y": 27.662949 - }, - "endPoint": { - "x": 624.599355, - "y": 27.728295 - } - } - }, - { - "id": "c70ca05a-7e75-5458-b219-6be3df778dcb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.599355, - "y": 27.728295 - }, - "endPoint": { - "x": 624.587196, - "y": 27.795006 - } - } - }, - { - "id": "b4b263e3-e1e1-5ac2-b890-75cdb9640f3d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.587196, - "y": 27.795006 - }, - "endPoint": { - "x": 624.576609, - "y": 27.862787 - } - } - }, - { - "id": "52dafddd-fe2d-53d4-8ede-400a57df7c8f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.576609, - "y": 27.862787 - }, - "endPoint": { - "x": 624.567616, - "y": 27.931342 - } - } - }, - { - "id": "827875d3-b212-5be1-a0bd-dad8e0a2fc59", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.567616, - "y": 27.931342 - }, - "endPoint": { - "x": 624.56024, - "y": 28.000374 - } - } - }, - { - "id": "cf042e77-12ea-5068-9830-299b8233f284", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.56024, - "y": 28.000374 - }, - "endPoint": { - "x": 624.554531, - "y": 28.069771 - } - } - }, - { - "id": "72fe10fc-c748-5cce-b177-f57cf42b53f0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.554531, - "y": 28.069771 - }, - "endPoint": { - "x": 624.550644, - "y": 28.140146 - } - } - }, - { - "id": "121038ce-13ac-531c-a9f0-0e583ac5a21c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.550644, - "y": 28.140146 - }, - "endPoint": { - "x": 624.548761, - "y": 28.212296 - } - } - }, - { - "id": "d471ba07-86cf-5b15-8eb4-940c9deaf133", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.548761, - "y": 28.212296 - }, - "endPoint": { - "x": 624.549065, - "y": 28.287017 - } - } - }, - { - "id": "6ddfb423-8680-574c-9017-614fa12ce7ee", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.549065, - "y": 28.287017 - }, - "endPoint": { - "x": 624.551737, - "y": 28.365106 - } - } - }, - { - "id": "cdcb03bf-512f-5586-91ac-09771dabf6d9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.551737, - "y": 28.365106 - }, - "endPoint": { - "x": 624.556961, - "y": 28.447359 - } - } - }, - { - "id": "400c4b1c-979a-50a6-92bc-701a630eb24f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.556961, - "y": 28.447359 - }, - "endPoint": { - "x": 624.564917, - "y": 28.534572 - } - } - }, - { - "id": "7e5dafd4-a665-5be6-a4cc-2966594c17ca", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.564917, - "y": 28.534572 - }, - "endPoint": { - "x": 624.575789, - "y": 28.627542 - } - } - }, - { - "id": "044edc26-7a65-5b47-8b47-b991657bce4a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.575789, - "y": 28.627542 - }, - "endPoint": { - "x": 624.589694, - "y": 28.726915 - } - } - }, - { - "id": "05a733f2-a78d-5762-9f1d-b9466b0b7682", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.589694, - "y": 28.726915 - }, - "endPoint": { - "x": 624.606492, - "y": 28.832733 - } - } - }, - { - "id": "774b5f6a-1d1d-5e52-905a-c5783eb7645d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.606492, - "y": 28.832733 - }, - "endPoint": { - "x": 624.625978, - "y": 28.944889 - } - } - }, - { - "id": "08236406-2064-534f-9212-7bc27d3d28ac", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.625978, - "y": 28.944889 - }, - "endPoint": { - "x": 624.647946, - "y": 29.063275 - } - } - }, - { - "id": "2cce2c58-f7c0-5cc4-89ba-35874d3cccb8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.647946, - "y": 29.063275 - }, - "endPoint": { - "x": 624.672191, - "y": 29.187784 - } - } - }, - { - "id": "0091694b-461e-5844-b761-264c62ae7190", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.672191, - "y": 29.187784 - }, - "endPoint": { - "x": 624.698509, - "y": 29.318309 - } - } - }, - { - "id": "2f2056c3-0e94-52b9-8efa-f54f33b3d068", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.698509, - "y": 29.318309 - }, - "endPoint": { - "x": 624.726695, - "y": 29.45474 - } - } - }, - { - "id": "7de1de3d-fa53-5cbc-9d64-becf0cfed818", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.726695, - "y": 29.45474 - }, - "endPoint": { - "x": 624.756544, - "y": 29.596972 - } - } - }, - { - "id": "a0e7cddd-cd4e-51eb-8511-fea2b1aba844", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.756544, - "y": 29.596972 - }, - "endPoint": { - "x": 624.787804, - "y": 29.744528 - } - } - }, - { - "id": "c5a76a00-00ac-5fdd-a8c7-93e2a3ea3b05", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.787804, - "y": 29.744528 - }, - "endPoint": { - "x": 624.820044, - "y": 29.895467 - } - } - }, - { - "id": "94f95839-6561-5e2e-b30c-295d0d497563", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.820044, - "y": 29.895467 - }, - "endPoint": { - "x": 624.852785, - "y": 30.047477 - } - } - }, - { - "id": "3d52c411-cf1d-5f83-a825-b48d9c2142f8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.852785, - "y": 30.047477 - }, - "endPoint": { - "x": 624.885549, - "y": 30.198247 - } - } - }, - { - "id": "8ac4f7d4-c05e-520e-a449-bf665cd6f381", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.885549, - "y": 30.198247 - }, - "endPoint": { - "x": 624.917857, - "y": 30.345468 - } - } - }, - { - "id": "3084af98-3369-56b3-9d33-08799813ded4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.917857, - "y": 30.345468 - }, - "endPoint": { - "x": 624.949232, - "y": 30.486829 - } - } - }, - { - "id": "a48ccaac-d072-56ef-893e-a1562f82be11", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.949232, - "y": 30.486829 - }, - "endPoint": { - "x": 624.979194, - "y": 30.620019 - } - } - }, - { - "id": "b731a944-317e-55c8-8439-6e61b792fa10", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.979194, - "y": 30.620019 - }, - "endPoint": { - "x": 625.007266, - "y": 30.742728 - } - } - }, - { - "id": "c8d57782-b5c0-5959-9229-688e615e5a5f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.007266, - "y": 30.742728 - }, - "endPoint": { - "x": 625.033064, - "y": 30.853263 - } - } - }, - { - "id": "635b434d-c24c-5387-9998-9050945a0d4b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.033064, - "y": 30.853263 - }, - "endPoint": { - "x": 625.056585, - "y": 30.9524 - } - } - }, - { - "id": "1cee448b-56c1-530f-83f3-70ea6e99a826", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.056585, - "y": 30.9524 - }, - "endPoint": { - "x": 625.077919, - "y": 31.041535 - } - } - }, - { - "id": "4d998917-0978-5fa3-98c3-da865b255841", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.077919, - "y": 31.041535 - }, - "endPoint": { - "x": 625.097158, - "y": 31.12206 - } - } - }, - { - "id": "ea2fb1d6-687c-51e9-97b6-ddeb5143ca9a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.097158, - "y": 31.12206 - }, - "endPoint": { - "x": 625.114392, - "y": 31.19537 - } - } - }, - { - "id": "1c7041b2-f03c-546f-b762-d4750bf50195", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.114392, - "y": 31.19537 - }, - "endPoint": { - "x": 625.129713, - "y": 31.26286 - } - } - }, - { - "id": "cd7c4c11-5fa7-55ce-a001-09b77e49d573", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.129713, - "y": 31.26286 - }, - "endPoint": { - "x": 625.143212, - "y": 31.325923 - } - } - }, - { - "id": "e2a161d7-c9b4-5caf-af3a-61066a727d7b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.143212, - "y": 31.325923 - }, - "endPoint": { - "x": 625.15498, - "y": 31.385953 - } - } - }, - { - "id": "46594f6c-3352-55e1-943e-318932b3d80e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.15498, - "y": 31.385953 - }, - "endPoint": { - "x": 625.165032, - "y": 31.444075 - } - } - }, - { - "id": "a9e441f1-b7c7-5248-9178-85c81a7394b6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.165032, - "y": 31.444075 - }, - "endPoint": { - "x": 625.17308, - "y": 31.500331 - } - } - }, - { - "id": "96d2b18d-2f65-5ab1-a485-9bb377f2d57e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.17308, - "y": 31.500331 - }, - "endPoint": { - "x": 625.178759, - "y": 31.554494 - } - } - }, - { - "id": "ffc32009-4bba-5947-b4e3-badf57656ec3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.178759, - "y": 31.554494 - }, - "endPoint": { - "x": 625.181705, - "y": 31.606336 - } - } - }, - { - "id": "e755dc66-46e2-5bda-9f55-2f0a9728049b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.181705, - "y": 31.606336 - }, - "endPoint": { - "x": 625.181554, - "y": 31.655629 - } - } - }, - { - "id": "3c3eee7b-bb96-577d-a215-9904dc2b7c31", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.181554, - "y": 31.655629 - }, - "endPoint": { - "x": 625.17794, - "y": 31.702146 - } - } - }, - { - "id": "28658c00-f728-55b1-986f-c19c451e7563", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.17794, - "y": 31.702146 - }, - "endPoint": { - "x": 625.1705, - "y": 31.74566 - } - } - }, - { - "id": "df51f818-56d3-5773-b9ed-b810f3ab4324", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.1705, - "y": 31.74566 - }, - "endPoint": { - "x": 625.158869, - "y": 31.785943 - } - } - }, - { - "id": "e162faf7-a715-5f90-8e3b-f51a69f43987", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.158869, - "y": 31.785943 - }, - "endPoint": { - "x": 625.142845, - "y": 31.822801 - } - } - }, - { - "id": "deada437-18b0-5993-9291-05281026353a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.142845, - "y": 31.822801 - }, - "endPoint": { - "x": 625.122882, - "y": 31.856177 - } - } - }, - { - "id": "f45b69b7-624c-55c9-8f22-7aa889c49d8d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.122882, - "y": 31.856177 - }, - "endPoint": { - "x": 625.099593, - "y": 31.88605 - } - } - }, - { - "id": "b4f58fb0-f670-5335-907b-00cbd0c99caf", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.099593, - "y": 31.88605 - }, - "endPoint": { - "x": 625.073593, - "y": 31.912395 - } - } - }, - { - "id": "63a4de74-2eb0-509a-9b72-5d58833dbc79", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.073593, - "y": 31.912395 - }, - "endPoint": { - "x": 625.045498, - "y": 31.935191 - } - } - }, - { - "id": "95b9eda9-6afa-540e-8aec-21dcd7e6de44", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.045498, - "y": 31.935191 - }, - "endPoint": { - "x": 625.015923, - "y": 31.954415 - } - } - }, - { - "id": "44cc0def-3d21-5c77-aad5-66260fc59f0c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 625.015923, - "y": 31.954415 - }, - "endPoint": { - "x": 624.985482, - "y": 31.970043 - } - } - }, - { - "id": "ed1d10b6-05b6-577e-9a5d-95c0a30e7cf4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.985482, - "y": 31.970043 - }, - "endPoint": { - "x": 624.954791, - "y": 31.982054 - } - } - }, - { - "id": "dbf83363-e18e-524f-b456-edfe330b9876", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.954791, - "y": 31.982054 - }, - "endPoint": { - "x": 624.924316, - "y": 31.990313 - } - } - }, - { - "id": "83538f81-d03d-5817-a561-ac487f73fe93", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.924316, - "y": 31.990313 - }, - "endPoint": { - "x": 624.893931, - "y": 31.99425 - } - } - }, - { - "id": "8a2bee46-baa3-5305-a247-4c7986ca0e61", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.893931, - "y": 31.99425 - }, - "endPoint": { - "x": 624.863365, - "y": 31.993181 - } - } - }, - { - "id": "2b6ff128-7c59-51a9-a416-a66d52ae5afe", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.863365, - "y": 31.993181 - }, - "endPoint": { - "x": 624.832343, - "y": 31.986423 - } - } - }, - { - "id": "47b94cb5-c940-5455-b6c5-cf139c6945d1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.832343, - "y": 31.986423 - }, - "endPoint": { - "x": 624.800593, - "y": 31.973294 - } - } - }, - { - "id": "5a2c87b0-485c-5040-be61-82cde898b307", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.800593, - "y": 31.973294 - }, - "endPoint": { - "x": 624.76784, - "y": 31.953111 - } - } - }, - { - "id": "b06610b1-6352-507c-a59d-03d54722bae3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.76784, - "y": 31.953111 - }, - "endPoint": { - "x": 624.733811, - "y": 31.925191 - } - } - }, - { - "id": "5a6ca2a0-aa84-5684-8381-02cae529647f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.733811, - "y": 31.925191 - }, - "endPoint": { - "x": 624.698234, - "y": 31.888853 - } - } - }, - { - "id": "f1c7cd53-eefa-515f-9dff-e718e079205a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.698234, - "y": 31.888853 - }, - "endPoint": { - "x": 624.660865, - "y": 31.84364 - } - } - }, - { - "id": "33ee6cef-18e8-51f1-936b-f3deb24d8bb9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.660865, - "y": 31.84364 - }, - "endPoint": { - "x": 624.621583, - "y": 31.790008 - } - } - }, - { - "id": "0066c03d-8180-5aab-be5e-fc5d419c8309", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.621583, - "y": 31.790008 - }, - "endPoint": { - "x": 624.580297, - "y": 31.72864 - } - } - }, - { - "id": "de8f5ad1-2e6e-5944-8046-4c165964779a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.580297, - "y": 31.72864 - }, - "endPoint": { - "x": 624.536915, - "y": 31.660218 - } - } - }, - { - "id": "6f51e806-f520-5f07-b0d6-1f65b545da6f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.536915, - "y": 31.660218 - }, - "endPoint": { - "x": 624.491347, - "y": 31.585425 - } - } - }, - { - "id": "a99d7447-142b-5eee-95ff-8e27f4faec7d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.491347, - "y": 31.585425 - }, - "endPoint": { - "x": 624.443501, - "y": 31.504943 - } - } - }, - { - "id": "c03aa4a6-3593-5f91-9671-13480f846c82", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.443501, - "y": 31.504943 - }, - "endPoint": { - "x": 624.393286, - "y": 31.419455 - } - } - }, - { - "id": "3a36449b-fc80-59d9-b98e-318ed295ae2b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.393286, - "y": 31.419455 - }, - "endPoint": { - "x": 624.340611, - "y": 31.329644 - } - } - }, - { - "id": "b6e3fe08-bdcc-519c-88f4-711b1f194dbb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.340611, - "y": 31.329644 - }, - "endPoint": { - "x": 624.285466, - "y": 31.236139 - } - } - }, - { - "id": "a52530c6-ef08-5a54-9b7d-f077650ed0bf", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.285466, - "y": 31.236139 - }, - "endPoint": { - "x": 624.228156, - "y": 31.139358 - } - } - }, - { - "id": "50bd5b34-6bd0-50a9-b7dc-e66459976fb0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.228156, - "y": 31.139358 - }, - "endPoint": { - "x": 624.16907, - "y": 31.039664 - } - } - }, - { - "id": "916e528e-8407-52fd-9229-432833ced018", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.16907, - "y": 31.039664 - }, - "endPoint": { - "x": 624.108594, - "y": 30.937421 - } - } - }, - { - "id": "5aa1aed9-9906-5402-9fb4-7aaaa0ca3bd8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.108594, - "y": 30.937421 - }, - "endPoint": { - "x": 624.047117, - "y": 30.832995 - } - } - }, - { - "id": "25f10194-3553-5b80-ac3a-55a09f4eaa24", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 624.047117, - "y": 30.832995 - }, - "endPoint": { - "x": 623.985024, - "y": 30.726748 - } - } - }, - { - "id": "f45718b2-f179-56dc-9028-66c20fcb4ed9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.985024, - "y": 30.726748 - }, - "endPoint": { - "x": 623.922703, - "y": 30.619044 - } - } - }, - { - "id": "4915b4ae-d761-568e-a2bf-3f7bd4583c48", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.922703, - "y": 30.619044 - }, - "endPoint": { - "x": 623.860542, - "y": 30.510249 - } - } - }, - { - "id": "1dae478e-7414-56f0-9c2f-0d45b484b5ec", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.860542, - "y": 30.510249 - }, - "endPoint": { - "x": 623.798848, - "y": 30.400612 - } - } - }, - { - "id": "3aafaaa0-2fe2-5e07-902a-db70e8c9a931", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.798848, - "y": 30.400612 - }, - "endPoint": { - "x": 623.737609, - "y": 30.289927 - } - } - }, - { - "id": "ba79f3e3-5563-57e2-a814-c91e1dac20b6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.737609, - "y": 30.289927 - }, - "endPoint": { - "x": 623.676735, - "y": 30.177878 - } - } - }, - { - "id": "ccbaaab2-da61-5220-894f-416de453c3b0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.676735, - "y": 30.177878 - }, - "endPoint": { - "x": 623.616134, - "y": 30.064145 - } - } - }, - { - "id": "719af9eb-b601-57ef-9b83-0e5d264d05c7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.616134, - "y": 30.064145 - }, - "endPoint": { - "x": 623.555715, - "y": 29.948409 - } - } - }, - { - "id": "ae3d9c8c-29c5-5323-894c-ef1ea223b67f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.555715, - "y": 29.948409 - }, - "endPoint": { - "x": 623.495387, - "y": 29.830353 - } - } - }, - { - "id": "5bbeb899-3eec-5a68-b8c1-ce675e63f6f7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.495387, - "y": 29.830353 - }, - "endPoint": { - "x": 623.435059, - "y": 29.709657 - } - } - }, - { - "id": "a0671847-d9c6-57a1-bbe2-52941309ca19", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.435059, - "y": 29.709657 - }, - "endPoint": { - "x": 623.37464, - "y": 29.586003 - } - } - }, - { - "id": "99aa72a6-19cb-5ff7-b106-28e819de2c2c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.37464, - "y": 29.586003 - }, - "endPoint": { - "x": 623.314119, - "y": 29.459277 - } - } - }, - { - "id": "72f61d89-d9bb-5efc-a0f2-3b5c1427aa34", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.314119, - "y": 29.459277 - }, - "endPoint": { - "x": 623.253803, - "y": 29.330184 - } - } - }, - { - "id": "29265590-8aef-5aca-9f66-177029e2fcb2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.253803, - "y": 29.330184 - }, - "endPoint": { - "x": 623.194078, - "y": 29.199636 - } - } - }, - { - "id": "f3a83656-5c75-5ccf-bd95-a3890f49b11d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.194078, - "y": 29.199636 - }, - "endPoint": { - "x": 623.135334, - "y": 29.068541 - } - } - }, - { - "id": "a71d5efa-d270-5e7e-9c80-db37d7c9504c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.135334, - "y": 29.068541 - }, - "endPoint": { - "x": 623.077956, - "y": 28.93781 - } - } - }, - { - "id": "4b9783ac-fa4a-5142-865d-bf142d51191c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.077956, - "y": 28.93781 - }, - "endPoint": { - "x": 623.022331, - "y": 28.808354 - } - } - }, - { - "id": "03cb1e89-f855-5b94-ade1-d67b6978cf8f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 623.022331, - "y": 28.808354 - }, - "endPoint": { - "x": 622.968848, - "y": 28.681081 - } - } - }, - { - "id": "675edf34-04cc-5be5-92f1-f0026ea3674e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.968848, - "y": 28.681081 - }, - "endPoint": { - "x": 622.917893, - "y": 28.556904 - } - } - }, - { - "id": "b343ea6d-daa7-5aa3-9e67-6507d8b9dc25", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.917893, - "y": 28.556904 - }, - "endPoint": { - "x": 622.869781, - "y": 28.436689 - } - } - }, - { - "id": "99a39977-400b-5212-87d0-4e1e2b07463d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.869781, - "y": 28.436689 - }, - "endPoint": { - "x": 622.824539, - "y": 28.32114 - } - } - }, - { - "id": "7c7940b4-dbf4-55e7-8975-aa4198500872", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.824539, - "y": 28.32114 - }, - "endPoint": { - "x": 622.782122, - "y": 28.210914 - } - } - }, - { - "id": "b70dc5ed-b19d-530a-9802-63c7074bb6bf", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.782122, - "y": 28.210914 - }, - "endPoint": { - "x": 622.742483, - "y": 28.106673 - } - } - }, - { - "id": "844193b9-eaec-5b41-a0f6-ed5d6a38ece9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.742483, - "y": 28.106673 - }, - "endPoint": { - "x": 622.705577, - "y": 28.009077 - } - } - }, - { - "id": "63951818-817e-53b6-b79c-47499bbcb676", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.705577, - "y": 28.009077 - }, - "endPoint": { - "x": 622.671359, - "y": 27.918784 - } - } - }, - { - "id": "e751bb7e-7294-5bfb-866f-05d33454f907", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.671359, - "y": 27.918784 - }, - "endPoint": { - "x": 622.639783, - "y": 27.836456 - } - } - }, - { - "id": "645c6584-e254-5881-afd3-5e19fa0be626", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.639783, - "y": 27.836456 - }, - "endPoint": { - "x": 622.610804, - "y": 27.762751 - } - } - }, - { - "id": "4635161f-4aa4-5167-bf3f-2492ec752901", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.610804, - "y": 27.762751 - }, - "endPoint": { - "x": 622.584345, - "y": 27.698114 - } - } - }, - { - "id": "e4302387-4c6d-5534-bef0-1bb59e7de911", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.584345, - "y": 27.698114 - }, - "endPoint": { - "x": 622.560209, - "y": 27.642123 - } - } - }, - { - "id": "2439ec96-fb60-5d10-8dfb-9482474625e4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.560209, - "y": 27.642123 - }, - "endPoint": { - "x": 622.538169, - "y": 27.594142 - } - } - }, - { - "id": "232672e5-d6db-5eee-b363-8a8ceae1b849", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.538169, - "y": 27.594142 - }, - "endPoint": { - "x": 622.517996, - "y": 27.553533 - } - } - }, - { - "id": "1be99ada-1916-57dc-817d-a5a99fe256b3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.517996, - "y": 27.553533 - }, - "endPoint": { - "x": 622.499464, - "y": 27.51966 - } - } - }, - { - "id": "1b03d38b-10a8-5629-9f82-975fc415e8ab", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.499464, - "y": 27.51966 - }, - "endPoint": { - "x": 622.482343, - "y": 27.491885 - } - } - }, - { - "id": "d331e50a-8723-5031-bfb0-fd53f258d39f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.482343, - "y": 27.491885 - }, - "endPoint": { - "x": 622.466407, - "y": 27.46957 - } - } - }, - { - "id": "bb1d3943-2e22-5261-b883-6c73a20078b1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.466407, - "y": 27.46957 - }, - "endPoint": { - "x": 622.451428, - "y": 27.45208 - } - } - }, - { - "id": "3719f975-7d8a-569d-acc4-a19210159989", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.451428, - "y": 27.45208 - }, - "endPoint": { - "x": 622.437253, - "y": 27.438871 - } - } - }, - { - "id": "83addfbd-4849-5339-826e-65e952462ce5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.437253, - "y": 27.438871 - }, - "endPoint": { - "x": 622.424035, - "y": 27.429781 - } - } - }, - { - "id": "dc1ff7e2-554c-549a-b3bb-a8c4d4c40a8c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.424035, - "y": 27.429781 - }, - "endPoint": { - "x": 622.412001, - "y": 27.42474 - } - } - }, - { - "id": "780e553f-01fa-5b76-a54d-4125ca42044d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.412001, - "y": 27.42474 - }, - "endPoint": { - "x": 622.40138, - "y": 27.423682 - } - } - }, - { - "id": "36b42c47-f6f0-54f9-8e23-8a521c8f366b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.40138, - "y": 27.423682 - }, - "endPoint": { - "x": 622.392398, - "y": 27.426538 - } - } - }, - { - "id": "4e687ded-844e-5fc8-b1e6-35f7976286cc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.392398, - "y": 27.426538 - }, - "endPoint": { - "x": 622.385284, - "y": 27.433239 - } - } - }, - { - "id": "ebf5c398-e4c5-515c-9f41-a21848a7535d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.385284, - "y": 27.433239 - }, - "endPoint": { - "x": 622.380265, - "y": 27.443717 - } - } - }, - { - "id": "3aaf63c6-8bf6-5c84-befc-13306b894b6c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.380265, - "y": 27.443717 - }, - "endPoint": { - "x": 622.37757, - "y": 27.457904 - } - } - }, - { - "id": "edf6ad54-55bc-5346-8f58-f3cf589f1225", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.37757, - "y": 27.457904 - }, - "endPoint": { - "x": 622.377365, - "y": 27.47574 - } - } - }, - { - "id": "d6f176f8-40e1-5252-8207-8e1c5748062a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.377365, - "y": 27.47574 - }, - "endPoint": { - "x": 622.379574, - "y": 27.497193 - } - } - }, - { - "id": "0d2d4965-5ac4-573f-90c4-692d3b82d26d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.379574, - "y": 27.497193 - }, - "endPoint": { - "x": 622.384061, - "y": 27.522242 - } - } - }, - { - "id": "a0c68bac-73b6-5b13-b9be-0465f7e69301", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.384061, - "y": 27.522242 - }, - "endPoint": { - "x": 622.390689, - "y": 27.550863 - } - } - }, - { - "id": "2c11b582-58a7-516b-b78c-b590d28f3cd4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.390689, - "y": 27.550863 - }, - "endPoint": { - "x": 622.399321, - "y": 27.583034 - } - } - }, - { - "id": "96896cbd-6ef5-5120-9336-ca3c039b0365", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.399321, - "y": 27.583034 - }, - "endPoint": { - "x": 622.409821, - "y": 27.618732 - } - } - }, - { - "id": "97fe2d7f-2b4b-5900-8683-5024c464be89", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.409821, - "y": 27.618732 - }, - "endPoint": { - "x": 622.422052, - "y": 27.657933 - } - } - }, - { - "id": "ae5ae8b4-fd8c-56a4-aaf7-983318b82efa", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.422052, - "y": 27.657933 - }, - "endPoint": { - "x": 622.435877, - "y": 27.700617 - } - } - }, - { - "id": "9b2a24ad-29fe-5f69-85ea-36c44476318a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.435877, - "y": 27.700617 - }, - "endPoint": { - "x": 622.451126, - "y": 27.746679 - } - } - }, - { - "id": "30801c24-e083-57eb-a72d-b6725bcb2f50", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.451126, - "y": 27.746679 - }, - "endPoint": { - "x": 622.467491, - "y": 27.795699 - } - } - }, - { - "id": "d70a6d27-b2fb-5a63-aa50-9a711280e415", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.467491, - "y": 27.795699 - }, - "endPoint": { - "x": 622.484631, - "y": 27.847177 - } - } - }, - { - "id": "bbd744b8-00f0-5afd-b55a-fb07bf206de6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.484631, - "y": 27.847177 - }, - "endPoint": { - "x": 622.502203, - "y": 27.900611 - } - } - }, - { - "id": "34564ece-c762-5248-9df0-2f9d0ddf3ff8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.502203, - "y": 27.900611 - }, - "endPoint": { - "x": 622.519867, - "y": 27.955502 - } - } - }, - { - "id": "01849beb-0577-57bb-b6f8-1f0a424796a6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.519867, - "y": 27.955502 - }, - "endPoint": { - "x": 622.53728, - "y": 28.011348 - } - } - }, - { - "id": "5d1627b5-f0d2-5552-b1c4-685d7156f3a1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.53728, - "y": 28.011348 - }, - "endPoint": { - "x": 622.5541, - "y": 28.06765 - } - } - }, - { - "id": "88e25eaa-8d4d-53c4-bc59-fa09f5bf9279", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.5541, - "y": 28.06765 - }, - "endPoint": { - "x": 622.569987, - "y": 28.123906 - } - } - }, - { - "id": "385ceb14-93b7-50cc-b69e-4b36b0514402", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.569987, - "y": 28.123906 - }, - "endPoint": { - "x": 622.58464, - "y": 28.179718 - } - } - }, - { - "id": "8a4d834f-f1f6-5c4a-a10d-579b3227ce76", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.58464, - "y": 28.179718 - }, - "endPoint": { - "x": 622.597926, - "y": 28.235098 - } - } - }, - { - "id": "e5d332ee-dd6a-5aea-bbb7-30b377d64c8e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.597926, - "y": 28.235098 - }, - "endPoint": { - "x": 622.609755, - "y": 28.29016 - } - } - }, - { - "id": "10a50f6e-568b-529d-89ca-fccb02f563f0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.609755, - "y": 28.29016 - }, - "endPoint": { - "x": 622.620035, - "y": 28.345016 - } - } - }, - { - "id": "263fe992-5c84-561a-ae36-d7d750d5bf7d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.620035, - "y": 28.345016 - }, - "endPoint": { - "x": 622.628674, - "y": 28.399782 - } - } - }, - { - "id": "b831e8f3-2399-55d8-a9e2-f5e6e4ddc519", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.628674, - "y": 28.399782 - }, - "endPoint": { - "x": 622.635583, - "y": 28.45457 - } - } - }, - { - "id": "ca330145-c97b-561c-b48f-48d543297e77", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.635583, - "y": 28.45457 - }, - "endPoint": { - "x": 622.64067, - "y": 28.509495 - } - } - }, - { - "id": "9f043f1a-aeef-599a-8e4a-1aac633e4879", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.64067, - "y": 28.509495 - }, - "endPoint": { - "x": 622.643843, - "y": 28.56467 - } - } - }, - { - "id": "e65479d8-ed71-540a-981c-ca55dcdffc26", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.643843, - "y": 28.56467 - }, - "endPoint": { - "x": 622.645017, - "y": 28.620115 - } - } - }, - { - "id": "56c89600-529f-5413-9cc5-e09d5b655cbc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.645017, - "y": 28.620115 - }, - "endPoint": { - "x": 622.644117, - "y": 28.675468 - } - } - }, - { - "id": "98eff043-98b5-5277-9242-eeec249a9a54", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.644117, - "y": 28.675468 - }, - "endPoint": { - "x": 622.641077, - "y": 28.730276 - } - } - }, - { - "id": "378511b3-17fd-55be-8309-b62acb8414a0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.641077, - "y": 28.730276 - }, - "endPoint": { - "x": 622.635827, - "y": 28.784082 - } - } - }, - { - "id": "bc55465e-affa-5ffd-9a5d-ea437eb2b630", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.635827, - "y": 28.784082 - }, - "endPoint": { - "x": 622.6283, - "y": 28.836432 - } - } - }, - { - "id": "2eb066e2-b397-5f6e-af5f-6b4a01ad37bc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.6283, - "y": 28.836432 - }, - "endPoint": { - "x": 622.618426, - "y": 28.886871 - } - } - }, - { - "id": "cc8e3882-f8e7-575b-885f-5f31cfe97f1a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.618426, - "y": 28.886871 - }, - "endPoint": { - "x": 622.606138, - "y": 28.934943 - } - } - }, - { - "id": "6082582a-275d-5f74-8e44-28aa198cc2aa", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.606138, - "y": 28.934943 - }, - "endPoint": { - "x": 622.591368, - "y": 28.980193 - } - } - }, - { - "id": "b8b56d6c-df05-556c-b53a-ec11b2feedc3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.591368, - "y": 28.980193 - }, - "endPoint": { - "x": 622.574084, - "y": 29.022232 - } - } - }, - { - "id": "ee588eaa-3b70-55ed-921c-648c41f82181", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.574084, - "y": 29.022232 - }, - "endPoint": { - "x": 622.554409, - "y": 29.060925 - } - } - }, - { - "id": "e7513d31-b2dd-5ec6-92e8-b993f3af2fba", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.554409, - "y": 29.060925 - }, - "endPoint": { - "x": 622.532501, - "y": 29.096206 - } - } - }, - { - "id": "a4bcab86-a4a3-58a5-bb7f-4f52264202d4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.532501, - "y": 29.096206 - }, - "endPoint": { - "x": 622.508521, - "y": 29.128005 - } - } - }, - { - "id": "5a836bdd-9861-589a-a27e-e90ec6bc94b1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.508521, - "y": 29.128005 - }, - "endPoint": { - "x": 622.482628, - "y": 29.156254 - } - } - }, - { - "id": "86f5963c-1197-5ace-bfc3-9c3d18951615", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.482628, - "y": 29.156254 - }, - "endPoint": { - "x": 622.45498, - "y": 29.180885 - } - } - }, - { - "id": "59762337-630c-563e-a5cc-2a64881b2460", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.45498, - "y": 29.180885 - }, - "endPoint": { - "x": 622.425739, - "y": 29.20183 - } - } - }, - { - "id": "83dd866f-b844-51ff-839c-7ab49c0bbf5b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.425739, - "y": 29.20183 - }, - "endPoint": { - "x": 622.395062, - "y": 29.219021 - } - } - }, - { - "id": "18258edc-b521-5137-8c30-f936fff1321a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.395062, - "y": 29.219021 - }, - "endPoint": { - "x": 622.363069, - "y": 29.232457 - } - } - }, - { - "id": "845a4ac7-caab-5a33-880d-8f979fcca11c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.363069, - "y": 29.232457 - }, - "endPoint": { - "x": 622.329708, - "y": 29.242412 - } - } - }, - { - "id": "ec052f23-8a5a-5865-9733-9b5c3d34f011", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.329708, - "y": 29.242412 - }, - "endPoint": { - "x": 622.29489, - "y": 29.249227 - } - } - }, - { - "id": "fc841a74-cce8-5444-be52-266145db9032", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.29489, - "y": 29.249227 - }, - "endPoint": { - "x": 622.258523, - "y": 29.253243 - } - } - }, - { - "id": "f21d919a-f999-5e8b-95d9-c29f77efead9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.258523, - "y": 29.253243 - }, - "endPoint": { - "x": 622.220517, - "y": 29.254802 - } - } - }, - { - "id": "d000927c-db5e-5aa2-b0d3-aa1eb04d6c00", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.220517, - "y": 29.254802 - }, - "endPoint": { - "x": 622.180779, - "y": 29.254245 - } - } - }, - { - "id": "2ca79e14-c1be-579f-a09d-533ea0ade5e2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.180779, - "y": 29.254245 - }, - "endPoint": { - "x": 622.13922, - "y": 29.251912 - } - } - }, - { - "id": "4c71e03e-ccd8-52c1-8e5d-46d58eff2d90", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.13922, - "y": 29.251912 - }, - "endPoint": { - "x": 622.095747, - "y": 29.248147 - } - } - }, - { - "id": "35f4783d-830f-5455-b018-a3aae6c4d404", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.095747, - "y": 29.248147 - }, - "endPoint": { - "x": 622.050372, - "y": 29.24319 - } - } - }, - { - "id": "a78675fa-660f-586f-bfb0-7a956727af9a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.050372, - "y": 29.24319 - }, - "endPoint": { - "x": 622.003517, - "y": 29.236891 - } - } - }, - { - "id": "8174c574-f937-530e-bc53-cebe7759f7d3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 622.003517, - "y": 29.236891 - }, - "endPoint": { - "x": 621.955705, - "y": 29.228999 - } - } - }, - { - "id": "6c489262-215b-5bb0-9b67-91bfd3294b2d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.955705, - "y": 29.228999 - }, - "endPoint": { - "x": 621.907461, - "y": 29.219264 - } - } - }, - { - "id": "ece31c15-cfb4-5e0b-91e3-554a52c52fbd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.907461, - "y": 29.219264 - }, - "endPoint": { - "x": 621.859307, - "y": 29.207436 - } - } - }, - { - "id": "c7b585ca-7a66-50db-a83c-97e659900782", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.859307, - "y": 29.207436 - }, - "endPoint": { - "x": 621.811769, - "y": 29.193264 - } - } - }, - { - "id": "8bc9a73a-54e2-552f-a1d2-1f105920c4c4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.811769, - "y": 29.193264 - }, - "endPoint": { - "x": 621.765369, - "y": 29.176497 - } - } - }, - { - "id": "e2a708ff-78f8-5be4-9f93-26e4f21b9bdb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.765369, - "y": 29.176497 - }, - "endPoint": { - "x": 621.720632, - "y": 29.156887 - } - } - }, - { - "id": "9afe3f98-48d1-581e-b254-87f28a285f73", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.720632, - "y": 29.156887 - }, - "endPoint": { - "x": 621.67801, - "y": 29.134345 - } - } - }, - { - "id": "b9813808-6393-542e-b9f5-c9a5aefa61e9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.67801, - "y": 29.134345 - }, - "endPoint": { - "x": 621.637665, - "y": 29.109437 - } - } - }, - { - "id": "629488a4-5087-5338-8ee6-77d3a8026591", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.637665, - "y": 29.109437 - }, - "endPoint": { - "x": 621.599688, - "y": 29.08289 - } - } - }, - { - "id": "9b1d9cba-0c70-5231-828f-98ce469d8504", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.599688, - "y": 29.08289 - }, - "endPoint": { - "x": 621.564172, - "y": 29.055433 - } - } - }, - { - "id": "def20fc7-a280-5d54-98f9-24ac860dd090", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.564172, - "y": 29.055433 - }, - "endPoint": { - "x": 621.531206, - "y": 29.027795 - } - } - }, - { - "id": "1f011d38-ae5e-5661-a942-32aa2a990d40", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.531206, - "y": 29.027795 - }, - "endPoint": { - "x": 621.500883, - "y": 29.000702 - } - } - }, - { - "id": "b77b3dc5-c378-50c7-9959-7b22eb7062aa", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.500883, - "y": 29.000702 - }, - "endPoint": { - "x": 621.473293, - "y": 28.974883 - } - } - }, - { - "id": "b27a0850-a19f-5c22-be61-f5ebd787dfa0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.473293, - "y": 28.974883 - }, - "endPoint": { - "x": 621.448527, - "y": 28.951067 - } - } - }, - { - "id": "d82940ac-c2ab-529e-9b2a-928741b1c59e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.448527, - "y": 28.951067 - }, - "endPoint": { - "x": 621.426635, - "y": 28.929929 - } - } - }, - { - "id": "9089aafd-60f9-5466-9ee5-2b69044e3e92", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.426635, - "y": 28.929929 - }, - "endPoint": { - "x": 621.407498, - "y": 28.91193 - } - } - }, - { - "id": "344b327c-1fce-5aaa-89e7-3ba6740d845f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.407498, - "y": 28.91193 - }, - "endPoint": { - "x": 621.390959, - "y": 28.897481 - } - } - }, - { - "id": "a1f06fdf-9a81-5ab9-9c69-6f3a7def5dbe", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.390959, - "y": 28.897481 - }, - "endPoint": { - "x": 621.376856, - "y": 28.886992 - } - } - }, - { - "id": "e55e6821-2431-5934-a82f-2125c19c921e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.376856, - "y": 28.886992 - }, - "endPoint": { - "x": 621.365031, - "y": 28.880871 - } - } - }, - { - "id": "d7d69da0-00f9-5bf8-9e4e-b2d0b244e13e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.365031, - "y": 28.880871 - }, - "endPoint": { - "x": 621.355325, - "y": 28.879528 - } - } - }, - { - "id": "76f02c30-679a-5f0f-954b-1e92dd705956", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.355325, - "y": 28.879528 - }, - "endPoint": { - "x": 621.347577, - "y": 28.883374 - } - } - }, - { - "id": "853c0418-1bb9-5eca-a468-66eae05d8803", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.347577, - "y": 28.883374 - }, - "endPoint": { - "x": 621.341629, - "y": 28.892817 - } - } - }, - { - "id": "60d79c15-ce64-5fd9-8d44-a3103d0250e7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.341629, - "y": 28.892817 - }, - "endPoint": { - "x": 621.337309, - "y": 28.908104 - } - } - }, - { - "id": "f5a79b2e-81a2-5ede-8e9a-54f4054a26a7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.337309, - "y": 28.908104 - }, - "endPoint": { - "x": 621.334401, - "y": 28.928829 - } - } - }, - { - "id": "0b4fd1a9-cecf-5108-a1c2-a54bf4c6d116", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.334401, - "y": 28.928829 - }, - "endPoint": { - "x": 621.332678, - "y": 28.954424 - } - } - }, - { - "id": "4c427845-2949-567c-bdfe-b15d818f5364", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.332678, - "y": 28.954424 - }, - "endPoint": { - "x": 621.331912, - "y": 28.98432 - } - } - }, - { - "id": "88569f53-fc09-5d32-abce-b9e22607374c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.331912, - "y": 28.98432 - }, - "endPoint": { - "x": 621.331874, - "y": 29.017947 - } - } - }, - { - "id": "1a71669d-7b07-5bd8-b5ab-3aefb4f38c55", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.331874, - "y": 29.017947 - }, - "endPoint": { - "x": 621.332338, - "y": 29.054736 - } - } - }, - { - "id": "81cf9d08-672c-5b3e-9644-e4936398861b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.332338, - "y": 29.054736 - }, - "endPoint": { - "x": 621.333074, - "y": 29.09412 - } - } - }, - { - "id": "55bb001d-7a93-51d0-9c98-c7a59ab5cc18", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.333074, - "y": 29.09412 - }, - "endPoint": { - "x": 621.333857, - "y": 29.135529 - } - } - }, - { - "id": "859a213d-556d-5972-a5da-54ce16a98501", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.333857, - "y": 29.135529 - }, - "endPoint": { - "x": 621.334468, - "y": 29.178459 - } - } - }, - { - "id": "f30bf827-5d5a-5856-8e85-dc625260da9d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.334468, - "y": 29.178459 - }, - "endPoint": { - "x": 621.334738, - "y": 29.222663 - } - } - }, - { - "id": "5b76c91d-d942-537f-b59d-30033a6531a6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.334738, - "y": 29.222663 - }, - "endPoint": { - "x": 621.334506, - "y": 29.267959 - } - } - }, - { - "id": "a24ee023-9f3a-558e-8432-3b5307beea48", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.334506, - "y": 29.267959 - }, - "endPoint": { - "x": 621.333614, - "y": 29.314165 - } - } - }, - { - "id": "64993744-2c07-5758-a4e7-2e07892e45eb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.333614, - "y": 29.314165 - }, - "endPoint": { - "x": 621.331902, - "y": 29.361099 - } - } - }, - { - "id": "904ec9c8-5906-59c5-b19e-144265f2fb10", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.331902, - "y": 29.361099 - }, - "endPoint": { - "x": 621.329211, - "y": 29.40858 - } - } - }, - { - "id": "8e4b60db-3b09-5035-94eb-9a21267f3e53", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.329211, - "y": 29.40858 - }, - "endPoint": { - "x": 621.32538, - "y": 29.456424 - } - } - }, - { - "id": "3feffbf8-e091-578a-abd5-7ec4075d73ef", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.32538, - "y": 29.456424 - }, - "endPoint": { - "x": 621.320252, - "y": 29.504451 - } - } - }, - { - "id": "8bc6694c-178a-5002-a3e8-9945901192a9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.320252, - "y": 29.504451 - }, - "endPoint": { - "x": 621.313635, - "y": 29.5525 - } - } - }, - { - "id": "a803c3a7-25f0-541c-b4e4-a8b64d17122c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.313635, - "y": 29.5525 - }, - "endPoint": { - "x": 621.305219, - "y": 29.600504 - } - } - }, - { - "id": "2ca13a00-e738-5eaa-ada9-4a2a4977d5fb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.305219, - "y": 29.600504 - }, - "endPoint": { - "x": 621.294662, - "y": 29.648417 - } - } - }, - { - "id": "dc89115d-3069-5ddf-95a9-f42ceae982b1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.294662, - "y": 29.648417 - }, - "endPoint": { - "x": 621.281622, - "y": 29.696193 - } - } - }, - { - "id": "2a4953a5-8ce3-53d1-92d6-94866bd9799c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.281622, - "y": 29.696193 - }, - "endPoint": { - "x": 621.265758, - "y": 29.743787 - } - } - }, - { - "id": "98db2081-36d4-5dc3-aa52-235773744e26", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.265758, - "y": 29.743787 - }, - "endPoint": { - "x": 621.246728, - "y": 29.791154 - } - } - }, - { - "id": "b684041d-eedf-5bd8-85f9-a12d95630542", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.246728, - "y": 29.791154 - }, - "endPoint": { - "x": 621.224191, - "y": 29.838248 - } - } - }, - { - "id": "8a6e41b5-6141-5522-83c5-ed6cc2f0660e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.224191, - "y": 29.838248 - }, - "endPoint": { - "x": 621.197804, - "y": 29.885023 - } - } - }, - { - "id": "575bec97-f30d-542f-9d83-3ee50c8effe8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.197804, - "y": 29.885023 - }, - "endPoint": { - "x": 621.167332, - "y": 29.931365 - } - } - }, - { - "id": "9db3f6c0-51a8-5747-b03f-bee278465216", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.167332, - "y": 29.931365 - }, - "endPoint": { - "x": 621.132966, - "y": 29.976889 - } - } - }, - { - "id": "95a18812-1eb5-535e-b62c-e7c38514821d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.132966, - "y": 29.976889 - }, - "endPoint": { - "x": 621.095001, - "y": 30.021138 - } - } - }, - { - "id": "37dcd8f3-db05-544a-b19c-d418bdca3131", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.095001, - "y": 30.021138 - }, - "endPoint": { - "x": 621.053733, - "y": 30.063659 - } - } - }, - { - "id": "f8336c93-6167-5fc5-9544-a07bb66f559e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.053733, - "y": 30.063659 - }, - "endPoint": { - "x": 621.009459, - "y": 30.103994 - } - } - }, - { - "id": "063ceabb-05b9-5bb9-bf7f-2aa919645457", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 621.009459, - "y": 30.103994 - }, - "endPoint": { - "x": 620.962474, - "y": 30.14169 - } - } - }, - { - "id": "dee25276-e2e7-55c8-97b3-6806a48cc900", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.962474, - "y": 30.14169 - }, - "endPoint": { - "x": 620.913076, - "y": 30.176292 - } - } - }, - { - "id": "d681bc9f-3c13-5eb3-b6e3-d24c6a116668", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.913076, - "y": 30.176292 - }, - "endPoint": { - "x": 620.861559, - "y": 30.207344 - } - } - }, - { - "id": "b8150075-7a37-573e-822b-faa6a1be4b94", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.861559, - "y": 30.207344 - }, - "endPoint": { - "x": 620.808224, - "y": 30.234524 - } - } - }, - { - "id": "7bb4d45f-0473-5635-b117-cda25d73eb51", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.808224, - "y": 30.234524 - }, - "endPoint": { - "x": 620.753385, - "y": 30.25804 - } - } - }, - { - "id": "c70be504-3d48-5317-bf2a-8a079d6fb81d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.753385, - "y": 30.25804 - }, - "endPoint": { - "x": 620.697362, - "y": 30.278235 - } - } - }, - { - "id": "b561cad8-9a7e-5296-849c-ff3cb874fa99", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.697362, - "y": 30.278235 - }, - "endPoint": { - "x": 620.640474, - "y": 30.295448 - } - } - }, - { - "id": "85dc3221-9ffa-5d93-89b6-e8acc56c0092", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.640474, - "y": 30.295448 - }, - "endPoint": { - "x": 620.583039, - "y": 30.310022 - } - } - }, - { - "id": "5b42d3ba-6ac2-5937-b3af-c4754d229bfe", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.583039, - "y": 30.310022 - }, - "endPoint": { - "x": 620.525377, - "y": 30.322298 - } - } - }, - { - "id": "2379b35f-6699-5316-a61c-dc24fb19daf4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.525377, - "y": 30.322298 - }, - "endPoint": { - "x": 620.467805, - "y": 30.332617 - } - } - }, - { - "id": "307d9af6-6b7c-5513-a584-439d1649e2c4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.467805, - "y": 30.332617 - }, - "endPoint": { - "x": 620.410644, - "y": 30.341321 - } - } - }, - { - "id": "b3be915e-6cdd-59c8-8e8e-7d505fe4eb62", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.410644, - "y": 30.341321 - }, - "endPoint": { - "x": 620.354036, - "y": 30.348674 - } - } - }, - { - "id": "9bd2fb2c-aff1-52c5-ba4e-37c4288f0369", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.354036, - "y": 30.348674 - }, - "endPoint": { - "x": 620.297429, - "y": 30.35464 - } - } - }, - { - "id": "0b4e1221-8678-5226-abeb-6756962d611d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.297429, - "y": 30.35464 - }, - "endPoint": { - "x": 620.240093, - "y": 30.359103 - } - } - }, - { - "id": "f9b15797-5511-5f2e-aede-df7da1c602d9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.240093, - "y": 30.359103 - }, - "endPoint": { - "x": 620.181299, - "y": 30.361951 - } - } - }, - { - "id": "af978cd9-ff6e-5506-8230-f61e59842d0a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.181299, - "y": 30.361951 - }, - "endPoint": { - "x": 620.120318, - "y": 30.36307 - } - } - }, - { - "id": "8c8bdb17-b1d0-56b5-b45f-d1106a457cd4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.120318, - "y": 30.36307 - }, - "endPoint": { - "x": 620.056422, - "y": 30.362346 - } - } - }, - { - "id": "7fb7a66c-897d-5a4e-94d1-e731060e1533", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 620.056422, - "y": 30.362346 - }, - "endPoint": { - "x": 619.988881, - "y": 30.359665 - } - } - }, - { - "id": "3590554b-4eed-5936-be80-8d3dffe3e81f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.988881, - "y": 30.359665 - }, - "endPoint": { - "x": 619.916968, - "y": 30.354913 - } - } - }, - { - "id": "80d4201e-0a18-5779-b35f-e9dc3bd0a504", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.916968, - "y": 30.354913 - }, - "endPoint": { - "x": 619.840186, - "y": 30.348022 - } - } - }, - { - "id": "9eb8ea44-a9e8-581f-8b12-0165a200da23", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.840186, - "y": 30.348022 - }, - "endPoint": { - "x": 619.758977, - "y": 30.339107 - } - } - }, - { - "id": "102446c9-dd2b-5414-ab3f-69b5ca3cd8c3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.758977, - "y": 30.339107 - }, - "endPoint": { - "x": 619.674015, - "y": 30.328328 - } - } - }, - { - "id": "7e39409f-7dbf-56ea-9c09-173a8ff3076d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.674015, - "y": 30.328328 - }, - "endPoint": { - "x": 619.585976, - "y": 30.315846 - } - } - }, - { - "id": "3971d35f-8f1b-5eff-8ff5-b1e7d51dbdb7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.585976, - "y": 30.315846 - }, - "endPoint": { - "x": 619.495533, - "y": 30.301819 - } - } - }, - { - "id": "646f0ef2-12ac-5969-a87f-ea2a981a4330", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.495533, - "y": 30.301819 - }, - "endPoint": { - "x": 619.403361, - "y": 30.286408 - } - } - }, - { - "id": "f2806e95-b3b2-557b-9de5-2a0f6c79bce5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.403361, - "y": 30.286408 - }, - "endPoint": { - "x": 619.310135, - "y": 30.269774 - } - } - }, - { - "id": "4abb10a5-3fae-51ac-a679-dc9829616330", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.310135, - "y": 30.269774 - }, - "endPoint": { - "x": 619.21653, - "y": 30.252077 - } - } - }, - { - "id": "16d8a693-54fc-511b-9471-fc689a7ef1b1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.21653, - "y": 30.252077 - }, - "endPoint": { - "x": 619.12308, - "y": 30.233388 - } - } - }, - { - "id": "6b3f761e-6743-505b-abdc-429bea8329cb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.12308, - "y": 30.233388 - }, - "endPoint": { - "x": 619.029761, - "y": 30.21343 - } - } - }, - { - "id": "cb22e7ea-8153-501f-a3d6-b123e4d44c95", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 619.029761, - "y": 30.21343 - }, - "endPoint": { - "x": 618.936407, - "y": 30.191838 - } - } - }, - { - "id": "00664e80-4358-5867-a3ef-5e7f4d33da45", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.936407, - "y": 30.191838 - }, - "endPoint": { - "x": 618.842853, - "y": 30.168245 - } - } - }, - { - "id": "a5f73da5-15e3-544a-8d53-8d724a66edf6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.842853, - "y": 30.168245 - }, - "endPoint": { - "x": 618.748935, - "y": 30.142285 - } - } - }, - { - "id": "e96b7c88-ae13-5ecf-8904-1ef6d50d162a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.748935, - "y": 30.142285 - }, - "endPoint": { - "x": 618.654488, - "y": 30.113593 - } - } - }, - { - "id": "5197401b-1c70-502a-97e8-d710777a2b26", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.654488, - "y": 30.113593 - }, - "endPoint": { - "x": 618.559346, - "y": 30.081803 - } - } - }, - { - "id": "9cc694bc-8511-58d8-b352-9f4b5af0d8ec", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.559346, - "y": 30.081803 - }, - "endPoint": { - "x": 618.463345, - "y": 30.04655 - } - } - }, - { - "id": "bad198c6-10f2-568e-9f7b-ccaf8787d8b8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.463345, - "y": 30.04655 - }, - "endPoint": { - "x": 618.366403, - "y": 30.0076 - } - } - }, - { - "id": "b78bf906-86d9-5ccc-9c2d-9fba9415df29", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.366403, - "y": 30.0076 - }, - "endPoint": { - "x": 618.26877, - "y": 29.965253 - } - } - }, - { - "id": "26ea3d6f-f424-5e11-8eb0-01b74d87cc4c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.26877, - "y": 29.965253 - }, - "endPoint": { - "x": 618.170779, - "y": 29.919944 - } - } - }, - { - "id": "45a01d0b-b49a-598e-8072-3333ae45f70a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.170779, - "y": 29.919944 - }, - "endPoint": { - "x": 618.072763, - "y": 29.872104 - } - } - }, - { - "id": "bb213613-3f08-51bb-bb56-87d86d7a835f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 618.072763, - "y": 29.872104 - }, - "endPoint": { - "x": 617.975054, - "y": 29.822168 - } - } - }, - { - "id": "48c9b689-3b15-5199-8c6c-b03d83de0fd5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 617.975054, - "y": 29.822168 - }, - "endPoint": { - "x": 617.877987, - "y": 29.770568 - } - } - }, - { - "id": "3dafc6fa-a6e8-57cb-84eb-e72c634ea602", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 617.877987, - "y": 29.770568 - }, - "endPoint": { - "x": 617.781894, - "y": 29.717738 - } - } - }, - { - "id": "d35d3de2-a1ab-5348-8cf6-8367d36fd88e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 617.781894, - "y": 29.717738 - }, - "endPoint": { - "x": 617.687107, - "y": 29.66411 - } - } - }, - { - "id": "dd458d50-4d70-5c12-952d-283e23e4573b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 617.687107, - "y": 29.66411 - }, - "endPoint": { - "x": 617.593947, - "y": 29.610054 - } - } - }, - { - "id": "ae3d45eb-ce4d-5143-8df9-e129e804cf1d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 617.593947, - "y": 29.610054 - }, - "endPoint": { - "x": 617.502677, - "y": 29.555679 - } - } - }, - { - "id": "96af5106-6164-5a97-a4cf-30be91c306d3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 617.502677, - "y": 29.555679 - }, - "endPoint": { - "x": 617.413548, - "y": 29.501031 - } - } - }, - { - "id": "d8968a4e-eed1-5362-a8ad-b78ff9663f10", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 617.413548, - "y": 29.501031 - }, - "endPoint": { - "x": 617.326811, - "y": 29.446155 - } - } - }, - { - "id": "d5cfe8bd-54f8-5c01-95ed-a74c8cfcb253", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 617.326811, - "y": 29.446155 - }, - "endPoint": { - "x": 617.242716, - "y": 29.391097 - } - } - }, - { - "id": "c6e4ae5f-a06f-58b1-9cf8-4d98825dad79", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 617.242716, - "y": 29.391097 - }, - "endPoint": { - "x": 617.161514, - "y": 29.335903 - } - } - }, - { - "id": "ded7e2df-5402-5068-bd96-a3c24e66edc7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 617.161514, - "y": 29.335903 - }, - "endPoint": { - "x": 617.083455, - "y": 29.280618 - } - } - }, - { - "id": "83dc494c-e10a-505a-8ac6-49f4c8f6ef94", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 617.083455, - "y": 29.280618 - }, - "endPoint": { - "x": 617.008789, - "y": 29.225287 - } - } - }, - { - "id": "bc961f23-0d70-5668-84c5-5002a2efeaa0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 617.008789, - "y": 29.225287 - }, - "endPoint": { - "x": 616.937598, - "y": 29.169837 - } - } - }, - { - "id": "0c844c29-f36f-5d37-adfc-b6702308638e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 616.937598, - "y": 29.169837 - }, - "endPoint": { - "x": 616.869276, - "y": 29.113716 - } - } - }, - { - "id": "1fc6b4ee-f38a-551a-a0ac-fbb484a758a5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 616.869276, - "y": 29.113716 - }, - "endPoint": { - "x": 616.803049, - "y": 29.056252 - } - } - }, - { - "id": "8d173a00-6085-59e2-9dc3-8470dd0096a2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 616.803049, - "y": 29.056252 - }, - "endPoint": { - "x": 616.738143, - "y": 28.996774 - } - } - }, - { - "id": "a218abe0-5e89-5183-9506-75f776910591", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 616.738143, - "y": 28.996774 - }, - "endPoint": { - "x": 616.673784, - "y": 28.934611 - } - } - }, - { - "id": "7e6fe3db-8c72-5008-8894-7ba30b1d1369", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 616.673784, - "y": 28.934611 - }, - "endPoint": { - "x": 616.609198, - "y": 28.869092 - } - } - }, - { - "id": "2cca02a6-56c3-5555-87e7-d8d95ceab581", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 616.609198, - "y": 28.869092 - }, - "endPoint": { - "x": 616.543609, - "y": 28.799546 - } - } - }, - { - "id": "2bf72283-19d3-5c29-99eb-74ad267350d2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 616.543609, - "y": 28.799546 - }, - "endPoint": { - "x": 616.476243, - "y": 28.725301 - } - } - }, - { - "id": "291095d8-a983-55a6-9b42-5b1541cc1b62", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 616.476243, - "y": 28.725301 - }, - "endPoint": { - "x": 616.406033, - "y": 28.645572 - } - } - }, - { - "id": "df01952d-527f-5389-bbae-e728bcb5f338", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 616.406033, - "y": 28.645572 - }, - "endPoint": { - "x": 616.330736, - "y": 28.559122 - } - } - }, - { - "id": "f5f83a7b-b901-510a-b14a-7b5c3d1d5e19", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 616.330736, - "y": 28.559122 - }, - "endPoint": { - "x": 616.247818, - "y": 28.464599 - } - } - }, - { - "id": "1ecb2598-1542-5ad5-bf9e-78311e930479", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 616.247818, - "y": 28.464599 - }, - "endPoint": { - "x": 616.154742, - "y": 28.360651 - } - } - }, - { - "id": "8da857cb-282f-5a26-a7c3-f432033c33a9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 616.154742, - "y": 28.360651 - }, - "endPoint": { - "x": 616.048974, - "y": 28.245927 - } - } - }, - { - "id": "3a4937e5-2290-545a-912e-76598713e48a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 616.048974, - "y": 28.245927 - }, - "endPoint": { - "x": 615.927979, - "y": 28.119075 - } - } - }, - { - "id": "7ec8e418-fbab-55e8-9afe-79db0d663730", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 615.927979, - "y": 28.119075 - }, - "endPoint": { - "x": 615.78922, - "y": 27.978744 - } - } - }, - { - "id": "94c79a75-786e-5f11-8648-de5feb987541", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 615.78922, - "y": 27.978744 - }, - "endPoint": { - "x": 615.630163, - "y": 27.823583 - } - } - } - ] - }, - { - "id": "9ad8bddd-0d79-50f9-ab99-918377d39d5d", - "type": "PolyLine", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": null, - "children": [ - { - "id": "1e4e71cd-6915-5fe0-96bf-d4d3d7c7def9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.443592, - "y": 29.590621 - }, - "endPoint": { - "x": 666.205941, - "y": 29.300026 - } - } - }, - { - "id": "eabf99f7-9e00-59bb-b0d6-39c6b731a8fc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.205941, - "y": 29.300026 - }, - "endPoint": { - "x": 665.992125, - "y": 29.034154 - } - } - }, - { - "id": "984e748d-0cd7-5abd-bcd8-dafc4dd32ceb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.992125, - "y": 29.034154 - }, - "endPoint": { - "x": 665.800149, - "y": 28.791147 - } - } - }, - { - "id": "f8acbe73-2e08-59e4-bda6-31e414591ca9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.800149, - "y": 28.791147 - }, - "endPoint": { - "x": 665.62802, - "y": 28.569145 - } - } - }, - { - "id": "9f84e462-f62e-5330-994b-8a5c2767991f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.62802, - "y": 28.569145 - }, - "endPoint": { - "x": 665.473743, - "y": 28.36629 - } - } - }, - { - "id": "023de4bc-97ef-5c12-9f06-542ebf4bd4a9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.473743, - "y": 28.36629 - }, - "endPoint": { - "x": 665.335323, - "y": 28.180722 - } - } - }, - { - "id": "39f1331d-2bc3-532d-8e7c-2245f8dce29c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.335323, - "y": 28.180722 - }, - "endPoint": { - "x": 665.210768, - "y": 28.010584 - } - } - }, - { - "id": "efaaf188-2fb1-54eb-ad7a-409f2023b603", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.210768, - "y": 28.010584 - }, - "endPoint": { - "x": 665.098082, - "y": 27.854015 - } - } - }, - { - "id": "f33aeb21-0be1-50a8-af07-d03eb9d1f984", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.098082, - "y": 27.854015 - }, - "endPoint": { - "x": 664.995452, - "y": 27.70927 - } - } - }, - { - "id": "88343899-d65f-517c-88d5-bb02386b507b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.995452, - "y": 27.70927 - }, - "endPoint": { - "x": 664.901779, - "y": 27.575052 - } - } - }, - { - "id": "61f8b5e4-5ecb-5c38-b879-5086d0a64b54", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.901779, - "y": 27.575052 - }, - "endPoint": { - "x": 664.816146, - "y": 27.450174 - } - } - }, - { - "id": "3891e989-2545-58e8-a4c0-6054c98e8d78", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.816146, - "y": 27.450174 - }, - "endPoint": { - "x": 664.737635, - "y": 27.333453 - } - } - }, - { - "id": "a1d8a44a-d538-50bf-88f2-54028fd59f0d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.737635, - "y": 27.333453 - }, - "endPoint": { - "x": 664.665328, - "y": 27.223703 - } - } - }, - { - "id": "48b9c3a5-fdcb-555c-9b00-2b46cf29c54d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.665328, - "y": 27.223703 - }, - "endPoint": { - "x": 664.598307, - "y": 27.11974 - } - } - }, - { - "id": "244f2707-03e1-51db-8dbe-c42adabcd292", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.598307, - "y": 27.11974 - }, - "endPoint": { - "x": 664.535653, - "y": 27.020378 - } - } - }, - { - "id": "5c8a8874-afd7-52c7-9db1-2a25ee581039", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.535653, - "y": 27.020378 - }, - "endPoint": { - "x": 664.476451, - "y": 26.924432 - } - } - }, - { - "id": "bd5c3d1f-d3f5-5638-91c1-37fb87cf82b9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.476451, - "y": 26.924432 - }, - "endPoint": { - "x": 664.419927, - "y": 26.83094 - } - } - }, - { - "id": "77a81797-1f19-5785-bccf-642956bee471", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.419927, - "y": 26.83094 - }, - "endPoint": { - "x": 664.365897, - "y": 26.739829 - } - } - }, - { - "id": "972bf5e8-687f-5c9f-9d97-4704c541432f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.365897, - "y": 26.739829 - }, - "endPoint": { - "x": 664.314325, - "y": 26.651247 - } - } - }, - { - "id": "d1d66594-7d2e-5fa9-9e1a-f4605b1b23dc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.314325, - "y": 26.651247 - }, - "endPoint": { - "x": 664.265173, - "y": 26.565343 - } - } - }, - { - "id": "401ffcc2-39c6-5bf1-aa9f-401637c8d553", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.265173, - "y": 26.565343 - }, - "endPoint": { - "x": 664.218403, - "y": 26.482267 - } - } - }, - { - "id": "6930ceb8-223d-5d52-9760-7e78b921ba1f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.218403, - "y": 26.482267 - }, - "endPoint": { - "x": 664.173978, - "y": 26.402166 - } - } - }, - { - "id": "3dc4d9b6-9c00-5b2f-b1d6-7018408ae833", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.173978, - "y": 26.402166 - }, - "endPoint": { - "x": 664.13186, - "y": 26.325191 - } - } - }, - { - "id": "e41e5910-eab8-52be-9431-c110542c2bff", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.13186, - "y": 26.325191 - }, - "endPoint": { - "x": 664.092012, - "y": 26.25149 - } - } - }, - { - "id": "cb2290da-ecdc-5d91-92b6-474807d36b93", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.092012, - "y": 26.25149 - }, - "endPoint": { - "x": 664.054393, - "y": 26.181172 - } - } - }, - { - "id": "ea0644b3-a713-5062-a94c-253ed743371e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.054393, - "y": 26.181172 - }, - "endPoint": { - "x": 664.018951, - "y": 26.114184 - } - } - }, - { - "id": "e3e63da4-97a1-56ca-905f-3c48874e9303", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.018951, - "y": 26.114184 - }, - "endPoint": { - "x": 663.985631, - "y": 26.050432 - } - } - }, - { - "id": "cd456de1-5e00-5f3c-92a0-447bd238b19e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.985631, - "y": 26.050432 - }, - "endPoint": { - "x": 663.954377, - "y": 25.989824 - } - } - }, - { - "id": "d1238f56-c7ba-5ea7-9de9-dabfa1e32524", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.954377, - "y": 25.989824 - }, - "endPoint": { - "x": 663.925134, - "y": 25.932266 - } - } - }, - { - "id": "4b722ea3-b3b3-5af3-909c-0303eda5c39d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.925134, - "y": 25.932266 - }, - "endPoint": { - "x": 663.897847, - "y": 25.877666 - } - } - }, - { - "id": "877ffe4d-3292-5852-a953-4c3f82947a68", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.897847, - "y": 25.877666 - }, - "endPoint": { - "x": 663.87246, - "y": 25.82593 - } - } - }, - { - "id": "aa627e4c-21b6-5c55-85fe-7918d97a5d37", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.87246, - "y": 25.82593 - }, - "endPoint": { - "x": 663.848918, - "y": 25.776964 - } - } - }, - { - "id": "4b5f234f-aa53-5549-b422-c15252e665f2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.848918, - "y": 25.776964 - }, - "endPoint": { - "x": 663.827163, - "y": 25.730649 - } - } - }, - { - "id": "f8f1e758-8d04-5f45-aa9f-73911e29e325", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.827163, - "y": 25.730649 - }, - "endPoint": { - "x": 663.807123, - "y": 25.686751 - } - } - }, - { - "id": "db93e81f-4dba-53c6-bd52-3b25c21a68e8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.807123, - "y": 25.686751 - }, - "endPoint": { - "x": 663.788722, - "y": 25.64501 - } - } - }, - { - "id": "db69a9ca-d1fe-514b-9150-412659578b7e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.788722, - "y": 25.64501 - }, - "endPoint": { - "x": 663.771886, - "y": 25.605165 - } - } - }, - { - "id": "a4616e19-a6a6-5406-82fd-bfea79b6bd91", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.771886, - "y": 25.605165 - }, - "endPoint": { - "x": 663.75654, - "y": 25.566957 - } - } - }, - { - "id": "03645d4e-5e1f-5c5d-8ed1-c35a72b4868f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.75654, - "y": 25.566957 - }, - "endPoint": { - "x": 663.742609, - "y": 25.530125 - } - } - }, - { - "id": "ca5da93d-7df9-5b7d-8e70-58c77bf43eef", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.742609, - "y": 25.530125 - }, - "endPoint": { - "x": 663.730018, - "y": 25.494408 - } - } - }, - { - "id": "bd907e99-1db8-52c3-904d-fdc17a0f863a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.730018, - "y": 25.494408 - }, - "endPoint": { - "x": 663.718692, - "y": 25.459547 - } - } - }, - { - "id": "8a319ed6-f60b-531c-a71f-8be003bf93fa", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.718692, - "y": 25.459547 - }, - "endPoint": { - "x": 663.70862, - "y": 25.425404 - } - } - }, - { - "id": "4d68846d-6143-51ad-a2d8-6429f8b2b532", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.70862, - "y": 25.425404 - }, - "endPoint": { - "x": 663.700056, - "y": 25.392339 - } - } - }, - { - "id": "13be165f-712e-5940-9d1e-9c096a8a6529", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.700056, - "y": 25.392339 - }, - "endPoint": { - "x": 663.693314, - "y": 25.360837 - } - } - }, - { - "id": "0baa70e7-f3f4-55fc-986f-3a554936e3fc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.693314, - "y": 25.360837 - }, - "endPoint": { - "x": 663.688711, - "y": 25.33138 - } - } - }, - { - "id": "3ddcfe78-4717-529f-8381-44eb715fb59c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.688711, - "y": 25.33138 - }, - "endPoint": { - "x": 663.686565, - "y": 25.304453 - } - } - }, - { - "id": "1dec41c3-6a85-502a-acc6-5805d7b87920", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.686565, - "y": 25.304453 - }, - "endPoint": { - "x": 663.687191, - "y": 25.280539 - } - } - }, - { - "id": "0fd8b44c-1451-504e-af24-1a302b3bd915", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.687191, - "y": 25.280539 - }, - "endPoint": { - "x": 663.690907, - "y": 25.260121 - } - } - }, - { - "id": "d4471b17-f1c6-569e-a25c-e6bcdf3b6aee", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.690907, - "y": 25.260121 - }, - "endPoint": { - "x": 663.698027, - "y": 25.243684 - } - } - }, - { - "id": "cca74698-1a3b-5465-abc4-adb105c499a4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.698027, - "y": 25.243684 - }, - "endPoint": { - "x": 663.708784, - "y": 25.231624 - } - } - }, - { - "id": "fb9337bb-15bc-5490-b81d-ea68102e46a6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.708784, - "y": 25.231624 - }, - "endPoint": { - "x": 663.723058, - "y": 25.223991 - } - } - }, - { - "id": "1b958226-226f-5c22-bf72-c8e128beee10", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.723058, - "y": 25.223991 - }, - "endPoint": { - "x": 663.740645, - "y": 25.220747 - } - } - }, - { - "id": "660ca445-65f9-5b32-ad13-28ea791d581b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.740645, - "y": 25.220747 - }, - "endPoint": { - "x": 663.761341, - "y": 25.221856 - } - } - }, - { - "id": "0073771d-be92-5398-aa73-6954d7ebc050", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.761341, - "y": 25.221856 - }, - "endPoint": { - "x": 663.784942, - "y": 25.22728 - } - } - }, - { - "id": "071fab9d-58b1-5afe-b7c9-4904933747ce", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.784942, - "y": 25.22728 - }, - "endPoint": { - "x": 663.811244, - "y": 25.236981 - } - } - }, - { - "id": "e02ff3cf-537e-5ba7-bbf0-f59e2a04a8cd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.811244, - "y": 25.236981 - }, - "endPoint": { - "x": 663.840041, - "y": 25.250924 - } - } - }, - { - "id": "2de91940-d3b1-58cc-9405-30390280e8b9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.840041, - "y": 25.250924 - }, - "endPoint": { - "x": 663.87113, - "y": 25.269069 - } - } - }, - { - "id": "ce00e2f1-240f-56c6-9fd5-12a606167f7f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.87113, - "y": 25.269069 - }, - "endPoint": { - "x": 663.904383, - "y": 25.291406 - } - } - }, - { - "id": "1dfdb671-b647-58cf-a8b6-520e38342225", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.904383, - "y": 25.291406 - }, - "endPoint": { - "x": 663.939985, - "y": 25.318021 - } - } - }, - { - "id": "83ab4358-bf85-5611-aae0-6a114a936cb5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.939985, - "y": 25.318021 - }, - "endPoint": { - "x": 663.978193, - "y": 25.349024 - } - } - }, - { - "id": "b8a2ac74-277e-5334-9d8d-9110568efb9a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.978193, - "y": 25.349024 - }, - "endPoint": { - "x": 664.019271, - "y": 25.384529 - } - } - }, - { - "id": "3eda4dda-c3a0-5a8e-89a6-94ba6511a77c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.019271, - "y": 25.384529 - }, - "endPoint": { - "x": 664.063476, - "y": 25.424646 - } - } - }, - { - "id": "c369be1f-24c1-5b55-86a4-5dcd33823334", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.063476, - "y": 25.424646 - }, - "endPoint": { - "x": 664.11107, - "y": 25.469488 - } - } - }, - { - "id": "e839dd20-95cd-511c-b67b-0816c83095f8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.11107, - "y": 25.469488 - }, - "endPoint": { - "x": 664.162313, - "y": 25.519164 - } - } - }, - { - "id": "d38c729a-1caa-51ca-a379-bacd9773d46e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.162313, - "y": 25.519164 - }, - "endPoint": { - "x": 664.217466, - "y": 25.573788 - } - } - }, - { - "id": "9338d8b8-f810-5af4-a6cf-dcddeebf1bdb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.217466, - "y": 25.573788 - }, - "endPoint": { - "x": 664.276707, - "y": 25.633462 - } - } - }, - { - "id": "03ce9f43-33c7-5b5e-847f-797d692fbbb8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.276707, - "y": 25.633462 - }, - "endPoint": { - "x": 664.339895, - "y": 25.69825 - } - } - }, - { - "id": "c2f080d7-9e82-5594-9e5b-d70b34c1c3d6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.339895, - "y": 25.69825 - }, - "endPoint": { - "x": 664.406806, - "y": 25.768209 - } - } - }, - { - "id": "52caf150-8ca2-5890-bb6e-f9dcbbbbfba0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.406806, - "y": 25.768209 - }, - "endPoint": { - "x": 664.477218, - "y": 25.843394 - } - } - }, - { - "id": "c298363d-fcf4-5ebc-ba6c-37ceafe85ab6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.477218, - "y": 25.843394 - }, - "endPoint": { - "x": 664.550906, - "y": 25.923862 - } - } - }, - { - "id": "eb262f2b-6d8e-5dae-9eed-305210de95cb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.550906, - "y": 25.923862 - }, - "endPoint": { - "x": 664.627649, - "y": 26.009668 - } - } - }, - { - "id": "9ddc264c-eea8-54ab-ab46-0e30fc540ab2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.627649, - "y": 26.009668 - }, - "endPoint": { - "x": 664.707222, - "y": 26.100868 - } - } - }, - { - "id": "896fd316-68e2-519c-ba1f-635dd26f1792", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.707222, - "y": 26.100868 - }, - "endPoint": { - "x": 664.789404, - "y": 26.197519 - } - } - }, - { - "id": "fce2858f-5b1d-52ab-98d4-67de08ac3bfa", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.789404, - "y": 26.197519 - }, - "endPoint": { - "x": 664.873886, - "y": 26.299446 - } - } - }, - { - "id": "c7ee2ace-05bb-50a2-aa5c-c3b8ddeb889e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.873886, - "y": 26.299446 - }, - "endPoint": { - "x": 664.960026, - "y": 26.405559 - } - } - }, - { - "id": "c2a32218-b8f6-5726-b3c7-a9d81533c1f3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.960026, - "y": 26.405559 - }, - "endPoint": { - "x": 665.047098, - "y": 26.514536 - } - } - }, - { - "id": "34d73ece-8051-5490-befd-eecf1fe97fc5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.047098, - "y": 26.514536 - }, - "endPoint": { - "x": 665.134376, - "y": 26.625057 - } - } - }, - { - "id": "7d5edea2-d91e-5b1d-8c80-d42cb76579ca", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.134376, - "y": 26.625057 - }, - "endPoint": { - "x": 665.221132, - "y": 26.735802 - } - } - }, - { - "id": "cd3896e1-d0d3-5471-8d9e-2611eab1f6ae", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.221132, - "y": 26.735802 - }, - "endPoint": { - "x": 665.306641, - "y": 26.845448 - } - } - }, - { - "id": "52a12744-8e76-5937-adce-79b439e36234", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.306641, - "y": 26.845448 - }, - "endPoint": { - "x": 665.390175, - "y": 26.952677 - } - } - }, - { - "id": "e59fd4f8-5bfa-5bd9-83dd-7705805ff5b8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.390175, - "y": 26.952677 - }, - "endPoint": { - "x": 665.471009, - "y": 27.056166 - } - } - }, - { - "id": "2f5bad8e-98e5-5876-ad58-a991b79b421f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.471009, - "y": 27.056166 - }, - "endPoint": { - "x": 665.548614, - "y": 27.154952 - } - } - }, - { - "id": "dc05c0a2-33de-5997-8a76-e5c58bef9d7c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.548614, - "y": 27.154952 - }, - "endPoint": { - "x": 665.623258, - "y": 27.249497 - } - } - }, - { - "id": "2cc1be4b-a0fb-5924-bcc2-22a29910a8d3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.623258, - "y": 27.249497 - }, - "endPoint": { - "x": 665.695406, - "y": 27.340619 - } - } - }, - { - "id": "a5cd6304-a784-56aa-8aa1-ad5d51368a6b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.695406, - "y": 27.340619 - }, - "endPoint": { - "x": 665.765524, - "y": 27.429137 - } - } - }, - { - "id": "d5650904-6535-5284-8667-f561aa747366", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.765524, - "y": 27.429137 - }, - "endPoint": { - "x": 665.834076, - "y": 27.515869 - } - } - }, - { - "id": "bf3c2a42-9d4d-5dfb-9234-dbdf369c8aa4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.834076, - "y": 27.515869 - }, - "endPoint": { - "x": 665.90153, - "y": 27.601633 - } - } - }, - { - "id": "ae034dec-f9bc-5b08-bf2d-19cf0a2425f7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.90153, - "y": 27.601633 - }, - "endPoint": { - "x": 665.96835, - "y": 27.68725 - } - } - }, - { - "id": "db8d5a2a-b893-547b-b435-3fcf1ff6eb12", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.96835, - "y": 27.68725 - }, - "endPoint": { - "x": 666.035001, - "y": 27.773536 - } - } - }, - { - "id": "772ca6d6-cfd9-5758-9adf-b066c8235ea0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.035001, - "y": 27.773536 - }, - "endPoint": { - "x": 666.101767, - "y": 27.861049 - } - } - }, - { - "id": "83953fc7-0ad2-5899-a74e-91a659dac4ea", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.101767, - "y": 27.861049 - }, - "endPoint": { - "x": 666.168198, - "y": 27.949308 - } - } - }, - { - "id": "9d46f8a4-6c2c-5f9c-be28-cd27a25d2a14", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.168198, - "y": 27.949308 - }, - "endPoint": { - "x": 666.23366, - "y": 28.037566 - } - } - }, - { - "id": "2f3409c0-d99a-5c65-a864-affb025f2f22", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.23366, - "y": 28.037566 - }, - "endPoint": { - "x": 666.29752, - "y": 28.125081 - } - } - }, - { - "id": "896c2650-e346-54b7-b174-0afbdf8186f3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.29752, - "y": 28.125081 - }, - "endPoint": { - "x": 666.359145, - "y": 28.211108 - } - } - }, - { - "id": "651a418e-3adb-5459-a145-6d6743e08f1d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.359145, - "y": 28.211108 - }, - "endPoint": { - "x": 666.417903, - "y": 28.294903 - } - } - }, - { - "id": "8876ee41-2b24-570a-98ac-2d8369ff6713", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.417903, - "y": 28.294903 - }, - "endPoint": { - "x": 666.473159, - "y": 28.375722 - } - } - }, - { - "id": "e3f88f19-1f35-5478-bd95-40c43241a928", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.473159, - "y": 28.375722 - }, - "endPoint": { - "x": 666.524282, - "y": 28.452821 - } - } - }, - { - "id": "6152ef2d-9ea5-54f1-a42a-71a8af24baec", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.524282, - "y": 28.452821 - }, - "endPoint": { - "x": 666.57081, - "y": 28.525613 - } - } - }, - { - "id": "aea1437f-be34-5628-b03b-e1ccd5515e5a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.57081, - "y": 28.525613 - }, - "endPoint": { - "x": 666.612967, - "y": 28.594142 - } - } - }, - { - "id": "27117f8b-13ae-5f23-b1f2-eb7db9e43977", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.612967, - "y": 28.594142 - }, - "endPoint": { - "x": 666.651152, - "y": 28.658607 - } - } - }, - { - "id": "3b0aaa08-cce6-5d54-a814-d47805876456", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.651152, - "y": 28.658607 - }, - "endPoint": { - "x": 666.685761, - "y": 28.719208 - } - } - }, - { - "id": "414c47a9-588a-5de9-b1bd-ecd416cc51c9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.685761, - "y": 28.719208 - }, - "endPoint": { - "x": 666.717191, - "y": 28.776147 - } - } - }, - { - "id": "0aff8ed4-b4d7-59ec-98e6-47c6487b4b88", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.717191, - "y": 28.776147 - }, - "endPoint": { - "x": 666.745839, - "y": 28.829623 - } - } - }, - { - "id": "2ce96f24-5a68-5fca-831d-98cf5eac655b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.745839, - "y": 28.829623 - }, - "endPoint": { - "x": 666.772103, - "y": 28.879836 - } - } - }, - { - "id": "59237612-f51b-5e8d-a794-d1d2885812d7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.772103, - "y": 28.879836 - }, - "endPoint": { - "x": 666.796379, - "y": 28.926988 - } - } - }, - { - "id": "171432bb-bb35-5c07-8b41-ff2feb9c1052", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.796379, - "y": 28.926988 - }, - "endPoint": { - "x": 666.818987, - "y": 28.971288 - } - } - }, - { - "id": "419a7386-b0ff-55b0-9c1d-001c61e2ba8a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.818987, - "y": 28.971288 - }, - "endPoint": { - "x": 666.839936, - "y": 29.012998 - } - } - }, - { - "id": "c1d04b5a-a7c9-50a8-82e9-8e6b9cd59928", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.839936, - "y": 29.012998 - }, - "endPoint": { - "x": 666.85916, - "y": 29.052386 - } - } - }, - { - "id": "b3b09026-ad32-54c4-8e25-d6ae68275d41", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.85916, - "y": 29.052386 - }, - "endPoint": { - "x": 666.87659, - "y": 29.089723 - } - } - }, - { - "id": "7af100d9-6886-51cb-8e6e-8f394457b5e3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.87659, - "y": 29.089723 - }, - "endPoint": { - "x": 666.89216, - "y": 29.125279 - } - } - }, - { - "id": "174f5429-159b-55af-8d8d-82a2b4a5ff53", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.89216, - "y": 29.125279 - }, - "endPoint": { - "x": 666.9058, - "y": 29.159326 - } - } - }, - { - "id": "b3af2533-8c5a-530a-a705-c9223d1c5ba6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.9058, - "y": 29.159326 - }, - "endPoint": { - "x": 666.917445, - "y": 29.192133 - } - } - }, - { - "id": "a661079d-2d2a-5d69-ac3e-1a386bd49fee", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.917445, - "y": 29.192133 - }, - "endPoint": { - "x": 666.927025, - "y": 29.223971 - } - } - }, - { - "id": "b9157900-af97-51a7-87c1-73bc5b7afb58", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.927025, - "y": 29.223971 - }, - "endPoint": { - "x": 666.934507, - "y": 29.25506 - } - } - }, - { - "id": "e9a9e423-e200-5ebf-846f-b27a4ccb24ba", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.934507, - "y": 29.25506 - }, - "endPoint": { - "x": 666.939986, - "y": 29.285429 - } - } - }, - { - "id": "26d7923f-cf67-5be6-8334-f151ecf827d5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.939986, - "y": 29.285429 - }, - "endPoint": { - "x": 666.943592, - "y": 29.315055 - } - } - }, - { - "id": "9d23ec14-61c4-55e9-b7a8-37835e09b897", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.943592, - "y": 29.315055 - }, - "endPoint": { - "x": 666.945454, - "y": 29.343914 - } - } - }, - { - "id": "a01c6856-a9e7-5d66-959e-965c1397593e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.945454, - "y": 29.343914 - }, - "endPoint": { - "x": 666.9457, - "y": 29.371986 - } - } - }, - { - "id": "20c22741-dd2d-517e-a434-745f91b8372e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.9457, - "y": 29.371986 - }, - "endPoint": { - "x": 666.944461, - "y": 29.399248 - } - } - }, - { - "id": "9a30d5e9-0cd5-58b1-8699-ee8b73fd03f7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.944461, - "y": 29.399248 - }, - "endPoint": { - "x": 666.941864, - "y": 29.425677 - } - } - }, - { - "id": "86f7d712-2857-558c-803c-c9484bc3dad4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.941864, - "y": 29.425677 - }, - "endPoint": { - "x": 666.938039, - "y": 29.451252 - } - } - }, - { - "id": "f0e4875e-4a66-5fae-92c2-15d26cc7f299", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.938039, - "y": 29.451252 - }, - "endPoint": { - "x": 666.933088, - "y": 29.475901 - } - } - }, - { - "id": "d95cc111-f707-51af-af2a-1e17f9cda84a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.933088, - "y": 29.475901 - }, - "endPoint": { - "x": 666.927002, - "y": 29.499352 - } - } - }, - { - "id": "642cadba-f5ad-5e06-9373-1f8c7e5b94e8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.927002, - "y": 29.499352 - }, - "endPoint": { - "x": 666.919745, - "y": 29.521288 - } - } - }, - { - "id": "c1cdb2c6-35f8-554e-bdb4-bac37f81fcfc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.919745, - "y": 29.521288 - }, - "endPoint": { - "x": 666.911281, - "y": 29.541387 - } - } - }, - { - "id": "6bca7655-ec04-5665-a6cc-4aa530b7ab0a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.911281, - "y": 29.541387 - }, - "endPoint": { - "x": 666.901575, - "y": 29.559329 - } - } - }, - { - "id": "7401d957-16d2-5480-8249-b58ba4ef2611", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.901575, - "y": 29.559329 - }, - "endPoint": { - "x": 666.890589, - "y": 29.574796 - } - } - }, - { - "id": "bc2f9933-1bb8-58b8-a40d-58ed2f8bd94d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.890589, - "y": 29.574796 - }, - "endPoint": { - "x": 666.87829, - "y": 29.587466 - } - } - }, - { - "id": "1fd6bb3c-9349-5e5a-85bc-4653f1c30315", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.87829, - "y": 29.587466 - }, - "endPoint": { - "x": 666.864639, - "y": 29.597021 - } - } - }, - { - "id": "5b6c4689-593f-557e-928f-0361504468ca", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.864639, - "y": 29.597021 - }, - "endPoint": { - "x": 666.849664, - "y": 29.603235 - } - } - }, - { - "id": "ba214820-2cc3-5d2e-83e8-80e5d621a409", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.849664, - "y": 29.603235 - }, - "endPoint": { - "x": 666.833641, - "y": 29.606259 - } - } - }, - { - "id": "26923013-4de9-5daa-8500-641714874f1c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.833641, - "y": 29.606259 - }, - "endPoint": { - "x": 666.816906, - "y": 29.606342 - } - } - }, - { - "id": "a9f66738-32e4-58cd-a368-e302117782e5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.816906, - "y": 29.606342 - }, - "endPoint": { - "x": 666.799798, - "y": 29.60373 - } - } - }, - { - "id": "e02150f7-28f5-5a09-aa8f-a401c847cb3c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.799798, - "y": 29.60373 - }, - "endPoint": { - "x": 666.782654, - "y": 29.598669 - } - } - }, - { - "id": "21b68508-e299-5065-b475-8a1687fde827", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.782654, - "y": 29.598669 - }, - "endPoint": { - "x": 666.765812, - "y": 29.591407 - } - } - }, - { - "id": "81b41db5-4f37-587c-9d4d-b50fb45017d0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.765812, - "y": 29.591407 - }, - "endPoint": { - "x": 666.74961, - "y": 29.58219 - } - } - }, - { - "id": "c3adecf4-3dce-58a8-9fb0-13790aef95c7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.74961, - "y": 29.58219 - }, - "endPoint": { - "x": 666.734386, - "y": 29.571265 - } - } - }, - { - "id": "13b25d63-a9fa-5bf8-8c6b-934dac6c8b4e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.734386, - "y": 29.571265 - }, - "endPoint": { - "x": 666.720377, - "y": 29.558887 - } - } - }, - { - "id": "7e8d49ad-f210-5869-8d5a-c41f6f8cd2ae", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.720377, - "y": 29.558887 - }, - "endPoint": { - "x": 666.707417, - "y": 29.54534 - } - } - }, - { - "id": "08122ee2-2c15-5d34-ab58-678675661bc4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.707417, - "y": 29.54534 - }, - "endPoint": { - "x": 666.695243, - "y": 29.530917 - } - } - }, - { - "id": "3a2cb72c-c9c0-53ee-932e-87d525003afd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.695243, - "y": 29.530917 - }, - "endPoint": { - "x": 666.683588, - "y": 29.51591 - } - } - }, - { - "id": "84f4d454-496b-529b-8961-4cc2c677ce0b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.683588, - "y": 29.51591 - }, - "endPoint": { - "x": 666.672187, - "y": 29.500611 - } - } - }, - { - "id": "ed64186b-0530-5d23-b8ce-75439bab560d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.672187, - "y": 29.500611 - }, - "endPoint": { - "x": 666.660776, - "y": 29.485313 - } - } - }, - { - "id": "80f3c886-1938-59b0-8ee0-e871aa26b161", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.660776, - "y": 29.485313 - }, - "endPoint": { - "x": 666.649089, - "y": 29.470308 - } - } - }, - { - "id": "5a0e2206-3b1f-554e-a83f-fb5a49263f30", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.649089, - "y": 29.470308 - }, - "endPoint": { - "x": 666.63686, - "y": 29.455889 - } - } - }, - { - "id": "3632a2ed-d78c-5ac7-8ea2-710a138423ab", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.63686, - "y": 29.455889 - }, - "endPoint": { - "x": 666.623891, - "y": 29.44229 - } - } - }, - { - "id": "5c1cd0bb-9128-55dd-a8b5-29fbab6dfaee", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.623891, - "y": 29.44229 - }, - "endPoint": { - "x": 666.610244, - "y": 29.429514 - } - } - }, - { - "id": "24e79bbb-faa9-5128-9525-7f241a6bebb3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.610244, - "y": 29.429514 - }, - "endPoint": { - "x": 666.596048, - "y": 29.417505 - } - } - }, - { - "id": "af37cbce-7a71-5a4a-a021-4991930c399a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.596048, - "y": 29.417505 - }, - "endPoint": { - "x": 666.58143, - "y": 29.40621 - } - } - }, - { - "id": "e16bc8f0-d9a4-56a0-8eae-237863864c94", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.58143, - "y": 29.40621 - }, - "endPoint": { - "x": 666.56652, - "y": 29.395572 - } - } - }, - { - "id": "bc3aed27-25b9-5b83-9023-e83e2df18728", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.56652, - "y": 29.395572 - }, - "endPoint": { - "x": 666.551446, - "y": 29.385537 - } - } - }, - { - "id": "2ae98270-caf1-5138-8093-b7ab2188bc77", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.551446, - "y": 29.385537 - }, - "endPoint": { - "x": 666.536336, - "y": 29.37605 - } - } - }, - { - "id": "9a6ae42f-178e-5a06-a604-fcd0e30568f8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.536336, - "y": 29.37605 - }, - "endPoint": { - "x": 666.521319, - "y": 29.367056 - } - } - }, - { - "id": "ca0a467c-520b-5baf-b9ce-4015010af191", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.521319, - "y": 29.367056 - }, - "endPoint": { - "x": 666.506537, - "y": 29.358561 - } - } - }, - { - "id": "86d2a748-0539-5426-a2c5-76aa1acf9e22", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.506537, - "y": 29.358561 - }, - "endPoint": { - "x": 666.492186, - "y": 29.350814 - } - } - }, - { - "id": "2e27658e-e48d-528a-8db9-4dc2b77d6713", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.492186, - "y": 29.350814 - }, - "endPoint": { - "x": 666.478477, - "y": 29.344126 - } - } - }, - { - "id": "f29dd1f5-8f6e-5d6b-bbc2-6ae344b4e018", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.478477, - "y": 29.344126 - }, - "endPoint": { - "x": 666.46562, - "y": 29.338809 - } - } - }, - { - "id": "24efd078-36f3-5a99-bf7d-58af098a1ef6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.46562, - "y": 29.338809 - }, - "endPoint": { - "x": 666.453825, - "y": 29.335171 - } - } - }, - { - "id": "1669d940-dbc0-5632-92b9-e0b5db724f48", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.453825, - "y": 29.335171 - }, - "endPoint": { - "x": 666.443302, - "y": 29.333525 - } - } - }, - { - "id": "bc7fa017-29ba-538a-87e9-c19e67f715db", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.443302, - "y": 29.333525 - }, - "endPoint": { - "x": 666.434261, - "y": 29.334181 - } - } - }, - { - "id": "46ad09bf-6ade-554f-b4a0-3c940b8d0844", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.434261, - "y": 29.334181 - }, - "endPoint": { - "x": 666.426914, - "y": 29.337449 - } - } - }, - { - "id": "90054d5b-c54c-5b86-87a5-545e16c50707", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.426914, - "y": 29.337449 - }, - "endPoint": { - "x": 666.421425, - "y": 29.343516 - } - } - }, - { - "id": "55ee0921-7ee9-50e9-9adb-4fb9dd2be4bc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.421425, - "y": 29.343516 - }, - "endPoint": { - "x": 666.417789, - "y": 29.352078 - } - } - }, - { - "id": "a78909c7-eed5-5dbf-b724-1b00e1baf9e1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.417789, - "y": 29.352078 - }, - "endPoint": { - "x": 666.415954, - "y": 29.362704 - } - } - }, - { - "id": "56a4a9fa-c4de-5e39-9b60-98b2a209d5d6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.415954, - "y": 29.362704 - }, - "endPoint": { - "x": 666.41587, - "y": 29.374964 - } - } - }, - { - "id": "92d1eec6-8be8-519c-af8a-e2af3a13147c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.41587, - "y": 29.374964 - }, - "endPoint": { - "x": 666.417486, - "y": 29.388431 - } - } - }, - { - "id": "f1cf798e-331a-5211-a40c-2af67992a520", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.417486, - "y": 29.388431 - }, - "endPoint": { - "x": 666.420752, - "y": 29.402674 - } - } - }, - { - "id": "72fb20a6-d79e-50fd-a99c-8e0beb3b0bfb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.420752, - "y": 29.402674 - }, - "endPoint": { - "x": 666.425616, - "y": 29.417264 - } - } - }, - { - "id": "f871a918-3f2d-52c6-8b48-7b27d83191d4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.425616, - "y": 29.417264 - }, - "endPoint": { - "x": 666.432027, - "y": 29.431772 - } - } - }, - { - "id": "1cb5d747-edfb-58d7-a608-0debeee4ecc8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.432027, - "y": 29.431772 - }, - "endPoint": { - "x": 666.439762, - "y": 29.445959 - } - } - }, - { - "id": "211353c2-938a-570b-9336-269c3f109f78", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.439762, - "y": 29.445959 - }, - "endPoint": { - "x": 666.447896, - "y": 29.460344 - } - } - }, - { - "id": "99c6458d-7f35-59d1-b085-2744611542f8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.447896, - "y": 29.460344 - }, - "endPoint": { - "x": 666.45533, - "y": 29.475639 - } - } - }, - { - "id": "de3deaa6-b7c4-5b98-8677-d371cfde3673", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.45533, - "y": 29.475639 - }, - "endPoint": { - "x": 666.460968, - "y": 29.492553 - } - } - }, - { - "id": "fe707613-09f7-5201-895b-e84ef3d8814e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.460968, - "y": 29.492553 - }, - "endPoint": { - "x": 666.463712, - "y": 29.511798 - } - } - }, - { - "id": "60501fd9-4e6b-514b-b6d8-063674707b42", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.463712, - "y": 29.511798 - }, - "endPoint": { - "x": 666.462462, - "y": 29.534084 - } - } - }, - { - "id": "a722d263-3ade-5558-a5ca-27fc991f9b18", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.462462, - "y": 29.534084 - }, - "endPoint": { - "x": 666.456121, - "y": 29.560122 - } - } - }, - { - "id": "3f873fc3-97c9-5f51-8a90-8f686629b825", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.456121, - "y": 29.560122 - }, - "endPoint": { - "x": 666.443592, - "y": 29.590621 - } - } - } - ] - }, - { - "id": "fac550cb-4f79-501b-b564-c20b96e82741", - "type": "PolyLine", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": null, - "children": [ - { - "id": "6901dd7a-55d9-53b6-b19d-6adbcd4cd3fa", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.139515, - "y": 30.979506 - }, - "endPoint": { - "x": 666.936489, - "y": 30.687457 - } - } - }, - { - "id": "8c548b7d-8f4b-55f3-8d59-d542d6fc3c4b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.936489, - "y": 30.687457 - }, - "endPoint": { - "x": 666.730269, - "y": 30.399721 - } - } - }, - { - "id": "227792cf-d972-5e88-9e5e-8dae10e85f2b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.730269, - "y": 30.399721 - }, - "endPoint": { - "x": 666.523489, - "y": 30.118275 - } - } - }, - { - "id": "26cdafa2-a258-59ac-aef7-d0ae908e0297", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.523489, - "y": 30.118275 - }, - "endPoint": { - "x": 666.31878, - "y": 29.845096 - } - } - }, - { - "id": "37aa3969-b44e-5c3f-9d65-5bba37b2cce1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.31878, - "y": 29.845096 - }, - "endPoint": { - "x": 666.118778, - "y": 29.582162 - } - } - }, - { - "id": "ddf27f4d-4ea7-5dbc-9b9e-4351379630af", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.118778, - "y": 29.582162 - }, - "endPoint": { - "x": 665.926114, - "y": 29.331447 - } - } - }, - { - "id": "b3f9c25f-a918-549f-8d72-936018f3f0ae", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.926114, - "y": 29.331447 - }, - "endPoint": { - "x": 665.743422, - "y": 29.094931 - } - } - }, - { - "id": "f446aaa2-3a1c-5548-abfa-3d6da5082b6d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.743422, - "y": 29.094931 - }, - "endPoint": { - "x": 665.573334, - "y": 28.874588 - } - } - }, - { - "id": "b20b28ac-619e-5bc1-a2e0-815c840081aa", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.573334, - "y": 28.874588 - }, - "endPoint": { - "x": 665.41777, - "y": 28.671685 - } - } - }, - { - "id": "8f865f55-78b4-5282-9195-8bf205111295", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.41777, - "y": 28.671685 - }, - "endPoint": { - "x": 665.275796, - "y": 28.484643 - } - } - }, - { - "id": "396b6751-33d1-503f-9c9a-bc2a1ae60afa", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.275796, - "y": 28.484643 - }, - "endPoint": { - "x": 665.145764, - "y": 28.311173 - } - } - }, - { - "id": "a04bdbeb-fa44-57ce-b1e8-6ab6cdb8cd86", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.145764, - "y": 28.311173 - }, - "endPoint": { - "x": 665.026026, - "y": 28.148983 - } - } - }, - { - "id": "a5fd9fbc-0270-584e-9951-1f725683bfd6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.026026, - "y": 28.148983 - }, - "endPoint": { - "x": 664.914935, - "y": 27.995785 - } - } - }, - { - "id": "c63388be-6763-5040-b25a-1e38f2df8269", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.914935, - "y": 27.995785 - }, - "endPoint": { - "x": 664.810842, - "y": 27.849288 - } - } - }, - { - "id": "715f6bf9-3c20-5d46-aea6-987af64282f3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.810842, - "y": 27.849288 - }, - "endPoint": { - "x": 664.712101, - "y": 27.707202 - } - } - }, - { - "id": "d3caea19-7b4a-5c4a-98b0-fc89cd92bd86", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.712101, - "y": 27.707202 - }, - "endPoint": { - "x": 664.617062, - "y": 27.567238 - } - } - }, - { - "id": "b3e985fb-4bb0-5bc1-a8a4-d1c72178374d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.617062, - "y": 27.567238 - }, - "endPoint": { - "x": 664.524355, - "y": 27.427513 - } - } - }, - { - "id": "c9e69aff-d4e9-5c03-a9b9-bb4334ce9117", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.524355, - "y": 27.427513 - }, - "endPoint": { - "x": 664.433713, - "y": 27.287774 - } - } - }, - { - "id": "beed50f7-1d2f-5439-bcd5-fed0345aa3d1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.433713, - "y": 27.287774 - }, - "endPoint": { - "x": 664.345148, - "y": 27.148176 - } - } - }, - { - "id": "5e342c07-f8d2-5265-a8b4-cb486ae76332", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.345148, - "y": 27.148176 - }, - "endPoint": { - "x": 664.25867, - "y": 27.008874 - } - } - }, - { - "id": "8df1a66e-bab9-5297-9a02-68dad0772ca2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.25867, - "y": 27.008874 - }, - "endPoint": { - "x": 664.174288, - "y": 26.870021 - } - } - }, - { - "id": "d44caa07-d253-50bb-9f4a-aa22716603b9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.174288, - "y": 26.870021 - }, - "endPoint": { - "x": 664.092014, - "y": 26.731773 - } - } - }, - { - "id": "5c6fefb7-597a-5f0d-9695-dd606023ceb1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.092014, - "y": 26.731773 - }, - "endPoint": { - "x": 664.011858, - "y": 26.594284 - } - } - }, - { - "id": "370b81fa-49d0-5d1d-a350-bbb7b8305a3d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.011858, - "y": 26.594284 - }, - "endPoint": { - "x": 663.933831, - "y": 26.457709 - } - } - }, - { - "id": "054ae3e2-ae9f-587b-8234-9659687e0f00", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.933831, - "y": 26.457709 - }, - "endPoint": { - "x": 663.858096, - "y": 26.32237 - } - } - }, - { - "id": "87166307-955c-5c6c-a124-70efbeee7549", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.858096, - "y": 26.32237 - }, - "endPoint": { - "x": 663.785435, - "y": 26.189263 - } - } - }, - { - "id": "2e68c085-3d8a-51bc-8ea9-27ca15ee5ae4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.785435, - "y": 26.189263 - }, - "endPoint": { - "x": 663.716784, - "y": 26.059551 - } - } - }, - { - "id": "a68159cc-dcb1-5f1a-a4bc-a7a0d2d03c95", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.716784, - "y": 26.059551 - }, - "endPoint": { - "x": 663.653077, - "y": 25.934396 - } - } - }, - { - "id": "f4f05458-6957-5743-8aad-de63e3330ecd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.653077, - "y": 25.934396 - }, - "endPoint": { - "x": 663.595249, - "y": 25.814962 - } - } - }, - { - "id": "2bbb7ee0-3fc5-5e94-84ee-c1c734701e41", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.595249, - "y": 25.814962 - }, - "endPoint": { - "x": 663.544236, - "y": 25.702412 - } - } - }, - { - "id": "08f880f9-a2b2-5703-8a78-9f3939221be6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.544236, - "y": 25.702412 - }, - "endPoint": { - "x": 663.500972, - "y": 25.597909 - } - } - }, - { - "id": "be0f6c02-0af6-5b42-8736-af9445e08021", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.500972, - "y": 25.597909 - }, - "endPoint": { - "x": 663.466394, - "y": 25.502616 - } - } - }, - { - "id": "74e8d504-b933-57ae-872d-b2dedde32dbd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.466394, - "y": 25.502616 - }, - "endPoint": { - "x": 663.441114, - "y": 25.417363 - } - } - }, - { - "id": "38405ecc-330e-5303-a0c7-01bc81f09a45", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.441114, - "y": 25.417363 - }, - "endPoint": { - "x": 663.424461, - "y": 25.341644 - } - } - }, - { - "id": "af288d6c-28df-5820-9f23-4b737292a89d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.424461, - "y": 25.341644 - }, - "endPoint": { - "x": 663.415444, - "y": 25.27462 - } - } - }, - { - "id": "00063eb6-6392-55ed-91c5-29061ca43d45", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.415444, - "y": 25.27462 - }, - "endPoint": { - "x": 663.413068, - "y": 25.215452 - } - } - }, - { - "id": "d85ab50f-0bf4-54d9-8172-cff211875022", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.413068, - "y": 25.215452 - }, - "endPoint": { - "x": 663.416342, - "y": 25.1633 - } - } - }, - { - "id": "83977f55-6237-5481-9de2-242eae10d93b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.416342, - "y": 25.1633 - }, - "endPoint": { - "x": 663.424273, - "y": 25.117326 - } - } - }, - { - "id": "a95bdaf2-2253-5bef-9fa6-ccf16f622e0f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.424273, - "y": 25.117326 - }, - "endPoint": { - "x": 663.435868, - "y": 25.07669 - } - } - }, - { - "id": "7e3adc24-83b1-5cc8-b568-06c188447546", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.435868, - "y": 25.07669 - }, - "endPoint": { - "x": 663.450135, - "y": 25.040553 - } - } - }, - { - "id": "4d432779-4c27-5677-894c-c1a352d5b1ec", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.450135, - "y": 25.040553 - }, - "endPoint": { - "x": 663.466221, - "y": 25.008187 - } - } - }, - { - "id": "5f3c36e0-9f64-5da4-9c8a-177eaed6090f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.466221, - "y": 25.008187 - }, - "endPoint": { - "x": 663.483834, - "y": 24.979309 - } - } - }, - { - "id": "cabb1d5c-d4d3-5ac8-92fa-f2404a663fc4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.483834, - "y": 24.979309 - }, - "endPoint": { - "x": 663.50282, - "y": 24.953749 - } - } - }, - { - "id": "6b456677-4e32-5f5b-9b69-6f0e09cacf59", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.50282, - "y": 24.953749 - }, - "endPoint": { - "x": 663.523027, - "y": 24.931334 - } - } - }, - { - "id": "0815f43f-2f6d-5580-86bb-7fe15d89e26a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.523027, - "y": 24.931334 - }, - "endPoint": { - "x": 663.544302, - "y": 24.911893 - } - } - }, - { - "id": "2daa182c-8470-52f6-a06c-6e9ef33f2371", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.544302, - "y": 24.911893 - }, - "endPoint": { - "x": 663.566493, - "y": 24.895255 - } - } - }, - { - "id": "43a43ae1-e34a-56dc-83d6-c675c3af5054", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.566493, - "y": 24.895255 - }, - "endPoint": { - "x": 663.589447, - "y": 24.881248 - } - } - }, - { - "id": "18b8f7cc-a2cf-5f17-9aab-a77a0193bc68", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.589447, - "y": 24.881248 - }, - "endPoint": { - "x": 663.61301, - "y": 24.869701 - } - } - }, - { - "id": "528e24d6-5751-588b-82a2-63f2cefcba13", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.61301, - "y": 24.869701 - }, - "endPoint": { - "x": 663.637111, - "y": 24.860538 - } - } - }, - { - "id": "d09e306c-2419-56a3-975c-410e49a561ae", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.637111, - "y": 24.860538 - }, - "endPoint": { - "x": 663.661993, - "y": 24.854063 - } - } - }, - { - "id": "abde1d5d-3014-5263-94cb-44b2e12a3f03", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.661993, - "y": 24.854063 - }, - "endPoint": { - "x": 663.687983, - "y": 24.850677 - } - } - }, - { - "id": "65cb18dd-3199-5797-9040-edf5ab87c978", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.687983, - "y": 24.850677 - }, - "endPoint": { - "x": 663.715404, - "y": 24.850781 - } - } - }, - { - "id": "c6f09843-58f9-59f9-a85b-070a71705bd1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.715404, - "y": 24.850781 - }, - "endPoint": { - "x": 663.744582, - "y": 24.854775 - } - } - }, - { - "id": "0cb97474-c5ad-56a9-aa01-4b08602b98ac", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.744582, - "y": 24.854775 - }, - "endPoint": { - "x": 663.775841, - "y": 24.863059 - } - } - }, - { - "id": "8aa87cd6-22fb-5977-a25d-3da9021f68bd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.775841, - "y": 24.863059 - }, - "endPoint": { - "x": 663.809506, - "y": 24.876033 - } - } - }, - { - "id": "73cb8b6f-8e8a-57e4-a4c7-db99996cd482", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.809506, - "y": 24.876033 - }, - "endPoint": { - "x": 663.845903, - "y": 24.894099 - } - } - }, - { - "id": "b41ba5fe-5b00-59c0-8360-28947a8f0a12", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.845903, - "y": 24.894099 - }, - "endPoint": { - "x": 663.885259, - "y": 24.917507 - } - } - }, - { - "id": "db4f24b6-7871-5132-92ca-492a6fa68ba3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.885259, - "y": 24.917507 - }, - "endPoint": { - "x": 663.927423, - "y": 24.94591 - } - } - }, - { - "id": "d0090bc3-c9d6-5101-8505-ad1e5a140b33", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.927423, - "y": 24.94591 - }, - "endPoint": { - "x": 663.972146, - "y": 24.978813 - } - } - }, - { - "id": "414f553b-8587-53b8-a6d9-c53bd130a744", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 663.972146, - "y": 24.978813 - }, - "endPoint": { - "x": 664.019179, - "y": 25.01572 - } - } - }, - { - "id": "036c8f42-3099-5984-98c4-004245d46dce", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.019179, - "y": 25.01572 - }, - "endPoint": { - "x": 664.068273, - "y": 25.056135 - } - } - }, - { - "id": "4ebfbfdd-6906-5201-9643-a1605ed90b12", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.068273, - "y": 25.056135 - }, - "endPoint": { - "x": 664.11918, - "y": 25.099563 - } - } - }, - { - "id": "f9d3bc06-7249-562e-bf6e-5bf13f3c5cf5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.11918, - "y": 25.099563 - }, - "endPoint": { - "x": 664.171651, - "y": 25.145508 - } - } - }, - { - "id": "8c4c5271-600d-51b0-8467-bddc27972cc4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.171651, - "y": 25.145508 - }, - "endPoint": { - "x": 664.225438, - "y": 25.193474 - } - } - }, - { - "id": "e234d0a6-4841-5c7b-9aef-816d4543d8dc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.225438, - "y": 25.193474 - }, - "endPoint": { - "x": 664.280349, - "y": 25.243107 - } - } - }, - { - "id": "054eeff6-8f90-52fc-b30d-6ec83088cdeb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.280349, - "y": 25.243107 - }, - "endPoint": { - "x": 664.336422, - "y": 25.294629 - } - } - }, - { - "id": "68ee90c7-de56-5733-85ff-b6595e77630e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.336422, - "y": 25.294629 - }, - "endPoint": { - "x": 664.393754, - "y": 25.3484 - } - } - }, - { - "id": "f114fcdf-2844-594f-824e-d6f3af17033a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.393754, - "y": 25.3484 - }, - "endPoint": { - "x": 664.452439, - "y": 25.404784 - } - } - }, - { - "id": "bd4767c2-637b-5ae5-89df-369c195106f9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.452439, - "y": 25.404784 - }, - "endPoint": { - "x": 664.512574, - "y": 25.464142 - } - } - }, - { - "id": "add740c4-3a03-5e9c-9522-fe367a351077", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.512574, - "y": 25.464142 - }, - "endPoint": { - "x": 664.574254, - "y": 25.526837 - } - } - }, - { - "id": "7b24f7fd-2911-5f06-abdc-7720519e1514", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.574254, - "y": 25.526837 - }, - "endPoint": { - "x": 664.637574, - "y": 25.593232 - } - } - }, - { - "id": "9ca10b9b-135b-5a81-b09c-7ca7f6d2281e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.637574, - "y": 25.593232 - }, - "endPoint": { - "x": 664.70263, - "y": 25.663688 - } - } - }, - { - "id": "aca3d544-1d26-5aae-856d-b8db92b82ce1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.70263, - "y": 25.663688 - }, - "endPoint": { - "x": 664.769581, - "y": 25.738576 - } - } - }, - { - "id": "6ef3fa64-1e63-5e72-82c0-dbc29b7957ca", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.769581, - "y": 25.738576 - }, - "endPoint": { - "x": 664.838842, - "y": 25.818293 - } - } - }, - { - "id": "ff6afe15-8c56-5fb8-a60f-21ffe7ca1d6a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.838842, - "y": 25.818293 - }, - "endPoint": { - "x": 664.910892, - "y": 25.903245 - } - } - }, - { - "id": "bfcf7f59-6c6e-5183-8af0-c140c8c27aaa", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.910892, - "y": 25.903245 - }, - "endPoint": { - "x": 664.986209, - "y": 25.993836 - } - } - }, - { - "id": "adbe7f2c-b0ae-5bdf-ba67-c60fb67e24f9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 664.986209, - "y": 25.993836 - }, - "endPoint": { - "x": 665.065271, - "y": 26.090474 - } - } - }, - { - "id": "b3da8390-f061-5986-a3a0-6a253d20d662", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.065271, - "y": 26.090474 - }, - "endPoint": { - "x": 665.148558, - "y": 26.193562 - } - } - }, - { - "id": "498708a0-edbe-5e37-ac05-ef0979ba1616", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.148558, - "y": 26.193562 - }, - "endPoint": { - "x": 665.236546, - "y": 26.303507 - } - } - }, - { - "id": "794d31ef-189b-53ba-9319-706a7416bc29", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.236546, - "y": 26.303507 - }, - "endPoint": { - "x": 665.329716, - "y": 26.420714 - } - } - }, - { - "id": "bedd2c94-44ac-5a26-bd19-fa8bbaea9cf5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.329716, - "y": 26.420714 - }, - "endPoint": { - "x": 665.428159, - "y": 26.545143 - } - } - }, - { - "id": "de63aaf5-134f-54eb-acc4-73f1d524f6b7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.428159, - "y": 26.545143 - }, - "endPoint": { - "x": 665.530428, - "y": 26.67498 - } - } - }, - { - "id": "8c7d7cc5-6958-5807-943e-4f37654e5201", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.530428, - "y": 26.67498 - }, - "endPoint": { - "x": 665.634686, - "y": 26.807963 - } - } - }, - { - "id": "43a801d5-d0a3-519f-8c78-04ebee94353f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.634686, - "y": 26.807963 - }, - "endPoint": { - "x": 665.7391, - "y": 26.941833 - } - } - }, - { - "id": "4f463524-bb91-5a56-aced-2611dbcbd5b5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.7391, - "y": 26.941833 - }, - "endPoint": { - "x": 665.841835, - "y": 27.074331 - } - } - }, - { - "id": "e53fe88e-05c4-51a8-82d3-84eb1d4983a3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.841835, - "y": 27.074331 - }, - "endPoint": { - "x": 665.941056, - "y": 27.203195 - } - } - }, - { - "id": "c30290d8-d8dd-5fbc-aa7c-3231513eaab1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 665.941056, - "y": 27.203195 - }, - "endPoint": { - "x": 666.034928, - "y": 27.326166 - } - } - }, - { - "id": "99ba4187-c3ad-5d3c-98c9-783f7cb82e80", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.034928, - "y": 27.326166 - }, - "endPoint": { - "x": 666.121618, - "y": 27.440983 - } - } - }, - { - "id": "8eeae1d8-ff64-5e6c-ba8e-04ba3e740f0b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.121618, - "y": 27.440983 - }, - "endPoint": { - "x": 666.19979, - "y": 27.545978 - } - } - }, - { - "id": "537a5828-842d-5f05-9a33-7f6e7658ff4c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.19979, - "y": 27.545978 - }, - "endPoint": { - "x": 666.270109, - "y": 27.641842 - } - } - }, - { - "id": "7d5b754d-3e3d-5349-afe4-4d5a4bac263c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.270109, - "y": 27.641842 - }, - "endPoint": { - "x": 666.333742, - "y": 27.729858 - } - } - }, - { - "id": "82e6099b-0cd5-5600-958e-067428592edb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.333742, - "y": 27.729858 - }, - "endPoint": { - "x": 666.391853, - "y": 27.81131 - } - } - }, - { - "id": "bddc3874-8d55-50e3-91d1-67dab6552707", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.391853, - "y": 27.81131 - }, - "endPoint": { - "x": 666.445607, - "y": 27.887478 - } - } - }, - { - "id": "af532b84-0939-56ef-b202-21512d2c0d47", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.445607, - "y": 27.887478 - }, - "endPoint": { - "x": 666.49617, - "y": 27.959647 - } - } - }, - { - "id": "ce968590-676a-565b-a5fa-cf79f9c599be", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.49617, - "y": 27.959647 - }, - "endPoint": { - "x": 666.544708, - "y": 28.029099 - } - } - }, - { - "id": "58af0585-080e-55d1-bfc9-2840cb8f11ae", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.544708, - "y": 28.029099 - }, - "endPoint": { - "x": 666.592385, - "y": 28.097117 - } - } - }, - { - "id": "352c5604-92ce-5859-879f-131e7150786a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.592385, - "y": 28.097117 - }, - "endPoint": { - "x": 666.640093, - "y": 28.164728 - } - } - }, - { - "id": "7c5679a3-e2ee-550b-9d26-a470cd737ff6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.640093, - "y": 28.164728 - }, - "endPoint": { - "x": 666.687629, - "y": 28.231939 - } - } - }, - { - "id": "fdbc3674-b21d-5c83-8e9c-4eae1169b35e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.687629, - "y": 28.231939 - }, - "endPoint": { - "x": 666.734516, - "y": 28.298502 - } - } - }, - { - "id": "3bd8daf2-8e7d-592e-966a-d4a34af0cfdb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.734516, - "y": 28.298502 - }, - "endPoint": { - "x": 666.780278, - "y": 28.36417 - } - } - }, - { - "id": "4baf3741-6b23-597f-ae95-80a9a79fac8f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.780278, - "y": 28.36417 - }, - "endPoint": { - "x": 666.824436, - "y": 28.428693 - } - } - }, - { - "id": "314cbf16-19e4-5893-9f7e-a7af930e52c0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.824436, - "y": 28.428693 - }, - "endPoint": { - "x": 666.866514, - "y": 28.491824 - } - } - }, - { - "id": "452f6b01-75e9-54e9-8d20-80f1be350886", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.866514, - "y": 28.491824 - }, - "endPoint": { - "x": 666.906036, - "y": 28.553314 - } - } - }, - { - "id": "3b5b460e-8512-576e-af39-32a481b46388", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.906036, - "y": 28.553314 - }, - "endPoint": { - "x": 666.942523, - "y": 28.612916 - } - } - }, - { - "id": "d32565cc-8467-5d89-824a-0c2be9dd8a7b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.942523, - "y": 28.612916 - }, - "endPoint": { - "x": 666.975634, - "y": 28.670435 - } - } - }, - { - "id": "395e81e6-0100-55c9-900e-7aded89afbc4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.975634, - "y": 28.670435 - }, - "endPoint": { - "x": 667.005558, - "y": 28.725894 - } - } - }, - { - "id": "a819f2f4-aefe-5c34-8efa-ebb021be8536", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.005558, - "y": 28.725894 - }, - "endPoint": { - "x": 667.03262, - "y": 28.779369 - } - } - }, - { - "id": "10d5d9d3-ae92-5b77-b7e9-ec053e401630", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.03262, - "y": 28.779369 - }, - "endPoint": { - "x": 667.057144, - "y": 28.830938 - } - } - }, - { - "id": "4303d53e-05c6-5e3d-a4b3-600022dfaa34", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.057144, - "y": 28.830938 - }, - "endPoint": { - "x": 667.079454, - "y": 28.880675 - } - } - }, - { - "id": "439e57ef-f1b3-5eb1-800d-83eb8bc9d452", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.079454, - "y": 28.880675 - }, - "endPoint": { - "x": 667.099874, - "y": 28.928659 - } - } - }, - { - "id": "167cd025-74e5-5839-b8b7-529d347d8594", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.099874, - "y": 28.928659 - }, - "endPoint": { - "x": 667.118729, - "y": 28.974966 - } - } - }, - { - "id": "fba0db8e-097f-5765-a3eb-0ee4ce57230d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.118729, - "y": 28.974966 - }, - "endPoint": { - "x": 667.136342, - "y": 29.019672 - } - } - }, - { - "id": "e374737f-aa1f-5c3a-a1ed-2264a09472ef", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.136342, - "y": 29.019672 - }, - "endPoint": { - "x": 667.152969, - "y": 29.062879 - } - } - }, - { - "id": "77ec0d93-b4b3-5e0e-8aaf-c02eaf6bb61f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.152969, - "y": 29.062879 - }, - "endPoint": { - "x": 667.168584, - "y": 29.10479 - } - } - }, - { - "id": "c3cb82e9-2984-5304-bc9d-5537c42027f4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.168584, - "y": 29.10479 - }, - "endPoint": { - "x": 667.18309, - "y": 29.145635 - } - } - }, - { - "id": "03d83f7a-e815-520a-8ec0-95b1a219aa69", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.18309, - "y": 29.145635 - }, - "endPoint": { - "x": 667.196395, - "y": 29.185641 - } - } - }, - { - "id": "77131f72-08b0-5677-ac39-c8d80a2427dc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.196395, - "y": 29.185641 - }, - "endPoint": { - "x": 667.208401, - "y": 29.225037 - } - } - }, - { - "id": "c4d707e2-4da8-599c-9cdb-51270a09c19e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.208401, - "y": 29.225037 - }, - "endPoint": { - "x": 667.219013, - "y": 29.264051 - } - } - }, - { - "id": "ef004b5f-3781-5484-92d4-c9b580c6eb75", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.219013, - "y": 29.264051 - }, - "endPoint": { - "x": 667.228137, - "y": 29.302913 - } - } - }, - { - "id": "638d804f-d44b-5d55-8289-7b269e7252ae", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.228137, - "y": 29.302913 - }, - "endPoint": { - "x": 667.235678, - "y": 29.34185 - } - } - }, - { - "id": "f4413152-6fad-57d9-a263-7c5a146cd32d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.235678, - "y": 29.34185 - }, - "endPoint": { - "x": 667.241558, - "y": 29.380996 - } - } - }, - { - "id": "a29b5f5a-6298-5e9c-89eb-1e1b0097ede1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.241558, - "y": 29.380996 - }, - "endPoint": { - "x": 667.245778, - "y": 29.420103 - } - } - }, - { - "id": "c40c0f2f-0a5d-5a0c-8ca8-4fd81233d093", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.245778, - "y": 29.420103 - }, - "endPoint": { - "x": 667.248357, - "y": 29.458829 - } - } - }, - { - "id": "2e6af207-eb0e-5793-ae4a-f3e48734228d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.248357, - "y": 29.458829 - }, - "endPoint": { - "x": 667.249314, - "y": 29.49683 - } - } - }, - { - "id": "204a7e6a-3f31-5a69-9240-b589fc97a7ed", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.249314, - "y": 29.49683 - }, - "endPoint": { - "x": 667.248668, - "y": 29.533762 - } - } - }, - { - "id": "1d42b764-7686-5283-8a6e-10223a14950c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.248668, - "y": 29.533762 - }, - "endPoint": { - "x": 667.246438, - "y": 29.569284 - } - } - }, - { - "id": "6b0149db-ff1a-5ca1-a1bf-3631334977a0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.246438, - "y": 29.569284 - }, - "endPoint": { - "x": 667.242644, - "y": 29.603052 - } - } - }, - { - "id": "3d847ca0-6d40-519f-a1b7-324b06bd9b5a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.242644, - "y": 29.603052 - }, - "endPoint": { - "x": 667.237303, - "y": 29.634724 - } - } - }, - { - "id": "2f5d9962-3f43-5f72-b7e6-caadf8b2afbe", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.237303, - "y": 29.634724 - }, - "endPoint": { - "x": 667.230459, - "y": 29.66406 - } - } - }, - { - "id": "76594461-2b4a-5cf2-be52-3cdbc30d8529", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.230459, - "y": 29.66406 - }, - "endPoint": { - "x": 667.22224, - "y": 29.691242 - } - } - }, - { - "id": "d45ef7b6-6545-5785-a9d3-11545b7c25d1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.22224, - "y": 29.691242 - }, - "endPoint": { - "x": 667.2128, - "y": 29.716555 - } - } - }, - { - "id": "7ccb48be-1e94-5d62-ad3a-28480e976598", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.2128, - "y": 29.716555 - }, - "endPoint": { - "x": 667.202292, - "y": 29.740286 - } - } - }, - { - "id": "472cabb0-05b3-5fa9-b836-144b58fee705", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.202292, - "y": 29.740286 - }, - "endPoint": { - "x": 667.190867, - "y": 29.76272 - } - } - }, - { - "id": "2ada5320-4581-5e49-8052-597b23f2ae44", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.190867, - "y": 29.76272 - }, - "endPoint": { - "x": 667.17868, - "y": 29.784143 - } - } - }, - { - "id": "89237495-5a51-5218-8432-6af6ac11a6a1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.17868, - "y": 29.784143 - }, - "endPoint": { - "x": 667.165882, - "y": 29.804841 - } - } - }, - { - "id": "6813c519-6dda-58c3-bcd4-7401d6ec7bd5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.165882, - "y": 29.804841 - }, - "endPoint": { - "x": 667.152627, - "y": 29.8251 - } - } - }, - { - "id": "a6ebaae4-9c93-5567-9ef5-24624713de0a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.152627, - "y": 29.8251 - }, - "endPoint": { - "x": 667.139042, - "y": 29.845148 - } - } - }, - { - "id": "6abb676f-409d-5255-b8bd-bdd94dfa63ad", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.139042, - "y": 29.845148 - }, - "endPoint": { - "x": 667.125151, - "y": 29.864985 - } - } - }, - { - "id": "a4c32068-efaa-564c-bba2-b872f17c4a87", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.125151, - "y": 29.864985 - }, - "endPoint": { - "x": 667.110956, - "y": 29.884554 - } - } - }, - { - "id": "075cf312-5097-5f65-a827-796ec404d43e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.110956, - "y": 29.884554 - }, - "endPoint": { - "x": 667.096456, - "y": 29.903799 - } - } - }, - { - "id": "86f77ff3-6111-562e-b1f9-093bf3c8a0a0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.096456, - "y": 29.903799 - }, - "endPoint": { - "x": 667.081651, - "y": 29.922662 - } - } - }, - { - "id": "6ce17edd-0808-5596-8a3c-e48b6d9decd7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.081651, - "y": 29.922662 - }, - "endPoint": { - "x": 667.066542, - "y": 29.941087 - } - } - }, - { - "id": "43759bfd-ad00-5233-9fa1-7a63fcc73665", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.066542, - "y": 29.941087 - }, - "endPoint": { - "x": 667.051127, - "y": 29.959016 - } - } - }, - { - "id": "d1d1f3d9-d4e8-50b3-938a-e0ed4236bfe9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.051127, - "y": 29.959016 - }, - "endPoint": { - "x": 667.035408, - "y": 29.976393 - } - } - }, - { - "id": "a8b85f90-ba97-5c0b-b4a0-f472b588ec08", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.035408, - "y": 29.976393 - }, - "endPoint": { - "x": 667.019447, - "y": 29.993204 - } - } - }, - { - "id": "42ad84c0-50a3-50e5-b576-ba1d994c46e1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.019447, - "y": 29.993204 - }, - "endPoint": { - "x": 667.003563, - "y": 30.009616 - } - } - }, - { - "id": "14d08cab-2df9-5cb5-9b04-087b7216382c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.003563, - "y": 30.009616 - }, - "endPoint": { - "x": 666.988136, - "y": 30.025838 - } - } - }, - { - "id": "8f1881d0-6547-5dde-a28e-8596432ae874", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.988136, - "y": 30.025838 - }, - "endPoint": { - "x": 666.973549, - "y": 30.04208 - } - } - }, - { - "id": "16c1e04b-ff74-524b-86a9-934118ba0bb2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.973549, - "y": 30.04208 - }, - "endPoint": { - "x": 666.960183, - "y": 30.058551 - } - } - }, - { - "id": "a93d6394-6816-5073-af6d-9a8f014dd669", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.960183, - "y": 30.058551 - }, - "endPoint": { - "x": 666.948418, - "y": 30.075462 - } - } - }, - { - "id": "7feea573-fb89-53ff-9172-6310f6b06550", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.948418, - "y": 30.075462 - }, - "endPoint": { - "x": 666.938637, - "y": 30.093021 - } - } - }, - { - "id": "de44a523-6843-5c32-91e7-5b9641a6400a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.938637, - "y": 30.093021 - }, - "endPoint": { - "x": 666.931221, - "y": 30.111439 - } - } - }, - { - "id": "ad65d7a2-c3b6-5378-ba5a-061fb0a2bb8e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.931221, - "y": 30.111439 - }, - "endPoint": { - "x": 666.926513, - "y": 30.130887 - } - } - }, - { - "id": "a2537193-7bfe-5a76-958a-0b93ffd26e1f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.926513, - "y": 30.130887 - }, - "endPoint": { - "x": 666.924704, - "y": 30.151385 - } - } - }, - { - "id": "4f9f7c88-83ed-5989-901e-1cbd2522342f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.924704, - "y": 30.151385 - }, - "endPoint": { - "x": 666.925947, - "y": 30.172912 - } - } - }, - { - "id": "7ffce18b-ee17-56d0-872a-cb2653c6eef1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.925947, - "y": 30.172912 - }, - "endPoint": { - "x": 666.930395, - "y": 30.19545 - } - } - }, - { - "id": "c8769013-ed7a-597e-9970-5ccbe8a210d8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.930395, - "y": 30.19545 - }, - "endPoint": { - "x": 666.938201, - "y": 30.21898 - } - } - }, - { - "id": "8a50b2cd-7aff-54fe-b890-23cf67805fd5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.938201, - "y": 30.21898 - }, - "endPoint": { - "x": 666.949519, - "y": 30.243482 - } - } - }, - { - "id": "31699b62-335f-54f8-b953-8aede650fd22", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.949519, - "y": 30.243482 - }, - "endPoint": { - "x": 666.964502, - "y": 30.268937 - } - } - }, - { - "id": "573a72d8-c2cd-573a-9993-f1391a7bff6a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.964502, - "y": 30.268937 - }, - "endPoint": { - "x": 666.983301, - "y": 30.295326 - } - } - }, - { - "id": "c06c623f-e4ad-55b4-8f53-4360f21ee4e3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 666.983301, - "y": 30.295326 - }, - "endPoint": { - "x": 667.005934, - "y": 30.322579 - } - } - }, - { - "id": "7fcd4090-2853-535a-9180-b9e08fe85983", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.005934, - "y": 30.322579 - }, - "endPoint": { - "x": 667.03187, - "y": 30.350422 - } - } - }, - { - "id": "372908c4-d3bd-5860-9969-db306306ea40", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.03187, - "y": 30.350422 - }, - "endPoint": { - "x": 667.06044, - "y": 30.378532 - } - } - }, - { - "id": "4ab6d50a-efb7-5a32-b4b9-18d7435da713", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.06044, - "y": 30.378532 - }, - "endPoint": { - "x": 667.090975, - "y": 30.406585 - } - } - }, - { - "id": "368d6865-7487-586a-983f-111a541f06d1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.090975, - "y": 30.406585 - }, - "endPoint": { - "x": 667.122809, - "y": 30.434256 - } - } - }, - { - "id": "3c86ec00-e1b3-5026-89a2-e50a4bf17417", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.122809, - "y": 30.434256 - }, - "endPoint": { - "x": 667.155273, - "y": 30.461221 - } - } - }, - { - "id": "d7af1f9e-d77e-5a25-bb81-e18f2bc796bd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.155273, - "y": 30.461221 - }, - "endPoint": { - "x": 667.187699, - "y": 30.487157 - } - } - }, - { - "id": "83931ee5-6c63-5562-a6a5-17e7604759c9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.187699, - "y": 30.487157 - }, - "endPoint": { - "x": 667.219419, - "y": 30.511739 - } - } - }, - { - "id": "807cc488-c09e-5327-9867-65b134e2a694", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.219419, - "y": 30.511739 - }, - "endPoint": { - "x": 667.249835, - "y": 30.534748 - } - } - }, - { - "id": "0e777eab-8888-5ce4-be06-1b7e1c802ffc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.249835, - "y": 30.534748 - }, - "endPoint": { - "x": 667.278629, - "y": 30.556384 - } - } - }, - { - "id": "137fcbde-b85b-5ada-87b4-8a7fcf94a8d3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.278629, - "y": 30.556384 - }, - "endPoint": { - "x": 667.305556, - "y": 30.576952 - } - } - }, - { - "id": "b16e606f-6494-5013-ad3e-52a54e55d0f0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.305556, - "y": 30.576952 - }, - "endPoint": { - "x": 667.330368, - "y": 30.596758 - } - } - }, - { - "id": "ca67ed20-c0bf-56e5-a555-d022238b6843", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.330368, - "y": 30.596758 - }, - "endPoint": { - "x": 667.352819, - "y": 30.616105 - } - } - }, - { - "id": "db683b85-b98e-5892-8e0e-56faa818bbb5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.352819, - "y": 30.616105 - }, - "endPoint": { - "x": 667.372661, - "y": 30.6353 - } - } - }, - { - "id": "b43218cd-ea24-5d78-b961-7ebc51c57a08", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.372661, - "y": 30.6353 - }, - "endPoint": { - "x": 667.389649, - "y": 30.654647 - } - } - }, - { - "id": "91f3dc47-2103-5154-9ad8-486e6413f678", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.389649, - "y": 30.654647 - }, - "endPoint": { - "x": 667.403535, - "y": 30.674451 - } - } - }, - { - "id": "46aea6c2-a331-5a7e-8a94-09affcbaa543", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.403535, - "y": 30.674451 - }, - "endPoint": { - "x": 667.414107, - "y": 30.694941 - } - } - }, - { - "id": "3669a567-a646-597f-9f42-bf5b86aafacf", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.414107, - "y": 30.694941 - }, - "endPoint": { - "x": 667.421289, - "y": 30.716045 - } - } - }, - { - "id": "1c466213-cb47-53fc-9415-e0585f8ab2aa", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.421289, - "y": 30.716045 - }, - "endPoint": { - "x": 667.425039, - "y": 30.737614 - } - } - }, - { - "id": "c1977028-5fbd-5a05-8b8e-507a6b6fa31d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.425039, - "y": 30.737614 - }, - "endPoint": { - "x": 667.425316, - "y": 30.7595 - } - } - }, - { - "id": "2262a312-1e60-5fb2-b345-f9a18a4d4693", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.425316, - "y": 30.7595 - }, - "endPoint": { - "x": 667.422077, - "y": 30.781555 - } - } - }, - { - "id": "e09d813d-e251-5447-b4c3-aedd25e0e9b4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.422077, - "y": 30.781555 - }, - "endPoint": { - "x": 667.415282, - "y": 30.803629 - } - } - }, - { - "id": "eb204531-c123-5212-b285-f28390798e0b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.415282, - "y": 30.803629 - }, - "endPoint": { - "x": 667.404889, - "y": 30.825575 - } - } - }, - { - "id": "07f9ae5c-4a5b-5bc6-aa05-be921cf39ec6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.404889, - "y": 30.825575 - }, - "endPoint": { - "x": 667.390856, - "y": 30.847244 - } - } - }, - { - "id": "db2a7bf0-bcc5-5014-bda7-a2c64f595978", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.390856, - "y": 30.847244 - }, - "endPoint": { - "x": 667.373135, - "y": 30.868462 - } - } - }, - { - "id": "feff5829-5a08-540d-8cf2-a61ddb080352", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.373135, - "y": 30.868462 - }, - "endPoint": { - "x": 667.351656, - "y": 30.888951 - } - } - }, - { - "id": "bc10c768-098c-56f6-830e-96d907494d95", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.351656, - "y": 30.888951 - }, - "endPoint": { - "x": 667.32634, - "y": 30.908405 - } - } - }, - { - "id": "b551afac-27dd-501d-8afb-6fdd2a71f344", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.32634, - "y": 30.908405 - }, - "endPoint": { - "x": 667.297111, - "y": 30.92652 - } - } - }, - { - "id": "d2b68aae-38ae-58be-bf4e-b312a84fc3c2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.297111, - "y": 30.92652 - }, - "endPoint": { - "x": 667.263892, - "y": 30.942992 - } - } - }, - { - "id": "69ef6baf-c3e4-5d30-bff6-c3af243e8f11", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.263892, - "y": 30.942992 - }, - "endPoint": { - "x": 667.226604, - "y": 30.957517 - } - } - }, - { - "id": "1e4f9140-3f10-5d7f-9c50-288566d74a49", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.226604, - "y": 30.957517 - }, - "endPoint": { - "x": 667.185171, - "y": 30.96979 - } - } - }, - { - "id": "d719c2da-5ef7-5da8-8a7d-02e5693df9c9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.185171, - "y": 30.96979 - }, - "endPoint": { - "x": 667.139515, - "y": 30.979506 - } - } - } - ] - }, - { - "id": "b09f796f-7af1-5d18-93bb-6c62f01384d6", - "type": "PolyLine", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": null, - "children": [ - { - "id": "d3ddde4d-668c-5005-9ee3-e7029794f001", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.292268, - "y": 32.629232 - }, - "endPoint": { - "x": 669.149236, - "y": 32.203129 - } - } - }, - { - "id": "d7d041e2-41e2-5bed-84c1-0839f702a167", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.149236, - "y": 32.203129 - }, - "endPoint": { - "x": 669.013632, - "y": 31.793604 - } - } - }, - { - "id": "99de8c6d-7e76-596e-b3b5-382db55fd82d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.013632, - "y": 31.793604 - }, - "endPoint": { - "x": 668.885117, - "y": 31.400305 - } - } - }, - { - "id": "e7dcbbfa-eeeb-5462-bcf4-f48708358ad4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.885117, - "y": 31.400305 - }, - "endPoint": { - "x": 668.763355, - "y": 31.022879 - } - } - }, - { - "id": "c09b2396-5592-56ce-b141-065239b592d7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.763355, - "y": 31.022879 - }, - "endPoint": { - "x": 668.648006, - "y": 30.660972 - } - } - }, - { - "id": "756c3585-b9e0-5133-bcb6-28ddc36eec79", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.648006, - "y": 30.660972 - }, - "endPoint": { - "x": 668.538732, - "y": 30.314231 - } - } - }, - { - "id": "e1bf6fc9-1314-5e2c-b183-ef5df17bc95d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.538732, - "y": 30.314231 - }, - "endPoint": { - "x": 668.435196, - "y": 29.982304 - } - } - }, - { - "id": "c82acc7c-4878-59bf-b9fc-c72f1c4eb189", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.435196, - "y": 29.982304 - }, - "endPoint": { - "x": 668.337058, - "y": 29.664836 - } - } - }, - { - "id": "30cae201-4c71-5c69-8c3a-ccb2c7556f45", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.337058, - "y": 29.664836 - }, - "endPoint": { - "x": 668.243996, - "y": 29.361466 - } - } - }, - { - "id": "c4d58b1c-f6c5-5513-add3-e58ee2af6a3d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.243996, - "y": 29.361466 - }, - "endPoint": { - "x": 668.155744, - "y": 29.071791 - } - } - }, - { - "id": "8cebca6c-0e69-59fe-b8e6-4e10c6541646", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.155744, - "y": 29.071791 - }, - "endPoint": { - "x": 668.072053, - "y": 28.7954 - } - } - }, - { - "id": "94c4c4e7-a5e6-5c23-a8a6-cca8b87d9fc2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.072053, - "y": 28.7954 - }, - "endPoint": { - "x": 667.992671, - "y": 28.531882 - } - } - }, - { - "id": "1eb862bd-7fbe-5871-be7d-77cf56d1ba0a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.992671, - "y": 28.531882 - }, - "endPoint": { - "x": 667.917349, - "y": 28.280824 - } - } - }, - { - "id": "6be8ab24-fb2b-59ba-886a-fd2f38c8def7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.917349, - "y": 28.280824 - }, - "endPoint": { - "x": 667.845836, - "y": 28.041817 - } - } - }, - { - "id": "774dcace-c6c5-5ecb-819c-82d44341b7e6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.845836, - "y": 28.041817 - }, - "endPoint": { - "x": 667.777882, - "y": 27.814448 - } - } - }, - { - "id": "a8d69e71-32d8-55c3-b36a-d3f94cab696c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.777882, - "y": 27.814448 - }, - "endPoint": { - "x": 667.713237, - "y": 27.598305 - } - } - }, - { - "id": "fda9101a-8a26-5a1a-870b-ff5e3bb01314", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.713237, - "y": 27.598305 - }, - "endPoint": { - "x": 667.65175, - "y": 27.392897 - } - } - }, - { - "id": "25160edf-fd62-5039-9e4b-7e4923d41c64", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.65175, - "y": 27.392897 - }, - "endPoint": { - "x": 667.593677, - "y": 27.197408 - } - } - }, - { - "id": "bdb6501e-4642-50a0-aae1-e4291328fcc7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.593677, - "y": 27.197408 - }, - "endPoint": { - "x": 667.539372, - "y": 27.01094 - } - } - }, - { - "id": "ea01f6df-69be-5116-898d-f0244410bb9e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.539372, - "y": 27.01094 - }, - "endPoint": { - "x": 667.489188, - "y": 26.832597 - } - } - }, - { - "id": "508e1b36-7007-597a-b9a1-4cd23623f56b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.489188, - "y": 26.832597 - }, - "endPoint": { - "x": 667.443482, - "y": 26.661481 - } - } - }, - { - "id": "45deec33-b5eb-5f85-8a8f-2ecc7d5ee358", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.443482, - "y": 26.661481 - }, - "endPoint": { - "x": 667.402607, - "y": 26.496696 - } - } - }, - { - "id": "9aca6386-0a04-5acc-a2d3-f0e4b7482b0f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.402607, - "y": 26.496696 - }, - "endPoint": { - "x": 667.366918, - "y": 26.337345 - } - } - }, - { - "id": "22aab32f-2478-5e2b-ae84-e1d778121e1f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.366918, - "y": 26.337345 - }, - "endPoint": { - "x": 667.33677, - "y": 26.18253 - } - } - }, - { - "id": "8a9999ff-2273-511f-9af1-b201e81a1698", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.33677, - "y": 26.18253 - }, - "endPoint": { - "x": 667.312389, - "y": 26.031711 - } - } - }, - { - "id": "6671a426-f61d-56c2-a1ad-2d7631a97c6f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.312389, - "y": 26.031711 - }, - "endPoint": { - "x": 667.293489, - "y": 25.885767 - } - } - }, - { - "id": "cadf8129-1dc0-531a-b649-525a2a9a4259", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.293489, - "y": 25.885767 - }, - "endPoint": { - "x": 667.279655, - "y": 25.745934 - } - } - }, - { - "id": "83378045-388b-559a-aabb-e0b526c19b23", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.279655, - "y": 25.745934 - }, - "endPoint": { - "x": 667.270473, - "y": 25.613447 - } - } - }, - { - "id": "a0466797-3dc8-5da2-84bc-b9e860bc0de7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.270473, - "y": 25.613447 - }, - "endPoint": { - "x": 667.265528, - "y": 25.489542 - } - } - }, - { - "id": "5edc9055-a2a4-526f-bb9c-3d1c2c37054b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.265528, - "y": 25.489542 - }, - "endPoint": { - "x": 667.264406, - "y": 25.375455 - } - } - }, - { - "id": "a99a7af1-ac20-5512-ada4-711610fc297d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.264406, - "y": 25.375455 - }, - "endPoint": { - "x": 667.266692, - "y": 25.27242 - } - } - }, - { - "id": "ce0ab7c4-7890-55da-9259-62aa8e603b32", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.266692, - "y": 25.27242 - }, - "endPoint": { - "x": 667.271971, - "y": 25.181673 - } - } - }, - { - "id": "c2514722-b501-57fb-87af-70ffaf763dc4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.271971, - "y": 25.181673 - }, - "endPoint": { - "x": 667.279864, - "y": 25.104051 - } - } - }, - { - "id": "adbb16ce-b0ba-5f5a-a444-bc65fab97399", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.279864, - "y": 25.104051 - }, - "endPoint": { - "x": 667.290131, - "y": 25.038791 - } - } - }, - { - "id": "e2fe8f87-37fa-58fc-b179-d3b56cb91b10", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.290131, - "y": 25.038791 - }, - "endPoint": { - "x": 667.302568, - "y": 24.984732 - } - } - }, - { - "id": "5c226a18-b1ad-5b11-a4d3-56314b0ae8d7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.302568, - "y": 24.984732 - }, - "endPoint": { - "x": 667.316968, - "y": 24.940712 - } - } - }, - { - "id": "b4f1689c-53d7-584b-86b2-d261cccf0bcc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.316968, - "y": 24.940712 - }, - "endPoint": { - "x": 667.333127, - "y": 24.905571 - } - } - }, - { - "id": "552e510f-8ce7-5678-aeb1-20155dfd4d00", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.333127, - "y": 24.905571 - }, - "endPoint": { - "x": 667.35084, - "y": 24.878146 - } - } - }, - { - "id": "e671b316-6671-565f-8c92-9a41a96d1058", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.35084, - "y": 24.878146 - }, - "endPoint": { - "x": 667.369902, - "y": 24.857276 - } - } - }, - { - "id": "c0d17862-e606-54fd-8f6c-892077e7d0be", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.369902, - "y": 24.857276 - }, - "endPoint": { - "x": 667.390109, - "y": 24.841801 - } - } - }, - { - "id": "9f6a7d98-1ae7-5a08-9fc6-65dd49fdfdfc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.390109, - "y": 24.841801 - }, - "endPoint": { - "x": 667.411235, - "y": 24.830893 - } - } - }, - { - "id": "af89c0eb-6f6d-50d0-8ec9-f50deda65915", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.411235, - "y": 24.830893 - }, - "endPoint": { - "x": 667.432976, - "y": 24.82507 - } - } - }, - { - "id": "535d3ec1-7c23-5df8-8162-3b60585c5320", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.432976, - "y": 24.82507 - }, - "endPoint": { - "x": 667.45501, - "y": 24.825184 - } - } - }, - { - "id": "01cdfa77-46e6-55a1-a2bb-d50574281593", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.45501, - "y": 24.825184 - }, - "endPoint": { - "x": 667.477014, - "y": 24.832087 - } - } - }, - { - "id": "6003e54c-6906-5034-bb87-8b8fac2e5876", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.477014, - "y": 24.832087 - }, - "endPoint": { - "x": 667.498663, - "y": 24.846632 - } - } - }, - { - "id": "36b99363-a767-54b0-9dbf-557aa4017f0a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.498663, - "y": 24.846632 - }, - "endPoint": { - "x": 667.519636, - "y": 24.86967 - } - } - }, - { - "id": "97d0e595-99af-5443-871b-e7fd607292f2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.519636, - "y": 24.86967 - }, - "endPoint": { - "x": 667.539607, - "y": 24.902053 - } - } - }, - { - "id": "53a6e0bc-01d6-5eac-a27b-ae0fa078f2b2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.539607, - "y": 24.902053 - }, - "endPoint": { - "x": 667.558255, - "y": 24.944635 - } - } - }, - { - "id": "fc0d3a22-9362-5e12-b8a9-6fb9a61e0ac1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.558255, - "y": 24.944635 - }, - "endPoint": { - "x": 667.575353, - "y": 24.997889 - } - } - }, - { - "id": "9e80a153-5b1e-5279-9c81-9502133a4a20", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.575353, - "y": 24.997889 - }, - "endPoint": { - "x": 667.59107, - "y": 25.060783 - } - } - }, - { - "id": "26fec279-0087-5150-af0e-a4581ea78cc6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.59107, - "y": 25.060783 - }, - "endPoint": { - "x": 667.605669, - "y": 25.131906 - } - } - }, - { - "id": "126448e6-e10f-5b01-bc93-5adce474e0de", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.605669, - "y": 25.131906 - }, - "endPoint": { - "x": 667.619415, - "y": 25.209848 - } - } - }, - { - "id": "7eaa13b4-d774-5a85-ab58-73ab32b70d19", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.619415, - "y": 25.209848 - }, - "endPoint": { - "x": 667.632574, - "y": 25.293197 - } - } - }, - { - "id": "34900b86-1688-5258-8658-cb33d32fc796", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.632574, - "y": 25.293197 - }, - "endPoint": { - "x": 667.64541, - "y": 25.380543 - } - } - }, - { - "id": "d73adc0a-338b-51d1-aee8-b056068568c5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.64541, - "y": 25.380543 - }, - "endPoint": { - "x": 667.658188, - "y": 25.470475 - } - } - }, - { - "id": "86ac47ad-601b-5bb1-ab39-c6bc091be289", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.658188, - "y": 25.470475 - }, - "endPoint": { - "x": 667.671174, - "y": 25.561584 - } - } - }, - { - "id": "6b6e722a-5924-5223-af8e-28ef4ad60551", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.671174, - "y": 25.561584 - }, - "endPoint": { - "x": 667.684514, - "y": 25.652521 - } - } - }, - { - "id": "cbdff824-bc41-55b2-b09f-c6d21e073845", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.684514, - "y": 25.652521 - }, - "endPoint": { - "x": 667.697884, - "y": 25.742195 - } - } - }, - { - "id": "ac9bdaf2-3c50-5d5d-a94b-f935b981bc27", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.697884, - "y": 25.742195 - }, - "endPoint": { - "x": 667.710844, - "y": 25.829577 - } - } - }, - { - "id": "b598598b-41bd-5d57-bb51-dbb264c3a8bb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.710844, - "y": 25.829577 - }, - "endPoint": { - "x": 667.722952, - "y": 25.913637 - } - } - }, - { - "id": "894bb82e-4a3b-5b04-ae58-eca9c4e7f17d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.722952, - "y": 25.913637 - }, - "endPoint": { - "x": 667.733767, - "y": 25.993348 - } - } - }, - { - "id": "05ab4fd0-3df4-5762-9578-1587cae8b21a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.733767, - "y": 25.993348 - }, - "endPoint": { - "x": 667.742848, - "y": 26.06768 - } - } - }, - { - "id": "76912153-c31e-53a4-a232-9948915ece7d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.742848, - "y": 26.06768 - }, - "endPoint": { - "x": 667.749753, - "y": 26.135605 - } - } - }, - { - "id": "d53d085e-dbe4-5c19-aca6-baa81c2a59ea", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.749753, - "y": 26.135605 - }, - "endPoint": { - "x": 667.754041, - "y": 26.196093 - } - } - }, - { - "id": "bd8fad92-f98b-53f1-a8cc-86df6eca123c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.754041, - "y": 26.196093 - }, - "endPoint": { - "x": 667.755466, - "y": 26.248592 - } - } - }, - { - "id": "aaa880b2-2bec-59ae-bc03-86e9ce784647", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.755466, - "y": 26.248592 - }, - "endPoint": { - "x": 667.754568, - "y": 26.294448 - } - } - }, - { - "id": "c2c55c2e-39d1-5cbc-ab6e-49b0435f3f2b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.754568, - "y": 26.294448 - }, - "endPoint": { - "x": 667.752082, - "y": 26.335483 - } - } - }, - { - "id": "581ddbcc-3e14-5d77-9975-fadfb1cb3757", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.752082, - "y": 26.335483 - }, - "endPoint": { - "x": 667.748743, - "y": 26.373521 - } - } - }, - { - "id": "b5cd5713-669d-5910-8994-42cba4a3fce8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.748743, - "y": 26.373521 - }, - "endPoint": { - "x": 667.745286, - "y": 26.410383 - } - } - }, - { - "id": "f78f3e17-78c0-5920-884f-bb39487a655a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.745286, - "y": 26.410383 - }, - "endPoint": { - "x": 667.742447, - "y": 26.447891 - } - } - }, - { - "id": "e370735e-51a0-5ac6-8d7f-cf7fc3684347", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.742447, - "y": 26.447891 - }, - "endPoint": { - "x": 667.740959, - "y": 26.487869 - } - } - }, - { - "id": "6f9365ee-e09a-559f-8fae-bcaa40ce16fc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.740959, - "y": 26.487869 - }, - "endPoint": { - "x": 667.741558, - "y": 26.532137 - } - } - }, - { - "id": "93b4046b-1f10-5fe2-864c-b3bdea277d43", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.741558, - "y": 26.532137 - }, - "endPoint": { - "x": 667.744823, - "y": 26.582117 - } - } - }, - { - "id": "28c2bafb-9493-5760-b3f1-5ae870a7a847", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.744823, - "y": 26.582117 - }, - "endPoint": { - "x": 667.750705, - "y": 26.637623 - } - } - }, - { - "id": "77946c7f-a08a-51a4-ab06-8145279ae0af", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.750705, - "y": 26.637623 - }, - "endPoint": { - "x": 667.758998, - "y": 26.698067 - } - } - }, - { - "id": "ef406112-f44b-573a-bb3d-ec2fd5075b2e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.758998, - "y": 26.698067 - }, - "endPoint": { - "x": 667.769496, - "y": 26.76286 - } - } - }, - { - "id": "67acea76-0820-5d7e-8fdb-311f75a1a468", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.769496, - "y": 26.76286 - }, - "endPoint": { - "x": 667.781995, - "y": 26.831415 - } - } - }, - { - "id": "f2826df7-c471-54c9-b6d4-7b043384b7fd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.781995, - "y": 26.831415 - }, - "endPoint": { - "x": 667.796287, - "y": 26.903145 - } - } - }, - { - "id": "ba36b2de-9186-54bb-91e8-8ac11da56e51", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.796287, - "y": 26.903145 - }, - "endPoint": { - "x": 667.812169, - "y": 26.977461 - } - } - }, - { - "id": "c300ad67-34d1-5639-b453-044771f457a2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.812169, - "y": 26.977461 - }, - "endPoint": { - "x": 667.829434, - "y": 27.053775 - } - } - }, - { - "id": "fd56dbee-82f4-5e78-9f82-2cbbaf162afb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.829434, - "y": 27.053775 - }, - "endPoint": { - "x": 667.847881, - "y": 27.131499 - } - } - }, - { - "id": "c633790c-2114-5728-908b-450e9ee15585", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.847881, - "y": 27.131499 - }, - "endPoint": { - "x": 667.867329, - "y": 27.210047 - } - } - }, - { - "id": "deeed70e-87bd-56da-86b3-fc6e3e9c9c9a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.867329, - "y": 27.210047 - }, - "endPoint": { - "x": 667.887601, - "y": 27.288829 - } - } - }, - { - "id": "d0d3bdc4-2a61-5dfc-bdfb-f561b3da518f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.887601, - "y": 27.288829 - }, - "endPoint": { - "x": 667.908521, - "y": 27.36726 - } - } - }, - { - "id": "0f722300-c6ea-5f9b-80dd-123dbcb22bc6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.908521, - "y": 27.36726 - }, - "endPoint": { - "x": 667.929911, - "y": 27.44475 - } - } - }, - { - "id": "28cb39a7-8fe2-512d-b2eb-b56d019694e8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.929911, - "y": 27.44475 - }, - "endPoint": { - "x": 667.951596, - "y": 27.520713 - } - } - }, - { - "id": "beebad4c-0cfc-566f-9921-393007823b86", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.951596, - "y": 27.520713 - }, - "endPoint": { - "x": 667.973398, - "y": 27.59456 - } - } - }, - { - "id": "ac47dbc6-7037-5be2-9a7e-266a7a0492bb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.973398, - "y": 27.59456 - }, - "endPoint": { - "x": 667.995141, - "y": 27.665705 - } - } - }, - { - "id": "9fee9ee8-37d1-500c-8610-c27e9a8c29b9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.995141, - "y": 27.665705 - }, - "endPoint": { - "x": 668.016721, - "y": 27.73361 - } - } - }, - { - "id": "4b7dff71-a375-5f87-8b72-3e9ed35ecb70", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.016721, - "y": 27.73361 - }, - "endPoint": { - "x": 668.038332, - "y": 27.79794 - } - } - }, - { - "id": "ffd2180d-07f3-5ae8-ae7c-563ddf12a212", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.038332, - "y": 27.79794 - }, - "endPoint": { - "x": 668.060239, - "y": 27.858412 - } - } - }, - { - "id": "f29c7a32-a742-5a3d-9ac9-a8ef5fa9c9e3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.060239, - "y": 27.858412 - }, - "endPoint": { - "x": 668.082708, - "y": 27.914742 - } - } - }, - { - "id": "eeec0d48-d89b-56c5-9bd3-790eaddfc534", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.082708, - "y": 27.914742 - }, - "endPoint": { - "x": 668.106006, - "y": 27.966644 - } - } - }, - { - "id": "57172e35-02ed-58bd-b451-184173e82e1c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.106006, - "y": 27.966644 - }, - "endPoint": { - "x": 668.130398, - "y": 28.013836 - } - } - }, - { - "id": "451a4c67-c66e-5c1c-816f-f4fa83aefde4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.130398, - "y": 28.013836 - }, - "endPoint": { - "x": 668.156152, - "y": 28.056033 - } - } - }, - { - "id": "36decafa-305b-5298-bfb8-a3ccbf289e99", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.156152, - "y": 28.056033 - }, - "endPoint": { - "x": 668.183532, - "y": 28.092951 - } - } - }, - { - "id": "f582f2c9-dd9e-5b83-b45f-28faadf2edbd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.183532, - "y": 28.092951 - }, - "endPoint": { - "x": 668.212637, - "y": 28.124547 - } - } - }, - { - "id": "8535fe7a-9e7b-5700-963e-17a2d9c4edb6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.212637, - "y": 28.124547 - }, - "endPoint": { - "x": 668.242898, - "y": 28.151734 - } - } - }, - { - "id": "aa7a5d62-ac65-5d80-9309-c72657311666", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.242898, - "y": 28.151734 - }, - "endPoint": { - "x": 668.273577, - "y": 28.17567 - } - } - }, - { - "id": "7c715d2e-89db-5c64-aa2c-973b764b416c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.273577, - "y": 28.17567 - }, - "endPoint": { - "x": 668.303934, - "y": 28.197509 - } - } - }, - { - "id": "c84a627a-9b89-5dfb-b6e8-9737f239ce5f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.303934, - "y": 28.197509 - }, - "endPoint": { - "x": 668.333234, - "y": 28.218407 - } - } - }, - { - "id": "353743e0-58da-59fa-bf15-99b1ef926a79", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.333234, - "y": 28.218407 - }, - "endPoint": { - "x": 668.360737, - "y": 28.23952 - } - } - }, - { - "id": "fa9636a0-e7c4-5576-9178-e9c75c0a339f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.360737, - "y": 28.23952 - }, - "endPoint": { - "x": 668.385706, - "y": 28.262002 - } - } - }, - { - "id": "a0072242-51a2-5663-8d4e-ccdc937ae33e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.385706, - "y": 28.262002 - }, - "endPoint": { - "x": 668.407403, - "y": 28.28701 - } - } - }, - { - "id": "ab21cf47-2b7b-537c-98c9-4f62df0e2f74", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.407403, - "y": 28.28701 - }, - "endPoint": { - "x": 668.425307, - "y": 28.31544 - } - } - }, - { - "id": "e9d72988-7d03-5b34-990b-b31dcd119cd5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.425307, - "y": 28.31544 - }, - "endPoint": { - "x": 668.439761, - "y": 28.347149 - } - } - }, - { - "id": "edd7338b-02e4-537b-a146-d701afee3070", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.439761, - "y": 28.347149 - }, - "endPoint": { - "x": 668.451325, - "y": 28.381736 - } - } - }, - { - "id": "1248491d-7595-5231-806e-5c2763ebbdad", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.451325, - "y": 28.381736 - }, - "endPoint": { - "x": 668.460558, - "y": 28.418801 - } - } - }, - { - "id": "6f7bcd78-6e24-5aad-9256-8ccdff473ee4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.460558, - "y": 28.418801 - }, - "endPoint": { - "x": 668.468022, - "y": 28.457941 - } - } - }, - { - "id": "e339667f-291f-534c-9930-f18804b46d3c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.468022, - "y": 28.457941 - }, - "endPoint": { - "x": 668.474276, - "y": 28.498755 - } - } - }, - { - "id": "c9ec690a-ebd0-5c82-8939-da1f86142bc6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.474276, - "y": 28.498755 - }, - "endPoint": { - "x": 668.479879, - "y": 28.540843 - } - } - }, - { - "id": "6e45d287-18e1-5b9e-9c1f-bff551340888", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.479879, - "y": 28.540843 - }, - "endPoint": { - "x": 668.485392, - "y": 28.583803 - } - } - }, - { - "id": "324c804c-e705-53f9-8db9-742052ae7f2e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.485392, - "y": 28.583803 - }, - "endPoint": { - "x": 668.491345, - "y": 28.627265 - } - } - }, - { - "id": "8b481523-e114-5f3a-8180-9e987e8b51f2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.491345, - "y": 28.627265 - }, - "endPoint": { - "x": 668.49815, - "y": 28.670992 - } - } - }, - { - "id": "5cc954f1-a5c6-5e2d-ae31-03f655187d57", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.49815, - "y": 28.670992 - }, - "endPoint": { - "x": 668.50619, - "y": 28.714779 - } - } - }, - { - "id": "7dc7b2a6-2c6f-532b-adb3-869452eee4c9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.50619, - "y": 28.714779 - }, - "endPoint": { - "x": 668.515848, - "y": 28.758418 - } - } - }, - { - "id": "9ef05a8b-ad7f-5054-96c9-5b495f1d345d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.515848, - "y": 28.758418 - }, - "endPoint": { - "x": 668.527505, - "y": 28.801705 - } - } - }, - { - "id": "2a5d4203-14a1-5eb8-b2e2-a80aa381a6f1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.527505, - "y": 28.801705 - }, - "endPoint": { - "x": 668.541545, - "y": 28.844433 - } - } - }, - { - "id": "ad30ff6e-9df8-5979-a6f9-27219452a6f2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.541545, - "y": 28.844433 - }, - "endPoint": { - "x": 668.55835, - "y": 28.886397 - } - } - }, - { - "id": "6421da67-728d-5986-b39c-a6d9fee19506", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.55835, - "y": 28.886397 - }, - "endPoint": { - "x": 668.578303, - "y": 28.927392 - } - } - }, - { - "id": "100f048e-4d77-5633-9593-9e5c824ec80e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.578303, - "y": 28.927392 - }, - "endPoint": { - "x": 668.601648, - "y": 28.96724 - } - } - }, - { - "id": "f27ced6e-e846-57ce-a413-e3981b48c4c5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.601648, - "y": 28.96724 - }, - "endPoint": { - "x": 668.628083, - "y": 29.005882 - } - } - }, - { - "id": "7af85d54-bf4d-5eed-b031-61fe1ec567ec", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.628083, - "y": 29.005882 - }, - "endPoint": { - "x": 668.657166, - "y": 29.043291 - } - } - }, - { - "id": "92852b57-abf2-597a-af96-3ef0084c1a51", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.657166, - "y": 29.043291 - }, - "endPoint": { - "x": 668.688455, - "y": 29.079435 - } - } - }, - { - "id": "b752ac53-2920-55b3-a5b7-084977f776d5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.688455, - "y": 29.079435 - }, - "endPoint": { - "x": 668.721509, - "y": 29.114287 - } - } - }, - { - "id": "cac5cebc-0e81-54f5-a211-7cd29342d27c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.721509, - "y": 29.114287 - }, - "endPoint": { - "x": 668.755888, - "y": 29.147816 - } - } - }, - { - "id": "eceb0366-df3d-5e96-a7f3-a02dadae8f35", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.755888, - "y": 29.147816 - }, - "endPoint": { - "x": 668.791148, - "y": 29.179993 - } - } - }, - { - "id": "3cd0f7aa-131c-599d-8cc0-d13dbd50a137", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.791148, - "y": 29.179993 - }, - "endPoint": { - "x": 668.82685, - "y": 29.210789 - } - } - }, - { - "id": "3e088653-2b3e-5edc-983f-8e82fa8b0ea6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.82685, - "y": 29.210789 - }, - "endPoint": { - "x": 668.862626, - "y": 29.24015 - } - } - }, - { - "id": "d55448c7-0eed-51bc-91f1-32f506982271", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.862626, - "y": 29.24015 - }, - "endPoint": { - "x": 668.898401, - "y": 29.267925 - } - } - }, - { - "id": "4a38bb8b-0285-57b9-8c9e-527e6e3dc386", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.898401, - "y": 29.267925 - }, - "endPoint": { - "x": 668.934176, - "y": 29.293935 - } - } - }, - { - "id": "6c30f6cb-b403-57ab-8088-32e1fe185fde", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.934176, - "y": 29.293935 - }, - "endPoint": { - "x": 668.96995, - "y": 29.318006 - } - } - }, - { - "id": "10865e6b-2134-55ab-b446-90fbac7cadc2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.96995, - "y": 29.318006 - }, - "endPoint": { - "x": 669.005722, - "y": 29.339961 - } - } - }, - { - "id": "1e68a3e6-7d67-51b3-a17d-0cdba04e64c2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.005722, - "y": 29.339961 - }, - "endPoint": { - "x": 669.041493, - "y": 29.359623 - } - } - }, - { - "id": "4eb41915-203e-5d19-b98a-5689be48d8b8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.041493, - "y": 29.359623 - }, - "endPoint": { - "x": 669.077262, - "y": 29.376816 - } - } - }, - { - "id": "a3596702-5181-5e8d-a7fa-66c18d0acb66", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.077262, - "y": 29.376816 - }, - "endPoint": { - "x": 669.113029, - "y": 29.391364 - } - } - }, - { - "id": "f2233c2d-3b69-5dee-8783-e5f382c6992d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.113029, - "y": 29.391364 - }, - "endPoint": { - "x": 669.148691, - "y": 29.403094 - } - } - }, - { - "id": "587f5bba-ef45-5cff-83bc-d4ada260b984", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.148691, - "y": 29.403094 - }, - "endPoint": { - "x": 669.183733, - "y": 29.411856 - } - } - }, - { - "id": "80e6c479-9bfd-502f-b2b1-dd57d44bfbb6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.183733, - "y": 29.411856 - }, - "endPoint": { - "x": 669.217539, - "y": 29.417502 - } - } - }, - { - "id": "a095cba2-71f7-57b0-a5ac-43e8de3115b8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.217539, - "y": 29.417502 - }, - "endPoint": { - "x": 669.249491, - "y": 29.419885 - } - } - }, - { - "id": "ed22555e-3fab-517b-933b-0105fe06b755", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.249491, - "y": 29.419885 - }, - "endPoint": { - "x": 669.278972, - "y": 29.418859 - } - } - }, - { - "id": "72f4ee2c-25e0-5b0f-8f63-afb1c63df053", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.278972, - "y": 29.418859 - }, - "endPoint": { - "x": 669.305365, - "y": 29.414277 - } - } - }, - { - "id": "0f047000-4cb8-5684-abae-1cf3b8a35e7f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.305365, - "y": 29.414277 - }, - "endPoint": { - "x": 669.328053, - "y": 29.405991 - } - } - }, - { - "id": "0cc067d7-a24a-5f29-bb16-f4552709b5eb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.328053, - "y": 29.405991 - }, - "endPoint": { - "x": 669.34642, - "y": 29.393856 - } - } - }, - { - "id": "4e67e40c-86e2-57de-b92a-d7afb37c5ad0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.34642, - "y": 29.393856 - }, - "endPoint": { - "x": 669.360014, - "y": 29.377705 - } - } - }, - { - "id": "fffa5376-9321-5e88-b1f9-075245ae363d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.360014, - "y": 29.377705 - }, - "endPoint": { - "x": 669.36905, - "y": 29.357292 - } - } - }, - { - "id": "0e720d51-8e98-5508-83de-b5ec859a8795", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.36905, - "y": 29.357292 - }, - "endPoint": { - "x": 669.373912, - "y": 29.332354 - } - } - }, - { - "id": "f8dd2efc-ed98-5212-a40b-07250928e5ed", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.373912, - "y": 29.332354 - }, - "endPoint": { - "x": 669.374981, - "y": 29.302626 - } - } - }, - { - "id": "d8751612-7eaf-5156-b76c-88a0a6387ae1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.374981, - "y": 29.302626 - }, - "endPoint": { - "x": 669.372638, - "y": 29.267843 - } - } - }, - { - "id": "7b51fac2-128b-5559-a0f0-6af4b51291b0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.372638, - "y": 29.267843 - }, - "endPoint": { - "x": 669.367266, - "y": 29.227741 - } - } - }, - { - "id": "3c1f2aa5-48f4-5e2c-8ee0-d344ab832c50", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.367266, - "y": 29.227741 - }, - "endPoint": { - "x": 669.359248, - "y": 29.182056 - } - } - }, - { - "id": "37fcc20e-d313-5285-90d2-e5e8ef750f56", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.359248, - "y": 29.182056 - }, - "endPoint": { - "x": 669.348964, - "y": 29.130523 - } - } - }, - { - "id": "1b6cd1fc-fd10-5673-bfaa-ddb45ea4a441", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.348964, - "y": 29.130523 - }, - "endPoint": { - "x": 669.336806, - "y": 29.073161 - } - } - }, - { - "id": "cccf1e07-92d1-50c7-ab95-392dad36466c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.336806, - "y": 29.073161 - }, - "endPoint": { - "x": 669.323207, - "y": 29.011127 - } - } - }, - { - "id": "bb30d2b6-a487-5855-aaf4-b6df7381bfd6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.323207, - "y": 29.011127 - }, - "endPoint": { - "x": 669.308606, - "y": 28.94586 - } - } - }, - { - "id": "5c33b5eb-4650-5c3c-982c-87ce129af8ec", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.308606, - "y": 28.94586 - }, - "endPoint": { - "x": 669.293445, - "y": 28.878801 - } - } - }, - { - "id": "37f98840-abe8-5a6a-976d-c499dc562d42", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.293445, - "y": 28.878801 - }, - "endPoint": { - "x": 669.278165, - "y": 28.811389 - } - } - }, - { - "id": "a802b626-0b70-5e1e-b017-581937484c50", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.278165, - "y": 28.811389 - }, - "endPoint": { - "x": 669.263206, - "y": 28.745065 - } - } - }, - { - "id": "500baec0-60b9-5bab-b768-5a0cf086dfa0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.263206, - "y": 28.745065 - }, - "endPoint": { - "x": 669.24901, - "y": 28.681268 - } - } - }, - { - "id": "0c73b976-71df-5d2c-bc59-5ae89d4fb683", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.24901, - "y": 28.681268 - }, - "endPoint": { - "x": 669.236018, - "y": 28.621438 - } - } - }, - { - "id": "c3ff5352-8ac6-5c95-9767-c2b1761a3fd8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.236018, - "y": 28.621438 - }, - "endPoint": { - "x": 669.224666, - "y": 28.566662 - } - } - }, - { - "id": "e3f32d57-62e3-5c06-a3d4-1f3befd3e09f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.224666, - "y": 28.566662 - }, - "endPoint": { - "x": 669.215372, - "y": 28.516618 - } - } - }, - { - "id": "f390399e-89f7-5d3d-913f-5dc45ba2bac7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.215372, - "y": 28.516618 - }, - "endPoint": { - "x": 669.208547, - "y": 28.470629 - } - } - }, - { - "id": "4899da75-93af-55b1-90e3-1040999fa57b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.208547, - "y": 28.470629 - }, - "endPoint": { - "x": 669.204606, - "y": 28.42802 - } - } - }, - { - "id": "fc590b02-08fc-5344-ba27-3cbfa26b751f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.204606, - "y": 28.42802 - }, - "endPoint": { - "x": 669.20396, - "y": 28.388114 - } - } - }, - { - "id": "e8f6c84c-cba4-5cf5-b5af-3be43408e946", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.20396, - "y": 28.388114 - }, - "endPoint": { - "x": 669.207022, - "y": 28.350236 - } - } - }, - { - "id": "37bf6071-40b5-5890-bcb7-8bc815d76b1a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.207022, - "y": 28.350236 - }, - "endPoint": { - "x": 669.214205, - "y": 28.31371 - } - } - }, - { - "id": "ff7d277c-fb83-51c5-9ac8-b5c8b8c5ef93", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.214205, - "y": 28.31371 - }, - "endPoint": { - "x": 669.225922, - "y": 28.27786 - } - } - }, - { - "id": "bc82a00f-3a05-5799-b4da-372ff08325dc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.225922, - "y": 28.27786 - }, - "endPoint": { - "x": 669.242438, - "y": 28.242259 - } - } - }, - { - "id": "c7c21751-d89b-5fc5-a511-2d926ffdf642", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.242438, - "y": 28.242259 - }, - "endPoint": { - "x": 669.263429, - "y": 28.207482 - } - } - }, - { - "id": "fc9a2847-04b9-5305-9640-0fb220bcc748", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.263429, - "y": 28.207482 - }, - "endPoint": { - "x": 669.288423, - "y": 28.17435 - } - } - }, - { - "id": "0ee05f38-563a-567b-bafd-af4ea16dcff2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.288423, - "y": 28.17435 - }, - "endPoint": { - "x": 669.316948, - "y": 28.143686 - } - } - }, - { - "id": "ce2a8a7d-ddd8-55d5-a379-24a9284ac0f9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.316948, - "y": 28.143686 - }, - "endPoint": { - "x": 669.348532, - "y": 28.116315 - } - } - }, - { - "id": "db75b46e-0fbc-5d5f-83b6-703e46c72d4f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.348532, - "y": 28.116315 - }, - "endPoint": { - "x": 669.382705, - "y": 28.093057 - } - } - }, - { - "id": "fbe85505-48b6-565e-a811-82c1055ebf24", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.382705, - "y": 28.093057 - }, - "endPoint": { - "x": 669.418993, - "y": 28.074737 - } - } - }, - { - "id": "a115b1aa-886c-5a1a-816c-e16c2b5fdaba", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.418993, - "y": 28.074737 - }, - "endPoint": { - "x": 669.456926, - "y": 28.062176 - } - } - }, - { - "id": "780b65b1-1a67-5f5e-be01-7f8c0d23babf", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.456926, - "y": 28.062176 - }, - "endPoint": { - "x": 669.496076, - "y": 28.055993 - } - } - }, - { - "id": "3f5cb3e3-73d0-5e42-9bc2-7cd4087f3729", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.496076, - "y": 28.055993 - }, - "endPoint": { - "x": 669.536194, - "y": 28.055982 - } - } - }, - { - "id": "1feb5215-786b-589f-a811-96992db4ae26", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.536194, - "y": 28.055982 - }, - "endPoint": { - "x": 669.577075, - "y": 28.06173 - } - } - }, - { - "id": "d2291a34-75ce-5953-9541-be4c8854756f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.577075, - "y": 28.06173 - }, - "endPoint": { - "x": 669.618513, - "y": 28.072827 - } - } - }, - { - "id": "6b5a4cc0-ede6-529a-9fe3-fe38f48937fd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.618513, - "y": 28.072827 - }, - "endPoint": { - "x": 669.660304, - "y": 28.088862 - } - } - }, - { - "id": "d56e8887-8877-5183-b8b6-9cecb2a7baf7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.660304, - "y": 28.088862 - }, - "endPoint": { - "x": 669.702243, - "y": 28.109422 - } - } - }, - { - "id": "95948722-9109-5ec4-b55f-4d4efc9e0f0c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.702243, - "y": 28.109422 - }, - "endPoint": { - "x": 669.744125, - "y": 28.134096 - } - } - }, - { - "id": "a137b319-8e98-5174-bfae-60a0c7174da5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.744125, - "y": 28.134096 - }, - "endPoint": { - "x": 669.785745, - "y": 28.162473 - } - } - }, - { - "id": "0a2be0fe-bcc6-554b-af13-2a9cfff93e9e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.785745, - "y": 28.162473 - }, - "endPoint": { - "x": 669.827, - "y": 28.194206 - } - } - }, - { - "id": "6dc9f1cd-2a48-56ff-9457-d531567ec646", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.827, - "y": 28.194206 - }, - "endPoint": { - "x": 669.868199, - "y": 28.2292 - } - } - }, - { - "id": "29c5c4cf-ad52-50f9-afd9-e3e2a5e9b1ea", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.868199, - "y": 28.2292 - }, - "endPoint": { - "x": 669.909754, - "y": 28.267428 - } - } - }, - { - "id": "bcdf0e87-5214-5992-9e0d-dece4a53d103", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.909754, - "y": 28.267428 - }, - "endPoint": { - "x": 669.952075, - "y": 28.308859 - } - } - }, - { - "id": "af46bccb-cdd3-5cb6-93ad-972c6671b5dd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.952075, - "y": 28.308859 - }, - "endPoint": { - "x": 669.995573, - "y": 28.353466 - } - } - }, - { - "id": "37e6cf77-dcb1-5b72-8dcf-ab09eb910127", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.995573, - "y": 28.353466 - }, - "endPoint": { - "x": 670.040661, - "y": 28.401217 - } - } - }, - { - "id": "47265db6-35db-595d-9e44-7a3c5f0bc26c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.040661, - "y": 28.401217 - }, - "endPoint": { - "x": 670.087748, - "y": 28.452085 - } - } - }, - { - "id": "1a8b0914-92ad-54a2-ac2b-247b7e4685c1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.087748, - "y": 28.452085 - }, - "endPoint": { - "x": 670.137247, - "y": 28.50604 - } - } - }, - { - "id": "0e0a7ad8-90b8-5c77-b595-61305b90b7b7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.137247, - "y": 28.50604 - }, - "endPoint": { - "x": 670.189396, - "y": 28.5629 - } - } - }, - { - "id": "76e2ac8d-2c85-567e-89b4-10312c6dabac", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.189396, - "y": 28.5629 - }, - "endPoint": { - "x": 670.24375, - "y": 28.621878 - } - } - }, - { - "id": "d6d6a024-169e-5f09-ad1c-947953d0ff32", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.24375, - "y": 28.621878 - }, - "endPoint": { - "x": 670.299691, - "y": 28.682032 - } - } - }, - { - "id": "77cc0c21-e9e8-51d1-99b7-e0533bd1749b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.299691, - "y": 28.682032 - }, - "endPoint": { - "x": 670.356601, - "y": 28.742422 - } - } - }, - { - "id": "ea9fef97-bedb-52b9-93ca-adaa74b975c8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.356601, - "y": 28.742422 - }, - "endPoint": { - "x": 670.413863, - "y": 28.802106 - } - } - }, - { - "id": "09923c73-3355-5fb9-a4f1-843e3a9651cd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.413863, - "y": 28.802106 - }, - "endPoint": { - "x": 670.470858, - "y": 28.860144 - } - } - }, - { - "id": "5f4dd142-4b15-5dd2-8ae0-f501709a4627", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.470858, - "y": 28.860144 - }, - "endPoint": { - "x": 670.52697, - "y": 28.915595 - } - } - }, - { - "id": "9b322a6e-daf5-5d92-ba27-0efa0277de36", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.52697, - "y": 28.915595 - }, - "endPoint": { - "x": 670.58158, - "y": 28.967519 - } - } - }, - { - "id": "bc919794-7002-593a-81d7-5871997a10e8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.58158, - "y": 28.967519 - }, - "endPoint": { - "x": 670.63413, - "y": 29.015152 - } - } - }, - { - "id": "6d3df96c-1ee2-5747-a92a-5d6791c52aee", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.63413, - "y": 29.015152 - }, - "endPoint": { - "x": 670.684297, - "y": 29.058433 - } - } - }, - { - "id": "32fb3d3c-257e-5416-bdf2-4f1ce080c1f4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.684297, - "y": 29.058433 - }, - "endPoint": { - "x": 670.731815, - "y": 29.097482 - } - } - }, - { - "id": "727602d3-cc29-598b-bf82-93858dc23ce5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.731815, - "y": 29.097482 - }, - "endPoint": { - "x": 670.776422, - "y": 29.132416 - } - } - }, - { - "id": "4f738291-dfb0-560c-8b2f-7b1f433a4d3d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.776422, - "y": 29.132416 - }, - "endPoint": { - "x": 670.817852, - "y": 29.163353 - } - } - }, - { - "id": "e8d17b44-ab01-581c-af76-57751a44084a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.817852, - "y": 29.163353 - }, - "endPoint": { - "x": 670.855842, - "y": 29.19041 - } - } - }, - { - "id": "74d7996a-2637-5e86-a58c-5afc876f2bb9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.855842, - "y": 29.19041 - }, - "endPoint": { - "x": 670.890127, - "y": 29.213705 - } - } - }, - { - "id": "3e6495e6-5d39-5c80-823b-152ba5be9273", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.890127, - "y": 29.213705 - }, - "endPoint": { - "x": 670.920442, - "y": 29.233357 - } - } - }, - { - "id": "423f5dd0-48ab-5c6a-9b16-19030cde0d84", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.920442, - "y": 29.233357 - }, - "endPoint": { - "x": 670.946544, - "y": 29.24935 - } - } - }, - { - "id": "b663ceda-a03b-5782-ad1c-54b0c0618d45", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.946544, - "y": 29.24935 - }, - "endPoint": { - "x": 670.968264, - "y": 29.261141 - } - } - }, - { - "id": "342bf24e-ae06-547e-98f2-cbb6f3c04093", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.968264, - "y": 29.261141 - }, - "endPoint": { - "x": 670.985455, - "y": 29.268053 - } - } - }, - { - "id": "78a4879c-f1e9-5575-a547-1799a39edc18", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.985455, - "y": 29.268053 - }, - "endPoint": { - "x": 670.997969, - "y": 29.26941 - } - } - }, - { - "id": "bcfaed59-c85f-58ce-9ee6-cd281c7dd279", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.997969, - "y": 29.26941 - }, - "endPoint": { - "x": 671.005659, - "y": 29.264537 - } - } - }, - { - "id": "851b6857-831e-5546-9d9e-cc212545a40d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.005659, - "y": 29.264537 - }, - "endPoint": { - "x": 671.008376, - "y": 29.252757 - } - } - }, - { - "id": "6b7b0063-1d4f-51d9-87c3-3ea684772cdd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.008376, - "y": 29.252757 - }, - "endPoint": { - "x": 671.005972, - "y": 29.233393 - } - } - }, - { - "id": "7c273a25-dd6c-5c22-b050-3f17e9c5d920", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.005972, - "y": 29.233393 - }, - "endPoint": { - "x": 670.9983, - "y": 29.205771 - } - } - }, - { - "id": "159e5e83-7ff0-5194-90f8-0f00944884cf", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.9983, - "y": 29.205771 - }, - "endPoint": { - "x": 670.985429, - "y": 29.169545 - } - } - }, - { - "id": "a0f72d2c-09c0-5b49-8d74-f7087643147b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.985429, - "y": 29.169545 - }, - "endPoint": { - "x": 670.968289, - "y": 29.125708 - } - } - }, - { - "id": "338f52a0-30c0-5567-9646-1d61f3b76350", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.968289, - "y": 29.125708 - }, - "endPoint": { - "x": 670.94803, - "y": 29.07558 - } - } - }, - { - "id": "decc77ef-c62c-5cc2-8237-01cf1c5d1d23", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.94803, - "y": 29.07558 - }, - "endPoint": { - "x": 670.925799, - "y": 29.020486 - } - } - }, - { - "id": "4df0e3a1-e909-577d-bf13-2e52bf792a1d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.925799, - "y": 29.020486 - }, - "endPoint": { - "x": 670.902744, - "y": 28.961747 - } - } - }, - { - "id": "c6045eb1-5c5c-5a50-b4a2-bc23ae6e14c4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.902744, - "y": 28.961747 - }, - "endPoint": { - "x": 670.880014, - "y": 28.900688 - } - } - }, - { - "id": "3bed5f64-b331-59ee-a978-82fcbf476fd9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.880014, - "y": 28.900688 - }, - "endPoint": { - "x": 670.858756, - "y": 28.83863 - } - } - }, - { - "id": "56028280-b36a-5525-bfb1-33ee56868367", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.858756, - "y": 28.83863 - }, - "endPoint": { - "x": 670.840119, - "y": 28.776896 - } - } - }, - { - "id": "1c59e4b9-cab7-572a-8079-8ae05b9ce7b3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.840119, - "y": 28.776896 - }, - "endPoint": { - "x": 670.824981, - "y": 28.716575 - } - } - }, - { - "id": "71d1fe8d-214c-516d-88db-c4556f5a2e97", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.824981, - "y": 28.716575 - }, - "endPoint": { - "x": 670.813141, - "y": 28.657812 - } - } - }, - { - "id": "0f885eaf-f537-5d7b-bb87-1a414b416317", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.813141, - "y": 28.657812 - }, - "endPoint": { - "x": 670.804126, - "y": 28.600519 - } - } - }, - { - "id": "8a6a0424-fc62-5b81-8f6a-2cf60114d95c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.804126, - "y": 28.600519 - }, - "endPoint": { - "x": 670.797467, - "y": 28.544608 - } - } - }, - { - "id": "0169c7d2-c0b3-5b1d-a9b3-202e2d02197c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.797467, - "y": 28.544608 - }, - "endPoint": { - "x": 670.79269, - "y": 28.48999 - } - } - }, - { - "id": "d204dcb5-b509-55a3-b486-cafa417c94b1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.79269, - "y": 28.48999 - }, - "endPoint": { - "x": 670.789325, - "y": 28.436577 - } - } - }, - { - "id": "6678d03e-c283-54be-a2c1-142354429991", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.789325, - "y": 28.436577 - }, - "endPoint": { - "x": 670.7869, - "y": 28.38428 - } - } - }, - { - "id": "c7b972a7-9125-5c50-aa63-4f944423fa80", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.7869, - "y": 28.38428 - }, - "endPoint": { - "x": 670.784945, - "y": 28.33301 - } - } - }, - { - "id": "5478284d-823c-5254-b503-19f9860707c7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.784945, - "y": 28.33301 - }, - "endPoint": { - "x": 670.78309, - "y": 28.282724 - } - } - }, - { - "id": "d3efc9ac-b405-5b43-aea6-58704c9a0990", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.78309, - "y": 28.282724 - }, - "endPoint": { - "x": 670.78138, - "y": 28.233553 - } - } - }, - { - "id": "bdf2810f-fbe2-5bf3-af7f-417fad7f2e2e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.78138, - "y": 28.233553 - }, - "endPoint": { - "x": 670.779963, - "y": 28.185674 - } - } - }, - { - "id": "3963724c-396b-5baf-8184-761f59c3df20", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.779963, - "y": 28.185674 - }, - "endPoint": { - "x": 670.778985, - "y": 28.139264 - } - } - }, - { - "id": "2ca66b20-96ce-58d6-9662-d5d096ab4b12", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.778985, - "y": 28.139264 - }, - "endPoint": { - "x": 670.778596, - "y": 28.0945 - } - } - }, - { - "id": "51df8d68-f8cb-5349-b9cf-2055714f1ef7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.778596, - "y": 28.0945 - }, - "endPoint": { - "x": 670.778941, - "y": 28.051559 - } - } - }, - { - "id": "b27cd5ce-85ce-5d04-b5cd-e71a5440d540", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.778941, - "y": 28.051559 - }, - "endPoint": { - "x": 670.780169, - "y": 28.010616 - } - } - }, - { - "id": "f5c1c2f7-3591-5eff-a5ef-8cf4981144f2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.780169, - "y": 28.010616 - }, - "endPoint": { - "x": 670.782427, - "y": 27.97185 - } - } - }, - { - "id": "7be0b292-dcda-5289-9d70-6988465411bb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.782427, - "y": 27.97185 - }, - "endPoint": { - "x": 670.785819, - "y": 27.935382 - } - } - }, - { - "id": "26b3db66-59f9-55ae-80dd-de3b21401a0c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.785819, - "y": 27.935382 - }, - "endPoint": { - "x": 670.79027, - "y": 27.901119 - } - } - }, - { - "id": "3b392386-0fa7-5f79-b630-710b4d7859dc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.79027, - "y": 27.901119 - }, - "endPoint": { - "x": 670.795663, - "y": 27.868915 - } - } - }, - { - "id": "8ae4847d-aabf-5f5f-93fb-1216bbd9325c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.795663, - "y": 27.868915 - }, - "endPoint": { - "x": 670.801879, - "y": 27.838621 - } - } - }, - { - "id": "9c92a372-9b5b-512b-988f-c522fbf2a746", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.801879, - "y": 27.838621 - }, - "endPoint": { - "x": 670.808801, - "y": 27.810091 - } - } - }, - { - "id": "8fd21f97-1c84-5f02-a58f-4f80b4ddddfb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.808801, - "y": 27.810091 - }, - "endPoint": { - "x": 670.81631, - "y": 27.783177 - } - } - }, - { - "id": "7087066f-1f5b-5ab5-a201-ccc57cf9832e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.81631, - "y": 27.783177 - }, - "endPoint": { - "x": 670.824289, - "y": 27.757733 - } - } - }, - { - "id": "c7320117-30cb-57d3-8dbd-b54ea97c8075", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.824289, - "y": 27.757733 - }, - "endPoint": { - "x": 670.832619, - "y": 27.73361 - } - } - }, - { - "id": "64f80378-052c-5967-80cb-8b573f21e9fd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.832619, - "y": 27.73361 - }, - "endPoint": { - "x": 670.840894, - "y": 27.710427 - } - } - }, - { - "id": "c785d38e-3c32-54c3-9382-c85a9c9e3a2b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.840894, - "y": 27.710427 - }, - "endPoint": { - "x": 670.84755, - "y": 27.686861 - } - } - }, - { - "id": "f20e3ffe-ca5f-59f0-9671-1d30d026359e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.84755, - "y": 27.686861 - }, - "endPoint": { - "x": 670.850734, - "y": 27.661355 - } - } - }, - { - "id": "53a94f41-0555-54d8-9bf0-11139bc690dd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.850734, - "y": 27.661355 - }, - "endPoint": { - "x": 670.848593, - "y": 27.632352 - } - } - }, - { - "id": "335a40f2-8fca-5cf5-b606-7e1cb38aa7f4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.848593, - "y": 27.632352 - }, - "endPoint": { - "x": 670.839274, - "y": 27.598293 - } - } - }, - { - "id": "76bf5cf0-c5a8-5b7b-a554-432e17a6fcd2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.839274, - "y": 27.598293 - }, - "endPoint": { - "x": 670.820926, - "y": 27.557622 - } - } - }, - { - "id": "6e1eafaa-1cfa-59b4-87f0-12e79131df4c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.820926, - "y": 27.557622 - }, - "endPoint": { - "x": 670.791694, - "y": 27.508781 - } - } - }, - { - "id": "2f32367b-70cf-58f9-9c71-d78a4c58426f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.791694, - "y": 27.508781 - }, - "endPoint": { - "x": 670.749726, - "y": 27.450212 - } - } - }, - { - "id": "a340ae61-c800-5f13-b8c0-c9b16b4b75b0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.749726, - "y": 27.450212 - }, - "endPoint": { - "x": 670.693714, - "y": 27.380765 - } - } - }, - { - "id": "e503255c-edce-50d6-a115-c3df52e0a0e7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.693714, - "y": 27.380765 - }, - "endPoint": { - "x": 670.624525, - "y": 27.300915 - } - } - }, - { - "id": "d47078ec-fd5f-54f8-ab3b-8bd0523cad09", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.624525, - "y": 27.300915 - }, - "endPoint": { - "x": 670.543571, - "y": 27.211543 - } - } - }, - { - "id": "68b32c8c-8b41-5aff-b203-0dd645403178", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.543571, - "y": 27.211543 - }, - "endPoint": { - "x": 670.452262, - "y": 27.11353 - } - } - }, - { - "id": "425d0ca7-f33b-5e8b-b046-d55174cc95e3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.452262, - "y": 27.11353 - }, - "endPoint": { - "x": 670.35201, - "y": 27.007757 - } - } - }, - { - "id": "fe6f2ba1-9ffc-5bb2-b7f8-9bb7a11f1adb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.35201, - "y": 27.007757 - }, - "endPoint": { - "x": 670.244227, - "y": 26.895108 - } - } - }, - { - "id": "19e486d4-a768-5c85-a130-ff9546c20726", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.244227, - "y": 26.895108 - }, - "endPoint": { - "x": 670.130325, - "y": 26.776461 - } - } - }, - { - "id": "897acc93-c840-574b-994c-588f8850bc8d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.130325, - "y": 26.776461 - }, - "endPoint": { - "x": 670.011714, - "y": 26.6527 - } - } - }, - { - "id": "904e0042-1f5e-58d6-b881-35fa047561d3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.011714, - "y": 26.6527 - }, - "endPoint": { - "x": 669.889767, - "y": 26.524833 - } - } - }, - { - "id": "03d3b561-8803-5fc4-a3f0-1f31ae7b10ef", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.889767, - "y": 26.524833 - }, - "endPoint": { - "x": 669.765701, - "y": 26.394378 - } - } - }, - { - "id": "82f0bed2-e38b-502e-8617-056a7a644d76", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.765701, - "y": 26.394378 - }, - "endPoint": { - "x": 669.640692, - "y": 26.262982 - } - } - }, - { - "id": "61a6f565-fd47-5c7e-b53f-1e41675de1da", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.640692, - "y": 26.262982 - }, - "endPoint": { - "x": 669.515916, - "y": 26.13229 - } - } - }, - { - "id": "b0d36651-0f81-5c45-b8a1-343f6c7f5188", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.515916, - "y": 26.13229 - }, - "endPoint": { - "x": 669.392552, - "y": 26.00395 - } - } - }, - { - "id": "a1915c00-bd94-500c-85e8-f725c95a332d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.392552, - "y": 26.00395 - }, - "endPoint": { - "x": 669.271777, - "y": 25.879607 - } - } - }, - { - "id": "c0bd7311-f755-5222-a24e-8a6ec21b6953", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.271777, - "y": 25.879607 - }, - "endPoint": { - "x": 669.154766, - "y": 25.760907 - } - } - }, - { - "id": "5315f42a-2510-5f89-9c4b-6056a44ddf1c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.154766, - "y": 25.760907 - }, - "endPoint": { - "x": 669.042697, - "y": 25.649497 - } - } - }, - { - "id": "89e2b83a-a06e-5534-8b76-cb80588a2f54", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.042697, - "y": 25.649497 - }, - "endPoint": { - "x": 668.936493, - "y": 25.546571 - } - } - }, - { - "id": "f338fbd9-14e5-5f70-8a2c-87e6820925d5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.936493, - "y": 25.546571 - }, - "endPoint": { - "x": 668.836055, - "y": 25.451522 - } - } - }, - { - "id": "16817776-8d58-5198-8af7-f5d3264c939f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.836055, - "y": 25.451522 - }, - "endPoint": { - "x": 668.741029, - "y": 25.363293 - } - } - }, - { - "id": "7c79c23b-1ee5-5b4b-aa40-825973de3f14", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.741029, - "y": 25.363293 - }, - "endPoint": { - "x": 668.651063, - "y": 25.280825 - } - } - }, - { - "id": "b6d925b1-9754-5511-ab82-2ce40573e8af", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.651063, - "y": 25.280825 - }, - "endPoint": { - "x": 668.565805, - "y": 25.20306 - } - } - }, - { - "id": "402d65cc-33e1-5615-9258-6ac7ed96a719", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.565805, - "y": 25.20306 - }, - "endPoint": { - "x": 668.484899, - "y": 25.128939 - } - } - }, - { - "id": "76a8a682-a908-5e89-b3cd-92e164c37060", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.484899, - "y": 25.128939 - }, - "endPoint": { - "x": 668.407995, - "y": 25.057406 - } - } - }, - { - "id": "6b14a317-e632-5de2-9387-d6fefd7d7f7a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.407995, - "y": 25.057406 - }, - "endPoint": { - "x": 668.334737, - "y": 24.987401 - } - } - }, - { - "id": "28ac7be3-fb86-5f70-8884-dc18de809148", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.334737, - "y": 24.987401 - }, - "endPoint": { - "x": 668.264975, - "y": 24.918077 - } - } - }, - { - "id": "6c2df85e-0959-5bb7-b8f0-82a429393b12", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.264975, - "y": 24.918077 - }, - "endPoint": { - "x": 668.199361, - "y": 24.84943 - } - } - }, - { - "id": "b48c5ee9-038b-5c21-971f-27a49f2bceb1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.199361, - "y": 24.84943 - }, - "endPoint": { - "x": 668.138748, - "y": 24.781664 - } - } - }, - { - "id": "5675991b-6065-540f-9cb0-7c0208c23fdd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.138748, - "y": 24.781664 - }, - "endPoint": { - "x": 668.08399, - "y": 24.714985 - } - } - }, - { - "id": "38f1948f-8619-524f-a125-6a5ac8c4b980", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.08399, - "y": 24.714985 - }, - "endPoint": { - "x": 668.035939, - "y": 24.6496 - } - } - }, - { - "id": "3e177252-d4cf-5eaa-9108-d800867f4a62", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.035939, - "y": 24.6496 - }, - "endPoint": { - "x": 667.99545, - "y": 24.585714 - } - } - }, - { - "id": "2ec8c261-ecb2-5604-903a-8d54ef75c587", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.99545, - "y": 24.585714 - }, - "endPoint": { - "x": 667.963376, - "y": 24.523532 - } - } - }, - { - "id": "fe23ccc7-2cb9-58f1-92ee-620c2152d3ac", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.963376, - "y": 24.523532 - }, - "endPoint": { - "x": 667.94057, - "y": 24.46326 - } - } - }, - { - "id": "3786a5ef-fea4-5639-94b0-9b06a744e17b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.94057, - "y": 24.46326 - }, - "endPoint": { - "x": 667.927605, - "y": 24.405231 - } - } - }, - { - "id": "6c4bf20b-a9da-5102-a028-063747609615", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.927605, - "y": 24.405231 - }, - "endPoint": { - "x": 667.923938, - "y": 24.350287 - } - } - }, - { - "id": "5329c041-2df7-5619-919a-c0dfbce1ec45", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.923938, - "y": 24.350287 - }, - "endPoint": { - "x": 667.928745, - "y": 24.299399 - } - } - }, - { - "id": "36d8936d-823f-51f2-a303-f026944f6a0f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.928745, - "y": 24.299399 - }, - "endPoint": { - "x": 667.941202, - "y": 24.253537 - } - } - }, - { - "id": "888d2edd-972b-54c0-aeac-94bf4d58f71e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.941202, - "y": 24.253537 - }, - "endPoint": { - "x": 667.960485, - "y": 24.213669 - } - } - }, - { - "id": "477a4246-ecce-527e-9d33-650a324ef102", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.960485, - "y": 24.213669 - }, - "endPoint": { - "x": 667.98577, - "y": 24.180766 - } - } - }, - { - "id": "73860734-ec93-5926-a292-49f1aad78ba5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 667.98577, - "y": 24.180766 - }, - "endPoint": { - "x": 668.016233, - "y": 24.155798 - } - } - }, - { - "id": "ad3ab77d-8755-5bb8-a77c-034cf54b8e0f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.016233, - "y": 24.155798 - }, - "endPoint": { - "x": 668.05105, - "y": 24.139734 - } - } - }, - { - "id": "4f511d67-bf94-5bf5-837b-ea74fd6e6c28", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.05105, - "y": 24.139734 - }, - "endPoint": { - "x": 668.089643, - "y": 24.133384 - } - } - }, - { - "id": "fc8439bb-7ad2-586b-95ad-7407b2e61f8d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.089643, - "y": 24.133384 - }, - "endPoint": { - "x": 668.132413, - "y": 24.136908 - } - } - }, - { - "id": "7aa44e48-e386-50ce-8a0b-295c27e2a5f9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.132413, - "y": 24.136908 - }, - "endPoint": { - "x": 668.180008, - "y": 24.150306 - } - } - }, - { - "id": "d2188ae3-a702-54bd-b18c-42f5c844ccb9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.180008, - "y": 24.150306 - }, - "endPoint": { - "x": 668.233075, - "y": 24.17358 - } - } - }, - { - "id": "53727553-7fcd-5d7f-a78e-b37f4c3059af", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.233075, - "y": 24.17358 - }, - "endPoint": { - "x": 668.292261, - "y": 24.20673 - } - } - }, - { - "id": "d8f766e9-2d8b-5345-b4ff-d6a9bbf45be0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.292261, - "y": 24.20673 - }, - "endPoint": { - "x": 668.358213, - "y": 24.249755 - } - } - }, - { - "id": "b7d1bb31-c7be-5b44-9fd5-ba921f0ecae1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.358213, - "y": 24.249755 - }, - "endPoint": { - "x": 668.431579, - "y": 24.302656 - } - } - }, - { - "id": "2d0d254f-5aa3-5470-b37f-f0cab4a34f8f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.431579, - "y": 24.302656 - }, - "endPoint": { - "x": 668.513006, - "y": 24.365433 - } - } - }, - { - "id": "84db06a4-ea01-5cfc-becd-93a80bc97c12", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.513006, - "y": 24.365433 - }, - "endPoint": { - "x": 668.602723, - "y": 24.4377 - } - } - }, - { - "id": "6b8f1bef-0e54-52da-a6b0-ec55fb6e0193", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.602723, - "y": 24.4377 - }, - "endPoint": { - "x": 668.699295, - "y": 24.517521 - } - } - }, - { - "id": "4915d395-6b27-52a4-aeff-da0d2aea6282", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.699295, - "y": 24.517521 - }, - "endPoint": { - "x": 668.800868, - "y": 24.602574 - } - } - }, - { - "id": "1565dfa2-aa6d-54d2-babb-6612f5922e2b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.800868, - "y": 24.602574 - }, - "endPoint": { - "x": 668.905587, - "y": 24.690537 - } - } - }, - { - "id": "d861dcf4-7874-52a0-b631-f78ef66179fe", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.905587, - "y": 24.690537 - }, - "endPoint": { - "x": 669.011599, - "y": 24.779088 - } - } - }, - { - "id": "5973044e-5eb5-5379-a8d0-6caf2fdb2c15", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.011599, - "y": 24.779088 - }, - "endPoint": { - "x": 669.117051, - "y": 24.865905 - } - } - }, - { - "id": "7b7b99e9-a847-5734-843c-6631cbd3415a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.117051, - "y": 24.865905 - }, - "endPoint": { - "x": 669.220089, - "y": 24.948666 - } - } - }, - { - "id": "7d22ee53-f564-5be1-b197-e1431f1dec7e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.220089, - "y": 24.948666 - }, - "endPoint": { - "x": 669.318859, - "y": 25.025047 - } - } - }, - { - "id": "5ac0cf7e-7fd1-5949-a1c6-7fe8fa0c1369", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.318859, - "y": 25.025047 - }, - "endPoint": { - "x": 669.412218, - "y": 25.093517 - } - } - }, - { - "id": "20c8cae5-285c-583b-a1a6-bc05c568ee6a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.412218, - "y": 25.093517 - }, - "endPoint": { - "x": 669.501869, - "y": 25.155696 - } - } - }, - { - "id": "59e0f2cd-7b69-56ad-a045-fb6573f2465e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.501869, - "y": 25.155696 - }, - "endPoint": { - "x": 669.590224, - "y": 25.213995 - } - } - }, - { - "id": "f8f5fdcb-1182-5539-9819-870b705309ce", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.590224, - "y": 25.213995 - }, - "endPoint": { - "x": 669.679696, - "y": 25.270824 - } - } - }, - { - "id": "03be4640-36fb-5939-b2e0-4bd94e303042", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.679696, - "y": 25.270824 - }, - "endPoint": { - "x": 669.772699, - "y": 25.328592 - } - } - }, - { - "id": "ea943f4a-149f-59e5-b341-008b6efa247f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.772699, - "y": 25.328592 - }, - "endPoint": { - "x": 669.871645, - "y": 25.389711 - } - } - }, - { - "id": "cd0f6a2f-0399-5d62-bfb4-a3a3aa4a0dc5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.871645, - "y": 25.389711 - }, - "endPoint": { - "x": 669.978948, - "y": 25.45659 - } - } - }, - { - "id": "e27d7845-be39-5f90-a675-45ae6577273c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.978948, - "y": 25.45659 - }, - "endPoint": { - "x": 670.09702, - "y": 25.53164 - } - } - }, - { - "id": "4ae71a9d-ca83-5d60-b7b3-eae01161f719", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.09702, - "y": 25.53164 - }, - "endPoint": { - "x": 670.227837, - "y": 25.616785 - } - } - }, - { - "id": "94e5965e-afe2-5765-aaa0-0e1bfb9fa646", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.227837, - "y": 25.616785 - }, - "endPoint": { - "x": 670.371631, - "y": 25.712011 - } - } - }, - { - "id": "3791306f-a78c-542d-8848-8980b47454df", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.371631, - "y": 25.712011 - }, - "endPoint": { - "x": 670.528194, - "y": 25.816819 - } - } - }, - { - "id": "4083dbcc-0c79-5986-8e8b-534b4caf7e68", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.528194, - "y": 25.816819 - }, - "endPoint": { - "x": 670.697322, - "y": 25.930709 - } - } - }, - { - "id": "04645f60-2692-53d2-8233-a8dd553e3b74", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.697322, - "y": 25.930709 - }, - "endPoint": { - "x": 670.878807, - "y": 26.053181 - } - } - }, - { - "id": "0641b828-e8a9-5869-8a94-7842f8463d4c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.878807, - "y": 26.053181 - }, - "endPoint": { - "x": 671.072443, - "y": 26.183736 - } - } - }, - { - "id": "4abc6beb-fe13-5229-9796-f36095944cfe", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.072443, - "y": 26.183736 - }, - "endPoint": { - "x": 671.278024, - "y": 26.321874 - } - } - }, - { - "id": "3bd1a853-1d10-5749-9a18-3950d0c3db66", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.278024, - "y": 26.321874 - }, - "endPoint": { - "x": 671.495344, - "y": 26.467095 - } - } - }, - { - "id": "05a1dc3f-ab83-5277-a987-5e6a584d42e0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.495344, - "y": 26.467095 - }, - "endPoint": { - "x": 671.723868, - "y": 26.618715 - } - } - }, - { - "id": "f8e2adc0-6ded-5d04-9e3c-a44c2214b48d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.723868, - "y": 26.618715 - }, - "endPoint": { - "x": 671.961747, - "y": 26.775301 - } - } - }, - { - "id": "ba36a396-c0ac-50dc-9e9b-2a45e2ff47a9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.961747, - "y": 26.775301 - }, - "endPoint": { - "x": 672.206805, - "y": 26.935239 - } - } - }, - { - "id": "c0ccc4b2-2d2e-570a-ba12-cfa713b04230", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.206805, - "y": 26.935239 - }, - "endPoint": { - "x": 672.456864, - "y": 27.09691 - } - } - }, - { - "id": "82015ccc-c3b5-55fa-877a-4f520c8c8221", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.456864, - "y": 27.09691 - }, - "endPoint": { - "x": 672.709746, - "y": 27.258699 - } - } - }, - { - "id": "48f201fc-a93b-511b-965d-2b04f9fd20fc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.709746, - "y": 27.258699 - }, - "endPoint": { - "x": 672.963274, - "y": 27.418988 - } - } - }, - { - "id": "7bd242fb-4d24-5850-b96c-4fd10ba9d1be", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.963274, - "y": 27.418988 - }, - "endPoint": { - "x": 673.215271, - "y": 27.576162 - } - } - }, - { - "id": "aa30f75d-d642-5efc-944c-55e369b6975d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.215271, - "y": 27.576162 - }, - "endPoint": { - "x": 673.46356, - "y": 27.728602 - } - } - }, - { - "id": "5833704d-ba05-571f-8f60-faac428acf8b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.46356, - "y": 27.728602 - }, - "endPoint": { - "x": 673.705763, - "y": 27.874498 - } - } - }, - { - "id": "017e9a64-fd91-5dc1-9abe-476847024edb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.705763, - "y": 27.874498 - }, - "endPoint": { - "x": 673.938697, - "y": 28.011253 - } - } - }, - { - "id": "e9d53d99-88ed-58bc-a6a4-27f3e4cbd65a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.938697, - "y": 28.011253 - }, - "endPoint": { - "x": 674.15898, - "y": 28.136074 - } - } - }, - { - "id": "9d82db1a-0844-5c22-93cf-21053b123d62", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.15898, - "y": 28.136074 - }, - "endPoint": { - "x": 674.363229, - "y": 28.246171 - } - } - }, - { - "id": "71fac430-d7ba-5372-ac57-056deffe7a37", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.363229, - "y": 28.246171 - }, - "endPoint": { - "x": 674.54806, - "y": 28.338751 - } - } - }, - { - "id": "2e5e7d32-eb2b-504b-aac5-62e089737d20", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.54806, - "y": 28.338751 - }, - "endPoint": { - "x": 674.710092, - "y": 28.411023 - } - } - }, - { - "id": "3aa87e65-7624-5a74-a7b5-e5b2a7a363f7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.710092, - "y": 28.411023 - }, - "endPoint": { - "x": 674.845941, - "y": 28.460194 - } - } - }, - { - "id": "dec1c468-6192-5fd2-bca4-65b7a83007d7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.845941, - "y": 28.460194 - }, - "endPoint": { - "x": 674.952225, - "y": 28.483472 - } - } - }, - { - "id": "7dbcfb44-9f55-5d95-b8e4-85b9ccf080d6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.952225, - "y": 28.483472 - }, - "endPoint": { - "x": 675.026791, - "y": 28.479105 - } - } - }, - { - "id": "846b4dfd-12f7-5df9-92fd-f3e4014b8db7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.026791, - "y": 28.479105 - }, - "endPoint": { - "x": 675.072409, - "y": 28.449492 - } - } - }, - { - "id": "7fd17d97-b266-5e27-aa8e-2fbd800e2949", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.072409, - "y": 28.449492 - }, - "endPoint": { - "x": 675.093081, - "y": 28.398073 - } - } - }, - { - "id": "c296256b-acc5-5350-94e3-99a36803b647", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.093081, - "y": 28.398073 - }, - "endPoint": { - "x": 675.092807, - "y": 28.328285 - } - } - }, - { - "id": "6dff4893-7e33-5b3a-aef5-7d20cd6e2884", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.092807, - "y": 28.328285 - }, - "endPoint": { - "x": 675.075588, - "y": 28.243568 - } - } - }, - { - "id": "5eea37a7-96a5-56c5-87d3-0af8e41108cf", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.075588, - "y": 28.243568 - }, - "endPoint": { - "x": 675.045424, - "y": 28.147359 - } - } - }, - { - "id": "959150c2-5c9a-55bf-bb43-d1bd2ccee1fc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.045424, - "y": 28.147359 - }, - "endPoint": { - "x": 675.006318, - "y": 28.043099 - } - } - }, - { - "id": "3c9e7828-aba4-5548-b784-37a9472063f8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.006318, - "y": 28.043099 - }, - "endPoint": { - "x": 674.962269, - "y": 27.934226 - } - } - }, - { - "id": "ced3e92a-40cb-55b9-a69a-c45d4a64ced8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.962269, - "y": 27.934226 - }, - "endPoint": { - "x": 674.916685, - "y": 27.823683 - } - } - }, - { - "id": "82994bba-4dca-51e3-a64e-29e8c4d6d39c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.916685, - "y": 27.823683 - }, - "endPoint": { - "x": 674.870601, - "y": 27.712435 - } - } - }, - { - "id": "3596a0d8-b09b-511c-acf5-6ab7234e21d3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.870601, - "y": 27.712435 - }, - "endPoint": { - "x": 674.824457, - "y": 27.600953 - } - } - }, - { - "id": "3b0eef4b-8e80-5e85-88ba-2684b7b58d8b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.824457, - "y": 27.600953 - }, - "endPoint": { - "x": 674.778696, - "y": 27.489706 - } - } - }, - { - "id": "7587d60e-0aef-5831-b5df-4534406f9ffe", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.778696, - "y": 27.489706 - }, - "endPoint": { - "x": 674.733759, - "y": 27.379164 - } - } - }, - { - "id": "07456ca2-4cff-55bb-b1f1-a8b9ffb79a10", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.733759, - "y": 27.379164 - }, - "endPoint": { - "x": 674.690087, - "y": 27.269797 - } - } - }, - { - "id": "1e2fb6f1-09db-59c0-a26c-3324643a0faf", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.690087, - "y": 27.269797 - }, - "endPoint": { - "x": 674.64812, - "y": 27.162076 - } - } - }, - { - "id": "6e11991e-cf4d-51ca-802c-890b2066c661", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.64812, - "y": 27.162076 - }, - "endPoint": { - "x": 674.608302, - "y": 27.056469 - } - } - }, - { - "id": "9f6a9a1b-38b8-5330-8e5e-120d87bee24b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.608302, - "y": 27.056469 - }, - "endPoint": { - "x": 674.571032, - "y": 26.953385 - } - } - }, - { - "id": "c1d3ba31-c57f-5f05-8a73-d7dfcb20ec50", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.571032, - "y": 26.953385 - }, - "endPoint": { - "x": 674.536558, - "y": 26.852973 - } - } - }, - { - "id": "a6d0589b-e21b-54e9-9d49-586bdff04180", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.536558, - "y": 26.852973 - }, - "endPoint": { - "x": 674.505084, - "y": 26.755324 - } - } - }, - { - "id": "bc6951cc-a2c9-5777-936b-4aee8409609f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.505084, - "y": 26.755324 - }, - "endPoint": { - "x": 674.476816, - "y": 26.660526 - } - } - }, - { - "id": "8b7afc9d-f9ec-508c-8007-ff90b247e2df", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.476816, - "y": 26.660526 - }, - "endPoint": { - "x": 674.451961, - "y": 26.568666 - } - } - }, - { - "id": "e5b2638b-8499-58d3-97ac-a25a4c5b90fa", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.451961, - "y": 26.568666 - }, - "endPoint": { - "x": 674.430724, - "y": 26.479833 - } - } - }, - { - "id": "788e2658-0bd6-5b79-9dfa-eb52bd52440d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.430724, - "y": 26.479833 - }, - "endPoint": { - "x": 674.413311, - "y": 26.394116 - } - } - }, - { - "id": "32f57f89-4b0e-50b0-a1e8-51ab41729dd9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.413311, - "y": 26.394116 - }, - "endPoint": { - "x": 674.399929, - "y": 26.311603 - } - } - }, - { - "id": "95e17669-1e2b-5f0e-89fb-73d394d9a125", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.399929, - "y": 26.311603 - }, - "endPoint": { - "x": 674.390728, - "y": 26.232373 - } - } - }, - { - "id": "97f82d4d-e3ee-5f9e-bb20-04cb010c4ebb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.390728, - "y": 26.232373 - }, - "endPoint": { - "x": 674.385645, - "y": 26.156465 - } - } - }, - { - "id": "61042d1d-4d42-5ea0-8485-799ff73afac4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.385645, - "y": 26.156465 - }, - "endPoint": { - "x": 674.384563, - "y": 26.083907 - } - } - }, - { - "id": "16ff2887-4def-551d-b6b4-06a6a1748946", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.384563, - "y": 26.083907 - }, - "endPoint": { - "x": 674.387364, - "y": 26.01473 - } - } - }, - { - "id": "a9b0b8f5-c5c2-559c-9c16-085801367a92", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.387364, - "y": 26.01473 - }, - "endPoint": { - "x": 674.39393, - "y": 25.948962 - } - } - }, - { - "id": "0c09eada-b2a0-5ecd-a34c-b38caac25e99", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.39393, - "y": 25.948962 - }, - "endPoint": { - "x": 674.404144, - "y": 25.886632 - } - } - }, - { - "id": "53d823fa-d7bf-5181-b491-502248d61296", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.404144, - "y": 25.886632 - }, - "endPoint": { - "x": 674.417887, - "y": 25.827771 - } - } - }, - { - "id": "43acacc0-25d1-5c36-b5a3-231a66215d4a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.417887, - "y": 25.827771 - }, - "endPoint": { - "x": 674.435042, - "y": 25.772406 - } - } - }, - { - "id": "0e9fcf00-2c27-5923-b00a-eea584955f67", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.435042, - "y": 25.772406 - }, - "endPoint": { - "x": 674.455462, - "y": 25.720631 - } - } - }, - { - "id": "e52e0689-b1b6-58d1-8a82-af7f05597768", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.455462, - "y": 25.720631 - }, - "endPoint": { - "x": 674.478883, - "y": 25.672794 - } - } - }, - { - "id": "5b11f45c-ce47-516d-aa7d-c959c3ef4189", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.478883, - "y": 25.672794 - }, - "endPoint": { - "x": 674.505011, - "y": 25.629306 - } - } - }, - { - "id": "39a5dfeb-4f77-51e8-89d1-15e6b1590526", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.505011, - "y": 25.629306 - }, - "endPoint": { - "x": 674.533551, - "y": 25.590579 - } - } - }, - { - "id": "00a6d8c6-7a5d-52d0-a7c4-7972d33e3242", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.533551, - "y": 25.590579 - }, - "endPoint": { - "x": 674.564211, - "y": 25.557025 - } - } - }, - { - "id": "4d4dd4c6-a423-5e54-aeca-e7b5773ba7f5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.564211, - "y": 25.557025 - }, - "endPoint": { - "x": 674.596696, - "y": 25.529055 - } - } - }, - { - "id": "ce7bd4ce-94b9-5590-a602-d16f9c2c5b1d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.596696, - "y": 25.529055 - }, - "endPoint": { - "x": 674.630713, - "y": 25.50708 - } - } - }, - { - "id": "34224378-56cc-5db6-b535-f1f46e7fb584", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.630713, - "y": 25.50708 - }, - "endPoint": { - "x": 674.665968, - "y": 25.491512 - } - } - }, - { - "id": "e149ab8b-8be3-5f50-b4d1-93747bf8c058", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.665968, - "y": 25.491512 - }, - "endPoint": { - "x": 674.70224, - "y": 25.482636 - } - } - }, - { - "id": "2a4a47a6-155e-5f6b-ae0f-b825f1229a6e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.70224, - "y": 25.482636 - }, - "endPoint": { - "x": 674.739602, - "y": 25.480225 - } - } - }, - { - "id": "701f3f65-3932-560d-ad4f-d9cfcd15981d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.739602, - "y": 25.480225 - }, - "endPoint": { - "x": 674.778202, - "y": 25.483928 - } - } - }, - { - "id": "2309f43e-6b3f-5631-8d30-4ffdc6478719", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.778202, - "y": 25.483928 - }, - "endPoint": { - "x": 674.818186, - "y": 25.493391 - } - } - }, - { - "id": "7a06621b-a342-5c06-a83d-451a6525bed3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.818186, - "y": 25.493391 - }, - "endPoint": { - "x": 674.8597, - "y": 25.508262 - } - } - }, - { - "id": "8d624f5f-f8cc-5040-b5a9-e8529b6f47e6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.8597, - "y": 25.508262 - }, - "endPoint": { - "x": 674.902891, - "y": 25.528188 - } - } - }, - { - "id": "9ae0f9cb-5975-5e24-82e4-d6696b699a59", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.902891, - "y": 25.528188 - }, - "endPoint": { - "x": 674.947906, - "y": 25.552816 - } - } - }, - { - "id": "84778807-5e0c-5154-910a-d82c790959c8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.947906, - "y": 25.552816 - }, - "endPoint": { - "x": 674.994891, - "y": 25.581794 - } - } - }, - { - "id": "c2a50013-5bd9-59df-ae93-02d7cf4c3a37", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.994891, - "y": 25.581794 - }, - "endPoint": { - "x": 675.043953, - "y": 25.614753 - } - } - }, - { - "id": "e5cb039c-beac-5132-b32f-4a3b2b634b69", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.043953, - "y": 25.614753 - }, - "endPoint": { - "x": 675.095044, - "y": 25.651269 - } - } - }, - { - "id": "46a0d402-ab2b-5d1b-92ce-ddaf6ebd9cfd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.095044, - "y": 25.651269 - }, - "endPoint": { - "x": 675.148076, - "y": 25.690899 - } - } - }, - { - "id": "48334979-af16-5e6f-a5c3-e819f8bb4c66", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.148076, - "y": 25.690899 - }, - "endPoint": { - "x": 675.202959, - "y": 25.733204 - } - } - }, - { - "id": "44910de2-710b-5d06-8d5c-1f80928dc512", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.202959, - "y": 25.733204 - }, - "endPoint": { - "x": 675.259607, - "y": 25.777743 - } - } - }, - { - "id": "0bc18ab0-4699-5f65-848c-7f11f9b14b4e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.259607, - "y": 25.777743 - }, - "endPoint": { - "x": 675.31793, - "y": 25.824074 - } - } - }, - { - "id": "ef34ba4a-a7ab-5407-9db8-c58db9f39c16", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.31793, - "y": 25.824074 - }, - "endPoint": { - "x": 675.377841, - "y": 25.871758 - } - } - }, - { - "id": "1d8ec1f5-dc76-5069-ab89-e59fa9e68ccd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.377841, - "y": 25.871758 - }, - "endPoint": { - "x": 675.439251, - "y": 25.920353 - } - } - }, - { - "id": "6bd0532a-67de-535d-9525-364e3eafa193", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.439251, - "y": 25.920353 - }, - "endPoint": { - "x": 675.501998, - "y": 25.969467 - } - } - }, - { - "id": "fa5578a4-9e47-55de-bebd-8bb27719e18f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.501998, - "y": 25.969467 - }, - "endPoint": { - "x": 675.565628, - "y": 26.018905 - } - } - }, - { - "id": "daba0885-edef-59cf-9bcc-8ef28fea6bbd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.565628, - "y": 26.018905 - }, - "endPoint": { - "x": 675.629609, - "y": 26.068519 - } - } - }, - { - "id": "aa403a3b-1c71-5429-967e-b4b3b150d6ea", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.629609, - "y": 26.068519 - }, - "endPoint": { - "x": 675.693414, - "y": 26.118163 - } - } - }, - { - "id": "40b983d3-fc44-5efd-ac7d-3e46257460f6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.693414, - "y": 26.118163 - }, - "endPoint": { - "x": 675.756511, - "y": 26.16769 - } - } - }, - { - "id": "f8cf13c9-3b10-5409-ab26-8102c4dfb844", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.756511, - "y": 26.16769 - }, - "endPoint": { - "x": 675.818372, - "y": 26.216952 - } - } - }, - { - "id": "2396c95c-1b28-5525-873f-5e2af9a75b13", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.818372, - "y": 26.216952 - }, - "endPoint": { - "x": 675.878468, - "y": 26.265803 - } - } - }, - { - "id": "96710817-af71-5502-902d-1d461d859fb3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.878468, - "y": 26.265803 - }, - "endPoint": { - "x": 675.936268, - "y": 26.314096 - } - } - }, - { - "id": "090ab00e-9234-528b-9efa-a175980127be", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.936268, - "y": 26.314096 - }, - "endPoint": { - "x": 675.991434, - "y": 26.361419 - } - } - }, - { - "id": "c584a00a-33d2-5397-9eac-d52132c156b3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.991434, - "y": 26.361419 - }, - "endPoint": { - "x": 676.044394, - "y": 26.406303 - } - } - }, - { - "id": "ba423979-3ccb-5b65-91ad-91129e71ec3c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.044394, - "y": 26.406303 - }, - "endPoint": { - "x": 676.095766, - "y": 26.447013 - } - } - }, - { - "id": "dafa975d-fae9-55b4-b1e2-ca931077d8c9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.095766, - "y": 26.447013 - }, - "endPoint": { - "x": 676.146168, - "y": 26.481816 - } - } - }, - { - "id": "357f7523-64f0-5582-b04f-494d1188fff5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.146168, - "y": 26.481816 - }, - "endPoint": { - "x": 676.196219, - "y": 26.508978 - } - } - }, - { - "id": "91fa154a-c8b0-57df-893d-2fe9b505c899", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.196219, - "y": 26.508978 - }, - "endPoint": { - "x": 676.246536, - "y": 26.526765 - } - } - }, - { - "id": "c4e4ddd9-80cc-549a-883e-bbf766d66495", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.246536, - "y": 26.526765 - }, - "endPoint": { - "x": 676.297739, - "y": 26.533442 - } - } - }, - { - "id": "b5c05b07-3279-5780-923d-e3b0134bf28c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.297739, - "y": 26.533442 - }, - "endPoint": { - "x": 676.350444, - "y": 26.527276 - } - } - }, - { - "id": "bf40c0e3-ed07-5952-8fe2-6528b48e415c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.350444, - "y": 26.527276 - }, - "endPoint": { - "x": 676.405271, - "y": 26.507257 - } - } - }, - { - "id": "42ed5d24-4e40-5915-a264-62bb5de0f708", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.405271, - "y": 26.507257 - }, - "endPoint": { - "x": 676.462837, - "y": 26.475277 - } - } - }, - { - "id": "72e94493-6f98-5c12-9d34-fa61cce2c267", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.462837, - "y": 26.475277 - }, - "endPoint": { - "x": 676.523759, - "y": 26.433951 - } - } - }, - { - "id": "6059ca20-3527-5e64-8b9c-d14ac8ac2a7d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.523759, - "y": 26.433951 - }, - "endPoint": { - "x": 676.588653, - "y": 26.385894 - } - } - }, - { - "id": "d55a137d-8b97-561b-99aa-19c16231b1ba", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.588653, - "y": 26.385894 - }, - "endPoint": { - "x": 676.658138, - "y": 26.333723 - } - } - }, - { - "id": "ae0bc772-f1da-55c1-91ef-bb5a422efa30", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.658138, - "y": 26.333723 - }, - "endPoint": { - "x": 676.732829, - "y": 26.280053 - } - } - }, - { - "id": "86e329aa-cabc-5d6b-b121-dc4daf5b3947", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.732829, - "y": 26.280053 - }, - "endPoint": { - "x": 676.813345, - "y": 26.2275 - } - } - }, - { - "id": "8d0a66f1-156d-5ce3-82b5-617b7635fd6b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.813345, - "y": 26.2275 - }, - "endPoint": { - "x": 676.900302, - "y": 26.178679 - } - } - }, - { - "id": "b1b4efb3-45b3-534b-bce8-7ba2e15bd6c1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.900302, - "y": 26.178679 - }, - "endPoint": { - "x": 676.994028, - "y": 26.135785 - } - } - }, - { - "id": "2ad3eff8-1742-5846-bd34-09700b26c465", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.994028, - "y": 26.135785 - }, - "endPoint": { - "x": 677.093694, - "y": 26.099328 - } - } - }, - { - "id": "02a3a3df-224a-5a2d-aea7-c6e83aa76c54", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 677.093694, - "y": 26.099328 - }, - "endPoint": { - "x": 677.198184, - "y": 26.069395 - } - } - }, - { - "id": "590ee465-57fe-5272-8fb0-e6eb19e62a56", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 677.198184, - "y": 26.069395 - }, - "endPoint": { - "x": 677.306378, - "y": 26.046075 - } - } - }, - { - "id": "16a57aaf-8d67-57cc-8fc9-738f40560c80", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 677.306378, - "y": 26.046075 - }, - "endPoint": { - "x": 677.417161, - "y": 26.029455 - } - } - }, - { - "id": "744cb888-585c-570c-a81a-9b7016a7f283", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 677.417161, - "y": 26.029455 - }, - "endPoint": { - "x": 677.529413, - "y": 26.019625 - } - } - }, - { - "id": "c4405a5a-10b9-5b6c-90b8-39e3e9d2b3bf", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 677.529413, - "y": 26.019625 - }, - "endPoint": { - "x": 677.642017, - "y": 26.016671 - } - } - }, - { - "id": "f8e0c61d-c68c-5a14-b9aa-9bba356102ed", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 677.642017, - "y": 26.016671 - }, - "endPoint": { - "x": 677.753856, - "y": 26.020683 - } - } - }, - { - "id": "0e8b8d9e-2ca5-5ad7-923c-f63b2df16af9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 677.753856, - "y": 26.020683 - }, - "endPoint": { - "x": 677.864287, - "y": 26.031709 - } - } - }, - { - "id": "5f62d7f4-cb3b-53a3-8d6d-7cb7427b7d5c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 677.864287, - "y": 26.031709 - }, - "endPoint": { - "x": 677.97457, - "y": 26.049642 - } - } - }, - { - "id": "e4176580-774d-5909-8b59-a017fd30ed0d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 677.97457, - "y": 26.049642 - }, - "endPoint": { - "x": 678.086442, - "y": 26.074334 - } - } - }, - { - "id": "f610f667-2dc2-56bb-9bfe-170dcae6806d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 678.086442, - "y": 26.074334 - }, - "endPoint": { - "x": 678.201638, - "y": 26.105639 - } - } - }, - { - "id": "a4b8679c-3acf-51d6-b00d-d7fef5307e4f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 678.201638, - "y": 26.105639 - }, - "endPoint": { - "x": 678.321893, - "y": 26.143409 - } - } - }, - { - "id": "dbbbb3b2-39a1-50c7-a219-8828b525a1e3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 678.321893, - "y": 26.143409 - }, - "endPoint": { - "x": 678.448943, - "y": 26.187498 - } - } - }, - { - "id": "71405273-4821-5c0b-9bdf-b62e34bb4bd1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 678.448943, - "y": 26.187498 - }, - "endPoint": { - "x": 678.584525, - "y": 26.237758 - } - } - }, - { - "id": "6d0451db-8841-54ff-be99-db52d6c941e0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 678.584525, - "y": 26.237758 - }, - "endPoint": { - "x": 678.730372, - "y": 26.294043 - } - } - }, - { - "id": "41b4a860-42f0-58fb-b0e1-8bac998aa1fe", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 678.730372, - "y": 26.294043 - }, - "endPoint": { - "x": 678.887457, - "y": 26.35604 - } - } - }, - { - "id": "f36e88a3-5d5c-5234-a073-796cd160536d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 678.887457, - "y": 26.35604 - }, - "endPoint": { - "x": 679.053692, - "y": 26.422767 - } - } - }, - { - "id": "4b598aaa-b289-5818-9539-3f2243337dca", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 679.053692, - "y": 26.422767 - }, - "endPoint": { - "x": 679.226221, - "y": 26.493081 - } - } - }, - { - "id": "e5cf05a5-1b61-5d7e-9252-8292b9202848", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 679.226221, - "y": 26.493081 - }, - "endPoint": { - "x": 679.402193, - "y": 26.565834 - } - } - }, - { - "id": "e314f6c7-8517-51c4-8fcf-c04650688c7e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 679.402193, - "y": 26.565834 - }, - "endPoint": { - "x": 679.578753, - "y": 26.639881 - } - } - }, - { - "id": "cf243945-e9a4-548e-8cfe-dcf98ea3b133", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 679.578753, - "y": 26.639881 - }, - "endPoint": { - "x": 679.753049, - "y": 26.714076 - } - } - }, - { - "id": "fd13ac45-f8c3-5095-a9be-d5c994138321", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 679.753049, - "y": 26.714076 - }, - "endPoint": { - "x": 679.922228, - "y": 26.787272 - } - } - }, - { - "id": "f9e7b493-2ee0-513f-a794-7f21d64b89a7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 679.922228, - "y": 26.787272 - }, - "endPoint": { - "x": 680.083434, - "y": 26.858323 - } - } - }, - { - "id": "6404bb32-8811-57b0-9f58-ff3111dfde33", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 680.083434, - "y": 26.858323 - }, - "endPoint": { - "x": 680.234424, - "y": 26.92633 - } - } - }, - { - "id": "ba6c789b-09f4-551e-9f0a-6723daee7981", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 680.234424, - "y": 26.92633 - }, - "endPoint": { - "x": 680.375384, - "y": 26.991368 - } - } - }, - { - "id": "d6a9d20e-9afb-567e-9e83-ce2ca9d60ef4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 680.375384, - "y": 26.991368 - }, - "endPoint": { - "x": 680.507107, - "y": 27.053763 - } - } - }, - { - "id": "25eb9c84-c4d7-549d-83ae-69f49e7e90f2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 680.507107, - "y": 27.053763 - }, - "endPoint": { - "x": 680.630388, - "y": 27.113836 - } - } - }, - { - "id": "25dad11e-a800-505c-8640-12e9e32f7a3e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 680.630388, - "y": 27.113836 - }, - "endPoint": { - "x": 680.74602, - "y": 27.17191 - } - } - }, - { - "id": "98c6afa8-aa51-502e-aa04-aca68c10ccce", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 680.74602, - "y": 27.17191 - }, - "endPoint": { - "x": 680.854798, - "y": 27.22831 - } - } - }, - { - "id": "f913b9ce-c649-5e90-9b8e-0c6f5f771b2b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 680.854798, - "y": 27.22831 - }, - "endPoint": { - "x": 680.957516, - "y": 27.283357 - } - } - }, - { - "id": "b2b58384-6da8-51cc-bf5f-2e9b260f49af", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 680.957516, - "y": 27.283357 - }, - "endPoint": { - "x": 681.054968, - "y": 27.337374 - } - } - }, - { - "id": "7ea3a5d5-6da0-5b05-a213-102863b718d7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.054968, - "y": 27.337374 - }, - "endPoint": { - "x": 681.147723, - "y": 27.390563 - } - } - }, - { - "id": "6e7f0111-8a57-5cee-aa19-538f3a915d4e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.147723, - "y": 27.390563 - }, - "endPoint": { - "x": 681.235447, - "y": 27.442635 - } - } - }, - { - "id": "5cac8813-68ad-577f-b467-7e938c30d9f8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.235447, - "y": 27.442635 - }, - "endPoint": { - "x": 681.31758, - "y": 27.493177 - } - } - }, - { - "id": "bafae0f3-c123-543f-95cb-a95463a327bf", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.31758, - "y": 27.493177 - }, - "endPoint": { - "x": 681.393565, - "y": 27.541778 - } - } - }, - { - "id": "9fda4c3d-0ee5-57b2-b928-addb8c79c9ed", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.393565, - "y": 27.541778 - }, - "endPoint": { - "x": 681.462842, - "y": 27.588028 - } - } - }, - { - "id": "56f3f0e6-fa35-5a5e-955d-59db5215e139", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.462842, - "y": 27.588028 - }, - "endPoint": { - "x": 681.524852, - "y": 27.631514 - } - } - }, - { - "id": "1aeadd62-65d0-568c-b602-448633607fa3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.524852, - "y": 27.631514 - }, - "endPoint": { - "x": 681.579036, - "y": 27.671825 - } - } - }, - { - "id": "da230917-15fb-5165-970f-3d0033c4838f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.579036, - "y": 27.671825 - }, - "endPoint": { - "x": 681.624835, - "y": 27.70855 - } - } - }, - { - "id": "cc916101-4add-5460-929c-36612cd85290", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.624835, - "y": 27.70855 - }, - "endPoint": { - "x": 681.661602, - "y": 27.741194 - } - } - }, - { - "id": "724394e7-d62c-53c7-8826-80db921987b7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.661602, - "y": 27.741194 - }, - "endPoint": { - "x": 681.688337, - "y": 27.768929 - } - } - }, - { - "id": "3d58b769-658d-5e49-b6b7-5f77408cd9d4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.688337, - "y": 27.768929 - }, - "endPoint": { - "x": 681.703951, - "y": 27.790845 - } - } - }, - { - "id": "c5ff9062-ee2e-5fbc-a383-7eb15cd09e3c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.703951, - "y": 27.790845 - }, - "endPoint": { - "x": 681.707357, - "y": 27.80603 - } - } - }, - { - "id": "0900eb42-d452-5f5c-bf8e-c7c551416ec1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.707357, - "y": 27.80603 - }, - "endPoint": { - "x": 681.697467, - "y": 27.813574 - } - } - }, - { - "id": "9da3ff32-21e1-5d93-b315-c3c102f246b3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.697467, - "y": 27.813574 - }, - "endPoint": { - "x": 681.673192, - "y": 27.812566 - } - } - }, - { - "id": "ff56ad77-fa26-519d-bef4-6f440c03182b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.673192, - "y": 27.812566 - }, - "endPoint": { - "x": 681.633443, - "y": 27.802094 - } - } - }, - { - "id": "8b014a29-6c8e-5463-96ac-03d08b0b43bc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.633443, - "y": 27.802094 - }, - "endPoint": { - "x": 681.577134, - "y": 27.781249 - } - } - }, - { - "id": "a21a3ad8-f518-5820-8e0d-571330bd3bb5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.577134, - "y": 27.781249 - }, - "endPoint": { - "x": 681.5037, - "y": 27.74956 - } - } - }, - { - "id": "191adedf-d065-5ad7-ba9d-b60f602f2502", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.5037, - "y": 27.74956 - }, - "endPoint": { - "x": 681.414675, - "y": 27.708319 - } - } - }, - { - "id": "75882c0f-cb43-5e5f-9587-394bdcd8f435", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.414675, - "y": 27.708319 - }, - "endPoint": { - "x": 681.312118, - "y": 27.659262 - } - } - }, - { - "id": "6f87a9dc-e296-545a-9743-f20d848fc496", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.312118, - "y": 27.659262 - }, - "endPoint": { - "x": 681.198087, - "y": 27.604121 - } - } - }, - { - "id": "1411770f-93a6-57a2-ba58-9c0a97e14588", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.198087, - "y": 27.604121 - }, - "endPoint": { - "x": 681.074642, - "y": 27.544631 - } - } - }, - { - "id": "cfa1559c-59fe-5e2a-8395-a8ea568343b6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.074642, - "y": 27.544631 - }, - "endPoint": { - "x": 680.943841, - "y": 27.482526 - } - } - }, - { - "id": "b779555a-98cf-5e52-a4f2-52c3219caf03", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 680.943841, - "y": 27.482526 - }, - "endPoint": { - "x": 680.807743, - "y": 27.419539 - } - } - }, - { - "id": "243dfd80-e007-5463-aef2-7a3d5ddea008", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 680.807743, - "y": 27.419539 - }, - "endPoint": { - "x": 680.668406, - "y": 27.357404 - } - } - }, - { - "id": "eae7b3ba-76e0-582a-bfa1-41de620faa6b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 680.668406, - "y": 27.357404 - }, - "endPoint": { - "x": 680.527629, - "y": 27.297508 - } - } - }, - { - "id": "c2612806-1b27-5bf3-80a5-c9f3966a238e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 680.527629, - "y": 27.297508 - }, - "endPoint": { - "x": 680.386173, - "y": 27.239846 - } - } - }, - { - "id": "4e74f761-e2bf-5de3-b354-32d86e7894b7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 680.386173, - "y": 27.239846 - }, - "endPoint": { - "x": 680.244538, - "y": 27.184064 - } - } - }, - { - "id": "901cec5d-6543-5d81-8f07-680127bafd4f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 680.244538, - "y": 27.184064 - }, - "endPoint": { - "x": 680.103227, - "y": 27.129811 - } - } - }, - { - "id": "d530d35e-96f2-506c-b7fe-5c19cdf0a7e9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 680.103227, - "y": 27.129811 - }, - "endPoint": { - "x": 679.962739, - "y": 27.076734 - } - } - }, - { - "id": "5cfaf159-daa7-5fc2-b206-6986740bafe3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 679.962739, - "y": 27.076734 - }, - "endPoint": { - "x": 679.823575, - "y": 27.02448 - } - } - }, - { - "id": "f3d5419b-64b6-56ff-baa5-00701e8c6ca9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 679.823575, - "y": 27.02448 - }, - "endPoint": { - "x": 679.686237, - "y": 26.972696 - } - } - }, - { - "id": "c46b1c03-e4ed-5a12-bc50-2e843dc7d5a0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 679.686237, - "y": 26.972696 - }, - "endPoint": { - "x": 679.551225, - "y": 26.92103 - } - } - }, - { - "id": "8de81fbe-a3d2-5dad-8c66-1cf7c2e17e42", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 679.551225, - "y": 26.92103 - }, - "endPoint": { - "x": 679.418933, - "y": 26.869266 - } - } - }, - { - "id": "60a7480e-5c47-50e2-8052-bdcdc98763f7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 679.418933, - "y": 26.869266 - }, - "endPoint": { - "x": 679.289319, - "y": 26.817738 - } - } - }, - { - "id": "5834dae1-4a70-5e6e-97d9-fa03534efa94", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 679.289319, - "y": 26.817738 - }, - "endPoint": { - "x": 679.162238, - "y": 26.766916 - } - } - }, - { - "id": "82eb89b3-8f97-551f-bce3-c774307703e2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 679.162238, - "y": 26.766916 - }, - "endPoint": { - "x": 679.03754, - "y": 26.717269 - } - } - }, - { - "id": "d51295a0-f737-552d-8d44-a7505fcd853f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 679.03754, - "y": 26.717269 - }, - "endPoint": { - "x": 678.915078, - "y": 26.669268 - } - } - }, - { - "id": "89c277f9-828d-5b9a-a86d-debac4926332", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 678.915078, - "y": 26.669268 - }, - "endPoint": { - "x": 678.794704, - "y": 26.623382 - } - } - }, - { - "id": "b601d282-579c-5fc0-ba03-e63f11fc504f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 678.794704, - "y": 26.623382 - }, - "endPoint": { - "x": 678.676271, - "y": 26.580083 - } - } - }, - { - "id": "bddd7d58-8ce6-5781-a82c-512b6370ff27", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 678.676271, - "y": 26.580083 - }, - "endPoint": { - "x": 678.55963, - "y": 26.539839 - } - } - }, - { - "id": "90ea0e75-3114-5afc-bef5-90088d69e930", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 678.55963, - "y": 26.539839 - }, - "endPoint": { - "x": 678.444703, - "y": 26.503054 - } - } - }, - { - "id": "18e70b2b-3905-5448-b49e-f9d5c2bd7ea2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 678.444703, - "y": 26.503054 - }, - "endPoint": { - "x": 678.331686, - "y": 26.469853 - } - } - }, - { - "id": "d75749c0-9d0d-5b2f-8b68-809eae945c0f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 678.331686, - "y": 26.469853 - }, - "endPoint": { - "x": 678.220845, - "y": 26.440296 - } - } - }, - { - "id": "caa4578f-0252-57ce-b322-e68a6a0bfc09", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 678.220845, - "y": 26.440296 - }, - "endPoint": { - "x": 678.112445, - "y": 26.414442 - } - } - }, - { - "id": "8cdda09c-a378-55b0-8e2f-4fed670aaabe", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 678.112445, - "y": 26.414442 - }, - "endPoint": { - "x": 678.006751, - "y": 26.392349 - } - } - }, - { - "id": "6f08a722-c3ad-5a9f-9354-756e3ced0010", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 678.006751, - "y": 26.392349 - }, - "endPoint": { - "x": 677.90403, - "y": 26.374076 - } - } - }, - { - "id": "ad8832d6-bbf2-5fb2-a8e5-18f1277b67f4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 677.90403, - "y": 26.374076 - }, - "endPoint": { - "x": 677.804547, - "y": 26.359683 - } - } - }, - { - "id": "289943a7-45a1-5324-91db-daa0e8fb0eab", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 677.804547, - "y": 26.359683 - }, - "endPoint": { - "x": 677.708567, - "y": 26.349227 - } - } - }, - { - "id": "112a80d3-70fd-5e65-88a4-dbaa52e087fe", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 677.708567, - "y": 26.349227 - }, - "endPoint": { - "x": 677.616381, - "y": 26.342749 - } - } - }, - { - "id": "fc709c18-01b9-5261-a90d-d9c4544fa0f6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 677.616381, - "y": 26.342749 - }, - "endPoint": { - "x": 677.528374, - "y": 26.340208 - } - } - }, - { - "id": "87713c98-4e41-5d83-9418-dec1a68de518", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 677.528374, - "y": 26.340208 - }, - "endPoint": { - "x": 677.444959, - "y": 26.341548 - } - } - }, - { - "id": "c16a1898-1061-5ab8-9a5b-6db4b6385676", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 677.444959, - "y": 26.341548 - }, - "endPoint": { - "x": 677.366545, - "y": 26.346708 - } - } - }, - { - "id": "54c2da75-af12-557b-b507-a7429d58b701", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 677.366545, - "y": 26.346708 - }, - "endPoint": { - "x": 677.293546, - "y": 26.355631 - } - } - }, - { - "id": "c589eba6-50b2-58f5-9b7f-f857f6667a59", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 677.293546, - "y": 26.355631 - }, - "endPoint": { - "x": 677.226371, - "y": 26.368258 - } - } - }, - { - "id": "7f948ce0-ca61-5b45-9836-91fbffd47642", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 677.226371, - "y": 26.368258 - }, - "endPoint": { - "x": 677.165432, - "y": 26.38453 - } - } - }, - { - "id": "9d60fa69-ea43-5bc8-a579-03edba58d6d0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 677.165432, - "y": 26.38453 - }, - "endPoint": { - "x": 677.11114, - "y": 26.404389 - } - } - }, - { - "id": "ad545aa5-cfcc-5a6c-852e-5146b0bdfb77", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 677.11114, - "y": 26.404389 - }, - "endPoint": { - "x": 677.063711, - "y": 26.427727 - } - } - }, - { - "id": "07c2b038-2e27-5da5-aaa0-e7132bb1cd49", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 677.063711, - "y": 26.427727 - }, - "endPoint": { - "x": 677.022575, - "y": 26.454241 - } - } - }, - { - "id": "76e735d0-f9d0-57b7-8f8c-0b8601626afa", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 677.022575, - "y": 26.454241 - }, - "endPoint": { - "x": 676.986968, - "y": 26.483576 - } - } - }, - { - "id": "efeacf8f-b1ad-55f8-a67d-4c437809af2b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.986968, - "y": 26.483576 - }, - "endPoint": { - "x": 676.956125, - "y": 26.515381 - } - } - }, - { - "id": "29df9b43-8ef4-56c7-8088-af62128d1910", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.956125, - "y": 26.515381 - }, - "endPoint": { - "x": 676.929283, - "y": 26.549303 - } - } - }, - { - "id": "c6495d14-0de3-5b6e-a05d-81feb411cb41", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.929283, - "y": 26.549303 - }, - "endPoint": { - "x": 676.905676, - "y": 26.584987 - } - } - }, - { - "id": "a5ac9892-4c18-5734-a6f9-5ce21d3e7f2e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.905676, - "y": 26.584987 - }, - "endPoint": { - "x": 676.88454, - "y": 26.622082 - } - } - }, - { - "id": "4beb8625-8655-508f-89ee-056822b42d0c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.88454, - "y": 26.622082 - }, - "endPoint": { - "x": 676.86511, - "y": 26.660234 - } - } - }, - { - "id": "94e937e8-8fab-5913-b342-047f60b068a6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.86511, - "y": 26.660234 - }, - "endPoint": { - "x": 676.846773, - "y": 26.699105 - } - } - }, - { - "id": "a6df25a3-f898-5fd0-9165-b306c65dfb4c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.846773, - "y": 26.699105 - }, - "endPoint": { - "x": 676.829525, - "y": 26.738415 - } - } - }, - { - "id": "a8830461-9b19-5bfc-b544-772fc7352d87", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.829525, - "y": 26.738415 - }, - "endPoint": { - "x": 676.813514, - "y": 26.777901 - } - } - }, - { - "id": "19ce23b9-0b3e-5091-a8aa-cb017a4f8666", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.813514, - "y": 26.777901 - }, - "endPoint": { - "x": 676.798885, - "y": 26.817299 - } - } - }, - { - "id": "9312a92b-9d2a-5742-91e0-02c1ea3c2f31", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.798885, - "y": 26.817299 - }, - "endPoint": { - "x": 676.785787, - "y": 26.856343 - } - } - }, - { - "id": "fa481bb0-08ae-568e-80c0-7d5d74289758", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.785787, - "y": 26.856343 - }, - "endPoint": { - "x": 676.774366, - "y": 26.89477 - } - } - }, - { - "id": "efadf71e-a358-52a0-8132-80fe96452bc4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.774366, - "y": 26.89477 - }, - "endPoint": { - "x": 676.764771, - "y": 26.932315 - } - } - }, - { - "id": "89eb4230-8f37-5cec-8374-5388fa817425", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.764771, - "y": 26.932315 - }, - "endPoint": { - "x": 676.757147, - "y": 26.968714 - } - } - }, - { - "id": "d94f88ea-2333-5c38-bcb5-cea1d4b0b84e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.757147, - "y": 26.968714 - }, - "endPoint": { - "x": 676.751559, - "y": 27.003761 - } - } - }, - { - "id": "06a62567-4f20-516f-a7e6-f5c8330da5a7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.751559, - "y": 27.003761 - }, - "endPoint": { - "x": 676.747737, - "y": 27.037486 - } - } - }, - { - "id": "5e8f89a6-c2d8-5496-bbb2-8c0c6310d7f3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.747737, - "y": 27.037486 - }, - "endPoint": { - "x": 676.745327, - "y": 27.069976 - } - } - }, - { - "id": "57043c80-2e52-5eeb-9060-717544da6800", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.745327, - "y": 27.069976 - }, - "endPoint": { - "x": 676.743976, - "y": 27.10132 - } - } - }, - { - "id": "a0aeafbb-2e2e-55c4-816e-13ad42ae61e7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.743976, - "y": 27.10132 - }, - "endPoint": { - "x": 676.743331, - "y": 27.131605 - } - } - }, - { - "id": "b08282b6-6a8c-505f-bedd-63c079c7f6d4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.743331, - "y": 27.131605 - }, - "endPoint": { - "x": 676.743038, - "y": 27.16092 - } - } - }, - { - "id": "3ac093d1-3843-5c02-8164-eab6f4330c0c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.743038, - "y": 27.16092 - }, - "endPoint": { - "x": 676.742743, - "y": 27.189353 - } - } - }, - { - "id": "f5ff0956-8c14-5505-94dd-0c05f6878196", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.742743, - "y": 27.189353 - }, - "endPoint": { - "x": 676.742095, - "y": 27.216991 - } - } - }, - { - "id": "88f12582-45d8-5855-a5c4-936294287bd5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.742095, - "y": 27.216991 - }, - "endPoint": { - "x": 676.740738, - "y": 27.24387 - } - } - }, - { - "id": "351ef306-b424-5d31-aca9-72c9c715008d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.740738, - "y": 27.24387 - }, - "endPoint": { - "x": 676.73832, - "y": 27.269807 - } - } - }, - { - "id": "9418bf6f-4344-525c-9e34-42ed6234fe61", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.73832, - "y": 27.269807 - }, - "endPoint": { - "x": 676.73449, - "y": 27.294568 - } - } - }, - { - "id": "815eaa24-aec8-5c8d-b712-011b814c862a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.73449, - "y": 27.294568 - }, - "endPoint": { - "x": 676.728894, - "y": 27.317918 - } - } - }, - { - "id": "1137f53b-3293-5b13-8306-2b95242c379e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.728894, - "y": 27.317918 - }, - "endPoint": { - "x": 676.72118, - "y": 27.339623 - } - } - }, - { - "id": "f0bb76c4-261a-5704-9444-7964aeb060a2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.72118, - "y": 27.339623 - }, - "endPoint": { - "x": 676.710996, - "y": 27.359447 - } - } - }, - { - "id": "4dda3954-3612-5055-9910-2b725ce54fd6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.710996, - "y": 27.359447 - }, - "endPoint": { - "x": 676.697989, - "y": 27.377155 - } - } - }, - { - "id": "321e402e-a8f2-5acf-b93c-3d3c8421d54e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.697989, - "y": 27.377155 - }, - "endPoint": { - "x": 676.681806, - "y": 27.392513 - } - } - }, - { - "id": "f7306208-f5f8-5f81-9337-6caf29f15203", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.681806, - "y": 27.392513 - }, - "endPoint": { - "x": 676.662253, - "y": 27.405301 - } - } - }, - { - "id": "c53e903a-0790-5843-aa0d-9441beb85695", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.662253, - "y": 27.405301 - }, - "endPoint": { - "x": 676.639759, - "y": 27.415356 - } - } - }, - { - "id": "76a0f945-8e29-57f5-ad13-52e7fc2bdb4e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.639759, - "y": 27.415356 - }, - "endPoint": { - "x": 676.614913, - "y": 27.422532 - } - } - }, - { - "id": "f42cb3c0-bbb8-52f3-9392-9bd892d05a4b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.614913, - "y": 27.422532 - }, - "endPoint": { - "x": 676.588303, - "y": 27.426682 - } - } - }, - { - "id": "d7c96f4b-66a7-54e7-a407-77bdc4517140", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.588303, - "y": 27.426682 - }, - "endPoint": { - "x": 676.560516, - "y": 27.427658 - } - } - }, - { - "id": "afb55bdf-15ba-56e2-8a90-c13427b8f7e8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.560516, - "y": 27.427658 - }, - "endPoint": { - "x": 676.532141, - "y": 27.425313 - } - } - }, - { - "id": "6b0d592c-9fb3-5cd6-9e54-fd4fe1181356", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.532141, - "y": 27.425313 - }, - "endPoint": { - "x": 676.503765, - "y": 27.419501 - } - } - }, - { - "id": "4bad80b7-bae1-5097-8e4b-02fde9f32e5a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.503765, - "y": 27.419501 - }, - "endPoint": { - "x": 676.475977, - "y": 27.410073 - } - } - }, - { - "id": "f374fb9e-450a-51b2-adb2-e7668eb44802", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.475977, - "y": 27.410073 - }, - "endPoint": { - "x": 676.449266, - "y": 27.396967 - } - } - }, - { - "id": "31887df2-ca70-548b-9e1f-640e3296011a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.449266, - "y": 27.396967 - }, - "endPoint": { - "x": 676.42373, - "y": 27.380452 - } - } - }, - { - "id": "0cd140de-c389-5db6-89b3-d5cd4706b811", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.42373, - "y": 27.380452 - }, - "endPoint": { - "x": 676.39937, - "y": 27.36088 - } - } - }, - { - "id": "a9f3d6a5-142c-5462-83c8-64ed47d77a5e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.39937, - "y": 27.36088 - }, - "endPoint": { - "x": 676.376186, - "y": 27.338604 - } - } - }, - { - "id": "93b03bb5-0ed1-5c28-9ceb-d5c49041cac3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.376186, - "y": 27.338604 - }, - "endPoint": { - "x": 676.354178, - "y": 27.313976 - } - } - }, - { - "id": "2eb66832-6a71-5859-b5c9-610ded9270d9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.354178, - "y": 27.313976 - }, - "endPoint": { - "x": 676.333348, - "y": 27.287349 - } - } - }, - { - "id": "90c66231-1e16-59ec-96cb-5744f859a6e0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.333348, - "y": 27.287349 - }, - "endPoint": { - "x": 676.313694, - "y": 27.259077 - } - } - }, - { - "id": "32daaeec-427e-553f-8517-1718f358910f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.313694, - "y": 27.259077 - }, - "endPoint": { - "x": 676.295217, - "y": 27.22951 - } - } - }, - { - "id": "958f07cd-ffa4-5b70-865f-f79d61edd9d0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.295217, - "y": 27.22951 - }, - "endPoint": { - "x": 676.277756, - "y": 27.198895 - } - } - }, - { - "id": "fd039f24-a03c-5357-bf16-e4b6f35d01d1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.277756, - "y": 27.198895 - }, - "endPoint": { - "x": 676.260502, - "y": 27.167045 - } - } - }, - { - "id": "62b8cf8f-e936-5851-8841-9546d868e5ec", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.260502, - "y": 27.167045 - }, - "endPoint": { - "x": 676.242484, - "y": 27.133666 - } - } - }, - { - "id": "3d10f154-2f2a-524f-81a8-1b63a00cddf0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.242484, - "y": 27.133666 - }, - "endPoint": { - "x": 676.222732, - "y": 27.098465 - } - } - }, - { - "id": "8e621d48-8ba5-52fb-9a08-8d6a889571f6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.222732, - "y": 27.098465 - }, - "endPoint": { - "x": 676.200273, - "y": 27.061148 - } - } - }, - { - "id": "844436e0-8b4b-5129-9431-38ae742f3a1b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.200273, - "y": 27.061148 - }, - "endPoint": { - "x": 676.174139, - "y": 27.02142 - } - } - }, - { - "id": "fe284309-3318-5e12-9de8-c52c55cf5a92", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.174139, - "y": 27.02142 - }, - "endPoint": { - "x": 676.143357, - "y": 26.978989 - } - } - }, - { - "id": "f888972a-e589-54d9-8327-a59866b75a09", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.143357, - "y": 26.978989 - }, - "endPoint": { - "x": 676.106958, - "y": 26.93356 - } - } - }, - { - "id": "21436048-a1c9-5d51-a87d-44f5ee2874b7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.106958, - "y": 26.93356 - }, - "endPoint": { - "x": 676.064347, - "y": 26.885001 - } - } - }, - { - "id": "11691d2c-c949-533e-aa60-cbe7e8fab896", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.064347, - "y": 26.885001 - }, - "endPoint": { - "x": 676.016441, - "y": 26.833827 - } - } - }, - { - "id": "4ded983d-a0d7-584c-91c5-519c921086e8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.016441, - "y": 26.833827 - }, - "endPoint": { - "x": 675.964535, - "y": 26.780713 - } - } - }, - { - "id": "d2de2ccc-2855-5dc7-bfb4-af249e2789ea", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.964535, - "y": 26.780713 - }, - "endPoint": { - "x": 675.909923, - "y": 26.726337 - } - } - }, - { - "id": "45188c71-6f42-55d0-90b0-e87e5095c033", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.909923, - "y": 26.726337 - }, - "endPoint": { - "x": 675.853898, - "y": 26.671372 - } - } - }, - { - "id": "6887d551-84dd-5708-aaca-edc0d3c03a41", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.853898, - "y": 26.671372 - }, - "endPoint": { - "x": 675.797755, - "y": 26.616497 - } - } - }, - { - "id": "a91bdb58-92ef-521b-a5af-6526da7c42c1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.797755, - "y": 26.616497 - }, - "endPoint": { - "x": 675.742787, - "y": 26.562386 - } - } - }, - { - "id": "9114db84-889c-5d86-91f7-d9b3f52fcd9a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.742787, - "y": 26.562386 - }, - "endPoint": { - "x": 675.69029, - "y": 26.509716 - } - } - }, - { - "id": "107a41df-699e-59ae-b15e-16f2dd84c9b3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.69029, - "y": 26.509716 - }, - "endPoint": { - "x": 675.641257, - "y": 26.459049 - } - } - }, - { - "id": "47c286d6-8660-5a50-895e-faba9b5ddc8a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.641257, - "y": 26.459049 - }, - "endPoint": { - "x": 675.595488, - "y": 26.4105 - } - } - }, - { - "id": "03585def-07f0-52f3-be28-84f2cb50387e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.595488, - "y": 26.4105 - }, - "endPoint": { - "x": 675.552484, - "y": 26.364067 - } - } - }, - { - "id": "24f6d4cf-ec44-5f70-9efb-97f5fba5a557", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.552484, - "y": 26.364067 - }, - "endPoint": { - "x": 675.511743, - "y": 26.31975 - } - } - }, - { - "id": "85a4a7f1-5f30-5950-beba-a30c7e42a6f9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.511743, - "y": 26.31975 - }, - "endPoint": { - "x": 675.472766, - "y": 26.27755 - } - } - }, - { - "id": "b1ea31d8-cd86-5239-ba94-51b62ae3bd62", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.472766, - "y": 26.27755 - }, - "endPoint": { - "x": 675.435053, - "y": 26.237466 - } - } - }, - { - "id": "deec4da3-6405-589c-bc7b-eb5a9f482124", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.435053, - "y": 26.237466 - }, - "endPoint": { - "x": 675.398104, - "y": 26.199498 - } - } - }, - { - "id": "0a672ee8-b090-5f94-adad-4e68be290b24", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.398104, - "y": 26.199498 - }, - "endPoint": { - "x": 675.361419, - "y": 26.163645 - } - } - }, - { - "id": "8187a78a-31cd-53cd-8f72-d3e4a4eb5763", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.361419, - "y": 26.163645 - }, - "endPoint": { - "x": 675.324625, - "y": 26.129913 - } - } - }, - { - "id": "f51824a6-74db-5bf2-8c72-685972e9612f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.324625, - "y": 26.129913 - }, - "endPoint": { - "x": 675.287861, - "y": 26.098327 - } - } - }, - { - "id": "16c68dcd-3edf-5f7e-8b76-83fd27834bdf", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.287861, - "y": 26.098327 - }, - "endPoint": { - "x": 675.25139, - "y": 26.068914 - } - } - }, - { - "id": "0ebfe179-b617-51f7-aeee-7867095fe228", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.25139, - "y": 26.068914 - }, - "endPoint": { - "x": 675.215478, - "y": 26.041706 - } - } - }, - { - "id": "bdbe956e-e785-58b4-9c0f-5156052aa600", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.215478, - "y": 26.041706 - }, - "endPoint": { - "x": 675.180389, - "y": 26.01673 - } - } - }, - { - "id": "24dfd1bd-e341-5a10-a6e7-fda387ace5e0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.180389, - "y": 26.01673 - }, - "endPoint": { - "x": 675.146389, - "y": 25.994017 - } - } - }, - { - "id": "0235cbff-2016-577f-8b50-6eb6371cca4b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.146389, - "y": 25.994017 - }, - "endPoint": { - "x": 675.113742, - "y": 25.973596 - } - } - }, - { - "id": "08eba9ea-ad06-55dd-baf0-aabd263b220a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.113742, - "y": 25.973596 - }, - "endPoint": { - "x": 675.082714, - "y": 25.955495 - } - } - }, - { - "id": "9da3df5e-9649-5a5e-a222-c9f3788cd56f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.082714, - "y": 25.955495 - }, - "endPoint": { - "x": 675.05349, - "y": 25.939692 - } - } - }, - { - "id": "ca13a851-daf6-5568-88b7-c72987aa7590", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.05349, - "y": 25.939692 - }, - "endPoint": { - "x": 675.025944, - "y": 25.925945 - } - } - }, - { - "id": "0d3bdd58-0892-5ad0-a138-226d735566d0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.025944, - "y": 25.925945 - }, - "endPoint": { - "x": 674.999869, - "y": 25.913961 - } - } - }, - { - "id": "099af42d-cd9b-51f9-909d-5d56780e89c7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.999869, - "y": 25.913961 - }, - "endPoint": { - "x": 674.975059, - "y": 25.903447 - } - } - }, - { - "id": "7927a673-00dd-578c-9230-50b2a25e75d8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.975059, - "y": 25.903447 - }, - "endPoint": { - "x": 674.951309, - "y": 25.894108 - } - } - }, - { - "id": "c4358f52-ba13-5382-ac8d-91d47ea975e9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.951309, - "y": 25.894108 - }, - "endPoint": { - "x": 674.928413, - "y": 25.885652 - } - } - }, - { - "id": "4247f659-e6f1-5115-a1f3-ba539ece7fba", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.928413, - "y": 25.885652 - }, - "endPoint": { - "x": 674.906165, - "y": 25.877783 - } - } - }, - { - "id": "b8761c47-b638-5b6a-9ba5-60149f2a66dc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.906165, - "y": 25.877783 - }, - "endPoint": { - "x": 674.884358, - "y": 25.87021 - } - } - }, - { - "id": "1b347aef-012d-502b-ac43-0aaa73ce7b01", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.884358, - "y": 25.87021 - }, - "endPoint": { - "x": 674.862827, - "y": 25.862765 - } - } - }, - { - "id": "e22de475-f8c9-5260-9628-1120d533b477", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.862827, - "y": 25.862765 - }, - "endPoint": { - "x": 674.841561, - "y": 25.855791 - } - } - }, - { - "id": "a6cd8918-1bfa-50c9-97e6-fc2555a79219", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.841561, - "y": 25.855791 - }, - "endPoint": { - "x": 674.82059, - "y": 25.849758 - } - } - }, - { - "id": "69b8a710-767a-59ed-9629-3b298ec93829", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.82059, - "y": 25.849758 - }, - "endPoint": { - "x": 674.799944, - "y": 25.845136 - } - } - }, - { - "id": "c357e64c-84fe-5511-9271-569c7ee75292", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.799944, - "y": 25.845136 - }, - "endPoint": { - "x": 674.779652, - "y": 25.842395 - } - } - }, - { - "id": "c5511a60-6905-5e31-a5fb-8de20ae31d08", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.779652, - "y": 25.842395 - }, - "endPoint": { - "x": 674.759743, - "y": 25.842005 - } - } - }, - { - "id": "0a9fffc4-2dfd-5fef-b793-629cb40eb4d7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.759743, - "y": 25.842005 - }, - "endPoint": { - "x": 674.740248, - "y": 25.844436 - } - } - }, - { - "id": "f760f64c-8a9c-5c50-93f5-7f214fc23b68", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.740248, - "y": 25.844436 - }, - "endPoint": { - "x": 674.721195, - "y": 25.850157 - } - } - }, - { - "id": "66e1f776-963d-50d9-a8d7-e46f9cc2440d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.721195, - "y": 25.850157 - }, - "endPoint": { - "x": 674.702687, - "y": 25.859596 - } - } - }, - { - "id": "330f16e1-a2d4-52df-b762-5b6a22bc8eda", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.702687, - "y": 25.859596 - }, - "endPoint": { - "x": 674.685121, - "y": 25.873002 - } - } - }, - { - "id": "f10bef45-8991-5251-ba1d-8b01d16fa3ff", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.685121, - "y": 25.873002 - }, - "endPoint": { - "x": 674.668968, - "y": 25.89058 - } - } - }, - { - "id": "50c7d68d-0e16-5a65-b9a0-643193590631", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.668968, - "y": 25.89058 - }, - "endPoint": { - "x": 674.654698, - "y": 25.912537 - } - } - }, - { - "id": "51a1cae9-42bc-5d63-814c-bd028b754c81", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.654698, - "y": 25.912537 - }, - "endPoint": { - "x": 674.64278, - "y": 25.939078 - } - } - }, - { - "id": "fff11bb1-1832-518b-adcb-4a09600ffb63", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.64278, - "y": 25.939078 - }, - "endPoint": { - "x": 674.633685, - "y": 25.97041 - } - } - }, - { - "id": "6d5817eb-2e1d-5943-a394-e4cc2d4ed022", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.633685, - "y": 25.97041 - }, - "endPoint": { - "x": 674.627884, - "y": 26.006739 - } - } - }, - { - "id": "a7e78eac-8ce3-5616-8ea6-c25f861c3061", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.627884, - "y": 26.006739 - }, - "endPoint": { - "x": 674.625845, - "y": 26.04827 - } - } - }, - { - "id": "ec2865d3-c8b3-522c-ba1d-194ca60badda", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.625845, - "y": 26.04827 - }, - "endPoint": { - "x": 674.627952, - "y": 26.095189 - } - } - }, - { - "id": "d892ea39-76cc-54ec-bbe8-99815e6f3ce1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.627952, - "y": 26.095189 - }, - "endPoint": { - "x": 674.634235, - "y": 26.147605 - } - } - }, - { - "id": "3187740b-af82-5ac5-8c69-3917d707deaf", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.634235, - "y": 26.147605 - }, - "endPoint": { - "x": 674.644635, - "y": 26.205605 - } - } - }, - { - "id": "9b45c446-f4e0-57b5-baf3-92046070e9c2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.644635, - "y": 26.205605 - }, - "endPoint": { - "x": 674.659094, - "y": 26.269278 - } - } - }, - { - "id": "df81e090-4a26-5de1-a1e5-29c605d4ad1c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.659094, - "y": 26.269278 - }, - "endPoint": { - "x": 674.677554, - "y": 26.338712 - } - } - }, - { - "id": "77790e83-e2d0-5aff-8d3a-6cfd48f64980", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.677554, - "y": 26.338712 - }, - "endPoint": { - "x": 674.699957, - "y": 26.413994 - } - } - }, - { - "id": "d24455b6-a635-52c0-8c48-a48490f14d98", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.699957, - "y": 26.413994 - }, - "endPoint": { - "x": 674.726245, - "y": 26.495214 - } - } - }, - { - "id": "38b290f3-7bc2-5634-8ea4-b04af2b2508a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.726245, - "y": 26.495214 - }, - "endPoint": { - "x": 674.75636, - "y": 26.58246 - } - } - }, - { - "id": "e46912d2-fe7e-58f6-9ec3-54977d39b77f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.75636, - "y": 26.58246 - }, - "endPoint": { - "x": 674.79021, - "y": 26.675808 - } - } - }, - { - "id": "3470b2fb-35ee-5010-bf57-2610ee443a51", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.79021, - "y": 26.675808 - }, - "endPoint": { - "x": 674.827563, - "y": 26.7753 - } - } - }, - { - "id": "93e57830-f963-56f7-8eea-c4ead7cb11ef", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.827563, - "y": 26.7753 - }, - "endPoint": { - "x": 674.868153, - "y": 26.880964 - } - } - }, - { - "id": "a2caaf2c-727e-535f-8797-2a349b30e18a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.868153, - "y": 26.880964 - }, - "endPoint": { - "x": 674.911716, - "y": 26.992828 - } - } - }, - { - "id": "4b1afdbb-2792-5396-81d3-c136fbc1bd02", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.911716, - "y": 26.992828 - }, - "endPoint": { - "x": 674.957986, - "y": 27.110923 - } - } - }, - { - "id": "c927bc93-5c1c-5807-8e7a-629ecfa7aee3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.957986, - "y": 27.110923 - }, - "endPoint": { - "x": 675.006696, - "y": 27.235277 - } - } - }, - { - "id": "49b50be9-52ac-52ce-a83d-1054a73ad511", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.006696, - "y": 27.235277 - }, - "endPoint": { - "x": 675.057583, - "y": 27.36592 - } - } - }, - { - "id": "dddb1563-0994-52ba-a4f0-5987bbba4878", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.057583, - "y": 27.36592 - }, - "endPoint": { - "x": 675.11038, - "y": 27.502881 - } - } - }, - { - "id": "2b923939-437c-5329-af17-488b5f4bc6c9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.11038, - "y": 27.502881 - }, - "endPoint": { - "x": 675.164694, - "y": 27.6457 - } - } - }, - { - "id": "9d590a7e-4046-56bd-b4cb-f99b26613d0d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.164694, - "y": 27.6457 - }, - "endPoint": { - "x": 675.219624, - "y": 27.791956 - } - } - }, - { - "id": "23f22a89-9549-5c03-9e58-72747f67cf03", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.219624, - "y": 27.791956 - }, - "endPoint": { - "x": 675.27414, - "y": 27.93874 - } - } - }, - { - "id": "e8057f6a-8412-56ee-9f24-faca0c7b6430", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.27414, - "y": 27.93874 - }, - "endPoint": { - "x": 675.327213, - "y": 28.083144 - } - } - }, - { - "id": "e88ab9c0-ae9b-5153-8dc1-adb78d64c628", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.327213, - "y": 28.083144 - }, - "endPoint": { - "x": 675.377815, - "y": 28.222257 - } - } - }, - { - "id": "be3e2add-ac34-52c6-80b3-ca2cb6a9ebb4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.377815, - "y": 28.222257 - }, - "endPoint": { - "x": 675.424915, - "y": 28.353171 - } - } - }, - { - "id": "5c1fe9f1-572e-5f27-840f-766af5bd2a8b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.424915, - "y": 28.353171 - }, - "endPoint": { - "x": 675.467485, - "y": 28.472975 - } - } - }, - { - "id": "9085626f-e570-55ec-a35e-3b7ab74ceac3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.467485, - "y": 28.472975 - }, - "endPoint": { - "x": 675.504495, - "y": 28.578761 - } - } - }, - { - "id": "c8267e5b-2805-5855-a653-1cc7c3957f49", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.504495, - "y": 28.578761 - }, - "endPoint": { - "x": 675.536138, - "y": 28.668805 - } - } - }, - { - "id": "fea4793c-d90f-5623-b0b7-5b2d99e05395", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.536138, - "y": 28.668805 - }, - "endPoint": { - "x": 675.567487, - "y": 28.746123 - } - } - }, - { - "id": "a42bab0a-be37-5d59-a469-00ea2b4fe5c8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.567487, - "y": 28.746123 - }, - "endPoint": { - "x": 675.604839, - "y": 28.81492 - } - } - }, - { - "id": "091ecb27-0a94-56cc-b515-499531030099", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.604839, - "y": 28.81492 - }, - "endPoint": { - "x": 675.654488, - "y": 28.879396 - } - } - }, - { - "id": "4127c885-b48e-55a5-a589-8b58191c3bda", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.654488, - "y": 28.879396 - }, - "endPoint": { - "x": 675.722731, - "y": 28.943756 - } - } - }, - { - "id": "fda4dc8f-d7f9-55b8-9ac9-4b311742b24c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.722731, - "y": 28.943756 - }, - "endPoint": { - "x": 675.815863, - "y": 29.012202 - } - } - }, - { - "id": "9be1fa30-448f-589d-bda0-b935af7cc0ff", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.815863, - "y": 29.012202 - }, - "endPoint": { - "x": 675.940179, - "y": 29.088936 - } - } - }, - { - "id": "949fb33d-d0e6-5d3b-a3b9-9832cd9234e5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.940179, - "y": 29.088936 - }, - "endPoint": { - "x": 676.101975, - "y": 29.178162 - } - } - }, - { - "id": "f08be892-e655-5b9a-9fa2-ccce825206a3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.101975, - "y": 29.178162 - }, - "endPoint": { - "x": 676.30509, - "y": 29.282764 - } - } - }, - { - "id": "f1c3545b-af74-50c2-b9b7-0b6cf4f81b0a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.30509, - "y": 29.282764 - }, - "endPoint": { - "x": 676.543538, - "y": 29.400357 - } - } - }, - { - "id": "0d230059-bc9d-53a4-9b25-bf4c8b9ea044", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.543538, - "y": 29.400357 - }, - "endPoint": { - "x": 676.808874, - "y": 29.527237 - } - } - }, - { - "id": "250c85b8-4688-558d-b636-59d04bc034fd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.808874, - "y": 29.527237 - }, - "endPoint": { - "x": 677.092656, - "y": 29.659702 - } - } - }, - { - "id": "a881b300-6321-58ed-824a-3f122d1a2356", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 677.092656, - "y": 29.659702 - }, - "endPoint": { - "x": 677.38644, - "y": 29.794048 - } - } - }, - { - "id": "4c41d22d-3f2f-5719-8665-cb364851df22", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 677.38644, - "y": 29.794048 - }, - "endPoint": { - "x": 677.681783, - "y": 29.926572 - } - } - }, - { - "id": "ed41d574-c4ed-5ae1-a2bb-110208647b06", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 677.681783, - "y": 29.926572 - }, - "endPoint": { - "x": 677.970242, - "y": 30.05357 - } - } - }, - { - "id": "6f1cee7d-2af6-5eec-b678-b29a2537af8b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 677.970242, - "y": 30.05357 - }, - "endPoint": { - "x": 678.243373, - "y": 30.171339 - } - } - }, - { - "id": "b7ee56d8-16db-5d91-aa18-5252ef359e92", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 678.243373, - "y": 30.171339 - }, - "endPoint": { - "x": 678.494577, - "y": 30.277038 - } - } - }, - { - "id": "f1d71080-bf58-5a1a-8728-fa8d68982dd9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 678.494577, - "y": 30.277038 - }, - "endPoint": { - "x": 678.724628, - "y": 30.371274 - } - } - }, - { - "id": "09e38ce4-75d1-5397-9297-03cfafbd3b6a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 678.724628, - "y": 30.371274 - }, - "endPoint": { - "x": 678.936144, - "y": 30.455518 - } - } - }, - { - "id": "8967444f-c440-51d8-b94d-1ae7bfdc6b64", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 678.936144, - "y": 30.455518 - }, - "endPoint": { - "x": 679.131745, - "y": 30.531237 - } - } - }, - { - "id": "5532e034-6020-5a2c-8b23-f28d3a56121e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 679.131745, - "y": 30.531237 - }, - "endPoint": { - "x": 679.314048, - "y": 30.599903 - } - } - }, - { - "id": "10915d69-4d68-5b62-af8a-efcbe4baaf84", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 679.314048, - "y": 30.599903 - }, - "endPoint": { - "x": 679.485671, - "y": 30.662985 - } - } - }, - { - "id": "b31c2d9b-bc96-5493-89e3-25cfb0bef918", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 679.485671, - "y": 30.662985 - }, - "endPoint": { - "x": 679.649233, - "y": 30.721951 - } - } - }, - { - "id": "dc08c8ec-b115-5cff-8b3b-9a9d7e3d3656", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 679.649233, - "y": 30.721951 - }, - "endPoint": { - "x": 679.807352, - "y": 30.778273 - } - } - }, - { - "id": "ab366bbe-c88d-58ea-bfd3-459f80b8304b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 679.807352, - "y": 30.778273 - }, - "endPoint": { - "x": 679.962239, - "y": 30.833198 - } - } - }, - { - "id": "33bc1aaa-bf2d-5486-b326-27c019d80189", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 679.962239, - "y": 30.833198 - }, - "endPoint": { - "x": 680.114478, - "y": 30.887094 - } - } - }, - { - "id": "bcc02356-63b3-5b61-a211-3bf054e604f3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 680.114478, - "y": 30.887094 - }, - "endPoint": { - "x": 680.264246, - "y": 30.940109 - } - } - }, - { - "id": "69e64724-6e67-53cf-b069-0793cdab6ac0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 680.264246, - "y": 30.940109 - }, - "endPoint": { - "x": 680.411719, - "y": 30.992389 - } - } - }, - { - "id": "3e482b8a-3fb8-5775-9386-419cf3411f20", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 680.411719, - "y": 30.992389 - }, - "endPoint": { - "x": 680.557074, - "y": 31.04408 - } - } - }, - { - "id": "8028d61b-3ae3-5bb2-bbf2-aa9bd1cb49cf", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 680.557074, - "y": 31.04408 - }, - "endPoint": { - "x": 680.700487, - "y": 31.095331 - } - } - }, - { - "id": "ac29187c-e6b1-5943-8728-28395753ac64", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 680.700487, - "y": 31.095331 - }, - "endPoint": { - "x": 680.842136, - "y": 31.146288 - } - } - }, - { - "id": "9e3fe224-23b6-517b-8801-94d9a5033432", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 680.842136, - "y": 31.146288 - }, - "endPoint": { - "x": 680.982198, - "y": 31.197098 - } - } - }, - { - "id": "de75a6b4-4bf8-55e6-aee7-fb73409e9392", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 680.982198, - "y": 31.197098 - }, - "endPoint": { - "x": 681.120632, - "y": 31.247825 - } - } - }, - { - "id": "bd5ed703-f192-5c63-addc-0f4bbfa12113", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.120632, - "y": 31.247825 - }, - "endPoint": { - "x": 681.256537, - "y": 31.298199 - } - } - }, - { - "id": "cd28a340-b431-52c8-af2f-8fbcbfede973", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.256537, - "y": 31.298199 - }, - "endPoint": { - "x": 681.388796, - "y": 31.347868 - } - } - }, - { - "id": "be986564-111b-5767-81f6-89f2b5fcae75", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.388796, - "y": 31.347868 - }, - "endPoint": { - "x": 681.516289, - "y": 31.396478 - } - } - }, - { - "id": "06117830-b7df-5393-a5f7-4e4eb0fd8a1b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.516289, - "y": 31.396478 - }, - "endPoint": { - "x": 681.637898, - "y": 31.443677 - } - } - }, - { - "id": "6261c617-d21c-58da-9b26-745b88698001", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.637898, - "y": 31.443677 - }, - "endPoint": { - "x": 681.752507, - "y": 31.489113 - } - } - }, - { - "id": "1d18c356-a225-56f5-84ab-6ea6e143316a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.752507, - "y": 31.489113 - }, - "endPoint": { - "x": 681.858997, - "y": 31.532432 - } - } - }, - { - "id": "81a12f9e-c38b-5c9c-9f42-28e6f754cb1a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.858997, - "y": 31.532432 - }, - "endPoint": { - "x": 681.956249, - "y": 31.573281 - } - } - }, - { - "id": "096d5475-4dda-557e-af0f-f9dee8d1a455", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.956249, - "y": 31.573281 - }, - "endPoint": { - "x": 682.043436, - "y": 31.611437 - } - } - }, - { - "id": "6584c438-5e71-5041-b72a-aa7063e615e7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 682.043436, - "y": 31.611437 - }, - "endPoint": { - "x": 682.120885, - "y": 31.647181 - } - } - }, - { - "id": "5a4755a1-fc1c-5281-8cb3-2bec4b5984c1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 682.120885, - "y": 31.647181 - }, - "endPoint": { - "x": 682.189214, - "y": 31.680927 - } - } - }, - { - "id": "18cc0558-c741-5af4-ae1e-02f2cf253eb3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 682.189214, - "y": 31.680927 - }, - "endPoint": { - "x": 682.24904, - "y": 31.713086 - } - } - }, - { - "id": "cbdcf7e1-68ee-54ad-a273-38246455b286", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 682.24904, - "y": 31.713086 - }, - "endPoint": { - "x": 682.30098, - "y": 31.744068 - } - } - }, - { - "id": "0f219908-219e-50e4-9756-b6bf8afe4861", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 682.30098, - "y": 31.744068 - }, - "endPoint": { - "x": 682.345652, - "y": 31.774287 - } - } - }, - { - "id": "4cb151c2-324d-5527-a5ec-bbb559efae19", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 682.345652, - "y": 31.774287 - }, - "endPoint": { - "x": 682.383674, - "y": 31.804153 - } - } - }, - { - "id": "9a3b3966-e274-5d5f-8d8b-5d9ca04167f5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 682.383674, - "y": 31.804153 - }, - "endPoint": { - "x": 682.415662, - "y": 31.834078 - } - } - }, - { - "id": "11ad218b-88d3-558b-bc89-1e2d6f728566", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 682.415662, - "y": 31.834078 - }, - "endPoint": { - "x": 682.44194, - "y": 31.864194 - } - } - }, - { - "id": "efd418c7-0f87-5469-b80a-5640b3f5feda", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 682.44194, - "y": 31.864194 - }, - "endPoint": { - "x": 682.461655, - "y": 31.893517 - } - } - }, - { - "id": "3fa70be9-83a5-51d9-88d2-bb0857aec72c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 682.461655, - "y": 31.893517 - }, - "endPoint": { - "x": 682.473661, - "y": 31.920783 - } - } - }, - { - "id": "5e193958-6c3f-5d19-86d4-e71924b3880e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 682.473661, - "y": 31.920783 - }, - "endPoint": { - "x": 682.476812, - "y": 31.944729 - } - } - }, - { - "id": "c45c028c-e4dd-58d2-a615-6b385dcb72ce", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 682.476812, - "y": 31.944729 - }, - "endPoint": { - "x": 682.46996, - "y": 31.964091 - } - } - }, - { - "id": "101839d8-34d9-52af-99ee-b9b6d07d2504", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 682.46996, - "y": 31.964091 - }, - "endPoint": { - "x": 682.45196, - "y": 31.977605 - } - } - }, - { - "id": "1e91644a-581d-51f1-a79f-db6069a8403c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 682.45196, - "y": 31.977605 - }, - "endPoint": { - "x": 682.421664, - "y": 31.984008 - } - } - }, - { - "id": "4a5bf771-826d-5717-90c1-7f14ea9896c5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 682.421664, - "y": 31.984008 - }, - "endPoint": { - "x": 682.377926, - "y": 31.982036 - } - } - }, - { - "id": "66833a79-2a98-5faa-9e73-0a8917bc69e5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 682.377926, - "y": 31.982036 - }, - "endPoint": { - "x": 682.320031, - "y": 31.970827 - } - } - }, - { - "id": "ec39dc6a-b9b2-5bbf-b538-2498b2d86c4d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 682.320031, - "y": 31.970827 - }, - "endPoint": { - "x": 682.248988, - "y": 31.951125 - } - } - }, - { - "id": "28a4ac92-0c44-545e-abd4-6f518681f961", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 682.248988, - "y": 31.951125 - }, - "endPoint": { - "x": 682.166238, - "y": 31.924076 - } - } - }, - { - "id": "78a706c0-c417-5c8b-934a-dc512c7d84aa", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 682.166238, - "y": 31.924076 - }, - "endPoint": { - "x": 682.073223, - "y": 31.890827 - } - } - }, - { - "id": "be3f8a7a-33b0-5b3a-b511-0de383711f38", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 682.073223, - "y": 31.890827 - }, - "endPoint": { - "x": 681.971384, - "y": 31.852522 - } - } - }, - { - "id": "b934f31a-1a7d-5d15-a788-4dde4c878c0d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.971384, - "y": 31.852522 - }, - "endPoint": { - "x": 681.86216, - "y": 31.810308 - } - } - }, - { - "id": "112cbd48-984c-55a5-b1b5-713dc9fb321e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.86216, - "y": 31.810308 - }, - "endPoint": { - "x": 681.746994, - "y": 31.765331 - } - } - }, - { - "id": "ad4e15f3-8bfc-5fec-ac79-38f87d11b552", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.746994, - "y": 31.765331 - }, - "endPoint": { - "x": 681.627326, - "y": 31.718736 - } - } - }, - { - "id": "dc71a0f0-3c48-5844-b075-a5aca132632c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.627326, - "y": 31.718736 - }, - "endPoint": { - "x": 681.504401, - "y": 31.671513 - } - } - }, - { - "id": "9e1482ed-aae7-52bd-a399-0e3c2d0d5ab5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.504401, - "y": 31.671513 - }, - "endPoint": { - "x": 681.378681, - "y": 31.624024 - } - } - }, - { - "id": "c548c5c2-b611-5724-8001-856ce60d0418", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.378681, - "y": 31.624024 - }, - "endPoint": { - "x": 681.250429, - "y": 31.576476 - } - } - }, - { - "id": "09eb5d23-e449-5f8d-8ccb-e8198f2c4c8d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.250429, - "y": 31.576476 - }, - "endPoint": { - "x": 681.119911, - "y": 31.529074 - } - } - }, - { - "id": "b86738f4-80a0-50d1-a374-0d1d3040b2e0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 681.119911, - "y": 31.529074 - }, - "endPoint": { - "x": 680.987392, - "y": 31.482024 - } - } - }, - { - "id": "45dddad1-fb1c-5242-8b4b-3a85b2b380d6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 680.987392, - "y": 31.482024 - }, - "endPoint": { - "x": 680.853137, - "y": 31.435532 - } - } - }, - { - "id": "861c340d-a241-5923-a069-d0d929a59ecd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 680.853137, - "y": 31.435532 - }, - "endPoint": { - "x": 680.717411, - "y": 31.389804 - } - } - }, - { - "id": "42bb589d-ce05-572b-91fd-e0d3f5cad957", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 680.717411, - "y": 31.389804 - }, - "endPoint": { - "x": 680.580478, - "y": 31.345045 - } - } - }, - { - "id": "2781d1d8-6201-5ae8-b804-a9f7dbac6b2d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 680.580478, - "y": 31.345045 - }, - "endPoint": { - "x": 680.442289, - "y": 31.301223 - } - } - }, - { - "id": "6d802f15-315b-57ca-b482-02151d5ba33b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 680.442289, - "y": 31.301223 - }, - "endPoint": { - "x": 680.301541, - "y": 31.257342 - } - } - }, - { - "id": "a8a1b650-7481-54e4-814b-37ff01e93e6c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 680.301541, - "y": 31.257342 - }, - "endPoint": { - "x": 680.156617, - "y": 31.212168 - } - } - }, - { - "id": "39036e66-8831-54e7-a812-eb45aca93e4a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 680.156617, - "y": 31.212168 - }, - "endPoint": { - "x": 680.005898, - "y": 31.164467 - } - } - }, - { - "id": "43e0b7ce-90b1-5dce-a0ce-911efcac810c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 680.005898, - "y": 31.164467 - }, - "endPoint": { - "x": 679.847766, - "y": 31.113004 - } - } - }, - { - "id": "8bb14bb5-3877-5800-a577-c1692979bb36", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 679.847766, - "y": 31.113004 - }, - "endPoint": { - "x": 679.680605, - "y": 31.056546 - } - } - }, - { - "id": "8967697c-65ef-5486-8478-c2f57ced2e01", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 679.680605, - "y": 31.056546 - }, - "endPoint": { - "x": 679.502795, - "y": 30.993857 - } - } - }, - { - "id": "6a36aba3-3420-5b89-b218-7ef25b34f2af", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 679.502795, - "y": 30.993857 - }, - "endPoint": { - "x": 679.312721, - "y": 30.923705 - } - } - }, - { - "id": "c0f356b7-d79b-5c75-b69b-423697016c3c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 679.312721, - "y": 30.923705 - }, - "endPoint": { - "x": 679.109587, - "y": 30.845309 - } - } - }, - { - "id": "2616ee55-d1f8-5767-b438-f94c0ce87a89", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 679.109587, - "y": 30.845309 - }, - "endPoint": { - "x": 678.895894, - "y": 30.759713 - } - } - }, - { - "id": "24518047-726d-5df4-9378-0067c3975d68", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 678.895894, - "y": 30.759713 - }, - "endPoint": { - "x": 678.674965, - "y": 30.668416 - } - } - }, - { - "id": "ed283a55-465e-5d24-9206-aececfbeae35", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 678.674965, - "y": 30.668416 - }, - "endPoint": { - "x": 678.450123, - "y": 30.572916 - } - } - }, - { - "id": "f934b471-3ab1-5aa5-9220-0daebab3b44e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 678.450123, - "y": 30.572916 - }, - "endPoint": { - "x": 678.224693, - "y": 30.474712 - } - } - }, - { - "id": "85de0268-c9d8-5289-aa0f-c64f332bb124", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 678.224693, - "y": 30.474712 - }, - "endPoint": { - "x": 678.001997, - "y": 30.375302 - } - } - }, - { - "id": "e227e799-d056-5e9a-83fa-4de77a017180", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 678.001997, - "y": 30.375302 - }, - "endPoint": { - "x": 677.78536, - "y": 30.276186 - } - } - }, - { - "id": "e8def831-a931-5011-9495-e6347c88cd4e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 677.78536, - "y": 30.276186 - }, - "endPoint": { - "x": 677.578105, - "y": 30.178861 - } - } - }, - { - "id": "9b31c1fa-745e-5514-a794-34466235bb1b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 677.578105, - "y": 30.178861 - }, - "endPoint": { - "x": 677.382967, - "y": 30.084665 - } - } - }, - { - "id": "81e8ca8a-81b4-53d7-abb6-221c79a3603b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 677.382967, - "y": 30.084665 - }, - "endPoint": { - "x": 677.200328, - "y": 29.994289 - } - } - }, - { - "id": "defe7186-f7ca-5fcf-938e-0d08b7c1cd01", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 677.200328, - "y": 29.994289 - }, - "endPoint": { - "x": 677.029985, - "y": 29.908262 - } - } - }, - { - "id": "6cff2cc6-18a2-5686-ae49-e7cdaee26010", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 677.029985, - "y": 29.908262 - }, - "endPoint": { - "x": 676.871731, - "y": 29.827114 - } - } - }, - { - "id": "07eec70f-b950-54e2-9f51-61eecfd7ed88", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.871731, - "y": 29.827114 - }, - "endPoint": { - "x": 676.725362, - "y": 29.751373 - } - } - }, - { - "id": "35eb3f66-c0f0-5e06-bb8b-adfdbcd16771", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.725362, - "y": 29.751373 - }, - "endPoint": { - "x": 676.590671, - "y": 29.681569 - } - } - }, - { - "id": "1309a7a6-2518-5b19-97ad-7e0039b8cb31", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.590671, - "y": 29.681569 - }, - "endPoint": { - "x": 676.467454, - "y": 29.618232 - } - } - }, - { - "id": "1a3f1b9e-2764-5079-a422-cc2b9d46fc73", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.467454, - "y": 29.618232 - }, - "endPoint": { - "x": 676.355505, - "y": 29.56189 - } - } - }, - { - "id": "0585fe96-9a28-5c8e-8ef5-4403c6537467", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.355505, - "y": 29.56189 - }, - "endPoint": { - "x": 676.254728, - "y": 29.51318 - } - } - }, - { - "id": "35ce94a5-2dbb-5f98-9a69-6de9506c56fb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.254728, - "y": 29.51318 - }, - "endPoint": { - "x": 676.165454, - "y": 29.473172 - } - } - }, - { - "id": "178ad3b6-02bc-506b-8767-ddce3454d7cb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.165454, - "y": 29.473172 - }, - "endPoint": { - "x": 676.088125, - "y": 29.443038 - } - } - }, - { - "id": "de28149e-c939-5808-98e5-18bfe1bb9582", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.088125, - "y": 29.443038 - }, - "endPoint": { - "x": 676.023183, - "y": 29.423956 - } - } - }, - { - "id": "538b8cbb-7188-5e44-96c2-8f3f8f977a01", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.023183, - "y": 29.423956 - }, - "endPoint": { - "x": 675.971067, - "y": 29.417101 - } - } - }, - { - "id": "f7818d0d-e28e-5218-a6b7-153bf962a5a2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.971067, - "y": 29.417101 - }, - "endPoint": { - "x": 675.93222, - "y": 29.423647 - } - } - }, - { - "id": "d0c122c5-29f1-56b6-94d3-eded4a3b43d5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.93222, - "y": 29.423647 - }, - "endPoint": { - "x": 675.907081, - "y": 29.44477 - } - } - }, - { - "id": "ffcdf9dc-3de6-5a6c-8311-2132e4a764fd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.907081, - "y": 29.44477 - }, - "endPoint": { - "x": 675.896093, - "y": 29.481646 - } - } - }, - { - "id": "f1f82a2f-6d0a-5a59-acd3-16c2ffa8021c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.896093, - "y": 29.481646 - }, - "endPoint": { - "x": 675.899279, - "y": 29.534915 - } - } - }, - { - "id": "254d9981-4f42-541b-b253-f0f8c6a7a971", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.899279, - "y": 29.534915 - }, - "endPoint": { - "x": 675.914997, - "y": 29.603085 - } - } - }, - { - "id": "f0742122-4acd-5adb-9cfc-d0d8e7f00fcc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.914997, - "y": 29.603085 - }, - "endPoint": { - "x": 675.941187, - "y": 29.684126 - } - } - }, - { - "id": "80536114-9ed2-5baa-82c2-681fed72a41c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.941187, - "y": 29.684126 - }, - "endPoint": { - "x": 675.97579, - "y": 29.776013 - } - } - }, - { - "id": "81b24ff3-a1e2-5a31-9fe3-ec77a1b301cb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.97579, - "y": 29.776013 - }, - "endPoint": { - "x": 676.016747, - "y": 29.876715 - } - } - }, - { - "id": "c92bc0ca-4fc9-5b67-8c1d-895890ef834f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.016747, - "y": 29.876715 - }, - "endPoint": { - "x": 676.061999, - "y": 29.984206 - } - } - }, - { - "id": "69d0a214-b32b-5933-93c1-f3a5d59625ec", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.061999, - "y": 29.984206 - }, - "endPoint": { - "x": 676.109486, - "y": 30.096459 - } - } - }, - { - "id": "2ad0942f-82dd-5ab1-a0b3-0206712e1179", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.109486, - "y": 30.096459 - }, - "endPoint": { - "x": 676.15715, - "y": 30.211444 - } - } - }, - { - "id": "19b2870f-bcd2-5fce-bc75-8d6401898818", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.15715, - "y": 30.211444 - }, - "endPoint": { - "x": 676.203273, - "y": 30.327272 - } - } - }, - { - "id": "4fdf41f0-1556-5cf2-adc8-417eb87962cb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.203273, - "y": 30.327272 - }, - "endPoint": { - "x": 676.247513, - "y": 30.4426 - } - } - }, - { - "id": "40bb36fd-3d36-5806-932c-b163182d9f93", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.247513, - "y": 30.4426 - }, - "endPoint": { - "x": 676.289871, - "y": 30.556223 - } - } - }, - { - "id": "ecb4c965-b5b3-5cfe-8769-9a57a2c7bdef", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.289871, - "y": 30.556223 - }, - "endPoint": { - "x": 676.330347, - "y": 30.666938 - } - } - }, - { - "id": "6ee53d36-741d-5075-9a73-6f80983b0d61", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.330347, - "y": 30.666938 - }, - "endPoint": { - "x": 676.368941, - "y": 30.773538 - } - } - }, - { - "id": "6682ff36-1fc6-5814-8786-8201107e2510", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.368941, - "y": 30.773538 - }, - "endPoint": { - "x": 676.405653, - "y": 30.87482 - } - } - }, - { - "id": "14ccf95c-b4a7-5ffc-ba6c-0f45549a92b9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.405653, - "y": 30.87482 - }, - "endPoint": { - "x": 676.440483, - "y": 30.969577 - } - } - }, - { - "id": "4edb3f9c-aa41-5497-8c8c-b3a1f8c4eebd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.440483, - "y": 30.969577 - }, - "endPoint": { - "x": 676.473433, - "y": 31.056607 - } - } - }, - { - "id": "08ce6d5f-7531-5c3a-b799-0d89d54814c6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.473433, - "y": 31.056607 - }, - "endPoint": { - "x": 676.504526, - "y": 31.134977 - } - } - }, - { - "id": "143b8ab4-adf4-5290-a743-b7e0a8cdfd41", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.504526, - "y": 31.134977 - }, - "endPoint": { - "x": 676.533886, - "y": 31.204854 - } - } - }, - { - "id": "f3f39397-372a-5b45-b34a-a0296f919226", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.533886, - "y": 31.204854 - }, - "endPoint": { - "x": 676.561657, - "y": 31.266679 - } - } - }, - { - "id": "1dc2e07d-38b2-5c87-9a13-8a345d98e746", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.561657, - "y": 31.266679 - }, - "endPoint": { - "x": 676.587988, - "y": 31.320892 - } - } - }, - { - "id": "76b24105-b20c-53ed-8169-3f8ec07d6ff7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.587988, - "y": 31.320892 - }, - "endPoint": { - "x": 676.613024, - "y": 31.367934 - } - } - }, - { - "id": "8f903cf1-c4a8-53fe-a06d-3f202730e70d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.613024, - "y": 31.367934 - }, - "endPoint": { - "x": 676.636913, - "y": 31.408245 - } - } - }, - { - "id": "79cd1814-eefe-545a-9092-75b572a635c3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.636913, - "y": 31.408245 - }, - "endPoint": { - "x": 676.6598, - "y": 31.442265 - } - } - }, - { - "id": "661ee01f-845b-5217-8b5d-086600d57e31", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.6598, - "y": 31.442265 - }, - "endPoint": { - "x": 676.681833, - "y": 31.470436 - } - } - }, - { - "id": "f650e810-94d6-56ff-88a2-f068e7501c72", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.681833, - "y": 31.470436 - }, - "endPoint": { - "x": 676.703089, - "y": 31.49332 - } - } - }, - { - "id": "bbb621fd-e2eb-554f-8b29-0ca60ec9d719", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.703089, - "y": 31.49332 - }, - "endPoint": { - "x": 676.723372, - "y": 31.511971 - } - } - }, - { - "id": "deacac7a-f08d-5a07-87e9-288d31357bfb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.723372, - "y": 31.511971 - }, - "endPoint": { - "x": 676.74242, - "y": 31.527565 - } - } - }, - { - "id": "9590ac57-d2b4-5e29-a28d-1b8c4a5c5289", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.74242, - "y": 31.527565 - }, - "endPoint": { - "x": 676.759966, - "y": 31.541277 - } - } - }, - { - "id": "2731e373-a2da-5a22-b4da-0ca0c8bd195d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.759966, - "y": 31.541277 - }, - "endPoint": { - "x": 676.775747, - "y": 31.554284 - } - } - }, - { - "id": "9bfa1d3f-6b23-567f-9420-1aff26382153", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.775747, - "y": 31.554284 - }, - "endPoint": { - "x": 676.789499, - "y": 31.567762 - } - } - }, - { - "id": "8c177251-9733-5160-a8ae-2a8896bc7ba2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.789499, - "y": 31.567762 - }, - "endPoint": { - "x": 676.800957, - "y": 31.582887 - } - } - }, - { - "id": "992d6c25-443f-522a-b2ef-4a36846697f0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.800957, - "y": 31.582887 - }, - "endPoint": { - "x": 676.809856, - "y": 31.600834 - } - } - }, - { - "id": "782ee643-61fc-520f-97ba-13e9b126e4de", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.809856, - "y": 31.600834 - }, - "endPoint": { - "x": 676.816047, - "y": 31.62257 - } - } - }, - { - "id": "524b6d13-6208-5580-9288-a614f7acfeec", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.816047, - "y": 31.62257 - }, - "endPoint": { - "x": 676.819826, - "y": 31.648215 - } - } - }, - { - "id": "eda6429f-584c-5119-a6ef-7da95a0f1a4e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.819826, - "y": 31.648215 - }, - "endPoint": { - "x": 676.821606, - "y": 31.677683 - } - } - }, - { - "id": "8d205bda-b39c-5325-ab85-8b5e5bfe5416", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.821606, - "y": 31.677683 - }, - "endPoint": { - "x": 676.821798, - "y": 31.710884 - } - } - }, - { - "id": "46078fb7-42c7-5cc1-9be3-f651c950cc41", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.821798, - "y": 31.710884 - }, - "endPoint": { - "x": 676.820814, - "y": 31.747729 - } - } - }, - { - "id": "e6335303-e3ad-550b-964a-4da0d8eba10d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.820814, - "y": 31.747729 - }, - "endPoint": { - "x": 676.819065, - "y": 31.78813 - } - } - }, - { - "id": "4791863c-d27b-54ea-a679-abf3371075fe", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.819065, - "y": 31.78813 - }, - "endPoint": { - "x": 676.816962, - "y": 31.831999 - } - } - }, - { - "id": "794095b3-8ede-5e5e-8ded-3c0d46108caf", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.816962, - "y": 31.831999 - }, - "endPoint": { - "x": 676.814918, - "y": 31.879247 - } - } - }, - { - "id": "39047ca0-d891-563b-a5f8-60a2a16bc323", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.814918, - "y": 31.879247 - }, - "endPoint": { - "x": 676.813186, - "y": 31.929594 - } - } - }, - { - "id": "1868bbce-04ac-5a17-9ea0-831a1f0c295f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.813186, - "y": 31.929594 - }, - "endPoint": { - "x": 676.811394, - "y": 31.981997 - } - } - }, - { - "id": "9230f57f-f115-5fcb-b878-7615570bc7d8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.811394, - "y": 31.981997 - }, - "endPoint": { - "x": 676.809013, - "y": 32.035223 - } - } - }, - { - "id": "5fade8ef-98af-5011-9eb4-badbe282e2ab", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.809013, - "y": 32.035223 - }, - "endPoint": { - "x": 676.805513, - "y": 32.088036 - } - } - }, - { - "id": "c8682d92-ba1c-5e52-b12b-3ad326e7dbe0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.805513, - "y": 32.088036 - }, - "endPoint": { - "x": 676.800365, - "y": 32.139204 - } - } - }, - { - "id": "edc3a3cc-fc47-5717-b554-f7703f715573", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.800365, - "y": 32.139204 - }, - "endPoint": { - "x": 676.793039, - "y": 32.18749 - } - } - }, - { - "id": "78f34a02-cbf1-5ef7-add4-d0dd76eeb01d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.793039, - "y": 32.18749 - }, - "endPoint": { - "x": 676.783005, - "y": 32.231663 - } - } - }, - { - "id": "1bed564b-5ac8-5f24-8e56-87edf027a11e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.783005, - "y": 32.231663 - }, - "endPoint": { - "x": 676.769734, - "y": 32.270486 - } - } - }, - { - "id": "fdd8680e-6334-555f-b4f6-90e25ca36102", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.769734, - "y": 32.270486 - }, - "endPoint": { - "x": 676.752849, - "y": 32.302903 - } - } - }, - { - "id": "b7a50444-173b-53bd-ba75-dc498da1e122", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.752849, - "y": 32.302903 - }, - "endPoint": { - "x": 676.732581, - "y": 32.32856 - } - } - }, - { - "id": "7cf5f437-2e4b-58ef-813f-1d48d5ad8375", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.732581, - "y": 32.32856 - }, - "endPoint": { - "x": 676.709311, - "y": 32.347282 - } - } - }, - { - "id": "81bc8861-3a2a-599f-9b40-6ef8fcaafb3a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.709311, - "y": 32.347282 - }, - "endPoint": { - "x": 676.683422, - "y": 32.358891 - } - } - }, - { - "id": "661aaa9d-396e-52f6-83cf-e9a18f8aac87", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.683422, - "y": 32.358891 - }, - "endPoint": { - "x": 676.655298, - "y": 32.363212 - } - } - }, - { - "id": "6c0f3a5a-6e73-5d8f-9477-a2ae57c8109a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.655298, - "y": 32.363212 - }, - "endPoint": { - "x": 676.62532, - "y": 32.360067 - } - } - }, - { - "id": "6371ddc8-332d-53d5-8b1b-0dd6e0d41a0e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.62532, - "y": 32.360067 - }, - "endPoint": { - "x": 676.593872, - "y": 32.349282 - } - } - }, - { - "id": "3a042c1d-1ae1-5b55-8e46-ab669ab1ec2c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.593872, - "y": 32.349282 - }, - "endPoint": { - "x": 676.561335, - "y": 32.330677 - } - } - }, - { - "id": "bb6584b9-a742-582b-8a58-884568835dd3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.561335, - "y": 32.330677 - }, - "endPoint": { - "x": 676.528142, - "y": 32.304255 - } - } - }, - { - "id": "56cedba5-d74b-5d1e-bbda-d71673f767c8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.528142, - "y": 32.304255 - }, - "endPoint": { - "x": 676.494919, - "y": 32.270721 - } - } - }, - { - "id": "487f44fe-ed2e-5610-9eeb-488bc1b7adcd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.494919, - "y": 32.270721 - }, - "endPoint": { - "x": 676.462345, - "y": 32.230955 - } - } - }, - { - "id": "29de0567-1041-52de-a7bd-73d500b63256", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.462345, - "y": 32.230955 - }, - "endPoint": { - "x": 676.431095, - "y": 32.185841 - } - } - }, - { - "id": "82ae88b7-c178-56c6-aa3b-ec290a0f280e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.431095, - "y": 32.185841 - }, - "endPoint": { - "x": 676.401846, - "y": 32.136259 - } - } - }, - { - "id": "a592bb51-d886-5e71-ae6e-48fae8f3da0e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.401846, - "y": 32.136259 - }, - "endPoint": { - "x": 676.375276, - "y": 32.083092 - } - } - }, - { - "id": "c1b51003-423e-5c06-bd6a-ad366b699701", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.375276, - "y": 32.083092 - }, - "endPoint": { - "x": 676.352059, - "y": 32.027221 - } - } - }, - { - "id": "03a98212-c487-5e5f-8c6b-748cee36789d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.352059, - "y": 32.027221 - }, - "endPoint": { - "x": 676.332874, - "y": 31.969528 - } - } - }, - { - "id": "89c6bb8e-31b6-54b1-9c69-1f1f42a6cc5e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.332874, - "y": 31.969528 - }, - "endPoint": { - "x": 676.318079, - "y": 31.910617 - } - } - }, - { - "id": "8486d6b9-96ab-52c4-aaac-57eef470d96e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.318079, - "y": 31.910617 - }, - "endPoint": { - "x": 676.306755, - "y": 31.849971 - } - } - }, - { - "id": "f7df690c-681a-53df-b97a-b548e5db0b6c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.306755, - "y": 31.849971 - }, - "endPoint": { - "x": 676.297668, - "y": 31.786799 - } - } - }, - { - "id": "f362397b-2aa7-58c5-b8b6-c2a9a921831a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.297668, - "y": 31.786799 - }, - "endPoint": { - "x": 676.289582, - "y": 31.720305 - } - } - }, - { - "id": "f31df281-b74c-547d-b487-155bf1861b40", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.289582, - "y": 31.720305 - }, - "endPoint": { - "x": 676.281262, - "y": 31.649697 - } - } - }, - { - "id": "b9ec1f1d-7198-5f1d-869a-06689a153629", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.281262, - "y": 31.649697 - }, - "endPoint": { - "x": 676.27147, - "y": 31.57418 - } - } - }, - { - "id": "882c5d2f-b77e-5966-abb2-0b3c2b88c592", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.27147, - "y": 31.57418 - }, - "endPoint": { - "x": 676.258973, - "y": 31.492962 - } - } - }, - { - "id": "1e8b1ae1-0124-5a66-ae02-7ced04c119bd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.258973, - "y": 31.492962 - }, - "endPoint": { - "x": 676.242534, - "y": 31.405248 - } - } - }, - { - "id": "e2ac5b02-0327-5bb9-bf27-7e1ede0454ff", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.242534, - "y": 31.405248 - }, - "endPoint": { - "x": 676.221265, - "y": 31.310647 - } - } - }, - { - "id": "80f02db7-6b42-54bb-be22-c7242b7fb08f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.221265, - "y": 31.310647 - }, - "endPoint": { - "x": 676.195672, - "y": 31.210373 - } - } - }, - { - "id": "f15d945d-beff-5d14-b7f9-30c992bf4f3b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.195672, - "y": 31.210373 - }, - "endPoint": { - "x": 676.166606, - "y": 31.106042 - } - } - }, - { - "id": "7b440db7-66d2-57a9-a707-ab7c30d9d96f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.166606, - "y": 31.106042 - }, - "endPoint": { - "x": 676.134922, - "y": 30.999273 - } - } - }, - { - "id": "5b95e49a-de36-526d-a3e3-e803090c2d0b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.134922, - "y": 30.999273 - }, - "endPoint": { - "x": 676.101471, - "y": 30.89168 - } - } - }, - { - "id": "5bd4df7c-c434-592f-a221-0732f1f4d686", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.101471, - "y": 30.89168 - }, - "endPoint": { - "x": 676.067106, - "y": 30.78488 - } - } - }, - { - "id": "939dba5b-e6fc-5f23-87be-0a603915d0d6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.067106, - "y": 30.78488 - }, - "endPoint": { - "x": 676.032681, - "y": 30.68049 - } - } - }, - { - "id": "3f4f106c-5368-54e2-8d0a-c43fc0fb795e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 676.032681, - "y": 30.68049 - }, - "endPoint": { - "x": 675.999047, - "y": 30.580127 - } - } - }, - { - "id": "8b611e51-0211-533a-b8ce-fc3d33c0e01a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.999047, - "y": 30.580127 - }, - "endPoint": { - "x": 675.966823, - "y": 30.484971 - } - } - }, - { - "id": "b6cb004b-45f9-5b4d-9caf-6264ab7f9aa5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.966823, - "y": 30.484971 - }, - "endPoint": { - "x": 675.935686, - "y": 30.394458 - } - } - }, - { - "id": "c635968f-2e9e-5765-9cac-c60fb8692839", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.935686, - "y": 30.394458 - }, - "endPoint": { - "x": 675.905076, - "y": 30.30759 - } - } - }, - { - "id": "265c987e-6e1a-5847-83d2-df930acbe697", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.905076, - "y": 30.30759 - }, - "endPoint": { - "x": 675.874436, - "y": 30.223366 - } - } - }, - { - "id": "36c63022-0245-5a11-9a78-c9a6f8c869f8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.874436, - "y": 30.223366 - }, - "endPoint": { - "x": 675.843207, - "y": 30.140789 - } - } - }, - { - "id": "89cfae41-a589-598f-b0b0-f2429bfc18c9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.843207, - "y": 30.140789 - }, - "endPoint": { - "x": 675.810831, - "y": 30.058858 - } - } - }, - { - "id": "d791cab5-a930-553d-abce-351256abb3bf", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.810831, - "y": 30.058858 - }, - "endPoint": { - "x": 675.776749, - "y": 29.976574 - } - } - }, - { - "id": "79eb7e56-fe9f-52e8-84ce-a36b0dcce589", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.776749, - "y": 29.976574 - }, - "endPoint": { - "x": 675.740403, - "y": 29.892937 - } - } - }, - { - "id": "0c05ff93-d68a-5875-94a2-e43cab76944c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.740403, - "y": 29.892937 - }, - "endPoint": { - "x": 675.701103, - "y": 29.80718 - } - } - }, - { - "id": "21e60cc4-77bc-564d-b909-0b517d3c6bc9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.701103, - "y": 29.80718 - }, - "endPoint": { - "x": 675.657627, - "y": 29.719453 - } - } - }, - { - "id": "3f5652c9-25aa-507a-90f8-01599b6b6c42", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.657627, - "y": 29.719453 - }, - "endPoint": { - "x": 675.608621, - "y": 29.63014 - } - } - }, - { - "id": "04209759-92c0-554c-8181-da447afc33de", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.608621, - "y": 29.63014 - }, - "endPoint": { - "x": 675.552734, - "y": 29.539621 - } - } - }, - { - "id": "81b2b7e8-2a50-55c3-b2c7-f8978a8d7701", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.552734, - "y": 29.539621 - }, - "endPoint": { - "x": 675.48861, - "y": 29.44828 - } - } - }, - { - "id": "9e44924f-3027-51ff-ae68-be60f8d1ca10", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.48861, - "y": 29.44828 - }, - "endPoint": { - "x": 675.414897, - "y": 29.356498 - } - } - }, - { - "id": "fd639602-b835-5fb7-8d9c-71f7edb9e297", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.414897, - "y": 29.356498 - }, - "endPoint": { - "x": 675.330242, - "y": 29.264659 - } - } - }, - { - "id": "2800a7b6-d186-5c19-b2a4-835ff3a5359b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.330242, - "y": 29.264659 - }, - "endPoint": { - "x": 675.23329, - "y": 29.173143 - } - } - }, - { - "id": "40af70c2-ca66-5641-8341-49e4c054fca6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.23329, - "y": 29.173143 - }, - "endPoint": { - "x": 675.123282, - "y": 29.082324 - } - } - }, - { - "id": "9ca7cd30-03ac-5ba3-9432-ffc8f9fd44e7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.123282, - "y": 29.082324 - }, - "endPoint": { - "x": 675.001832, - "y": 28.992534 - } - } - }, - { - "id": "d589697e-207b-54a8-abeb-bb8ac6c3b299", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 675.001832, - "y": 28.992534 - }, - "endPoint": { - "x": 674.871144, - "y": 28.904097 - } - } - }, - { - "id": "8166ad7c-7e92-5c58-8e0a-ebcda430a2d6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.871144, - "y": 28.904097 - }, - "endPoint": { - "x": 674.733425, - "y": 28.817335 - } - } - }, - { - "id": "5c235bf5-15ea-5b5b-b115-ddfbc6e249f5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.733425, - "y": 28.817335 - }, - "endPoint": { - "x": 674.590881, - "y": 28.732573 - } - } - }, - { - "id": "7936cede-2173-57cd-ad07-cbfde147603a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.590881, - "y": 28.732573 - }, - "endPoint": { - "x": 674.445719, - "y": 28.650132 - } - } - }, - { - "id": "10d8df9e-daa8-53b9-99b2-94b5c7a57ec0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.445719, - "y": 28.650132 - }, - "endPoint": { - "x": 674.300144, - "y": 28.570337 - } - } - }, - { - "id": "72212444-5dc6-54e2-9141-cb8c987d45d9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.300144, - "y": 28.570337 - }, - "endPoint": { - "x": 674.156363, - "y": 28.49351 - } - } - }, - { - "id": "752fd406-69c8-5608-bbfc-144b61cca417", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.156363, - "y": 28.49351 - }, - "endPoint": { - "x": 674.01621, - "y": 28.419832 - } - } - }, - { - "id": "356a9ee6-545e-5c78-a7c7-5b4742ddc324", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 674.01621, - "y": 28.419832 - }, - "endPoint": { - "x": 673.880027, - "y": 28.348917 - } - } - }, - { - "id": "3c317cd4-60dc-53d3-bf08-dab4259de7ca", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.880027, - "y": 28.348917 - }, - "endPoint": { - "x": 673.747786, - "y": 28.280235 - } - } - }, - { - "id": "dc942ff4-b1d3-59c4-b4da-5f5595dec102", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.747786, - "y": 28.280235 - }, - "endPoint": { - "x": 673.619457, - "y": 28.213257 - } - } - }, - { - "id": "83663691-94ca-5728-9538-1b6b73fc3ec8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.619457, - "y": 28.213257 - }, - "endPoint": { - "x": 673.495011, - "y": 28.147455 - } - } - }, - { - "id": "e3b09dd4-ef00-5596-9260-82cdfee1747a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.495011, - "y": 28.147455 - }, - "endPoint": { - "x": 673.374419, - "y": 28.082299 - } - } - }, - { - "id": "c6df2840-3bca-51a1-9962-ff12b179fbf8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.374419, - "y": 28.082299 - }, - "endPoint": { - "x": 673.257652, - "y": 28.01726 - } - } - }, - { - "id": "dc8de75b-ee6b-59c0-a4b9-8140849c5fa2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.257652, - "y": 28.01726 - }, - "endPoint": { - "x": 673.144681, - "y": 27.951808 - } - } - }, - { - "id": "e7a2c890-26d7-5777-aa43-acb0ec5e4067", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.144681, - "y": 27.951808 - }, - "endPoint": { - "x": 673.035122, - "y": 27.885372 - } - } - }, - { - "id": "a9eb86ec-2d14-5974-853c-7329242cb247", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.035122, - "y": 27.885372 - }, - "endPoint": { - "x": 672.927183, - "y": 27.817202 - } - } - }, - { - "id": "60cd6f64-31b7-50d9-ba96-028f76433384", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.927183, - "y": 27.817202 - }, - "endPoint": { - "x": 672.818714, - "y": 27.746503 - } - } - }, - { - "id": "6362091c-b8b0-5520-8851-5c77c849ebb3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.818714, - "y": 27.746503 - }, - "endPoint": { - "x": 672.707568, - "y": 27.672484 - } - } - }, - { - "id": "1b39dc77-a9c8-5f5f-a303-269c8ac6d630", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.707568, - "y": 27.672484 - }, - "endPoint": { - "x": 672.591598, - "y": 27.59435 - } - } - }, - { - "id": "7cd058aa-0dbc-5ab9-b070-1f6a0018cc8c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.591598, - "y": 27.59435 - }, - "endPoint": { - "x": 672.468655, - "y": 27.511307 - } - } - }, - { - "id": "401d6803-226e-54b1-addd-286b244853a3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.468655, - "y": 27.511307 - }, - "endPoint": { - "x": 672.336592, - "y": 27.422564 - } - } - }, - { - "id": "a5da5a73-3bc2-517e-82d4-4deefba337a2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.336592, - "y": 27.422564 - }, - "endPoint": { - "x": 672.19326, - "y": 27.327326 - } - } - }, - { - "id": "ed750c6a-c1f3-5364-8afe-b70ffb4bee9c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.19326, - "y": 27.327326 - }, - "endPoint": { - "x": 672.037361, - "y": 27.225166 - } - } - }, - { - "id": "6022f273-137f-5900-b65d-d56c8a331d9d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.037361, - "y": 27.225166 - }, - "endPoint": { - "x": 671.870989, - "y": 27.11713 - } - } - }, - { - "id": "9618d32f-1cc2-5d86-bab2-ec0efb93c34f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.870989, - "y": 27.11713 - }, - "endPoint": { - "x": 671.697084, - "y": 27.004626 - } - } - }, - { - "id": "8e6f19cf-de61-5285-b09f-b908d1908a28", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.697084, - "y": 27.004626 - }, - "endPoint": { - "x": 671.518591, - "y": 26.889066 - } - } - }, - { - "id": "86a017c5-d854-5387-b0b5-31a7cf9b472b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.518591, - "y": 26.889066 - }, - "endPoint": { - "x": 671.33845, - "y": 26.77186 - } - } - }, - { - "id": "5746f913-d002-508c-9e52-6bc9373e65a5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.33845, - "y": 26.77186 - }, - "endPoint": { - "x": 671.159605, - "y": 26.65442 - } - } - }, - { - "id": "7672e2b6-7305-5dd2-86e9-ada05d4b1285", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.159605, - "y": 26.65442 - }, - "endPoint": { - "x": 670.984996, - "y": 26.538154 - } - } - }, - { - "id": "894d49f1-854b-5cce-80d5-1daa713e22d6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.984996, - "y": 26.538154 - }, - "endPoint": { - "x": 670.817567, - "y": 26.424475 - } - } - }, - { - "id": "b92c3748-63bb-5b61-b458-9098994abe2f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.817567, - "y": 26.424475 - }, - "endPoint": { - "x": 670.659646, - "y": 26.314553 - } - } - }, - { - "id": "f4981829-b22f-56ab-a18b-e7956a6dba79", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.659646, - "y": 26.314553 - }, - "endPoint": { - "x": 670.511111, - "y": 26.208597 - } - } - }, - { - "id": "bcd72afb-e4e0-51cb-970b-09f7c1e4ab8a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.511111, - "y": 26.208597 - }, - "endPoint": { - "x": 670.371226, - "y": 26.10658 - } - } - }, - { - "id": "ff35ef8f-5396-573e-9045-6851e18be881", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.371226, - "y": 26.10658 - }, - "endPoint": { - "x": 670.239253, - "y": 26.008472 - } - } - }, - { - "id": "f98d5a13-9e0f-5059-bb5d-22f232c9f152", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.239253, - "y": 26.008472 - }, - "endPoint": { - "x": 670.114459, - "y": 25.914243 - } - } - }, - { - "id": "79d3b79a-37c5-5d42-941b-ee25da7cbe24", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.114459, - "y": 25.914243 - }, - "endPoint": { - "x": 669.996106, - "y": 25.823863 - } - } - }, - { - "id": "7d8ebfeb-8c5a-5efa-93f4-965a7fe01615", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.996106, - "y": 25.823863 - }, - "endPoint": { - "x": 669.883458, - "y": 25.737305 - } - } - }, - { - "id": "20b168c1-1a62-5715-96d9-4d478c85437f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.883458, - "y": 25.737305 - }, - "endPoint": { - "x": 669.77578, - "y": 25.654538 - } - } - }, - { - "id": "81edb2f2-0dbe-537b-980f-a23d7354ca63", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.77578, - "y": 25.654538 - }, - "endPoint": { - "x": 669.672512, - "y": 25.575591 - } - } - }, - { - "id": "4809cede-b7e4-5a0b-9ef2-076b080bddc1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.672512, - "y": 25.575591 - }, - "endPoint": { - "x": 669.573801, - "y": 25.50073 - } - } - }, - { - "id": "dff670fa-aa54-589b-8a94-08e0af3066bf", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.573801, - "y": 25.50073 - }, - "endPoint": { - "x": 669.479973, - "y": 25.430277 - } - } - }, - { - "id": "8f0feb0d-e0e5-5776-9450-4b3954550631", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.479973, - "y": 25.430277 - }, - "endPoint": { - "x": 669.391351, - "y": 25.364557 - } - } - }, - { - "id": "da2811c8-9e48-5d4f-8e51-0f2a80fc1248", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.391351, - "y": 25.364557 - }, - "endPoint": { - "x": 669.308259, - "y": 25.303891 - } - } - }, - { - "id": "d8825a17-0119-56b3-bd7f-4ca5ef85cba2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.308259, - "y": 25.303891 - }, - "endPoint": { - "x": 669.231021, - "y": 25.248603 - } - } - }, - { - "id": "f31dbb19-1392-5c43-99b9-5bcffc6c8690", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.231021, - "y": 25.248603 - }, - "endPoint": { - "x": 669.159963, - "y": 25.199018 - } - } - }, - { - "id": "7430b2b2-52a1-5366-b312-8b1e9026ff93", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.159963, - "y": 25.199018 - }, - "endPoint": { - "x": 669.095407, - "y": 25.155457 - } - } - }, - { - "id": "c6523217-f2b8-5a44-81d9-ae1bd58b673e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.095407, - "y": 25.155457 - }, - "endPoint": { - "x": 669.037737, - "y": 25.118298 - } - } - }, - { - "id": "e7e223b3-b000-5169-8079-93b724b9b6e3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.037737, - "y": 25.118298 - }, - "endPoint": { - "x": 668.987571, - "y": 25.088134 - } - } - }, - { - "id": "58bb280b-3fe2-55b6-a39f-29fcf91895b2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.987571, - "y": 25.088134 - }, - "endPoint": { - "x": 668.945584, - "y": 25.065611 - } - } - }, - { - "id": "a31d94b0-b118-561d-ade8-f018863bbc16", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.945584, - "y": 25.065611 - }, - "endPoint": { - "x": 668.912454, - "y": 25.051376 - } - } - }, - { - "id": "bf4db394-bce6-5dc3-b54d-544b224dd721", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.912454, - "y": 25.051376 - }, - "endPoint": { - "x": 668.888857, - "y": 25.046076 - } - } - }, - { - "id": "02a57792-d1e9-5696-804f-7d7692e953ee", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.888857, - "y": 25.046076 - }, - "endPoint": { - "x": 668.875469, - "y": 25.050356 - } - } - }, - { - "id": "70cafe8b-fedf-5fa1-ae6b-9ef93b49df6e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.875469, - "y": 25.050356 - }, - "endPoint": { - "x": 668.872966, - "y": 25.064864 - } - } - }, - { - "id": "ac5250ba-4bf8-5feb-9c57-bb28dd396a51", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.872966, - "y": 25.064864 - }, - "endPoint": { - "x": 668.882025, - "y": 25.090246 - } - } - }, - { - "id": "738b4739-69fa-50f3-949c-36b075e88627", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.882025, - "y": 25.090246 - }, - "endPoint": { - "x": 668.903077, - "y": 25.126904 - } - } - }, - { - "id": "dad3bf42-2bb3-5bcf-9361-4acdf40a5774", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.903077, - "y": 25.126904 - }, - "endPoint": { - "x": 668.935573, - "y": 25.17426 - } - } - }, - { - "id": "fc8b6a2b-48b0-5066-81dc-2fd47ee4c37b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.935573, - "y": 25.17426 - }, - "endPoint": { - "x": 668.978719, - "y": 25.23149 - } - } - }, - { - "id": "2d8c19c4-3777-517e-a185-187207e50994", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.978719, - "y": 25.23149 - }, - "endPoint": { - "x": 669.03172, - "y": 25.297773 - } - } - }, - { - "id": "f4e34544-9e77-54e7-8955-9f8a33859feb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.03172, - "y": 25.297773 - }, - "endPoint": { - "x": 669.093781, - "y": 25.372285 - } - } - }, - { - "id": "fc47db4b-1cc7-5fc8-8f17-ba3a6c9d6374", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.093781, - "y": 25.372285 - }, - "endPoint": { - "x": 669.164108, - "y": 25.454203 - } - } - }, - { - "id": "52f04699-8996-5386-87cc-dfc6ec2e5953", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.164108, - "y": 25.454203 - }, - "endPoint": { - "x": 669.241908, - "y": 25.542704 - } - } - }, - { - "id": "2ce4c497-7c6a-57d6-a818-2b47dd6d1e71", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.241908, - "y": 25.542704 - }, - "endPoint": { - "x": 669.326385, - "y": 25.636966 - } - } - }, - { - "id": "d9c40025-1b11-5bc4-a67a-90d25746ab40", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.326385, - "y": 25.636966 - }, - "endPoint": { - "x": 669.416686, - "y": 25.736137 - } - } - }, - { - "id": "443e42e5-d430-5c83-8273-4a813ed0a458", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.416686, - "y": 25.736137 - }, - "endPoint": { - "x": 669.511724, - "y": 25.839246 - } - } - }, - { - "id": "0fbcd5d3-f8c9-56d7-adb5-71eb594337ef", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.511724, - "y": 25.839246 - }, - "endPoint": { - "x": 669.61035, - "y": 25.945294 - } - } - }, - { - "id": "69a15d5f-ecd7-5e95-aec9-984d4fac3ea8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.61035, - "y": 25.945294 - }, - "endPoint": { - "x": 669.711417, - "y": 26.053281 - } - } - }, - { - "id": "7611e72a-6f04-5242-9ee7-36e08af86385", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.711417, - "y": 26.053281 - }, - "endPoint": { - "x": 669.813779, - "y": 26.16221 - } - } - }, - { - "id": "a07fbf3c-f688-5d69-9917-df01ee567e4e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.813779, - "y": 26.16221 - }, - "endPoint": { - "x": 669.916288, - "y": 26.271079 - } - } - }, - { - "id": "c31f2cc9-1e19-52ed-8c44-980b699eccf3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.916288, - "y": 26.271079 - }, - "endPoint": { - "x": 670.017797, - "y": 26.37889 - } - } - }, - { - "id": "4fd4c4ae-6834-54f5-b5f6-3e92eeeb40db", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.017797, - "y": 26.37889 - }, - "endPoint": { - "x": 670.117159, - "y": 26.484644 - } - } - }, - { - "id": "6c7e344f-1267-5b71-b5ce-48b495861466", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.117159, - "y": 26.484644 - }, - "endPoint": { - "x": 670.21335, - "y": 26.587395 - } - } - }, - { - "id": "42cc760e-806a-5d78-8833-f987cc9d475b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.21335, - "y": 26.587395 - }, - "endPoint": { - "x": 670.305833, - "y": 26.686414 - } - } - }, - { - "id": "ca49d826-a90d-5a13-b9b3-a79609b9ad9a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.305833, - "y": 26.686414 - }, - "endPoint": { - "x": 670.394198, - "y": 26.781023 - } - } - }, - { - "id": "ba2906b0-ba25-5f85-905a-460932acf961", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.394198, - "y": 26.781023 - }, - "endPoint": { - "x": 670.478033, - "y": 26.870549 - } - } - }, - { - "id": "61cabb17-9114-54b2-9cb3-84878ca30283", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.478033, - "y": 26.870549 - }, - "endPoint": { - "x": 670.556925, - "y": 26.954314 - } - } - }, - { - "id": "73a2f339-60e7-505f-9627-9ee42725f7e7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.556925, - "y": 26.954314 - }, - "endPoint": { - "x": 670.630462, - "y": 27.031643 - } - } - }, - { - "id": "c7692bc0-9f6c-53c2-b0b7-53d86b04660e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.630462, - "y": 27.031643 - }, - "endPoint": { - "x": 670.698232, - "y": 27.10186 - } - } - }, - { - "id": "019ae3b0-bfba-5252-905f-a9f7cb946d5a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.698232, - "y": 27.10186 - }, - "endPoint": { - "x": 670.759823, - "y": 27.164289 - } - } - }, - { - "id": "e676ad0d-3e91-59a9-9b44-b1abdac120d8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.759823, - "y": 27.164289 - }, - "endPoint": { - "x": 670.815058, - "y": 27.218449 - } - } - }, - { - "id": "364cc2af-48f3-5479-88fb-6943363235cb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.815058, - "y": 27.218449 - }, - "endPoint": { - "x": 670.864702, - "y": 27.264646 - } - } - }, - { - "id": "0abe8f43-f7a4-5f3e-8ee6-e518a9899a53", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.864702, - "y": 27.264646 - }, - "endPoint": { - "x": 670.909757, - "y": 27.303378 - } - } - }, - { - "id": "6d148338-ebb3-5ce9-9c5f-b73e40dce746", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.909757, - "y": 27.303378 - }, - "endPoint": { - "x": 670.951222, - "y": 27.335144 - } - } - }, - { - "id": "81923a21-3063-56dc-8fc7-08d8c3720d15", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.951222, - "y": 27.335144 - }, - "endPoint": { - "x": 670.990099, - "y": 27.360445 - } - } - }, - { - "id": "3f6ad2ff-023b-5468-94bb-8449bde559c3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.990099, - "y": 27.360445 - }, - "endPoint": { - "x": 671.027387, - "y": 27.37978 - } - } - }, - { - "id": "ebfbe3a2-ec92-59cd-a687-3282ffa0194c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.027387, - "y": 27.37978 - }, - "endPoint": { - "x": 671.064088, - "y": 27.393649 - } - } - }, - { - "id": "01d15fb4-31d5-5c60-9841-f69ebe3b1346", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.064088, - "y": 27.393649 - }, - "endPoint": { - "x": 671.101202, - "y": 27.402551 - } - } - }, - { - "id": "2b21c9d3-dd96-5e72-afbd-b888cef91184", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.101202, - "y": 27.402551 - }, - "endPoint": { - "x": 671.139607, - "y": 27.407211 - } - } - }, - { - "id": "5a13d825-8ab4-5ab4-b41b-a4cdce4ffddc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.139607, - "y": 27.407211 - }, - "endPoint": { - "x": 671.17969, - "y": 27.409255 - } - } - }, - { - "id": "a81550d5-b3c6-5d15-9c02-8dcd01a2e670", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.17969, - "y": 27.409255 - }, - "endPoint": { - "x": 671.221716, - "y": 27.410535 - } - } - }, - { - "id": "fa57e63e-341b-54c3-aff5-b2b1d47eb40c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.221716, - "y": 27.410535 - }, - "endPoint": { - "x": 671.265949, - "y": 27.412903 - } - } - }, - { - "id": "2c8c7588-9624-5c27-b977-eb25fb8d115c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.265949, - "y": 27.412903 - }, - "endPoint": { - "x": 671.312654, - "y": 27.418209 - } - } - }, - { - "id": "099b1f82-18ca-5dff-a33e-b08773919053", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.312654, - "y": 27.418209 - }, - "endPoint": { - "x": 671.362096, - "y": 27.428306 - } - } - }, - { - "id": "814fdede-2c0c-5abe-a2a2-85b3d414cb9e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.362096, - "y": 27.428306 - }, - "endPoint": { - "x": 671.414539, - "y": 27.445044 - } - } - }, - { - "id": "dd428124-d8a4-521e-a07f-6ca359c2fe29", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.414539, - "y": 27.445044 - }, - "endPoint": { - "x": 671.470248, - "y": 27.470276 - } - } - }, - { - "id": "553b16c4-d5e8-542a-a1da-1b8532534cf5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.470248, - "y": 27.470276 - }, - "endPoint": { - "x": 671.529433, - "y": 27.505417 - } - } - }, - { - "id": "426eece8-f2d4-5cc6-a286-e26db46aa39e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.529433, - "y": 27.505417 - }, - "endPoint": { - "x": 671.592089, - "y": 27.550139 - } - } - }, - { - "id": "5488a151-ed34-53e5-a566-028f1a8ef8ca", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.592089, - "y": 27.550139 - }, - "endPoint": { - "x": 671.658158, - "y": 27.603677 - } - } - }, - { - "id": "5cb0d915-5953-5ab2-900a-c8646975759a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.658158, - "y": 27.603677 - }, - "endPoint": { - "x": 671.72758, - "y": 27.665269 - } - } - }, - { - "id": "e5f2ee81-bcb8-50f5-91f8-0b85dbd1c86b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.72758, - "y": 27.665269 - }, - "endPoint": { - "x": 671.800297, - "y": 27.734148 - } - } - }, - { - "id": "532498d0-8759-5ce5-9a75-d20cf0886110", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.800297, - "y": 27.734148 - }, - "endPoint": { - "x": 671.876249, - "y": 27.809553 - } - } - }, - { - "id": "796c185d-c551-5e46-a016-8d08de977323", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.876249, - "y": 27.809553 - }, - "endPoint": { - "x": 671.955377, - "y": 27.890718 - } - } - }, - { - "id": "70d12389-6c4d-5617-a2d9-0be4f53d64a1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.955377, - "y": 27.890718 - }, - "endPoint": { - "x": 672.037623, - "y": 27.97688 - } - } - }, - { - "id": "68bffb7e-ddc3-5ad3-96e0-b81818b13877", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.037623, - "y": 27.97688 - }, - "endPoint": { - "x": 672.122785, - "y": 28.067225 - } - } - }, - { - "id": "208685e5-dc69-5d77-9863-8ff25e080343", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.122785, - "y": 28.067225 - }, - "endPoint": { - "x": 672.210093, - "y": 28.160744 - } - } - }, - { - "id": "c12f0aae-9a42-516c-be3e-44092c83ef3c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.210093, - "y": 28.160744 - }, - "endPoint": { - "x": 672.298636, - "y": 28.25638 - } - } - }, - { - "id": "22723eec-f3da-58ab-8ecf-3af17b085b7e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.298636, - "y": 28.25638 - }, - "endPoint": { - "x": 672.387502, - "y": 28.353074 - } - } - }, - { - "id": "497ce52a-bde8-5d65-b8fe-219fd14752f0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.387502, - "y": 28.353074 - }, - "endPoint": { - "x": 672.475779, - "y": 28.449768 - } - } - }, - { - "id": "d4d56600-c8d0-5a87-bd13-c12ca05fd3ef", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.475779, - "y": 28.449768 - }, - "endPoint": { - "x": 672.562556, - "y": 28.545404 - } - } - }, - { - "id": "81d9cb71-168d-5b30-a66b-1cc6d93c1942", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.562556, - "y": 28.545404 - }, - "endPoint": { - "x": 672.64692, - "y": 28.638923 - } - } - }, - { - "id": "55ba74ea-b46e-5610-97ec-1f5b52de7b05", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.64692, - "y": 28.638923 - }, - "endPoint": { - "x": 672.727961, - "y": 28.729268 - } - } - }, - { - "id": "3d37b204-e5dc-5888-924a-0a098268dfbc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.727961, - "y": 28.729268 - }, - "endPoint": { - "x": 672.804912, - "y": 28.815596 - } - } - }, - { - "id": "4fe5f0d4-953a-54ec-b405-2d3aedc1c7fd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.804912, - "y": 28.815596 - }, - "endPoint": { - "x": 672.877598, - "y": 28.897927 - } - } - }, - { - "id": "2e8774d8-44eb-525e-acaa-0e29e70e52b9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.877598, - "y": 28.897927 - }, - "endPoint": { - "x": 672.945989, - "y": 28.976496 - } - } - }, - { - "id": "f9e9bd37-c0ab-5cb6-a639-de674a97a68c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.945989, - "y": 28.976496 - }, - "endPoint": { - "x": 673.010055, - "y": 29.051537 - } - } - }, - { - "id": "fcf4067a-90fa-5b3e-bb9b-81fa5a74af53", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.010055, - "y": 29.051537 - }, - "endPoint": { - "x": 673.069767, - "y": 29.123287 - } - } - }, - { - "id": "f228d2ee-3f53-5844-8286-2db340946104", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.069767, - "y": 29.123287 - }, - "endPoint": { - "x": 673.125097, - "y": 29.19198 - } - } - }, - { - "id": "8a06cc9f-4baa-53ef-b898-c6b314f22164", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.125097, - "y": 29.19198 - }, - "endPoint": { - "x": 673.176013, - "y": 29.257851 - } - } - }, - { - "id": "86a6414f-e39f-5c3e-97a2-9abdebf50c3d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.176013, - "y": 29.257851 - }, - "endPoint": { - "x": 673.222486, - "y": 29.321135 - } - } - }, - { - "id": "76d345ac-dbe2-5b15-8864-39013f926974", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.222486, - "y": 29.321135 - }, - "endPoint": { - "x": 673.264449, - "y": 29.381984 - } - } - }, - { - "id": "160163f8-5412-577c-91e1-5e263f2c7eeb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.264449, - "y": 29.381984 - }, - "endPoint": { - "x": 673.301675, - "y": 29.440218 - } - } - }, - { - "id": "ef02dede-b2ac-55eb-bd78-41a45771bab9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.301675, - "y": 29.440218 - }, - "endPoint": { - "x": 673.3339, - "y": 29.495572 - } - } - }, - { - "id": "f34f7964-2d4d-5cfa-8e88-72a364f10aef", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.3339, - "y": 29.495572 - }, - "endPoint": { - "x": 673.360859, - "y": 29.547781 - } - } - }, - { - "id": "92c52735-ba96-50cc-a9dc-8e86ceccf867", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.360859, - "y": 29.547781 - }, - "endPoint": { - "x": 673.382287, - "y": 29.596581 - } - } - }, - { - "id": "41123188-38d3-5b1e-b34b-d61a92f09834", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.382287, - "y": 29.596581 - }, - "endPoint": { - "x": 673.397921, - "y": 29.641708 - } - } - }, - { - "id": "b0b0dc55-1460-5e7b-aa9c-94856a318f45", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.397921, - "y": 29.641708 - }, - "endPoint": { - "x": 673.407496, - "y": 29.682898 - } - } - }, - { - "id": "4a04901e-d972-5c91-9d85-3016de30e962", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.407496, - "y": 29.682898 - }, - "endPoint": { - "x": 673.410746, - "y": 29.719885 - } - } - }, - { - "id": "4237f6a6-4c14-515a-8a2f-08c0558af9e2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.410746, - "y": 29.719885 - }, - "endPoint": { - "x": 673.407506, - "y": 29.752412 - } - } - }, - { - "id": "66e29a0c-362a-5453-882a-b067639f8c59", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.407506, - "y": 29.752412 - }, - "endPoint": { - "x": 673.398, - "y": 29.780237 - } - } - }, - { - "id": "03d6575b-3659-5552-bec4-e3121ca026d1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.398, - "y": 29.780237 - }, - "endPoint": { - "x": 673.382553, - "y": 29.803125 - } - } - }, - { - "id": "0fad01e7-5b8b-5fe8-af1e-93cf01d8c026", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.382553, - "y": 29.803125 - }, - "endPoint": { - "x": 673.361488, - "y": 29.82084 - } - } - }, - { - "id": "acbb0833-05f8-545a-8835-d997766d975c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.361488, - "y": 29.82084 - }, - "endPoint": { - "x": 673.335129, - "y": 29.833148 - } - } - }, - { - "id": "d0018e84-456f-5031-a6e2-cdb976f77613", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.335129, - "y": 29.833148 - }, - "endPoint": { - "x": 673.303799, - "y": 29.839813 - } - } - }, - { - "id": "0e9df0be-93e6-535c-a227-fddaa8a3827d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.303799, - "y": 29.839813 - }, - "endPoint": { - "x": 673.267822, - "y": 29.8406 - } - } - }, - { - "id": "56276cd0-0139-5d0b-ae1b-42629b62ec0d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.267822, - "y": 29.8406 - }, - "endPoint": { - "x": 673.227521, - "y": 29.835272 - } - } - }, - { - "id": "a311d77a-a19f-52bb-8168-374365820eba", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.227521, - "y": 29.835272 - }, - "endPoint": { - "x": 673.183176, - "y": 29.823619 - } - } - }, - { - "id": "1ca4787f-dbc8-5726-b5c1-f75a6ef95dd0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.183176, - "y": 29.823619 - }, - "endPoint": { - "x": 673.134884, - "y": 29.805521 - } - } - }, - { - "id": "9d9febde-fda1-5878-91d8-8d2c254a2705", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.134884, - "y": 29.805521 - }, - "endPoint": { - "x": 673.082699, - "y": 29.780885 - } - } - }, - { - "id": "2446b207-504a-5887-a8c8-8a5d7eef2d0a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.082699, - "y": 29.780885 - }, - "endPoint": { - "x": 673.026674, - "y": 29.749613 - } - } - }, - { - "id": "715613c8-3f65-59a9-af54-0c524798644f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 673.026674, - "y": 29.749613 - }, - "endPoint": { - "x": 672.966864, - "y": 29.711613 - } - } - }, - { - "id": "c5166582-626c-551f-b513-9f2eaf9469ae", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.966864, - "y": 29.711613 - }, - "endPoint": { - "x": 672.903321, - "y": 29.666789 - } - } - }, - { - "id": "40cbb399-9507-5941-ad93-cf592322b2a7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.903321, - "y": 29.666789 - }, - "endPoint": { - "x": 672.836098, - "y": 29.615045 - } - } - }, - { - "id": "e6886d32-6b10-5b21-b8f5-c1aa545c4842", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.836098, - "y": 29.615045 - }, - "endPoint": { - "x": 672.765251, - "y": 29.556287 - } - } - }, - { - "id": "347e57d5-8923-5593-ba16-ddbf50657f5a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.765251, - "y": 29.556287 - }, - "endPoint": { - "x": 672.691007, - "y": 29.490673 - } - } - }, - { - "id": "3a7bbf6b-421b-5979-8f2f-b1b7db2e44b9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.691007, - "y": 29.490673 - }, - "endPoint": { - "x": 672.614302, - "y": 29.419376 - } - } - }, - { - "id": "886c290d-f848-5cbe-b0d0-a9b927a06e46", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.614302, - "y": 29.419376 - }, - "endPoint": { - "x": 672.536248, - "y": 29.343822 - } - } - }, - { - "id": "8277e7d1-8cfd-5897-a9d6-7aa2fcae881b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.536248, - "y": 29.343822 - }, - "endPoint": { - "x": 672.457955, - "y": 29.265436 - } - } - }, - { - "id": "548aabd8-f5db-5ccd-b838-44d5c61ee73b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.457955, - "y": 29.265436 - }, - "endPoint": { - "x": 672.380535, - "y": 29.185644 - } - } - }, - { - "id": "6884a2b5-4760-51c7-b134-69130df5b3e2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.380535, - "y": 29.185644 - }, - "endPoint": { - "x": 672.305099, - "y": 29.105872 - } - } - }, - { - "id": "eeb83297-ad20-5d11-bab0-75a43b9084b6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.305099, - "y": 29.105872 - }, - "endPoint": { - "x": 672.232758, - "y": 29.027546 - } - } - }, - { - "id": "6b9c664d-038d-56c5-878a-4240150d15ac", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.232758, - "y": 29.027546 - }, - "endPoint": { - "x": 672.164624, - "y": 28.952093 - } - } - }, - { - "id": "2cbbbe04-2152-50c8-99de-a41de47169bd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.164624, - "y": 28.952093 - }, - "endPoint": { - "x": 672.101506, - "y": 28.880612 - } - } - }, - { - "id": "5013ceec-f768-5f09-8dde-5ec405f0f751", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.101506, - "y": 28.880612 - }, - "endPoint": { - "x": 672.043013, - "y": 28.812906 - } - } - }, - { - "id": "87fb657c-e8bc-5b85-a170-5deed8bd07e1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.043013, - "y": 28.812906 - }, - "endPoint": { - "x": 671.98845, - "y": 28.748452 - } - } - }, - { - "id": "eb989be7-f28b-5a5d-a606-c2fdbf6e3332", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.98845, - "y": 28.748452 - }, - "endPoint": { - "x": 671.937124, - "y": 28.686727 - } - } - }, - { - "id": "c8dfa4a2-5642-5067-86bb-a6ed491198c3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.937124, - "y": 28.686727 - }, - "endPoint": { - "x": 671.888341, - "y": 28.627208 - } - } - }, - { - "id": "d6d06a61-a8a4-5431-9f24-a369c386f10a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.888341, - "y": 28.627208 - }, - "endPoint": { - "x": 671.841408, - "y": 28.569373 - } - } - }, - { - "id": "96156551-16cd-5e47-85d4-7918375086e4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.841408, - "y": 28.569373 - }, - "endPoint": { - "x": 671.795631, - "y": 28.512698 - } - } - }, - { - "id": "f761cb37-25c3-5de1-a725-21f1b6d97648", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.795631, - "y": 28.512698 - }, - "endPoint": { - "x": 671.750316, - "y": 28.456661 - } - } - }, - { - "id": "b2a72617-a8c5-5c89-8eaa-034c34990b96", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.750316, - "y": 28.456661 - }, - "endPoint": { - "x": 671.704954, - "y": 28.400909 - } - } - }, - { - "id": "97a5f9f0-d603-549f-b47e-9482874cdcfc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.704954, - "y": 28.400909 - }, - "endPoint": { - "x": 671.659765, - "y": 28.345778 - } - } - }, - { - "id": "5dff4f04-a388-59a5-b032-6cc8597cb0f2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.659765, - "y": 28.345778 - }, - "endPoint": { - "x": 671.615154, - "y": 28.291773 - } - } - }, - { - "id": "d308f5ca-1195-5951-b1df-074f77fdcdf1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.615154, - "y": 28.291773 - }, - "endPoint": { - "x": 671.571527, - "y": 28.239398 - } - } - }, - { - "id": "ab698d7f-b438-53cd-8ed0-da615f0b9851", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.571527, - "y": 28.239398 - }, - "endPoint": { - "x": 671.529287, - "y": 28.18916 - } - } - }, - { - "id": "da42d4e3-a976-5e2d-8203-9e3a51a65d07", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.529287, - "y": 28.18916 - }, - "endPoint": { - "x": 671.48884, - "y": 28.141563 - } - } - }, - { - "id": "142f4c39-b5d8-55d9-9f3b-5b55459f262e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.48884, - "y": 28.141563 - }, - "endPoint": { - "x": 671.45059, - "y": 28.097113 - } - } - }, - { - "id": "5d74e03e-2626-535a-91ff-96a105fd4bb7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.45059, - "y": 28.097113 - }, - "endPoint": { - "x": 671.414942, - "y": 28.056316 - } - } - }, - { - "id": "801d5435-8af4-5a29-8cdc-5a330d63a8f8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.414942, - "y": 28.056316 - }, - "endPoint": { - "x": 671.382195, - "y": 28.019584 - } - } - }, - { - "id": "8f192217-3bb2-57bf-a5d5-ae35dbe71618", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.382195, - "y": 28.019584 - }, - "endPoint": { - "x": 671.352222, - "y": 27.986968 - } - } - }, - { - "id": "8c06f680-e5d8-547b-9509-c27e904c8ff6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.352222, - "y": 27.986968 - }, - "endPoint": { - "x": 671.324793, - "y": 27.958422 - } - } - }, - { - "id": "d53194c0-af3a-5505-ac42-d168a5bd7c8c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.324793, - "y": 27.958422 - }, - "endPoint": { - "x": 671.299676, - "y": 27.933905 - } - } - }, - { - "id": "564d22b0-aaf9-5adc-9804-35fc88659411", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.299676, - "y": 27.933905 - }, - "endPoint": { - "x": 671.276638, - "y": 27.913371 - } - } - }, - { - "id": "f7420c8e-cffc-5cb3-96ce-dd32a9fec0e2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.276638, - "y": 27.913371 - }, - "endPoint": { - "x": 671.255449, - "y": 27.89678 - } - } - }, - { - "id": "505a1ae4-1a7a-558e-bab0-73e24458793c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.255449, - "y": 27.89678 - }, - "endPoint": { - "x": 671.235876, - "y": 27.884086 - } - } - }, - { - "id": "e71a05b5-3976-5e99-94bb-84cf59e4789c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.235876, - "y": 27.884086 - }, - "endPoint": { - "x": 671.217688, - "y": 27.875247 - } - } - }, - { - "id": "280fc544-247f-547a-a6a2-5467e5ef85bf", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.217688, - "y": 27.875247 - }, - "endPoint": { - "x": 671.200686, - "y": 27.870205 - } - } - }, - { - "id": "d8aa4972-1f4e-5109-8522-cbf5eea0b344", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.200686, - "y": 27.870205 - }, - "endPoint": { - "x": 671.18481, - "y": 27.868844 - } - } - }, - { - "id": "6d58a705-05a5-5e38-9331-ce21fbf03bf4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.18481, - "y": 27.868844 - }, - "endPoint": { - "x": 671.17003, - "y": 27.871035 - } - } - }, - { - "id": "bcc4a877-9046-52d8-8b27-b0f79afe86f3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.17003, - "y": 27.871035 - }, - "endPoint": { - "x": 671.156318, - "y": 27.876646 - } - } - }, - { - "id": "38ba4a01-a1c0-586a-9af2-7cc07525ddba", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.156318, - "y": 27.876646 - }, - "endPoint": { - "x": 671.143646, - "y": 27.885549 - } - } - }, - { - "id": "2810fe22-d548-56e4-b70b-c439d5faef08", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.143646, - "y": 27.885549 - }, - "endPoint": { - "x": 671.131985, - "y": 27.897612 - } - } - }, - { - "id": "ec60a4ef-4f14-5f7a-8ab6-136ab00aa281", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.131985, - "y": 27.897612 - }, - "endPoint": { - "x": 671.121309, - "y": 27.912706 - } - } - }, - { - "id": "8cc11e04-d393-5d8c-a659-33bbf6b6225b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.121309, - "y": 27.912706 - }, - "endPoint": { - "x": 671.111587, - "y": 27.9307 - } - } - }, - { - "id": "1c86bfdc-8df6-59c0-861f-609fdd213068", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.111587, - "y": 27.9307 - }, - "endPoint": { - "x": 671.10282, - "y": 27.95147 - } - } - }, - { - "id": "0fa996cb-2cc1-5e2b-b657-c87742553183", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.10282, - "y": 27.95147 - }, - "endPoint": { - "x": 671.095125, - "y": 27.97491 - } - } - }, - { - "id": "fcf8fdd5-f32d-5d13-b86c-9640cebf56cb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.095125, - "y": 27.97491 - }, - "endPoint": { - "x": 671.088645, - "y": 28.000917 - } - } - }, - { - "id": "aab32871-798f-524e-b501-531d260d961e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.088645, - "y": 28.000917 - }, - "endPoint": { - "x": 671.083524, - "y": 28.029393 - } - } - }, - { - "id": "0c0b01e6-7f0e-5cf1-9e12-6ea1bc859691", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.083524, - "y": 28.029393 - }, - "endPoint": { - "x": 671.079907, - "y": 28.060235 - } - } - }, - { - "id": "2999a6dd-2ba1-5fb3-bdb4-d60cd837fc6e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.079907, - "y": 28.060235 - }, - "endPoint": { - "x": 671.077936, - "y": 28.093344 - } - } - }, - { - "id": "6db4a316-c239-5965-a9ae-c2ffe85a96e2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.077936, - "y": 28.093344 - }, - "endPoint": { - "x": 671.077758, - "y": 28.128617 - } - } - }, - { - "id": "9e3f462f-75dd-544b-843f-ae8d36dea858", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.077758, - "y": 28.128617 - }, - "endPoint": { - "x": 671.079515, - "y": 28.165954 - } - } - }, - { - "id": "ec8f98f3-b588-5f65-acfd-fec086142377", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.079515, - "y": 28.165954 - }, - "endPoint": { - "x": 671.08329, - "y": 28.205252 - } - } - }, - { - "id": "575ff8a6-fde1-5e9c-8074-4402ee9aa69c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.08329, - "y": 28.205252 - }, - "endPoint": { - "x": 671.088913, - "y": 28.246397 - } - } - }, - { - "id": "97d184ea-4a82-5116-bf25-ce4cf3636135", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.088913, - "y": 28.246397 - }, - "endPoint": { - "x": 671.096155, - "y": 28.289275 - } - } - }, - { - "id": "e0efed0e-3cbf-5ea1-bd93-85b4843f011c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.096155, - "y": 28.289275 - }, - "endPoint": { - "x": 671.104785, - "y": 28.333769 - } - } - }, - { - "id": "8014002a-7223-57d5-a9f1-5a776bc2f043", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.104785, - "y": 28.333769 - }, - "endPoint": { - "x": 671.114571, - "y": 28.379766 - } - } - }, - { - "id": "04149d10-bced-5b76-91be-1ef88d8bac3b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.114571, - "y": 28.379766 - }, - "endPoint": { - "x": 671.125283, - "y": 28.427148 - } - } - }, - { - "id": "5af81731-b1c3-575b-b816-3fbbaa950298", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.125283, - "y": 28.427148 - }, - "endPoint": { - "x": 671.13669, - "y": 28.475801 - } - } - }, - { - "id": "906b20e9-2a6b-593d-a90f-885ad5a03cd9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.13669, - "y": 28.475801 - }, - "endPoint": { - "x": 671.148562, - "y": 28.52561 - } - } - }, - { - "id": "93c66551-4b93-5e06-a982-790f58688795", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.148562, - "y": 28.52561 - }, - "endPoint": { - "x": 671.160696, - "y": 28.576446 - } - } - }, - { - "id": "0a791db5-8502-5fb6-af90-a17b993538da", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.160696, - "y": 28.576446 - }, - "endPoint": { - "x": 671.173005, - "y": 28.628135 - } - } - }, - { - "id": "301f3457-fedd-577b-bc86-afd0eaf662e8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.173005, - "y": 28.628135 - }, - "endPoint": { - "x": 671.185431, - "y": 28.680488 - } - } - }, - { - "id": "3180ff3b-8993-5f7c-b093-4f8a832c6e97", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.185431, - "y": 28.680488 - }, - "endPoint": { - "x": 671.197915, - "y": 28.733317 - } - } - }, - { - "id": "450a4391-0b45-53f2-8086-58f46c8bd94b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.197915, - "y": 28.733317 - }, - "endPoint": { - "x": 671.210399, - "y": 28.786436 - } - } - }, - { - "id": "89e51143-fd04-5a3e-b932-a9dfdf959de9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.210399, - "y": 28.786436 - }, - "endPoint": { - "x": 671.222825, - "y": 28.839656 - } - } - }, - { - "id": "4cc53502-d2b8-581d-8d09-827cdd0e16aa", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.222825, - "y": 28.839656 - }, - "endPoint": { - "x": 671.235134, - "y": 28.892789 - } - } - }, - { - "id": "31b58d73-ddf6-5974-930f-8a60b2dc9d9f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.235134, - "y": 28.892789 - }, - "endPoint": { - "x": 671.247268, - "y": 28.945648 - } - } - }, - { - "id": "d3543ec9-3bde-5c37-a519-be20b6742cb7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.247268, - "y": 28.945648 - }, - "endPoint": { - "x": 671.259209, - "y": 28.998069 - } - } - }, - { - "id": "2ff5f010-0558-5cf5-8d38-13ae77a27d56", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.259209, - "y": 28.998069 - }, - "endPoint": { - "x": 671.271105, - "y": 29.049984 - } - } - }, - { - "id": "58af496e-4254-5126-bf23-4aaca6ff5a9a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.271105, - "y": 29.049984 - }, - "endPoint": { - "x": 671.283144, - "y": 29.101351 - } - } - }, - { - "id": "f0ccd467-1e0d-5c75-85a5-09c89a42310e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.283144, - "y": 29.101351 - }, - "endPoint": { - "x": 671.295513, - "y": 29.152126 - } - } - }, - { - "id": "e739f411-210f-53ab-8b71-0c3767fadf84", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.295513, - "y": 29.152126 - }, - "endPoint": { - "x": 671.308401, - "y": 29.202266 - } - } - }, - { - "id": "65b0cf46-9526-5f4e-82b1-cdcf93e5bbdd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.308401, - "y": 29.202266 - }, - "endPoint": { - "x": 671.321995, - "y": 29.251727 - } - } - }, - { - "id": "eb95a7c8-8db2-5e0b-97d1-0a176c975f7d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.321995, - "y": 29.251727 - }, - "endPoint": { - "x": 671.336485, - "y": 29.300466 - } - } - }, - { - "id": "ff8f9596-783f-5713-8da8-589964775b63", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.336485, - "y": 29.300466 - }, - "endPoint": { - "x": 671.352058, - "y": 29.34844 - } - } - }, - { - "id": "8330f849-7801-5c2f-bb26-08b6dfb4cd4b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.352058, - "y": 29.34844 - }, - "endPoint": { - "x": 671.368718, - "y": 29.395582 - } - } - }, - { - "id": "a10229ec-6c66-54da-a393-183eb2af40e1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.368718, - "y": 29.395582 - }, - "endPoint": { - "x": 671.38574, - "y": 29.441728 - } - } - }, - { - "id": "a388692a-dda8-5cbf-98fe-c099f324c261", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.38574, - "y": 29.441728 - }, - "endPoint": { - "x": 671.402213, - "y": 29.48669 - } - } - }, - { - "id": "363052e5-5780-588e-8edd-de8da596f99c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.402213, - "y": 29.48669 - }, - "endPoint": { - "x": 671.417227, - "y": 29.53028 - } - } - }, - { - "id": "96e7ad3e-e467-54b2-80a0-e05e8c0631ee", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.417227, - "y": 29.53028 - }, - "endPoint": { - "x": 671.429872, - "y": 29.57231 - } - } - }, - { - "id": "7493e101-de82-59fe-9e79-57400281e8c6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.429872, - "y": 29.57231 - }, - "endPoint": { - "x": 671.439239, - "y": 29.612594 - } - } - }, - { - "id": "8e761d5c-91c7-547b-a87c-698929141117", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.439239, - "y": 29.612594 - }, - "endPoint": { - "x": 671.444417, - "y": 29.650942 - } - } - }, - { - "id": "6d40f2be-4485-5593-a407-08d2dee99d24", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.444417, - "y": 29.650942 - }, - "endPoint": { - "x": 671.444496, - "y": 29.687168 - } - } - }, - { - "id": "115ab61f-d83a-5b7c-acf3-55cdbc214bd5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.444496, - "y": 29.687168 - }, - "endPoint": { - "x": 671.438837, - "y": 29.721055 - } - } - }, - { - "id": "c9df506b-61c2-5cd4-bb09-46aba2a8e3d3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.438837, - "y": 29.721055 - }, - "endPoint": { - "x": 671.427876, - "y": 29.75227 - } - } - }, - { - "id": "8edba752-1370-5896-937b-afcdf8fefdd9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.427876, - "y": 29.75227 - }, - "endPoint": { - "x": 671.412322, - "y": 29.780454 - } - } - }, - { - "id": "79946486-5fa4-5be2-890a-109cfc806bab", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.412322, - "y": 29.780454 - }, - "endPoint": { - "x": 671.392881, - "y": 29.805245 - } - } - }, - { - "id": "3c6bad77-0bef-5971-9648-5408498580bc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.392881, - "y": 29.805245 - }, - "endPoint": { - "x": 671.370262, - "y": 29.826284 - } - } - }, - { - "id": "133672b8-2e26-55eb-86b5-2b02b761435f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.370262, - "y": 29.826284 - }, - "endPoint": { - "x": 671.345171, - "y": 29.843208 - } - } - }, - { - "id": "6f94aec0-7360-54c7-b134-3f1cfe779001", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.345171, - "y": 29.843208 - }, - "endPoint": { - "x": 671.318317, - "y": 29.855659 - } - } - }, - { - "id": "66b4d771-6da4-5cf0-ba5a-3505f5a768ab", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.318317, - "y": 29.855659 - }, - "endPoint": { - "x": 671.290406, - "y": 29.863274 - } - } - }, - { - "id": "5c3623f2-f51a-5f86-9a02-cee2fc43c8f8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.290406, - "y": 29.863274 - }, - "endPoint": { - "x": 671.261977, - "y": 29.865747 - } - } - }, - { - "id": "d050078b-c5e4-511d-b239-fd3845c6bcc7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.261977, - "y": 29.865747 - }, - "endPoint": { - "x": 671.232897, - "y": 29.86298 - } - } - }, - { - "id": "e78eadb9-a359-58f2-8b44-49ca9ffdf3dc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.232897, - "y": 29.86298 - }, - "endPoint": { - "x": 671.202861, - "y": 29.854932 - } - } - }, - { - "id": "eb815322-2418-54ce-aa73-0c3306e08e9c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.202861, - "y": 29.854932 - }, - "endPoint": { - "x": 671.171567, - "y": 29.841558 - } - } - }, - { - "id": "b03c8619-f164-5de2-8799-f3add2017bc7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.171567, - "y": 29.841558 - }, - "endPoint": { - "x": 671.138712, - "y": 29.822816 - } - } - }, - { - "id": "df3cf1e8-ba8f-5a17-9aef-aa20ffcec710", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.138712, - "y": 29.822816 - }, - "endPoint": { - "x": 671.103992, - "y": 29.798661 - } - } - }, - { - "id": "b0c23e31-7088-5bd6-b96c-97336e107d28", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.103992, - "y": 29.798661 - }, - "endPoint": { - "x": 671.067106, - "y": 29.769051 - } - } - }, - { - "id": "37041567-9dc2-5feb-be7c-4857ea7179ef", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.067106, - "y": 29.769051 - }, - "endPoint": { - "x": 671.02775, - "y": 29.733942 - } - } - }, - { - "id": "dd8cb949-4a9a-5dbe-88b0-cdc4524b8244", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.02775, - "y": 29.733942 - }, - "endPoint": { - "x": 670.985726, - "y": 29.693451 - } - } - }, - { - "id": "dc441e57-4fb0-5b5e-ab2e-c6623a99e484", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.985726, - "y": 29.693451 - }, - "endPoint": { - "x": 670.941261, - "y": 29.648326 - } - } - }, - { - "id": "26f4dcef-a5c9-5798-8395-8ca8c8a97e99", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.941261, - "y": 29.648326 - }, - "endPoint": { - "x": 670.894688, - "y": 29.599478 - } - } - }, - { - "id": "875c8d4b-69f6-5ccd-91e4-15c2c2450ddd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.894688, - "y": 29.599478 - }, - "endPoint": { - "x": 670.846338, - "y": 29.547814 - } - } - }, - { - "id": "12ba3291-0ac1-51c2-a043-db44fc3a2dd9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.846338, - "y": 29.547814 - }, - "endPoint": { - "x": 670.796543, - "y": 29.494245 - } - } - }, - { - "id": "0d8241be-c748-59c7-9783-4b0d1153059e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.796543, - "y": 29.494245 - }, - "endPoint": { - "x": 670.745637, - "y": 29.43968 - } - } - }, - { - "id": "e87795ae-94ee-57a8-b598-9e13ec320208", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.745637, - "y": 29.43968 - }, - "endPoint": { - "x": 670.69395, - "y": 29.385027 - } - } - }, - { - "id": "7da9f994-6cca-5879-8341-658d4318ff4e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.69395, - "y": 29.385027 - }, - "endPoint": { - "x": 670.641816, - "y": 29.331195 - } - } - }, - { - "id": "387227b7-ec60-56f9-9cd5-6f7f17d47c07", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.641816, - "y": 29.331195 - }, - "endPoint": { - "x": 670.589583, - "y": 29.278944 - } - } - }, - { - "id": "b4dc79c1-24c2-54d1-9d55-58d5571a9dcc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.589583, - "y": 29.278944 - }, - "endPoint": { - "x": 670.537668, - "y": 29.228439 - } - } - }, - { - "id": "549facd7-0687-53e2-8104-f78647d6574e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.537668, - "y": 29.228439 - }, - "endPoint": { - "x": 670.486505, - "y": 29.179694 - } - } - }, - { - "id": "2e7123b4-8527-5da4-be05-7a4b5b0e0af8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.486505, - "y": 29.179694 - }, - "endPoint": { - "x": 670.436527, - "y": 29.132723 - } - } - }, - { - "id": "9392a47f-585f-5c77-a6e6-b96a927ca81a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.436527, - "y": 29.132723 - }, - "endPoint": { - "x": 670.388169, - "y": 29.087542 - } - } - }, - { - "id": "43d51606-62e7-5ac2-ab58-5ab842292193", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.388169, - "y": 29.087542 - }, - "endPoint": { - "x": 670.341862, - "y": 29.044165 - } - } - }, - { - "id": "1d104db7-2cce-553d-bc25-6effbb309244", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.341862, - "y": 29.044165 - }, - "endPoint": { - "x": 670.298042, - "y": 29.002607 - } - } - }, - { - "id": "d1122c9e-1b1d-59dd-89b0-1101609eedfc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.298042, - "y": 29.002607 - }, - "endPoint": { - "x": 670.257141, - "y": 28.962882 - } - } - }, - { - "id": "e7025df1-66c1-502a-9371-f07d96aef0ef", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.257141, - "y": 28.962882 - }, - "endPoint": { - "x": 670.219406, - "y": 28.924994 - } - } - }, - { - "id": "333a879b-01bf-5dbc-bfc6-741b0a04534e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.219406, - "y": 28.924994 - }, - "endPoint": { - "x": 670.18433, - "y": 28.888896 - } - } - }, - { - "id": "ae05cc7a-e366-5b4e-9281-0c7b5f0c2018", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.18433, - "y": 28.888896 - }, - "endPoint": { - "x": 670.15122, - "y": 28.854532 - } - } - }, - { - "id": "1271aca3-6212-5991-950a-888b973343ee", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.15122, - "y": 28.854532 - }, - "endPoint": { - "x": 670.119382, - "y": 28.821842 - } - } - }, - { - "id": "e2575608-1b27-5be8-bdf0-463d70bbcacb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.119382, - "y": 28.821842 - }, - "endPoint": { - "x": 670.088121, - "y": 28.790769 - } - } - }, - { - "id": "bdca8b00-ce4e-5493-9089-0a79d5db58eb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.088121, - "y": 28.790769 - }, - "endPoint": { - "x": 670.056744, - "y": 28.761256 - } - } - }, - { - "id": "1ffcd9a2-75ba-5c51-918b-5874624aacdf", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.056744, - "y": 28.761256 - }, - "endPoint": { - "x": 670.024557, - "y": 28.733245 - } - } - }, - { - "id": "fd287ef3-a1cc-54aa-bbc6-04fcc3fe07b6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 670.024557, - "y": 28.733245 - }, - "endPoint": { - "x": 669.990866, - "y": 28.706678 - } - } - }, - { - "id": "bfdef122-2918-5d5d-a6a7-9fd8ebe62e6d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.990866, - "y": 28.706678 - }, - "endPoint": { - "x": 669.955218, - "y": 28.681548 - } - } - }, - { - "id": "3aef87aa-1d26-5420-b0e1-2090efd824b2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.955218, - "y": 28.681548 - }, - "endPoint": { - "x": 669.918124, - "y": 28.658049 - } - } - }, - { - "id": "3a603e58-2710-5f27-a0ae-816eb3812314", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.918124, - "y": 28.658049 - }, - "endPoint": { - "x": 669.880336, - "y": 28.636427 - } - } - }, - { - "id": "6d10311d-b85d-547f-8e66-49f1d44d1f85", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.880336, - "y": 28.636427 - }, - "endPoint": { - "x": 669.842604, - "y": 28.616927 - } - } - }, - { - "id": "3d884d7c-5d0a-5f80-bba6-afa2195b7b09", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.842604, - "y": 28.616927 - }, - "endPoint": { - "x": 669.805682, - "y": 28.599794 - } - } - }, - { - "id": "86c362ef-ce6e-5a4f-8ed1-f2f99dc2016f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.805682, - "y": 28.599794 - }, - "endPoint": { - "x": 669.77032, - "y": 28.585274 - } - } - }, - { - "id": "9548f038-dda2-5244-948f-02ee53088f2f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.77032, - "y": 28.585274 - }, - "endPoint": { - "x": 669.73727, - "y": 28.573612 - } - } - }, - { - "id": "b4caed47-0eea-572f-a9de-cac011c1dacd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.73727, - "y": 28.573612 - }, - "endPoint": { - "x": 669.707284, - "y": 28.565052 - } - } - }, - { - "id": "3b67f4d6-881b-5651-9360-26d8b25068c9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.707284, - "y": 28.565052 - }, - "endPoint": { - "x": 669.680947, - "y": 28.559781 - } - } - }, - { - "id": "34cdeaef-0019-56a7-8e6b-5d0288b52e10", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.680947, - "y": 28.559781 - }, - "endPoint": { - "x": 669.65818, - "y": 28.557743 - } - } - }, - { - "id": "d486e73b-bbe9-57bb-9d85-9dbe68bf2bdd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.65818, - "y": 28.557743 - }, - "endPoint": { - "x": 669.638737, - "y": 28.558822 - } - } - }, - { - "id": "7b2b8f64-9b20-5f28-aeb6-b500d77050ff", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.638737, - "y": 28.558822 - }, - "endPoint": { - "x": 669.622371, - "y": 28.562902 - } - } - }, - { - "id": "2044f802-bc34-5227-9742-bcd4623ff1a2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.622371, - "y": 28.562902 - }, - "endPoint": { - "x": 669.608838, - "y": 28.569869 - } - } - }, - { - "id": "cd4b6642-91da-5137-b61e-2262eb4c0644", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.608838, - "y": 28.569869 - }, - "endPoint": { - "x": 669.597892, - "y": 28.579607 - } - } - }, - { - "id": "16bfa8b5-b711-5661-b160-63ee22aae103", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.597892, - "y": 28.579607 - }, - "endPoint": { - "x": 669.589285, - "y": 28.591999 - } - } - }, - { - "id": "721add3c-b9fd-5e7c-9c17-0b747bfcf89e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.589285, - "y": 28.591999 - }, - "endPoint": { - "x": 669.582774, - "y": 28.606932 - } - } - }, - { - "id": "817a5b1b-0029-54cd-89f3-78dbb51bac1f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.582774, - "y": 28.606932 - }, - "endPoint": { - "x": 669.578145, - "y": 28.624305 - } - } - }, - { - "id": "6cd6bf58-238e-5494-ab2e-f95392ba3453", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.578145, - "y": 28.624305 - }, - "endPoint": { - "x": 669.575321, - "y": 28.644088 - } - } - }, - { - "id": "a79abbcc-d110-55ae-b573-e304a258abb9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.575321, - "y": 28.644088 - }, - "endPoint": { - "x": 669.574259, - "y": 28.666267 - } - } - }, - { - "id": "28614842-5da5-5b5a-b24e-fec8135cfa8b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.574259, - "y": 28.666267 - }, - "endPoint": { - "x": 669.574916, - "y": 28.690828 - } - } - }, - { - "id": "c8ae23b9-ecb8-569d-848f-39d701a04d87", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.574916, - "y": 28.690828 - }, - "endPoint": { - "x": 669.577249, - "y": 28.717755 - } - } - }, - { - "id": "c9810975-9627-5325-8eee-90a14184401a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.577249, - "y": 28.717755 - }, - "endPoint": { - "x": 669.581214, - "y": 28.747036 - } - } - }, - { - "id": "d5717a97-470f-5501-b560-05af0ae8603a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.581214, - "y": 28.747036 - }, - "endPoint": { - "x": 669.586767, - "y": 28.778656 - } - } - }, - { - "id": "e16a4e4d-49a3-50dc-aecf-7cb9d7d8ce40", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.586767, - "y": 28.778656 - }, - "endPoint": { - "x": 669.593866, - "y": 28.8126 - } - } - }, - { - "id": "747d8107-21eb-5d0f-bcd2-613203ec3c35", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.593866, - "y": 28.8126 - }, - "endPoint": { - "x": 669.60241, - "y": 28.848787 - } - } - }, - { - "id": "176b41aa-18dd-5af4-91f8-d5f2dec6a0c5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.60241, - "y": 28.848787 - }, - "endPoint": { - "x": 669.612065, - "y": 28.886867 - } - } - }, - { - "id": "568f7692-bb9f-589f-a8bb-17789693d72f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.612065, - "y": 28.886867 - }, - "endPoint": { - "x": 669.622443, - "y": 28.926419 - } - } - }, - { - "id": "08780410-d7f5-570d-bbeb-4e30c4d83cff", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.622443, - "y": 28.926419 - }, - "endPoint": { - "x": 669.633153, - "y": 28.967025 - } - } - }, - { - "id": "da6d41e2-2238-5152-85b6-a9dfdfd59bcd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.633153, - "y": 28.967025 - }, - "endPoint": { - "x": 669.643805, - "y": 29.008268 - } - } - }, - { - "id": "311e294e-d82c-5cf4-bf8b-aad4d0497a16", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.643805, - "y": 29.008268 - }, - "endPoint": { - "x": 669.654009, - "y": 29.049727 - } - } - }, - { - "id": "8e38ad8c-419e-50cb-ae56-5b5641284fc5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.654009, - "y": 29.049727 - }, - "endPoint": { - "x": 669.663376, - "y": 29.090985 - } - } - }, - { - "id": "1644f7e2-08c8-5800-84bd-61807cf9ad4b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.663376, - "y": 29.090985 - }, - "endPoint": { - "x": 669.671515, - "y": 29.131623 - } - } - }, - { - "id": "07839d9e-d807-5138-b19e-db67493e62bd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.671515, - "y": 29.131623 - }, - "endPoint": { - "x": 669.678106, - "y": 29.171328 - } - } - }, - { - "id": "98a1f6d6-66ec-5073-a4bf-22314abcfad4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.678106, - "y": 29.171328 - }, - "endPoint": { - "x": 669.683108, - "y": 29.21021 - } - } - }, - { - "id": "ede6feef-bc90-5613-9855-53ebc798161b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.683108, - "y": 29.21021 - }, - "endPoint": { - "x": 669.68655, - "y": 29.248486 - } - } - }, - { - "id": "2316b4e6-3462-5ca4-a686-69a0ca50b4e3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.68655, - "y": 29.248486 - }, - "endPoint": { - "x": 669.688462, - "y": 29.286373 - } - } - }, - { - "id": "667f19c2-ff30-5891-a26a-a9708719e1f6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.688462, - "y": 29.286373 - }, - "endPoint": { - "x": 669.688871, - "y": 29.324086 - } - } - }, - { - "id": "0218cc68-b6ae-5fc0-9d08-22ad5ac27518", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.688871, - "y": 29.324086 - }, - "endPoint": { - "x": 669.687807, - "y": 29.361843 - } - } - }, - { - "id": "e93ec028-3344-57a1-8f9a-d090add32e38", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.687807, - "y": 29.361843 - }, - "endPoint": { - "x": 669.685298, - "y": 29.399859 - } - } - }, - { - "id": "67c8c4fb-4c69-5d9b-b600-22711b8c92b9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.685298, - "y": 29.399859 - }, - "endPoint": { - "x": 669.681375, - "y": 29.438352 - } - } - }, - { - "id": "7b8340df-20f4-58a8-926b-a6da4698f13f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.681375, - "y": 29.438352 - }, - "endPoint": { - "x": 669.676043, - "y": 29.477431 - } - } - }, - { - "id": "0d42c011-1989-534d-b641-ad3ab79264d7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.676043, - "y": 29.477431 - }, - "endPoint": { - "x": 669.669222, - "y": 29.516784 - } - } - }, - { - "id": "1062b9c3-a243-5d6c-b5ed-63617f46eece", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.669222, - "y": 29.516784 - }, - "endPoint": { - "x": 669.660813, - "y": 29.555993 - } - } - }, - { - "id": "49e86774-ac42-50aa-9411-869f7fd70d83", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.660813, - "y": 29.555993 - }, - "endPoint": { - "x": 669.650713, - "y": 29.594638 - } - } - }, - { - "id": "68f36418-4ee9-5eee-9c99-f7d453833ca6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.650713, - "y": 29.594638 - }, - "endPoint": { - "x": 669.63882, - "y": 29.632301 - } - } - }, - { - "id": "a2172809-2ea6-50fd-b5c8-d12cf72f2b61", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.63882, - "y": 29.632301 - }, - "endPoint": { - "x": 669.625034, - "y": 29.668563 - } - } - }, - { - "id": "1e19bb58-e20b-538c-b609-fac0b5476669", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.625034, - "y": 29.668563 - }, - "endPoint": { - "x": 669.609253, - "y": 29.703006 - } - } - }, - { - "id": "1a76e1bd-5095-5ff2-b3dd-da21c77eb86f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.609253, - "y": 29.703006 - }, - "endPoint": { - "x": 669.591375, - "y": 29.735211 - } - } - }, - { - "id": "97f1d60f-9653-5fe6-8128-31e881827519", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.591375, - "y": 29.735211 - }, - "endPoint": { - "x": 669.571353, - "y": 29.764829 - } - } - }, - { - "id": "365468fd-288c-555d-ad26-1ca8746621d8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.571353, - "y": 29.764829 - }, - "endPoint": { - "x": 669.54935, - "y": 29.79179 - } - } - }, - { - "id": "e282cca7-e168-5b5a-b4ac-2ea2f2e51110", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.54935, - "y": 29.79179 - }, - "endPoint": { - "x": 669.525583, - "y": 29.816095 - } - } - }, - { - "id": "89222e56-1f84-5697-8f8e-d2cebec44e0c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.525583, - "y": 29.816095 - }, - "endPoint": { - "x": 669.500271, - "y": 29.837744 - } - } - }, - { - "id": "f371f9fe-0001-5ea7-ae78-af8fd94561d2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.500271, - "y": 29.837744 - }, - "endPoint": { - "x": 669.47363, - "y": 29.856736 - } - } - }, - { - "id": "af137c6c-04d6-578a-b002-58d59072957c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.47363, - "y": 29.856736 - }, - "endPoint": { - "x": 669.445877, - "y": 29.873072 - } - } - }, - { - "id": "83bcf70b-8ff5-53f7-ace1-e4ee85e1cb6e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.445877, - "y": 29.873072 - }, - "endPoint": { - "x": 669.41723, - "y": 29.886752 - } - } - }, - { - "id": "8e8fc213-3e25-565d-9ea3-864f6db06c88", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.41723, - "y": 29.886752 - }, - "endPoint": { - "x": 669.387906, - "y": 29.897777 - } - } - }, - { - "id": "83799641-74db-550b-8a4e-5c2296809620", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.387906, - "y": 29.897777 - }, - "endPoint": { - "x": 669.358077, - "y": 29.906111 - } - } - }, - { - "id": "000c425c-fbca-593a-8e7d-6fde26aba467", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.358077, - "y": 29.906111 - }, - "endPoint": { - "x": 669.32774, - "y": 29.911588 - } - } - }, - { - "id": "67b7df85-a325-531b-a6a7-464a401ee9b1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.32774, - "y": 29.911588 - }, - "endPoint": { - "x": 669.296842, - "y": 29.914004 - } - } - }, - { - "id": "98a33de4-cb4e-5fc5-a761-6b90e98734a6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.296842, - "y": 29.914004 - }, - "endPoint": { - "x": 669.265336, - "y": 29.913156 - } - } - }, - { - "id": "81a9e624-d748-57e3-ba96-16bd86c6d959", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.265336, - "y": 29.913156 - }, - "endPoint": { - "x": 669.233171, - "y": 29.908842 - } - } - }, - { - "id": "1b9115b6-efec-5788-9483-bce89afaf6fa", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.233171, - "y": 29.908842 - }, - "endPoint": { - "x": 669.200298, - "y": 29.900859 - } - } - }, - { - "id": "54719e67-4cac-5121-975e-e0773ee3316a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.200298, - "y": 29.900859 - }, - "endPoint": { - "x": 669.166665, - "y": 29.889004 - } - } - }, - { - "id": "83037ede-286d-5a47-8c07-0d08dc268efd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.166665, - "y": 29.889004 - }, - "endPoint": { - "x": 669.132225, - "y": 29.873076 - } - } - }, - { - "id": "87837764-8c52-51cb-a821-169c2df668b0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.132225, - "y": 29.873076 - }, - "endPoint": { - "x": 669.09699, - "y": 29.853056 - } - } - }, - { - "id": "819dd851-2a22-576f-b93b-483a6cdef282", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.09699, - "y": 29.853056 - }, - "endPoint": { - "x": 669.061227, - "y": 29.82967 - } - } - }, - { - "id": "f9f593e3-db4d-5b35-9cfb-dc616c75b82d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.061227, - "y": 29.82967 - }, - "endPoint": { - "x": 669.025266, - "y": 29.803829 - } - } - }, - { - "id": "1deec98b-9b05-59e8-b9cb-709c6995a3c2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.025266, - "y": 29.803829 - }, - "endPoint": { - "x": 668.989437, - "y": 29.776442 - } - } - }, - { - "id": "e563cd7c-736f-5fb0-933f-1e994d21b5b3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.989437, - "y": 29.776442 - }, - "endPoint": { - "x": 668.954071, - "y": 29.748421 - } - } - }, - { - "id": "f5845579-10f0-5bcd-b11e-8c0b82149a0f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.954071, - "y": 29.748421 - }, - "endPoint": { - "x": 668.919496, - "y": 29.720675 - } - } - }, - { - "id": "08205032-1cf4-533c-9ece-ebc5e01581b8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.919496, - "y": 29.720675 - }, - "endPoint": { - "x": 668.886044, - "y": 29.694115 - } - } - }, - { - "id": "a39af1d7-323f-5eef-830b-1a2269604591", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.886044, - "y": 29.694115 - }, - "endPoint": { - "x": 668.854044, - "y": 29.669653 - } - } - }, - { - "id": "95f6dea4-2804-5813-a36b-1b7c2d2957dc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.854044, - "y": 29.669653 - }, - "endPoint": { - "x": 668.823769, - "y": 29.648046 - } - } - }, - { - "id": "248b40aa-e780-577c-b49a-2fd090a91d32", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.823769, - "y": 29.648046 - }, - "endPoint": { - "x": 668.795255, - "y": 29.629445 - } - } - }, - { - "id": "645e8c77-17a9-502f-ad69-d1a4a27fefc0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.795255, - "y": 29.629445 - }, - "endPoint": { - "x": 668.768482, - "y": 29.61385 - } - } - }, - { - "id": "8d66ed9e-4a3c-516f-8a7e-17f1b9cf60f0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.768482, - "y": 29.61385 - }, - "endPoint": { - "x": 668.74343, - "y": 29.601261 - } - } - }, - { - "id": "8e5fe78f-9b1f-5e4f-a47a-6fd01ab58b86", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.74343, - "y": 29.601261 - }, - "endPoint": { - "x": 668.720078, - "y": 29.591676 - } - } - }, - { - "id": "b6b1405b-ea7b-5e1a-a6b4-6d8301ee95cb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.720078, - "y": 29.591676 - }, - "endPoint": { - "x": 668.698405, - "y": 29.585095 - } - } - }, - { - "id": "473255ee-a353-5c78-b7a2-4d678e253ac4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.698405, - "y": 29.585095 - }, - "endPoint": { - "x": 668.678391, - "y": 29.581518 - } - } - }, - { - "id": "773a7ea1-225f-5d74-9e62-1606779a8999", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.678391, - "y": 29.581518 - }, - "endPoint": { - "x": 668.660016, - "y": 29.580943 - } - } - }, - { - "id": "93bb8b2e-416a-5ac5-90ca-e858e07dbc7f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.660016, - "y": 29.580943 - }, - "endPoint": { - "x": 668.643326, - "y": 29.583416 - } - } - }, - { - "id": "e686282f-6588-52b9-9dce-d5843ceaaec6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.643326, - "y": 29.583416 - }, - "endPoint": { - "x": 668.628644, - "y": 29.589165 - } - } - }, - { - "id": "45384d73-498f-5ad6-aae9-b7e8942105a4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.628644, - "y": 29.589165 - }, - "endPoint": { - "x": 668.61636, - "y": 29.598465 - } - } - }, - { - "id": "c9684817-b933-5166-a30c-e5f023f5b16f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.61636, - "y": 29.598465 - }, - "endPoint": { - "x": 668.606863, - "y": 29.61159 - } - } - }, - { - "id": "206a1f38-b3f2-5ae6-b966-ea174648375e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.606863, - "y": 29.61159 - }, - "endPoint": { - "x": 668.600544, - "y": 29.628815 - } - } - }, - { - "id": "e00622e9-e731-5249-a562-c53ff39b43c9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.600544, - "y": 29.628815 - }, - "endPoint": { - "x": 668.597793, - "y": 29.650413 - } - } - }, - { - "id": "a5731ae4-61a3-56bf-894d-ea315526cc9f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.597793, - "y": 29.650413 - }, - "endPoint": { - "x": 668.598999, - "y": 29.676659 - } - } - }, - { - "id": "5136d11c-3b79-5bb8-81c4-c9e3f1a00c36", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.598999, - "y": 29.676659 - }, - "endPoint": { - "x": 668.604553, - "y": 29.707827 - } - } - }, - { - "id": "8cda83c8-97ec-539d-875a-c3f98c3b6a3b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.604553, - "y": 29.707827 - }, - "endPoint": { - "x": 668.614723, - "y": 29.744244 - } - } - }, - { - "id": "08272b49-e87d-51d9-949a-8a6639c4cd10", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.614723, - "y": 29.744244 - }, - "endPoint": { - "x": 668.629299, - "y": 29.786441 - } - } - }, - { - "id": "f2ad4127-8726-5110-aa40-b2ec115f834e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.629299, - "y": 29.786441 - }, - "endPoint": { - "x": 668.647948, - "y": 29.835005 - } - } - }, - { - "id": "9550cb6f-473d-5435-a082-47098f92d349", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.647948, - "y": 29.835005 - }, - "endPoint": { - "x": 668.670338, - "y": 29.890518 - } - } - }, - { - "id": "10e2ca8e-122b-5ec9-8b19-3e62e3e86f4d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.670338, - "y": 29.890518 - }, - "endPoint": { - "x": 668.696136, - "y": 29.953566 - } - } - }, - { - "id": "47929920-5cdb-5f68-a970-c4b6d7f79a57", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.696136, - "y": 29.953566 - }, - "endPoint": { - "x": 668.725011, - "y": 30.024732 - } - } - }, - { - "id": "f8e408c3-85e6-59dd-b77a-ff50c6c1f2da", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.725011, - "y": 30.024732 - }, - "endPoint": { - "x": 668.756631, - "y": 30.104602 - } - } - }, - { - "id": "6337c20c-77f3-5225-8569-e9ce4a07f060", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.756631, - "y": 30.104602 - }, - "endPoint": { - "x": 668.790662, - "y": 30.19376 - } - } - }, - { - "id": "955d9906-f3dc-535b-8f77-da1270cd8b2d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.790662, - "y": 30.19376 - }, - "endPoint": { - "x": 668.826735, - "y": 30.292328 - } - } - }, - { - "id": "9e008fcd-45b1-575c-a116-5b5bb8d64bad", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.826735, - "y": 30.292328 - }, - "endPoint": { - "x": 668.864324, - "y": 30.398573 - } - } - }, - { - "id": "b9f7abb1-a30d-530c-8173-4a6fcadc699f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.864324, - "y": 30.398573 - }, - "endPoint": { - "x": 668.902868, - "y": 30.510303 - } - } - }, - { - "id": "4f07820b-18f4-550c-95de-2b8741681123", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.902868, - "y": 30.510303 - }, - "endPoint": { - "x": 668.941802, - "y": 30.625324 - } - } - }, - { - "id": "a35b9ea8-daa1-5274-9181-942a54e6da09", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.941802, - "y": 30.625324 - }, - "endPoint": { - "x": 668.980564, - "y": 30.741441 - } - } - }, - { - "id": "d29fba6c-2ecf-5dc3-a0c2-25241c105647", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 668.980564, - "y": 30.741441 - }, - "endPoint": { - "x": 669.018591, - "y": 30.856462 - } - } - }, - { - "id": "cab15ccd-60e1-522e-bd87-613551802424", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.018591, - "y": 30.856462 - }, - "endPoint": { - "x": 669.05532, - "y": 30.968191 - } - } - }, - { - "id": "1c40d814-995a-557a-895d-e60ba583e088", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.05532, - "y": 30.968191 - }, - "endPoint": { - "x": 669.090188, - "y": 31.074436 - } - } - }, - { - "id": "f97f116e-566f-5c9b-8ceb-24b7ec92ec69", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.090188, - "y": 31.074436 - }, - "endPoint": { - "x": 669.122772, - "y": 31.173434 - } - } - }, - { - "id": "1cbe49b9-c0bc-5e2a-89bc-ba892e80bec5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.122772, - "y": 31.173434 - }, - "endPoint": { - "x": 669.153205, - "y": 31.26515 - } - } - }, - { - "id": "7df303bc-b3f6-5d96-b41d-cbeeea9e92c5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.153205, - "y": 31.26515 - }, - "endPoint": { - "x": 669.181762, - "y": 31.349981 - } - } - }, - { - "id": "abe23a47-ce6d-5ecd-83c0-0c5eddba5fab", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.181762, - "y": 31.349981 - }, - "endPoint": { - "x": 669.208716, - "y": 31.428324 - } - } - }, - { - "id": "cb159f72-1bcd-5c8b-bac0-678731086788", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.208716, - "y": 31.428324 - }, - "endPoint": { - "x": 669.234341, - "y": 31.500575 - } - } - }, - { - "id": "01b63c00-ee77-55d8-b4b9-65ad71dcca08", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.234341, - "y": 31.500575 - }, - "endPoint": { - "x": 669.258912, - "y": 31.567132 - } - } - }, - { - "id": "3e13a97d-f0d3-5f4a-bb70-f0b6d1cf7aa4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.258912, - "y": 31.567132 - }, - "endPoint": { - "x": 669.282701, - "y": 31.628391 - } - } - }, - { - "id": "c9e233c6-74e3-5cba-a696-49b2eca1062f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.282701, - "y": 31.628391 - }, - "endPoint": { - "x": 669.305983, - "y": 31.68475 - } - } - }, - { - "id": "4f2e075c-e7c1-5953-8175-e46c18ff0eb1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.305983, - "y": 31.68475 - }, - "endPoint": { - "x": 669.328966, - "y": 31.736591 - } - } - }, - { - "id": "0e3ae844-48df-5728-b622-d524f67fc527", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.328966, - "y": 31.736591 - }, - "endPoint": { - "x": 669.351601, - "y": 31.784246 - } - } - }, - { - "id": "05e22022-22ec-558d-83f1-282ad6e760f1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.351601, - "y": 31.784246 - }, - "endPoint": { - "x": 669.373773, - "y": 31.828032 - } - } - }, - { - "id": "8c622900-742b-54a0-bc43-02cee05a5451", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.373773, - "y": 31.828032 - }, - "endPoint": { - "x": 669.395366, - "y": 31.868267 - } - } - }, - { - "id": "e164a18a-b837-5bb2-aa00-3bf5e99dcfc2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.395366, - "y": 31.868267 - }, - "endPoint": { - "x": 669.416266, - "y": 31.90527 - } - } - }, - { - "id": "80292b8d-1cf0-545e-99d0-3e1e597294a3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.416266, - "y": 31.90527 - }, - "endPoint": { - "x": 669.436358, - "y": 31.939357 - } - } - }, - { - "id": "3b24b17f-65dd-5cf1-a5f8-1f2f8619d7af", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.436358, - "y": 31.939357 - }, - "endPoint": { - "x": 669.455527, - "y": 31.970847 - } - } - }, - { - "id": "2c594786-9058-558c-ab5c-2e0c9cb38a80", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.455527, - "y": 31.970847 - }, - "endPoint": { - "x": 669.473657, - "y": 32.000056 - } - } - }, - { - "id": "847d2c56-28c7-5c1c-817c-8f2b91381ed5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.473657, - "y": 32.000056 - }, - "endPoint": { - "x": 669.490654, - "y": 32.027326 - } - } - }, - { - "id": "bf44a71d-76e5-54f9-8350-e368225ad19a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.490654, - "y": 32.027326 - }, - "endPoint": { - "x": 669.506496, - "y": 32.05308 - } - } - }, - { - "id": "0033c2c9-003e-5239-bec2-8a421b64c424", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.506496, - "y": 32.05308 - }, - "endPoint": { - "x": 669.521185, - "y": 32.077767 - } - } - }, - { - "id": "f9260bca-2085-5830-bb78-bf82a4d4114d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.521185, - "y": 32.077767 - }, - "endPoint": { - "x": 669.534719, - "y": 32.101834 - } - } - }, - { - "id": "4ab89215-c57b-5be5-94bc-c49769d99be1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.534719, - "y": 32.101834 - }, - "endPoint": { - "x": 669.547097, - "y": 32.125727 - } - } - }, - { - "id": "6a5c5a41-5c44-5bd6-b194-f52cd1754a21", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.547097, - "y": 32.125727 - }, - "endPoint": { - "x": 669.558319, - "y": 32.149895 - } - } - }, - { - "id": "5e2f9844-10f9-5d94-afaf-0158c7b76420", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.558319, - "y": 32.149895 - }, - "endPoint": { - "x": 669.568385, - "y": 32.174783 - } - } - }, - { - "id": "6fbb4388-88f7-56c3-aa06-e5dcf5eabf77", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.568385, - "y": 32.174783 - }, - "endPoint": { - "x": 669.577293, - "y": 32.200841 - } - } - }, - { - "id": "66829bf2-c223-50fa-a004-83c53b917e3f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.577293, - "y": 32.200841 - }, - "endPoint": { - "x": 669.585019, - "y": 32.228367 - } - } - }, - { - "id": "31b00201-fed0-5d50-8394-5d5dada39f48", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.585019, - "y": 32.228367 - }, - "endPoint": { - "x": 669.591443, - "y": 32.257076 - } - } - }, - { - "id": "8e83585e-6194-5994-a79c-87bc7c173bd5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.591443, - "y": 32.257076 - }, - "endPoint": { - "x": 669.59642, - "y": 32.286536 - } - } - }, - { - "id": "5d04992a-500e-50ed-b5ee-944655a8510e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.59642, - "y": 32.286536 - }, - "endPoint": { - "x": 669.599806, - "y": 32.316313 - } - } - }, - { - "id": "f3e51605-2517-5e52-be78-aa0484db0055", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.599806, - "y": 32.316313 - }, - "endPoint": { - "x": 669.601456, - "y": 32.345975 - } - } - }, - { - "id": "33119491-f1c8-5b67-b402-684bc543e5ec", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.601456, - "y": 32.345975 - }, - "endPoint": { - "x": 669.601226, - "y": 32.375089 - } - } - }, - { - "id": "aef11ce5-7f48-5ae0-b5a7-2a04f6e8eb3f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.601226, - "y": 32.375089 - }, - "endPoint": { - "x": 669.598972, - "y": 32.403222 - } - } - }, - { - "id": "008c30af-cdf8-51e4-ba34-c740a99e1da3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.598972, - "y": 32.403222 - }, - "endPoint": { - "x": 669.594548, - "y": 32.429941 - } - } - }, - { - "id": "058e1195-c5a5-5d6d-9447-233be1f198e7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.594548, - "y": 32.429941 - }, - "endPoint": { - "x": 669.587857, - "y": 32.454895 - } - } - }, - { - "id": "be25d38f-3eda-5b22-ad60-2cc370af60e4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.587857, - "y": 32.454895 - }, - "endPoint": { - "x": 669.578983, - "y": 32.478053 - } - } - }, - { - "id": "3686ac0d-2b2a-56a1-af41-59c7b029c1a5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.578983, - "y": 32.478053 - }, - "endPoint": { - "x": 669.568057, - "y": 32.499464 - } - } - }, - { - "id": "2b3d8009-ae98-50cd-8e0a-2d55ae44d701", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.568057, - "y": 32.499464 - }, - "endPoint": { - "x": 669.555209, - "y": 32.51918 - } - } - }, - { - "id": "ced74833-a167-5e4e-8a50-bb52f2ebe337", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.555209, - "y": 32.51918 - }, - "endPoint": { - "x": 669.540571, - "y": 32.53725 - } - } - }, - { - "id": "e3e09aed-80c5-56b4-86ba-b12666f1b8f2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.540571, - "y": 32.53725 - }, - "endPoint": { - "x": 669.524272, - "y": 32.553725 - } - } - }, - { - "id": "f555689b-8343-564d-98b3-fda6e0d6eb59", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.524272, - "y": 32.553725 - }, - "endPoint": { - "x": 669.506443, - "y": 32.568654 - } - } - }, - { - "id": "1489e4dd-07f7-5e0e-b943-11cb51ec0d9b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.506443, - "y": 32.568654 - }, - "endPoint": { - "x": 669.487215, - "y": 32.582087 - } - } - }, - { - "id": "e6539bac-14e0-5d72-99f6-2d017f1b8040", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.487215, - "y": 32.582087 - }, - "endPoint": { - "x": 669.466705, - "y": 32.594051 - } - } - }, - { - "id": "84879c7b-47ca-5039-a913-2c52ac7ec83d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.466705, - "y": 32.594051 - }, - "endPoint": { - "x": 669.444983, - "y": 32.604474 - } - } - }, - { - "id": "ab78253a-fa1a-5699-82a1-1920221daa4f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.444983, - "y": 32.604474 - }, - "endPoint": { - "x": 669.422103, - "y": 32.613258 - } - } - }, - { - "id": "7778e79a-1fa5-51fa-b35f-509bf5daa1ef", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.422103, - "y": 32.613258 - }, - "endPoint": { - "x": 669.39812, - "y": 32.620308 - } - } - }, - { - "id": "0cace7c3-c1dc-5d5e-a151-3ac8646bcd1c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.39812, - "y": 32.620308 - }, - "endPoint": { - "x": 669.373089, - "y": 32.625527 - } - } - }, - { - "id": "13691171-13a6-50fd-aad9-0d17b8512691", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.373089, - "y": 32.625527 - }, - "endPoint": { - "x": 669.347067, - "y": 32.628818 - } - } - }, - { - "id": "ede55d23-8d94-5240-be32-bf0ac87a4af0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.347067, - "y": 32.628818 - }, - "endPoint": { - "x": 669.320108, - "y": 32.630085 - } - } - }, - { - "id": "8f501259-149e-589b-a156-98d3f2bdc6ac", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 669.320108, - "y": 32.630085 - }, - "endPoint": { - "x": 669.292268, - "y": 32.629232 - } - } - } - ] - }, - { - "id": "af854183-7271-5fb2-bf5c-a629fbd2111f", - "type": "PolyLine", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": null, - "children": [ - { - "id": "dc4af15a-5b41-5b78-a828-ec3b104bd6da", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.612655, - "y": 29.105249 - }, - "endPoint": { - "x": 672.464208, - "y": 28.966477 - } - } - }, - { - "id": "748bd80d-2916-5de7-86e7-54c65d31beb9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.464208, - "y": 28.966477 - }, - "endPoint": { - "x": 672.339363, - "y": 28.847758 - } - } - }, - { - "id": "e4068c3f-45fc-524d-bbed-0d110825a569", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.339363, - "y": 28.847758 - }, - "endPoint": { - "x": 672.235096, - "y": 28.746606 - } - } - }, - { - "id": "7e19be24-8db8-5b0d-9375-f66b06777fa3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.235096, - "y": 28.746606 - }, - "endPoint": { - "x": 672.148385, - "y": 28.660536 - } - } - }, - { - "id": "1a464533-3323-5804-9a1d-42b094731912", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.148385, - "y": 28.660536 - }, - "endPoint": { - "x": 672.076206, - "y": 28.58706 - } - } - }, - { - "id": "5778b801-8c31-5d18-8c35-ab129f183f75", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.076206, - "y": 28.58706 - }, - "endPoint": { - "x": 672.015535, - "y": 28.523692 - } - } - }, - { - "id": "11271ff3-1b8b-5f8a-9eb4-c7b3f0b39f5a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.015535, - "y": 28.523692 - }, - "endPoint": { - "x": 671.96335, - "y": 28.467946 - } - } - }, - { - "id": "11e2f416-e596-5bd1-af4f-631c743e78a8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.96335, - "y": 28.467946 - }, - "endPoint": { - "x": 671.916628, - "y": 28.417335 - } - } - }, - { - "id": "2305a36c-f802-5f77-975c-1d90b25e5cba", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.916628, - "y": 28.417335 - }, - "endPoint": { - "x": 671.872832, - "y": 28.369759 - } - } - }, - { - "id": "cfe3356d-dc72-583d-955c-5c3674e917c8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.872832, - "y": 28.369759 - }, - "endPoint": { - "x": 671.831382, - "y": 28.324669 - } - } - }, - { - "id": "cdda4f71-7390-5e35-9af0-e0d0aec9c238", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.831382, - "y": 28.324669 - }, - "endPoint": { - "x": 671.792183, - "y": 28.281899 - } - } - }, - { - "id": "40bff4a9-0773-5c3a-a125-f121ba4506ed", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.792183, - "y": 28.281899 - }, - "endPoint": { - "x": 671.755144, - "y": 28.241285 - } - } - }, - { - "id": "43972bd1-a072-5ac6-9b5c-56cbf61f22f7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.755144, - "y": 28.241285 - }, - "endPoint": { - "x": 671.720169, - "y": 28.202664 - } - } - }, - { - "id": "586d8ec4-f573-55fc-9cea-38e076d93123", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.720169, - "y": 28.202664 - }, - "endPoint": { - "x": 671.687166, - "y": 28.165871 - } - } - }, - { - "id": "eeaf4e64-a1e2-5991-83de-83d385530d1c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.687166, - "y": 28.165871 - }, - "endPoint": { - "x": 671.656041, - "y": 28.130742 - } - } - }, - { - "id": "c922aa96-3cac-522c-8db4-e8eb031c4f00", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.656041, - "y": 28.130742 - }, - "endPoint": { - "x": 671.626701, - "y": 28.097113 - } - } - }, - { - "id": "341c57f7-1561-52fe-acad-2a2bd7070c68", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.626701, - "y": 28.097113 - }, - "endPoint": { - "x": 671.599178, - "y": 28.064955 - } - } - }, - { - "id": "09865ddb-180d-5858-bb5c-2a18921a2346", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.599178, - "y": 28.064955 - }, - "endPoint": { - "x": 671.574003, - "y": 28.034776 - } - } - }, - { - "id": "b57efd13-0ece-58d8-a2e4-2a896156eed6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.574003, - "y": 28.034776 - }, - "endPoint": { - "x": 671.551836, - "y": 28.007221 - } - } - }, - { - "id": "a5bcf933-ef1b-50ab-b39f-a863e511e212", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.551836, - "y": 28.007221 - }, - "endPoint": { - "x": 671.533334, - "y": 27.982934 - } - } - }, - { - "id": "67193359-f297-5a7d-b0f2-4be599d0b840", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.533334, - "y": 27.982934 - }, - "endPoint": { - "x": 671.519155, - "y": 27.962557 - } - } - }, - { - "id": "2c31baa9-5c36-5009-8311-8478742e46b1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.519155, - "y": 27.962557 - }, - "endPoint": { - "x": 671.509958, - "y": 27.946736 - } - } - }, - { - "id": "17c7c837-c72d-536d-ac00-2b58dd1122ee", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.509958, - "y": 27.946736 - }, - "endPoint": { - "x": 671.506399, - "y": 27.936114 - } - } - }, - { - "id": "ebbeceb8-78a9-5722-a9aa-b3d5d2fffb83", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.506399, - "y": 27.936114 - }, - "endPoint": { - "x": 671.509138, - "y": 27.931334 - } - } - }, - { - "id": "cdfe3d3e-3a27-559f-90d8-c70a184e61ec", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.509138, - "y": 27.931334 - }, - "endPoint": { - "x": 671.518551, - "y": 27.932811 - } - } - }, - { - "id": "d4dc7511-659c-5ef1-8819-858b01b43d0e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.518551, - "y": 27.932811 - }, - "endPoint": { - "x": 671.533889, - "y": 27.940045 - } - } - }, - { - "id": "2b32f09c-7fe0-5159-9df0-a2d9663f9112", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.533889, - "y": 27.940045 - }, - "endPoint": { - "x": 671.554123, - "y": 27.952303 - } - } - }, - { - "id": "676c9327-e7bc-548f-b3dd-9807bdd70242", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.554123, - "y": 27.952303 - }, - "endPoint": { - "x": 671.578224, - "y": 27.968854 - } - } - }, - { - "id": "a956a280-0fbd-5978-8b9c-d5ce26be921b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.578224, - "y": 27.968854 - }, - "endPoint": { - "x": 671.605162, - "y": 27.988968 - } - } - }, - { - "id": "40fb2143-e7f3-531a-8a59-ef27d10cb0c0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.605162, - "y": 27.988968 - }, - "endPoint": { - "x": 671.633907, - "y": 28.011914 - } - } - }, - { - "id": "876b733a-23ab-5716-b0d5-08438220254c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.633907, - "y": 28.011914 - }, - "endPoint": { - "x": 671.663431, - "y": 28.036961 - } - } - }, - { - "id": "33577fde-f487-5141-83d6-efdf5b91026e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.663431, - "y": 28.036961 - }, - "endPoint": { - "x": 671.692703, - "y": 28.063378 - } - } - }, - { - "id": "2f892859-1f60-5f66-a33a-0f8d2db2d5b1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.692703, - "y": 28.063378 - }, - "endPoint": { - "x": 671.720939, - "y": 28.090567 - } - } - }, - { - "id": "9d2b40df-80d9-5aa1-a380-f36ac156bec1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.720939, - "y": 28.090567 - }, - "endPoint": { - "x": 671.748335, - "y": 28.118465 - } - } - }, - { - "id": "93e8e29d-6b35-5f14-8d1c-ee2967c01355", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.748335, - "y": 28.118465 - }, - "endPoint": { - "x": 671.77533, - "y": 28.147142 - } - } - }, - { - "id": "e17478de-bb9d-5d69-8cd2-fcb94d87103a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.77533, - "y": 28.147142 - }, - "endPoint": { - "x": 671.802364, - "y": 28.176668 - } - } - }, - { - "id": "2116b199-a530-5f9e-88e3-5a90bf30b0e3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.802364, - "y": 28.176668 - }, - "endPoint": { - "x": 671.829877, - "y": 28.207113 - } - } - }, - { - "id": "3d7a881b-1776-5504-bf6a-f8dfb458d713", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.829877, - "y": 28.207113 - }, - "endPoint": { - "x": 671.85831, - "y": 28.238546 - } - } - }, - { - "id": "30691547-ba8b-5e25-9832-2e53950f302f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.85831, - "y": 28.238546 - }, - "endPoint": { - "x": 671.888103, - "y": 28.271039 - } - } - }, - { - "id": "f2161eca-494c-5ee6-bf54-b4b3c3264069", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.888103, - "y": 28.271039 - }, - "endPoint": { - "x": 671.919695, - "y": 28.30466 - } - } - }, - { - "id": "6f3399da-ba62-59cb-8cfc-4529ef43ba84", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.919695, - "y": 28.30466 - }, - "endPoint": { - "x": 671.953421, - "y": 28.339455 - } - } - }, - { - "id": "455e5685-e23a-544f-ae12-9c698a3cc6c2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.953421, - "y": 28.339455 - }, - "endPoint": { - "x": 671.989192, - "y": 28.375364 - } - } - }, - { - "id": "919a95e1-7259-5e2e-9f2f-26169671c1d7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 671.989192, - "y": 28.375364 - }, - "endPoint": { - "x": 672.026813, - "y": 28.412302 - } - } - }, - { - "id": "22aadd3b-4dea-52e4-aa86-6706846052cb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.026813, - "y": 28.412302 - }, - "endPoint": { - "x": 672.06609, - "y": 28.450185 - } - } - }, - { - "id": "bc569aac-74ad-54b6-91c3-01ab33aa2845", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.06609, - "y": 28.450185 - }, - "endPoint": { - "x": 672.106828, - "y": 28.488928 - } - } - }, - { - "id": "d95c9b07-2a90-59e9-af51-b88bcc10f09c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.106828, - "y": 28.488928 - }, - "endPoint": { - "x": 672.148832, - "y": 28.528446 - } - } - }, - { - "id": "3f8b08b6-3848-5618-9998-187a100a10c8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.148832, - "y": 28.528446 - }, - "endPoint": { - "x": 672.191908, - "y": 28.568655 - } - } - }, - { - "id": "13f4acaf-14fb-5107-a494-92ea0acce937", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.191908, - "y": 28.568655 - }, - "endPoint": { - "x": 672.23586, - "y": 28.609469 - } - } - }, - { - "id": "3b702cb5-e5e0-51e0-9703-adb2a3048349", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.23586, - "y": 28.609469 - }, - "endPoint": { - "x": 672.280528, - "y": 28.651112 - } - } - }, - { - "id": "36da7d48-9bce-5022-998a-60ca5d31261e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.280528, - "y": 28.651112 - }, - "endPoint": { - "x": 672.325883, - "y": 28.695039 - } - } - }, - { - "id": "3c241d56-5500-5291-b6bf-d0e8c586bdc6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.325883, - "y": 28.695039 - }, - "endPoint": { - "x": 672.371928, - "y": 28.743012 - } - } - }, - { - "id": "31fb8d79-5187-52ee-8cb0-b3597740aa00", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.371928, - "y": 28.743012 - }, - "endPoint": { - "x": 672.418667, - "y": 28.796793 - } - } - }, - { - "id": "b2db5d0f-76c3-5db5-bfee-955739d4da9d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.418667, - "y": 28.796793 - }, - "endPoint": { - "x": 672.466106, - "y": 28.858145 - } - } - }, - { - "id": "57a1f00d-2154-59c7-bd1b-a1fac0a85e11", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.466106, - "y": 28.858145 - }, - "endPoint": { - "x": 672.514247, - "y": 28.92883 - } - } - }, - { - "id": "b0562411-882f-5d09-b920-4d6212e34e4d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.514247, - "y": 28.92883 - }, - "endPoint": { - "x": 672.563095, - "y": 29.01061 - } - } - }, - { - "id": "80ab8dd2-784f-5e69-8419-190a5d08d737", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 672.563095, - "y": 29.01061 - }, - "endPoint": { - "x": 672.612655, - "y": 29.105249 - } - } - } - ] - }, - { - "id": "c902a0eb-ab1c-50d9-af00-f885a34b92d0", - "type": "PolyLine", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": null, - "children": [ - { - "id": "603d9526-db87-5f60-9a6e-408ad93a97b1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 569.662019, - "y": 31.930613 - }, - "endPoint": { - "x": 569.981673, - "y": 31.798423 - } - } - }, - { - "id": "778dbd50-72d0-56a0-a8f3-5985fc9a0b83", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 569.981673, - "y": 31.798423 - }, - "endPoint": { - "x": 570.254597, - "y": 31.679717 - } - } - }, - { - "id": "67c6dc28-4b8f-5857-ab3e-3060d8ff8244", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 570.254597, - "y": 31.679717 - }, - "endPoint": { - "x": 570.484905, - "y": 31.573354 - } - } - }, - { - "id": "61d33e20-9483-59a5-b390-c0d6afe88ac8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 570.484905, - "y": 31.573354 - }, - "endPoint": { - "x": 570.676709, - "y": 31.478192 - } - } - }, - { - "id": "ab2f822f-31e1-5c32-8517-89c7cbe748b5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 570.676709, - "y": 31.478192 - }, - "endPoint": { - "x": 570.834122, - "y": 31.39309 - } - } - }, - { - "id": "3c095df7-fea3-5d8c-9df0-524313277124", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 570.834122, - "y": 31.39309 - }, - "endPoint": { - "x": 570.961257, - "y": 31.316905 - } - } - }, - { - "id": "bb3d9c88-b4ce-5850-9154-f9e7ecab6272", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 570.961257, - "y": 31.316905 - }, - "endPoint": { - "x": 571.062229, - "y": 31.248498 - } - } - }, - { - "id": "fbd29fb1-73b4-5124-897e-b1111f7250aa", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 571.062229, - "y": 31.248498 - }, - "endPoint": { - "x": 571.14115, - "y": 31.186725 - } - } - }, - { - "id": "12c56d07-bc21-5232-9394-73d15f719009", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 571.14115, - "y": 31.186725 - }, - "endPoint": { - "x": 571.201799, - "y": 31.130388 - } - } - }, - { - "id": "eb355327-bb3f-5a28-a928-4d70db2560c2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 571.201799, - "y": 31.130388 - }, - "endPoint": { - "x": 571.246618, - "y": 31.078054 - } - } - }, - { - "id": "61574c8b-4113-5c38-9102-41a89ad47743", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 571.246618, - "y": 31.078054 - }, - "endPoint": { - "x": 571.277717, - "y": 31.02823 - } - } - }, - { - "id": "866d9083-6086-5f5b-88f4-46cdb2166c39", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 571.277717, - "y": 31.02823 - }, - "endPoint": { - "x": 571.297203, - "y": 30.979427 - } - } - }, - { - "id": "ef21b123-6930-5e4c-a6e5-4c34b7b9a2dd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 571.297203, - "y": 30.979427 - }, - "endPoint": { - "x": 571.307186, - "y": 30.930152 - } - } - }, - { - "id": "eeb48800-b7f6-5913-8047-47ed20e8f651", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 571.307186, - "y": 30.930152 - }, - "endPoint": { - "x": 571.309772, - "y": 30.878914 - } - } - }, - { - "id": "9101b0fa-c69b-56b5-81aa-0c5fc57d0eb9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 571.309772, - "y": 30.878914 - }, - "endPoint": { - "x": 571.307072, - "y": 30.824222 - } - } - }, - { - "id": "3ed9d1d4-b610-5b2f-a6cb-4d05c87b4e67", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 571.307072, - "y": 30.824222 - }, - "endPoint": { - "x": 571.301194, - "y": 30.764585 - } - } - }, - { - "id": "2fb2c583-440e-5058-ad8e-a963952feff7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 571.301194, - "y": 30.764585 - }, - "endPoint": { - "x": 571.293695, - "y": 30.698898 - } - } - }, - { - "id": "48121e6f-9dfd-5a16-9081-ca1414452fbf", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 571.293695, - "y": 30.698898 - }, - "endPoint": { - "x": 571.283934, - "y": 30.627607 - } - } - }, - { - "id": "783f3e06-d3fb-5e2a-b8a1-e618f14627b8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 571.283934, - "y": 30.627607 - }, - "endPoint": { - "x": 571.270721, - "y": 30.551543 - } - } - }, - { - "id": "951ebac0-36fb-59f3-92c2-92324f19d4ef", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 571.270721, - "y": 30.551543 - }, - "endPoint": { - "x": 571.252863, - "y": 30.471537 - } - } - }, - { - "id": "6e65cef3-ab85-5d91-aa71-0e64bdbdeed2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 571.252863, - "y": 30.471537 - }, - "endPoint": { - "x": 571.229168, - "y": 30.388423 - } - } - }, - { - "id": "feac239e-02a0-5315-aced-b81f11457a6f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 571.229168, - "y": 30.388423 - }, - "endPoint": { - "x": 571.198447, - "y": 30.303032 - } - } - }, - { - "id": "7dd87041-34d8-5791-b6b5-b1baf473e042", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 571.198447, - "y": 30.303032 - }, - "endPoint": { - "x": 571.159507, - "y": 30.216195 - } - } - }, - { - "id": "e90f1b4e-3d0d-5e84-8a3d-e17be4645b69", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 571.159507, - "y": 30.216195 - }, - "endPoint": { - "x": 571.111156, - "y": 30.128744 - } - } - }, - { - "id": "0e616e3f-f5ee-57a9-b935-76e74ae38355", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 571.111156, - "y": 30.128744 - }, - "endPoint": { - "x": 571.052778, - "y": 30.041557 - } - } - }, - { - "id": "d1db7730-547a-52d5-8c06-373d83d9eacb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 571.052778, - "y": 30.041557 - }, - "endPoint": { - "x": 570.986057, - "y": 29.955689 - } - } - }, - { - "id": "8559c292-5083-559a-9808-fba1ff6104aa", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 570.986057, - "y": 29.955689 - }, - "endPoint": { - "x": 570.913249, - "y": 29.872243 - } - } - }, - { - "id": "0ac40db1-b430-5fe8-9f88-f953e259d239", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 570.913249, - "y": 29.872243 - }, - "endPoint": { - "x": 570.836613, - "y": 29.79232 - } - } - }, - { - "id": "50833eac-2897-5683-aa52-f98f9de84d78", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 570.836613, - "y": 29.79232 - }, - "endPoint": { - "x": 570.758406, - "y": 29.717022 - } - } - }, - { - "id": "318e1450-986f-556d-af78-8e4ea53856d8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 570.758406, - "y": 29.717022 - }, - "endPoint": { - "x": 570.680887, - "y": 29.64745 - } - } - }, - { - "id": "1bbded9e-6dd3-5b52-84a9-55255761e69c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 570.680887, - "y": 29.64745 - }, - "endPoint": { - "x": 570.606312, - "y": 29.584706 - } - } - }, - { - "id": "4e0f6c2b-51d3-56d6-b79b-ede6acf52f85", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 570.606312, - "y": 29.584706 - }, - "endPoint": { - "x": 570.536941, - "y": 29.529892 - } - } - }, - { - "id": "083a7c36-95a7-509e-8e8d-67b63feb6606", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 570.536941, - "y": 29.529892 - }, - "endPoint": { - "x": 570.473273, - "y": 29.483709 - } - } - }, - { - "id": "f762bca4-094e-5d84-8041-67dab8b9ddd3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 570.473273, - "y": 29.483709 - }, - "endPoint": { - "x": 570.408784, - "y": 29.445263 - } - } - }, - { - "id": "488483dc-1bed-5046-b74a-f154a473fb4e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 570.408784, - "y": 29.445263 - }, - "endPoint": { - "x": 570.335189, - "y": 29.413258 - } - } - }, - { - "id": "49bd57c8-2bb8-5c57-8e2a-3924ed709e44", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 570.335189, - "y": 29.413258 - }, - "endPoint": { - "x": 570.244206, - "y": 29.3864 - } - } - }, - { - "id": "f62bae40-da14-591c-b020-9a03de2ac09d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 570.244206, - "y": 29.3864 - }, - "endPoint": { - "x": 570.127551, - "y": 29.363394 - } - } - }, - { - "id": "19d1708c-996a-5e9b-89a2-be5a77fc0dae", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 570.127551, - "y": 29.363394 - }, - "endPoint": { - "x": 569.976943, - "y": 29.342945 - } - } - }, - { - "id": "ab924dee-7522-52eb-a71c-0a1630b949b1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 569.976943, - "y": 29.342945 - }, - "endPoint": { - "x": 569.784098, - "y": 29.323759 - } - } - }, - { - "id": "03957a98-f8ea-5acb-a886-f3468d8a4526", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 569.784098, - "y": 29.323759 - }, - "endPoint": { - "x": 569.540733, - "y": 29.304541 - } - } - }, - { - "id": "a5105fce-6097-5130-9a12-283ab7694c2a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 569.540733, - "y": 29.304541 - }, - "endPoint": { - "x": 569.242151, - "y": 29.284246 - } - } - }, - { - "id": "052c6ea4-460a-5923-a653-0c281913743a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 569.242151, - "y": 29.284246 - }, - "endPoint": { - "x": 568.898, - "y": 29.262831 - } - } - }, - { - "id": "406f5eb2-8276-50f1-a719-5a55aecf5355", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 568.898, - "y": 29.262831 - }, - "endPoint": { - "x": 568.521511, - "y": 29.2405 - } - } - }, - { - "id": "f05383e6-25ed-5960-a9df-403b711dd63f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 568.521511, - "y": 29.2405 - }, - "endPoint": { - "x": 568.125919, - "y": 29.21746 - } - } - }, - { - "id": "546227b9-a42d-5557-b039-db63df84f945", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 568.125919, - "y": 29.21746 - }, - "endPoint": { - "x": 567.724457, - "y": 29.193917 - } - } - }, - { - "id": "0467d442-6eb2-5b73-9281-82e91dc99e7f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 567.724457, - "y": 29.193917 - }, - "endPoint": { - "x": 567.330357, - "y": 29.170076 - } - } - }, - { - "id": "285c9049-2bde-53f1-8671-31a21eaab002", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 567.330357, - "y": 29.170076 - }, - "endPoint": { - "x": 566.956852, - "y": 29.146143 - } - } - }, - { - "id": "def96e37-7020-5b19-82c8-d2804da84c83", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 566.956852, - "y": 29.146143 - }, - "endPoint": { - "x": 566.617177, - "y": 29.122325 - } - } - }, - { - "id": "8c242682-8981-57ef-8da7-3e8fb029322b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 566.617177, - "y": 29.122325 - }, - "endPoint": { - "x": 566.321168, - "y": 29.09892 - } - } - }, - { - "id": "5caf4365-4e26-5e87-9ccd-77e69dc67570", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 566.321168, - "y": 29.09892 - }, - "endPoint": { - "x": 566.065089, - "y": 29.076601 - } - } - }, - { - "id": "b2515327-f74e-5717-8502-75fe2a6de56a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 566.065089, - "y": 29.076601 - }, - "endPoint": { - "x": 565.841806, - "y": 29.056132 - } - } - }, - { - "id": "93204969-d862-537f-b5c6-fd0738852c76", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 565.841806, - "y": 29.056132 - }, - "endPoint": { - "x": 565.644188, - "y": 29.038278 - } - } - }, - { - "id": "43599d20-aa37-541d-bb86-69e5872b41bc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 565.644188, - "y": 29.038278 - }, - "endPoint": { - "x": 565.465101, - "y": 29.023804 - } - } - }, - { - "id": "8d817bdb-00eb-58b1-8f6e-e8ab6f8f3c32", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 565.465101, - "y": 29.023804 - }, - "endPoint": { - "x": 565.297414, - "y": 29.013477 - } - } - }, - { - "id": "759bd61b-f987-58eb-8081-7b574e520810", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 565.297414, - "y": 29.013477 - }, - "endPoint": { - "x": 565.133994, - "y": 29.008059 - } - } - }, - { - "id": "4bac6758-a0f4-5f17-bd00-6ce5f18ca50b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 565.133994, - "y": 29.008059 - }, - "endPoint": { - "x": 564.967707, - "y": 29.008318 - } - } - }, - { - "id": "3080b49e-24a2-54fa-b159-b8e6be0b07da", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 564.967707, - "y": 29.008318 - }, - "endPoint": { - "x": 564.793406, - "y": 29.014706 - } - } - }, - { - "id": "efeb2598-44a2-5db6-9469-fcd5e998430f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 564.793406, - "y": 29.014706 - }, - "endPoint": { - "x": 564.613868, - "y": 29.026431 - } - } - }, - { - "id": "a5fc89b8-e6d0-5f5d-96ee-df43ea61e731", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 564.613868, - "y": 29.026431 - }, - "endPoint": { - "x": 564.433857, - "y": 29.042391 - } - } - }, - { - "id": "4f97dfe4-fa3b-5362-8421-2ca5bf7f2a30", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 564.433857, - "y": 29.042391 - }, - "endPoint": { - "x": 564.258134, - "y": 29.061481 - } - } - }, - { - "id": "80360791-c4d2-523c-abb2-1c8c8f983676", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 564.258134, - "y": 29.061481 - }, - "endPoint": { - "x": 564.091462, - "y": 29.082598 - } - } - }, - { - "id": "1e6758f0-7358-5f7b-9d17-d9f8912290a9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 564.091462, - "y": 29.082598 - }, - "endPoint": { - "x": 563.938604, - "y": 29.104639 - } - } - }, - { - "id": "628fa21a-dfa6-5643-8166-09d68b36f4fd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 563.938604, - "y": 29.104639 - }, - "endPoint": { - "x": 563.80432, - "y": 29.1265 - } - } - }, - { - "id": "3d19adde-18d1-5b22-99ff-6103e9fe2368", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 563.80432, - "y": 29.1265 - }, - "endPoint": { - "x": 563.693375, - "y": 29.147079 - } - } - }, - { - "id": "ade11011-8036-5ab3-9a20-34e2f6a2e4ae", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 563.693375, - "y": 29.147079 - }, - "endPoint": { - "x": 563.609705, - "y": 29.165472 - } - } - }, - { - "id": "460b6c64-01d2-587b-aa17-dcce7107088f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 563.609705, - "y": 29.165472 - }, - "endPoint": { - "x": 563.553955, - "y": 29.181583 - } - } - }, - { - "id": "f72e99ff-262a-5eea-b167-83e2acf1cb35", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 563.553955, - "y": 29.181583 - }, - "endPoint": { - "x": 563.525942, - "y": 29.195518 - } - } - }, - { - "id": "87c53449-c9e8-5dad-ab7b-e59d66195b52", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 563.525942, - "y": 29.195518 - }, - "endPoint": { - "x": 563.525485, - "y": 29.20738 - } - } - }, - { - "id": "70d4c3f0-71ed-5453-8043-66edf787d0ad", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 563.525485, - "y": 29.20738 - }, - "endPoint": { - "x": 563.552404, - "y": 29.217275 - } - } - }, - { - "id": "21c7c533-3d2e-536d-8109-86a6e969b50c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 563.552404, - "y": 29.217275 - }, - "endPoint": { - "x": 563.606517, - "y": 29.225308 - } - } - }, - { - "id": "37f631d0-7335-5062-b2ba-25ff3c9fade9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 563.606517, - "y": 29.225308 - }, - "endPoint": { - "x": 563.687644, - "y": 29.231582 - } - } - }, - { - "id": "a9ce94b6-4eb1-5b08-81d0-d11102b79cfc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 563.687644, - "y": 29.231582 - }, - "endPoint": { - "x": 563.795602, - "y": 29.236204 - } - } - }, - { - "id": "645a69c1-b840-5d7f-b22a-16884b12aa43", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 563.795602, - "y": 29.236204 - }, - "endPoint": { - "x": 563.929867, - "y": 29.239322 - } - } - }, - { - "id": "9eb4823f-9bf3-52a3-8bbf-3df18aa17ebf", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 563.929867, - "y": 29.239322 - }, - "endPoint": { - "x": 564.088535, - "y": 29.241258 - } - } - }, - { - "id": "95eeaff1-a27f-5c85-b195-77fadbe1e98e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 564.088535, - "y": 29.241258 - }, - "endPoint": { - "x": 564.269359, - "y": 29.242382 - } - } - }, - { - "id": "26a50fd2-d62d-55f2-b359-0a90c0a22603", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 564.269359, - "y": 29.242382 - }, - "endPoint": { - "x": 564.470091, - "y": 29.24306 - } - } - }, - { - "id": "dd2e0a37-8b24-539c-962a-9117b4614481", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 564.470091, - "y": 29.24306 - }, - "endPoint": { - "x": 564.688484, - "y": 29.24366 - } - } - }, - { - "id": "194c5951-0dda-5fe3-9c20-9a61b17eeaa9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 564.688484, - "y": 29.24366 - }, - "endPoint": { - "x": 564.92229, - "y": 29.24455 - } - } - }, - { - "id": "b04bbc90-59ba-5c20-88a9-3984d13e3e17", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 564.92229, - "y": 29.24455 - }, - "endPoint": { - "x": 565.169262, - "y": 29.246097 - } - } - }, - { - "id": "fc13d603-e413-5b58-8aed-9688356c8546", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 565.169262, - "y": 29.246097 - }, - "endPoint": { - "x": 565.427152, - "y": 29.248669 - } - } - }, - { - "id": "2a1798ff-0555-5146-a062-6259e421ee8e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 565.427152, - "y": 29.248669 - }, - "endPoint": { - "x": 565.694495, - "y": 29.252489 - } - } - }, - { - "id": "c41bbe15-0332-5c6c-a024-ea3211d067cb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 565.694495, - "y": 29.252489 - }, - "endPoint": { - "x": 565.972954, - "y": 29.257197 - } - } - }, - { - "id": "44a99949-caa1-520b-b044-52836abfdb2e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 565.972954, - "y": 29.257197 - }, - "endPoint": { - "x": 566.264974, - "y": 29.262292 - } - } - }, - { - "id": "c4275721-dc56-5c75-85b5-a8ccda94bd59", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 566.264974, - "y": 29.262292 - }, - "endPoint": { - "x": 566.572999, - "y": 29.26727 - } - } - }, - { - "id": "d635652e-5b73-5546-bbe9-066feff514ec", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 566.572999, - "y": 29.26727 - }, - "endPoint": { - "x": 566.899475, - "y": 29.271628 - } - } - }, - { - "id": "86b2442f-41e2-5810-9919-557bff7846e8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 566.899475, - "y": 29.271628 - }, - "endPoint": { - "x": 567.246847, - "y": 29.274863 - } - } - }, - { - "id": "53d15439-aebb-519f-a733-4c51fa3fb053", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 567.246847, - "y": 29.274863 - }, - "endPoint": { - "x": 567.617561, - "y": 29.276473 - } - } - }, - { - "id": "fb7964a4-1ffc-5cb3-9897-f86bb3ac5e52", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 567.617561, - "y": 29.276473 - }, - "endPoint": { - "x": 568.01406, - "y": 29.275952 - } - } - }, - { - "id": "f9061de5-a1c2-5c42-8e6c-b82986fb9d14", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 568.01406, - "y": 29.275952 - }, - "endPoint": { - "x": 568.43761, - "y": 29.272956 - } - } - }, - { - "id": "765dae21-de54-53d0-a58a-69265fb78bc2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 568.43761, - "y": 29.272956 - }, - "endPoint": { - "x": 568.884757, - "y": 29.267757 - } - } - }, - { - "id": "523dbfdf-6df7-5715-bb2d-d4aae1646981", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 568.884757, - "y": 29.267757 - }, - "endPoint": { - "x": 569.350865, - "y": 29.260786 - } - } - }, - { - "id": "6c88b845-7e48-5870-9bed-51d55c4835e7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 569.350865, - "y": 29.260786 - }, - "endPoint": { - "x": 569.831302, - "y": 29.252472 - } - } - }, - { - "id": "10383ad2-45f3-5aa8-bb0b-48a137603beb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 569.831302, - "y": 29.252472 - }, - "endPoint": { - "x": 570.321432, - "y": 29.243247 - } - } - }, - { - "id": "206f654b-9a49-5669-b1e1-b3f485a5ecbf", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 570.321432, - "y": 29.243247 - }, - "endPoint": { - "x": 570.816621, - "y": 29.233539 - } - } - }, - { - "id": "6c1c32d0-e8df-5543-ac33-23a379b4dd68", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 570.816621, - "y": 29.233539 - }, - "endPoint": { - "x": 571.312234, - "y": 29.22378 - } - } - }, - { - "id": "e0d01312-3426-569b-ae8c-bac5565da446", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 571.312234, - "y": 29.22378 - }, - "endPoint": { - "x": 571.803637, - "y": 29.214398 - } - } - }, - { - "id": "b4792f93-9521-5c07-916c-2b766f3fa48f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 571.803637, - "y": 29.214398 - }, - "endPoint": { - "x": 572.286116, - "y": 29.205723 - } - } - }, - { - "id": "6d21d4f3-2c2f-5848-90c5-714c266ed32d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 572.286116, - "y": 29.205723 - }, - "endPoint": { - "x": 572.754638, - "y": 29.197677 - } - } - }, - { - "id": "fd02f4dc-1dbf-5084-9765-95f0901861cc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 572.754638, - "y": 29.197677 - }, - "endPoint": { - "x": 573.20409, - "y": 29.190082 - } - } - }, - { - "id": "b3a7c068-ad7a-5083-9dd4-fc0ea8296b33", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 573.20409, - "y": 29.190082 - }, - "endPoint": { - "x": 573.62936, - "y": 29.182759 - } - } - }, - { - "id": "c35fe08b-6053-5619-8e04-c4ddc818f752", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 573.62936, - "y": 29.182759 - }, - "endPoint": { - "x": 574.025336, - "y": 29.175529 - } - } - }, - { - "id": "6d34e111-375f-529b-85d0-a275d290558a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.025336, - "y": 29.175529 - }, - "endPoint": { - "x": 574.386905, - "y": 29.168213 - } - } - }, - { - "id": "2701fea2-96b4-5181-a569-05bec5182d43", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.386905, - "y": 29.168213 - }, - "endPoint": { - "x": 574.708954, - "y": 29.160634 - } - } - }, - { - "id": "fa75690b-4b5f-5b7e-b1b5-89ea9fb160ee", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.708954, - "y": 29.160634 - }, - "endPoint": { - "x": 574.986371, - "y": 29.152612 - } - } - }, - { - "id": "619cfb19-f8c4-5023-b1af-e5a5a6168bf1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.986371, - "y": 29.152612 - }, - "endPoint": { - "x": 575.215201, - "y": 29.143623 - } - } - }, - { - "id": "757426ec-42e9-5ca7-b979-265934bec29f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.215201, - "y": 29.143623 - }, - "endPoint": { - "x": 575.396116, - "y": 29.131763 - } - } - }, - { - "id": "93a2c3de-772c-55f0-8932-b805fca7c4d0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.396116, - "y": 29.131763 - }, - "endPoint": { - "x": 575.530947, - "y": 29.114782 - } - } - }, - { - "id": "4c48a0d8-0bc8-5950-83e5-3947311d3dff", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.530947, - "y": 29.114782 - }, - "endPoint": { - "x": 575.621523, - "y": 29.09043 - } - } - }, - { - "id": "5722f2d5-dc3d-599f-bdc6-24bb80aa5a5f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.621523, - "y": 29.09043 - }, - "endPoint": { - "x": 575.669674, - "y": 29.056456 - } - } - }, - { - "id": "2367b5d4-7e00-565f-9a40-c7ebded46170", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.669674, - "y": 29.056456 - }, - "endPoint": { - "x": 575.677231, - "y": 29.010612 - } - } - }, - { - "id": "957ee2df-7d42-5408-b3a6-a01d0fa2dd02", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.677231, - "y": 29.010612 - }, - "endPoint": { - "x": 575.646024, - "y": 28.950646 - } - } - }, - { - "id": "0560b917-d8d3-56b7-a079-d11c26e18801", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.646024, - "y": 28.950646 - }, - "endPoint": { - "x": 575.577882, - "y": 28.874309 - } - } - }, - { - "id": "f2b048ec-8aeb-5d39-9df2-7af5bf06a3f0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.577882, - "y": 28.874309 - }, - "endPoint": { - "x": 575.475282, - "y": 28.780367 - } - } - }, - { - "id": "22cea12b-9ec1-570e-8d0e-5d8996330db7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.475282, - "y": 28.780367 - }, - "endPoint": { - "x": 575.343282, - "y": 28.671655 - } - } - }, - { - "id": "60f14bf0-42e1-5039-9068-dbdd10acbf4f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.343282, - "y": 28.671655 - }, - "endPoint": { - "x": 575.187586, - "y": 28.552022 - } - } - }, - { - "id": "156a91cb-d6d9-5634-8c5b-6ba72959eb5d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.187586, - "y": 28.552022 - }, - "endPoint": { - "x": 575.013898, - "y": 28.425319 - } - } - }, - { - "id": "9f61fc1b-d2e7-5e04-8314-70261e85a4b9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.013898, - "y": 28.425319 - }, - "endPoint": { - "x": 574.827923, - "y": 28.295396 - } - } - }, - { - "id": "4720a282-b94a-5fcf-a63b-da2ccbd51c80", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.827923, - "y": 28.295396 - }, - "endPoint": { - "x": 574.635365, - "y": 28.166103 - } - } - }, - { - "id": "6fc7c79d-b9ab-59e1-8121-bd7b0bbfe497", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.635365, - "y": 28.166103 - }, - "endPoint": { - "x": 574.441928, - "y": 28.041291 - } - } - }, - { - "id": "a3ddd070-b934-5328-88bc-444cdb224ac5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.441928, - "y": 28.041291 - }, - "endPoint": { - "x": 574.253316, - "y": 27.924809 - } - } - }, - { - "id": "9246913a-dc6d-509b-8088-d57183b5a002", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.253316, - "y": 27.924809 - }, - "endPoint": { - "x": 574.074237, - "y": 27.819737 - } - } - }, - { - "id": "1c4529d3-d1a9-5088-9f34-e4e3ae756d40", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.074237, - "y": 27.819737 - }, - "endPoint": { - "x": 573.905406, - "y": 27.726068 - } - } - }, - { - "id": "062b62f0-29e7-5765-97e9-651b75ff6028", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 573.905406, - "y": 27.726068 - }, - "endPoint": { - "x": 573.746542, - "y": 27.643025 - } - } - }, - { - "id": "b116afd7-2e1c-5e99-addd-5c0e96b4bd78", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 573.746542, - "y": 27.643025 - }, - "endPoint": { - "x": 573.597364, - "y": 27.569831 - } - } - }, - { - "id": "3b87302a-ec0e-5299-8349-90f006e08b2f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 573.597364, - "y": 27.569831 - }, - "endPoint": { - "x": 573.457591, - "y": 27.505708 - } - } - }, - { - "id": "ff7d2f38-bf63-56f5-8a2a-7ed3e5dc5c81", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 573.457591, - "y": 27.505708 - }, - "endPoint": { - "x": 573.326941, - "y": 27.449878 - } - } - }, - { - "id": "53ae1f43-e656-5bb8-9cb8-60219c4e2e5c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 573.326941, - "y": 27.449878 - }, - "endPoint": { - "x": 573.205134, - "y": 27.401564 - } - } - }, - { - "id": "23bf3a4c-f158-5798-a53f-116f4537752b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 573.205134, - "y": 27.401564 - }, - "endPoint": { - "x": 573.091888, - "y": 27.359989 - } - } - }, - { - "id": "3e0af93a-b2a4-5d18-802b-70ce2cb210ef", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 573.091888, - "y": 27.359989 - }, - "endPoint": { - "x": 572.987309, - "y": 27.324411 - } - } - }, - { - "id": "d609666c-f5aa-5634-a448-6cc373eb0681", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 572.987309, - "y": 27.324411 - }, - "endPoint": { - "x": 572.893055, - "y": 27.294232 - } - } - }, - { - "id": "6d3c90ed-f8f3-513c-ae29-595afcca21c7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 572.893055, - "y": 27.294232 - }, - "endPoint": { - "x": 572.811172, - "y": 27.268891 - } - } - }, - { - "id": "c1bb4c4b-e606-5534-a91d-aabc4a3702a9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 572.811172, - "y": 27.268891 - }, - "endPoint": { - "x": 572.743703, - "y": 27.247827 - } - } - }, - { - "id": "2bdba8b4-2fbd-5094-97c5-e63efa4fe79c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 572.743703, - "y": 27.247827 - }, - "endPoint": { - "x": 572.692695, - "y": 27.230478 - } - } - }, - { - "id": "3b2b445f-8ca6-52e6-9139-20420271832a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 572.692695, - "y": 27.230478 - }, - "endPoint": { - "x": 572.660193, - "y": 27.216282 - } - } - }, - { - "id": "1213ca54-30ac-504b-b56c-8b74f243f743", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 572.660193, - "y": 27.216282 - }, - "endPoint": { - "x": 572.648241, - "y": 27.204678 - } - } - }, - { - "id": "67cf0967-69e6-53d5-a91d-09fdb9b8c07a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 572.648241, - "y": 27.204678 - }, - "endPoint": { - "x": 572.658885, - "y": 27.195105 - } - } - }, - { - "id": "ed60b81e-af24-50b3-a493-30757cce12dc", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 572.658885, - "y": 27.195105 - }, - "endPoint": { - "x": 572.693395, - "y": 27.187211 - } - } - }, - { - "id": "6fd295ac-20b5-5afa-9e2e-953c7a0f3f95", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 572.693395, - "y": 27.187211 - }, - "endPoint": { - "x": 572.749941, - "y": 27.181484 - } - } - }, - { - "id": "d3ff316a-fb99-5b66-b096-c9af4d313e49", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 572.749941, - "y": 27.181484 - }, - "endPoint": { - "x": 572.825921, - "y": 27.17862 - } - } - }, - { - "id": "a76d8ca1-2346-5146-81ce-860ce06e3110", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 572.825921, - "y": 27.17862 - }, - "endPoint": { - "x": 572.918728, - "y": 27.179319 - } - } - }, - { - "id": "2a05e280-4953-53c2-8b47-a658ba5f96b0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 572.918728, - "y": 27.179319 - }, - "endPoint": { - "x": 573.02576, - "y": 27.184276 - } - } - }, - { - "id": "0eda3786-5295-5ad5-ba9d-80ae1f57cb11", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 573.02576, - "y": 27.184276 - }, - "endPoint": { - "x": 573.144412, - "y": 27.19419 - } - } - }, - { - "id": "a971f888-8d14-5f88-9fa8-54f8d7fffb5f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 573.144412, - "y": 27.19419 - }, - "endPoint": { - "x": 573.27208, - "y": 27.209757 - } - } - }, - { - "id": "95b00102-864e-5a53-bf6e-7af24202f237", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 573.27208, - "y": 27.209757 - }, - "endPoint": { - "x": 573.406159, - "y": 27.231677 - } - } - }, - { - "id": "33df390a-a35e-5357-b352-0f7f4f6e7ace", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 573.406159, - "y": 27.231677 - }, - "endPoint": { - "x": 573.544254, - "y": 27.260387 - } - } - }, - { - "id": "e392e761-010b-5c58-99af-e9281ec110c5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 573.544254, - "y": 27.260387 - }, - "endPoint": { - "x": 573.684797, - "y": 27.295299 - } - } - }, - { - "id": "fba1c00c-d9fb-513e-899d-35cc89e6bb90", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 573.684797, - "y": 27.295299 - }, - "endPoint": { - "x": 573.826431, - "y": 27.335565 - } - } - }, - { - "id": "827cd83c-96eb-5885-8ab2-8559bc6b98be", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 573.826431, - "y": 27.335565 - }, - "endPoint": { - "x": 573.967796, - "y": 27.380337 - } - } - }, - { - "id": "bbb0c23c-cdf4-5d2e-8419-4fd62f1f04c3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 573.967796, - "y": 27.380337 - }, - "endPoint": { - "x": 574.107534, - "y": 27.428767 - } - } - }, - { - "id": "54859bae-29cd-540a-ad3b-75c91e85ebc1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.107534, - "y": 27.428767 - }, - "endPoint": { - "x": 574.244287, - "y": 27.480008 - } - } - }, - { - "id": "0d13caf8-af15-5322-aa50-262749aa2a03", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.244287, - "y": 27.480008 - }, - "endPoint": { - "x": 574.376694, - "y": 27.533212 - } - } - }, - { - "id": "aa122786-5cbc-5c03-87c4-98d50a7ea9f6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.376694, - "y": 27.533212 - }, - "endPoint": { - "x": 574.503399, - "y": 27.587532 - } - } - }, - { - "id": "c3a762a0-8997-5789-8fc5-230b83c36790", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.503399, - "y": 27.587532 - }, - "endPoint": { - "x": 574.623376, - "y": 27.6423 - } - } - }, - { - "id": "8e606045-af4b-5ee6-a03a-16e353f747fd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.623376, - "y": 27.6423 - }, - "endPoint": { - "x": 574.736942, - "y": 27.697573 - } - } - }, - { - "id": "fb5ce2aa-618c-599e-95bb-52364178aff8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.736942, - "y": 27.697573 - }, - "endPoint": { - "x": 574.844745, - "y": 27.753586 - } - } - }, - { - "id": "45cae164-4835-588d-bda2-ac3924341d34", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.844745, - "y": 27.753586 - }, - "endPoint": { - "x": 574.947435, - "y": 27.810577 - } - } - }, - { - "id": "0c8ef539-5aad-5467-a455-08b3aacf57ce", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.947435, - "y": 27.810577 - }, - "endPoint": { - "x": 575.045662, - "y": 27.868781 - } - } - }, - { - "id": "9853d1c0-719f-531e-a879-2edbb504c0b0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.045662, - "y": 27.868781 - }, - "endPoint": { - "x": 575.140076, - "y": 27.928436 - } - } - }, - { - "id": "613051b5-c4f0-5713-93a8-803a3230b1fb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.140076, - "y": 27.928436 - }, - "endPoint": { - "x": 575.231326, - "y": 27.989777 - } - } - }, - { - "id": "a9d32c1a-814f-5b1a-847b-ddb583c8f4ca", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.231326, - "y": 27.989777 - }, - "endPoint": { - "x": 575.320063, - "y": 28.053041 - } - } - }, - { - "id": "2b01656d-fd3e-5c02-a6af-4d22f2a5fb2f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.320063, - "y": 28.053041 - }, - "endPoint": { - "x": 575.406771, - "y": 28.118427 - } - } - }, - { - "id": "ad7bda56-6ee0-5a75-8cfa-cc828bea5f9e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.406771, - "y": 28.118427 - }, - "endPoint": { - "x": 575.491276, - "y": 28.185985 - } - } - }, - { - "id": "fc400afb-d270-5aaf-8dc1-4234393257cb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.491276, - "y": 28.185985 - }, - "endPoint": { - "x": 575.573242, - "y": 28.255727 - } - } - }, - { - "id": "e7b50a1a-83ca-5a49-8d68-28e8aa352bf8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.573242, - "y": 28.255727 - }, - "endPoint": { - "x": 575.652331, - "y": 28.327668 - } - } - }, - { - "id": "9275357f-7b6c-528b-9674-b01e8bfb46b7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.652331, - "y": 28.327668 - }, - "endPoint": { - "x": 575.728203, - "y": 28.401818 - } - } - }, - { - "id": "3084c368-3a7b-5fe2-bbff-1504fd4a0099", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.728203, - "y": 28.401818 - }, - "endPoint": { - "x": 575.800523, - "y": 28.478191 - } - } - }, - { - "id": "65981c62-05d0-5f5d-926c-b4d089b76a0e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.800523, - "y": 28.478191 - }, - "endPoint": { - "x": 575.868951, - "y": 28.5568 - } - } - }, - { - "id": "8c37c326-c975-5edb-9da4-165737200d73", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.868951, - "y": 28.5568 - }, - "endPoint": { - "x": 575.93315, - "y": 28.637656 - } - } - }, - { - "id": "73c51631-255c-5e09-a5a9-d661959a6eb1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.93315, - "y": 28.637656 - }, - "endPoint": { - "x": 575.992849, - "y": 28.722072 - } - } - }, - { - "id": "51240acc-ac09-5f63-bf03-cec15e36ed5e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.992849, - "y": 28.722072 - }, - "endPoint": { - "x": 576.048043, - "y": 28.816546 - } - } - }, - { - "id": "2a2cb0e3-5730-5bdc-a40c-dcd73b2a192e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.048043, - "y": 28.816546 - }, - "endPoint": { - "x": 576.098796, - "y": 28.928877 - } - } - }, - { - "id": "87270453-a91c-549b-bf1f-6afe708d1f77", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.098796, - "y": 28.928877 - }, - "endPoint": { - "x": 576.14517, - "y": 29.066863 - } - } - }, - { - "id": "1f743661-5770-50af-b968-384dd4a3f004", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.14517, - "y": 29.066863 - }, - "endPoint": { - "x": 576.187228, - "y": 29.238302 - } - } - }, - { - "id": "e3452016-d263-5cfe-9494-3759d00f6f0d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.187228, - "y": 29.238302 - }, - "endPoint": { - "x": 576.225033, - "y": 29.450993 - } - } - }, - { - "id": "16b4f8bd-0257-5f57-9258-a2c3a251d123", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.225033, - "y": 29.450993 - }, - "endPoint": { - "x": 576.258646, - "y": 29.712732 - } - } - }, - { - "id": "40d81ac5-9295-539b-b252-b869c67637db", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.258646, - "y": 29.712732 - }, - "endPoint": { - "x": 576.288132, - "y": 30.031319 - } - } - }, - { - "id": "8a12435d-bc3a-542e-89cf-83d77ce5990a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.288132, - "y": 30.031319 - }, - "endPoint": { - "x": 576.313556, - "y": 30.408098 - } - } - }, - { - "id": "d33034df-59c1-5be8-883a-a65a26c3f68a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.313556, - "y": 30.408098 - }, - "endPoint": { - "x": 576.335004, - "y": 30.818598 - } - } - }, - { - "id": "cdf6eaf1-7a56-505e-9cce-4914edb1cb3d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.335004, - "y": 30.818598 - }, - "endPoint": { - "x": 576.352562, - "y": 31.231897 - } - } - }, - { - "id": "49ebd730-58d5-5149-93de-936d38db1629", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.352562, - "y": 31.231897 - }, - "endPoint": { - "x": 576.366319, - "y": 31.61707 - } - } - }, - { - "id": "5f096b01-e339-53c9-9fb1-35fd506d4806", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.366319, - "y": 31.61707 - }, - "endPoint": { - "x": 576.376365, - "y": 31.943194 - } - } - }, - { - "id": "e33f179f-95b6-54d7-8a5e-93bc0c964c67", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.376365, - "y": 31.943194 - }, - "endPoint": { - "x": 576.382786, - "y": 32.179345 - } - } - }, - { - "id": "6bcf8170-586e-51a5-9443-03559f5cb30c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.382786, - "y": 32.179345 - }, - "endPoint": { - "x": 576.385671, - "y": 32.2946 - } - } - }, - { - "id": "7b15d1bc-af91-5e2d-b30d-e1392873ba25", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.385671, - "y": 32.2946 - }, - "endPoint": { - "x": 576.385108, - "y": 32.258035 - } - } - }, - { - "id": "90488bbe-88ce-5da5-8c9b-5724d8e20716", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.385108, - "y": 32.258035 - }, - "endPoint": { - "x": 576.38128, - "y": 32.049603 - } - } - }, - { - "id": "a12bf638-7e21-5545-af9e-4a78c9cb8b78", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.38128, - "y": 32.049603 - }, - "endPoint": { - "x": 576.374748, - "y": 31.69277 - } - } - }, - { - "id": "44f58fcf-031e-5731-99a2-47c4bbaf4d2e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.374748, - "y": 31.69277 - }, - "endPoint": { - "x": 576.366166, - "y": 31.221875 - } - } - }, - { - "id": "e2a14f0e-ae51-5fa2-882d-a146d7abfd6f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.366166, - "y": 31.221875 - }, - "endPoint": { - "x": 576.356189, - "y": 30.67126 - } - } - }, - { - "id": "f7208906-f6a5-5e40-91fc-efa96fc3016b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.356189, - "y": 30.67126 - }, - "endPoint": { - "x": 576.345473, - "y": 30.075267 - } - } - }, - { - "id": "9db927cd-1764-5e2a-ad79-2bc7aa63fdaa", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.345473, - "y": 30.075267 - }, - "endPoint": { - "x": 576.334672, - "y": 29.468237 - } - } - }, - { - "id": "3b97d23c-cf75-5b81-b861-e00a824d3cb5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.334672, - "y": 29.468237 - }, - "endPoint": { - "x": 576.324441, - "y": 28.884511 - } - } - }, - { - "id": "b5874b80-ad38-590f-8eed-24e18b24c80c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.324441, - "y": 28.884511 - }, - "endPoint": { - "x": 576.315436, - "y": 28.35843 - } - } - }, - { - "id": "1208185c-d19f-5092-9abe-6a4ba6fcae8a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.315436, - "y": 28.35843 - }, - "endPoint": { - "x": 576.308111, - "y": 27.916928 - } - } - }, - { - "id": "648af0c0-23bd-5092-b6dc-21fe277f9b9d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.308111, - "y": 27.916928 - }, - "endPoint": { - "x": 576.302123, - "y": 27.557306 - } - } - }, - { - "id": "6f13b3d4-4ace-597a-9055-cb95fdbb69d9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.302123, - "y": 27.557306 - }, - "endPoint": { - "x": 576.296931, - "y": 27.269456 - } - } - }, - { - "id": "001adcb2-8dc8-5902-996a-be6682404913", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.296931, - "y": 27.269456 - }, - "endPoint": { - "x": 576.291991, - "y": 27.04327 - } - } - }, - { - "id": "64c424ad-ec08-5eca-98d4-c224548f9b29", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.291991, - "y": 27.04327 - }, - "endPoint": { - "x": 576.286762, - "y": 26.868643 - } - } - }, - { - "id": "83e6db2a-4533-52e5-93d7-4fb8ccd1c51e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.286762, - "y": 26.868643 - }, - "endPoint": { - "x": 576.280699, - "y": 26.735467 - } - } - }, - { - "id": "5c29ef78-e80e-58e5-b93c-0209ac382a9d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.280699, - "y": 26.735467 - }, - "endPoint": { - "x": 576.273262, - "y": 26.633634 - } - } - }, - { - "id": "aea39adf-0c9d-57ce-81c1-930b69f01bde", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.273262, - "y": 26.633634 - }, - "endPoint": { - "x": 576.263907, - "y": 26.553038 - } - } - }, - { - "id": "18222802-256a-5cc0-ba8f-a2ad4a181cd2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.263907, - "y": 26.553038 - }, - "endPoint": { - "x": 576.252226, - "y": 26.485071 - } - } - }, - { - "id": "7ed6bc61-3bc8-5534-8cc6-19f489133f09", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.252226, - "y": 26.485071 - }, - "endPoint": { - "x": 576.238351, - "y": 26.42713 - } - } - }, - { - "id": "ffd95c48-c3d3-5f19-8978-b97eaf325d17", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.238351, - "y": 26.42713 - }, - "endPoint": { - "x": 576.222546, - "y": 26.378111 - } - } - }, - { - "id": "315eeeb0-87be-5d94-8de4-e287922b6162", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.222546, - "y": 26.378111 - }, - "endPoint": { - "x": 576.205078, - "y": 26.33691 - } - } - }, - { - "id": "6e646d7a-13fb-5485-bdac-aaf0b040d20a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.205078, - "y": 26.33691 - }, - "endPoint": { - "x": 576.186212, - "y": 26.302423 - } - } - }, - { - "id": "b90ad609-6943-5e30-964d-b93220f84257", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.186212, - "y": 26.302423 - }, - "endPoint": { - "x": 576.166213, - "y": 26.273546 - } - } - }, - { - "id": "d8d601e9-3943-5c0d-ad60-70d54843d312", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.166213, - "y": 26.273546 - }, - "endPoint": { - "x": 576.145346, - "y": 26.249177 - } - } - }, - { - "id": "6af3353d-1c44-50fc-b72b-9848ceec0be7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.145346, - "y": 26.249177 - }, - "endPoint": { - "x": 576.123878, - "y": 26.228211 - } - } - }, - { - "id": "2504f2e9-d0bc-5715-b861-b59b764cf952", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.123878, - "y": 26.228211 - }, - "endPoint": { - "x": 576.102011, - "y": 26.209688 - } - } - }, - { - "id": "50129462-e513-54c2-aedb-3ecb3af0546e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.102011, - "y": 26.209688 - }, - "endPoint": { - "x": 576.079694, - "y": 26.193219 - } - } - }, - { - "id": "5c64d8db-2d72-5a0b-8264-98aabac5e6c2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.079694, - "y": 26.193219 - }, - "endPoint": { - "x": 576.056816, - "y": 26.178562 - } - } - }, - { - "id": "936a3e54-e057-59fd-bd1e-68b5b5a8ddc2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.056816, - "y": 26.178562 - }, - "endPoint": { - "x": 576.033262, - "y": 26.16547 - } - } - }, - { - "id": "d6b99554-30ab-5e2e-8a17-58cd4e26111e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.033262, - "y": 26.16547 - }, - "endPoint": { - "x": 576.008921, - "y": 26.1537 - } - } - }, - { - "id": "f12febba-48d1-5936-b548-8721b1b91791", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.008921, - "y": 26.1537 - }, - "endPoint": { - "x": 575.983679, - "y": 26.143008 - } - } - }, - { - "id": "608e61d6-8103-5b3a-baf8-03dcfd66bc70", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.983679, - "y": 26.143008 - }, - "endPoint": { - "x": 575.957424, - "y": 26.133149 - } - } - }, - { - "id": "8e041562-8fe5-5aed-a7e5-d96bb7c115aa", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.957424, - "y": 26.133149 - }, - "endPoint": { - "x": 575.930042, - "y": 26.123878 - } - } - }, - { - "id": "49b46151-93cb-5e52-b809-79810cf65209", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.930042, - "y": 26.123878 - }, - "endPoint": { - "x": 575.901465, - "y": 26.115037 - } - } - }, - { - "id": "f2db5021-d1de-5507-bb46-79471a2ae11e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.901465, - "y": 26.115037 - }, - "endPoint": { - "x": 575.871794, - "y": 26.106815 - } - } - }, - { - "id": "3687295d-53eb-50bf-a2fe-5c2f82e2d2eb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.871794, - "y": 26.106815 - }, - "endPoint": { - "x": 575.841178, - "y": 26.099483 - } - } - }, - { - "id": "9a4f263f-2be9-5c00-bb72-47906cf1b79c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.841178, - "y": 26.099483 - }, - "endPoint": { - "x": 575.809763, - "y": 26.093316 - } - } - }, - { - "id": "73035e29-ce83-52fc-ad55-d1c2cd7878f0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.809763, - "y": 26.093316 - }, - "endPoint": { - "x": 575.777694, - "y": 26.088588 - } - } - }, - { - "id": "94f0aed3-a102-548f-82dd-a1d04b0b0200", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.777694, - "y": 26.088588 - }, - "endPoint": { - "x": 575.74512, - "y": 26.085571 - } - } - }, - { - "id": "923ff740-8a30-57be-9245-377e5b00895e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.74512, - "y": 26.085571 - }, - "endPoint": { - "x": 575.712186, - "y": 26.084539 - } - } - }, - { - "id": "b69b3a98-e621-5ab9-b15a-c5e5ccd57e7b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.712186, - "y": 26.084539 - }, - "endPoint": { - "x": 575.679039, - "y": 26.085766 - } - } - }, - { - "id": "a46920c1-a76b-5029-97c0-9285b542fe62", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.679039, - "y": 26.085766 - }, - "endPoint": { - "x": 575.645813, - "y": 26.08948 - } - } - }, - { - "id": "2a4445bf-28f5-5fa5-be8b-991f16ff4590", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.645813, - "y": 26.08948 - }, - "endPoint": { - "x": 575.612583, - "y": 26.095721 - } - } - }, - { - "id": "7dfe9ab4-885e-5dc7-a69b-8ee21045e77b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.612583, - "y": 26.095721 - }, - "endPoint": { - "x": 575.579412, - "y": 26.104485 - } - } - }, - { - "id": "932cced6-76b0-5f10-8ab0-9217db2cbb8e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.579412, - "y": 26.104485 - }, - "endPoint": { - "x": 575.546364, - "y": 26.115768 - } - } - }, - { - "id": "ed73d439-cba4-5f57-80a8-ed10b6a71fc5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.546364, - "y": 26.115768 - }, - "endPoint": { - "x": 575.513502, - "y": 26.129564 - } - } - }, - { - "id": "291f46de-dd48-53ce-84cd-d96a5f2b235b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.513502, - "y": 26.129564 - }, - "endPoint": { - "x": 575.480887, - "y": 26.14587 - } - } - }, - { - "id": "fc657d62-8e34-53da-8697-4aeb40228e0a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.480887, - "y": 26.14587 - }, - "endPoint": { - "x": 575.448584, - "y": 26.16468 - } - } - }, - { - "id": "126df90e-623e-5630-bf63-b5e16857acc6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.448584, - "y": 26.16468 - }, - "endPoint": { - "x": 575.416654, - "y": 26.18599 - } - } - }, - { - "id": "2edd6b3e-162f-5c9d-9484-39f7f14a8832", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.416654, - "y": 26.18599 - }, - "endPoint": { - "x": 575.385024, - "y": 26.209843 - } - } - }, - { - "id": "2482210d-92dc-5e09-be50-0111b7082f9f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.385024, - "y": 26.209843 - }, - "endPoint": { - "x": 575.353065, - "y": 26.236478 - } - } - }, - { - "id": "c24bd6ce-89aa-528f-be2e-616d4c43fe28", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.353065, - "y": 26.236478 - }, - "endPoint": { - "x": 575.320015, - "y": 26.266179 - } - } - }, - { - "id": "f9c64f9e-707f-5cb8-a4e8-399afbb70d0b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.320015, - "y": 26.266179 - }, - "endPoint": { - "x": 575.285107, - "y": 26.299233 - } - } - }, - { - "id": "f88d57f0-cb67-51c5-b54c-547f3b6f5a11", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.285107, - "y": 26.299233 - }, - "endPoint": { - "x": 575.247577, - "y": 26.335924 - } - } - }, - { - "id": "6c9524fc-e047-51e3-8a87-fb16ed381f22", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.247577, - "y": 26.335924 - }, - "endPoint": { - "x": 575.206662, - "y": 26.37654 - } - } - }, - { - "id": "29bd9204-29d0-5256-bc4a-6cd0a5f5f5d2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.206662, - "y": 26.37654 - }, - "endPoint": { - "x": 575.161595, - "y": 26.421364 - } - } - }, - { - "id": "e001b926-313c-56b4-a0e2-21924d0c2fea", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.161595, - "y": 26.421364 - }, - "endPoint": { - "x": 575.111613, - "y": 26.470684 - } - } - }, - { - "id": "89e353b1-58cd-5168-8613-1d2e5362e902", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.111613, - "y": 26.470684 - }, - "endPoint": { - "x": 575.057138, - "y": 26.523786 - } - } - }, - { - "id": "e9fcfd07-4cf6-5eec-8ab8-079296d469f5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.057138, - "y": 26.523786 - }, - "endPoint": { - "x": 575.003346, - "y": 26.575963 - } - } - }, - { - "id": "740b3b8f-2c26-594b-a91d-fde1c5f24f99", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.003346, - "y": 26.575963 - }, - "endPoint": { - "x": 574.956599, - "y": 26.621507 - } - } - }, - { - "id": "4b35c34d-ada6-5ba3-baf4-69c861a11b60", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.956599, - "y": 26.621507 - }, - "endPoint": { - "x": 574.923258, - "y": 26.654713 - } - } - }, - { - "id": "e081f2c3-19d7-5e9e-b413-99b4a0ec7112", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.923258, - "y": 26.654713 - }, - "endPoint": { - "x": 574.909687, - "y": 26.669874 - } - } - }, - { - "id": "e9fa9faf-207f-558f-a563-2030aeacb2c5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.909687, - "y": 26.669874 - }, - "endPoint": { - "x": 574.922247, - "y": 26.661283 - } - } - }, - { - "id": "8cfa8b67-3ea6-51f2-9ade-869e6132c3ff", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.922247, - "y": 26.661283 - }, - "endPoint": { - "x": 574.967301, - "y": 26.623234 - } - } - }, - { - "id": "3062568b-d377-51d8-8eaa-7ad8ca051387", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.967301, - "y": 26.623234 - }, - "endPoint": { - "x": 575.051212, - "y": 26.550021 - } - } - }, - { - "id": "5c29eace-afdf-5f96-84c9-c94dcbb2d5b2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.051212, - "y": 26.550021 - }, - "endPoint": { - "x": 575.177801, - "y": 26.438302 - } - } - }, - { - "id": "ec167120-1b4d-53f3-8be8-3f71d5f9fd1c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.177801, - "y": 26.438302 - }, - "endPoint": { - "x": 575.340725, - "y": 26.294203 - } - } - }, - { - "id": "fa9dc548-6e01-5a6e-baa1-780e1adacac3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.340725, - "y": 26.294203 - }, - "endPoint": { - "x": 575.531101, - "y": 26.126213 - } - } - }, - { - "id": "f0f24fe0-93b6-563b-806b-1403373eb8e5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.531101, - "y": 26.126213 - }, - "endPoint": { - "x": 575.740047, - "y": 25.942822 - } - } - }, - { - "id": "156d7c82-ebb8-521c-a842-03c6e414e65b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.740047, - "y": 25.942822 - }, - "endPoint": { - "x": 575.958678, - "y": 25.752521 - } - } - }, - { - "id": "c38e9893-1020-5c35-b628-2089aa857035", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.958678, - "y": 25.752521 - }, - "endPoint": { - "x": 576.178113, - "y": 25.563799 - } - } - }, - { - "id": "000e8b16-8915-5aec-b4d6-305a53a2fd6e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.178113, - "y": 25.563799 - }, - "endPoint": { - "x": 576.389468, - "y": 25.385146 - } - } - }, - { - "id": "2c6e26a7-580f-5d91-8244-fc90ef11dcc8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.389468, - "y": 25.385146 - }, - "endPoint": { - "x": 576.583859, - "y": 25.225054 - } - } - }, - { - "id": "56c86409-cab4-5a2d-9e54-f6134beb907c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.583859, - "y": 25.225054 - }, - "endPoint": { - "x": 576.754453, - "y": 25.090137 - } - } - }, - { - "id": "16e18456-899e-54f3-a791-f3c17f2b52e6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.754453, - "y": 25.090137 - }, - "endPoint": { - "x": 576.902613, - "y": 24.979516 - } - } - }, - { - "id": "52b1dd98-546e-5f8c-b212-7113b3dec3b1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.902613, - "y": 24.979516 - }, - "endPoint": { - "x": 577.03175, - "y": 24.89044 - } - } - }, - { - "id": "6aee78c3-fe11-57aa-b335-4aab7b3bff8c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 577.03175, - "y": 24.89044 - }, - "endPoint": { - "x": 577.145277, - "y": 24.820154 - } - } - }, - { - "id": "3f533a53-80b7-5267-916c-484695347ec7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 577.145277, - "y": 24.820154 - }, - "endPoint": { - "x": 577.246605, - "y": 24.765906 - } - } - }, - { - "id": "6521862e-e4c6-5045-b388-91d2160954e8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 577.246605, - "y": 24.765906 - }, - "endPoint": { - "x": 577.339148, - "y": 24.724943 - } - } - }, - { - "id": "b15a1009-fae6-5a6c-8bb0-b6b81461c658", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 577.339148, - "y": 24.724943 - }, - "endPoint": { - "x": 577.426315, - "y": 24.694511 - } - } - }, - { - "id": "b6b8c978-2a1c-59ef-bfc9-f8914d449d4b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 577.426315, - "y": 24.694511 - }, - "endPoint": { - "x": 577.511521, - "y": 24.671859 - } - } - }, - { - "id": "9a786e69-3bad-5458-8928-84747717968f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 577.511521, - "y": 24.671859 - }, - "endPoint": { - "x": 577.597554, - "y": 24.654796 - } - } - }, - { - "id": "aadb0346-7fc6-53e7-b2d6-4f970539891b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 577.597554, - "y": 24.654796 - }, - "endPoint": { - "x": 577.684709, - "y": 24.643389 - } - } - }, - { - "id": "a985d462-85ad-5506-88ea-678fc0ba4195", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 577.684709, - "y": 24.643389 - }, - "endPoint": { - "x": 577.772659, - "y": 24.638271 - } - } - }, - { - "id": "97b03a96-9d21-5957-b321-5f4e75c7bc70", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 577.772659, - "y": 24.638271 - }, - "endPoint": { - "x": 577.861078, - "y": 24.64007 - } - } - }, - { - "id": "caf26447-0f2b-549f-8c15-27e5b013b090", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 577.861078, - "y": 24.64007 - }, - "endPoint": { - "x": 577.949639, - "y": 24.649419 - } - } - }, - { - "id": "68a06784-cee9-55a7-8f90-349d05114968", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 577.949639, - "y": 24.649419 - }, - "endPoint": { - "x": 578.038013, - "y": 24.666948 - } - } - }, - { - "id": "e73298bb-1d92-5d73-b79d-e2b22587aaf7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 578.038013, - "y": 24.666948 - }, - "endPoint": { - "x": 578.125875, - "y": 24.693288 - } - } - }, - { - "id": "98db40d8-3553-5505-a196-cdb468be50ba", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 578.125875, - "y": 24.693288 - }, - "endPoint": { - "x": 578.212897, - "y": 24.729069 - } - } - }, - { - "id": "341e89be-df4a-5afa-9330-731a4e4346f7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 578.212897, - "y": 24.729069 - }, - "endPoint": { - "x": 578.298617, - "y": 24.774397 - } - } - }, - { - "id": "fda33179-f5ea-5970-9ee9-cedb70d1caf5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 578.298617, - "y": 24.774397 - }, - "endPoint": { - "x": 578.382038, - "y": 24.827274 - } - } - }, - { - "id": "4871ce9b-993e-5db4-ab8f-761d989967ef", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 578.382038, - "y": 24.827274 - }, - "endPoint": { - "x": 578.462026, - "y": 24.885173 - } - } - }, - { - "id": "cc0f1ddc-7381-5cba-891e-b7d132b1a40a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 578.462026, - "y": 24.885173 - }, - "endPoint": { - "x": 578.53745, - "y": 24.94557 - } - } - }, - { - "id": "9db3a905-d0f5-5c49-8d61-8dd2a15fa101", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 578.53745, - "y": 24.94557 - }, - "endPoint": { - "x": 578.607176, - "y": 25.005942 - } - } - }, - { - "id": "1baa8466-85e9-5d34-8fac-b6560c6cd7fa", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 578.607176, - "y": 25.005942 - }, - "endPoint": { - "x": 578.670072, - "y": 25.063762 - } - } - }, - { - "id": "8bd5d391-6fa9-5696-a312-c5b37e840649", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 578.670072, - "y": 25.063762 - }, - "endPoint": { - "x": 578.725004, - "y": 25.116506 - } - } - }, - { - "id": "ed37aad9-1810-5b98-9a65-8cd7f2b8ee89", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 578.725004, - "y": 25.116506 - }, - "endPoint": { - "x": 578.770842, - "y": 25.161649 - } - } - }, - { - "id": "56cdea5a-8968-58f4-806f-36469c97ea9e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 578.770842, - "y": 25.161649 - }, - "endPoint": { - "x": 578.806853, - "y": 25.197299 - } - } - }, - { - "id": "ea7a9930-c4fc-5c2b-aaa8-5623efcc85b8", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 578.806853, - "y": 25.197299 - }, - "endPoint": { - "x": 578.833915, - "y": 25.224089 - } - } - }, - { - "id": "d87e48aa-bd62-583c-816f-f21df964491c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 578.833915, - "y": 25.224089 - }, - "endPoint": { - "x": 578.853306, - "y": 25.243286 - } - } - }, - { - "id": "f113c486-15c0-5959-9ee5-9d505f3b1ebd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 578.853306, - "y": 25.243286 - }, - "endPoint": { - "x": 578.866304, - "y": 25.256153 - } - } - }, - { - "id": "ac8baa0d-081b-5f6a-af16-0463a26b3116", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 578.866304, - "y": 25.256153 - }, - "endPoint": { - "x": 578.874188, - "y": 25.263958 - } - } - }, - { - "id": "6cf60ebb-37a5-54d8-b45b-2e326277620d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 578.874188, - "y": 25.263958 - }, - "endPoint": { - "x": 578.878236, - "y": 25.267966 - } - } - }, - { - "id": "0929e723-71f9-5af8-a6a9-34275ddfa167", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 578.878236, - "y": 25.267966 - }, - "endPoint": { - "x": 578.879728, - "y": 25.269443 - } - } - }, - { - "id": "e64da71f-5752-50cc-b8c3-7681207bdf31", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 578.879728, - "y": 25.269443 - }, - "endPoint": { - "x": 578.879941, - "y": 25.269654 - } - } - }, - { - "id": "945efd0a-b903-5ea5-94b0-87a8b8072359", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 578.879941, - "y": 25.269654 - }, - "endPoint": { - "x": 570.580394, - "y": 31.559113 - } - } - }, - { - "id": "110221a1-76a8-5c39-acc7-b4afa1e76703", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 570.580394, - "y": 31.559113 - }, - "endPoint": { - "x": 571.332485, - "y": 31.128126 - } - } - }, - { - "id": "c5ee85f4-7c9f-5b13-9ed0-02379d425e05", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 571.332485, - "y": 31.128126 - }, - "endPoint": { - "x": 571.312609, - "y": 30.833242 - } - } - }, - { - "id": "ebb387cf-957a-5340-960e-c57f0926c7df", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 571.312609, - "y": 30.833242 - }, - "endPoint": { - "x": 571.224242, - "y": 30.126415 - } - } - }, - { - "id": "b03be3e7-94b5-54db-9c97-6ec597de5d36", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 571.224242, - "y": 30.126415 - }, - "endPoint": { - "x": 570.45736, - "y": 29.43356 - } - } - }, - { - "id": "3aab36cd-1a0f-5bbb-903d-d477b0d613b1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 570.45736, - "y": 29.43356 - }, - "endPoint": { - "x": 570.167963, - "y": 29.318694 - } - } - }, - { - "id": "dc4b47df-664b-53a4-8e3d-298c205c6fd5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 570.167963, - "y": 29.318694 - }, - "endPoint": { - "x": 566.115186, - "y": 29.11891 - } - } - }, - { - "id": "68ed3402-422f-571a-9c4c-279cf572c076", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 566.115186, - "y": 29.11891 - }, - "endPoint": { - "x": 565.074354, - "y": 28.939616 - } - } - }, - { - "id": "8b6b2804-8289-5116-afc1-e9addb666f91", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 565.074354, - "y": 28.939616 - }, - "endPoint": { - "x": 563.393642, - "y": 29.172534 - } - } - }, - { - "id": "8490f3d0-ccc9-5555-9d68-4562d37df83f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 563.393642, - "y": 29.172534 - }, - "endPoint": { - "x": 563.511326, - "y": 29.252718 - } - } - }, - { - "id": "a079e40c-2dac-52d1-b57e-fdd9abf71a08", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 563.511326, - "y": 29.252718 - }, - "endPoint": { - "x": 565.334665, - "y": 29.233817 - } - } - }, - { - "id": "c834639c-1c6e-52ee-8b0d-50a1a29a67f5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 565.334665, - "y": 29.233817 - }, - "endPoint": { - "x": 567.712929, - "y": 29.30403 - } - } - }, - { - "id": "ad18eb14-800f-507f-9b51-cdb9a73f03f9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 567.712929, - "y": 29.30403 - }, - "endPoint": { - "x": 571.897978, - "y": 29.20578 - } - } - }, - { - "id": "c2942610-4aa8-5291-90b9-a761a55bd3cd", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 571.897978, - "y": 29.20578 - }, - "endPoint": { - "x": 575.516981, - "y": 29.159239 - } - } - }, - { - "id": "9a42e72b-c393-5864-99a9-9174f81d7c16", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.516981, - "y": 29.159239 - }, - "endPoint": { - "x": 575.952328, - "y": 29.072934 - } - } - }, - { - "id": "97e6226b-407b-5ac2-b503-7a8a9d05ea43", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.952328, - "y": 29.072934 - }, - "endPoint": { - "x": 574.141, - "y": 27.794878 - } - } - }, - { - "id": "0ae7f6e1-e177-5d79-88db-1ad56519c4ce", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.141, - "y": 27.794878 - }, - "endPoint": { - "x": 573.003569, - "y": 27.296405 - } - } - }, - { - "id": "aa7c95b2-bf52-5475-b2f0-ae1090eaedd4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 573.003569, - "y": 27.296405 - }, - "endPoint": { - "x": 572.396048, - "y": 27.179435 - } - } - }, - { - "id": "7a92fad7-e4a8-5627-bdf3-1076ca66c329", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 572.396048, - "y": 27.179435 - }, - "endPoint": { - "x": 573.365545, - "y": 27.156487 - } - } - }, - { - "id": "81dfeb33-15ec-51a0-a68f-4773759dd1a5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 573.365545, - "y": 27.156487 - }, - "endPoint": { - "x": 574.578725, - "y": 27.584674 - } - } - }, - { - "id": "b037993f-e7c1-5f13-a26b-69d64246634d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.578725, - "y": 27.584674 - }, - "endPoint": { - "x": 575.339947, - "y": 28.030007 - } - } - }, - { - "id": "ada4059c-a63c-562f-82a6-6dde9566eeb4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.339947, - "y": 28.030007 - }, - "endPoint": { - "x": 575.981864, - "y": 28.613541 - } - } - }, - { - "id": "9da1137d-8f9d-59b2-8037-03e633bdb756", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.981864, - "y": 28.613541 - }, - "endPoint": { - "x": 576.331496, - "y": 29.341769 - } - } - }, - { - "id": "de599447-d674-504d-a8c6-7bfa6e444841", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.331496, - "y": 29.341769 - }, - "endPoint": { - "x": 576.420942, - "y": 34.2073 - } - } - }, - { - "id": "8e97b0e5-b422-5b7c-bf90-f5efe823879b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.420942, - "y": 34.2073 - }, - "endPoint": { - "x": 576.295381, - "y": 27.377239 - } - } - }, - { - "id": "2ece1a31-f15a-571c-b906-fc80fc9e319d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.295381, - "y": 27.377239 - }, - "endPoint": { - "x": 576.290149, - "y": 26.434326 - } - } - }, - { - "id": "748da371-1493-56f9-9a99-dd7f4583f77d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.290149, - "y": 26.434326 - }, - "endPoint": { - "x": 576.127465, - "y": 26.203683 - } - } - }, - { - "id": "f4c6c4bc-56a5-54b1-bd0e-cd4c72d101e4", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.127465, - "y": 26.203683 - }, - "endPoint": { - "x": 575.943261, - "y": 26.120207 - } - } - }, - { - "id": "56447f21-c754-5f01-92c1-4668babd3012", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.943261, - "y": 26.120207 - }, - "endPoint": { - "x": 575.679745, - "y": 26.058754 - } - } - }, - { - "id": "8031069c-eb75-5e8a-a14b-b207e89f3ff0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.679745, - "y": 26.058754 - }, - "endPoint": { - "x": 575.411995, - "y": 26.159374 - } - } - }, - { - "id": "e3929592-5e8f-5080-8244-28c241f4250d", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.411995, - "y": 26.159374 - }, - "endPoint": { - "x": 575.172201, - "y": 26.419689 - } - } - }, - { - "id": "799567c7-daae-5d81-8f07-e3010d7e10db", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.172201, - "y": 26.419689 - }, - "endPoint": { - "x": 574.568879, - "y": 26.985978 - } - } - }, - { - "id": "6db97636-2a9b-5865-9bf8-a58ce4e9773a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.568879, - "y": 26.985978 - }, - "endPoint": { - "x": 576.859555, - "y": 24.936523 - } - } - }, - { - "id": "7994d054-8235-5066-9d0e-0c702e79a8c3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.859555, - "y": 24.936523 - }, - "endPoint": { - "x": 577.496057, - "y": 24.61825 - } - } - }, - { - "id": "a2d53249-6d16-5be5-ab2a-010c6ba63140", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 577.496057, - "y": 24.61825 - }, - "endPoint": { - "x": 578.225346, - "y": 24.621628 - } - } - }, - { - "id": "bcf33f23-027d-5449-a1a6-3556172c706c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 578.225346, - "y": 24.621628 - }, - "endPoint": { - "x": 578.879941, - "y": 25.269654 - } - } - } - ] - }, - { - "id": "fe57bf21-eac3-5fb5-ae71-40bf040ba597", - "type": "PolyLine", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": null, - "children": [ - { - "id": "677595ae-bb24-5473-b74c-c7fc14e93014", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.195328, - "y": 31.886951 - }, - "endPoint": { - "x": 575.002555, - "y": 31.644275 - } - } - }, - { - "id": "fe7bc3fe-f592-5c8c-96fa-4d81d6dfb929", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.002555, - "y": 31.644275 - }, - "endPoint": { - "x": 574.848291, - "y": 31.435856 - } - } - }, - { - "id": "d88dc380-8c81-5826-9d5b-66b44d45369f", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.848291, - "y": 31.435856 - }, - "endPoint": { - "x": 574.728974, - "y": 31.257561 - } - } - }, - { - "id": "16dd5805-8073-582f-be3b-5c64bb86f0c1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.728974, - "y": 31.257561 - }, - "endPoint": { - "x": 574.641045, - "y": 31.105259 - } - } - }, - { - "id": "23a15615-7c2d-53e2-a9d4-afef83196238", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.641045, - "y": 31.105259 - }, - "endPoint": { - "x": 574.580942, - "y": 30.974818 - } - } - }, - { - "id": "58ceec19-05b7-5158-b0b2-732a9bf30691", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.580942, - "y": 30.974818 - }, - "endPoint": { - "x": 574.545105, - "y": 30.862106 - } - } - }, - { - "id": "6310fa3c-e8a4-5cf9-bc38-fe6781c16b90", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.545105, - "y": 30.862106 - }, - "endPoint": { - "x": 574.529973, - "y": 30.762991 - } - } - }, - { - "id": "e23c3a1a-c116-513f-8cfd-1c70b2b3bfbf", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.529973, - "y": 30.762991 - }, - "endPoint": { - "x": 574.531987, - "y": 30.67334 - } - } - }, - { - "id": "1c759195-38dc-56b9-90bf-bef9f459a832", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.531987, - "y": 30.67334 - }, - "endPoint": { - "x": 574.547921, - "y": 30.589756 - } - } - }, - { - "id": "504e2043-8d92-57ea-8e94-7def3efa99b6", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.547921, - "y": 30.589756 - }, - "endPoint": { - "x": 574.575896, - "y": 30.511768 - } - } - }, - { - "id": "f3bbae46-355b-502c-b2bc-e3e13dbae092", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.575896, - "y": 30.511768 - }, - "endPoint": { - "x": 574.614368, - "y": 30.43964 - } - } - }, - { - "id": "6f2fbe7e-1d96-5177-a858-b0b28cf23f44", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.614368, - "y": 30.43964 - }, - "endPoint": { - "x": 574.661792, - "y": 30.373636 - } - } - }, - { - "id": "3be1ef84-f25b-522b-9923-b949e4e23942", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.661792, - "y": 30.373636 - }, - "endPoint": { - "x": 574.716626, - "y": 30.31402 - } - } - }, - { - "id": "caaa5a41-901b-5b2d-ba8e-a062d51b9541", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.716626, - "y": 30.31402 - }, - "endPoint": { - "x": 574.777326, - "y": 30.261055 - } - } - }, - { - "id": "3a997ca2-5db7-5b2c-bbd7-1a3997e16692", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.777326, - "y": 30.261055 - }, - "endPoint": { - "x": 574.842346, - "y": 30.215005 - } - } - }, - { - "id": "ef0cb23e-5107-5cb1-9555-179eb022fc3b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.842346, - "y": 30.215005 - }, - "endPoint": { - "x": 574.910145, - "y": 30.176133 - } - } - }, - { - "id": "0aa18f9e-3f17-536e-813f-4b1e03f49e0b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.910145, - "y": 30.176133 - }, - "endPoint": { - "x": 574.97936, - "y": 30.144608 - } - } - }, - { - "id": "59a9234d-4768-5aed-936e-67cbf45c21a2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.97936, - "y": 30.144608 - }, - "endPoint": { - "x": 575.049358, - "y": 30.120216 - } - } - }, - { - "id": "913af46a-3cb5-5159-8a67-e214f38a9451", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.049358, - "y": 30.120216 - }, - "endPoint": { - "x": 575.119687, - "y": 30.102647 - } - } - }, - { - "id": "ab1a4497-3e0e-57f8-acc7-25b5bd0cff72", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.119687, - "y": 30.102647 - }, - "endPoint": { - "x": 575.189897, - "y": 30.091593 - } - } - }, - { - "id": "ddea7602-ee06-5fab-84b2-a7b158907059", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.189897, - "y": 30.091593 - }, - "endPoint": { - "x": 575.259537, - "y": 30.086744 - } - } - }, - { - "id": "b586ee3b-af71-5939-9e14-f6dd48349b55", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.259537, - "y": 30.086744 - }, - "endPoint": { - "x": 575.328156, - "y": 30.087792 - } - } - }, - { - "id": "3c08f214-cb1c-5656-98db-1cacc1965fe2", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.328156, - "y": 30.087792 - }, - "endPoint": { - "x": 575.395302, - "y": 30.094426 - } - } - }, - { - "id": "eab2ef6a-43ac-5fc5-bc2c-a431596d580a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.395302, - "y": 30.094426 - }, - "endPoint": { - "x": 575.460524, - "y": 30.106339 - } - } - }, - { - "id": "626d5c86-44c0-5815-bc37-b2adeeae0995", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.460524, - "y": 30.106339 - }, - "endPoint": { - "x": 575.523425, - "y": 30.123359 - } - } - }, - { - "id": "d40d90b5-8648-5f03-8070-e5a1c5a0cda1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.523425, - "y": 30.123359 - }, - "endPoint": { - "x": 575.583818, - "y": 30.145871 - } - } - }, - { - "id": "fbcf46af-0baf-5a6f-a262-b3342661e59e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.583818, - "y": 30.145871 - }, - "endPoint": { - "x": 575.641571, - "y": 30.174399 - } - } - }, - { - "id": "0a445218-a3ca-5a0d-9d51-5ecd2e77556c", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.641571, - "y": 30.174399 - }, - "endPoint": { - "x": 575.696551, - "y": 30.209466 - } - } - }, - { - "id": "86fbf9cf-69cb-5a75-a79e-dc0562e07aae", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.696551, - "y": 30.209466 - }, - "endPoint": { - "x": 575.748625, - "y": 30.251596 - } - } - }, - { - "id": "bc8af0ed-26b2-51a8-8336-89af794f3653", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.748625, - "y": 30.251596 - }, - "endPoint": { - "x": 575.797661, - "y": 30.301311 - } - } - }, - { - "id": "6e59a705-59c3-5543-8cee-748e631f0ea0", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.797661, - "y": 30.301311 - }, - "endPoint": { - "x": 575.843526, - "y": 30.359135 - } - } - }, - { - "id": "3b97a851-1687-53cd-9278-9ff64c00d9d5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.843526, - "y": 30.359135 - }, - "endPoint": { - "x": 575.886087, - "y": 30.425592 - } - } - }, - { - "id": "0f3908b9-6d6d-5e0b-b950-dcc0783d699e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.886087, - "y": 30.425592 - }, - "endPoint": { - "x": 575.925107, - "y": 30.500966 - } - } - }, - { - "id": "c2c9e7a0-3374-5c9e-997a-b54b270fb463", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.925107, - "y": 30.500966 - }, - "endPoint": { - "x": 575.959939, - "y": 30.584589 - } - } - }, - { - "id": "dddddc57-37a6-5aa7-81e0-edded5f6dcab", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.959939, - "y": 30.584589 - }, - "endPoint": { - "x": 575.98983, - "y": 30.675553 - } - } - }, - { - "id": "b35f2d94-0402-56a8-bb08-5e9db3ce1704", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.98983, - "y": 30.675553 - }, - "endPoint": { - "x": 576.014028, - "y": 30.77295 - } - } - }, - { - "id": "9e79695a-1f8f-5185-9aa7-1933adebc7b5", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.014028, - "y": 30.77295 - }, - "endPoint": { - "x": 576.03178, - "y": 30.875872 - } - } - }, - { - "id": "77d112ea-d1a4-549f-b662-09645335e787", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.03178, - "y": 30.875872 - }, - "endPoint": { - "x": 576.042335, - "y": 30.983413 - } - } - }, - { - "id": "672cd990-f31f-5127-a474-fbcc04c85beb", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.042335, - "y": 30.983413 - }, - "endPoint": { - "x": 576.04494, - "y": 31.094664 - } - } - }, - { - "id": "e55319a9-1607-5da9-9cf3-a4adeebfb38e", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.04494, - "y": 31.094664 - }, - "endPoint": { - "x": 576.038844, - "y": 31.208719 - } - } - }, - { - "id": "45fb88d4-e576-516f-94c8-771b760bf071", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.038844, - "y": 31.208719 - }, - "endPoint": { - "x": 576.022529, - "y": 31.324227 - } - } - }, - { - "id": "731f7efe-2298-5d32-beac-809bbaeed532", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.022529, - "y": 31.324227 - }, - "endPoint": { - "x": 575.991423, - "y": 31.438072 - } - } - }, - { - "id": "9b33d821-6acb-572d-b372-9dcf381e0a16", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.991423, - "y": 31.438072 - }, - "endPoint": { - "x": 575.940191, - "y": 31.546695 - } - } - }, - { - "id": "62784bc6-f2c6-5bbd-8ecd-f05e1025c6f1", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.940191, - "y": 31.546695 - }, - "endPoint": { - "x": 575.863494, - "y": 31.646539 - } - } - }, - { - "id": "6cf0db57-5919-557f-b799-d6f59f3db691", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.863494, - "y": 31.646539 - }, - "endPoint": { - "x": 575.755995, - "y": 31.734045 - } - } - }, - { - "id": "93c44c5d-2f09-5f25-a237-7cc23481cf5a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.755995, - "y": 31.734045 - }, - "endPoint": { - "x": 575.61236, - "y": 31.805655 - } - } - }, - { - "id": "6363e756-ff31-51fb-8cf8-5d4e426f4851", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.61236, - "y": 31.805655 - }, - "endPoint": { - "x": 575.42725, - "y": 31.85781 - } - } - }, - { - "id": "49556adb-83f4-5c9d-bd0d-110bed1a75e7", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.42725, - "y": 31.85781 - }, - "endPoint": { - "x": 575.195328, - "y": 31.886951 - } - } - }, - { - "id": "194825ed-0be7-52d1-83d4-df1914276006", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.195328, - "y": 31.886951 - }, - "endPoint": { - "x": 574.626758, - "y": 31.190467 - } - } - }, - { - "id": "b2f1565e-0287-5b93-8db2-25db83163bab", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.626758, - "y": 31.190467 - }, - "endPoint": { - "x": 574.387087, - "y": 30.616454 - } - } - }, - { - "id": "4e197827-d89e-5a06-b4d6-891a35a8a236", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.387087, - "y": 30.616454 - }, - "endPoint": { - "x": 574.896983, - "y": 30.096752 - } - } - }, - { - "id": "f289a0e4-5e40-5dab-b90f-29c2fe13817a", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 574.896983, - "y": 30.096752 - }, - "endPoint": { - "x": 575.485854, - "y": 30.053338 - } - } - }, - { - "id": "2cbead88-f505-5037-abd4-5f2a4d5875a9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.485854, - "y": 30.053338 - }, - "endPoint": { - "x": 575.922745, - "y": 30.327928 - } - } - }, - { - "id": "eaeb2caa-4750-55b8-a4c4-6f02a3e3e853", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.922745, - "y": 30.327928 - }, - "endPoint": { - "x": 576.139686, - "y": 31.188501 - } - } - }, - { - "id": "f9371a19-1b41-5009-9943-897ed254b2b3", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 576.139686, - "y": 31.188501 - }, - "endPoint": { - "x": 575.880944, - "y": 31.843088 - } - } - }, - { - "id": "09c32c57-9ad0-5f69-83dd-0608d468b1f9", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 575.880944, - "y": 31.843088 - }, - "endPoint": { - "x": 575.195328, - "y": 31.886951 - } - } - } - ] - }, - { - "id": "0ea1ccdf-5a82-5a7d-9381-68ebcb162918", - "type": "PolyLine", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": null, - "children": [ - { - "id": "9686af2a-c515-5373-97f3-50960ee5dd20", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 569.242151, - "y": 29.284246 - }, - "endPoint": { - "x": 569.350865, - "y": 25.631986 - } - } - } - ] - }, - { - "id": "299c83d7-9c27-5485-a827-53d630b37fd3", - "type": "PolyLine", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": null, - "children": [ - { - "id": "025f0dd1-4e81-563d-a0d0-2e592525fa8b", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 570.408784, - "y": 29.445263 - }, - "endPoint": { - "x": 570.512064, - "y": 24.09218 - } - } - }, - { - "id": "81d594f2-e09a-5407-bcad-1ede41694123", - "type": "Line", - "lineColor": "#ff7f00", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 570.512064, - "y": 24.09218 - }, - "endPoint": { - "x": 569.898093, - "y": 24.92495 - } - } - } - ] - }, - { - "id": "2faa3c87-16a1-5f07-b00a-58c6db1213b0", - "type": "PolyLine", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": null, - "children": [ - { - "id": "bdff0839-2414-5300-9ad9-268f575d3def", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 224.33484, - "y": 32.074368 - }, - "endPoint": { - "x": 224.239597, - "y": 32.593446 - } - } - }, - { - "id": "66177b0e-b17f-57c8-a3e2-905667dda08c", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 224.239597, - "y": 32.593446 - }, - "endPoint": { - "x": 224.085705, - "y": 33.096431 - } - } - }, - { - "id": "539e9249-ff72-5637-ba7a-7f2a00d76c31", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 224.085705, - "y": 33.096431 - }, - "endPoint": { - "x": 223.874995, - "y": 33.578384 - } - } - }, - { - "id": "1d2c3c3e-43c9-5c12-94de-0b17bc3c33e7", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 223.874995, - "y": 33.578384 - }, - "endPoint": { - "x": 223.609295, - "y": 34.034361 - } - } - }, - { - "id": "dfbf7df7-3d31-5196-900b-28fe2eae258f", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 223.609295, - "y": 34.034361 - }, - "endPoint": { - "x": 222.906465, - "y": 33.802171 - } - } - }, - { - "id": "5aba19f1-ff80-5080-8ccf-8916633ec341", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 222.906465, - "y": 33.802171 - }, - "endPoint": { - "x": 222.256536, - "y": 33.474032 - } - } - }, - { - "id": "26aeeb4f-991a-5b82-8c13-b3e81485c3da", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 222.256536, - "y": 33.474032 - }, - "endPoint": { - "x": 221.66743, - "y": 33.058635 - } - } - }, - { - "id": "ffd5b865-b739-5932-8bef-620d2b827c15", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 221.66743, - "y": 33.058635 - }, - "endPoint": { - "x": 221.14707, - "y": 32.564674 - } - } - }, - { - "id": "70c9a765-449a-53fe-811d-cf031543a784", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 221.14707, - "y": 32.564674 - }, - "endPoint": { - "x": 220.703377, - "y": 32.00084 - } - } - }, - { - "id": "756c29b9-2de4-5cdc-8a42-ea6629715ce1", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 220.703377, - "y": 32.00084 - }, - "endPoint": { - "x": 220.344273, - "y": 31.375825 - } - } - }, - { - "id": "241f927c-eca7-5509-94f2-f0e5423a1d47", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 220.344273, - "y": 31.375825 - }, - "endPoint": { - "x": 220.077679, - "y": 30.698322 - } - } - }, - { - "id": "b73bcba5-79c8-54f4-a34e-a2607dddacc2", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 220.077679, - "y": 30.698322 - }, - "endPoint": { - "x": 219.911518, - "y": 29.977022 - } - } - }, - { - "id": "3bf99b69-6615-563b-b71d-addf468f70ef", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 219.911518, - "y": 29.977022 - }, - "endPoint": { - "x": 219.911518, - "y": 28.651908 - } - } - }, - { - "id": "bc17acce-9b59-5f1a-8f52-d9d466f86481", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 219.911518, - "y": 28.651908 - }, - "endPoint": { - "x": 219.909187, - "y": 28.602659 - } - } - }, - { - "id": "cc6d97b7-072c-588f-b244-29871c8d5cb2", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 219.909187, - "y": 28.602659 - }, - "endPoint": { - "x": 219.917628, - "y": 28.554676 - } - } - }, - { - "id": "9c81e9bf-1426-5821-8f37-0e67604cd3d6", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 219.917628, - "y": 28.554676 - }, - "endPoint": { - "x": 219.936337, - "y": 28.509692 - } - } - }, - { - "id": "82119768-81bf-5dfd-85ba-e4159ee37372", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 219.936337, - "y": 28.509692 - }, - "endPoint": { - "x": 219.964807, - "y": 28.469438 - } - } - }, - { - "id": "0b6e84c2-ec7c-5265-9cbe-cd080095974c", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 219.964807, - "y": 28.469438 - }, - "endPoint": { - "x": 220.001462, - "y": 28.436465 - } - } - }, - { - "id": "111cf416-4b4a-543c-b859-31edc44cb6fb", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 220.001462, - "y": 28.436465 - }, - "endPoint": { - "x": 220.043955, - "y": 28.412633 - } - } - }, - { - "id": "6723adcc-6f58-5f52-b8c9-657090772a6b", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 220.043955, - "y": 28.412633 - }, - "endPoint": { - "x": 220.090625, - "y": 28.398648 - } - } - }, - { - "id": "a4cbbcdf-54ff-5345-becf-7f41a6c9d9ab", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 220.090625, - "y": 28.398648 - }, - "endPoint": { - "x": 220.139808, - "y": 28.395215 - } - } - }, - { - "id": "044c078c-6a10-597a-9445-3beae460d9d3", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 220.139808, - "y": 28.395215 - }, - "endPoint": { - "x": 222.19452, - "y": 28.480793 - } - } - }, - { - "id": "108153a3-baa7-5983-9c1a-731f122ba7e9", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 222.19452, - "y": 28.480793 - }, - "endPoint": { - "x": 224.049477, - "y": 28.366696 - } - } - }, - { - "id": "8b6b64fe-c180-53ef-9894-fd78d3c66e83", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 224.049477, - "y": 28.366696 - }, - "endPoint": { - "x": 224.101785, - "y": 28.360964 - } - } - }, - { - "id": "ac7de675-c89f-5fc3-84cd-f9fd4f51b79c", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 224.101785, - "y": 28.360964 - }, - "endPoint": { - "x": 224.153426, - "y": 28.366931 - } - } - }, - { - "id": "22596392-b060-563c-9086-070ac6f0285f", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 224.153426, - "y": 28.366931 - }, - "endPoint": { - "x": 224.202475, - "y": 28.384152 - } - } - }, - { - "id": "b5b9a6c8-5f72-50af-b57b-f205efa11a11", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 224.202475, - "y": 28.384152 - }, - "endPoint": { - "x": 224.247009, - "y": 28.412184 - } - } - }, - { - "id": "2489ec50-3a96-55bb-a66e-18d19806ae3a", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 224.247009, - "y": 28.412184 - }, - "endPoint": { - "x": 224.284152, - "y": 28.44946 - } - } - }, - { - "id": "2020557a-81cd-5cbe-b2e3-74e4f9cd42ea", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 224.284152, - "y": 28.44946 - }, - "endPoint": { - "x": 224.311741, - "y": 28.493518 - } - } - }, - { - "id": "725a13a4-db52-5b40-b423-2a6b4cad5026", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 224.311741, - "y": 28.493518 - }, - "endPoint": { - "x": 224.328922, - "y": 28.542581 - } - } - }, - { - "id": "6b47eda8-2347-50b1-88e7-7b9cc45a8bcf", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 224.328922, - "y": 28.542581 - }, - "endPoint": { - "x": 224.33484, - "y": 28.594869 - } - } - }, - { - "id": "6ff6e18f-ae6f-5e8d-95f5-f6adf08aa2ad", - "type": "Line", - "lineColor": "#132600", - "lineWidth": 1, - "layerId": "-00.기본BOX", - "shapeData": { - "startPoint": { - "x": 224.33484, - "y": 28.594869 - }, - "endPoint": { - "x": 224.33484, - "y": 32.074368 - } - } - } - ] - }, { "id": "9ed851f0-304d-52fa-8da6-bf5383c854e9", "type": "Text", @@ -147661,7 +1181,7 @@ "lineWidth": 1, "layerId": "-00.기본BOX TEXT", "shapeData": { - "label": "-", + "label": "{{축척_A1}}", "basePoint": { "x": 462.443604, "y": 29.323307 @@ -147685,7 +1205,7 @@ "lineWidth": 1, "layerId": "-00.기본BOX TEXT", "shapeData": { - "label": "-", + "label": "{{축척_A3}}", "basePoint": { "x": 462.443604, "y": 23.242274 @@ -147717,4 +1237,4 @@ "isLocked": false } ] -} \ No newline at end of file +}