diff --git a/Assets/ChillConnect/Define/Message/GameMsg_Logic.cs b/Assets/ChillConnect/Define/Message/GameMsg_Logic.cs index f4d09ef..54b0fa4 100644 --- a/Assets/ChillConnect/Define/Message/GameMsg_Logic.cs +++ b/Assets/ChillConnect/Define/Message/GameMsg_Logic.cs @@ -61,6 +61,6 @@ namespace ChillConnect public static uint ThemeChange = ++Cursor_BASE; public static uint UpdateSpeed = ++Cursor_BASE; - public static uint SetDelete = ++Cursor_BASE; + public static uint UseProps = ++Cursor_BASE; } } diff --git a/Assets/ChillConnect/FGUI/package/Arrow_game/Arrow_gameBinder.cs b/Assets/ChillConnect/FGUI/package/Arrow_game/Arrow_gameBinder.cs index 5dec212..58814cf 100644 --- a/Assets/ChillConnect/FGUI/package/Arrow_game/Arrow_gameBinder.cs +++ b/Assets/ChillConnect/FGUI/package/Arrow_game/Arrow_gameBinder.cs @@ -19,6 +19,7 @@ namespace FGUI.Arrow_game UIObjectFactory.SetPackageItemExtension(btn_petty.URL, typeof(btn_petty)); UIObjectFactory.SetPackageItemExtension(btn_green.URL, typeof(btn_green)); UIObjectFactory.SetPackageItemExtension(com_tips.URL, typeof(com_tips)); + UIObjectFactory.SetPackageItemExtension(view_container_parent.URL, typeof(view_container_parent)); UIObjectFactory.SetPackageItemExtension(com_bottom.URL, typeof(com_bottom)); } } diff --git a/Assets/ChillConnect/FGUI/package/Arrow_game/com_arrow_game.cs b/Assets/ChillConnect/FGUI/package/Arrow_game/com_arrow_game.cs index 152af15..b3d64c4 100644 --- a/Assets/ChillConnect/FGUI/package/Arrow_game/com_arrow_game.cs +++ b/Assets/ChillConnect/FGUI/package/Arrow_game/com_arrow_game.cs @@ -8,12 +8,11 @@ namespace FGUI.Arrow_game public partial class com_arrow_game : GComponent { public Controller mode; - public GComponent view_container; + public view_container_parent view_container_parent; public ArrorPoint point; public GButton btn_close; public GComponent com_money; public HeartsPanel HeartsPanel; - public com_finger com_finger; public GGraph samll_point; public GTextField text_level; public com_bottom com_bottom; @@ -21,6 +20,7 @@ namespace FGUI.Arrow_game public btn_saveingpot btn_saveingpot; public GButton btn_statement; public GButton btn_signin; + public com_finger com_finger; public const string URL = "ui://sjl9teijrsd40"; public static com_arrow_game CreateInstance() @@ -33,19 +33,19 @@ namespace FGUI.Arrow_game base.ConstructFromXML(xml); mode = GetControllerAt(0); - view_container = (GComponent)GetChildAt(2); + view_container_parent = (view_container_parent)GetChildAt(2); point = (ArrorPoint)GetChildAt(3); btn_close = (GButton)GetChildAt(4); com_money = (GComponent)GetChildAt(5); HeartsPanel = (HeartsPanel)GetChildAt(6); - com_finger = (com_finger)GetChildAt(7); - samll_point = (GGraph)GetChildAt(8); - text_level = (GTextField)GetChildAt(10); - com_bottom = (com_bottom)GetChildAt(12); - btn_petty = (btn_petty)GetChildAt(13); - btn_saveingpot = (btn_saveingpot)GetChildAt(14); - btn_statement = (GButton)GetChildAt(15); - btn_signin = (GButton)GetChildAt(16); + samll_point = (GGraph)GetChildAt(7); + text_level = (GTextField)GetChildAt(9); + com_bottom = (com_bottom)GetChildAt(11); + btn_petty = (btn_petty)GetChildAt(12); + btn_saveingpot = (btn_saveingpot)GetChildAt(13); + btn_statement = (GButton)GetChildAt(14); + btn_signin = (GButton)GetChildAt(15); + com_finger = (com_finger)GetChildAt(17); } } } \ No newline at end of file diff --git a/Assets/ChillConnect/FGUI/package/Arrow_game/com_finger.cs b/Assets/ChillConnect/FGUI/package/Arrow_game/com_finger.cs index 6140f12..2d01d22 100644 --- a/Assets/ChillConnect/FGUI/package/Arrow_game/com_finger.cs +++ b/Assets/ChillConnect/FGUI/package/Arrow_game/com_finger.cs @@ -8,7 +8,7 @@ namespace FGUI.Arrow_game public partial class com_finger : GComponent { public GImage finger; - public Transition t0; + public Transition t1; public const string URL = "ui://sjl9teijrsd4f"; public static com_finger CreateInstance() @@ -21,7 +21,7 @@ namespace FGUI.Arrow_game base.ConstructFromXML(xml); finger = (GImage)GetChildAt(0); - t0 = GetTransitionAt(0); + t1 = GetTransitionAt(0); } } } \ No newline at end of file diff --git a/Assets/ChillConnect/FGUI/package/Arrow_game/com_tips.cs b/Assets/ChillConnect/FGUI/package/Arrow_game/com_tips.cs index 91c21ba..635cec1 100644 --- a/Assets/ChillConnect/FGUI/package/Arrow_game/com_tips.cs +++ b/Assets/ChillConnect/FGUI/package/Arrow_game/com_tips.cs @@ -7,6 +7,7 @@ namespace FGUI.Arrow_game { public partial class com_tips : GComponent { + public Controller state; public btn_watch btn_watch; public GButton btn_close; public const string URL = "ui://sjl9teijrto31o"; @@ -20,6 +21,7 @@ namespace FGUI.Arrow_game { base.ConstructFromXML(xml); + state = GetControllerAt(0); btn_watch = (btn_watch)GetChildAt(4); btn_close = (GButton)GetChildAt(5); } diff --git a/Assets/ChillConnect/FGUI/package/Arrow_game/view_container_parent.cs b/Assets/ChillConnect/FGUI/package/Arrow_game/view_container_parent.cs new file mode 100644 index 0000000..17cd8f4 --- /dev/null +++ b/Assets/ChillConnect/FGUI/package/Arrow_game/view_container_parent.cs @@ -0,0 +1,25 @@ +/** This is an automatically generated class by FairyGUI. Please do not modify it. **/ + +using FairyGUI; +using FairyGUI.Utils; + +namespace FGUI.Arrow_game +{ + public partial class view_container_parent : GComponent + { + public GComponent panel; + public const string URL = "ui://sjl9teijrto31q"; + + public static view_container_parent CreateInstance() + { + return (view_container_parent)UIPackage.CreateObject("Arrow_game", "view_container_parent"); + } + + public override void ConstructFromXML(XML xml) + { + base.ConstructFromXML(xml); + + panel = (GComponent)GetChildAt(0); + } + } +} \ No newline at end of file diff --git a/Assets/ChillConnect/FGUI/package/Arrow_game/view_container_parent.cs.meta b/Assets/ChillConnect/FGUI/package/Arrow_game/view_container_parent.cs.meta new file mode 100644 index 0000000..3b0186c --- /dev/null +++ b/Assets/ChillConnect/FGUI/package/Arrow_game/view_container_parent.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: b506a578b539e7e45adc9b28b2aeb200 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/ChillConnectAssets/FGUI/Arrow_game_fui.bytes b/Assets/Resources/ChillConnectAssets/FGUI/Arrow_game_fui.bytes index bdb5a51..7118999 100644 Binary files a/Assets/Resources/ChillConnectAssets/FGUI/Arrow_game_fui.bytes and b/Assets/Resources/ChillConnectAssets/FGUI/Arrow_game_fui.bytes differ diff --git a/Assets/Resources/ChillConnectAssets/FGUI/Img_02_atlas0.png b/Assets/Resources/ChillConnectAssets/FGUI/Img_02_atlas0.png index 7a1d686..0b55ad2 100644 Binary files a/Assets/Resources/ChillConnectAssets/FGUI/Img_02_atlas0.png and b/Assets/Resources/ChillConnectAssets/FGUI/Img_02_atlas0.png differ diff --git a/Assets/Resources/ChillConnectAssets/FGUI/Img_02_atlas0_1.png b/Assets/Resources/ChillConnectAssets/FGUI/Img_02_atlas0_1.png index a258a96..eb3e3ea 100644 Binary files a/Assets/Resources/ChillConnectAssets/FGUI/Img_02_atlas0_1.png and b/Assets/Resources/ChillConnectAssets/FGUI/Img_02_atlas0_1.png differ diff --git a/Assets/Resources/ChillConnectAssets/FGUI/Img_02_fui.bytes b/Assets/Resources/ChillConnectAssets/FGUI/Img_02_fui.bytes index 2aa84e2..5e43620 100644 Binary files a/Assets/Resources/ChillConnectAssets/FGUI/Img_02_fui.bytes and b/Assets/Resources/ChillConnectAssets/FGUI/Img_02_fui.bytes differ diff --git a/Assets/Resources/ChillConnectAssets/FGUI/Loading_25_atlas0.png b/Assets/Resources/ChillConnectAssets/FGUI/Loading_25_atlas0.png index 456b4d7..dbb76ee 100644 Binary files a/Assets/Resources/ChillConnectAssets/FGUI/Loading_25_atlas0.png and b/Assets/Resources/ChillConnectAssets/FGUI/Loading_25_atlas0.png differ diff --git a/Assets/Resources/ChillConnectAssets/FGUI/Loading_25_fui.bytes b/Assets/Resources/ChillConnectAssets/FGUI/Loading_25_fui.bytes index 8a8097b..5ede99e 100644 Binary files a/Assets/Resources/ChillConnectAssets/FGUI/Loading_25_fui.bytes and b/Assets/Resources/ChillConnectAssets/FGUI/Loading_25_fui.bytes differ diff --git a/Assets/Resources/ChillConnectAssets/FGUI/Setting_07_fui.bytes b/Assets/Resources/ChillConnectAssets/FGUI/Setting_07_fui.bytes index 2e8cb16..7063823 100644 Binary files a/Assets/Resources/ChillConnectAssets/FGUI/Setting_07_fui.bytes and b/Assets/Resources/ChillConnectAssets/FGUI/Setting_07_fui.bytes differ diff --git a/Assets/Scripts/ModuleUI/ArrowGame/ArrowGameUI.cs b/Assets/Scripts/ModuleUI/ArrowGame/ArrowGameUI.cs index 0ceca23..72196b4 100644 --- a/Assets/Scripts/ModuleUI/ArrowGame/ArrowGameUI.cs +++ b/Assets/Scripts/ModuleUI/ArrowGame/ArrowGameUI.cs @@ -19,12 +19,6 @@ namespace ChillConnect // FGUI界面根容器 private GComponent _viewContainer; - #region FGUI 模板引用 - private ArrorPoint _dotTemplate; - private ArrowEnd _arrowTemplate; - private LineTile _lineUnitTemplate; - #endregion - // 关卡总配置数据 private LevelConfig _levelConfig; @@ -70,7 +64,7 @@ namespace ChillConnect // 当前正在提示的箭头 private ArrowConfig _currentTipArrow; // 手指图标偏移(微调位置) - private readonly Vector2 _fingerOffset = new Vector2(-60, -60); + private readonly Vector2 _fingerOffset = new Vector2(-20, -20); // 所有网格圆点实例列表,用于批量改色/清理 private List _gridDotList = new List(); @@ -154,14 +148,6 @@ namespace ChillConnect HideFingerTip(); - // 释放模板资源 - if (_dotTemplate != null) _dotTemplate.Dispose(); - if (_arrowTemplate != null) _arrowTemplate.Dispose(); - if (_lineUnitTemplate != null) _lineUnitTemplate.Dispose(); - - _dotTemplate = null; - _arrowTemplate = null; - _lineUnitTemplate = null; _levelConfig = null; // 清空网格占用数据 @@ -185,47 +171,39 @@ namespace ChillConnect public override void OnUpdate() { - // if (_levelConfig == null) return; - // foreach (var arrow in _levelConfig.arrows) - // { - // UpdateArrowMove(arrow); - // } - // - // ========= 编辑器模拟触摸(仅编辑模式生效) ========= - - // ========== 编辑器鼠标拖拽 ========== - // 初始化未完成,直接跳过拖拽 if (!_initComplete) return; #if UNITY_EDITOR - float moveThreshold = 1f; // 移动阈值,大于这个值才算有效拖动 + float moveThreshold = 1f; - // 鼠标按下:仅初始化状态和起点 + // 鼠标按下:仅在拖拽区域内按下才开启拖拽 if (InputHelper.Instance.GetMouseButtonDown(0)) { Vector2 unityPos = InputHelper.Instance.MousePosition; - _lastTouchPos = UnityMouseToFGUIPos(unityPos); - _isDraging = true; - Debug.Log("鼠标按下,开始拖拽"); - return; // 本帧直接返回,不执行拖动逻辑 + Vector2 fguiPos = UnityMouseToFGUIPos(unityPos); + + if (IsInDragArea(fguiPos)) + { + _lastTouchPos = fguiPos; + _isDraging = true; + Debug.Log("鼠标按下,在拖拽区域内,开始拖拽"); + } + return; } - // 拖拽中:按住左键 + 拖拽标记为true + // 拖拽中:原有逻辑不变 if (_isDraging && InputHelper.Instance.GetMouseButton(0)) { Vector2 unityPos = InputHelper.Instance.MousePosition; Vector2 curMousePos = UnityMouseToFGUIPos(unityPos); Vector2 offset = curMousePos - _lastTouchPos; - Debug.Log($"curMousePos=={curMousePos} _lastTouchPos=={_lastTouchPos} offset=={offset}"); - - // 只有偏移超过阈值才移动 & 更新基准点 if (offset.magnitude > moveThreshold) { MoveContainer(offset); - _lastTouchPos = curMousePos; // 移动后再刷新起点 + _lastTouchPos = curMousePos; } } @@ -277,9 +255,13 @@ namespace ChillConnect if (touch.phase == TouchPhase.Began) { - _lastTouchPos = curTouchPos; - _isDraging = true; - _isTwoFingerTouch = false; + // 只有在拖拽区域内按下,才开启拖拽 + if (IsInDragArea(curTouchPos)) + { + _lastTouchPos = curTouchPos; + _isDraging = true; + _isTwoFingerTouch = false; + } } else if (touch.phase == TouchPhase.Moved && _isDraging) { @@ -304,11 +286,7 @@ namespace ChillConnect { //加载配置 InitAllLevelData(); - _viewContainer = ui.view_container; - // 初始化FGUI模板 - _dotTemplate = (ArrorPoint)UIPackage.CreateObject("Arrow_game", "ArrorPoint"); - _arrowTemplate = (ArrowEnd)UIPackage.CreateObject("Arrow_game", "ArrowEnd"); - _lineUnitTemplate = (LineTile)UIPackage.CreateObject("Arrow_game", "LineTile"); + _viewContainer = ui.view_container_parent.panel; LoadLevelConfig(); InitGridBounds(); @@ -345,7 +323,7 @@ namespace ChillConnect GameDispatcher.Instance.AddListener(GameMsg.Update101, SetTopCurr); GameDispatcher.Instance.AddListener(GameMsg.ThemeChange, SetModel); GameDispatcher.Instance.AddListener(GameMsg.UpdateSpeed, SetSpeed); - GameDispatcher.Instance.AddListener(GameMsg.SetDelete, SetDeleteMode); + GameDispatcher.Instance.AddListener(GameMsg.UseProps, SetUserPorp); } @@ -356,7 +334,7 @@ namespace ChillConnect GameDispatcher.Instance.RemoveListener(GameMsg.Update101, SetTopCurr); GameDispatcher.Instance.RemoveListener(GameMsg.ThemeChange, SetModel); GameDispatcher.Instance.RemoveListener(GameMsg.UpdateSpeed, SetSpeed); - GameDispatcher.Instance.RemoveListener(GameMsg.SetDelete, SetDeleteMode); + GameDispatcher.Instance.RemoveListener(GameMsg.UseProps, SetUserPorp); @@ -384,9 +362,7 @@ namespace ChillConnect } - _fingerTipObj = com_finger.CreateInstance(); - _viewContainer.AddChild(_fingerTipObj); - _fingerTipObj.visible = false; + _currentTipArrow = null; _zoomSlider = ui.com_bottom.zoomSlide; @@ -412,8 +388,8 @@ namespace ChillConnect // ========== 核心:把网格中心钉在屏幕中心 ========== // _gridWorldCenter 是 DrawGridDots 里 CalculateGridCenter 算出的值 - float screenCenterX = Screen.width * 0.5f; - float screenCenterY = Screen.height * 0.5f; + float screenCenterX = ui.view_container_parent.width * 0.5f; + float screenCenterY = ui.view_container_parent.height * 0.5f; // 计算容器需要移动多少,才能让网格中心正好对准屏幕中心 float targetContainerX = screenCenterX - _gridWorldCenter.x; @@ -435,6 +411,11 @@ namespace ChillConnect SetModel(); SetTopCurr(); + + _fingerTipObj = com_finger.CreateInstance(); + _viewContainer.AddChild(_fingerTipObj); + _fingerTipObj.visible = false; + _fingerTipObj.sortingOrder = 9999; } @@ -815,9 +796,6 @@ namespace ChillConnect #region 绘制网格圆点 private void DrawGridDots(LevelConfig cfg) { - if (_dotTemplate == null || _viewContainer == null) return; - _dotTemplate.visible = false; - var rows = cfg.gridRows; var cols = cfg.gridCols; @@ -1023,16 +1001,31 @@ namespace ChillConnect #region 道具(删除和提示) - private void SetDeleteMode(object a) + private void SetUserPorp(object a) { - _isDeleteMode = !_isDeleteMode; + + if (a != null) + { + var type = (int)a; + Debug.Log($"Set User Prop: {type}"); + if (type == 0) + { + // 提示道具 + ShowRandomArrowTip(); + } + else if (type == 1) + { + _isDeleteMode = !_isDeleteMode; + } + } + } /// 点击删除道具,开启/关闭删除模式 private void OnClickDeleteItem() { // _isDeleteMode = !_isDeleteMode; - UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.ArrowTipsUI_Open); + UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.ArrowTipsUI_Open, 1); // // 可选:加提示,区分状态 // if (_isDeleteMode) @@ -1048,7 +1041,7 @@ namespace ChillConnect private void OnClickHint() { - ShowRandomArrowTip(); + UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.ArrowTipsUI_Open, 0); } /// 随机选中有效箭头,显示静态手指提示(不跟随移动) @@ -1063,22 +1056,26 @@ namespace ChillConnect return; } - // 筛选有效箭头 + // 筛选条件:对象存在 + 未销毁 + 未在移动中 + 前方无阻挡可直接消除 List validArrows = _levelConfig.arrows - .Where(arrow => arrow != null && arrow.arrowObj != null) + .Where(arrow => + arrow != null && + arrow.arrowObj != null && + !arrow.isMoving && + !IsArrowBlocked(arrow)) .ToList(); if (validArrows.Count == 0) { - Debug.Log("没有有效箭头可提示"); + Debug.Log("当前没有可直接消除的箭头,无法提示"); return; } - // 随机选一个 + // 从可消除箭头中随机选一个 int randomIndex = Random.Range(0, validArrows.Count); _currentTipArrow = validArrows[randomIndex]; - // 设置手指位置(仅初始化一次,不再刷新) + // 设置手指提示位置 float x = _currentTipArrow.arrowObj.x + _fingerOffset.x; float y = _currentTipArrow.arrowObj.y + _fingerOffset.y; _fingerTipObj.SetPosition(x, y, 0); @@ -1099,6 +1096,24 @@ namespace ChillConnect #region 缩放 + /// + /// 判断FGUI全局坐标是否落在拖拽有效区域(view_container_parent)内 + /// + private bool IsInDragArea(Vector2 fguiGlobalPos) + { + if (ui.view_container_parent == null) + return false; + + // 全局坐标转成父容器本地坐标(左上角为原点) + Vector2 localPos = ui.view_container_parent.GlobalToLocal(fguiGlobalPos); + + // 判断是否在容器矩形范围内 + return localPos.x >= 0 + && localPos.x <= ui.view_container_parent.width + && localPos.y >= 0 + && localPos.y <= ui.view_container_parent.height; + } + /// 根据缩放值,计算滑动条 value(0~1) private float GetSliderValueByScale(float scale) { @@ -1192,21 +1207,26 @@ namespace ChillConnect MoveToDisappear(clickArrow); } } - // 基于网格行列的阻挡检测 - private bool CheckBlockByGrid(ArrowConfig curArrow) + + /// + /// 纯检测:箭头前方是否有阻挡(无副作用,不扣血、不改状态) + /// + /// true=前方有阻挡,false=可直接飞出消除 + private bool IsArrowBlocked(ArrowConfig curArrow) { - if (_gridOccupied == null || _levelConfig == null) return false; + if (_gridOccupied == null || _levelConfig == null) + return false; - // 当前箭头网格行列 + // 获取箭头头部所在网格行列 Vector2 arrowPos = new Vector2(curArrow.arrowObj.x, curArrow.arrowObj.y); int curPointId = GetPointIdByPos(arrowPos, _levelConfig); PointIdToRowCol(curPointId, _levelConfig.gridCols, out int curRow, out int curCol); - // 超出网格直接判定无阻挡 + // 箭头已超出网格,判定无阻挡 if (curRow < 0 || curRow >= _levelConfig.gridRows || curCol < 0 || curCol >= _levelConfig.gridCols) return false; - // 获取移动方向 + // 获取最终射出方向 string moveDir; if (curArrow.path != null && curArrow.path.Count > 0) { @@ -1221,63 +1241,58 @@ namespace ChillConnect moveDir = "up"; } - bool isCollide = false; - // 沿方向遍历前方网格 + // 沿射出方向遍历前方网格 switch (moveDir) { case "up": for (int r = curRow - 1; r >= 0; r--) { if (_gridOccupied[r, curCol]) - { - isCollide = true; - break; - } + return true; } break; case "down": for (int r = curRow + 1; r < _levelConfig.gridRows; r++) { if (_gridOccupied[r, curCol]) - { - isCollide = true; - break; - } + return true; } break; case "left": for (int c = curCol - 1; c >= 0; c--) { if (_gridOccupied[curRow, c]) - { - isCollide = true; - break; - } + return true; } break; case "right": for (int c = curCol + 1; c < _levelConfig.gridCols; c++) { if (_gridOccupied[curRow, c]) - { - isCollide = true; - break; - } + return true; } break; } - // ========== 新增:碰撞判重 + 扣爱心 ========== + return false; + } + // 基于网格行列的阻挡检测(带扣血逻辑,点击箭头时调用) + private bool CheckBlockByGrid(ArrowConfig curArrow) + { + bool isCollide = IsArrowBlocked(curArrow); + + // ========== 碰撞判重 + 扣爱心 ========== if (isCollide) { - // 这条线第一次碰撞,才扣血 + // 同个箭头第一次碰撞才扣血 if (!_collidedArrows.Contains(curArrow)) { _collidedArrows.Add(curArrow); _heartCount--; - - if (_heartCount > 0) ui.HeartsPanel.GetChild($"xin_{_heartCount+1}").visible = false; - + + if (_heartCount > 0) + ui.HeartsPanel.GetChild($"xin_{_heartCount + 1}").visible = false; + // 爱心归零 → 失败结算 if (_heartCount <= 0) { @@ -1389,48 +1404,70 @@ namespace ChillConnect RunCoroutine(MoveAndResetCoroutine(arrow)); } - // 回弹速度单独配置,和移动速度分开 private float _bounceSpeed = 180f; private IEnumerator MoveAndResetCoroutine(ArrowConfig arrow) { arrow.movedDistance = 0f; arrow.finalMoveDir = GetFinalMoveDir(arrow); - // 向前移动的总距离(对应原逻辑2步=20px,可自行调整) + // 向前移动的总距离(对应原逻辑2步=20px) float forwardTotal = 20f; - float timer = 0f; float duration = forwardTotal / _bounceSpeed; + float timer = 0f; - // 第一段:向前移动 + // ========== 第一段:向前移动 ========== while (timer < duration) { if (arrow == null || arrow.arrowObj == null) yield break; timer += Time.deltaTime; - arrow.movedDistance = _bounceSpeed * timer; + // 钳制:保证前移距离不超过设定值,不会多走 + arrow.movedDistance = Mathf.Min(_bounceSpeed * timer, forwardTotal); UpdateAllElementsPosition(arrow); yield return null; } - // 第二段:回弹到初始位置 + // 强制对齐前顶点,消除浮点误差 + arrow.movedDistance = forwardTotal; + UpdateAllElementsPosition(arrow); + + // ========== 第二段:回弹复位 ========== timer = 0f; float startDis = arrow.movedDistance; + while (timer < duration) { if (arrow == null || arrow.arrowObj == null) yield break; timer += Time.deltaTime; - float t = timer / duration; + // 核心修复:钳制 t 在 0~1 之间,防止插值超出范围变成负数 + float t = Mathf.Clamp01(timer / duration); arrow.movedDistance = Mathf.Lerp(startDis, 0f, t); UpdateAllElementsPosition(arrow); yield return null; } - // 强制复位到初始状态 + // ========== 最终强制复位(双保险,绝对回到初始位置)========== arrow.movedDistance = 0f; UpdateAllElementsPosition(arrow); + + // 兜底:直接用原始坐标校准,彻底消除距离计算的累计误差 + if (arrow.arrowObj != null) + { + arrow.arrowObj.SetPosition(arrow.originalArrowPos.x, arrow.originalArrowPos.y, 0); + } + for (int i = 0; i < arrow.lineUnits.Count; i++) + { + if (arrow.lineUnits[i] != null && i < arrow.originalLinePos.Count) + { + arrow.lineUnits[i].SetPosition( + arrow.originalLinePos[i].x, + arrow.originalLinePos[i].y, 0); + } + } + arrow.isMoving = false; } @@ -1465,7 +1502,6 @@ namespace ChillConnect // 新增:统一移动速度(像素/秒),数值越大移动越快,可自由修改 [SerializeField] private float _moveSpeed = 1500f; - private IEnumerator MoveAndDisappearCoroutine(ArrowConfig arrow) { arrow.movedDistance = 0f; diff --git a/Assets/Scripts/ModuleUI/ArrowTheme/ArrowThemeUI.cs b/Assets/Scripts/ModuleUI/ArrowTheme/ArrowThemeUI.cs index 501ac99..5b2dd79 100644 --- a/Assets/Scripts/ModuleUI/ArrowTheme/ArrowThemeUI.cs +++ b/Assets/Scripts/ModuleUI/ArrowTheme/ArrowThemeUI.cs @@ -96,25 +96,25 @@ namespace ChillConnect ((btn_green)ui.btn_dark).touchable = false; ((btn_green)ui.btn_worm).touchable = true; ((btn_green)ui.btn_colours).touchable = true; - ((btn_green)ui.btn_dark).state.selectedIndex = 1; - ((btn_green)ui.btn_worm).state.selectedIndex = 0; - ((btn_green)ui.btn_colours).state.selectedIndex = 0; + ((btn_green)ui.btn_dark).state.selectedIndex = 0; + ((btn_green)ui.btn_worm).state.selectedIndex = 1; + ((btn_green)ui.btn_colours).state.selectedIndex = 1; break; case 1: ((btn_green)ui.btn_dark).touchable = true; ((btn_green)ui.btn_worm).touchable = false; ((btn_green)ui.btn_colours).touchable = true; - ((btn_green)ui.btn_dark).state.selectedIndex = 0; - ((btn_green)ui.btn_worm).state.selectedIndex = 1; - ((btn_green)ui.btn_colours).state.selectedIndex = 0; + ((btn_green)ui.btn_dark).state.selectedIndex = 1; + ((btn_green)ui.btn_worm).state.selectedIndex = 0; + ((btn_green)ui.btn_colours).state.selectedIndex = 1; break; case 2: ((btn_green)ui.btn_dark).touchable = true; ((btn_green)ui.btn_worm).touchable = true; ((btn_green)ui.btn_colours).touchable = false; - ((btn_green)ui.btn_dark).state.selectedIndex = 0; - ((btn_green)ui.btn_worm).state.selectedIndex = 0; - ((btn_green)ui.btn_colours).state.selectedIndex = 1; + ((btn_green)ui.btn_dark).state.selectedIndex = 1; + ((btn_green)ui.btn_worm).state.selectedIndex = 1; + ((btn_green)ui.btn_colours).state.selectedIndex = 0; break; } } diff --git a/Assets/Scripts/ModuleUI/ArrowTips/ArrowTipsUI.cs b/Assets/Scripts/ModuleUI/ArrowTips/ArrowTipsUI.cs index 46a4105..706dce6 100644 --- a/Assets/Scripts/ModuleUI/ArrowTips/ArrowTipsUI.cs +++ b/Assets/Scripts/ModuleUI/ArrowTips/ArrowTipsUI.cs @@ -1,5 +1,6 @@ using System; using FGUI.Arrow_game; +using UnityEngine; namespace ChillConnect { @@ -21,6 +22,9 @@ namespace ChillConnect uiInfo.packageName = "Arrow_game"; uiInfo.assetName = "com_tips"; uiInfo.layerType = UILayerType.Loading; + uiInfo.isNeedUIMask = true; + uiInfo.isNeedOpenAnim = true; + uiInfo.isNeedCloseAnim = true; } protected override void OnInit() @@ -39,7 +43,8 @@ namespace ChillConnect protected override void OnOpenBefore(object args) { - InitView(); + if (args != null) + InitView((int)args); } protected override void OnOpen(object args) @@ -55,16 +60,23 @@ namespace ChillConnect { } - private void InitView() + private void InitView(int type) { - + int state = type; + Debug.Log($"tips state = {state} "); + // 0 提示 1 删除道具 + ui.state.selectedIndex = state; + ui.btn_watch.SetClick(() => { - GameHelper.ShowVideoAd("deletePop", isSuccess => + string idStr = state == 1 ? "deletePop" : "HintPop"; + GameHelper.ShowVideoAd(idStr, isSuccess => { if (isSuccess) { - GameDispatcher.Instance.Dispatch(GameMsg.SetDelete); + Debug.Log($"isSuccess tips state = {state} "); + + GameDispatcher.Instance.Dispatch(GameMsg.UseProps, state); CtrlCloseUI(); } }); diff --git a/Assets/StreamingAssets/all_levels.json b/Assets/StreamingAssets/all_levels.json new file mode 100644 index 0000000..84b7951 --- /dev/null +++ b/Assets/StreamingAssets/all_levels.json @@ -0,0 +1,28522 @@ +{ + "levels": [ + { + "levelId": 1, + "levelName": "第-999关", + "gridRows": 8, + "gridCols": 8, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 58, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 2, + "startPoint": 20, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 3, + "startPoint": 11, + "path": [ + "left", + "left" + ] + }, + { + "id": 4, + "startPoint": 38, + "path": [ + "down", + "down" + ] + }, + { + "id": 5, + "startPoint": 33, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 6, + "startPoint": 18, + "path": [ + "right" + ] + }, + { + "id": 7, + "startPoint": 35, + "path": [ + "up" + ] + } + ] + }, + { + "levelId": 2, + "levelName": "第-998关", + "gridRows": 8, + "gridCols": 8, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 45, + "path": [ + "down", + "down" + ] + }, + { + "id": 2, + "startPoint": 39, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 3, + "startPoint": 26, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 4, + "startPoint": 13, + "path": [ + "right", + "right" + ] + }, + { + "id": 5, + "startPoint": 35, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 6, + "startPoint": 33, + "path": [ + "up", + "up" + ] + }, + { + "id": 7, + "startPoint": 6, + "path": [ + "right" + ] + } + ] + }, + { + "levelId": 3, + "levelName": "第-997关", + "gridRows": 13, + "gridCols": 13, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 85, + "path": [ + "up", + "up" + ] + }, + { + "id": 2, + "startPoint": 66, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 3, + "startPoint": 81, + "path": [ + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 4, + "startPoint": 76, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 5, + "startPoint": 80, + "path": [ + "up", + "up" + ] + }, + { + "id": 6, + "startPoint": 33, + "path": [ + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 7, + "startPoint": 38, + "path": [ + "up", + "up" + ] + }, + { + "id": 8, + "startPoint": 106, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 9, + "startPoint": 143, + "path": [ + "down" + ] + }, + { + "id": 10, + "startPoint": 139, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 11, + "startPoint": 98, + "path": [ + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 12, + "startPoint": 83, + "path": [ + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 13, + "startPoint": 138, + "path": [ + "down", + "down" + ] + }, + { + "id": 14, + "startPoint": 37, + "path": [ + "down", + "down" + ] + } + ] + }, + { + "levelId": 4, + "levelName": "第-996关", + "gridRows": 13, + "gridCols": 13, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 96, + "path": [ + "up", + "up" + ] + }, + { + "id": 2, + "startPoint": 140, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 3, + "startPoint": 6, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 4, + "startPoint": 128, + "path": [ + "right" + ] + }, + { + "id": 5, + "startPoint": 30, + "path": [ + "right", + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 6, + "startPoint": 105, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 7, + "startPoint": 12, + "path": [ + "down", + "down" + ] + }, + { + "id": 8, + "startPoint": 57, + "path": [ + "up" + ] + }, + { + "id": 9, + "startPoint": 27, + "path": [ + "left" + ] + }, + { + "id": 10, + "startPoint": 114, + "path": [ + "up", + "up" + ] + }, + { + "id": 11, + "startPoint": 58, + "path": [ + "up" + ] + }, + { + "id": 12, + "startPoint": 155, + "path": [ + "down" + ] + } + ] + }, + { + "levelId": 5, + "levelName": "第-995关", + "gridRows": 13, + "gridCols": 13, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 121, + "path": [ + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 2, + "startPoint": 37, + "path": [ + "right" + ] + }, + { + "id": 3, + "startPoint": 27, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 4, + "startPoint": 133, + "path": [ + "right", + "right" + ] + }, + { + "id": 5, + "startPoint": 166, + "path": [ + "up", + "up", + "right", + "right" + ] + }, + { + "id": 6, + "startPoint": 46, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 7, + "startPoint": 114, + "path": [ + "up", + "up" + ] + }, + { + "id": 8, + "startPoint": 3, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 9, + "startPoint": 63, + "path": [ + "up", + "right" + ] + }, + { + "id": 10, + "startPoint": 28, + "path": [ + "up", + "left", + "left" + ] + }, + { + "id": 11, + "startPoint": 32, + "path": [ + "up" + ] + }, + { + "id": 12, + "startPoint": 124, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 13, + "startPoint": 73, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 14, + "startPoint": 8, + "path": [ + "down", + "down", + "down", + "down" + ] + } + ] + }, + { + "levelId": 6, + "levelName": "第-994关", + "gridRows": 13, + "gridCols": 13, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 53, + "path": [ + "right", + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 2, + "startPoint": 144, + "path": [ + "left" + ] + }, + { + "id": 3, + "startPoint": 139, + "path": [ + "up", + "up" + ] + }, + { + "id": 4, + "startPoint": 77, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 5, + "startPoint": 46, + "path": [ + "left", + "up", + "up", + "up" + ] + }, + { + "id": 6, + "startPoint": 100, + "path": [ + "right", + "right" + ] + }, + { + "id": 7, + "startPoint": 30, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 8, + "startPoint": 145, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 9, + "startPoint": 97, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 10, + "startPoint": 124, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 11, + "startPoint": 153, + "path": [ + "right", + "up", + "up", + "up" + ] + }, + { + "id": 12, + "startPoint": 164, + "path": [ + "right", + "right" + ] + }, + { + "id": 13, + "startPoint": 156, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 14, + "startPoint": 60, + "path": [ + "down", + "right", + "right", + "right" + ] + }, + { + "id": 15, + "startPoint": 110, + "path": [ + "left", + "left" + ] + } + ] + }, + { + "levelId": 7, + "levelName": "第-993关", + "gridRows": 13, + "gridCols": 13, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 80, + "path": [ + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 2, + "startPoint": 149, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 3, + "startPoint": 166, + "path": [ + "left", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 4, + "startPoint": 167, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 5, + "startPoint": 57, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 6, + "startPoint": 121, + "path": [ + "left" + ] + }, + { + "id": 7, + "startPoint": 126, + "path": [ + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 8, + "startPoint": 8, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 9, + "startPoint": 6, + "path": [ + "right" + ] + }, + { + "id": 10, + "startPoint": 14, + "path": [ + "up", + "left" + ] + }, + { + "id": 11, + "startPoint": 56, + "path": [ + "down", + "down" + ] + }, + { + "id": 12, + "startPoint": 134, + "path": [ + "right", + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 13, + "startPoint": 130, + "path": [ + "right" + ] + }, + { + "id": 14, + "startPoint": 89, + "path": [ + "right" + ] + }, + { + "id": 15, + "startPoint": 33, + "path": [ + "up" + ] + }, + { + "id": 16, + "startPoint": 27, + "path": [ + "right", + "right", + "right" + ] + } + ] + }, + { + "levelId": 8, + "levelName": "第-992关", + "gridRows": 13, + "gridCols": 13, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 135, + "path": [ + "up", + "up" + ] + }, + { + "id": 2, + "startPoint": 93, + "path": [ + "right", + "right" + ] + }, + { + "id": 3, + "startPoint": 41, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 4, + "startPoint": 31, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 5, + "startPoint": 83, + "path": [ + "up", + "up" + ] + }, + { + "id": 6, + "startPoint": 137, + "path": [ + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 7, + "startPoint": 112, + "path": [ + "left", + "left" + ] + }, + { + "id": 8, + "startPoint": 62, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 9, + "startPoint": 128, + "path": [ + "up", + "up", + "right" + ] + }, + { + "id": 10, + "startPoint": 101, + "path": [ + "up", + "up" + ] + }, + { + "id": 11, + "startPoint": 14, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 12, + "startPoint": 53, + "path": [ + "left" + ] + }, + { + "id": 13, + "startPoint": 1, + "path": [ + "left" + ] + }, + { + "id": 14, + "startPoint": 157, + "path": [ + "left" + ] + }, + { + "id": 15, + "startPoint": 28, + "path": [ + "right", + "right" + ] + }, + { + "id": 16, + "startPoint": 25, + "path": [ + "up" + ] + }, + { + "id": 17, + "startPoint": 146, + "path": [ + "right", + "down" + ] + } + ] + }, + { + "levelId": 9, + "levelName": "第-991关", + "gridRows": 13, + "gridCols": 13, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 137, + "path": [ + "left", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 2, + "startPoint": 55, + "path": [ + "right", + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 3, + "startPoint": 152, + "path": [ + "down" + ] + }, + { + "id": 4, + "startPoint": 48, + "path": [ + "right", + "right" + ] + }, + { + "id": 5, + "startPoint": 71, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 6, + "startPoint": 157, + "path": [ + "up" + ] + }, + { + "id": 7, + "startPoint": 161, + "path": [ + "left", + "up" + ] + }, + { + "id": 8, + "startPoint": 76, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 9, + "startPoint": 85, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 10, + "startPoint": 162, + "path": [ + "right", + "right" + ] + }, + { + "id": 11, + "startPoint": 140, + "path": [ + "left", + "left" + ] + }, + { + "id": 12, + "startPoint": 100, + "path": [ + "up", + "up" + ] + }, + { + "id": 13, + "startPoint": 29, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 14, + "startPoint": 95, + "path": [ + "right" + ] + }, + { + "id": 15, + "startPoint": 104, + "path": [ + "down", + "right", + "right" + ] + }, + { + "id": 16, + "startPoint": 154, + "path": [ + "right" + ] + }, + { + "id": 17, + "startPoint": 51, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 18, + "startPoint": 82, + "path": [ + "left", + "left" + ] + } + ] + }, + { + "levelId": 10, + "levelName": "第-990关", + "gridRows": 13, + "gridCols": 13, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 77, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 2, + "startPoint": 59, + "path": [ + "left", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 3, + "startPoint": 49, + "path": [ + "down" + ] + }, + { + "id": 4, + "startPoint": 114, + "path": [ + "right", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 5, + "startPoint": 33, + "path": [ + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 6, + "startPoint": 95, + "path": [ + "up", + "up" + ] + }, + { + "id": 7, + "startPoint": 45, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 8, + "startPoint": 134, + "path": [ + "down", + "down" + ] + }, + { + "id": 9, + "startPoint": 63, + "path": [ + "right" + ] + }, + { + "id": 10, + "startPoint": 18, + "path": [ + "up" + ] + }, + { + "id": 11, + "startPoint": 143, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 12, + "startPoint": 132, + "path": [ + "right" + ] + }, + { + "id": 13, + "startPoint": 24, + "path": [ + "left" + ] + }, + { + "id": 14, + "startPoint": 88, + "path": [ + "right", + "right" + ] + }, + { + "id": 15, + "startPoint": 9, + "path": [ + "down" + ] + }, + { + "id": 16, + "startPoint": 78, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 17, + "startPoint": 61, + "path": [ + "left" + ] + }, + { + "id": 18, + "startPoint": 157, + "path": [ + "right", + "right" + ] + }, + { + "id": 19, + "startPoint": 2, + "path": [ + "left", + "left" + ] + } + ] + }, + { + "levelId": 11, + "levelName": "第-989关", + "gridRows": 13, + "gridCols": 13, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 62, + "path": [ + "right", + "right" + ] + }, + { + "id": 2, + "startPoint": 131, + "path": [ + "left" + ] + }, + { + "id": 3, + "startPoint": 54, + "path": [ + "left", + "left" + ] + }, + { + "id": 4, + "startPoint": 148, + "path": [ + "left", + "left", + "down" + ] + }, + { + "id": 5, + "startPoint": 94, + "path": [ + "down", + "left", + "left", + "left" + ] + }, + { + "id": 6, + "startPoint": 37, + "path": [ + "down" + ] + }, + { + "id": 7, + "startPoint": 60, + "path": [ + "right" + ] + }, + { + "id": 8, + "startPoint": 55, + "path": [ + "up", + "up" + ] + }, + { + "id": 9, + "startPoint": 124, + "path": [ + "right", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 10, + "startPoint": 157, + "path": [ + "up" + ] + }, + { + "id": 11, + "startPoint": 22, + "path": [ + "up" + ] + }, + { + "id": 12, + "startPoint": 5, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 13, + "startPoint": 98, + "path": [ + "left", + "left", + "down", + "down", + "down" + ] + }, + { + "id": 14, + "startPoint": 145, + "path": [ + "up", + "up", + "left", + "left" + ] + }, + { + "id": 15, + "startPoint": 93, + "path": [ + "left", + "left" + ] + }, + { + "id": 16, + "startPoint": 126, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 17, + "startPoint": 141, + "path": [ + "up", + "up", + "up", + "up", + "right" + ] + }, + { + "id": 18, + "startPoint": 69, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 19, + "startPoint": 11, + "path": [ + "down" + ] + }, + { + "id": 20, + "startPoint": 26, + "path": [ + "up", + "up" + ] + } + ] + }, + { + "levelId": 12, + "levelName": "第-988关", + "gridRows": 13, + "gridCols": 13, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 44, + "path": [ + "left", + "left", + "left", + "left", + "down", + "down" + ] + }, + { + "id": 2, + "startPoint": 79, + "path": [ + "left" + ] + }, + { + "id": 3, + "startPoint": 8, + "path": [ + "left", + "left", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 4, + "startPoint": 122, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 5, + "startPoint": 165, + "path": [ + "right", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 6, + "startPoint": 68, + "path": [ + "left" + ] + }, + { + "id": 7, + "startPoint": 96, + "path": [ + "up", + "up", + "up", + "left" + ] + }, + { + "id": 8, + "startPoint": 102, + "path": [ + "right" + ] + }, + { + "id": 9, + "startPoint": 48, + "path": [ + "up", + "right", + "right", + "right" + ] + }, + { + "id": 10, + "startPoint": 159, + "path": [ + "up", + "up", + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 11, + "startPoint": 10, + "path": [ + "left" + ] + }, + { + "id": 12, + "startPoint": 74, + "path": [ + "right", + "right", + "down" + ] + }, + { + "id": 13, + "startPoint": 39, + "path": [ + "down", + "down" + ] + }, + { + "id": 14, + "startPoint": 61, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 15, + "startPoint": 118, + "path": [ + "left" + ] + }, + { + "id": 16, + "startPoint": 27, + "path": [ + "left" + ] + }, + { + "id": 17, + "startPoint": 72, + "path": [ + "right" + ] + }, + { + "id": 18, + "startPoint": 15, + "path": [ + "right" + ] + }, + { + "id": 19, + "startPoint": 81, + "path": [ + "down", + "down", + "down", + "right" + ] + }, + { + "id": 20, + "startPoint": 77, + "path": [ + "down" + ] + }, + { + "id": 21, + "startPoint": 30, + "path": [ + "left", + "left" + ] + } + ] + }, + { + "levelId": 13, + "levelName": "第-987关", + "gridRows": 13, + "gridCols": 13, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 141, + "path": [ + "down", + "down" + ] + }, + { + "id": 2, + "startPoint": 17, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 3, + "startPoint": 157, + "path": [ + "right" + ] + }, + { + "id": 4, + "startPoint": 35, + "path": [ + "up", + "up" + ] + }, + { + "id": 5, + "startPoint": 101, + "path": [ + "right", + "right" + ] + }, + { + "id": 6, + "startPoint": 70, + "path": [ + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 7, + "startPoint": 108, + "path": [ + "right", + "right", + "down" + ] + }, + { + "id": 8, + "startPoint": 75, + "path": [ + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 9, + "startPoint": 89, + "path": [ + "right" + ] + }, + { + "id": 10, + "startPoint": 83, + "path": [ + "right", + "right" + ] + }, + { + "id": 11, + "startPoint": 20, + "path": [ + "up" + ] + }, + { + "id": 12, + "startPoint": 119, + "path": [ + "right", + "right" + ] + }, + { + "id": 13, + "startPoint": 148, + "path": [ + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 14, + "startPoint": 73, + "path": [ + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 15, + "startPoint": 54, + "path": [ + "up", + "up" + ] + }, + { + "id": 16, + "startPoint": 40, + "path": [ + "left" + ] + }, + { + "id": 17, + "startPoint": 93, + "path": [ + "up", + "right", + "right" + ] + }, + { + "id": 18, + "startPoint": 146, + "path": [ + "up" + ] + }, + { + "id": 19, + "startPoint": 112, + "path": [ + "down", + "right" + ] + }, + { + "id": 20, + "startPoint": 113, + "path": [ + "up" + ] + }, + { + "id": 21, + "startPoint": 51, + "path": [ + "left" + ] + }, + { + "id": 22, + "startPoint": 11, + "path": [ + "right" + ] + } + ] + }, + { + "levelId": 14, + "levelName": "第-986关", + "gridRows": 13, + "gridCols": 13, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 2, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 2, + "startPoint": 43, + "path": [ + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 3, + "startPoint": 57, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 4, + "startPoint": 165, + "path": [ + "left", + "left", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 5, + "startPoint": 148, + "path": [ + "left", + "left" + ] + }, + { + "id": 6, + "startPoint": 17, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 7, + "startPoint": 107, + "path": [ + "down", + "down" + ] + }, + { + "id": 8, + "startPoint": 117, + "path": [ + "up", + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 9, + "startPoint": 87, + "path": [ + "left", + "left", + "up" + ] + }, + { + "id": 10, + "startPoint": 19, + "path": [ + "left" + ] + }, + { + "id": 11, + "startPoint": 55, + "path": [ + "right" + ] + }, + { + "id": 12, + "startPoint": 122, + "path": [ + "up", + "up", + "right" + ] + }, + { + "id": 13, + "startPoint": 98, + "path": [ + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 14, + "startPoint": 21, + "path": [ + "up" + ] + }, + { + "id": 15, + "startPoint": 106, + "path": [ + "left", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 16, + "startPoint": 127, + "path": [ + "up" + ] + }, + { + "id": 17, + "startPoint": 80, + "path": [ + "down" + ] + }, + { + "id": 18, + "startPoint": 0, + "path": [ + "right" + ] + }, + { + "id": 19, + "startPoint": 36, + "path": [ + "up", + "up" + ] + }, + { + "id": 20, + "startPoint": 51, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 21, + "startPoint": 70, + "path": [ + "left", + "left" + ] + }, + { + "id": 22, + "startPoint": 79, + "path": [ + "up", + "up", + "right" + ] + }, + { + "id": 23, + "startPoint": 116, + "path": [ + "left" + ] + } + ] + }, + { + "levelId": 15, + "levelName": "第-985关", + "gridRows": 13, + "gridCols": 13, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 111, + "path": [ + "down", + "left" + ] + }, + { + "id": 2, + "startPoint": 63, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 3, + "startPoint": 92, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 4, + "startPoint": 9, + "path": [ + "left", + "left", + "left", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 5, + "startPoint": 99, + "path": [ + "down", + "right", + "right", + "right" + ] + }, + { + "id": 6, + "startPoint": 156, + "path": [ + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 7, + "startPoint": 121, + "path": [ + "down", + "down" + ] + }, + { + "id": 8, + "startPoint": 30, + "path": [ + "right" + ] + }, + { + "id": 9, + "startPoint": 89, + "path": [ + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 10, + "startPoint": 146, + "path": [ + "left", + "left" + ] + }, + { + "id": 11, + "startPoint": 41, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 12, + "startPoint": 120, + "path": [ + "left", + "left" + ] + }, + { + "id": 13, + "startPoint": 155, + "path": [ + "down" + ] + }, + { + "id": 14, + "startPoint": 51, + "path": [ + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 15, + "startPoint": 161, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 16, + "startPoint": 27, + "path": [ + "up", + "up" + ] + }, + { + "id": 17, + "startPoint": 21, + "path": [ + "down" + ] + }, + { + "id": 18, + "startPoint": 96, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 19, + "startPoint": 81, + "path": [ + "down", + "down" + ] + }, + { + "id": 20, + "startPoint": 23, + "path": [ + "down" + ] + }, + { + "id": 21, + "startPoint": 139, + "path": [ + "up" + ] + }, + { + "id": 22, + "startPoint": 166, + "path": [ + "right", + "up", + "up", + "up" + ] + }, + { + "id": 23, + "startPoint": 17, + "path": [ + "left" + ] + }, + { + "id": 24, + "startPoint": 57, + "path": [ + "down", + "down" + ] + } + ] + }, + { + "levelId": 16, + "levelName": "第-984关", + "gridRows": 13, + "gridCols": 13, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 36, + "path": [ + "up", + "up" + ] + }, + { + "id": 2, + "startPoint": 22, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 3, + "startPoint": 56, + "path": [ + "up", + "up", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 4, + "startPoint": 96, + "path": [ + "right", + "right" + ] + }, + { + "id": 5, + "startPoint": 76, + "path": [ + "up", + "left", + "down", + "down" + ] + }, + { + "id": 6, + "startPoint": 81, + "path": [ + "down", + "left", + "left" + ] + }, + { + "id": 7, + "startPoint": 118, + "path": [ + "left" + ] + }, + { + "id": 8, + "startPoint": 160, + "path": [ + "right", + "right" + ] + }, + { + "id": 9, + "startPoint": 131, + "path": [ + "left" + ] + }, + { + "id": 10, + "startPoint": 111, + "path": [ + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 11, + "startPoint": 112, + "path": [ + "up", + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 12, + "startPoint": 141, + "path": [ + "right" + ] + }, + { + "id": 13, + "startPoint": 150, + "path": [ + "up", + "up", + "left", + "left" + ] + }, + { + "id": 14, + "startPoint": 18, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 15, + "startPoint": 85, + "path": [ + "left" + ] + }, + { + "id": 16, + "startPoint": 4, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 17, + "startPoint": 103, + "path": [ + "down", + "down" + ] + }, + { + "id": 18, + "startPoint": 89, + "path": [ + "right" + ] + }, + { + "id": 19, + "startPoint": 157, + "path": [ + "up" + ] + }, + { + "id": 20, + "startPoint": 136, + "path": [ + "down" + ] + }, + { + "id": 21, + "startPoint": 70, + "path": [ + "down", + "left" + ] + }, + { + "id": 22, + "startPoint": 168, + "path": [ + "left", + "left", + "up", + "right", + "right" + ] + }, + { + "id": 23, + "startPoint": 11, + "path": [ + "right" + ] + } + ] + }, + { + "levelId": 17, + "levelName": "第-983关", + "gridRows": 13, + "gridCols": 13, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 101, + "path": [ + "right", + "right" + ] + }, + { + "id": 2, + "startPoint": 12, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 3, + "startPoint": 78, + "path": [ + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 4, + "startPoint": 24, + "path": [ + "left", + "down", + "down" + ] + }, + { + "id": 5, + "startPoint": 50, + "path": [ + "down", + "right" + ] + }, + { + "id": 6, + "startPoint": 98, + "path": [ + "right", + "right" + ] + }, + { + "id": 7, + "startPoint": 143, + "path": [ + "down" + ] + }, + { + "id": 8, + "startPoint": 44, + "path": [ + "left", + "up", + "up", + "up" + ] + }, + { + "id": 9, + "startPoint": 97, + "path": [ + "up", + "up" + ] + }, + { + "id": 10, + "startPoint": 33, + "path": [ + "down", + "down", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 11, + "startPoint": 69, + "path": [ + "right" + ] + }, + { + "id": 12, + "startPoint": 87, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 13, + "startPoint": 3, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 14, + "startPoint": 92, + "path": [ + "left" + ] + }, + { + "id": 15, + "startPoint": 139, + "path": [ + "up", + "up" + ] + }, + { + "id": 16, + "startPoint": 13, + "path": [ + "down", + "right", + "right" + ] + }, + { + "id": 17, + "startPoint": 129, + "path": [ + "left", + "down", + "right" + ] + }, + { + "id": 18, + "startPoint": 14, + "path": [ + "right", + "right" + ] + }, + { + "id": 19, + "startPoint": 114, + "path": [ + "right", + "right" + ] + }, + { + "id": 20, + "startPoint": 67, + "path": [ + "left", + "left" + ] + }, + { + "id": 21, + "startPoint": 160, + "path": [ + "right", + "right" + ] + }, + { + "id": 22, + "startPoint": 18, + "path": [ + "right", + "right" + ] + }, + { + "id": 23, + "startPoint": 154, + "path": [ + "down" + ] + }, + { + "id": 24, + "startPoint": 163, + "path": [ + "right", + "right", + "right" + ] + } + ] + }, + { + "levelId": 18, + "levelName": "第-982关", + "gridRows": 13, + "gridCols": 13, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 129, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 2, + "startPoint": 33, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 3, + "startPoint": 126, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 4, + "startPoint": 159, + "path": [ + "right", + "right" + ] + }, + { + "id": 5, + "startPoint": 59, + "path": [ + "up" + ] + }, + { + "id": 6, + "startPoint": 44, + "path": [ + "down", + "down", + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 7, + "startPoint": 138, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 8, + "startPoint": 166, + "path": [ + "right" + ] + }, + { + "id": 9, + "startPoint": 98, + "path": [ + "up", + "up" + ] + }, + { + "id": 10, + "startPoint": 42, + "path": [ + "left", + "left", + "up", + "up", + "up" + ] + }, + { + "id": 11, + "startPoint": 2, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 12, + "startPoint": 68, + "path": [ + "right", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 13, + "startPoint": 150, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 14, + "startPoint": 64, + "path": [ + "left", + "up", + "right" + ] + }, + { + "id": 15, + "startPoint": 120, + "path": [ + "up" + ] + }, + { + "id": 16, + "startPoint": 74, + "path": [ + "right", + "right", + "right", + "down", + "down" + ] + }, + { + "id": 17, + "startPoint": 149, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 18, + "startPoint": 66, + "path": [ + "up" + ] + }, + { + "id": 19, + "startPoint": 20, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 20, + "startPoint": 58, + "path": [ + "down", + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 21, + "startPoint": 127, + "path": [ + "right" + ] + }, + { + "id": 22, + "startPoint": 93, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 23, + "startPoint": 32, + "path": [ + "up" + ] + }, + { + "id": 24, + "startPoint": 55, + "path": [ + "left" + ] + }, + { + "id": 25, + "startPoint": 105, + "path": [ + "down", + "down", + "down", + "down" + ] + } + ] + }, + { + "levelId": 19, + "levelName": "第-981关", + "gridRows": 13, + "gridCols": 13, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 16, + "path": [ + "down", + "down", + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 2, + "startPoint": 22, + "path": [ + "right", + "right", + "up" + ] + }, + { + "id": 3, + "startPoint": 105, + "path": [ + "left" + ] + }, + { + "id": 4, + "startPoint": 41, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 5, + "startPoint": 137, + "path": [ + "up", + "up" + ] + }, + { + "id": 6, + "startPoint": 151, + "path": [ + "down" + ] + }, + { + "id": 7, + "startPoint": 65, + "path": [ + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 8, + "startPoint": 99, + "path": [ + "up", + "right", + "right", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 9, + "startPoint": 108, + "path": [ + "down", + "down", + "down", + "left", + "left", + "left" + ] + }, + { + "id": 10, + "startPoint": 159, + "path": [ + "left" + ] + }, + { + "id": 11, + "startPoint": 91, + "path": [ + "up" + ] + }, + { + "id": 12, + "startPoint": 148, + "path": [ + "down" + ] + }, + { + "id": 13, + "startPoint": 14, + "path": [ + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 14, + "startPoint": 84, + "path": [ + "left", + "left" + ] + }, + { + "id": 15, + "startPoint": 141, + "path": [ + "right" + ] + }, + { + "id": 16, + "startPoint": 31, + "path": [ + "up", + "up" + ] + }, + { + "id": 17, + "startPoint": 133, + "path": [ + "left", + "left" + ] + }, + { + "id": 18, + "startPoint": 77, + "path": [ + "left", + "left", + "left", + "up" + ] + }, + { + "id": 19, + "startPoint": 117, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 20, + "startPoint": 45, + "path": [ + "down", + "right", + "right" + ] + }, + { + "id": 21, + "startPoint": 152, + "path": [ + "down" + ] + }, + { + "id": 22, + "startPoint": 34, + "path": [ + "right", + "right", + "right", + "right", + "up", + "up" + ] + }, + { + "id": 23, + "startPoint": 85, + "path": [ + "up" + ] + }, + { + "id": 24, + "startPoint": 57, + "path": [ + "left" + ] + }, + { + "id": 25, + "startPoint": 92, + "path": [ + "right" + ] + }, + { + "id": 26, + "startPoint": 96, + "path": [ + "down", + "down", + "down" + ] + } + ] + }, + { + "levelId": 20, + "levelName": "第-980关", + "gridRows": 13, + "gridCols": 13, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 159, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 2, + "startPoint": 158, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 3, + "startPoint": 43, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 4, + "startPoint": 63, + "path": [ + "right" + ] + }, + { + "id": 5, + "startPoint": 9, + "path": [ + "right", + "down", + "left" + ] + }, + { + "id": 6, + "startPoint": 29, + "path": [ + "up", + "left", + "left" + ] + }, + { + "id": 7, + "startPoint": 87, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 8, + "startPoint": 67, + "path": [ + "up" + ] + }, + { + "id": 9, + "startPoint": 166, + "path": [ + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 10, + "startPoint": 150, + "path": [ + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 11, + "startPoint": 45, + "path": [ + "left" + ] + }, + { + "id": 12, + "startPoint": 112, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 13, + "startPoint": 74, + "path": [ + "up", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 14, + "startPoint": 31, + "path": [ + "right", + "right", + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 15, + "startPoint": 8, + "path": [ + "left", + "left", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 16, + "startPoint": 70, + "path": [ + "down", + "down" + ] + }, + { + "id": 17, + "startPoint": 130, + "path": [ + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 18, + "startPoint": 92, + "path": [ + "up", + "right", + "right", + "right" + ] + }, + { + "id": 19, + "startPoint": 84, + "path": [ + "up" + ] + }, + { + "id": 20, + "startPoint": 100, + "path": [ + "left" + ] + }, + { + "id": 21, + "startPoint": 62, + "path": [ + "up" + ] + }, + { + "id": 22, + "startPoint": 76, + "path": [ + "right" + ] + }, + { + "id": 23, + "startPoint": 134, + "path": [ + "right", + "right" + ] + }, + { + "id": 24, + "startPoint": 103, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 25, + "startPoint": 110, + "path": [ + "up" + ] + }, + { + "id": 26, + "startPoint": 126, + "path": [ + "up" + ] + }, + { + "id": 27, + "startPoint": 95, + "path": [ + "down", + "down" + ] + } + ] + }, + { + "levelId": 21, + "levelName": "第-979关", + "gridRows": 13, + "gridCols": 13, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 152, + "path": [ + "right", + "down" + ] + }, + { + "id": 2, + "startPoint": 54, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 3, + "startPoint": 85, + "path": [ + "left", + "left", + "down", + "down", + "down", + "right" + ] + }, + { + "id": 4, + "startPoint": 26, + "path": [ + "up", + "up" + ] + }, + { + "id": 5, + "startPoint": 105, + "path": [ + "left", + "up", + "up" + ] + }, + { + "id": 6, + "startPoint": 64, + "path": [ + "left", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 7, + "startPoint": 97, + "path": [ + "down" + ] + }, + { + "id": 8, + "startPoint": 75, + "path": [ + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 9, + "startPoint": 38, + "path": [ + "down" + ] + }, + { + "id": 10, + "startPoint": 22, + "path": [ + "right" + ] + }, + { + "id": 11, + "startPoint": 61, + "path": [ + "right", + "up", + "up" + ] + }, + { + "id": 12, + "startPoint": 134, + "path": [ + "down", + "down" + ] + }, + { + "id": 13, + "startPoint": 6, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 14, + "startPoint": 20, + "path": [ + "up" + ] + }, + { + "id": 15, + "startPoint": 99, + "path": [ + "right", + "up", + "up" + ] + }, + { + "id": 16, + "startPoint": 42, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 17, + "startPoint": 56, + "path": [ + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 18, + "startPoint": 47, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 19, + "startPoint": 90, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 20, + "startPoint": 53, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 21, + "startPoint": 44, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 22, + "startPoint": 112, + "path": [ + "down", + "down", + "down", + "left", + "left" + ] + }, + { + "id": 23, + "startPoint": 59, + "path": [ + "up", + "up" + ] + }, + { + "id": 24, + "startPoint": 118, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 25, + "startPoint": 57, + "path": [ + "down" + ] + }, + { + "id": 26, + "startPoint": 137, + "path": [ + "left", + "left" + ] + }, + { + "id": 27, + "startPoint": 25, + "path": [ + "up" + ] + }, + { + "id": 28, + "startPoint": 126, + "path": [ + "up" + ] + } + ] + }, + { + "levelId": 22, + "levelName": "第-978关", + "gridRows": 13, + "gridCols": 13, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 44, + "path": [ + "down", + "down" + ] + }, + { + "id": 2, + "startPoint": 73, + "path": [ + "up", + "up" + ] + }, + { + "id": 3, + "startPoint": 148, + "path": [ + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 4, + "startPoint": 152, + "path": [ + "down" + ] + }, + { + "id": 5, + "startPoint": 32, + "path": [ + "left", + "up", + "up" + ] + }, + { + "id": 6, + "startPoint": 45, + "path": [ + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 7, + "startPoint": 11, + "path": [ + "right" + ] + }, + { + "id": 8, + "startPoint": 89, + "path": [ + "down", + "down", + "right" + ] + }, + { + "id": 9, + "startPoint": 79, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 10, + "startPoint": 14, + "path": [ + "left" + ] + }, + { + "id": 11, + "startPoint": 69, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 12, + "startPoint": 124, + "path": [ + "up", + "right", + "right", + "right" + ] + }, + { + "id": 13, + "startPoint": 63, + "path": [ + "left", + "up", + "up", + "right" + ] + }, + { + "id": 14, + "startPoint": 149, + "path": [ + "right", + "right" + ] + }, + { + "id": 15, + "startPoint": 108, + "path": [ + "right" + ] + }, + { + "id": 16, + "startPoint": 55, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 17, + "startPoint": 85, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 18, + "startPoint": 1, + "path": [ + "left" + ] + }, + { + "id": 19, + "startPoint": 100, + "path": [ + "left", + "left" + ] + }, + { + "id": 20, + "startPoint": 30, + "path": [ + "up", + "up" + ] + }, + { + "id": 21, + "startPoint": 131, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 22, + "startPoint": 61, + "path": [ + "up", + "up", + "up", + "up", + "left" + ] + }, + { + "id": 23, + "startPoint": 126, + "path": [ + "left" + ] + }, + { + "id": 24, + "startPoint": 133, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 25, + "startPoint": 50, + "path": [ + "right" + ] + }, + { + "id": 26, + "startPoint": 162, + "path": [ + "right" + ] + }, + { + "id": 27, + "startPoint": 104, + "path": [ + "down", + "down" + ] + }, + { + "id": 28, + "startPoint": 95, + "path": [ + "left", + "left" + ] + }, + { + "id": 29, + "startPoint": 139, + "path": [ + "right", + "right", + "right" + ] + } + ] + }, + { + "levelId": 23, + "levelName": "第-977关", + "gridRows": 13, + "gridCols": 13, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 139, + "path": [ + "up", + "up", + "up", + "up", + "up", + "up", + "right" + ] + }, + { + "id": 2, + "startPoint": 89, + "path": [ + "left" + ] + }, + { + "id": 3, + "startPoint": 66, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 4, + "startPoint": 7, + "path": [ + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 5, + "startPoint": 63, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 6, + "startPoint": 136, + "path": [ + "down", + "down" + ] + }, + { + "id": 7, + "startPoint": 17, + "path": [ + "right", + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 8, + "startPoint": 97, + "path": [ + "down", + "down" + ] + }, + { + "id": 9, + "startPoint": 134, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 10, + "startPoint": 147, + "path": [ + "down", + "left", + "left", + "left" + ] + }, + { + "id": 11, + "startPoint": 150, + "path": [ + "down" + ] + }, + { + "id": 12, + "startPoint": 69, + "path": [ + "down", + "right", + "right", + "right", + "down", + "down", + "down" + ] + }, + { + "id": 13, + "startPoint": 35, + "path": [ + "right" + ] + }, + { + "id": 14, + "startPoint": 132, + "path": [ + "up" + ] + }, + { + "id": 15, + "startPoint": 130, + "path": [ + "right" + ] + }, + { + "id": 16, + "startPoint": 128, + "path": [ + "up", + "up" + ] + }, + { + "id": 17, + "startPoint": 104, + "path": [ + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 18, + "startPoint": 59, + "path": [ + "left", + "left", + "down" + ] + }, + { + "id": 19, + "startPoint": 64, + "path": [ + "down", + "down" + ] + }, + { + "id": 20, + "startPoint": 144, + "path": [ + "left" + ] + }, + { + "id": 21, + "startPoint": 28, + "path": [ + "left" + ] + }, + { + "id": 22, + "startPoint": 8, + "path": [ + "right", + "right" + ] + }, + { + "id": 23, + "startPoint": 38, + "path": [ + "up", + "up" + ] + }, + { + "id": 24, + "startPoint": 129, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 25, + "startPoint": 120, + "path": [ + "down", + "down" + ] + }, + { + "id": 26, + "startPoint": 93, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 27, + "startPoint": 114, + "path": [ + "down", + "down", + "right" + ] + }, + { + "id": 28, + "startPoint": 122, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 29, + "startPoint": 47, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 30, + "startPoint": 166, + "path": [ + "up" + ] + } + ] + }, + { + "levelId": 24, + "levelName": "第-976关", + "gridRows": 13, + "gridCols": 13, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 22, + "path": [ + "up" + ] + }, + { + "id": 2, + "startPoint": 145, + "path": [ + "down" + ] + }, + { + "id": 3, + "startPoint": 66, + "path": [ + "up", + "up" + ] + }, + { + "id": 4, + "startPoint": 6, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 5, + "startPoint": 142, + "path": [ + "down" + ] + }, + { + "id": 6, + "startPoint": 138, + "path": [ + "up", + "up", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 7, + "startPoint": 44, + "path": [ + "up", + "up" + ] + }, + { + "id": 8, + "startPoint": 26, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 9, + "startPoint": 159, + "path": [ + "up", + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 10, + "startPoint": 105, + "path": [ + "up", + "up" + ] + }, + { + "id": 11, + "startPoint": 50, + "path": [ + "right", + "up", + "up", + "up" + ] + }, + { + "id": 12, + "startPoint": 162, + "path": [ + "left", + "left" + ] + }, + { + "id": 13, + "startPoint": 30, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 14, + "startPoint": 49, + "path": [ + "down", + "right", + "right" + ] + }, + { + "id": 15, + "startPoint": 72, + "path": [ + "up", + "left", + "up" + ] + }, + { + "id": 16, + "startPoint": 164, + "path": [ + "up" + ] + }, + { + "id": 17, + "startPoint": 152, + "path": [ + "right", + "down", + "right", + "right" + ] + }, + { + "id": 18, + "startPoint": 73, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 19, + "startPoint": 135, + "path": [ + "up", + "up", + "left" + ] + }, + { + "id": 20, + "startPoint": 131, + "path": [ + "right" + ] + }, + { + "id": 21, + "startPoint": 77, + "path": [ + "down", + "down" + ] + }, + { + "id": 22, + "startPoint": 11, + "path": [ + "left" + ] + }, + { + "id": 23, + "startPoint": 83, + "path": [ + "left" + ] + }, + { + "id": 24, + "startPoint": 85, + "path": [ + "right", + "right" + ] + }, + { + "id": 25, + "startPoint": 101, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 26, + "startPoint": 154, + "path": [ + "up", + "up" + ] + }, + { + "id": 27, + "startPoint": 88, + "path": [ + "right" + ] + }, + { + "id": 28, + "startPoint": 97, + "path": [ + "left", + "left" + ] + }, + { + "id": 29, + "startPoint": 126, + "path": [ + "down" + ] + }, + { + "id": 30, + "startPoint": 74, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 31, + "startPoint": 28, + "path": [ + "up" + ] + } + ] + }, + { + "levelId": 25, + "levelName": "第-975关", + "gridRows": 13, + "gridCols": 13, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 34, + "path": [ + "down", + "left", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 2, + "startPoint": 22, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 3, + "startPoint": 36, + "path": [ + "left" + ] + }, + { + "id": 4, + "startPoint": 16, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 5, + "startPoint": 71, + "path": [ + "right", + "down", + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 6, + "startPoint": 51, + "path": [ + "up" + ] + }, + { + "id": 7, + "startPoint": 152, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 8, + "startPoint": 70, + "path": [ + "left", + "down", + "down", + "down", + "down", + "left" + ] + }, + { + "id": 9, + "startPoint": 57, + "path": [ + "right", + "right" + ] + }, + { + "id": 10, + "startPoint": 144, + "path": [ + "left", + "up", + "up" + ] + }, + { + "id": 11, + "startPoint": 135, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 12, + "startPoint": 141, + "path": [ + "left" + ] + }, + { + "id": 13, + "startPoint": 97, + "path": [ + "left" + ] + }, + { + "id": 14, + "startPoint": 101, + "path": [ + "right", + "right" + ] + }, + { + "id": 15, + "startPoint": 77, + "path": [ + "left" + ] + }, + { + "id": 16, + "startPoint": 151, + "path": [ + "down" + ] + }, + { + "id": 17, + "startPoint": 18, + "path": [ + "up" + ] + }, + { + "id": 18, + "startPoint": 53, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 19, + "startPoint": 146, + "path": [ + "right", + "right" + ] + }, + { + "id": 20, + "startPoint": 78, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 21, + "startPoint": 119, + "path": [ + "up", + "left", + "left" + ] + }, + { + "id": 22, + "startPoint": 19, + "path": [ + "down", + "left", + "left", + "left" + ] + }, + { + "id": 23, + "startPoint": 21, + "path": [ + "up" + ] + }, + { + "id": 24, + "startPoint": 142, + "path": [ + "up", + "left", + "left" + ] + }, + { + "id": 25, + "startPoint": 67, + "path": [ + "left" + ] + }, + { + "id": 26, + "startPoint": 166, + "path": [ + "up" + ] + }, + { + "id": 27, + "startPoint": 10, + "path": [ + "right", + "right" + ] + }, + { + "id": 28, + "startPoint": 94, + "path": [ + "down" + ] + }, + { + "id": 29, + "startPoint": 163, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 30, + "startPoint": 3, + "path": [ + "right" + ] + }, + { + "id": 31, + "startPoint": 74, + "path": [ + "up", + "up" + ] + }, + { + "id": 32, + "startPoint": 62, + "path": [ + "up" + ] + } + ] + }, + { + "levelId": 26, + "levelName": "第-974关", + "gridRows": 14, + "gridCols": 14, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 119, + "path": [ + "left", + "left", + "left", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 2, + "startPoint": 71, + "path": [ + "down", + "down", + "down", + "right", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 3, + "startPoint": 120, + "path": [ + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 4, + "startPoint": 6, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 5, + "startPoint": 48, + "path": [ + "right", + "right" + ] + }, + { + "id": 6, + "startPoint": 138, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 7, + "startPoint": 59, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 8, + "startPoint": 162, + "path": [ + "down", + "down" + ] + }, + { + "id": 9, + "startPoint": 135, + "path": [ + "left", + "down" + ] + }, + { + "id": 10, + "startPoint": 179, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 11, + "startPoint": 167, + "path": [ + "up", + "up" + ] + }, + { + "id": 12, + "startPoint": 130, + "path": [ + "left" + ] + }, + { + "id": 13, + "startPoint": 28, + "path": [ + "right", + "right" + ] + }, + { + "id": 14, + "startPoint": 155, + "path": [ + "down", + "down", + "left" + ] + }, + { + "id": 15, + "startPoint": 35, + "path": [ + "up" + ] + }, + { + "id": 16, + "startPoint": 186, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 17, + "startPoint": 1, + "path": [ + "right" + ] + }, + { + "id": 18, + "startPoint": 68, + "path": [ + "left", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 19, + "startPoint": 51, + "path": [ + "up", + "up" + ] + }, + { + "id": 20, + "startPoint": 157, + "path": [ + "down", + "down" + ] + }, + { + "id": 21, + "startPoint": 75, + "path": [ + "down" + ] + }, + { + "id": 22, + "startPoint": 175, + "path": [ + "left", + "up", + "up", + "up" + ] + }, + { + "id": 23, + "startPoint": 79, + "path": [ + "down", + "down" + ] + }, + { + "id": 24, + "startPoint": 105, + "path": [ + "right", + "up", + "up" + ] + }, + { + "id": 25, + "startPoint": 87, + "path": [ + "up" + ] + } + ] + }, + { + "levelId": 27, + "levelName": "第-973关", + "gridRows": 14, + "gridCols": 14, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 29, + "path": [ + "left" + ] + }, + { + "id": 2, + "startPoint": 127, + "path": [ + "down", + "down" + ] + }, + { + "id": 3, + "startPoint": 88, + "path": [ + "down", + "right", + "right", + "right", + "right", + "right", + "down", + "down" + ] + }, + { + "id": 4, + "startPoint": 81, + "path": [ + "down", + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 5, + "startPoint": 186, + "path": [ + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 6, + "startPoint": 20, + "path": [ + "up" + ] + }, + { + "id": 7, + "startPoint": 17, + "path": [ + "up", + "right", + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 8, + "startPoint": 64, + "path": [ + "up", + "up" + ] + }, + { + "id": 9, + "startPoint": 62, + "path": [ + "down", + "down", + "left" + ] + }, + { + "id": 10, + "startPoint": 176, + "path": [ + "left", + "left", + "left", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 11, + "startPoint": 77, + "path": [ + "down" + ] + }, + { + "id": 12, + "startPoint": 85, + "path": [ + "up", + "up" + ] + }, + { + "id": 13, + "startPoint": 94, + "path": [ + "up" + ] + }, + { + "id": 14, + "startPoint": 25, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 15, + "startPoint": 152, + "path": [ + "down", + "down" + ] + }, + { + "id": 16, + "startPoint": 30, + "path": [ + "right" + ] + }, + { + "id": 17, + "startPoint": 163, + "path": [ + "down" + ] + }, + { + "id": 18, + "startPoint": 83, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 19, + "startPoint": 98, + "path": [ + "up" + ] + }, + { + "id": 20, + "startPoint": 132, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 21, + "startPoint": 134, + "path": [ + "left" + ] + }, + { + "id": 22, + "startPoint": 150, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 23, + "startPoint": 49, + "path": [ + "left", + "left" + ] + }, + { + "id": 24, + "startPoint": 111, + "path": [ + "up" + ] + }, + { + "id": 25, + "startPoint": 100, + "path": [ + "left", + "down" + ] + }, + { + "id": 26, + "startPoint": 58, + "path": [ + "right" + ] + } + ] + }, + { + "levelId": 28, + "levelName": "第-972关", + "gridRows": 14, + "gridCols": 14, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 88, + "path": [ + "down", + "down" + ] + }, + { + "id": 2, + "startPoint": 23, + "path": [ + "down", + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 3, + "startPoint": 156, + "path": [ + "left", + "left" + ] + }, + { + "id": 4, + "startPoint": 178, + "path": [ + "down" + ] + }, + { + "id": 5, + "startPoint": 49, + "path": [ + "left", + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 6, + "startPoint": 130, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 7, + "startPoint": 143, + "path": [ + "right", + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 8, + "startPoint": 4, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 9, + "startPoint": 152, + "path": [ + "up", + "up", + "up", + "right" + ] + }, + { + "id": 10, + "startPoint": 100, + "path": [ + "left", + "left" + ] + }, + { + "id": 11, + "startPoint": 78, + "path": [ + "left" + ] + }, + { + "id": 12, + "startPoint": 22, + "path": [ + "left", + "left", + "down" + ] + }, + { + "id": 13, + "startPoint": 177, + "path": [ + "down" + ] + }, + { + "id": 14, + "startPoint": 3, + "path": [ + "down", + "down", + "down", + "down", + "left" + ] + }, + { + "id": 15, + "startPoint": 113, + "path": [ + "down", + "down" + ] + }, + { + "id": 16, + "startPoint": 179, + "path": [ + "right", + "right", + "down" + ] + }, + { + "id": 17, + "startPoint": 2, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 18, + "startPoint": 171, + "path": [ + "up" + ] + }, + { + "id": 19, + "startPoint": 112, + "path": [ + "down", + "down" + ] + }, + { + "id": 20, + "startPoint": 1, + "path": [ + "down", + "down", + "down", + "down", + "left" + ] + }, + { + "id": 21, + "startPoint": 68, + "path": [ + "down", + "down" + ] + }, + { + "id": 22, + "startPoint": 162, + "path": [ + "right", + "right", + "right", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 23, + "startPoint": 14, + "path": [ + "up" + ] + }, + { + "id": 24, + "startPoint": 174, + "path": [ + "down" + ] + }, + { + "id": 25, + "startPoint": 169, + "path": [ + "down" + ] + }, + { + "id": 26, + "startPoint": 121, + "path": [ + "right" + ] + }, + { + "id": 27, + "startPoint": 120, + "path": [ + "down", + "right", + "right" + ] + } + ] + }, + { + "levelId": 29, + "levelName": "第-971关", + "gridRows": 14, + "gridCols": 14, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 158, + "path": [ + "down", + "down" + ] + }, + { + "id": 2, + "startPoint": 75, + "path": [ + "down", + "down", + "down", + "down", + "right", + "right", + "right" + ] + }, + { + "id": 3, + "startPoint": 142, + "path": [ + "up", + "left", + "left" + ] + }, + { + "id": 4, + "startPoint": 85, + "path": [ + "right", + "right", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 5, + "startPoint": 171, + "path": [ + "up", + "up", + "up", + "right" + ] + }, + { + "id": 6, + "startPoint": 105, + "path": [ + "down" + ] + }, + { + "id": 7, + "startPoint": 64, + "path": [ + "left", + "left", + "down", + "down", + "down" + ] + }, + { + "id": 8, + "startPoint": 170, + "path": [ + "left", + "left", + "up", + "up" + ] + }, + { + "id": 9, + "startPoint": 46, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 10, + "startPoint": 50, + "path": [ + "left", + "up", + "up", + "up" + ] + }, + { + "id": 11, + "startPoint": 145, + "path": [ + "right", + "right", + "right", + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 12, + "startPoint": 30, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 13, + "startPoint": 180, + "path": [ + "right" + ] + }, + { + "id": 14, + "startPoint": 106, + "path": [ + "down" + ] + }, + { + "id": 15, + "startPoint": 165, + "path": [ + "left", + "left" + ] + }, + { + "id": 16, + "startPoint": 68, + "path": [ + "up", + "right" + ] + }, + { + "id": 17, + "startPoint": 8, + "path": [ + "down", + "down", + "right", + "up", + "up" + ] + }, + { + "id": 18, + "startPoint": 80, + "path": [ + "up", + "left" + ] + }, + { + "id": 19, + "startPoint": 139, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 20, + "startPoint": 77, + "path": [ + "right", + "right" + ] + }, + { + "id": 21, + "startPoint": 177, + "path": [ + "down" + ] + }, + { + "id": 22, + "startPoint": 155, + "path": [ + "up" + ] + }, + { + "id": 23, + "startPoint": 25, + "path": [ + "left" + ] + }, + { + "id": 24, + "startPoint": 113, + "path": [ + "left" + ] + }, + { + "id": 25, + "startPoint": 162, + "path": [ + "down", + "down" + ] + }, + { + "id": 26, + "startPoint": 33, + "path": [ + "down", + "down" + ] + }, + { + "id": 27, + "startPoint": 81, + "path": [ + "up", + "up" + ] + }, + { + "id": 28, + "startPoint": 10, + "path": [ + "right", + "right", + "right" + ] + } + ] + }, + { + "levelId": 30, + "levelName": "第-970关", + "gridRows": 14, + "gridCols": 14, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 42, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 2, + "startPoint": 184, + "path": [ + "left", + "left" + ] + }, + { + "id": 3, + "startPoint": 31, + "path": [ + "up", + "up" + ] + }, + { + "id": 4, + "startPoint": 61, + "path": [ + "down", + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 5, + "startPoint": 63, + "path": [ + "up", + "right", + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 6, + "startPoint": 78, + "path": [ + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 7, + "startPoint": 57, + "path": [ + "up", + "up", + "right" + ] + }, + { + "id": 8, + "startPoint": 140, + "path": [ + "down", + "down" + ] + }, + { + "id": 9, + "startPoint": 161, + "path": [ + "right", + "down", + "down" + ] + }, + { + "id": 10, + "startPoint": 107, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 11, + "startPoint": 67, + "path": [ + "left" + ] + }, + { + "id": 12, + "startPoint": 100, + "path": [ + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 13, + "startPoint": 39, + "path": [ + "up", + "up" + ] + }, + { + "id": 14, + "startPoint": 180, + "path": [ + "right" + ] + }, + { + "id": 15, + "startPoint": 139, + "path": [ + "down", + "down" + ] + }, + { + "id": 16, + "startPoint": 125, + "path": [ + "left", + "up", + "up" + ] + }, + { + "id": 17, + "startPoint": 68, + "path": [ + "right" + ] + }, + { + "id": 18, + "startPoint": 160, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 19, + "startPoint": 18, + "path": [ + "down" + ] + }, + { + "id": 20, + "startPoint": 37, + "path": [ + "right" + ] + }, + { + "id": 21, + "startPoint": 189, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 22, + "startPoint": 127, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 23, + "startPoint": 123, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 24, + "startPoint": 148, + "path": [ + "left" + ] + }, + { + "id": 25, + "startPoint": 112, + "path": [ + "down" + ] + }, + { + "id": 26, + "startPoint": 41, + "path": [ + "up", + "up" + ] + }, + { + "id": 27, + "startPoint": 73, + "path": [ + "down", + "down" + ] + }, + { + "id": 28, + "startPoint": 138, + "path": [ + "down", + "down" + ] + }, + { + "id": 29, + "startPoint": 119, + "path": [ + "up", + "up", + "up" + ] + } + ] + }, + { + "levelId": 31, + "levelName": "第-969关", + "gridRows": 14, + "gridCols": 14, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 66, + "path": [ + "right", + "up", + "up", + "up" + ] + }, + { + "id": 2, + "startPoint": 108, + "path": [ + "down", + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 3, + "startPoint": 47, + "path": [ + "up", + "up" + ] + }, + { + "id": 4, + "startPoint": 62, + "path": [ + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 5, + "startPoint": 100, + "path": [ + "left", + "down", + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 6, + "startPoint": 106, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 7, + "startPoint": 54, + "path": [ + "down", + "down", + "left", + "left" + ] + }, + { + "id": 8, + "startPoint": 116, + "path": [ + "left", + "down", + "down" + ] + }, + { + "id": 9, + "startPoint": 74, + "path": [ + "down", + "down", + "right", + "up", + "up" + ] + }, + { + "id": 10, + "startPoint": 16, + "path": [ + "down", + "down" + ] + }, + { + "id": 11, + "startPoint": 134, + "path": [ + "up" + ] + }, + { + "id": 12, + "startPoint": 26, + "path": [ + "right" + ] + }, + { + "id": 13, + "startPoint": 123, + "path": [ + "right", + "up", + "up", + "left", + "left" + ] + }, + { + "id": 14, + "startPoint": 188, + "path": [ + "up", + "right", + "right", + "down" + ] + }, + { + "id": 15, + "startPoint": 83, + "path": [ + "down" + ] + }, + { + "id": 16, + "startPoint": 172, + "path": [ + "down" + ] + }, + { + "id": 17, + "startPoint": 4, + "path": [ + "right", + "right", + "right", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 18, + "startPoint": 167, + "path": [ + "left", + "left" + ] + }, + { + "id": 19, + "startPoint": 14, + "path": [ + "up" + ] + }, + { + "id": 20, + "startPoint": 152, + "path": [ + "left" + ] + }, + { + "id": 21, + "startPoint": 40, + "path": [ + "right" + ] + }, + { + "id": 22, + "startPoint": 160, + "path": [ + "left", + "left", + "left", + "left", + "down", + "down" + ] + }, + { + "id": 23, + "startPoint": 45, + "path": [ + "right" + ] + }, + { + "id": 24, + "startPoint": 73, + "path": [ + "down", + "left", + "left", + "left", + "up", + "up", + "up" + ] + }, + { + "id": 25, + "startPoint": 17, + "path": [ + "right" + ] + }, + { + "id": 26, + "startPoint": 91, + "path": [ + "down", + "down" + ] + }, + { + "id": 27, + "startPoint": 146, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 28, + "startPoint": 38, + "path": [ + "left", + "left" + ] + }, + { + "id": 29, + "startPoint": 163, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 30, + "startPoint": 162, + "path": [ + "left" + ] + } + ] + }, + { + "levelId": 32, + "levelName": "第-968关", + "gridRows": 14, + "gridCols": 14, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 163, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 2, + "startPoint": 30, + "path": [ + "up", + "up" + ] + }, + { + "id": 3, + "startPoint": 169, + "path": [ + "down" + ] + }, + { + "id": 4, + "startPoint": 82, + "path": [ + "left", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 5, + "startPoint": 124, + "path": [ + "down", + "down" + ] + }, + { + "id": 6, + "startPoint": 157, + "path": [ + "down", + "down" + ] + }, + { + "id": 7, + "startPoint": 90, + "path": [ + "down", + "down" + ] + }, + { + "id": 8, + "startPoint": 110, + "path": [ + "right", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 9, + "startPoint": 74, + "path": [ + "down", + "down" + ] + }, + { + "id": 10, + "startPoint": 50, + "path": [ + "up", + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 11, + "startPoint": 121, + "path": [ + "right", + "right", + "up" + ] + }, + { + "id": 12, + "startPoint": 101, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 13, + "startPoint": 61, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 14, + "startPoint": 136, + "path": [ + "right" + ] + }, + { + "id": 15, + "startPoint": 145, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 16, + "startPoint": 193, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 17, + "startPoint": 21, + "path": [ + "up" + ] + }, + { + "id": 18, + "startPoint": 84, + "path": [ + "right", + "down", + "right" + ] + }, + { + "id": 19, + "startPoint": 154, + "path": [ + "down", + "down" + ] + }, + { + "id": 20, + "startPoint": 189, + "path": [ + "left" + ] + }, + { + "id": 21, + "startPoint": 12, + "path": [ + "down" + ] + }, + { + "id": 22, + "startPoint": 27, + "path": [ + "up" + ] + }, + { + "id": 23, + "startPoint": 105, + "path": [ + "up" + ] + }, + { + "id": 24, + "startPoint": 42, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 25, + "startPoint": 103, + "path": [ + "up", + "up" + ] + }, + { + "id": 26, + "startPoint": 34, + "path": [ + "down", + "down", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 27, + "startPoint": 72, + "path": [ + "left", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 28, + "startPoint": 147, + "path": [ + "up", + "right", + "down", + "down", + "down" + ] + }, + { + "id": 29, + "startPoint": 18, + "path": [ + "up" + ] + }, + { + "id": 30, + "startPoint": 69, + "path": [ + "up" + ] + }, + { + "id": 31, + "startPoint": 141, + "path": [ + "up", + "up" + ] + } + ] + }, + { + "levelId": 33, + "levelName": "第-967关", + "gridRows": 14, + "gridCols": 14, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 177, + "path": [ + "right", + "down" + ] + }, + { + "id": 2, + "startPoint": 55, + "path": [ + "left", + "up", + "up" + ] + }, + { + "id": 3, + "startPoint": 77, + "path": [ + "left", + "up" + ] + }, + { + "id": 4, + "startPoint": 127, + "path": [ + "up", + "left", + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 5, + "startPoint": 79, + "path": [ + "up", + "up", + "up", + "right", + "right" + ] + }, + { + "id": 6, + "startPoint": 42, + "path": [ + "right", + "right", + "right", + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 7, + "startPoint": 7, + "path": [ + "left", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 8, + "startPoint": 91, + "path": [ + "left", + "left", + "up", + "up" + ] + }, + { + "id": 9, + "startPoint": 36, + "path": [ + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 10, + "startPoint": 9, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 11, + "startPoint": 185, + "path": [ + "left", + "left" + ] + }, + { + "id": 12, + "startPoint": 117, + "path": [ + "right", + "right", + "right", + "right", + "right", + "right", + "right", + "down" + ] + }, + { + "id": 13, + "startPoint": 181, + "path": [ + "down" + ] + }, + { + "id": 14, + "startPoint": 144, + "path": [ + "down", + "down" + ] + }, + { + "id": 15, + "startPoint": 57, + "path": [ + "left" + ] + }, + { + "id": 16, + "startPoint": 74, + "path": [ + "up" + ] + }, + { + "id": 17, + "startPoint": 194, + "path": [ + "left" + ] + }, + { + "id": 18, + "startPoint": 131, + "path": [ + "right", + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 19, + "startPoint": 174, + "path": [ + "left" + ] + }, + { + "id": 20, + "startPoint": 67, + "path": [ + "up" + ] + }, + { + "id": 21, + "startPoint": 142, + "path": [ + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 22, + "startPoint": 111, + "path": [ + "up", + "left", + "left", + "left", + "down" + ] + }, + { + "id": 23, + "startPoint": 85, + "path": [ + "left" + ] + }, + { + "id": 24, + "startPoint": 58, + "path": [ + "right" + ] + }, + { + "id": 25, + "startPoint": 18, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 26, + "startPoint": 110, + "path": [ + "left" + ] + }, + { + "id": 27, + "startPoint": 175, + "path": [ + "up", + "left" + ] + }, + { + "id": 28, + "startPoint": 52, + "path": [ + "down", + "down" + ] + }, + { + "id": 29, + "startPoint": 153, + "path": [ + "down" + ] + }, + { + "id": 30, + "startPoint": 165, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 31, + "startPoint": 30, + "path": [ + "left", + "left" + ] + }, + { + "id": 32, + "startPoint": 116, + "path": [ + "down" + ] + } + ] + }, + { + "levelId": 34, + "levelName": "第-966关", + "gridRows": 14, + "gridCols": 14, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 74, + "path": [ + "left", + "up", + "up" + ] + }, + { + "id": 2, + "startPoint": 40, + "path": [ + "down", + "right" + ] + }, + { + "id": 3, + "startPoint": 177, + "path": [ + "down" + ] + }, + { + "id": 4, + "startPoint": 98, + "path": [ + "up" + ] + }, + { + "id": 5, + "startPoint": 121, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 6, + "startPoint": 65, + "path": [ + "left", + "down", + "down", + "down", + "down", + "down", + "right", + "right" + ] + }, + { + "id": 7, + "startPoint": 153, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 8, + "startPoint": 161, + "path": [ + "down", + "down" + ] + }, + { + "id": 9, + "startPoint": 87, + "path": [ + "right", + "right", + "right", + "right", + "down", + "left" + ] + }, + { + "id": 10, + "startPoint": 46, + "path": [ + "down" + ] + }, + { + "id": 11, + "startPoint": 174, + "path": [ + "down" + ] + }, + { + "id": 12, + "startPoint": 185, + "path": [ + "right", + "right" + ] + }, + { + "id": 13, + "startPoint": 159, + "path": [ + "up", + "up", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 14, + "startPoint": 151, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 15, + "startPoint": 171, + "path": [ + "right", + "right" + ] + }, + { + "id": 16, + "startPoint": 96, + "path": [ + "down" + ] + }, + { + "id": 17, + "startPoint": 67, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 18, + "startPoint": 58, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 19, + "startPoint": 117, + "path": [ + "left", + "left", + "left", + "up", + "up" + ] + }, + { + "id": 20, + "startPoint": 113, + "path": [ + "up" + ] + }, + { + "id": 21, + "startPoint": 170, + "path": [ + "down" + ] + }, + { + "id": 22, + "startPoint": 5, + "path": [ + "right", + "right", + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 23, + "startPoint": 108, + "path": [ + "left" + ] + }, + { + "id": 24, + "startPoint": 147, + "path": [ + "left" + ] + }, + { + "id": 25, + "startPoint": 97, + "path": [ + "up", + "up" + ] + }, + { + "id": 26, + "startPoint": 158, + "path": [ + "left", + "up" + ] + }, + { + "id": 27, + "startPoint": 1, + "path": [ + "down", + "down", + "left" + ] + }, + { + "id": 28, + "startPoint": 32, + "path": [ + "up", + "left" + ] + }, + { + "id": 29, + "startPoint": 61, + "path": [ + "right" + ] + }, + { + "id": 30, + "startPoint": 26, + "path": [ + "up" + ] + }, + { + "id": 31, + "startPoint": 37, + "path": [ + "left" + ] + }, + { + "id": 32, + "startPoint": 24, + "path": [ + "up" + ] + }, + { + "id": 33, + "startPoint": 141, + "path": [ + "down", + "down" + ] + } + ] + }, + { + "levelId": 35, + "levelName": "第-965关", + "gridRows": 14, + "gridCols": 14, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 55, + "path": [ + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 2, + "startPoint": 171, + "path": [ + "right", + "right" + ] + }, + { + "id": 3, + "startPoint": 170, + "path": [ + "down" + ] + }, + { + "id": 4, + "startPoint": 15, + "path": [ + "down", + "down", + "right", + "right" + ] + }, + { + "id": 5, + "startPoint": 30, + "path": [ + "up", + "up" + ] + }, + { + "id": 6, + "startPoint": 23, + "path": [ + "up" + ] + }, + { + "id": 7, + "startPoint": 63, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 8, + "startPoint": 61, + "path": [ + "left", + "left" + ] + }, + { + "id": 9, + "startPoint": 156, + "path": [ + "left", + "left" + ] + }, + { + "id": 10, + "startPoint": 87, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 11, + "startPoint": 5, + "path": [ + "left", + "left" + ] + }, + { + "id": 12, + "startPoint": 85, + "path": [ + "down", + "down", + "down", + "down", + "left" + ] + }, + { + "id": 13, + "startPoint": 133, + "path": [ + "down", + "right" + ] + }, + { + "id": 14, + "startPoint": 67, + "path": [ + "right" + ] + }, + { + "id": 15, + "startPoint": 19, + "path": [ + "down", + "down" + ] + }, + { + "id": 16, + "startPoint": 107, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 17, + "startPoint": 153, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 18, + "startPoint": 62, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 19, + "startPoint": 90, + "path": [ + "left", + "left" + ] + }, + { + "id": 20, + "startPoint": 93, + "path": [ + "up", + "up", + "left" + ] + }, + { + "id": 21, + "startPoint": 132, + "path": [ + "up", + "up" + ] + }, + { + "id": 22, + "startPoint": 14, + "path": [ + "up" + ] + }, + { + "id": 23, + "startPoint": 137, + "path": [ + "left", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 24, + "startPoint": 130, + "path": [ + "right" + ] + }, + { + "id": 25, + "startPoint": 159, + "path": [ + "up", + "left" + ] + }, + { + "id": 26, + "startPoint": 169, + "path": [ + "down" + ] + }, + { + "id": 27, + "startPoint": 112, + "path": [ + "down" + ] + }, + { + "id": 28, + "startPoint": 151, + "path": [ + "right" + ] + }, + { + "id": 29, + "startPoint": 78, + "path": [ + "left", + "left" + ] + }, + { + "id": 30, + "startPoint": 24, + "path": [ + "down", + "right", + "right", + "right" + ] + }, + { + "id": 31, + "startPoint": 96, + "path": [ + "up" + ] + }, + { + "id": 32, + "startPoint": 176, + "path": [ + "left", + "left", + "down" + ] + }, + { + "id": 33, + "startPoint": 194, + "path": [ + "up", + "up" + ] + }, + { + "id": 34, + "startPoint": 185, + "path": [ + "right", + "right" + ] + } + ] + }, + { + "levelId": 36, + "levelName": "第-964关", + "gridRows": 14, + "gridCols": 14, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 3, + "path": [ + "down", + "down", + "down", + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 2, + "startPoint": 171, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 3, + "startPoint": 25, + "path": [ + "right", + "right" + ] + }, + { + "id": 4, + "startPoint": 119, + "path": [ + "left", + "down", + "right" + ] + }, + { + "id": 5, + "startPoint": 108, + "path": [ + "left", + "up", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 6, + "startPoint": 30, + "path": [ + "down", + "down" + ] + }, + { + "id": 7, + "startPoint": 194, + "path": [ + "right" + ] + }, + { + "id": 8, + "startPoint": 114, + "path": [ + "left", + "down", + "down", + "down", + "down", + "right" + ] + }, + { + "id": 9, + "startPoint": 99, + "path": [ + "up", + "left" + ] + }, + { + "id": 10, + "startPoint": 92, + "path": [ + "down", + "left", + "left", + "left" + ] + }, + { + "id": 11, + "startPoint": 0, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 12, + "startPoint": 91, + "path": [ + "left", + "left" + ] + }, + { + "id": 13, + "startPoint": 136, + "path": [ + "down", + "down", + "down", + "down", + "right" + ] + }, + { + "id": 14, + "startPoint": 109, + "path": [ + "down", + "down" + ] + }, + { + "id": 15, + "startPoint": 33, + "path": [ + "down", + "down", + "down", + "right", + "right", + "right" + ] + }, + { + "id": 16, + "startPoint": 159, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 17, + "startPoint": 182, + "path": [ + "right" + ] + }, + { + "id": 18, + "startPoint": 69, + "path": [ + "down" + ] + }, + { + "id": 19, + "startPoint": 54, + "path": [ + "up" + ] + }, + { + "id": 20, + "startPoint": 147, + "path": [ + "right", + "right" + ] + }, + { + "id": 21, + "startPoint": 74, + "path": [ + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 22, + "startPoint": 111, + "path": [ + "left" + ] + }, + { + "id": 23, + "startPoint": 21, + "path": [ + "up" + ] + }, + { + "id": 24, + "startPoint": 32, + "path": [ + "down" + ] + }, + { + "id": 25, + "startPoint": 51, + "path": [ + "down", + "down" + ] + }, + { + "id": 26, + "startPoint": 19, + "path": [ + "up" + ] + }, + { + "id": 27, + "startPoint": 161, + "path": [ + "left", + "up" + ] + }, + { + "id": 28, + "startPoint": 35, + "path": [ + "right", + "right", + "right" + ] + } + ] + }, + { + "levelId": 37, + "levelName": "第-963关", + "gridRows": 14, + "gridCols": 14, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 169, + "path": [ + "down" + ] + }, + { + "id": 2, + "startPoint": 57, + "path": [ + "right", + "down", + "right" + ] + }, + { + "id": 3, + "startPoint": 71, + "path": [ + "left" + ] + }, + { + "id": 4, + "startPoint": 5, + "path": [ + "down", + "down", + "left" + ] + }, + { + "id": 5, + "startPoint": 85, + "path": [ + "left", + "down" + ] + }, + { + "id": 6, + "startPoint": 4, + "path": [ + "down" + ] + }, + { + "id": 7, + "startPoint": 43, + "path": [ + "up", + "up" + ] + }, + { + "id": 8, + "startPoint": 171, + "path": [ + "down" + ] + }, + { + "id": 9, + "startPoint": 92, + "path": [ + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 10, + "startPoint": 192, + "path": [ + "up", + "up", + "up", + "left", + "left", + "left" + ] + }, + { + "id": 11, + "startPoint": 124, + "path": [ + "up", + "up" + ] + }, + { + "id": 12, + "startPoint": 165, + "path": [ + "right", + "right" + ] + }, + { + "id": 13, + "startPoint": 3, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 14, + "startPoint": 69, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 15, + "startPoint": 116, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 16, + "startPoint": 61, + "path": [ + "down" + ] + }, + { + "id": 17, + "startPoint": 134, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 18, + "startPoint": 113, + "path": [ + "up" + ] + }, + { + "id": 19, + "startPoint": 42, + "path": [ + "down" + ] + }, + { + "id": 20, + "startPoint": 14, + "path": [ + "down" + ] + }, + { + "id": 21, + "startPoint": 189, + "path": [ + "right", + "right" + ] + }, + { + "id": 22, + "startPoint": 101, + "path": [ + "left" + ] + }, + { + "id": 23, + "startPoint": 161, + "path": [ + "right", + "right" + ] + }, + { + "id": 24, + "startPoint": 105, + "path": [ + "down" + ] + }, + { + "id": 25, + "startPoint": 24, + "path": [ + "left", + "up" + ] + }, + { + "id": 26, + "startPoint": 48, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 27, + "startPoint": 16, + "path": [ + "down", + "down" + ] + }, + { + "id": 28, + "startPoint": 21, + "path": [ + "down" + ] + }, + { + "id": 29, + "startPoint": 20, + "path": [ + "up" + ] + } + ] + }, + { + "levelId": 38, + "levelName": "第-962关", + "gridRows": 14, + "gridCols": 14, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 35, + "path": [ + "down", + "down", + "down", + "down", + "down", + "down", + "left" + ] + }, + { + "id": 2, + "startPoint": 144, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 3, + "startPoint": 125, + "path": [ + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 4, + "startPoint": 182, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 5, + "startPoint": 150, + "path": [ + "right", + "right" + ] + }, + { + "id": 6, + "startPoint": 83, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 7, + "startPoint": 68, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 8, + "startPoint": 160, + "path": [ + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 9, + "startPoint": 148, + "path": [ + "down", + "right", + "down", + "down" + ] + }, + { + "id": 10, + "startPoint": 113, + "path": [ + "right", + "up" + ] + }, + { + "id": 11, + "startPoint": 187, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 12, + "startPoint": 4, + "path": [ + "left", + "left" + ] + }, + { + "id": 13, + "startPoint": 74, + "path": [ + "right", + "right" + ] + }, + { + "id": 14, + "startPoint": 136, + "path": [ + "up", + "up", + "up", + "left", + "left" + ] + }, + { + "id": 15, + "startPoint": 175, + "path": [ + "left", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 16, + "startPoint": 131, + "path": [ + "down" + ] + }, + { + "id": 17, + "startPoint": 7, + "path": [ + "right", + "right", + "down", + "left", + "left" + ] + }, + { + "id": 18, + "startPoint": 190, + "path": [ + "left" + ] + }, + { + "id": 19, + "startPoint": 65, + "path": [ + "up", + "left" + ] + }, + { + "id": 20, + "startPoint": 99, + "path": [ + "up", + "up" + ] + }, + { + "id": 21, + "startPoint": 25, + "path": [ + "right", + "right" + ] + }, + { + "id": 22, + "startPoint": 34, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 23, + "startPoint": 78, + "path": [ + "up" + ] + }, + { + "id": 24, + "startPoint": 73, + "path": [ + "down", + "left" + ] + }, + { + "id": 25, + "startPoint": 57, + "path": [ + "left" + ] + }, + { + "id": 26, + "startPoint": 134, + "path": [ + "left", + "down", + "down" + ] + }, + { + "id": 27, + "startPoint": 45, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 28, + "startPoint": 120, + "path": [ + "right" + ] + }, + { + "id": 29, + "startPoint": 10, + "path": [ + "down" + ] + }, + { + "id": 30, + "startPoint": 165, + "path": [ + "left" + ] + } + ] + }, + { + "levelId": 39, + "levelName": "第-961关", + "gridRows": 14, + "gridCols": 14, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 70, + "path": [ + "right", + "right", + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 2, + "startPoint": 104, + "path": [ + "right", + "right", + "up", + "right", + "right" + ] + }, + { + "id": 3, + "startPoint": 12, + "path": [ + "right" + ] + }, + { + "id": 4, + "startPoint": 115, + "path": [ + "down", + "down" + ] + }, + { + "id": 5, + "startPoint": 165, + "path": [ + "down", + "right", + "right" + ] + }, + { + "id": 6, + "startPoint": 159, + "path": [ + "down", + "down" + ] + }, + { + "id": 7, + "startPoint": 145, + "path": [ + "right", + "right", + "right", + "right", + "right", + "down", + "down" + ] + }, + { + "id": 8, + "startPoint": 169, + "path": [ + "left", + "down" + ] + }, + { + "id": 9, + "startPoint": 118, + "path": [ + "down" + ] + }, + { + "id": 10, + "startPoint": 52, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 11, + "startPoint": 20, + "path": [ + "up" + ] + }, + { + "id": 12, + "startPoint": 33, + "path": [ + "up", + "up" + ] + }, + { + "id": 13, + "startPoint": 122, + "path": [ + "down" + ] + }, + { + "id": 14, + "startPoint": 172, + "path": [ + "up", + "up" + ] + }, + { + "id": 15, + "startPoint": 79, + "path": [ + "up", + "up", + "up", + "left", + "left", + "left" + ] + }, + { + "id": 16, + "startPoint": 61, + "path": [ + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 17, + "startPoint": 95, + "path": [ + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 18, + "startPoint": 17, + "path": [ + "up" + ] + }, + { + "id": 19, + "startPoint": 184, + "path": [ + "left" + ] + }, + { + "id": 20, + "startPoint": 98, + "path": [ + "right", + "right", + "down" + ] + }, + { + "id": 21, + "startPoint": 192, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 22, + "startPoint": 123, + "path": [ + "right", + "right" + ] + }, + { + "id": 23, + "startPoint": 194, + "path": [ + "left" + ] + }, + { + "id": 24, + "startPoint": 54, + "path": [ + "down", + "down" + ] + }, + { + "id": 25, + "startPoint": 140, + "path": [ + "right", + "right" + ] + }, + { + "id": 26, + "startPoint": 110, + "path": [ + "right" + ] + }, + { + "id": 27, + "startPoint": 7, + "path": [ + "right", + "right" + ] + }, + { + "id": 28, + "startPoint": 1, + "path": [ + "left" + ] + }, + { + "id": 29, + "startPoint": 160, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 30, + "startPoint": 121, + "path": [ + "left", + "left" + ] + }, + { + "id": 31, + "startPoint": 26, + "path": [ + "down", + "right", + "down", + "down", + "down", + "down" + ] + } + ] + }, + { + "levelId": 40, + "levelName": "第-960关", + "gridRows": 14, + "gridCols": 14, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 158, + "path": [ + "right", + "right", + "right", + "right", + "up", + "left", + "left" + ] + }, + { + "id": 2, + "startPoint": 66, + "path": [ + "left", + "left", + "down" + ] + }, + { + "id": 3, + "startPoint": 103, + "path": [ + "down", + "left", + "left", + "left" + ] + }, + { + "id": 4, + "startPoint": 187, + "path": [ + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 5, + "startPoint": 105, + "path": [ + "up", + "up", + "up", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 6, + "startPoint": 175, + "path": [ + "down" + ] + }, + { + "id": 7, + "startPoint": 81, + "path": [ + "up", + "up", + "up", + "up", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 8, + "startPoint": 150, + "path": [ + "right", + "right", + "up", + "right" + ] + }, + { + "id": 9, + "startPoint": 154, + "path": [ + "up", + "right", + "right", + "up" + ] + }, + { + "id": 10, + "startPoint": 37, + "path": [ + "left", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 11, + "startPoint": 2, + "path": [ + "left" + ] + }, + { + "id": 12, + "startPoint": 170, + "path": [ + "right", + "right" + ] + }, + { + "id": 13, + "startPoint": 126, + "path": [ + "right", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 14, + "startPoint": 181, + "path": [ + "left", + "left", + "left", + "left", + "down", + "left" + ] + }, + { + "id": 15, + "startPoint": 122, + "path": [ + "down" + ] + }, + { + "id": 16, + "startPoint": 134, + "path": [ + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 17, + "startPoint": 55, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 18, + "startPoint": 106, + "path": [ + "down" + ] + }, + { + "id": 19, + "startPoint": 102, + "path": [ + "left", + "left" + ] + }, + { + "id": 20, + "startPoint": 193, + "path": [ + "left" + ] + }, + { + "id": 21, + "startPoint": 50, + "path": [ + "right", + "right" + ] + }, + { + "id": 22, + "startPoint": 40, + "path": [ + "up", + "up" + ] + }, + { + "id": 23, + "startPoint": 90, + "path": [ + "left", + "left" + ] + }, + { + "id": 24, + "startPoint": 73, + "path": [ + "down" + ] + }, + { + "id": 25, + "startPoint": 110, + "path": [ + "right" + ] + }, + { + "id": 26, + "startPoint": 54, + "path": [ + "down", + "down", + "right" + ] + }, + { + "id": 27, + "startPoint": 8, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 28, + "startPoint": 56, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 29, + "startPoint": 107, + "path": [ + "right", + "right" + ] + }, + { + "id": 30, + "startPoint": 155, + "path": [ + "down" + ] + }, + { + "id": 31, + "startPoint": 93, + "path": [ + "right" + ] + }, + { + "id": 32, + "startPoint": 16, + "path": [ + "left" + ] + } + ] + }, + { + "levelId": 41, + "levelName": "第-959关", + "gridRows": 14, + "gridCols": 14, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 70, + "path": [ + "right", + "up", + "up", + "up" + ] + }, + { + "id": 2, + "startPoint": 91, + "path": [ + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 3, + "startPoint": 23, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 4, + "startPoint": 31, + "path": [ + "right", + "up", + "up" + ] + }, + { + "id": 5, + "startPoint": 101, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 6, + "startPoint": 137, + "path": [ + "down", + "left", + "left", + "left" + ] + }, + { + "id": 7, + "startPoint": 2, + "path": [ + "left", + "left" + ] + }, + { + "id": 8, + "startPoint": 28, + "path": [ + "down", + "down" + ] + }, + { + "id": 9, + "startPoint": 163, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 10, + "startPoint": 179, + "path": [ + "left" + ] + }, + { + "id": 11, + "startPoint": 40, + "path": [ + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 12, + "startPoint": 117, + "path": [ + "left", + "down", + "right", + "right" + ] + }, + { + "id": 13, + "startPoint": 83, + "path": [ + "up", + "up" + ] + }, + { + "id": 14, + "startPoint": 142, + "path": [ + "left", + "left" + ] + }, + { + "id": 15, + "startPoint": 111, + "path": [ + "left", + "left", + "left", + "down", + "left" + ] + }, + { + "id": 16, + "startPoint": 176, + "path": [ + "down" + ] + }, + { + "id": 17, + "startPoint": 93, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 18, + "startPoint": 99, + "path": [ + "left" + ] + }, + { + "id": 19, + "startPoint": 81, + "path": [ + "up", + "up" + ] + }, + { + "id": 20, + "startPoint": 167, + "path": [ + "down", + "down" + ] + }, + { + "id": 21, + "startPoint": 171, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 22, + "startPoint": 24, + "path": [ + "up" + ] + }, + { + "id": 23, + "startPoint": 169, + "path": [ + "up" + ] + }, + { + "id": 24, + "startPoint": 64, + "path": [ + "up" + ] + }, + { + "id": 25, + "startPoint": 48, + "path": [ + "left", + "left" + ] + }, + { + "id": 26, + "startPoint": 118, + "path": [ + "up", + "up" + ] + }, + { + "id": 27, + "startPoint": 126, + "path": [ + "right", + "right" + ] + }, + { + "id": 28, + "startPoint": 79, + "path": [ + "right" + ] + }, + { + "id": 29, + "startPoint": 146, + "path": [ + "left", + "left" + ] + }, + { + "id": 30, + "startPoint": 8, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 31, + "startPoint": 103, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 32, + "startPoint": 173, + "path": [ + "down" + ] + }, + { + "id": 33, + "startPoint": 139, + "path": [ + "down" + ] + } + ] + }, + { + "levelId": 42, + "levelName": "第-958关", + "gridRows": 14, + "gridCols": 14, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 98, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 2, + "startPoint": 36, + "path": [ + "right", + "right", + "down" + ] + }, + { + "id": 3, + "startPoint": 17, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 4, + "startPoint": 57, + "path": [ + "up", + "up", + "up", + "right" + ] + }, + { + "id": 5, + "startPoint": 34, + "path": [ + "right" + ] + }, + { + "id": 6, + "startPoint": 187, + "path": [ + "up", + "up", + "up", + "up", + "left", + "left" + ] + }, + { + "id": 7, + "startPoint": 47, + "path": [ + "up" + ] + }, + { + "id": 8, + "startPoint": 113, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 9, + "startPoint": 53, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 10, + "startPoint": 122, + "path": [ + "right", + "right" + ] + }, + { + "id": 11, + "startPoint": 74, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 12, + "startPoint": 164, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 13, + "startPoint": 65, + "path": [ + "left", + "left" + ] + }, + { + "id": 14, + "startPoint": 70, + "path": [ + "down" + ] + }, + { + "id": 15, + "startPoint": 101, + "path": [ + "left" + ] + }, + { + "id": 16, + "startPoint": 81, + "path": [ + "up", + "right", + "right" + ] + }, + { + "id": 17, + "startPoint": 117, + "path": [ + "up", + "up" + ] + }, + { + "id": 18, + "startPoint": 152, + "path": [ + "right" + ] + }, + { + "id": 19, + "startPoint": 149, + "path": [ + "right", + "right" + ] + }, + { + "id": 20, + "startPoint": 120, + "path": [ + "left", + "left" + ] + }, + { + "id": 21, + "startPoint": 125, + "path": [ + "down" + ] + }, + { + "id": 22, + "startPoint": 51, + "path": [ + "left", + "left" + ] + }, + { + "id": 23, + "startPoint": 8, + "path": [ + "left", + "left", + "left", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 24, + "startPoint": 181, + "path": [ + "left", + "left", + "down" + ] + }, + { + "id": 25, + "startPoint": 77, + "path": [ + "left", + "left" + ] + }, + { + "id": 26, + "startPoint": 90, + "path": [ + "down", + "right" + ] + }, + { + "id": 27, + "startPoint": 45, + "path": [ + "up" + ] + }, + { + "id": 28, + "startPoint": 128, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 29, + "startPoint": 79, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 30, + "startPoint": 133, + "path": [ + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 31, + "startPoint": 190, + "path": [ + "left", + "left" + ] + }, + { + "id": 32, + "startPoint": 160, + "path": [ + "down" + ] + }, + { + "id": 33, + "startPoint": 169, + "path": [ + "down" + ] + }, + { + "id": 34, + "startPoint": 66, + "path": [ + "down", + "down", + "down" + ] + } + ] + }, + { + "levelId": 43, + "levelName": "第-957关", + "gridRows": 14, + "gridCols": 14, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 43, + "path": [ + "right", + "right", + "right", + "up", + "up", + "up" + ] + }, + { + "id": 2, + "startPoint": 128, + "path": [ + "left", + "left" + ] + }, + { + "id": 3, + "startPoint": 100, + "path": [ + "down" + ] + }, + { + "id": 4, + "startPoint": 148, + "path": [ + "down", + "down", + "down", + "left" + ] + }, + { + "id": 5, + "startPoint": 38, + "path": [ + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 6, + "startPoint": 29, + "path": [ + "left" + ] + }, + { + "id": 7, + "startPoint": 70, + "path": [ + "down", + "down", + "right" + ] + }, + { + "id": 8, + "startPoint": 143, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 9, + "startPoint": 17, + "path": [ + "up" + ] + }, + { + "id": 10, + "startPoint": 96, + "path": [ + "down", + "down", + "down", + "right" + ] + }, + { + "id": 11, + "startPoint": 105, + "path": [ + "left", + "left", + "left", + "down", + "down", + "down" + ] + }, + { + "id": 12, + "startPoint": 132, + "path": [ + "up", + "left" + ] + }, + { + "id": 13, + "startPoint": 152, + "path": [ + "down", + "down", + "down", + "left", + "left", + "left" + ] + }, + { + "id": 14, + "startPoint": 74, + "path": [ + "down" + ] + }, + { + "id": 15, + "startPoint": 20, + "path": [ + "right", + "right" + ] + }, + { + "id": 16, + "startPoint": 81, + "path": [ + "up", + "up" + ] + }, + { + "id": 17, + "startPoint": 7, + "path": [ + "left", + "left" + ] + }, + { + "id": 18, + "startPoint": 142, + "path": [ + "down" + ] + }, + { + "id": 19, + "startPoint": 60, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 20, + "startPoint": 92, + "path": [ + "down", + "down" + ] + }, + { + "id": 21, + "startPoint": 68, + "path": [ + "down" + ] + }, + { + "id": 22, + "startPoint": 150, + "path": [ + "down", + "down" + ] + }, + { + "id": 23, + "startPoint": 26, + "path": [ + "up" + ] + }, + { + "id": 24, + "startPoint": 72, + "path": [ + "left" + ] + }, + { + "id": 25, + "startPoint": 135, + "path": [ + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 26, + "startPoint": 94, + "path": [ + "down", + "down" + ] + }, + { + "id": 27, + "startPoint": 97, + "path": [ + "up" + ] + }, + { + "id": 28, + "startPoint": 48, + "path": [ + "left" + ] + }, + { + "id": 29, + "startPoint": 56, + "path": [ + "up" + ] + }, + { + "id": 30, + "startPoint": 131, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 31, + "startPoint": 27, + "path": [ + "up" + ] + }, + { + "id": 32, + "startPoint": 163, + "path": [ + "up" + ] + }, + { + "id": 33, + "startPoint": 181, + "path": [ + "up", + "up" + ] + }, + { + "id": 34, + "startPoint": 66, + "path": [ + "down" + ] + }, + { + "id": 35, + "startPoint": 24, + "path": [ + "left", + "up" + ] + } + ] + }, + { + "levelId": 44, + "levelName": "第-956关", + "gridRows": 14, + "gridCols": 14, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 130, + "path": [ + "left", + "left", + "down" + ] + }, + { + "id": 2, + "startPoint": 173, + "path": [ + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 3, + "startPoint": 132, + "path": [ + "left" + ] + }, + { + "id": 4, + "startPoint": 91, + "path": [ + "up", + "up", + "left", + "left", + "left" + ] + }, + { + "id": 5, + "startPoint": 161, + "path": [ + "down", + "down" + ] + }, + { + "id": 6, + "startPoint": 106, + "path": [ + "down", + "right", + "right", + "right" + ] + }, + { + "id": 7, + "startPoint": 109, + "path": [ + "left", + "left" + ] + }, + { + "id": 8, + "startPoint": 140, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 9, + "startPoint": 177, + "path": [ + "left" + ] + }, + { + "id": 10, + "startPoint": 40, + "path": [ + "up", + "right" + ] + }, + { + "id": 11, + "startPoint": 20, + "path": [ + "up" + ] + }, + { + "id": 12, + "startPoint": 194, + "path": [ + "left", + "left" + ] + }, + { + "id": 13, + "startPoint": 43, + "path": [ + "down", + "down", + "left" + ] + }, + { + "id": 14, + "startPoint": 104, + "path": [ + "up", + "up" + ] + }, + { + "id": 15, + "startPoint": 30, + "path": [ + "left" + ] + }, + { + "id": 16, + "startPoint": 16, + "path": [ + "up", + "right", + "right", + "right" + ] + }, + { + "id": 17, + "startPoint": 24, + "path": [ + "up" + ] + }, + { + "id": 18, + "startPoint": 111, + "path": [ + "left", + "down", + "down" + ] + }, + { + "id": 19, + "startPoint": 33, + "path": [ + "right", + "right", + "right", + "right", + "right", + "right", + "up" + ] + }, + { + "id": 20, + "startPoint": 67, + "path": [ + "down", + "down" + ] + }, + { + "id": 21, + "startPoint": 127, + "path": [ + "down", + "down" + ] + }, + { + "id": 22, + "startPoint": 74, + "path": [ + "left", + "left" + ] + }, + { + "id": 23, + "startPoint": 116, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 24, + "startPoint": 139, + "path": [ + "up" + ] + }, + { + "id": 25, + "startPoint": 150, + "path": [ + "up" + ] + }, + { + "id": 26, + "startPoint": 68, + "path": [ + "up" + ] + }, + { + "id": 27, + "startPoint": 78, + "path": [ + "right", + "right" + ] + }, + { + "id": 28, + "startPoint": 135, + "path": [ + "down", + "down" + ] + }, + { + "id": 29, + "startPoint": 119, + "path": [ + "up" + ] + }, + { + "id": 30, + "startPoint": 52, + "path": [ + "right" + ] + }, + { + "id": 31, + "startPoint": 46, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 32, + "startPoint": 66, + "path": [ + "left" + ] + }, + { + "id": 33, + "startPoint": 64, + "path": [ + "up", + "right" + ] + }, + { + "id": 34, + "startPoint": 15, + "path": [ + "up" + ] + }, + { + "id": 35, + "startPoint": 145, + "path": [ + "down" + ] + }, + { + "id": 36, + "startPoint": 22, + "path": [ + "up" + ] + } + ] + }, + { + "levelId": 45, + "levelName": "第-955关", + "gridRows": 14, + "gridCols": 14, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 136, + "path": [ + "right", + "right", + "up", + "up" + ] + }, + { + "id": 2, + "startPoint": 82, + "path": [ + "right" + ] + }, + { + "id": 3, + "startPoint": 103, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 4, + "startPoint": 104, + "path": [ + "up", + "right", + "right", + "right" + ] + }, + { + "id": 5, + "startPoint": 50, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 6, + "startPoint": 85, + "path": [ + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 7, + "startPoint": 114, + "path": [ + "down", + "left" + ] + }, + { + "id": 8, + "startPoint": 96, + "path": [ + "right" + ] + }, + { + "id": 9, + "startPoint": 53, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 10, + "startPoint": 86, + "path": [ + "right", + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 11, + "startPoint": 169, + "path": [ + "left" + ] + }, + { + "id": 12, + "startPoint": 61, + "path": [ + "right", + "right" + ] + }, + { + "id": 13, + "startPoint": 21, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 14, + "startPoint": 126, + "path": [ + "up", + "up" + ] + }, + { + "id": 15, + "startPoint": 33, + "path": [ + "right", + "right" + ] + }, + { + "id": 16, + "startPoint": 25, + "path": [ + "down" + ] + }, + { + "id": 17, + "startPoint": 139, + "path": [ + "up", + "up" + ] + }, + { + "id": 18, + "startPoint": 164, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 19, + "startPoint": 23, + "path": [ + "up" + ] + }, + { + "id": 20, + "startPoint": 2, + "path": [ + "left", + "left" + ] + }, + { + "id": 21, + "startPoint": 189, + "path": [ + "right", + "right", + "right", + "right", + "right", + "up" + ] + }, + { + "id": 22, + "startPoint": 129, + "path": [ + "up" + ] + }, + { + "id": 23, + "startPoint": 78, + "path": [ + "right", + "right" + ] + }, + { + "id": 24, + "startPoint": 179, + "path": [ + "left", + "left", + "left", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 25, + "startPoint": 24, + "path": [ + "up" + ] + }, + { + "id": 26, + "startPoint": 46, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 27, + "startPoint": 134, + "path": [ + "down", + "down" + ] + }, + { + "id": 28, + "startPoint": 156, + "path": [ + "right" + ] + }, + { + "id": 29, + "startPoint": 116, + "path": [ + "right", + "right" + ] + }, + { + "id": 30, + "startPoint": 158, + "path": [ + "up", + "right", + "right", + "right" + ] + }, + { + "id": 31, + "startPoint": 75, + "path": [ + "right", + "right" + ] + }, + { + "id": 32, + "startPoint": 52, + "path": [ + "up" + ] + }, + { + "id": 33, + "startPoint": 54, + "path": [ + "right" + ] + }, + { + "id": 34, + "startPoint": 106, + "path": [ + "right", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 35, + "startPoint": 40, + "path": [ + "right" + ] + }, + { + "id": 36, + "startPoint": 94, + "path": [ + "down", + "right" + ] + }, + { + "id": 37, + "startPoint": 7, + "path": [ + "left" + ] + } + ] + }, + { + "levelId": 46, + "levelName": "第-954关", + "gridRows": 14, + "gridCols": 14, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 36, + "path": [ + "down", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 2, + "startPoint": 20, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 3, + "startPoint": 169, + "path": [ + "left" + ] + }, + { + "id": 4, + "startPoint": 59, + "path": [ + "right", + "right", + "right", + "up", + "up" + ] + }, + { + "id": 5, + "startPoint": 57, + "path": [ + "up", + "left" + ] + }, + { + "id": 6, + "startPoint": 160, + "path": [ + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 7, + "startPoint": 152, + "path": [ + "up", + "up", + "up", + "up", + "up", + "right", + "down" + ] + }, + { + "id": 8, + "startPoint": 14, + "path": [ + "right", + "right" + ] + }, + { + "id": 9, + "startPoint": 135, + "path": [ + "left", + "left" + ] + }, + { + "id": 10, + "startPoint": 89, + "path": [ + "up" + ] + }, + { + "id": 11, + "startPoint": 95, + "path": [ + "left", + "left", + "up", + "up" + ] + }, + { + "id": 12, + "startPoint": 130, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 13, + "startPoint": 87, + "path": [ + "right" + ] + }, + { + "id": 14, + "startPoint": 149, + "path": [ + "right", + "up" + ] + }, + { + "id": 15, + "startPoint": 41, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 16, + "startPoint": 156, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 17, + "startPoint": 167, + "path": [ + "down", + "down" + ] + }, + { + "id": 18, + "startPoint": 31, + "path": [ + "left", + "left" + ] + }, + { + "id": 19, + "startPoint": 142, + "path": [ + "left", + "left" + ] + }, + { + "id": 20, + "startPoint": 99, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 21, + "startPoint": 46, + "path": [ + "up", + "up" + ] + }, + { + "id": 22, + "startPoint": 91, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 23, + "startPoint": 163, + "path": [ + "right" + ] + }, + { + "id": 24, + "startPoint": 137, + "path": [ + "down", + "down", + "down", + "down", + "left", + "left" + ] + }, + { + "id": 25, + "startPoint": 86, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 26, + "startPoint": 119, + "path": [ + "up" + ] + }, + { + "id": 27, + "startPoint": 17, + "path": [ + "up" + ] + }, + { + "id": 28, + "startPoint": 11, + "path": [ + "right", + "right" + ] + }, + { + "id": 29, + "startPoint": 81, + "path": [ + "left" + ] + }, + { + "id": 30, + "startPoint": 78, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 31, + "startPoint": 183, + "path": [ + "right", + "right", + "right", + "up", + "left", + "left" + ] + }, + { + "id": 32, + "startPoint": 7, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 33, + "startPoint": 178, + "path": [ + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 34, + "startPoint": 122, + "path": [ + "up" + ] + }, + { + "id": 35, + "startPoint": 66, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 36, + "startPoint": 114, + "path": [ + "left", + "left" + ] + }, + { + "id": 37, + "startPoint": 190, + "path": [ + "left", + "left" + ] + }, + { + "id": 38, + "startPoint": 148, + "path": [ + "left" + ] + } + ] + }, + { + "levelId": 47, + "levelName": "第-953关", + "gridRows": 14, + "gridCols": 14, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 171, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 2, + "startPoint": 181, + "path": [ + "up", + "up", + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 3, + "startPoint": 165, + "path": [ + "down", + "down" + ] + }, + { + "id": 4, + "startPoint": 188, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 5, + "startPoint": 107, + "path": [ + "up", + "up" + ] + }, + { + "id": 6, + "startPoint": 3, + "path": [ + "down", + "down", + "down", + "down", + "left", + "left", + "down", + "down" + ] + }, + { + "id": 7, + "startPoint": 88, + "path": [ + "down", + "down" + ] + }, + { + "id": 8, + "startPoint": 142, + "path": [ + "up", + "up" + ] + }, + { + "id": 9, + "startPoint": 158, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 10, + "startPoint": 157, + "path": [ + "up", + "up", + "up", + "up", + "left", + "up", + "up" + ] + }, + { + "id": 11, + "startPoint": 44, + "path": [ + "left" + ] + }, + { + "id": 12, + "startPoint": 10, + "path": [ + "right" + ] + }, + { + "id": 13, + "startPoint": 91, + "path": [ + "right", + "up" + ] + }, + { + "id": 14, + "startPoint": 23, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 15, + "startPoint": 49, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 16, + "startPoint": 12, + "path": [ + "right" + ] + }, + { + "id": 17, + "startPoint": 119, + "path": [ + "left", + "left" + ] + }, + { + "id": 18, + "startPoint": 82, + "path": [ + "left", + "left" + ] + }, + { + "id": 19, + "startPoint": 33, + "path": [ + "left" + ] + }, + { + "id": 20, + "startPoint": 66, + "path": [ + "right", + "right" + ] + }, + { + "id": 21, + "startPoint": 106, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 22, + "startPoint": 65, + "path": [ + "up", + "up" + ] + }, + { + "id": 23, + "startPoint": 163, + "path": [ + "right" + ] + }, + { + "id": 24, + "startPoint": 109, + "path": [ + "left" + ] + }, + { + "id": 25, + "startPoint": 18, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 26, + "startPoint": 150, + "path": [ + "up", + "up" + ] + }, + { + "id": 27, + "startPoint": 34, + "path": [ + "right" + ] + }, + { + "id": 28, + "startPoint": 63, + "path": [ + "down" + ] + }, + { + "id": 29, + "startPoint": 5, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 30, + "startPoint": 84, + "path": [ + "up" + ] + }, + { + "id": 31, + "startPoint": 56, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 32, + "startPoint": 149, + "path": [ + "up", + "up" + ] + }, + { + "id": 33, + "startPoint": 113, + "path": [ + "up", + "left" + ] + }, + { + "id": 34, + "startPoint": 178, + "path": [ + "down" + ] + }, + { + "id": 35, + "startPoint": 73, + "path": [ + "down" + ] + }, + { + "id": 36, + "startPoint": 61, + "path": [ + "right" + ] + }, + { + "id": 37, + "startPoint": 123, + "path": [ + "down", + "down" + ] + }, + { + "id": 38, + "startPoint": 96, + "path": [ + "down" + ] + }, + { + "id": 39, + "startPoint": 94, + "path": [ + "right" + ] + } + ] + }, + { + "levelId": 48, + "levelName": "第-952关", + "gridRows": 14, + "gridCols": 14, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 49, + "path": [ + "left", + "left", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 2, + "startPoint": 36, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 3, + "startPoint": 164, + "path": [ + "left", + "down", + "down" + ] + }, + { + "id": 4, + "startPoint": 172, + "path": [ + "down" + ] + }, + { + "id": 5, + "startPoint": 89, + "path": [ + "left", + "left", + "left", + "left", + "down", + "left" + ] + }, + { + "id": 6, + "startPoint": 0, + "path": [ + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 7, + "startPoint": 178, + "path": [ + "down" + ] + }, + { + "id": 8, + "startPoint": 116, + "path": [ + "right", + "down", + "down", + "down" + ] + }, + { + "id": 9, + "startPoint": 127, + "path": [ + "down", + "right" + ] + }, + { + "id": 10, + "startPoint": 132, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 11, + "startPoint": 54, + "path": [ + "up", + "up" + ] + }, + { + "id": 12, + "startPoint": 23, + "path": [ + "right", + "right" + ] + }, + { + "id": 13, + "startPoint": 154, + "path": [ + "down", + "down" + ] + }, + { + "id": 14, + "startPoint": 16, + "path": [ + "down" + ] + }, + { + "id": 15, + "startPoint": 121, + "path": [ + "up", + "up", + "up", + "right", + "right", + "up", + "up" + ] + }, + { + "id": 16, + "startPoint": 125, + "path": [ + "left", + "left", + "up", + "up" + ] + }, + { + "id": 17, + "startPoint": 158, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 18, + "startPoint": 74, + "path": [ + "right", + "right" + ] + }, + { + "id": 19, + "startPoint": 113, + "path": [ + "left" + ] + }, + { + "id": 20, + "startPoint": 166, + "path": [ + "left" + ] + }, + { + "id": 21, + "startPoint": 58, + "path": [ + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 22, + "startPoint": 32, + "path": [ + "up" + ] + }, + { + "id": 23, + "startPoint": 176, + "path": [ + "left" + ] + }, + { + "id": 24, + "startPoint": 34, + "path": [ + "right" + ] + }, + { + "id": 25, + "startPoint": 137, + "path": [ + "right", + "right" + ] + }, + { + "id": 26, + "startPoint": 133, + "path": [ + "right", + "right" + ] + }, + { + "id": 27, + "startPoint": 91, + "path": [ + "right" + ] + }, + { + "id": 28, + "startPoint": 11, + "path": [ + "right", + "right" + ] + }, + { + "id": 29, + "startPoint": 151, + "path": [ + "right", + "right" + ] + }, + { + "id": 30, + "startPoint": 21, + "path": [ + "up" + ] + }, + { + "id": 31, + "startPoint": 20, + "path": [ + "up" + ] + }, + { + "id": 32, + "startPoint": 29, + "path": [ + "left" + ] + }, + { + "id": 33, + "startPoint": 147, + "path": [ + "down" + ] + }, + { + "id": 34, + "startPoint": 170, + "path": [ + "left" + ] + }, + { + "id": 35, + "startPoint": 181, + "path": [ + "up" + ] + }, + { + "id": 36, + "startPoint": 73, + "path": [ + "left" + ] + }, + { + "id": 37, + "startPoint": 129, + "path": [ + "left" + ] + }, + { + "id": 38, + "startPoint": 180, + "path": [ + "left" + ] + }, + { + "id": 39, + "startPoint": 68, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 40, + "startPoint": 104, + "path": [ + "right", + "right", + "down" + ] + } + ] + }, + { + "levelId": 49, + "levelName": "第-951关", + "gridRows": 14, + "gridCols": 14, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 72, + "path": [ + "down", + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 2, + "startPoint": 126, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 3, + "startPoint": 157, + "path": [ + "right", + "down" + ] + }, + { + "id": 4, + "startPoint": 33, + "path": [ + "down", + "down", + "down", + "left", + "down", + "down", + "down" + ] + }, + { + "id": 5, + "startPoint": 90, + "path": [ + "down", + "left" + ] + }, + { + "id": 6, + "startPoint": 186, + "path": [ + "left", + "left", + "up", + "left" + ] + }, + { + "id": 7, + "startPoint": 176, + "path": [ + "right", + "right" + ] + }, + { + "id": 8, + "startPoint": 180, + "path": [ + "up", + "left", + "left" + ] + }, + { + "id": 9, + "startPoint": 136, + "path": [ + "down" + ] + }, + { + "id": 10, + "startPoint": 37, + "path": [ + "right", + "right", + "down", + "down", + "down", + "down", + "down", + "right" + ] + }, + { + "id": 11, + "startPoint": 131, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 12, + "startPoint": 153, + "path": [ + "left", + "left" + ] + }, + { + "id": 13, + "startPoint": 130, + "path": [ + "down" + ] + }, + { + "id": 14, + "startPoint": 108, + "path": [ + "down" + ] + }, + { + "id": 15, + "startPoint": 65, + "path": [ + "left", + "up", + "left", + "left" + ] + }, + { + "id": 16, + "startPoint": 163, + "path": [ + "left", + "left" + ] + }, + { + "id": 17, + "startPoint": 59, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 18, + "startPoint": 124, + "path": [ + "left" + ] + }, + { + "id": 19, + "startPoint": 146, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 20, + "startPoint": 119, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 21, + "startPoint": 22, + "path": [ + "up" + ] + }, + { + "id": 22, + "startPoint": 40, + "path": [ + "up", + "up", + "right" + ] + }, + { + "id": 23, + "startPoint": 28, + "path": [ + "down" + ] + }, + { + "id": 24, + "startPoint": 10, + "path": [ + "left" + ] + }, + { + "id": 25, + "startPoint": 30, + "path": [ + "left", + "up", + "left" + ] + }, + { + "id": 26, + "startPoint": 44, + "path": [ + "right", + "right", + "down" + ] + }, + { + "id": 27, + "startPoint": 190, + "path": [ + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 28, + "startPoint": 98, + "path": [ + "down" + ] + }, + { + "id": 29, + "startPoint": 36, + "path": [ + "left", + "left" + ] + }, + { + "id": 30, + "startPoint": 134, + "path": [ + "down" + ] + }, + { + "id": 31, + "startPoint": 138, + "path": [ + "left" + ] + }, + { + "id": 32, + "startPoint": 111, + "path": [ + "down", + "down" + ] + }, + { + "id": 33, + "startPoint": 147, + "path": [ + "up", + "left" + ] + }, + { + "id": 34, + "startPoint": 94, + "path": [ + "left", + "left" + ] + }, + { + "id": 35, + "startPoint": 5, + "path": [ + "down" + ] + }, + { + "id": 36, + "startPoint": 32, + "path": [ + "up", + "left", + "left" + ] + }, + { + "id": 37, + "startPoint": 24, + "path": [ + "right" + ] + }, + { + "id": 38, + "startPoint": 62, + "path": [ + "down" + ] + }, + { + "id": 39, + "startPoint": 82, + "path": [ + "down" + ] + }, + { + "id": 40, + "startPoint": 85, + "path": [ + "down", + "down", + "down" + ] + } + ] + }, + { + "levelId": 50, + "levelName": "第-950关", + "gridRows": 14, + "gridCols": 14, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 108, + "path": [ + "right", + "right", + "up", + "right" + ] + }, + { + "id": 2, + "startPoint": 159, + "path": [ + "up", + "up" + ] + }, + { + "id": 3, + "startPoint": 74, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 4, + "startPoint": 168, + "path": [ + "down" + ] + }, + { + "id": 5, + "startPoint": 52, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 6, + "startPoint": 95, + "path": [ + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 7, + "startPoint": 87, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 8, + "startPoint": 30, + "path": [ + "up", + "right", + "up" + ] + }, + { + "id": 9, + "startPoint": 166, + "path": [ + "left", + "up", + "up", + "up" + ] + }, + { + "id": 10, + "startPoint": 70, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 11, + "startPoint": 175, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 12, + "startPoint": 23, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 13, + "startPoint": 186, + "path": [ + "left", + "left" + ] + }, + { + "id": 14, + "startPoint": 7, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 15, + "startPoint": 58, + "path": [ + "down", + "down", + "down", + "down", + "down", + "down", + "down", + "left" + ] + }, + { + "id": 16, + "startPoint": 115, + "path": [ + "up" + ] + }, + { + "id": 17, + "startPoint": 20, + "path": [ + "right", + "right" + ] + }, + { + "id": 18, + "startPoint": 119, + "path": [ + "down", + "down", + "down", + "right", + "right" + ] + }, + { + "id": 19, + "startPoint": 40, + "path": [ + "right" + ] + }, + { + "id": 20, + "startPoint": 141, + "path": [ + "up", + "up", + "up", + "up", + "left" + ] + }, + { + "id": 21, + "startPoint": 93, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 22, + "startPoint": 19, + "path": [ + "down", + "down", + "down", + "right", + "right", + "down", + "down", + "down" + ] + }, + { + "id": 23, + "startPoint": 152, + "path": [ + "up", + "up" + ] + }, + { + "id": 24, + "startPoint": 48, + "path": [ + "right", + "right" + ] + }, + { + "id": 25, + "startPoint": 129, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 26, + "startPoint": 80, + "path": [ + "up" + ] + }, + { + "id": 27, + "startPoint": 134, + "path": [ + "down" + ] + }, + { + "id": 28, + "startPoint": 126, + "path": [ + "up", + "up" + ] + }, + { + "id": 29, + "startPoint": 44, + "path": [ + "left" + ] + }, + { + "id": 30, + "startPoint": 71, + "path": [ + "up" + ] + }, + { + "id": 31, + "startPoint": 92, + "path": [ + "down", + "down" + ] + }, + { + "id": 32, + "startPoint": 122, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 33, + "startPoint": 189, + "path": [ + "right", + "right" + ] + }, + { + "id": 34, + "startPoint": 153, + "path": [ + "down" + ] + }, + { + "id": 35, + "startPoint": 68, + "path": [ + "right" + ] + }, + { + "id": 36, + "startPoint": 194, + "path": [ + "up" + ] + }, + { + "id": 37, + "startPoint": 15, + "path": [ + "left" + ] + } + ] + }, + { + "levelId": 51, + "levelName": "第-949关", + "gridRows": 15, + "gridCols": 15, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 152, + "path": [ + "right", + "right", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 2, + "startPoint": 72, + "path": [ + "up", + "right", + "right" + ] + }, + { + "id": 3, + "startPoint": 157, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 4, + "startPoint": 101, + "path": [ + "down", + "down", + "down", + "down", + "left", + "left", + "left" + ] + }, + { + "id": 5, + "startPoint": 95, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 6, + "startPoint": 35, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 7, + "startPoint": 143, + "path": [ + "right", + "right" + ] + }, + { + "id": 8, + "startPoint": 216, + "path": [ + "up", + "up", + "up", + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 9, + "startPoint": 24, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 10, + "startPoint": 68, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 11, + "startPoint": 21, + "path": [ + "left", + "up" + ] + }, + { + "id": 12, + "startPoint": 98, + "path": [ + "right", + "right", + "down" + ] + }, + { + "id": 13, + "startPoint": 123, + "path": [ + "down", + "left", + "left", + "down", + "left" + ] + }, + { + "id": 14, + "startPoint": 89, + "path": [ + "down", + "left", + "left" + ] + }, + { + "id": 15, + "startPoint": 94, + "path": [ + "down", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 16, + "startPoint": 118, + "path": [ + "down", + "down", + "down", + "down", + "down", + "down", + "right" + ] + }, + { + "id": 17, + "startPoint": 78, + "path": [ + "right" + ] + }, + { + "id": 18, + "startPoint": 215, + "path": [ + "up", + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 19, + "startPoint": 223, + "path": [ + "left", + "left", + "up", + "right" + ] + }, + { + "id": 20, + "startPoint": 181, + "path": [ + "left", + "up" + ] + }, + { + "id": 21, + "startPoint": 55, + "path": [ + "left" + ] + }, + { + "id": 22, + "startPoint": 86, + "path": [ + "right", + "right", + "up" + ] + }, + { + "id": 23, + "startPoint": 47, + "path": [ + "down", + "down", + "left", + "left" + ] + }, + { + "id": 24, + "startPoint": 82, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 25, + "startPoint": 43, + "path": [ + "up", + "right" + ] + }, + { + "id": 26, + "startPoint": 18, + "path": [ + "up" + ] + }, + { + "id": 27, + "startPoint": 12, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 28, + "startPoint": 189, + "path": [ + "up" + ] + }, + { + "id": 29, + "startPoint": 92, + "path": [ + "left", + "left" + ] + }, + { + "id": 30, + "startPoint": 45, + "path": [ + "up" + ] + } + ] + }, + { + "levelId": 52, + "levelName": "第-948关", + "gridRows": 15, + "gridCols": 15, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 48, + "path": [ + "up", + "up", + "up", + "right" + ] + }, + { + "id": 2, + "startPoint": 105, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 3, + "startPoint": 223, + "path": [ + "up", + "up", + "up", + "up", + "right" + ] + }, + { + "id": 4, + "startPoint": 127, + "path": [ + "left", + "down", + "down" + ] + }, + { + "id": 5, + "startPoint": 124, + "path": [ + "left", + "down", + "down", + "down", + "left" + ] + }, + { + "id": 6, + "startPoint": 184, + "path": [ + "left", + "left", + "left", + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 7, + "startPoint": 89, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 8, + "startPoint": 72, + "path": [ + "right", + "right" + ] + }, + { + "id": 9, + "startPoint": 103, + "path": [ + "down", + "down" + ] + }, + { + "id": 10, + "startPoint": 10, + "path": [ + "down", + "down", + "down", + "down", + "right" + ] + }, + { + "id": 11, + "startPoint": 155, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 12, + "startPoint": 162, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 13, + "startPoint": 210, + "path": [ + "up", + "up" + ] + }, + { + "id": 14, + "startPoint": 190, + "path": [ + "down", + "right", + "right" + ] + }, + { + "id": 15, + "startPoint": 26, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 16, + "startPoint": 165, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 17, + "startPoint": 177, + "path": [ + "down" + ] + }, + { + "id": 18, + "startPoint": 62, + "path": [ + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 19, + "startPoint": 109, + "path": [ + "left", + "left" + ] + }, + { + "id": 20, + "startPoint": 56, + "path": [ + "up" + ] + }, + { + "id": 21, + "startPoint": 174, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 22, + "startPoint": 46, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 23, + "startPoint": 49, + "path": [ + "up", + "up" + ] + }, + { + "id": 24, + "startPoint": 137, + "path": [ + "down" + ] + }, + { + "id": 25, + "startPoint": 92, + "path": [ + "up" + ] + }, + { + "id": 26, + "startPoint": 146, + "path": [ + "left", + "left" + ] + }, + { + "id": 27, + "startPoint": 21, + "path": [ + "down", + "down" + ] + }, + { + "id": 28, + "startPoint": 142, + "path": [ + "down" + ] + }, + { + "id": 29, + "startPoint": 212, + "path": [ + "left" + ] + }, + { + "id": 30, + "startPoint": 99, + "path": [ + "up", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 31, + "startPoint": 131, + "path": [ + "up" + ] + } + ] + }, + { + "levelId": 53, + "levelName": "第-947关", + "gridRows": 15, + "gridCols": 15, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 199, + "path": [ + "down" + ] + }, + { + "id": 2, + "startPoint": 110, + "path": [ + "up", + "right", + "right", + "right", + "right", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 3, + "startPoint": 185, + "path": [ + "right", + "right", + "right", + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 4, + "startPoint": 151, + "path": [ + "left" + ] + }, + { + "id": 5, + "startPoint": 23, + "path": [ + "left", + "down", + "down", + "down" + ] + }, + { + "id": 6, + "startPoint": 220, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 7, + "startPoint": 152, + "path": [ + "right", + "right", + "right", + "right", + "right", + "right", + "up", + "right", + "right" + ] + }, + { + "id": 8, + "startPoint": 123, + "path": [ + "up", + "left", + "left" + ] + }, + { + "id": 9, + "startPoint": 209, + "path": [ + "left", + "left", + "left", + "left", + "left", + "down" + ] + }, + { + "id": 10, + "startPoint": 92, + "path": [ + "right", + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 11, + "startPoint": 13, + "path": [ + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 12, + "startPoint": 72, + "path": [ + "down", + "down", + "down", + "left", + "left", + "up", + "right", + "right", + "right" + ] + }, + { + "id": 13, + "startPoint": 46, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 14, + "startPoint": 17, + "path": [ + "up" + ] + }, + { + "id": 15, + "startPoint": 125, + "path": [ + "right", + "right", + "right", + "up", + "right" + ] + }, + { + "id": 16, + "startPoint": 166, + "path": [ + "left" + ] + }, + { + "id": 17, + "startPoint": 49, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 18, + "startPoint": 31, + "path": [ + "up", + "up" + ] + }, + { + "id": 19, + "startPoint": 43, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 20, + "startPoint": 212, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 21, + "startPoint": 55, + "path": [ + "down" + ] + }, + { + "id": 22, + "startPoint": 56, + "path": [ + "down", + "down" + ] + }, + { + "id": 23, + "startPoint": 216, + "path": [ + "up" + ] + }, + { + "id": 24, + "startPoint": 178, + "path": [ + "right", + "down" + ] + }, + { + "id": 25, + "startPoint": 28, + "path": [ + "left", + "down", + "down" + ] + }, + { + "id": 26, + "startPoint": 29, + "path": [ + "up" + ] + }, + { + "id": 27, + "startPoint": 175, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 28, + "startPoint": 141, + "path": [ + "left" + ] + }, + { + "id": 29, + "startPoint": 218, + "path": [ + "up" + ] + }, + { + "id": 30, + "startPoint": 183, + "path": [ + "right" + ] + }, + { + "id": 31, + "startPoint": 210, + "path": [ + "right" + ] + } + ] + }, + { + "levelId": 54, + "levelName": "第-946关", + "gridRows": 15, + "gridCols": 15, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 37, + "path": [ + "up", + "up", + "right", + "right", + "right" + ] + }, + { + "id": 2, + "startPoint": 128, + "path": [ + "left", + "left", + "left", + "up", + "up", + "up", + "right", + "right", + "right" + ] + }, + { + "id": 3, + "startPoint": 169, + "path": [ + "down", + "down" + ] + }, + { + "id": 4, + "startPoint": 40, + "path": [ + "up" + ] + }, + { + "id": 5, + "startPoint": 118, + "path": [ + "left", + "left", + "left", + "left", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 6, + "startPoint": 90, + "path": [ + "up" + ] + }, + { + "id": 7, + "startPoint": 193, + "path": [ + "down", + "down" + ] + }, + { + "id": 8, + "startPoint": 51, + "path": [ + "right", + "right" + ] + }, + { + "id": 9, + "startPoint": 79, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 10, + "startPoint": 48, + "path": [ + "right", + "right" + ] + }, + { + "id": 11, + "startPoint": 27, + "path": [ + "right", + "right" + ] + }, + { + "id": 12, + "startPoint": 171, + "path": [ + "right", + "right", + "right", + "down" + ] + }, + { + "id": 13, + "startPoint": 215, + "path": [ + "left", + "left" + ] + }, + { + "id": 14, + "startPoint": 138, + "path": [ + "up", + "up" + ] + }, + { + "id": 15, + "startPoint": 73, + "path": [ + "down", + "down" + ] + }, + { + "id": 16, + "startPoint": 157, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 17, + "startPoint": 62, + "path": [ + "left", + "left" + ] + }, + { + "id": 18, + "startPoint": 161, + "path": [ + "down", + "down", + "right" + ] + }, + { + "id": 19, + "startPoint": 212, + "path": [ + "left", + "up", + "up", + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 20, + "startPoint": 85, + "path": [ + "up" + ] + }, + { + "id": 21, + "startPoint": 93, + "path": [ + "right", + "down", + "down", + "down" + ] + }, + { + "id": 22, + "startPoint": 101, + "path": [ + "right" + ] + }, + { + "id": 23, + "startPoint": 58, + "path": [ + "right" + ] + }, + { + "id": 24, + "startPoint": 158, + "path": [ + "up", + "left", + "left", + "left" + ] + }, + { + "id": 25, + "startPoint": 148, + "path": [ + "down", + "down" + ] + }, + { + "id": 26, + "startPoint": 19, + "path": [ + "down" + ] + }, + { + "id": 27, + "startPoint": 221, + "path": [ + "up" + ] + }, + { + "id": 28, + "startPoint": 6, + "path": [ + "down", + "left" + ] + }, + { + "id": 29, + "startPoint": 130, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 30, + "startPoint": 41, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 31, + "startPoint": 98, + "path": [ + "left", + "left" + ] + }, + { + "id": 32, + "startPoint": 224, + "path": [ + "up" + ] + } + ] + }, + { + "levelId": 55, + "levelName": "第-945关", + "gridRows": 15, + "gridCols": 15, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 175, + "path": [ + "up", + "right", + "right", + "right" + ] + }, + { + "id": 2, + "startPoint": 48, + "path": [ + "left", + "left" + ] + }, + { + "id": 3, + "startPoint": 55, + "path": [ + "up", + "up", + "up", + "right", + "right" + ] + }, + { + "id": 4, + "startPoint": 154, + "path": [ + "up", + "left", + "left", + "up", + "up", + "up", + "up", + "up", + "right" + ] + }, + { + "id": 5, + "startPoint": 170, + "path": [ + "left", + "left", + "down", + "down", + "down", + "right", + "right" + ] + }, + { + "id": 6, + "startPoint": 60, + "path": [ + "down", + "right", + "up" + ] + }, + { + "id": 7, + "startPoint": 193, + "path": [ + "left", + "left" + ] + }, + { + "id": 8, + "startPoint": 54, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 9, + "startPoint": 111, + "path": [ + "right", + "right", + "up", + "up", + "up" + ] + }, + { + "id": 10, + "startPoint": 33, + "path": [ + "left", + "left", + "up", + "left" + ] + }, + { + "id": 11, + "startPoint": 132, + "path": [ + "left", + "left" + ] + }, + { + "id": 12, + "startPoint": 222, + "path": [ + "right", + "right" + ] + }, + { + "id": 13, + "startPoint": 23, + "path": [ + "right" + ] + }, + { + "id": 14, + "startPoint": 39, + "path": [ + "left" + ] + }, + { + "id": 15, + "startPoint": 178, + "path": [ + "left", + "left" + ] + }, + { + "id": 16, + "startPoint": 172, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 17, + "startPoint": 151, + "path": [ + "down", + "down", + "down", + "down", + "right" + ] + }, + { + "id": 18, + "startPoint": 144, + "path": [ + "up", + "left" + ] + }, + { + "id": 19, + "startPoint": 149, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 20, + "startPoint": 210, + "path": [ + "up", + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 21, + "startPoint": 78, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 22, + "startPoint": 64, + "path": [ + "up", + "up", + "up", + "right" + ] + }, + { + "id": 23, + "startPoint": 89, + "path": [ + "left", + "left", + "up", + "up", + "left" + ] + }, + { + "id": 24, + "startPoint": 158, + "path": [ + "right" + ] + }, + { + "id": 25, + "startPoint": 125, + "path": [ + "up", + "up" + ] + }, + { + "id": 26, + "startPoint": 134, + "path": [ + "left" + ] + }, + { + "id": 27, + "startPoint": 188, + "path": [ + "left", + "left", + "down", + "down", + "right", + "right" + ] + }, + { + "id": 28, + "startPoint": 115, + "path": [ + "up", + "left" + ] + }, + { + "id": 29, + "startPoint": 85, + "path": [ + "up" + ] + }, + { + "id": 30, + "startPoint": 2, + "path": [ + "down" + ] + }, + { + "id": 31, + "startPoint": 42, + "path": [ + "left" + ] + }, + { + "id": 32, + "startPoint": 204, + "path": [ + "up", + "up" + ] + } + ] + }, + { + "levelId": 56, + "levelName": "第-944关", + "gridRows": 15, + "gridCols": 15, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 93, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 2, + "startPoint": 21, + "path": [ + "up", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 3, + "startPoint": 114, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 4, + "startPoint": 167, + "path": [ + "right", + "right", + "right", + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 5, + "startPoint": 55, + "path": [ + "right", + "down", + "down", + "left", + "left" + ] + }, + { + "id": 6, + "startPoint": 191, + "path": [ + "down", + "down" + ] + }, + { + "id": 7, + "startPoint": 67, + "path": [ + "left", + "left", + "left", + "up" + ] + }, + { + "id": 8, + "startPoint": 182, + "path": [ + "down", + "down" + ] + }, + { + "id": 9, + "startPoint": 68, + "path": [ + "up", + "right" + ] + }, + { + "id": 10, + "startPoint": 189, + "path": [ + "right" + ] + }, + { + "id": 11, + "startPoint": 180, + "path": [ + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 12, + "startPoint": 48, + "path": [ + "down", + "down" + ] + }, + { + "id": 13, + "startPoint": 129, + "path": [ + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 14, + "startPoint": 81, + "path": [ + "left" + ] + }, + { + "id": 15, + "startPoint": 223, + "path": [ + "right" + ] + }, + { + "id": 16, + "startPoint": 87, + "path": [ + "down", + "down" + ] + }, + { + "id": 17, + "startPoint": 222, + "path": [ + "up", + "up", + "up", + "right", + "right", + "up", + "up" + ] + }, + { + "id": 18, + "startPoint": 110, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 19, + "startPoint": 36, + "path": [ + "left", + "left" + ] + }, + { + "id": 20, + "startPoint": 142, + "path": [ + "right", + "up" + ] + }, + { + "id": 21, + "startPoint": 183, + "path": [ + "down", + "down" + ] + }, + { + "id": 22, + "startPoint": 157, + "path": [ + "left" + ] + }, + { + "id": 23, + "startPoint": 13, + "path": [ + "down", + "down", + "right" + ] + }, + { + "id": 24, + "startPoint": 200, + "path": [ + "left" + ] + }, + { + "id": 25, + "startPoint": 210, + "path": [ + "up" + ] + }, + { + "id": 26, + "startPoint": 152, + "path": [ + "left" + ] + }, + { + "id": 27, + "startPoint": 40, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 28, + "startPoint": 124, + "path": [ + "left", + "left", + "left", + "down" + ] + }, + { + "id": 29, + "startPoint": 1, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 30, + "startPoint": 94, + "path": [ + "up" + ] + }, + { + "id": 31, + "startPoint": 27, + "path": [ + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 32, + "startPoint": 145, + "path": [ + "left" + ] + }, + { + "id": 33, + "startPoint": 16, + "path": [ + "left" + ] + } + ] + }, + { + "levelId": 57, + "levelName": "第-943关", + "gridRows": 15, + "gridCols": 15, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 148, + "path": [ + "down", + "down" + ] + }, + { + "id": 2, + "startPoint": 184, + "path": [ + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 3, + "startPoint": 62, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 4, + "startPoint": 129, + "path": [ + "up", + "up", + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 5, + "startPoint": 213, + "path": [ + "left", + "left", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 6, + "startPoint": 203, + "path": [ + "left", + "left" + ] + }, + { + "id": 7, + "startPoint": 186, + "path": [ + "left", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 8, + "startPoint": 40, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 9, + "startPoint": 137, + "path": [ + "right" + ] + }, + { + "id": 10, + "startPoint": 86, + "path": [ + "right", + "right", + "down" + ] + }, + { + "id": 11, + "startPoint": 115, + "path": [ + "right", + "up" + ] + }, + { + "id": 12, + "startPoint": 6, + "path": [ + "right" + ] + }, + { + "id": 13, + "startPoint": 209, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 14, + "startPoint": 20, + "path": [ + "down", + "down", + "right", + "right", + "right" + ] + }, + { + "id": 15, + "startPoint": 90, + "path": [ + "right", + "right", + "up" + ] + }, + { + "id": 16, + "startPoint": 70, + "path": [ + "up" + ] + }, + { + "id": 17, + "startPoint": 63, + "path": [ + "right", + "right" + ] + }, + { + "id": 18, + "startPoint": 37, + "path": [ + "right" + ] + }, + { + "id": 19, + "startPoint": 75, + "path": [ + "up" + ] + }, + { + "id": 20, + "startPoint": 161, + "path": [ + "up", + "up" + ] + }, + { + "id": 21, + "startPoint": 31, + "path": [ + "left" + ] + }, + { + "id": 22, + "startPoint": 16, + "path": [ + "left" + ] + }, + { + "id": 23, + "startPoint": 145, + "path": [ + "up" + ] + }, + { + "id": 24, + "startPoint": 183, + "path": [ + "down", + "left", + "up", + "up", + "right" + ] + }, + { + "id": 25, + "startPoint": 98, + "path": [ + "up", + "up" + ] + }, + { + "id": 26, + "startPoint": 159, + "path": [ + "up" + ] + }, + { + "id": 27, + "startPoint": 25, + "path": [ + "up" + ] + }, + { + "id": 28, + "startPoint": 18, + "path": [ + "up", + "right", + "right" + ] + }, + { + "id": 29, + "startPoint": 27, + "path": [ + "up" + ] + }, + { + "id": 30, + "startPoint": 191, + "path": [ + "right", + "right" + ] + }, + { + "id": 31, + "startPoint": 121, + "path": [ + "left" + ] + }, + { + "id": 32, + "startPoint": 26, + "path": [ + "up" + ] + }, + { + "id": 33, + "startPoint": 126, + "path": [ + "down", + "down", + "right" + ] + } + ] + }, + { + "levelId": 58, + "levelName": "第-942关", + "gridRows": 15, + "gridCols": 15, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 137, + "path": [ + "left", + "left" + ] + }, + { + "id": 2, + "startPoint": 115, + "path": [ + "left", + "left", + "left", + "left", + "left", + "left", + "left", + "down", + "down" + ] + }, + { + "id": 3, + "startPoint": 78, + "path": [ + "down" + ] + }, + { + "id": 4, + "startPoint": 214, + "path": [ + "left", + "left" + ] + }, + { + "id": 5, + "startPoint": 81, + "path": [ + "right", + "right" + ] + }, + { + "id": 6, + "startPoint": 12, + "path": [ + "left", + "left" + ] + }, + { + "id": 7, + "startPoint": 84, + "path": [ + "right", + "right", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 8, + "startPoint": 58, + "path": [ + "up", + "up", + "right" + ] + }, + { + "id": 9, + "startPoint": 8, + "path": [ + "left", + "left" + ] + }, + { + "id": 10, + "startPoint": 39, + "path": [ + "up", + "up" + ] + }, + { + "id": 11, + "startPoint": 182, + "path": [ + "left", + "left" + ] + }, + { + "id": 12, + "startPoint": 150, + "path": [ + "down" + ] + }, + { + "id": 13, + "startPoint": 47, + "path": [ + "left", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 14, + "startPoint": 36, + "path": [ + "left", + "down", + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 15, + "startPoint": 156, + "path": [ + "up", + "up", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 16, + "startPoint": 222, + "path": [ + "up", + "up" + ] + }, + { + "id": 17, + "startPoint": 145, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 18, + "startPoint": 62, + "path": [ + "right", + "right", + "up", + "up", + "up" + ] + }, + { + "id": 19, + "startPoint": 176, + "path": [ + "up", + "up" + ] + }, + { + "id": 20, + "startPoint": 164, + "path": [ + "left", + "left", + "down", + "right" + ] + }, + { + "id": 21, + "startPoint": 205, + "path": [ + "left", + "left", + "left", + "left", + "down" + ] + }, + { + "id": 22, + "startPoint": 79, + "path": [ + "right" + ] + }, + { + "id": 23, + "startPoint": 140, + "path": [ + "left" + ] + }, + { + "id": 24, + "startPoint": 184, + "path": [ + "down" + ] + }, + { + "id": 25, + "startPoint": 105, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 26, + "startPoint": 119, + "path": [ + "down" + ] + }, + { + "id": 27, + "startPoint": 117, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 28, + "startPoint": 68, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 29, + "startPoint": 174, + "path": [ + "up", + "left" + ] + }, + { + "id": 30, + "startPoint": 21, + "path": [ + "left" + ] + }, + { + "id": 31, + "startPoint": 183, + "path": [ + "down", + "left", + "left" + ] + }, + { + "id": 32, + "startPoint": 208, + "path": [ + "right" + ] + }, + { + "id": 33, + "startPoint": 107, + "path": [ + "down" + ] + }, + { + "id": 34, + "startPoint": 120, + "path": [ + "right" + ] + } + ] + }, + { + "levelId": 59, + "levelName": "第-941关", + "gridRows": 15, + "gridCols": 15, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 222, + "path": [ + "right", + "right" + ] + }, + { + "id": 2, + "startPoint": 66, + "path": [ + "left", + "left" + ] + }, + { + "id": 3, + "startPoint": 112, + "path": [ + "right", + "right", + "down", + "down", + "down", + "down", + "down", + "right" + ] + }, + { + "id": 4, + "startPoint": 187, + "path": [ + "down", + "down" + ] + }, + { + "id": 5, + "startPoint": 70, + "path": [ + "down", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 6, + "startPoint": 107, + "path": [ + "left", + "left" + ] + }, + { + "id": 7, + "startPoint": 34, + "path": [ + "right", + "right", + "right", + "right", + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 8, + "startPoint": 4, + "path": [ + "left", + "left" + ] + }, + { + "id": 9, + "startPoint": 20, + "path": [ + "right", + "right", + "up" + ] + }, + { + "id": 10, + "startPoint": 140, + "path": [ + "right", + "up", + "left", + "left", + "down" + ] + }, + { + "id": 11, + "startPoint": 103, + "path": [ + "left", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 12, + "startPoint": 76, + "path": [ + "down" + ] + }, + { + "id": 13, + "startPoint": 93, + "path": [ + "up", + "left" + ] + }, + { + "id": 14, + "startPoint": 130, + "path": [ + "right", + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 15, + "startPoint": 172, + "path": [ + "right" + ] + }, + { + "id": 16, + "startPoint": 185, + "path": [ + "down", + "down", + "right" + ] + }, + { + "id": 17, + "startPoint": 46, + "path": [ + "down" + ] + }, + { + "id": 18, + "startPoint": 157, + "path": [ + "left", + "left", + "left", + "left", + "left", + "down", + "down" + ] + }, + { + "id": 19, + "startPoint": 53, + "path": [ + "left", + "left" + ] + }, + { + "id": 20, + "startPoint": 158, + "path": [ + "up", + "up" + ] + }, + { + "id": 21, + "startPoint": 69, + "path": [ + "up" + ] + }, + { + "id": 22, + "startPoint": 203, + "path": [ + "down" + ] + }, + { + "id": 23, + "startPoint": 142, + "path": [ + "up" + ] + }, + { + "id": 24, + "startPoint": 9, + "path": [ + "left" + ] + }, + { + "id": 25, + "startPoint": 193, + "path": [ + "down" + ] + }, + { + "id": 26, + "startPoint": 98, + "path": [ + "up", + "up" + ] + }, + { + "id": 27, + "startPoint": 104, + "path": [ + "down", + "down" + ] + }, + { + "id": 28, + "startPoint": 214, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 29, + "startPoint": 219, + "path": [ + "right", + "right" + ] + }, + { + "id": 30, + "startPoint": 29, + "path": [ + "down", + "down" + ] + }, + { + "id": 31, + "startPoint": 94, + "path": [ + "up" + ] + }, + { + "id": 32, + "startPoint": 165, + "path": [ + "right" + ] + }, + { + "id": 33, + "startPoint": 121, + "path": [ + "down", + "down" + ] + }, + { + "id": 34, + "startPoint": 45, + "path": [ + "up", + "up" + ] + } + ] + }, + { + "levelId": 60, + "levelName": "第-940关", + "gridRows": 15, + "gridCols": 15, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 93, + "path": [ + "down", + "down", + "down", + "left" + ] + }, + { + "id": 2, + "startPoint": 96, + "path": [ + "right", + "right", + "right", + "up", + "up", + "left" + ] + }, + { + "id": 3, + "startPoint": 37, + "path": [ + "right", + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 4, + "startPoint": 186, + "path": [ + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 5, + "startPoint": 94, + "path": [ + "right" + ] + }, + { + "id": 6, + "startPoint": 143, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 7, + "startPoint": 81, + "path": [ + "right", + "right" + ] + }, + { + "id": 8, + "startPoint": 134, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 9, + "startPoint": 58, + "path": [ + "right" + ] + }, + { + "id": 10, + "startPoint": 222, + "path": [ + "up", + "up", + "left", + "left", + "left" + ] + }, + { + "id": 11, + "startPoint": 48, + "path": [ + "left", + "up" + ] + }, + { + "id": 12, + "startPoint": 26, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 13, + "startPoint": 209, + "path": [ + "left" + ] + }, + { + "id": 14, + "startPoint": 129, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 15, + "startPoint": 126, + "path": [ + "left", + "left" + ] + }, + { + "id": 16, + "startPoint": 221, + "path": [ + "up", + "left", + "left", + "left", + "up", + "left" + ] + }, + { + "id": 17, + "startPoint": 101, + "path": [ + "right", + "right" + ] + }, + { + "id": 18, + "startPoint": 12, + "path": [ + "right", + "right" + ] + }, + { + "id": 19, + "startPoint": 17, + "path": [ + "left", + "left" + ] + }, + { + "id": 20, + "startPoint": 86, + "path": [ + "right", + "right" + ] + }, + { + "id": 21, + "startPoint": 6, + "path": [ + "down", + "left", + "left" + ] + }, + { + "id": 22, + "startPoint": 60, + "path": [ + "right", + "right", + "right", + "right", + "up", + "up" + ] + }, + { + "id": 23, + "startPoint": 153, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 24, + "startPoint": 65, + "path": [ + "up", + "up" + ] + }, + { + "id": 25, + "startPoint": 217, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 26, + "startPoint": 195, + "path": [ + "up", + "up" + ] + }, + { + "id": 27, + "startPoint": 106, + "path": [ + "up", + "up", + "left" + ] + }, + { + "id": 28, + "startPoint": 23, + "path": [ + "right", + "right" + ] + }, + { + "id": 29, + "startPoint": 157, + "path": [ + "left" + ] + }, + { + "id": 30, + "startPoint": 198, + "path": [ + "down" + ] + }, + { + "id": 31, + "startPoint": 130, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 32, + "startPoint": 112, + "path": [ + "right", + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 33, + "startPoint": 71, + "path": [ + "right", + "right" + ] + }, + { + "id": 34, + "startPoint": 105, + "path": [ + "up" + ] + }, + { + "id": 35, + "startPoint": 85, + "path": [ + "down" + ] + } + ] + }, + { + "levelId": 61, + "levelName": "第-939关", + "gridRows": 15, + "gridCols": 15, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 172, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 2, + "startPoint": 162, + "path": [ + "up", + "up" + ] + }, + { + "id": 3, + "startPoint": 160, + "path": [ + "up", + "up", + "up", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 4, + "startPoint": 103, + "path": [ + "left", + "left", + "left", + "up" + ] + }, + { + "id": 5, + "startPoint": 95, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 6, + "startPoint": 181, + "path": [ + "down", + "down" + ] + }, + { + "id": 7, + "startPoint": 188, + "path": [ + "down", + "down", + "right", + "right", + "up", + "up", + "up" + ] + }, + { + "id": 8, + "startPoint": 143, + "path": [ + "right", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 9, + "startPoint": 17, + "path": [ + "up" + ] + }, + { + "id": 10, + "startPoint": 77, + "path": [ + "right", + "right" + ] + }, + { + "id": 11, + "startPoint": 165, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 12, + "startPoint": 13, + "path": [ + "right" + ] + }, + { + "id": 13, + "startPoint": 6, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 14, + "startPoint": 74, + "path": [ + "up", + "up" + ] + }, + { + "id": 15, + "startPoint": 108, + "path": [ + "up" + ] + }, + { + "id": 16, + "startPoint": 213, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 17, + "startPoint": 10, + "path": [ + "right" + ] + }, + { + "id": 18, + "startPoint": 125, + "path": [ + "down", + "down", + "down", + "right" + ] + }, + { + "id": 19, + "startPoint": 5, + "path": [ + "left", + "left" + ] + }, + { + "id": 20, + "startPoint": 35, + "path": [ + "right", + "right", + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 21, + "startPoint": 83, + "path": [ + "right" + ] + }, + { + "id": 22, + "startPoint": 53, + "path": [ + "left", + "left" + ] + }, + { + "id": 23, + "startPoint": 87, + "path": [ + "right", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 24, + "startPoint": 33, + "path": [ + "left", + "left" + ] + }, + { + "id": 25, + "startPoint": 158, + "path": [ + "left" + ] + }, + { + "id": 26, + "startPoint": 207, + "path": [ + "down" + ] + }, + { + "id": 27, + "startPoint": 71, + "path": [ + "right" + ] + }, + { + "id": 28, + "startPoint": 123, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 29, + "startPoint": 154, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 30, + "startPoint": 82, + "path": [ + "up" + ] + }, + { + "id": 31, + "startPoint": 161, + "path": [ + "up" + ] + }, + { + "id": 32, + "startPoint": 107, + "path": [ + "up" + ] + }, + { + "id": 33, + "startPoint": 96, + "path": [ + "right", + "down", + "down" + ] + }, + { + "id": 34, + "startPoint": 164, + "path": [ + "left" + ] + }, + { + "id": 35, + "startPoint": 136, + "path": [ + "left" + ] + } + ] + }, + { + "levelId": 62, + "levelName": "第-938关", + "gridRows": 15, + "gridCols": 15, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 172, + "path": [ + "up", + "up" + ] + }, + { + "id": 2, + "startPoint": 84, + "path": [ + "down", + "down", + "down", + "left", + "left" + ] + }, + { + "id": 3, + "startPoint": 141, + "path": [ + "left", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 4, + "startPoint": 217, + "path": [ + "up", + "up" + ] + }, + { + "id": 5, + "startPoint": 115, + "path": [ + "up", + "right", + "right", + "down", + "down", + "down", + "down", + "down", + "right" + ] + }, + { + "id": 6, + "startPoint": 173, + "path": [ + "right", + "down", + "left" + ] + }, + { + "id": 7, + "startPoint": 53, + "path": [ + "right", + "up", + "up" + ] + }, + { + "id": 8, + "startPoint": 191, + "path": [ + "left" + ] + }, + { + "id": 9, + "startPoint": 7, + "path": [ + "right", + "right" + ] + }, + { + "id": 10, + "startPoint": 77, + "path": [ + "right", + "down", + "down" + ] + }, + { + "id": 11, + "startPoint": 156, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 12, + "startPoint": 199, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 13, + "startPoint": 208, + "path": [ + "down" + ] + }, + { + "id": 14, + "startPoint": 2, + "path": [ + "down", + "left" + ] + }, + { + "id": 15, + "startPoint": 133, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 16, + "startPoint": 79, + "path": [ + "down", + "down", + "right", + "right" + ] + }, + { + "id": 17, + "startPoint": 151, + "path": [ + "left" + ] + }, + { + "id": 18, + "startPoint": 34, + "path": [ + "down", + "down", + "right", + "right" + ] + }, + { + "id": 19, + "startPoint": 159, + "path": [ + "right", + "up", + "up" + ] + }, + { + "id": 20, + "startPoint": 22, + "path": [ + "down", + "down", + "down", + "down", + "down", + "left", + "left" + ] + }, + { + "id": 21, + "startPoint": 25, + "path": [ + "up" + ] + }, + { + "id": 22, + "startPoint": 36, + "path": [ + "left" + ] + }, + { + "id": 23, + "startPoint": 3, + "path": [ + "down", + "down" + ] + }, + { + "id": 24, + "startPoint": 207, + "path": [ + "left" + ] + }, + { + "id": 25, + "startPoint": 76, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 26, + "startPoint": 165, + "path": [ + "down", + "down" + ] + }, + { + "id": 27, + "startPoint": 194, + "path": [ + "down", + "down" + ] + }, + { + "id": 28, + "startPoint": 0, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 29, + "startPoint": 121, + "path": [ + "right", + "up" + ] + }, + { + "id": 30, + "startPoint": 106, + "path": [ + "left" + ] + }, + { + "id": 31, + "startPoint": 134, + "path": [ + "down", + "down", + "left" + ] + }, + { + "id": 32, + "startPoint": 59, + "path": [ + "down" + ] + }, + { + "id": 33, + "startPoint": 212, + "path": [ + "left", + "left" + ] + }, + { + "id": 34, + "startPoint": 29, + "path": [ + "up" + ] + }, + { + "id": 35, + "startPoint": 153, + "path": [ + "down", + "left", + "down" + ] + }, + { + "id": 36, + "startPoint": 51, + "path": [ + "left" + ] + } + ] + }, + { + "levelId": 63, + "levelName": "第-937关", + "gridRows": 15, + "gridCols": 15, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 118, + "path": [ + "left", + "up", + "left" + ] + }, + { + "id": 2, + "startPoint": 46, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 3, + "startPoint": 23, + "path": [ + "down", + "left", + "down" + ] + }, + { + "id": 4, + "startPoint": 169, + "path": [ + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 5, + "startPoint": 130, + "path": [ + "down", + "right", + "right", + "right" + ] + }, + { + "id": 6, + "startPoint": 106, + "path": [ + "left" + ] + }, + { + "id": 7, + "startPoint": 177, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 8, + "startPoint": 54, + "path": [ + "up", + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 9, + "startPoint": 92, + "path": [ + "down", + "down", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 10, + "startPoint": 91, + "path": [ + "left" + ] + }, + { + "id": 11, + "startPoint": 196, + "path": [ + "up", + "left" + ] + }, + { + "id": 12, + "startPoint": 63, + "path": [ + "up", + "right", + "down", + "down", + "down" + ] + }, + { + "id": 13, + "startPoint": 109, + "path": [ + "left" + ] + }, + { + "id": 14, + "startPoint": 188, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 15, + "startPoint": 151, + "path": [ + "right", + "down", + "left", + "left" + ] + }, + { + "id": 16, + "startPoint": 74, + "path": [ + "down" + ] + }, + { + "id": 17, + "startPoint": 27, + "path": [ + "up" + ] + }, + { + "id": 18, + "startPoint": 220, + "path": [ + "right" + ] + }, + { + "id": 19, + "startPoint": 224, + "path": [ + "up", + "left" + ] + }, + { + "id": 20, + "startPoint": 156, + "path": [ + "up", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 21, + "startPoint": 34, + "path": [ + "up", + "up" + ] + }, + { + "id": 22, + "startPoint": 78, + "path": [ + "down" + ] + }, + { + "id": 23, + "startPoint": 24, + "path": [ + "up" + ] + }, + { + "id": 24, + "startPoint": 66, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 25, + "startPoint": 204, + "path": [ + "down" + ] + }, + { + "id": 26, + "startPoint": 96, + "path": [ + "right", + "right", + "down", + "down", + "down" + ] + }, + { + "id": 27, + "startPoint": 175, + "path": [ + "up", + "right", + "right" + ] + }, + { + "id": 28, + "startPoint": 20, + "path": [ + "up" + ] + }, + { + "id": 29, + "startPoint": 81, + "path": [ + "left" + ] + }, + { + "id": 30, + "startPoint": 116, + "path": [ + "left", + "left" + ] + }, + { + "id": 31, + "startPoint": 13, + "path": [ + "right" + ] + }, + { + "id": 32, + "startPoint": 61, + "path": [ + "right" + ] + }, + { + "id": 33, + "startPoint": 159, + "path": [ + "left", + "left" + ] + }, + { + "id": 34, + "startPoint": 72, + "path": [ + "left", + "left", + "up" + ] + }, + { + "id": 35, + "startPoint": 26, + "path": [ + "up" + ] + }, + { + "id": 36, + "startPoint": 206, + "path": [ + "left" + ] + } + ] + }, + { + "levelId": 64, + "levelName": "第-936关", + "gridRows": 15, + "gridCols": 15, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 121, + "path": [ + "up", + "up", + "right", + "right", + "right" + ] + }, + { + "id": 2, + "startPoint": 196, + "path": [ + "left" + ] + }, + { + "id": 3, + "startPoint": 212, + "path": [ + "up", + "up", + "up", + "left", + "left" + ] + }, + { + "id": 4, + "startPoint": 24, + "path": [ + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 5, + "startPoint": 119, + "path": [ + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 6, + "startPoint": 158, + "path": [ + "right", + "down", + "left", + "left", + "up", + "up" + ] + }, + { + "id": 7, + "startPoint": 103, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 8, + "startPoint": 95, + "path": [ + "down", + "down", + "down", + "right" + ] + }, + { + "id": 9, + "startPoint": 81, + "path": [ + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 10, + "startPoint": 72, + "path": [ + "left", + "left", + "left", + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 11, + "startPoint": 193, + "path": [ + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 12, + "startPoint": 47, + "path": [ + "left", + "left" + ] + }, + { + "id": 13, + "startPoint": 23, + "path": [ + "up" + ] + }, + { + "id": 14, + "startPoint": 204, + "path": [ + "down", + "right" + ] + }, + { + "id": 15, + "startPoint": 206, + "path": [ + "down" + ] + }, + { + "id": 16, + "startPoint": 51, + "path": [ + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 17, + "startPoint": 21, + "path": [ + "left", + "left", + "up" + ] + }, + { + "id": 18, + "startPoint": 169, + "path": [ + "up", + "up", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 19, + "startPoint": 62, + "path": [ + "right" + ] + }, + { + "id": 20, + "startPoint": 171, + "path": [ + "left" + ] + }, + { + "id": 21, + "startPoint": 68, + "path": [ + "down" + ] + }, + { + "id": 22, + "startPoint": 41, + "path": [ + "right" + ] + }, + { + "id": 23, + "startPoint": 16, + "path": [ + "right", + "right" + ] + }, + { + "id": 24, + "startPoint": 202, + "path": [ + "up" + ] + }, + { + "id": 25, + "startPoint": 123, + "path": [ + "right" + ] + }, + { + "id": 26, + "startPoint": 185, + "path": [ + "down", + "down", + "left", + "left" + ] + }, + { + "id": 27, + "startPoint": 90, + "path": [ + "up", + "up" + ] + }, + { + "id": 28, + "startPoint": 146, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 29, + "startPoint": 64, + "path": [ + "up", + "up" + ] + }, + { + "id": 30, + "startPoint": 188, + "path": [ + "down", + "down" + ] + }, + { + "id": 31, + "startPoint": 22, + "path": [ + "down", + "right", + "right", + "right" + ] + }, + { + "id": 32, + "startPoint": 113, + "path": [ + "down", + "down" + ] + }, + { + "id": 33, + "startPoint": 130, + "path": [ + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 34, + "startPoint": 149, + "path": [ + "up" + ] + }, + { + "id": 35, + "startPoint": 96, + "path": [ + "down", + "down" + ] + }, + { + "id": 36, + "startPoint": 117, + "path": [ + "down", + "down", + "down", + "down", + "left", + "up" + ] + }, + { + "id": 37, + "startPoint": 36, + "path": [ + "left" + ] + } + ] + }, + { + "levelId": 65, + "levelName": "第-935关", + "gridRows": 15, + "gridCols": 15, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 53, + "path": [ + "up", + "left", + "left", + "up" + ] + }, + { + "id": 2, + "startPoint": 20, + "path": [ + "up" + ] + }, + { + "id": 3, + "startPoint": 178, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 4, + "startPoint": 198, + "path": [ + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 5, + "startPoint": 114, + "path": [ + "right", + "up", + "up", + "up", + "right", + "right", + "right" + ] + }, + { + "id": 6, + "startPoint": 142, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 7, + "startPoint": 158, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 8, + "startPoint": 94, + "path": [ + "right", + "up", + "up", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 9, + "startPoint": 33, + "path": [ + "up", + "left", + "left", + "up" + ] + }, + { + "id": 10, + "startPoint": 212, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 11, + "startPoint": 170, + "path": [ + "left" + ] + }, + { + "id": 12, + "startPoint": 160, + "path": [ + "up", + "right", + "right", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 13, + "startPoint": 84, + "path": [ + "down" + ] + }, + { + "id": 14, + "startPoint": 122, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 15, + "startPoint": 127, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 16, + "startPoint": 110, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 17, + "startPoint": 82, + "path": [ + "up", + "left" + ] + }, + { + "id": 18, + "startPoint": 188, + "path": [ + "right", + "right", + "right", + "up", + "up" + ] + }, + { + "id": 19, + "startPoint": 217, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 20, + "startPoint": 29, + "path": [ + "down", + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 21, + "startPoint": 208, + "path": [ + "left", + "left", + "down" + ] + }, + { + "id": 22, + "startPoint": 50, + "path": [ + "up", + "left" + ] + }, + { + "id": 23, + "startPoint": 55, + "path": [ + "left", + "up", + "up", + "up" + ] + }, + { + "id": 24, + "startPoint": 134, + "path": [ + "down" + ] + }, + { + "id": 25, + "startPoint": 184, + "path": [ + "down" + ] + }, + { + "id": 26, + "startPoint": 30, + "path": [ + "up", + "up" + ] + }, + { + "id": 27, + "startPoint": 25, + "path": [ + "right", + "up" + ] + }, + { + "id": 28, + "startPoint": 166, + "path": [ + "left", + "down", + "down", + "down" + ] + }, + { + "id": 29, + "startPoint": 152, + "path": [ + "left", + "left", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 30, + "startPoint": 83, + "path": [ + "down" + ] + }, + { + "id": 31, + "startPoint": 109, + "path": [ + "down" + ] + }, + { + "id": 32, + "startPoint": 185, + "path": [ + "right", + "right" + ] + }, + { + "id": 33, + "startPoint": 42, + "path": [ + "up", + "up" + ] + }, + { + "id": 34, + "startPoint": 200, + "path": [ + "right", + "right", + "right", + "right", + "right", + "down" + ] + }, + { + "id": 35, + "startPoint": 7, + "path": [ + "left" + ] + } + ] + }, + { + "levelId": 66, + "levelName": "第-934关", + "gridRows": 15, + "gridCols": 15, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 203, + "path": [ + "right", + "right", + "up", + "left" + ] + }, + { + "id": 2, + "startPoint": 15, + "path": [ + "right", + "right", + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 3, + "startPoint": 63, + "path": [ + "left", + "left", + "left", + "up", + "up" + ] + }, + { + "id": 4, + "startPoint": 79, + "path": [ + "up", + "up", + "up", + "left", + "left" + ] + }, + { + "id": 5, + "startPoint": 118, + "path": [ + "up", + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 6, + "startPoint": 160, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 7, + "startPoint": 38, + "path": [ + "down", + "down", + "left", + "left", + "left" + ] + }, + { + "id": 8, + "startPoint": 173, + "path": [ + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 9, + "startPoint": 151, + "path": [ + "left" + ] + }, + { + "id": 10, + "startPoint": 133, + "path": [ + "right" + ] + }, + { + "id": 11, + "startPoint": 175, + "path": [ + "right", + "right" + ] + }, + { + "id": 12, + "startPoint": 171, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 13, + "startPoint": 9, + "path": [ + "right", + "right", + "down", + "down", + "right" + ] + }, + { + "id": 14, + "startPoint": 116, + "path": [ + "down", + "down" + ] + }, + { + "id": 15, + "startPoint": 109, + "path": [ + "right", + "down", + "left", + "left", + "up", + "up", + "up" + ] + }, + { + "id": 16, + "startPoint": 217, + "path": [ + "up", + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 17, + "startPoint": 181, + "path": [ + "left", + "down" + ] + }, + { + "id": 18, + "startPoint": 44, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 19, + "startPoint": 211, + "path": [ + "up" + ] + }, + { + "id": 20, + "startPoint": 72, + "path": [ + "left", + "up" + ] + }, + { + "id": 21, + "startPoint": 55, + "path": [ + "left", + "up", + "up" + ] + }, + { + "id": 22, + "startPoint": 152, + "path": [ + "up", + "left", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 23, + "startPoint": 6, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 24, + "startPoint": 212, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 25, + "startPoint": 185, + "path": [ + "down" + ] + }, + { + "id": 26, + "startPoint": 155, + "path": [ + "down" + ] + }, + { + "id": 27, + "startPoint": 218, + "path": [ + "right", + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 28, + "startPoint": 75, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 29, + "startPoint": 77, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 30, + "startPoint": 191, + "path": [ + "down" + ] + }, + { + "id": 31, + "startPoint": 199, + "path": [ + "left", + "left" + ] + }, + { + "id": 32, + "startPoint": 178, + "path": [ + "right" + ] + }, + { + "id": 33, + "startPoint": 84, + "path": [ + "right", + "right" + ] + }, + { + "id": 34, + "startPoint": 96, + "path": [ + "down" + ] + }, + { + "id": 35, + "startPoint": 51, + "path": [ + "up" + ] + }, + { + "id": 36, + "startPoint": 192, + "path": [ + "right", + "right" + ] + }, + { + "id": 37, + "startPoint": 100, + "path": [ + "right", + "right" + ] + }, + { + "id": 38, + "startPoint": 8, + "path": [ + "left" + ] + } + ] + }, + { + "levelId": 67, + "levelName": "第-933关", + "gridRows": 15, + "gridCols": 15, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 113, + "path": [ + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 2, + "startPoint": 89, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 3, + "startPoint": 140, + "path": [ + "right", + "up" + ] + }, + { + "id": 4, + "startPoint": 44, + "path": [ + "down", + "left", + "left", + "up", + "up", + "up" + ] + }, + { + "id": 5, + "startPoint": 214, + "path": [ + "up", + "up", + "up", + "up", + "right" + ] + }, + { + "id": 6, + "startPoint": 21, + "path": [ + "up" + ] + }, + { + "id": 7, + "startPoint": 219, + "path": [ + "left", + "left", + "left", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 8, + "startPoint": 125, + "path": [ + "up", + "up", + "up", + "right", + "right" + ] + }, + { + "id": 9, + "startPoint": 31, + "path": [ + "up", + "up" + ] + }, + { + "id": 10, + "startPoint": 40, + "path": [ + "left", + "up", + "up" + ] + }, + { + "id": 11, + "startPoint": 192, + "path": [ + "down", + "down" + ] + }, + { + "id": 12, + "startPoint": 8, + "path": [ + "left" + ] + }, + { + "id": 13, + "startPoint": 105, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 14, + "startPoint": 194, + "path": [ + "left", + "down" + ] + }, + { + "id": 15, + "startPoint": 78, + "path": [ + "right" + ] + }, + { + "id": 16, + "startPoint": 160, + "path": [ + "right", + "right", + "down" + ] + }, + { + "id": 17, + "startPoint": 147, + "path": [ + "up", + "up", + "up", + "up", + "right" + ] + }, + { + "id": 18, + "startPoint": 36, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 19, + "startPoint": 75, + "path": [ + "right", + "right" + ] + }, + { + "id": 20, + "startPoint": 168, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 21, + "startPoint": 121, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 22, + "startPoint": 61, + "path": [ + "up" + ] + }, + { + "id": 23, + "startPoint": 144, + "path": [ + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 24, + "startPoint": 163, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 25, + "startPoint": 11, + "path": [ + "left" + ] + }, + { + "id": 26, + "startPoint": 158, + "path": [ + "down", + "down", + "right", + "right", + "down" + ] + }, + { + "id": 27, + "startPoint": 109, + "path": [ + "left", + "left" + ] + }, + { + "id": 28, + "startPoint": 182, + "path": [ + "right" + ] + }, + { + "id": 29, + "startPoint": 136, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 30, + "startPoint": 142, + "path": [ + "right" + ] + }, + { + "id": 31, + "startPoint": 70, + "path": [ + "right", + "down", + "down", + "down", + "left", + "down", + "down" + ] + }, + { + "id": 32, + "startPoint": 64, + "path": [ + "left", + "left" + ] + }, + { + "id": 33, + "startPoint": 181, + "path": [ + "left" + ] + }, + { + "id": 34, + "startPoint": 28, + "path": [ + "up" + ] + }, + { + "id": 35, + "startPoint": 198, + "path": [ + "down" + ] + }, + { + "id": 36, + "startPoint": 211, + "path": [ + "right" + ] + }, + { + "id": 37, + "startPoint": 197, + "path": [ + "left" + ] + }, + { + "id": 38, + "startPoint": 60, + "path": [ + "up", + "up", + "up", + "up" + ] + } + ] + }, + { + "levelId": 68, + "levelName": "第-932关", + "gridRows": 15, + "gridCols": 15, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 106, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 2, + "startPoint": 189, + "path": [ + "right", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 3, + "startPoint": 177, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 4, + "startPoint": 41, + "path": [ + "up", + "up" + ] + }, + { + "id": 5, + "startPoint": 46, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 6, + "startPoint": 89, + "path": [ + "left", + "down" + ] + }, + { + "id": 7, + "startPoint": 138, + "path": [ + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 8, + "startPoint": 156, + "path": [ + "left", + "left" + ] + }, + { + "id": 9, + "startPoint": 99, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 10, + "startPoint": 69, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 11, + "startPoint": 159, + "path": [ + "down" + ] + }, + { + "id": 12, + "startPoint": 93, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 13, + "startPoint": 6, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 14, + "startPoint": 127, + "path": [ + "up", + "right", + "up" + ] + }, + { + "id": 15, + "startPoint": 115, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 16, + "startPoint": 142, + "path": [ + "right", + "right" + ] + }, + { + "id": 17, + "startPoint": 123, + "path": [ + "up" + ] + }, + { + "id": 18, + "startPoint": 107, + "path": [ + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 19, + "startPoint": 21, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 20, + "startPoint": 212, + "path": [ + "up", + "up", + "left", + "left" + ] + }, + { + "id": 21, + "startPoint": 201, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 22, + "startPoint": 14, + "path": [ + "left", + "left" + ] + }, + { + "id": 23, + "startPoint": 81, + "path": [ + "down", + "down", + "down", + "down", + "left", + "left" + ] + }, + { + "id": 24, + "startPoint": 149, + "path": [ + "up" + ] + }, + { + "id": 25, + "startPoint": 178, + "path": [ + "right" + ] + }, + { + "id": 26, + "startPoint": 73, + "path": [ + "left", + "left", + "up" + ] + }, + { + "id": 27, + "startPoint": 215, + "path": [ + "up", + "up", + "right", + "right", + "right" + ] + }, + { + "id": 28, + "startPoint": 195, + "path": [ + "right" + ] + }, + { + "id": 29, + "startPoint": 35, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 30, + "startPoint": 75, + "path": [ + "up" + ] + }, + { + "id": 31, + "startPoint": 16, + "path": [ + "down" + ] + }, + { + "id": 32, + "startPoint": 82, + "path": [ + "down" + ] + }, + { + "id": 33, + "startPoint": 43, + "path": [ + "up" + ] + }, + { + "id": 34, + "startPoint": 217, + "path": [ + "right" + ] + }, + { + "id": 35, + "startPoint": 79, + "path": [ + "right" + ] + }, + { + "id": 36, + "startPoint": 162, + "path": [ + "right" + ] + }, + { + "id": 37, + "startPoint": 150, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 38, + "startPoint": 191, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 39, + "startPoint": 184, + "path": [ + "up", + "right", + "right", + "right", + "right" + ] + } + ] + }, + { + "levelId": 69, + "levelName": "第-931关", + "gridRows": 15, + "gridCols": 15, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 188, + "path": [ + "left", + "left" + ] + }, + { + "id": 2, + "startPoint": 77, + "path": [ + "right", + "up", + "up" + ] + }, + { + "id": 3, + "startPoint": 204, + "path": [ + "right", + "right", + "right", + "right", + "up", + "up", + "up" + ] + }, + { + "id": 4, + "startPoint": 159, + "path": [ + "down", + "right", + "right" + ] + }, + { + "id": 5, + "startPoint": 65, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 6, + "startPoint": 31, + "path": [ + "left", + "down", + "right", + "right" + ] + }, + { + "id": 7, + "startPoint": 42, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 8, + "startPoint": 152, + "path": [ + "right", + "right", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 9, + "startPoint": 25, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 10, + "startPoint": 85, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 11, + "startPoint": 33, + "path": [ + "up", + "up" + ] + }, + { + "id": 12, + "startPoint": 158, + "path": [ + "down" + ] + }, + { + "id": 13, + "startPoint": 92, + "path": [ + "left", + "left" + ] + }, + { + "id": 14, + "startPoint": 101, + "path": [ + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 15, + "startPoint": 191, + "path": [ + "right" + ] + }, + { + "id": 16, + "startPoint": 146, + "path": [ + "up", + "up", + "right", + "right", + "right" + ] + }, + { + "id": 17, + "startPoint": 2, + "path": [ + "left", + "left" + ] + }, + { + "id": 18, + "startPoint": 88, + "path": [ + "right", + "down" + ] + }, + { + "id": 19, + "startPoint": 121, + "path": [ + "left" + ] + }, + { + "id": 20, + "startPoint": 142, + "path": [ + "right" + ] + }, + { + "id": 21, + "startPoint": 160, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 22, + "startPoint": 6, + "path": [ + "left", + "left" + ] + }, + { + "id": 23, + "startPoint": 151, + "path": [ + "left" + ] + }, + { + "id": 24, + "startPoint": 222, + "path": [ + "left" + ] + }, + { + "id": 25, + "startPoint": 60, + "path": [ + "down" + ] + }, + { + "id": 26, + "startPoint": 156, + "path": [ + "up", + "up", + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 27, + "startPoint": 164, + "path": [ + "down" + ] + }, + { + "id": 28, + "startPoint": 37, + "path": [ + "right", + "right" + ] + }, + { + "id": 29, + "startPoint": 13, + "path": [ + "down", + "right" + ] + }, + { + "id": 30, + "startPoint": 74, + "path": [ + "up", + "up" + ] + }, + { + "id": 31, + "startPoint": 109, + "path": [ + "up", + "left", + "down", + "down" + ] + }, + { + "id": 32, + "startPoint": 170, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 33, + "startPoint": 166, + "path": [ + "down", + "down", + "right", + "right" + ] + }, + { + "id": 34, + "startPoint": 211, + "path": [ + "left" + ] + }, + { + "id": 35, + "startPoint": 124, + "path": [ + "down" + ] + }, + { + "id": 36, + "startPoint": 203, + "path": [ + "down" + ] + }, + { + "id": 37, + "startPoint": 99, + "path": [ + "down", + "down" + ] + }, + { + "id": 38, + "startPoint": 83, + "path": [ + "down" + ] + } + ] + }, + { + "levelId": 70, + "levelName": "第-930关", + "gridRows": 15, + "gridCols": 15, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 38, + "path": [ + "up", + "up" + ] + }, + { + "id": 2, + "startPoint": 153, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 3, + "startPoint": 163, + "path": [ + "right", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 4, + "startPoint": 202, + "path": [ + "down", + "left", + "left" + ] + }, + { + "id": 5, + "startPoint": 71, + "path": [ + "down", + "right", + "up", + "right", + "right" + ] + }, + { + "id": 6, + "startPoint": 105, + "path": [ + "right", + "right", + "up", + "up" + ] + }, + { + "id": 7, + "startPoint": 28, + "path": [ + "left", + "left", + "up" + ] + }, + { + "id": 8, + "startPoint": 169, + "path": [ + "down", + "down" + ] + }, + { + "id": 9, + "startPoint": 58, + "path": [ + "up" + ] + }, + { + "id": 10, + "startPoint": 42, + "path": [ + "down" + ] + }, + { + "id": 11, + "startPoint": 173, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 12, + "startPoint": 135, + "path": [ + "down", + "down" + ] + }, + { + "id": 13, + "startPoint": 63, + "path": [ + "left", + "up" + ] + }, + { + "id": 14, + "startPoint": 116, + "path": [ + "right", + "right", + "up", + "up" + ] + }, + { + "id": 15, + "startPoint": 85, + "path": [ + "left", + "left", + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 16, + "startPoint": 68, + "path": [ + "right", + "right" + ] + }, + { + "id": 17, + "startPoint": 96, + "path": [ + "down", + "down", + "down", + "right" + ] + }, + { + "id": 18, + "startPoint": 159, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 19, + "startPoint": 204, + "path": [ + "left" + ] + }, + { + "id": 20, + "startPoint": 123, + "path": [ + "up", + "right", + "right", + "down", + "down", + "down" + ] + }, + { + "id": 21, + "startPoint": 186, + "path": [ + "left" + ] + }, + { + "id": 22, + "startPoint": 131, + "path": [ + "down" + ] + }, + { + "id": 23, + "startPoint": 182, + "path": [ + "left", + "left" + ] + }, + { + "id": 24, + "startPoint": 49, + "path": [ + "left" + ] + }, + { + "id": 25, + "startPoint": 54, + "path": [ + "right", + "right" + ] + }, + { + "id": 26, + "startPoint": 80, + "path": [ + "right", + "right" + ] + }, + { + "id": 27, + "startPoint": 2, + "path": [ + "right", + "down", + "left", + "left", + "left" + ] + }, + { + "id": 28, + "startPoint": 64, + "path": [ + "right", + "right", + "right", + "up", + "left", + "left" + ] + }, + { + "id": 29, + "startPoint": 20, + "path": [ + "down" + ] + }, + { + "id": 30, + "startPoint": 24, + "path": [ + "down", + "right", + "up", + "up" + ] + }, + { + "id": 31, + "startPoint": 178, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 32, + "startPoint": 75, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 33, + "startPoint": 78, + "path": [ + "down" + ] + }, + { + "id": 34, + "startPoint": 112, + "path": [ + "up" + ] + }, + { + "id": 35, + "startPoint": 149, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 36, + "startPoint": 212, + "path": [ + "left", + "left" + ] + }, + { + "id": 37, + "startPoint": 6, + "path": [ + "down", + "down" + ] + }, + { + "id": 38, + "startPoint": 132, + "path": [ + "right" + ] + }, + { + "id": 39, + "startPoint": 114, + "path": [ + "down", + "down" + ] + }, + { + "id": 40, + "startPoint": 100, + "path": [ + "left" + ] + } + ] + }, + { + "levelId": 71, + "levelName": "第-929关", + "gridRows": 15, + "gridCols": 15, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 2, + "path": [ + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 2, + "startPoint": 119, + "path": [ + "up", + "up", + "up", + "up", + "up", + "left", + "up", + "up" + ] + }, + { + "id": 3, + "startPoint": 48, + "path": [ + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 4, + "startPoint": 166, + "path": [ + "up", + "up", + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 5, + "startPoint": 8, + "path": [ + "down", + "down" + ] + }, + { + "id": 6, + "startPoint": 217, + "path": [ + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 7, + "startPoint": 132, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 8, + "startPoint": 110, + "path": [ + "down" + ] + }, + { + "id": 9, + "startPoint": 158, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 10, + "startPoint": 128, + "path": [ + "down", + "right", + "right", + "down", + "down" + ] + }, + { + "id": 11, + "startPoint": 116, + "path": [ + "up", + "up", + "up", + "up", + "right", + "right", + "down" + ] + }, + { + "id": 12, + "startPoint": 193, + "path": [ + "down", + "down" + ] + }, + { + "id": 13, + "startPoint": 211, + "path": [ + "left" + ] + }, + { + "id": 14, + "startPoint": 37, + "path": [ + "up" + ] + }, + { + "id": 15, + "startPoint": 191, + "path": [ + "right" + ] + }, + { + "id": 16, + "startPoint": 169, + "path": [ + "left", + "left" + ] + }, + { + "id": 17, + "startPoint": 60, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 18, + "startPoint": 55, + "path": [ + "down", + "down", + "down", + "left", + "left" + ] + }, + { + "id": 19, + "startPoint": 202, + "path": [ + "left", + "left", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 20, + "startPoint": 178, + "path": [ + "right" + ] + }, + { + "id": 21, + "startPoint": 84, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 22, + "startPoint": 188, + "path": [ + "down", + "down" + ] + }, + { + "id": 23, + "startPoint": 182, + "path": [ + "left", + "left" + ] + }, + { + "id": 24, + "startPoint": 64, + "path": [ + "left", + "left" + ] + }, + { + "id": 25, + "startPoint": 14, + "path": [ + "down" + ] + }, + { + "id": 26, + "startPoint": 94, + "path": [ + "left", + "left", + "left", + "left", + "up" + ] + }, + { + "id": 27, + "startPoint": 80, + "path": [ + "up" + ] + }, + { + "id": 28, + "startPoint": 21, + "path": [ + "down" + ] + }, + { + "id": 29, + "startPoint": 11, + "path": [ + "down", + "down" + ] + }, + { + "id": 30, + "startPoint": 205, + "path": [ + "down", + "right", + "right" + ] + }, + { + "id": 31, + "startPoint": 77, + "path": [ + "right", + "right" + ] + }, + { + "id": 32, + "startPoint": 31, + "path": [ + "up", + "right", + "right", + "right", + "down" + ] + }, + { + "id": 33, + "startPoint": 46, + "path": [ + "down", + "down" + ] + }, + { + "id": 34, + "startPoint": 189, + "path": [ + "down", + "down" + ] + }, + { + "id": 35, + "startPoint": 96, + "path": [ + "down", + "down" + ] + }, + { + "id": 36, + "startPoint": 35, + "path": [ + "up" + ] + }, + { + "id": 37, + "startPoint": 121, + "path": [ + "left", + "down" + ] + }, + { + "id": 38, + "startPoint": 129, + "path": [ + "up", + "right", + "down" + ] + }, + { + "id": 39, + "startPoint": 122, + "path": [ + "up" + ] + } + ] + }, + { + "levelId": 72, + "levelName": "第-928关", + "gridRows": 15, + "gridCols": 15, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 126, + "path": [ + "down", + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 2, + "startPoint": 177, + "path": [ + "left", + "up", + "right", + "right", + "right" + ] + }, + { + "id": 3, + "startPoint": 63, + "path": [ + "left", + "left", + "up" + ] + }, + { + "id": 4, + "startPoint": 108, + "path": [ + "down", + "down", + "down", + "down", + "right" + ] + }, + { + "id": 5, + "startPoint": 130, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 6, + "startPoint": 17, + "path": [ + "left", + "left" + ] + }, + { + "id": 7, + "startPoint": 41, + "path": [ + "down", + "right", + "right", + "right" + ] + }, + { + "id": 8, + "startPoint": 86, + "path": [ + "down", + "right", + "right", + "right" + ] + }, + { + "id": 9, + "startPoint": 110, + "path": [ + "up", + "up", + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 10, + "startPoint": 96, + "path": [ + "down" + ] + }, + { + "id": 11, + "startPoint": 70, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 12, + "startPoint": 122, + "path": [ + "left", + "left" + ] + }, + { + "id": 13, + "startPoint": 118, + "path": [ + "right" + ] + }, + { + "id": 14, + "startPoint": 114, + "path": [ + "down", + "left", + "left" + ] + }, + { + "id": 15, + "startPoint": 113, + "path": [ + "left" + ] + }, + { + "id": 16, + "startPoint": 3, + "path": [ + "down", + "down" + ] + }, + { + "id": 17, + "startPoint": 77, + "path": [ + "left", + "left" + ] + }, + { + "id": 18, + "startPoint": 11, + "path": [ + "down" + ] + }, + { + "id": 19, + "startPoint": 20, + "path": [ + "right", + "right", + "down", + "down" + ] + }, + { + "id": 20, + "startPoint": 115, + "path": [ + "right" + ] + }, + { + "id": 21, + "startPoint": 154, + "path": [ + "up", + "up", + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 22, + "startPoint": 5, + "path": [ + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 23, + "startPoint": 191, + "path": [ + "down", + "down" + ] + }, + { + "id": 24, + "startPoint": 218, + "path": [ + "up", + "left" + ] + }, + { + "id": 25, + "startPoint": 175, + "path": [ + "up", + "up" + ] + }, + { + "id": 26, + "startPoint": 54, + "path": [ + "left" + ] + }, + { + "id": 27, + "startPoint": 51, + "path": [ + "left", + "up" + ] + }, + { + "id": 28, + "startPoint": 106, + "path": [ + "left", + "up" + ] + }, + { + "id": 29, + "startPoint": 40, + "path": [ + "up" + ] + }, + { + "id": 30, + "startPoint": 166, + "path": [ + "left" + ] + }, + { + "id": 31, + "startPoint": 39, + "path": [ + "up" + ] + }, + { + "id": 32, + "startPoint": 151, + "path": [ + "left" + ] + }, + { + "id": 33, + "startPoint": 213, + "path": [ + "up", + "left", + "down" + ] + }, + { + "id": 34, + "startPoint": 60, + "path": [ + "up", + "up" + ] + }, + { + "id": 35, + "startPoint": 74, + "path": [ + "left" + ] + }, + { + "id": 36, + "startPoint": 182, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 37, + "startPoint": 222, + "path": [ + "up", + "up" + ] + }, + { + "id": 38, + "startPoint": 211, + "path": [ + "up", + "up" + ] + }, + { + "id": 39, + "startPoint": 100, + "path": [ + "left" + ] + }, + { + "id": 40, + "startPoint": 209, + "path": [ + "up", + "up" + ] + }, + { + "id": 41, + "startPoint": 173, + "path": [ + "right" + ] + } + ] + }, + { + "levelId": 73, + "levelName": "第-927关", + "gridRows": 15, + "gridCols": 15, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 200, + "path": [ + "left", + "left", + "down" + ] + }, + { + "id": 2, + "startPoint": 36, + "path": [ + "left", + "left", + "left", + "left", + "left", + "up", + "up" + ] + }, + { + "id": 3, + "startPoint": 187, + "path": [ + "left", + "left", + "left", + "left", + "left", + "down" + ] + }, + { + "id": 4, + "startPoint": 29, + "path": [ + "up" + ] + }, + { + "id": 5, + "startPoint": 87, + "path": [ + "down", + "down", + "right", + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 6, + "startPoint": 163, + "path": [ + "up", + "up" + ] + }, + { + "id": 7, + "startPoint": 125, + "path": [ + "up", + "up", + "up", + "left", + "left", + "down", + "down" + ] + }, + { + "id": 8, + "startPoint": 53, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 9, + "startPoint": 82, + "path": [ + "left" + ] + }, + { + "id": 10, + "startPoint": 141, + "path": [ + "right", + "right", + "right", + "up", + "up", + "up" + ] + }, + { + "id": 11, + "startPoint": 202, + "path": [ + "right", + "right", + "up", + "up" + ] + }, + { + "id": 12, + "startPoint": 59, + "path": [ + "up" + ] + }, + { + "id": 13, + "startPoint": 147, + "path": [ + "left", + "left" + ] + }, + { + "id": 14, + "startPoint": 127, + "path": [ + "up", + "up" + ] + }, + { + "id": 15, + "startPoint": 101, + "path": [ + "down" + ] + }, + { + "id": 16, + "startPoint": 4, + "path": [ + "left", + "left" + ] + }, + { + "id": 17, + "startPoint": 55, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 18, + "startPoint": 65, + "path": [ + "right", + "right" + ] + }, + { + "id": 19, + "startPoint": 0, + "path": [ + "down", + "down" + ] + }, + { + "id": 20, + "startPoint": 77, + "path": [ + "up", + "left", + "left" + ] + }, + { + "id": 21, + "startPoint": 181, + "path": [ + "down", + "down" + ] + }, + { + "id": 22, + "startPoint": 71, + "path": [ + "up", + "up" + ] + }, + { + "id": 23, + "startPoint": 221, + "path": [ + "right" + ] + }, + { + "id": 24, + "startPoint": 205, + "path": [ + "down", + "left", + "left" + ] + }, + { + "id": 25, + "startPoint": 208, + "path": [ + "right", + "down" + ] + }, + { + "id": 26, + "startPoint": 166, + "path": [ + "right", + "right" + ] + }, + { + "id": 27, + "startPoint": 21, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 28, + "startPoint": 74, + "path": [ + "down", + "down" + ] + }, + { + "id": 29, + "startPoint": 177, + "path": [ + "down", + "down" + ] + }, + { + "id": 30, + "startPoint": 172, + "path": [ + "right" + ] + }, + { + "id": 31, + "startPoint": 201, + "path": [ + "down" + ] + }, + { + "id": 32, + "startPoint": 131, + "path": [ + "right" + ] + }, + { + "id": 33, + "startPoint": 149, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 34, + "startPoint": 6, + "path": [ + "left" + ] + }, + { + "id": 35, + "startPoint": 137, + "path": [ + "left", + "down" + ] + }, + { + "id": 36, + "startPoint": 161, + "path": [ + "right" + ] + }, + { + "id": 37, + "startPoint": 153, + "path": [ + "right", + "right", + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 38, + "startPoint": 72, + "path": [ + "up" + ] + } + ] + }, + { + "levelId": 74, + "levelName": "第-926关", + "gridRows": 15, + "gridCols": 15, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 182, + "path": [ + "right", + "down", + "down" + ] + }, + { + "id": 2, + "startPoint": 212, + "path": [ + "left", + "left" + ] + }, + { + "id": 3, + "startPoint": 17, + "path": [ + "left", + "left" + ] + }, + { + "id": 4, + "startPoint": 77, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 5, + "startPoint": 168, + "path": [ + "right", + "right" + ] + }, + { + "id": 6, + "startPoint": 99, + "path": [ + "down", + "down", + "down", + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 7, + "startPoint": 24, + "path": [ + "down", + "right" + ] + }, + { + "id": 8, + "startPoint": 53, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 9, + "startPoint": 151, + "path": [ + "right", + "right", + "right", + "right", + "up", + "left", + "left", + "left" + ] + }, + { + "id": 10, + "startPoint": 222, + "path": [ + "up", + "right", + "up", + "right" + ] + }, + { + "id": 11, + "startPoint": 88, + "path": [ + "down", + "right" + ] + }, + { + "id": 12, + "startPoint": 84, + "path": [ + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 13, + "startPoint": 190, + "path": [ + "down", + "down" + ] + }, + { + "id": 14, + "startPoint": 36, + "path": [ + "right" + ] + }, + { + "id": 15, + "startPoint": 163, + "path": [ + "left", + "up", + "left", + "left" + ] + }, + { + "id": 16, + "startPoint": 106, + "path": [ + "left" + ] + }, + { + "id": 17, + "startPoint": 195, + "path": [ + "right", + "right" + ] + }, + { + "id": 18, + "startPoint": 52, + "path": [ + "down" + ] + }, + { + "id": 19, + "startPoint": 131, + "path": [ + "right", + "right", + "down" + ] + }, + { + "id": 20, + "startPoint": 95, + "path": [ + "right", + "down" + ] + }, + { + "id": 21, + "startPoint": 92, + "path": [ + "right", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 22, + "startPoint": 12, + "path": [ + "right", + "right" + ] + }, + { + "id": 23, + "startPoint": 177, + "path": [ + "right", + "right" + ] + }, + { + "id": 24, + "startPoint": 186, + "path": [ + "left", + "down" + ] + }, + { + "id": 25, + "startPoint": 58, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 26, + "startPoint": 90, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 27, + "startPoint": 164, + "path": [ + "up" + ] + }, + { + "id": 28, + "startPoint": 108, + "path": [ + "left" + ] + }, + { + "id": 29, + "startPoint": 135, + "path": [ + "up" + ] + }, + { + "id": 30, + "startPoint": 27, + "path": [ + "left", + "left" + ] + }, + { + "id": 31, + "startPoint": 209, + "path": [ + "down" + ] + }, + { + "id": 32, + "startPoint": 34, + "path": [ + "up", + "up" + ] + }, + { + "id": 33, + "startPoint": 117, + "path": [ + "right", + "right" + ] + }, + { + "id": 34, + "startPoint": 156, + "path": [ + "down" + ] + }, + { + "id": 35, + "startPoint": 68, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 36, + "startPoint": 176, + "path": [ + "left", + "up" + ] + }, + { + "id": 37, + "startPoint": 110, + "path": [ + "down" + ] + }, + { + "id": 38, + "startPoint": 206, + "path": [ + "up" + ] + }, + { + "id": 39, + "startPoint": 91, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 40, + "startPoint": 128, + "path": [ + "down" + ] + }, + { + "id": 41, + "startPoint": 1, + "path": [ + "left" + ] + }, + { + "id": 42, + "startPoint": 142, + "path": [ + "down", + "down", + "down", + "down", + "down" + ] + } + ] + }, + { + "levelId": 75, + "levelName": "第-925关", + "gridRows": 15, + "gridCols": 15, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 177, + "path": [ + "left", + "left", + "up", + "right" + ] + }, + { + "id": 2, + "startPoint": 113, + "path": [ + "right", + "right", + "right", + "up", + "up" + ] + }, + { + "id": 3, + "startPoint": 119, + "path": [ + "down", + "down", + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 4, + "startPoint": 94, + "path": [ + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 5, + "startPoint": 79, + "path": [ + "right", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 6, + "startPoint": 196, + "path": [ + "left" + ] + }, + { + "id": 7, + "startPoint": 138, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 8, + "startPoint": 49, + "path": [ + "up", + "up", + "left", + "left" + ] + }, + { + "id": 9, + "startPoint": 197, + "path": [ + "down" + ] + }, + { + "id": 10, + "startPoint": 127, + "path": [ + "up" + ] + }, + { + "id": 11, + "startPoint": 207, + "path": [ + "left", + "left", + "left", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 12, + "startPoint": 53, + "path": [ + "left", + "left" + ] + }, + { + "id": 13, + "startPoint": 110, + "path": [ + "right" + ] + }, + { + "id": 14, + "startPoint": 54, + "path": [ + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 15, + "startPoint": 39, + "path": [ + "right", + "right" + ] + }, + { + "id": 16, + "startPoint": 154, + "path": [ + "down", + "down" + ] + }, + { + "id": 17, + "startPoint": 88, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 18, + "startPoint": 163, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 19, + "startPoint": 92, + "path": [ + "down", + "down", + "down", + "down", + "left", + "left" + ] + }, + { + "id": 20, + "startPoint": 2, + "path": [ + "left", + "left" + ] + }, + { + "id": 21, + "startPoint": 171, + "path": [ + "left", + "down" + ] + }, + { + "id": 22, + "startPoint": 192, + "path": [ + "left" + ] + }, + { + "id": 23, + "startPoint": 172, + "path": [ + "right", + "right" + ] + }, + { + "id": 24, + "startPoint": 71, + "path": [ + "left", + "left" + ] + }, + { + "id": 25, + "startPoint": 12, + "path": [ + "right", + "right" + ] + }, + { + "id": 26, + "startPoint": 75, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 27, + "startPoint": 135, + "path": [ + "up", + "up" + ] + }, + { + "id": 28, + "startPoint": 125, + "path": [ + "left", + "left" + ] + }, + { + "id": 29, + "startPoint": 143, + "path": [ + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 30, + "startPoint": 91, + "path": [ + "left" + ] + }, + { + "id": 31, + "startPoint": 31, + "path": [ + "left", + "up" + ] + }, + { + "id": 32, + "startPoint": 22, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 33, + "startPoint": 11, + "path": [ + "left" + ] + }, + { + "id": 34, + "startPoint": 64, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 35, + "startPoint": 159, + "path": [ + "left", + "left" + ] + }, + { + "id": 36, + "startPoint": 142, + "path": [ + "left", + "left" + ] + }, + { + "id": 37, + "startPoint": 220, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 38, + "startPoint": 73, + "path": [ + "left" + ] + }, + { + "id": 39, + "startPoint": 132, + "path": [ + "up" + ] + }, + { + "id": 40, + "startPoint": 167, + "path": [ + "left", + "left" + ] + }, + { + "id": 41, + "startPoint": 83, + "path": [ + "right", + "right" + ] + }, + { + "id": 42, + "startPoint": 74, + "path": [ + "down", + "down" + ] + } + ] + }, + { + "levelId": 76, + "levelName": "第-924关", + "gridRows": 16, + "gridCols": 16, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 208, + "path": [ + "down", + "down" + ] + }, + { + "id": 2, + "startPoint": 250, + "path": [ + "up", + "up", + "right", + "up", + "right", + "right", + "right" + ] + }, + { + "id": 3, + "startPoint": 228, + "path": [ + "right", + "right", + "right", + "right", + "down" + ] + }, + { + "id": 4, + "startPoint": 214, + "path": [ + "left", + "left", + "left", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 5, + "startPoint": 181, + "path": [ + "left", + "down" + ] + }, + { + "id": 6, + "startPoint": 210, + "path": [ + "left" + ] + }, + { + "id": 7, + "startPoint": 168, + "path": [ + "up", + "up", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 8, + "startPoint": 56, + "path": [ + "up", + "up", + "right", + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 9, + "startPoint": 144, + "path": [ + "down", + "down" + ] + }, + { + "id": 10, + "startPoint": 35, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 11, + "startPoint": 53, + "path": [ + "right", + "right" + ] + }, + { + "id": 12, + "startPoint": 188, + "path": [ + "right", + "right" + ] + }, + { + "id": 13, + "startPoint": 85, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 14, + "startPoint": 46, + "path": [ + "right", + "up", + "up" + ] + }, + { + "id": 15, + "startPoint": 186, + "path": [ + "down" + ] + }, + { + "id": 16, + "startPoint": 170, + "path": [ + "right", + "right", + "right", + "right", + "right", + "up" + ] + }, + { + "id": 17, + "startPoint": 79, + "path": [ + "up" + ] + }, + { + "id": 18, + "startPoint": 97, + "path": [ + "down", + "down" + ] + }, + { + "id": 19, + "startPoint": 182, + "path": [ + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 20, + "startPoint": 72, + "path": [ + "down", + "down" + ] + }, + { + "id": 21, + "startPoint": 5, + "path": [ + "left", + "down", + "down" + ] + }, + { + "id": 22, + "startPoint": 169, + "path": [ + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 23, + "startPoint": 130, + "path": [ + "right" + ] + }, + { + "id": 24, + "startPoint": 92, + "path": [ + "left", + "down", + "right", + "right" + ] + }, + { + "id": 25, + "startPoint": 162, + "path": [ + "down", + "down" + ] + }, + { + "id": 26, + "startPoint": 167, + "path": [ + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 27, + "startPoint": 125, + "path": [ + "right", + "right", + "up", + "up" + ] + }, + { + "id": 28, + "startPoint": 69, + "path": [ + "right", + "right" + ] + }, + { + "id": 29, + "startPoint": 106, + "path": [ + "down", + "left" + ] + }, + { + "id": 30, + "startPoint": 43, + "path": [ + "right", + "right", + "down", + "down", + "down" + ] + }, + { + "id": 31, + "startPoint": 0, + "path": [ + "down" + ] + }, + { + "id": 32, + "startPoint": 58, + "path": [ + "up" + ] + } + ] + }, + { + "levelId": 77, + "levelName": "第-923关", + "gridRows": 16, + "gridCols": 16, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 135, + "path": [ + "right", + "down", + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 2, + "startPoint": 37, + "path": [ + "down", + "down", + "left" + ] + }, + { + "id": 3, + "startPoint": 124, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 4, + "startPoint": 206, + "path": [ + "left", + "up", + "right", + "right", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 5, + "startPoint": 67, + "path": [ + "left", + "left", + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 6, + "startPoint": 84, + "path": [ + "down", + "down", + "down", + "down", + "down", + "down", + "left" + ] + }, + { + "id": 7, + "startPoint": 54, + "path": [ + "up", + "up", + "up", + "left" + ] + }, + { + "id": 8, + "startPoint": 77, + "path": [ + "down" + ] + }, + { + "id": 9, + "startPoint": 48, + "path": [ + "down", + "down" + ] + }, + { + "id": 10, + "startPoint": 201, + "path": [ + "down", + "down" + ] + }, + { + "id": 11, + "startPoint": 118, + "path": [ + "up", + "left" + ] + }, + { + "id": 12, + "startPoint": 106, + "path": [ + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 13, + "startPoint": 29, + "path": [ + "right", + "down", + "left", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 14, + "startPoint": 226, + "path": [ + "down" + ] + }, + { + "id": 15, + "startPoint": 203, + "path": [ + "left" + ] + }, + { + "id": 16, + "startPoint": 207, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 17, + "startPoint": 73, + "path": [ + "up" + ] + }, + { + "id": 18, + "startPoint": 28, + "path": [ + "left", + "left", + "left", + "up" + ] + }, + { + "id": 19, + "startPoint": 211, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 20, + "startPoint": 162, + "path": [ + "down", + "down" + ] + }, + { + "id": 21, + "startPoint": 157, + "path": [ + "down" + ] + }, + { + "id": 22, + "startPoint": 213, + "path": [ + "left" + ] + }, + { + "id": 23, + "startPoint": 155, + "path": [ + "down", + "down" + ] + }, + { + "id": 24, + "startPoint": 88, + "path": [ + "right" + ] + }, + { + "id": 25, + "startPoint": 8, + "path": [ + "down" + ] + }, + { + "id": 26, + "startPoint": 16, + "path": [ + "right", + "down", + "down" + ] + }, + { + "id": 27, + "startPoint": 18, + "path": [ + "down", + "down" + ] + }, + { + "id": 28, + "startPoint": 185, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 29, + "startPoint": 188, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 30, + "startPoint": 51, + "path": [ + "right" + ] + }, + { + "id": 31, + "startPoint": 11, + "path": [ + "right", + "right" + ] + }, + { + "id": 32, + "startPoint": 87, + "path": [ + "up", + "left" + ] + } + ] + }, + { + "levelId": 78, + "levelName": "第-922关", + "gridRows": 16, + "gridCols": 16, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 193, + "path": [ + "up", + "up" + ] + }, + { + "id": 2, + "startPoint": 125, + "path": [ + "up", + "up", + "up", + "up", + "up", + "right", + "right" + ] + }, + { + "id": 3, + "startPoint": 114, + "path": [ + "up", + "up", + "up", + "left", + "left" + ] + }, + { + "id": 4, + "startPoint": 235, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 5, + "startPoint": 182, + "path": [ + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 6, + "startPoint": 146, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 7, + "startPoint": 174, + "path": [ + "left", + "left", + "left", + "left", + "up", + "left", + "left" + ] + }, + { + "id": 8, + "startPoint": 147, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 9, + "startPoint": 205, + "path": [ + "right", + "right", + "down", + "down", + "down" + ] + }, + { + "id": 10, + "startPoint": 204, + "path": [ + "down", + "down", + "right", + "down" + ] + }, + { + "id": 11, + "startPoint": 129, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 12, + "startPoint": 105, + "path": [ + "left", + "left", + "up", + "left", + "down", + "down" + ] + }, + { + "id": 13, + "startPoint": 159, + "path": [ + "left", + "left", + "up" + ] + }, + { + "id": 14, + "startPoint": 149, + "path": [ + "left" + ] + }, + { + "id": 15, + "startPoint": 32, + "path": [ + "up" + ] + }, + { + "id": 16, + "startPoint": 216, + "path": [ + "right" + ] + }, + { + "id": 17, + "startPoint": 126, + "path": [ + "right", + "up", + "up", + "up" + ] + }, + { + "id": 18, + "startPoint": 231, + "path": [ + "down" + ] + }, + { + "id": 19, + "startPoint": 101, + "path": [ + "down", + "down" + ] + }, + { + "id": 20, + "startPoint": 57, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 21, + "startPoint": 55, + "path": [ + "right" + ] + }, + { + "id": 22, + "startPoint": 254, + "path": [ + "up" + ] + }, + { + "id": 23, + "startPoint": 41, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 24, + "startPoint": 195, + "path": [ + "right", + "right", + "down", + "down", + "down" + ] + }, + { + "id": 25, + "startPoint": 6, + "path": [ + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 26, + "startPoint": 70, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 27, + "startPoint": 49, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 28, + "startPoint": 155, + "path": [ + "right" + ] + }, + { + "id": 29, + "startPoint": 14, + "path": [ + "down", + "left", + "left", + "left" + ] + }, + { + "id": 30, + "startPoint": 180, + "path": [ + "up", + "left" + ] + }, + { + "id": 31, + "startPoint": 68, + "path": [ + "left" + ] + }, + { + "id": 32, + "startPoint": 209, + "path": [ + "down", + "down", + "left" + ] + }, + { + "id": 33, + "startPoint": 214, + "path": [ + "down", + "down" + ] + } + ] + }, + { + "levelId": 79, + "levelName": "第-921关", + "gridRows": 16, + "gridCols": 16, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 162, + "path": [ + "right", + "right", + "down", + "down" + ] + }, + { + "id": 2, + "startPoint": 159, + "path": [ + "left", + "left", + "down", + "down" + ] + }, + { + "id": 3, + "startPoint": 140, + "path": [ + "left", + "left" + ] + }, + { + "id": 4, + "startPoint": 227, + "path": [ + "right", + "right" + ] + }, + { + "id": 5, + "startPoint": 147, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 6, + "startPoint": 123, + "path": [ + "up", + "up", + "up", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 7, + "startPoint": 118, + "path": [ + "right", + "right" + ] + }, + { + "id": 8, + "startPoint": 222, + "path": [ + "right" + ] + }, + { + "id": 9, + "startPoint": 45, + "path": [ + "down" + ] + }, + { + "id": 10, + "startPoint": 30, + "path": [ + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 11, + "startPoint": 183, + "path": [ + "up", + "up", + "up", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 12, + "startPoint": 185, + "path": [ + "right", + "right" + ] + }, + { + "id": 13, + "startPoint": 220, + "path": [ + "up", + "left" + ] + }, + { + "id": 14, + "startPoint": 51, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 15, + "startPoint": 246, + "path": [ + "left" + ] + }, + { + "id": 16, + "startPoint": 154, + "path": [ + "right", + "right" + ] + }, + { + "id": 17, + "startPoint": 95, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 18, + "startPoint": 217, + "path": [ + "right", + "right" + ] + }, + { + "id": 19, + "startPoint": 5, + "path": [ + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 20, + "startPoint": 160, + "path": [ + "down", + "down" + ] + }, + { + "id": 21, + "startPoint": 210, + "path": [ + "left", + "left" + ] + }, + { + "id": 22, + "startPoint": 195, + "path": [ + "down" + ] + }, + { + "id": 23, + "startPoint": 216, + "path": [ + "up", + "left", + "left", + "left" + ] + }, + { + "id": 24, + "startPoint": 214, + "path": [ + "down" + ] + }, + { + "id": 25, + "startPoint": 70, + "path": [ + "up", + "left", + "down" + ] + }, + { + "id": 26, + "startPoint": 149, + "path": [ + "left" + ] + }, + { + "id": 27, + "startPoint": 100, + "path": [ + "down" + ] + }, + { + "id": 28, + "startPoint": 46, + "path": [ + "down", + "right" + ] + }, + { + "id": 29, + "startPoint": 72, + "path": [ + "right", + "down" + ] + }, + { + "id": 30, + "startPoint": 225, + "path": [ + "down" + ] + }, + { + "id": 31, + "startPoint": 168, + "path": [ + "down" + ] + }, + { + "id": 32, + "startPoint": 58, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 33, + "startPoint": 82, + "path": [ + "left", + "left" + ] + } + ] + }, + { + "levelId": 80, + "levelName": "第-920关", + "gridRows": 16, + "gridCols": 16, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 217, + "path": [ + "left", + "left", + "left", + "down", + "down" + ] + }, + { + "id": 2, + "startPoint": 173, + "path": [ + "up", + "up", + "right" + ] + }, + { + "id": 3, + "startPoint": 61, + "path": [ + "up", + "up" + ] + }, + { + "id": 4, + "startPoint": 204, + "path": [ + "right", + "right", + "right", + "down", + "down", + "down" + ] + }, + { + "id": 5, + "startPoint": 114, + "path": [ + "right", + "right", + "right", + "right", + "down", + "down" + ] + }, + { + "id": 6, + "startPoint": 6, + "path": [ + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 7, + "startPoint": 22, + "path": [ + "down", + "down", + "down", + "down", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 8, + "startPoint": 127, + "path": [ + "left", + "left", + "left", + "up", + "up", + "right", + "right" + ] + }, + { + "id": 9, + "startPoint": 168, + "path": [ + "down", + "down" + ] + }, + { + "id": 10, + "startPoint": 128, + "path": [ + "down", + "down", + "down", + "down", + "down", + "down", + "right" + ] + }, + { + "id": 11, + "startPoint": 14, + "path": [ + "right" + ] + }, + { + "id": 12, + "startPoint": 19, + "path": [ + "up" + ] + }, + { + "id": 13, + "startPoint": 159, + "path": [ + "left" + ] + }, + { + "id": 14, + "startPoint": 203, + "path": [ + "down", + "down", + "down", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 15, + "startPoint": 90, + "path": [ + "left", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 16, + "startPoint": 119, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 17, + "startPoint": 181, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 18, + "startPoint": 56, + "path": [ + "right", + "right", + "up", + "up" + ] + }, + { + "id": 19, + "startPoint": 122, + "path": [ + "down", + "down", + "right", + "up" + ] + }, + { + "id": 20, + "startPoint": 39, + "path": [ + "up" + ] + }, + { + "id": 21, + "startPoint": 34, + "path": [ + "down", + "down", + "right" + ] + }, + { + "id": 22, + "startPoint": 201, + "path": [ + "up", + "up", + "right" + ] + }, + { + "id": 23, + "startPoint": 75, + "path": [ + "right", + "right" + ] + }, + { + "id": 24, + "startPoint": 190, + "path": [ + "right" + ] + }, + { + "id": 25, + "startPoint": 221, + "path": [ + "right", + "down", + "down" + ] + }, + { + "id": 26, + "startPoint": 99, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 27, + "startPoint": 198, + "path": [ + "right" + ] + }, + { + "id": 28, + "startPoint": 111, + "path": [ + "up", + "up" + ] + }, + { + "id": 29, + "startPoint": 163, + "path": [ + "left", + "left" + ] + }, + { + "id": 30, + "startPoint": 130, + "path": [ + "right", + "down" + ] + }, + { + "id": 31, + "startPoint": 188, + "path": [ + "left", + "left" + ] + }, + { + "id": 32, + "startPoint": 136, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 33, + "startPoint": 62, + "path": [ + "up", + "up" + ] + } + ] + }, + { + "levelId": 81, + "levelName": "第-919关", + "gridRows": 16, + "gridCols": 16, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 97, + "path": [ + "left" + ] + }, + { + "id": 2, + "startPoint": 174, + "path": [ + "right" + ] + }, + { + "id": 3, + "startPoint": 122, + "path": [ + "up", + "right", + "up", + "up", + "up" + ] + }, + { + "id": 4, + "startPoint": 128, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 5, + "startPoint": 201, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 6, + "startPoint": 231, + "path": [ + "up", + "up", + "up", + "left", + "left", + "left" + ] + }, + { + "id": 7, + "startPoint": 40, + "path": [ + "down", + "down", + "down", + "down", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 8, + "startPoint": 67, + "path": [ + "up", + "up", + "up", + "up", + "left", + "left" + ] + }, + { + "id": 9, + "startPoint": 214, + "path": [ + "up" + ] + }, + { + "id": 10, + "startPoint": 224, + "path": [ + "down" + ] + }, + { + "id": 11, + "startPoint": 9, + "path": [ + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 12, + "startPoint": 227, + "path": [ + "right", + "up", + "up" + ] + }, + { + "id": 13, + "startPoint": 30, + "path": [ + "down", + "right" + ] + }, + { + "id": 14, + "startPoint": 146, + "path": [ + "right", + "right" + ] + }, + { + "id": 15, + "startPoint": 150, + "path": [ + "right", + "right", + "right", + "right", + "right", + "up", + "up" + ] + }, + { + "id": 16, + "startPoint": 70, + "path": [ + "right" + ] + }, + { + "id": 17, + "startPoint": 119, + "path": [ + "down" + ] + }, + { + "id": 18, + "startPoint": 169, + "path": [ + "down" + ] + }, + { + "id": 19, + "startPoint": 20, + "path": [ + "down", + "right", + "right", + "right" + ] + }, + { + "id": 20, + "startPoint": 5, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 21, + "startPoint": 42, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 22, + "startPoint": 33, + "path": [ + "down", + "down" + ] + }, + { + "id": 23, + "startPoint": 111, + "path": [ + "down" + ] + }, + { + "id": 24, + "startPoint": 232, + "path": [ + "down" + ] + }, + { + "id": 25, + "startPoint": 226, + "path": [ + "down" + ] + }, + { + "id": 26, + "startPoint": 66, + "path": [ + "down", + "left" + ] + }, + { + "id": 27, + "startPoint": 95, + "path": [ + "up", + "up" + ] + }, + { + "id": 28, + "startPoint": 158, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 29, + "startPoint": 246, + "path": [ + "up" + ] + }, + { + "id": 30, + "startPoint": 187, + "path": [ + "left" + ] + }, + { + "id": 31, + "startPoint": 253, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 32, + "startPoint": 238, + "path": [ + "down" + ] + }, + { + "id": 33, + "startPoint": 50, + "path": [ + "up" + ] + }, + { + "id": 34, + "startPoint": 109, + "path": [ + "up", + "left" + ] + } + ] + }, + { + "levelId": 82, + "levelName": "第-918关", + "gridRows": 16, + "gridCols": 16, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 87, + "path": [ + "right", + "right", + "down", + "left", + "left", + "left" + ] + }, + { + "id": 2, + "startPoint": 133, + "path": [ + "up", + "up", + "left", + "left", + "up", + "left" + ] + }, + { + "id": 3, + "startPoint": 42, + "path": [ + "up", + "up" + ] + }, + { + "id": 4, + "startPoint": 171, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 5, + "startPoint": 93, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 6, + "startPoint": 221, + "path": [ + "up", + "up" + ] + }, + { + "id": 7, + "startPoint": 179, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 8, + "startPoint": 242, + "path": [ + "left" + ] + }, + { + "id": 9, + "startPoint": 91, + "path": [ + "right" + ] + }, + { + "id": 10, + "startPoint": 52, + "path": [ + "right", + "right", + "right", + "right", + "right", + "up", + "up", + "up" + ] + }, + { + "id": 11, + "startPoint": 203, + "path": [ + "right" + ] + }, + { + "id": 12, + "startPoint": 14, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 13, + "startPoint": 154, + "path": [ + "up", + "up", + "right", + "right", + "right", + "up" + ] + }, + { + "id": 14, + "startPoint": 94, + "path": [ + "up", + "up" + ] + }, + { + "id": 15, + "startPoint": 97, + "path": [ + "left" + ] + }, + { + "id": 16, + "startPoint": 113, + "path": [ + "down", + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 17, + "startPoint": 214, + "path": [ + "left", + "left" + ] + }, + { + "id": 18, + "startPoint": 211, + "path": [ + "up" + ] + }, + { + "id": 19, + "startPoint": 197, + "path": [ + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 20, + "startPoint": 70, + "path": [ + "left", + "down" + ] + }, + { + "id": 21, + "startPoint": 4, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 22, + "startPoint": 216, + "path": [ + "right", + "down", + "down" + ] + }, + { + "id": 23, + "startPoint": 79, + "path": [ + "up", + "up", + "left" + ] + }, + { + "id": 24, + "startPoint": 253, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 25, + "startPoint": 140, + "path": [ + "right", + "right", + "right", + "down", + "down" + ] + }, + { + "id": 26, + "startPoint": 35, + "path": [ + "up", + "left", + "left", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 27, + "startPoint": 172, + "path": [ + "up" + ] + }, + { + "id": 28, + "startPoint": 44, + "path": [ + "left" + ] + }, + { + "id": 29, + "startPoint": 34, + "path": [ + "down", + "down" + ] + }, + { + "id": 30, + "startPoint": 40, + "path": [ + "left", + "up", + "right" + ] + }, + { + "id": 31, + "startPoint": 238, + "path": [ + "up", + "up", + "right" + ] + }, + { + "id": 32, + "startPoint": 190, + "path": [ + "up", + "left" + ] + }, + { + "id": 33, + "startPoint": 38, + "path": [ + "up", + "up" + ] + }, + { + "id": 34, + "startPoint": 32, + "path": [ + "up", + "up" + ] + } + ] + }, + { + "levelId": 83, + "levelName": "第-917关", + "gridRows": 16, + "gridCols": 16, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 156, + "path": [ + "left", + "left", + "left", + "down", + "down", + "down" + ] + }, + { + "id": 2, + "startPoint": 252, + "path": [ + "right", + "right" + ] + }, + { + "id": 3, + "startPoint": 98, + "path": [ + "up", + "up", + "left", + "down" + ] + }, + { + "id": 4, + "startPoint": 177, + "path": [ + "left", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 5, + "startPoint": 31, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 6, + "startPoint": 167, + "path": [ + "left", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 7, + "startPoint": 121, + "path": [ + "left", + "left", + "left", + "up", + "up", + "left", + "down", + "down" + ] + }, + { + "id": 8, + "startPoint": 219, + "path": [ + "right", + "down", + "right" + ] + }, + { + "id": 9, + "startPoint": 210, + "path": [ + "down", + "down" + ] + }, + { + "id": 10, + "startPoint": 183, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 11, + "startPoint": 22, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 12, + "startPoint": 195, + "path": [ + "left" + ] + }, + { + "id": 13, + "startPoint": 91, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 14, + "startPoint": 48, + "path": [ + "up", + "up" + ] + }, + { + "id": 15, + "startPoint": 108, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 16, + "startPoint": 212, + "path": [ + "up" + ] + }, + { + "id": 17, + "startPoint": 73, + "path": [ + "down" + ] + }, + { + "id": 18, + "startPoint": 227, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 19, + "startPoint": 141, + "path": [ + "down", + "right", + "down" + ] + }, + { + "id": 20, + "startPoint": 111, + "path": [ + "left", + "left" + ] + }, + { + "id": 21, + "startPoint": 10, + "path": [ + "down", + "down", + "left", + "left", + "left", + "up", + "up" + ] + }, + { + "id": 22, + "startPoint": 51, + "path": [ + "right", + "right", + "down" + ] + }, + { + "id": 23, + "startPoint": 67, + "path": [ + "right" + ] + }, + { + "id": 24, + "startPoint": 151, + "path": [ + "left", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 25, + "startPoint": 202, + "path": [ + "right", + "right" + ] + }, + { + "id": 26, + "startPoint": 88, + "path": [ + "left" + ] + }, + { + "id": 27, + "startPoint": 28, + "path": [ + "up" + ] + }, + { + "id": 28, + "startPoint": 34, + "path": [ + "up", + "up" + ] + }, + { + "id": 29, + "startPoint": 132, + "path": [ + "right", + "right", + "right", + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 30, + "startPoint": 115, + "path": [ + "right" + ] + }, + { + "id": 31, + "startPoint": 113, + "path": [ + "right" + ] + }, + { + "id": 32, + "startPoint": 206, + "path": [ + "down", + "down" + ] + }, + { + "id": 33, + "startPoint": 178, + "path": [ + "right", + "right" + ] + }, + { + "id": 34, + "startPoint": 74, + "path": [ + "down" + ] + } + ] + }, + { + "levelId": 84, + "levelName": "第-916关", + "gridRows": 16, + "gridCols": 16, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 124, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 2, + "startPoint": 25, + "path": [ + "up" + ] + }, + { + "id": 3, + "startPoint": 65, + "path": [ + "left" + ] + }, + { + "id": 4, + "startPoint": 17, + "path": [ + "left" + ] + }, + { + "id": 5, + "startPoint": 83, + "path": [ + "up", + "up" + ] + }, + { + "id": 6, + "startPoint": 31, + "path": [ + "down" + ] + }, + { + "id": 7, + "startPoint": 72, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 8, + "startPoint": 84, + "path": [ + "down", + "down", + "down", + "down", + "right" + ] + }, + { + "id": 9, + "startPoint": 81, + "path": [ + "left" + ] + }, + { + "id": 10, + "startPoint": 139, + "path": [ + "up" + ] + }, + { + "id": 11, + "startPoint": 141, + "path": [ + "up", + "up", + "left" + ] + }, + { + "id": 12, + "startPoint": 169, + "path": [ + "down", + "down", + "down", + "left", + "left" + ] + }, + { + "id": 13, + "startPoint": 145, + "path": [ + "left" + ] + }, + { + "id": 14, + "startPoint": 130, + "path": [ + "right" + ] + }, + { + "id": 15, + "startPoint": 74, + "path": [ + "down", + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 16, + "startPoint": 227, + "path": [ + "left", + "left", + "up", + "up", + "up" + ] + }, + { + "id": 17, + "startPoint": 39, + "path": [ + "down" + ] + }, + { + "id": 18, + "startPoint": 182, + "path": [ + "right", + "down" + ] + }, + { + "id": 19, + "startPoint": 117, + "path": [ + "down" + ] + }, + { + "id": 20, + "startPoint": 198, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 21, + "startPoint": 126, + "path": [ + "up" + ] + }, + { + "id": 22, + "startPoint": 150, + "path": [ + "down" + ] + }, + { + "id": 23, + "startPoint": 27, + "path": [ + "left" + ] + }, + { + "id": 24, + "startPoint": 96, + "path": [ + "down", + "down" + ] + }, + { + "id": 25, + "startPoint": 239, + "path": [ + "down" + ] + }, + { + "id": 26, + "startPoint": 42, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 27, + "startPoint": 222, + "path": [ + "left", + "left", + "left", + "left", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 28, + "startPoint": 152, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 29, + "startPoint": 48, + "path": [ + "up" + ] + }, + { + "id": 30, + "startPoint": 114, + "path": [ + "right" + ] + }, + { + "id": 31, + "startPoint": 35, + "path": [ + "up", + "up" + ] + }, + { + "id": 32, + "startPoint": 106, + "path": [ + "left", + "left", + "up" + ] + }, + { + "id": 33, + "startPoint": 190, + "path": [ + "left", + "down" + ] + }, + { + "id": 34, + "startPoint": 53, + "path": [ + "right" + ] + }, + { + "id": 35, + "startPoint": 213, + "path": [ + "down", + "down" + ] + } + ] + }, + { + "levelId": 85, + "levelName": "第-915关", + "gridRows": 16, + "gridCols": 16, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 42, + "path": [ + "left", + "up", + "up" + ] + }, + { + "id": 2, + "startPoint": 155, + "path": [ + "left", + "up" + ] + }, + { + "id": 3, + "startPoint": 181, + "path": [ + "up", + "right", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 4, + "startPoint": 26, + "path": [ + "up" + ] + }, + { + "id": 5, + "startPoint": 231, + "path": [ + "down" + ] + }, + { + "id": 6, + "startPoint": 118, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 7, + "startPoint": 94, + "path": [ + "right" + ] + }, + { + "id": 8, + "startPoint": 139, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 9, + "startPoint": 184, + "path": [ + "up", + "up" + ] + }, + { + "id": 10, + "startPoint": 82, + "path": [ + "up", + "up", + "up", + "left", + "left", + "down", + "down" + ] + }, + { + "id": 11, + "startPoint": 61, + "path": [ + "left", + "left" + ] + }, + { + "id": 12, + "startPoint": 38, + "path": [ + "right", + "right" + ] + }, + { + "id": 13, + "startPoint": 220, + "path": [ + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 14, + "startPoint": 195, + "path": [ + "up", + "left", + "left", + "left" + ] + }, + { + "id": 15, + "startPoint": 47, + "path": [ + "down" + ] + }, + { + "id": 16, + "startPoint": 19, + "path": [ + "left", + "left" + ] + }, + { + "id": 17, + "startPoint": 102, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 18, + "startPoint": 162, + "path": [ + "left", + "left" + ] + }, + { + "id": 19, + "startPoint": 132, + "path": [ + "down", + "down", + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 20, + "startPoint": 147, + "path": [ + "down" + ] + }, + { + "id": 21, + "startPoint": 125, + "path": [ + "right", + "right" + ] + }, + { + "id": 22, + "startPoint": 90, + "path": [ + "up", + "up" + ] + }, + { + "id": 23, + "startPoint": 174, + "path": [ + "right" + ] + }, + { + "id": 24, + "startPoint": 29, + "path": [ + "left", + "left" + ] + }, + { + "id": 25, + "startPoint": 22, + "path": [ + "left", + "left" + ] + }, + { + "id": 26, + "startPoint": 207, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 27, + "startPoint": 232, + "path": [ + "down" + ] + }, + { + "id": 28, + "startPoint": 137, + "path": [ + "down", + "down", + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 29, + "startPoint": 197, + "path": [ + "down", + "down" + ] + }, + { + "id": 30, + "startPoint": 219, + "path": [ + "up", + "up" + ] + }, + { + "id": 31, + "startPoint": 224, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 32, + "startPoint": 7, + "path": [ + "down" + ] + }, + { + "id": 33, + "startPoint": 52, + "path": [ + "left" + ] + }, + { + "id": 34, + "startPoint": 106, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 35, + "startPoint": 134, + "path": [ + "down" + ] + } + ] + }, + { + "levelId": 86, + "levelName": "第-914关", + "gridRows": 16, + "gridCols": 16, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 66, + "path": [ + "left", + "left" + ] + }, + { + "id": 2, + "startPoint": 229, + "path": [ + "down" + ] + }, + { + "id": 3, + "startPoint": 147, + "path": [ + "left", + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 4, + "startPoint": 224, + "path": [ + "down" + ] + }, + { + "id": 5, + "startPoint": 228, + "path": [ + "left" + ] + }, + { + "id": 6, + "startPoint": 89, + "path": [ + "left", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 7, + "startPoint": 242, + "path": [ + "right", + "right" + ] + }, + { + "id": 8, + "startPoint": 151, + "path": [ + "right", + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 9, + "startPoint": 238, + "path": [ + "left", + "left", + "left", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 10, + "startPoint": 106, + "path": [ + "up", + "up", + "up", + "up", + "up", + "left", + "left" + ] + }, + { + "id": 11, + "startPoint": 2, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 12, + "startPoint": 142, + "path": [ + "up", + "up", + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 13, + "startPoint": 215, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 14, + "startPoint": 171, + "path": [ + "down", + "right", + "right", + "down", + "down" + ] + }, + { + "id": 15, + "startPoint": 145, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 16, + "startPoint": 185, + "path": [ + "down", + "down" + ] + }, + { + "id": 17, + "startPoint": 7, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 18, + "startPoint": 175, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 19, + "startPoint": 21, + "path": [ + "left", + "left" + ] + }, + { + "id": 20, + "startPoint": 117, + "path": [ + "down", + "right", + "down", + "down", + "down", + "left", + "left", + "left" + ] + }, + { + "id": 21, + "startPoint": 31, + "path": [ + "up" + ] + }, + { + "id": 22, + "startPoint": 131, + "path": [ + "right" + ] + }, + { + "id": 23, + "startPoint": 219, + "path": [ + "right" + ] + }, + { + "id": 24, + "startPoint": 54, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 25, + "startPoint": 125, + "path": [ + "up" + ] + }, + { + "id": 26, + "startPoint": 114, + "path": [ + "down" + ] + }, + { + "id": 27, + "startPoint": 100, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 28, + "startPoint": 40, + "path": [ + "right" + ] + }, + { + "id": 29, + "startPoint": 119, + "path": [ + "down" + ] + }, + { + "id": 30, + "startPoint": 222, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 31, + "startPoint": 164, + "path": [ + "right" + ] + }, + { + "id": 32, + "startPoint": 113, + "path": [ + "down" + ] + }, + { + "id": 33, + "startPoint": 123, + "path": [ + "up", + "up" + ] + }, + { + "id": 34, + "startPoint": 49, + "path": [ + "left" + ] + }, + { + "id": 35, + "startPoint": 92, + "path": [ + "up", + "up", + "up", + "up" + ] + } + ] + }, + { + "levelId": 87, + "levelName": "第-913关", + "gridRows": 16, + "gridCols": 16, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 179, + "path": [ + "up", + "left", + "left", + "left" + ] + }, + { + "id": 2, + "startPoint": 31, + "path": [ + "up" + ] + }, + { + "id": 3, + "startPoint": 62, + "path": [ + "down", + "down", + "down", + "down", + "down", + "down", + "down", + "right" + ] + }, + { + "id": 4, + "startPoint": 6, + "path": [ + "right" + ] + }, + { + "id": 5, + "startPoint": 187, + "path": [ + "up", + "up", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 6, + "startPoint": 22, + "path": [ + "right", + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 7, + "startPoint": 221, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 8, + "startPoint": 80, + "path": [ + "down" + ] + }, + { + "id": 9, + "startPoint": 21, + "path": [ + "up" + ] + }, + { + "id": 10, + "startPoint": 74, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 11, + "startPoint": 185, + "path": [ + "up" + ] + }, + { + "id": 12, + "startPoint": 13, + "path": [ + "down", + "down", + "down", + "left", + "left", + "down", + "right", + "right" + ] + }, + { + "id": 13, + "startPoint": 101, + "path": [ + "left", + "up", + "up", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 14, + "startPoint": 133, + "path": [ + "down", + "down", + "down", + "down", + "right", + "right", + "right" + ] + }, + { + "id": 15, + "startPoint": 121, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 16, + "startPoint": 85, + "path": [ + "right", + "up", + "up", + "up" + ] + }, + { + "id": 17, + "startPoint": 108, + "path": [ + "left" + ] + }, + { + "id": 18, + "startPoint": 56, + "path": [ + "up" + ] + }, + { + "id": 19, + "startPoint": 134, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 20, + "startPoint": 248, + "path": [ + "left", + "left", + "left", + "left", + "left", + "up", + "up", + "up" + ] + }, + { + "id": 21, + "startPoint": 229, + "path": [ + "right", + "right", + "right", + "right", + "down" + ] + }, + { + "id": 22, + "startPoint": 218, + "path": [ + "up", + "right", + "right" + ] + }, + { + "id": 23, + "startPoint": 87, + "path": [ + "up" + ] + }, + { + "id": 24, + "startPoint": 131, + "path": [ + "down", + "right", + "up", + "up", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 25, + "startPoint": 104, + "path": [ + "left", + "left" + ] + }, + { + "id": 26, + "startPoint": 98, + "path": [ + "left" + ] + }, + { + "id": 27, + "startPoint": 242, + "path": [ + "left", + "up", + "up", + "left" + ] + }, + { + "id": 28, + "startPoint": 234, + "path": [ + "right", + "up", + "right" + ] + }, + { + "id": 29, + "startPoint": 53, + "path": [ + "up" + ] + }, + { + "id": 30, + "startPoint": 215, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 31, + "startPoint": 46, + "path": [ + "right" + ] + }, + { + "id": 32, + "startPoint": 206, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 33, + "startPoint": 177, + "path": [ + "down" + ] + }, + { + "id": 34, + "startPoint": 52, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 35, + "startPoint": 18, + "path": [ + "right" + ] + }, + { + "id": 36, + "startPoint": 3, + "path": [ + "left", + "left" + ] + } + ] + }, + { + "levelId": 88, + "levelName": "第-912关", + "gridRows": 16, + "gridCols": 16, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 114, + "path": [ + "down", + "right", + "right", + "down", + "left", + "left" + ] + }, + { + "id": 2, + "startPoint": 39, + "path": [ + "down", + "down", + "down", + "right", + "down", + "down" + ] + }, + { + "id": 3, + "startPoint": 121, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 4, + "startPoint": 94, + "path": [ + "down", + "down", + "down", + "down", + "down", + "down", + "down", + "down", + "right" + ] + }, + { + "id": 5, + "startPoint": 170, + "path": [ + "right", + "right", + "down", + "down", + "down", + "down", + "right", + "right" + ] + }, + { + "id": 6, + "startPoint": 53, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 7, + "startPoint": 198, + "path": [ + "left", + "left", + "down", + "down" + ] + }, + { + "id": 8, + "startPoint": 193, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 9, + "startPoint": 182, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 10, + "startPoint": 145, + "path": [ + "down", + "down" + ] + }, + { + "id": 11, + "startPoint": 35, + "path": [ + "up", + "up" + ] + }, + { + "id": 12, + "startPoint": 112, + "path": [ + "right" + ] + }, + { + "id": 13, + "startPoint": 251, + "path": [ + "right" + ] + }, + { + "id": 14, + "startPoint": 65, + "path": [ + "down", + "down", + "left" + ] + }, + { + "id": 15, + "startPoint": 102, + "path": [ + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 16, + "startPoint": 217, + "path": [ + "down", + "down" + ] + }, + { + "id": 17, + "startPoint": 36, + "path": [ + "up", + "up" + ] + }, + { + "id": 18, + "startPoint": 141, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 19, + "startPoint": 85, + "path": [ + "left", + "left" + ] + }, + { + "id": 20, + "startPoint": 155, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 21, + "startPoint": 61, + "path": [ + "left", + "left", + "up", + "right", + "down", + "down" + ] + }, + { + "id": 22, + "startPoint": 58, + "path": [ + "left", + "left" + ] + }, + { + "id": 23, + "startPoint": 116, + "path": [ + "left", + "up" + ] + }, + { + "id": 24, + "startPoint": 159, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 25, + "startPoint": 194, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 26, + "startPoint": 195, + "path": [ + "down" + ] + }, + { + "id": 27, + "startPoint": 107, + "path": [ + "right", + "right" + ] + }, + { + "id": 28, + "startPoint": 24, + "path": [ + "left", + "up" + ] + }, + { + "id": 29, + "startPoint": 28, + "path": [ + "left", + "left", + "up" + ] + }, + { + "id": 30, + "startPoint": 106, + "path": [ + "up", + "up" + ] + }, + { + "id": 31, + "startPoint": 227, + "path": [ + "down" + ] + }, + { + "id": 32, + "startPoint": 200, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 33, + "startPoint": 150, + "path": [ + "up", + "up" + ] + }, + { + "id": 34, + "startPoint": 203, + "path": [ + "down", + "down" + ] + }, + { + "id": 35, + "startPoint": 215, + "path": [ + "down", + "down" + ] + }, + { + "id": 36, + "startPoint": 245, + "path": [ + "left" + ] + } + ] + }, + { + "levelId": 89, + "levelName": "第-911关", + "gridRows": 16, + "gridCols": 16, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 62, + "path": [ + "left", + "left", + "down", + "down", + "right", + "right", + "right" + ] + }, + { + "id": 2, + "startPoint": 139, + "path": [ + "up", + "up", + "up", + "left", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 3, + "startPoint": 99, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 4, + "startPoint": 149, + "path": [ + "down", + "down", + "right", + "right", + "right", + "up", + "up" + ] + }, + { + "id": 5, + "startPoint": 147, + "path": [ + "right" + ] + }, + { + "id": 6, + "startPoint": 160, + "path": [ + "down", + "down", + "down", + "right", + "right", + "down", + "down" + ] + }, + { + "id": 7, + "startPoint": 246, + "path": [ + "left", + "left", + "left", + "up", + "right", + "right" + ] + }, + { + "id": 8, + "startPoint": 212, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 9, + "startPoint": 217, + "path": [ + "down", + "down" + ] + }, + { + "id": 10, + "startPoint": 52, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 11, + "startPoint": 10, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 12, + "startPoint": 108, + "path": [ + "down", + "down", + "down", + "down", + "right", + "right", + "right" + ] + }, + { + "id": 13, + "startPoint": 135, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 14, + "startPoint": 37, + "path": [ + "up", + "up" + ] + }, + { + "id": 15, + "startPoint": 170, + "path": [ + "up" + ] + }, + { + "id": 16, + "startPoint": 55, + "path": [ + "up", + "left" + ] + }, + { + "id": 17, + "startPoint": 144, + "path": [ + "up", + "up" + ] + }, + { + "id": 18, + "startPoint": 237, + "path": [ + "right", + "right", + "down" + ] + }, + { + "id": 19, + "startPoint": 202, + "path": [ + "up" + ] + }, + { + "id": 20, + "startPoint": 215, + "path": [ + "up", + "right", + "right" + ] + }, + { + "id": 21, + "startPoint": 253, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 22, + "startPoint": 64, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 23, + "startPoint": 46, + "path": [ + "up" + ] + }, + { + "id": 24, + "startPoint": 205, + "path": [ + "up" + ] + }, + { + "id": 25, + "startPoint": 110, + "path": [ + "left" + ] + }, + { + "id": 26, + "startPoint": 19, + "path": [ + "left", + "left", + "down", + "down" + ] + }, + { + "id": 27, + "startPoint": 116, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 28, + "startPoint": 59, + "path": [ + "left", + "up", + "up" + ] + }, + { + "id": 29, + "startPoint": 101, + "path": [ + "left" + ] + }, + { + "id": 30, + "startPoint": 72, + "path": [ + "right" + ] + }, + { + "id": 31, + "startPoint": 134, + "path": [ + "down", + "down" + ] + }, + { + "id": 32, + "startPoint": 63, + "path": [ + "up", + "up" + ] + }, + { + "id": 33, + "startPoint": 23, + "path": [ + "left" + ] + }, + { + "id": 34, + "startPoint": 56, + "path": [ + "up", + "up" + ] + }, + { + "id": 35, + "startPoint": 34, + "path": [ + "down" + ] + }, + { + "id": 36, + "startPoint": 141, + "path": [ + "right", + "down" + ] + } + ] + }, + { + "levelId": 90, + "levelName": "第-910关", + "gridRows": 16, + "gridCols": 16, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 162, + "path": [ + "down", + "left", + "up", + "up" + ] + }, + { + "id": 2, + "startPoint": 45, + "path": [ + "left", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 3, + "startPoint": 51, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 4, + "startPoint": 14, + "path": [ + "right" + ] + }, + { + "id": 5, + "startPoint": 190, + "path": [ + "right" + ] + }, + { + "id": 6, + "startPoint": 70, + "path": [ + "left", + "left" + ] + }, + { + "id": 7, + "startPoint": 153, + "path": [ + "right", + "right", + "right", + "up" + ] + }, + { + "id": 8, + "startPoint": 71, + "path": [ + "up" + ] + }, + { + "id": 9, + "startPoint": 174, + "path": [ + "right" + ] + }, + { + "id": 10, + "startPoint": 107, + "path": [ + "left", + "left", + "up", + "up" + ] + }, + { + "id": 11, + "startPoint": 62, + "path": [ + "right" + ] + }, + { + "id": 12, + "startPoint": 91, + "path": [ + "up", + "up", + "left", + "left" + ] + }, + { + "id": 13, + "startPoint": 22, + "path": [ + "down", + "left", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 14, + "startPoint": 85, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 15, + "startPoint": 235, + "path": [ + "down" + ] + }, + { + "id": 16, + "startPoint": 144, + "path": [ + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 17, + "startPoint": 221, + "path": [ + "down", + "right", + "right" + ] + }, + { + "id": 18, + "startPoint": 24, + "path": [ + "up" + ] + }, + { + "id": 19, + "startPoint": 130, + "path": [ + "right", + "right", + "right", + "up", + "right" + ] + }, + { + "id": 20, + "startPoint": 54, + "path": [ + "left", + "left" + ] + }, + { + "id": 21, + "startPoint": 233, + "path": [ + "right" + ] + }, + { + "id": 22, + "startPoint": 19, + "path": [ + "right" + ] + }, + { + "id": 23, + "startPoint": 198, + "path": [ + "left", + "up", + "up", + "up", + "left", + "down", + "down", + "down" + ] + }, + { + "id": 24, + "startPoint": 226, + "path": [ + "up", + "left", + "up" + ] + }, + { + "id": 25, + "startPoint": 142, + "path": [ + "down" + ] + }, + { + "id": 26, + "startPoint": 81, + "path": [ + "up" + ] + }, + { + "id": 27, + "startPoint": 217, + "path": [ + "left", + "left", + "down", + "left", + "left" + ] + }, + { + "id": 28, + "startPoint": 206, + "path": [ + "right" + ] + }, + { + "id": 29, + "startPoint": 46, + "path": [ + "up" + ] + }, + { + "id": 30, + "startPoint": 151, + "path": [ + "right", + "up", + "left", + "up", + "up" + ] + }, + { + "id": 31, + "startPoint": 113, + "path": [ + "up" + ] + }, + { + "id": 32, + "startPoint": 173, + "path": [ + "down", + "down" + ] + }, + { + "id": 33, + "startPoint": 220, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 34, + "startPoint": 95, + "path": [ + "up", + "left", + "left", + "left" + ] + }, + { + "id": 35, + "startPoint": 110, + "path": [ + "right" + ] + }, + { + "id": 36, + "startPoint": 163, + "path": [ + "up", + "left" + ] + }, + { + "id": 37, + "startPoint": 166, + "path": [ + "up" + ] + } + ] + }, + { + "levelId": 91, + "levelName": "第-909关", + "gridRows": 16, + "gridCols": 16, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 90, + "path": [ + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 2, + "startPoint": 160, + "path": [ + "up", + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 3, + "startPoint": 134, + "path": [ + "right", + "right", + "up", + "up", + "up", + "right" + ] + }, + { + "id": 4, + "startPoint": 117, + "path": [ + "right", + "right" + ] + }, + { + "id": 5, + "startPoint": 79, + "path": [ + "down", + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 6, + "startPoint": 99, + "path": [ + "down", + "down" + ] + }, + { + "id": 7, + "startPoint": 231, + "path": [ + "down" + ] + }, + { + "id": 8, + "startPoint": 186, + "path": [ + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 9, + "startPoint": 201, + "path": [ + "left", + "up", + "right" + ] + }, + { + "id": 10, + "startPoint": 211, + "path": [ + "down", + "down" + ] + }, + { + "id": 11, + "startPoint": 198, + "path": [ + "right" + ] + }, + { + "id": 12, + "startPoint": 84, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 13, + "startPoint": 44, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 14, + "startPoint": 235, + "path": [ + "down" + ] + }, + { + "id": 15, + "startPoint": 182, + "path": [ + "right" + ] + }, + { + "id": 16, + "startPoint": 250, + "path": [ + "left" + ] + }, + { + "id": 17, + "startPoint": 67, + "path": [ + "down", + "left", + "left", + "up", + "up", + "left" + ] + }, + { + "id": 18, + "startPoint": 27, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 19, + "startPoint": 218, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 20, + "startPoint": 165, + "path": [ + "left", + "left", + "down", + "left", + "up" + ] + }, + { + "id": 21, + "startPoint": 71, + "path": [ + "up", + "up", + "up", + "up", + "left", + "left", + "left" + ] + }, + { + "id": 22, + "startPoint": 254, + "path": [ + "left", + "left" + ] + }, + { + "id": 23, + "startPoint": 76, + "path": [ + "left", + "up", + "up" + ] + }, + { + "id": 24, + "startPoint": 230, + "path": [ + "down", + "left", + "left" + ] + }, + { + "id": 25, + "startPoint": 216, + "path": [ + "down", + "right", + "right" + ] + }, + { + "id": 26, + "startPoint": 16, + "path": [ + "right", + "up" + ] + }, + { + "id": 27, + "startPoint": 176, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 28, + "startPoint": 125, + "path": [ + "right" + ] + }, + { + "id": 29, + "startPoint": 236, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 30, + "startPoint": 85, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 31, + "startPoint": 62, + "path": [ + "right" + ] + }, + { + "id": 32, + "startPoint": 152, + "path": [ + "down" + ] + }, + { + "id": 33, + "startPoint": 161, + "path": [ + "down" + ] + }, + { + "id": 34, + "startPoint": 215, + "path": [ + "left", + "left" + ] + }, + { + "id": 35, + "startPoint": 167, + "path": [ + "left" + ] + }, + { + "id": 36, + "startPoint": 96, + "path": [ + "up", + "up" + ] + }, + { + "id": 37, + "startPoint": 113, + "path": [ + "left" + ] + } + ] + }, + { + "levelId": 92, + "levelName": "第-908关", + "gridRows": 16, + "gridCols": 16, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 76, + "path": [ + "up", + "up" + ] + }, + { + "id": 2, + "startPoint": 98, + "path": [ + "right", + "right" + ] + }, + { + "id": 3, + "startPoint": 7, + "path": [ + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 4, + "startPoint": 105, + "path": [ + "up", + "up", + "left", + "up", + "up", + "up" + ] + }, + { + "id": 5, + "startPoint": 153, + "path": [ + "down", + "down", + "left", + "left", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 6, + "startPoint": 29, + "path": [ + "right", + "right" + ] + }, + { + "id": 7, + "startPoint": 147, + "path": [ + "right", + "right" + ] + }, + { + "id": 8, + "startPoint": 195, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 9, + "startPoint": 137, + "path": [ + "up" + ] + }, + { + "id": 10, + "startPoint": 223, + "path": [ + "left", + "left", + "down" + ] + }, + { + "id": 11, + "startPoint": 218, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 12, + "startPoint": 228, + "path": [ + "down" + ] + }, + { + "id": 13, + "startPoint": 157, + "path": [ + "up", + "up" + ] + }, + { + "id": 14, + "startPoint": 181, + "path": [ + "right" + ] + }, + { + "id": 15, + "startPoint": 191, + "path": [ + "down" + ] + }, + { + "id": 16, + "startPoint": 131, + "path": [ + "up" + ] + }, + { + "id": 17, + "startPoint": 231, + "path": [ + "up", + "up" + ] + }, + { + "id": 18, + "startPoint": 254, + "path": [ + "left", + "left" + ] + }, + { + "id": 19, + "startPoint": 178, + "path": [ + "down" + ] + }, + { + "id": 20, + "startPoint": 82, + "path": [ + "up", + "right", + "right", + "up", + "up", + "left" + ] + }, + { + "id": 21, + "startPoint": 58, + "path": [ + "right" + ] + }, + { + "id": 22, + "startPoint": 197, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 23, + "startPoint": 101, + "path": [ + "right", + "up", + "right", + "right" + ] + }, + { + "id": 24, + "startPoint": 172, + "path": [ + "left" + ] + }, + { + "id": 25, + "startPoint": 51, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 26, + "startPoint": 97, + "path": [ + "up", + "up" + ] + }, + { + "id": 27, + "startPoint": 248, + "path": [ + "right", + "up" + ] + }, + { + "id": 28, + "startPoint": 136, + "path": [ + "down" + ] + }, + { + "id": 29, + "startPoint": 5, + "path": [ + "right" + ] + }, + { + "id": 30, + "startPoint": 55, + "path": [ + "up", + "up" + ] + }, + { + "id": 31, + "startPoint": 219, + "path": [ + "up" + ] + }, + { + "id": 32, + "startPoint": 224, + "path": [ + "right", + "right" + ] + }, + { + "id": 33, + "startPoint": 159, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 34, + "startPoint": 174, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 35, + "startPoint": 145, + "path": [ + "left" + ] + }, + { + "id": 36, + "startPoint": 251, + "path": [ + "left" + ] + }, + { + "id": 37, + "startPoint": 109, + "path": [ + "up", + "up", + "up", + "up" + ] + } + ] + }, + { + "levelId": 93, + "levelName": "第-907关", + "gridRows": 16, + "gridCols": 16, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 246, + "path": [ + "left", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 2, + "startPoint": 47, + "path": [ + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 3, + "startPoint": 83, + "path": [ + "up", + "up", + "left", + "left", + "left" + ] + }, + { + "id": 4, + "startPoint": 45, + "path": [ + "left", + "left", + "left", + "left", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 5, + "startPoint": 216, + "path": [ + "left", + "up", + "up", + "up", + "right", + "right" + ] + }, + { + "id": 6, + "startPoint": 150, + "path": [ + "down", + "down" + ] + }, + { + "id": 7, + "startPoint": 204, + "path": [ + "right", + "down", + "down", + "left", + "down" + ] + }, + { + "id": 8, + "startPoint": 250, + "path": [ + "right" + ] + }, + { + "id": 9, + "startPoint": 165, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 10, + "startPoint": 115, + "path": [ + "down", + "left", + "left", + "left" + ] + }, + { + "id": 11, + "startPoint": 232, + "path": [ + "down" + ] + }, + { + "id": 12, + "startPoint": 112, + "path": [ + "up", + "right", + "up", + "right" + ] + }, + { + "id": 13, + "startPoint": 21, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 14, + "startPoint": 103, + "path": [ + "down", + "down", + "down", + "right", + "right", + "right" + ] + }, + { + "id": 15, + "startPoint": 162, + "path": [ + "up" + ] + }, + { + "id": 16, + "startPoint": 211, + "path": [ + "down" + ] + }, + { + "id": 17, + "startPoint": 107, + "path": [ + "up", + "up" + ] + }, + { + "id": 18, + "startPoint": 230, + "path": [ + "right" + ] + }, + { + "id": 19, + "startPoint": 143, + "path": [ + "down", + "down" + ] + }, + { + "id": 20, + "startPoint": 206, + "path": [ + "right", + "down", + "down", + "down" + ] + }, + { + "id": 21, + "startPoint": 140, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 22, + "startPoint": 126, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 23, + "startPoint": 61, + "path": [ + "down", + "left" + ] + }, + { + "id": 24, + "startPoint": 137, + "path": [ + "up", + "up" + ] + }, + { + "id": 25, + "startPoint": 192, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 26, + "startPoint": 56, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 27, + "startPoint": 178, + "path": [ + "right", + "right" + ] + }, + { + "id": 28, + "startPoint": 184, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 29, + "startPoint": 26, + "path": [ + "up" + ] + }, + { + "id": 30, + "startPoint": 88, + "path": [ + "up", + "left" + ] + }, + { + "id": 31, + "startPoint": 25, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 32, + "startPoint": 132, + "path": [ + "right", + "right" + ] + }, + { + "id": 33, + "startPoint": 141, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 34, + "startPoint": 202, + "path": [ + "down", + "down" + ] + }, + { + "id": 35, + "startPoint": 74, + "path": [ + "up" + ] + }, + { + "id": 36, + "startPoint": 209, + "path": [ + "down" + ] + }, + { + "id": 37, + "startPoint": 226, + "path": [ + "up" + ] + }, + { + "id": 38, + "startPoint": 171, + "path": [ + "up", + "up" + ] + } + ] + }, + { + "levelId": 94, + "levelName": "第-906关", + "gridRows": 16, + "gridCols": 16, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 98, + "path": [ + "left", + "left" + ] + }, + { + "id": 2, + "startPoint": 18, + "path": [ + "right", + "right", + "right", + "right", + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 3, + "startPoint": 193, + "path": [ + "left" + ] + }, + { + "id": 4, + "startPoint": 46, + "path": [ + "left", + "left", + "left", + "left", + "left", + "down", + "down", + "right", + "right" + ] + }, + { + "id": 5, + "startPoint": 91, + "path": [ + "right", + "down", + "down", + "right" + ] + }, + { + "id": 6, + "startPoint": 50, + "path": [ + "left", + "left" + ] + }, + { + "id": 7, + "startPoint": 34, + "path": [ + "left", + "up", + "up" + ] + }, + { + "id": 8, + "startPoint": 237, + "path": [ + "down" + ] + }, + { + "id": 9, + "startPoint": 213, + "path": [ + "right", + "right" + ] + }, + { + "id": 10, + "startPoint": 137, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 11, + "startPoint": 31, + "path": [ + "up" + ] + }, + { + "id": 12, + "startPoint": 148, + "path": [ + "up", + "up", + "up", + "up", + "up", + "up", + "left" + ] + }, + { + "id": 13, + "startPoint": 221, + "path": [ + "up", + "right", + "right" + ] + }, + { + "id": 14, + "startPoint": 250, + "path": [ + "left", + "left", + "left", + "up", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 15, + "startPoint": 181, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 16, + "startPoint": 223, + "path": [ + "down", + "down" + ] + }, + { + "id": 17, + "startPoint": 129, + "path": [ + "up" + ] + }, + { + "id": 18, + "startPoint": 210, + "path": [ + "down", + "down" + ] + }, + { + "id": 19, + "startPoint": 9, + "path": [ + "left", + "left" + ] + }, + { + "id": 20, + "startPoint": 136, + "path": [ + "left", + "left" + ] + }, + { + "id": 21, + "startPoint": 229, + "path": [ + "left", + "left", + "down" + ] + }, + { + "id": 22, + "startPoint": 107, + "path": [ + "down", + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 23, + "startPoint": 238, + "path": [ + "up" + ] + }, + { + "id": 24, + "startPoint": 200, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 25, + "startPoint": 66, + "path": [ + "down" + ] + }, + { + "id": 26, + "startPoint": 174, + "path": [ + "right", + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 27, + "startPoint": 83, + "path": [ + "up" + ] + }, + { + "id": 28, + "startPoint": 189, + "path": [ + "left", + "up", + "right", + "down" + ] + }, + { + "id": 29, + "startPoint": 225, + "path": [ + "left" + ] + }, + { + "id": 30, + "startPoint": 230, + "path": [ + "down" + ] + }, + { + "id": 31, + "startPoint": 39, + "path": [ + "left" + ] + }, + { + "id": 32, + "startPoint": 151, + "path": [ + "left" + ] + }, + { + "id": 33, + "startPoint": 102, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 34, + "startPoint": 211, + "path": [ + "right" + ] + }, + { + "id": 35, + "startPoint": 161, + "path": [ + "up" + ] + }, + { + "id": 36, + "startPoint": 29, + "path": [ + "up" + ] + }, + { + "id": 37, + "startPoint": 56, + "path": [ + "left" + ] + }, + { + "id": 38, + "startPoint": 93, + "path": [ + "up", + "up", + "right", + "right" + ] + } + ] + }, + { + "levelId": 95, + "levelName": "第-905关", + "gridRows": 16, + "gridCols": 16, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 196, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 2, + "startPoint": 94, + "path": [ + "down", + "down" + ] + }, + { + "id": 3, + "startPoint": 213, + "path": [ + "down", + "down" + ] + }, + { + "id": 4, + "startPoint": 204, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 5, + "startPoint": 74, + "path": [ + "up", + "up", + "up", + "up", + "right", + "right" + ] + }, + { + "id": 6, + "startPoint": 125, + "path": [ + "up", + "up" + ] + }, + { + "id": 7, + "startPoint": 254, + "path": [ + "right" + ] + }, + { + "id": 8, + "startPoint": 127, + "path": [ + "down", + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 9, + "startPoint": 146, + "path": [ + "down", + "down" + ] + }, + { + "id": 10, + "startPoint": 85, + "path": [ + "left", + "down", + "right", + "right" + ] + }, + { + "id": 11, + "startPoint": 80, + "path": [ + "down" + ] + }, + { + "id": 12, + "startPoint": 61, + "path": [ + "right", + "right" + ] + }, + { + "id": 13, + "startPoint": 41, + "path": [ + "left", + "left", + "down" + ] + }, + { + "id": 14, + "startPoint": 181, + "path": [ + "right", + "down", + "down" + ] + }, + { + "id": 15, + "startPoint": 173, + "path": [ + "left", + "down" + ] + }, + { + "id": 16, + "startPoint": 108, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 17, + "startPoint": 248, + "path": [ + "up", + "left", + "left" + ] + }, + { + "id": 18, + "startPoint": 29, + "path": [ + "up" + ] + }, + { + "id": 19, + "startPoint": 132, + "path": [ + "up" + ] + }, + { + "id": 20, + "startPoint": 147, + "path": [ + "down", + "down" + ] + }, + { + "id": 21, + "startPoint": 59, + "path": [ + "up", + "right", + "up" + ] + }, + { + "id": 22, + "startPoint": 210, + "path": [ + "right", + "right" + ] + }, + { + "id": 23, + "startPoint": 30, + "path": [ + "down" + ] + }, + { + "id": 24, + "startPoint": 202, + "path": [ + "right", + "up", + "left", + "left" + ] + }, + { + "id": 25, + "startPoint": 5, + "path": [ + "left", + "left" + ] + }, + { + "id": 26, + "startPoint": 66, + "path": [ + "down", + "down", + "right" + ] + }, + { + "id": 27, + "startPoint": 131, + "path": [ + "left", + "left" + ] + }, + { + "id": 28, + "startPoint": 169, + "path": [ + "up", + "right", + "down" + ] + }, + { + "id": 29, + "startPoint": 83, + "path": [ + "up", + "up", + "left", + "left", + "left", + "up", + "up", + "up" + ] + }, + { + "id": 30, + "startPoint": 165, + "path": [ + "left" + ] + }, + { + "id": 31, + "startPoint": 221, + "path": [ + "up", + "up" + ] + }, + { + "id": 32, + "startPoint": 69, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 33, + "startPoint": 177, + "path": [ + "left" + ] + }, + { + "id": 34, + "startPoint": 88, + "path": [ + "up", + "right" + ] + }, + { + "id": 35, + "startPoint": 123, + "path": [ + "right" + ] + }, + { + "id": 36, + "startPoint": 8, + "path": [ + "down" + ] + }, + { + "id": 37, + "startPoint": 22, + "path": [ + "right" + ] + }, + { + "id": 38, + "startPoint": 19, + "path": [ + "down" + ] + } + ] + }, + { + "levelId": 96, + "levelName": "第-904关", + "gridRows": 16, + "gridCols": 16, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 201, + "path": [ + "down", + "down" + ] + }, + { + "id": 2, + "startPoint": 36, + "path": [ + "left", + "left", + "down", + "right", + "right", + "up", + "up", + "up" + ] + }, + { + "id": 3, + "startPoint": 74, + "path": [ + "down", + "down", + "right" + ] + }, + { + "id": 4, + "startPoint": 115, + "path": [ + "right", + "right", + "up", + "up", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 5, + "startPoint": 165, + "path": [ + "left", + "left" + ] + }, + { + "id": 6, + "startPoint": 168, + "path": [ + "up", + "up", + "right", + "right", + "up" + ] + }, + { + "id": 7, + "startPoint": 209, + "path": [ + "down", + "down" + ] + }, + { + "id": 8, + "startPoint": 124, + "path": [ + "left" + ] + }, + { + "id": 9, + "startPoint": 17, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 10, + "startPoint": 39, + "path": [ + "down", + "down" + ] + }, + { + "id": 11, + "startPoint": 169, + "path": [ + "up" + ] + }, + { + "id": 12, + "startPoint": 186, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 13, + "startPoint": 226, + "path": [ + "right", + "right" + ] + }, + { + "id": 14, + "startPoint": 215, + "path": [ + "down", + "down" + ] + }, + { + "id": 15, + "startPoint": 112, + "path": [ + "up", + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 16, + "startPoint": 135, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 17, + "startPoint": 57, + "path": [ + "up", + "up", + "right", + "right" + ] + }, + { + "id": 18, + "startPoint": 82, + "path": [ + "up" + ] + }, + { + "id": 19, + "startPoint": 19, + "path": [ + "left" + ] + }, + { + "id": 20, + "startPoint": 208, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 21, + "startPoint": 126, + "path": [ + "up", + "up" + ] + }, + { + "id": 22, + "startPoint": 172, + "path": [ + "up", + "up" + ] + }, + { + "id": 23, + "startPoint": 114, + "path": [ + "up" + ] + }, + { + "id": 24, + "startPoint": 187, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 25, + "startPoint": 220, + "path": [ + "left" + ] + }, + { + "id": 26, + "startPoint": 68, + "path": [ + "right", + "right" + ] + }, + { + "id": 27, + "startPoint": 159, + "path": [ + "left", + "left" + ] + }, + { + "id": 28, + "startPoint": 199, + "path": [ + "right" + ] + }, + { + "id": 29, + "startPoint": 178, + "path": [ + "down", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 30, + "startPoint": 185, + "path": [ + "left" + ] + }, + { + "id": 31, + "startPoint": 182, + "path": [ + "left", + "left" + ] + }, + { + "id": 32, + "startPoint": 108, + "path": [ + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 33, + "startPoint": 151, + "path": [ + "left", + "left", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 34, + "startPoint": 131, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 35, + "startPoint": 109, + "path": [ + "down", + "down", + "right", + "right" + ] + }, + { + "id": 36, + "startPoint": 205, + "path": [ + "down", + "right", + "right" + ] + }, + { + "id": 37, + "startPoint": 56, + "path": [ + "down" + ] + }, + { + "id": 38, + "startPoint": 235, + "path": [ + "down" + ] + }, + { + "id": 39, + "startPoint": 38, + "path": [ + "left" + ] + } + ] + }, + { + "levelId": 97, + "levelName": "第-903关", + "gridRows": 16, + "gridCols": 16, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 62, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 2, + "startPoint": 195, + "path": [ + "up", + "up", + "left", + "left", + "up", + "left" + ] + }, + { + "id": 3, + "startPoint": 89, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 4, + "startPoint": 199, + "path": [ + "right", + "right", + "right", + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 5, + "startPoint": 249, + "path": [ + "left", + "left" + ] + }, + { + "id": 6, + "startPoint": 82, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 7, + "startPoint": 93, + "path": [ + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 8, + "startPoint": 198, + "path": [ + "down", + "down", + "down", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 9, + "startPoint": 24, + "path": [ + "left", + "up" + ] + }, + { + "id": 10, + "startPoint": 72, + "path": [ + "up", + "up" + ] + }, + { + "id": 11, + "startPoint": 96, + "path": [ + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 12, + "startPoint": 171, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 13, + "startPoint": 221, + "path": [ + "down", + "left", + "left", + "left", + "up", + "left", + "left", + "left" + ] + }, + { + "id": 14, + "startPoint": 76, + "path": [ + "left", + "left" + ] + }, + { + "id": 15, + "startPoint": 239, + "path": [ + "left", + "up" + ] + }, + { + "id": 16, + "startPoint": 211, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 17, + "startPoint": 213, + "path": [ + "up", + "up", + "up", + "up" + ] + }, + { + "id": 18, + "startPoint": 55, + "path": [ + "left", + "left", + "up", + "up", + "up" + ] + }, + { + "id": 19, + "startPoint": 137, + "path": [ + "right", + "up" + ] + }, + { + "id": 20, + "startPoint": 27, + "path": [ + "right" + ] + }, + { + "id": 21, + "startPoint": 150, + "path": [ + "up", + "left" + ] + }, + { + "id": 22, + "startPoint": 100, + "path": [ + "right", + "right", + "right", + "up" + ] + }, + { + "id": 23, + "startPoint": 52, + "path": [ + "up", + "up" + ] + }, + { + "id": 24, + "startPoint": 253, + "path": [ + "right", + "right" + ] + }, + { + "id": 25, + "startPoint": 69, + "path": [ + "left", + "left" + ] + }, + { + "id": 26, + "startPoint": 106, + "path": [ + "up" + ] + }, + { + "id": 27, + "startPoint": 65, + "path": [ + "down", + "down", + "down", + "left" + ] + }, + { + "id": 28, + "startPoint": 183, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 29, + "startPoint": 25, + "path": [ + "right" + ] + }, + { + "id": 30, + "startPoint": 22, + "path": [ + "up" + ] + }, + { + "id": 31, + "startPoint": 115, + "path": [ + "down", + "down" + ] + }, + { + "id": 32, + "startPoint": 153, + "path": [ + "down" + ] + }, + { + "id": 33, + "startPoint": 125, + "path": [ + "left", + "left", + "down", + "down" + ] + }, + { + "id": 34, + "startPoint": 168, + "path": [ + "left", + "left" + ] + }, + { + "id": 35, + "startPoint": 111, + "path": [ + "down", + "left" + ] + }, + { + "id": 36, + "startPoint": 44, + "path": [ + "down" + ] + }, + { + "id": 37, + "startPoint": 135, + "path": [ + "up" + ] + }, + { + "id": 38, + "startPoint": 105, + "path": [ + "left" + ] + }, + { + "id": 39, + "startPoint": 227, + "path": [ + "left", + "left", + "left", + "down" + ] + } + ] + }, + { + "levelId": 98, + "levelName": "第-902关", + "gridRows": 16, + "gridCols": 16, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 77, + "path": [ + "right", + "right" + ] + }, + { + "id": 2, + "startPoint": 32, + "path": [ + "right", + "right" + ] + }, + { + "id": 3, + "startPoint": 142, + "path": [ + "right" + ] + }, + { + "id": 4, + "startPoint": 53, + "path": [ + "right", + "right", + "right", + "right", + "up", + "right", + "up" + ] + }, + { + "id": 5, + "startPoint": 90, + "path": [ + "left", + "left", + "down", + "down", + "left", + "left" + ] + }, + { + "id": 6, + "startPoint": 237, + "path": [ + "left", + "down" + ] + }, + { + "id": 7, + "startPoint": 153, + "path": [ + "left", + "left", + "left", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 8, + "startPoint": 40, + "path": [ + "up", + "up" + ] + }, + { + "id": 9, + "startPoint": 46, + "path": [ + "right" + ] + }, + { + "id": 10, + "startPoint": 101, + "path": [ + "up", + "up" + ] + }, + { + "id": 11, + "startPoint": 218, + "path": [ + "left", + "down", + "right", + "right" + ] + }, + { + "id": 12, + "startPoint": 203, + "path": [ + "right", + "down" + ] + }, + { + "id": 13, + "startPoint": 49, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 14, + "startPoint": 215, + "path": [ + "right", + "up", + "up", + "up" + ] + }, + { + "id": 15, + "startPoint": 171, + "path": [ + "right", + "up", + "right", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 16, + "startPoint": 195, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 17, + "startPoint": 18, + "path": [ + "left", + "left" + ] + }, + { + "id": 18, + "startPoint": 75, + "path": [ + "left", + "left", + "left", + "left", + "left", + "down", + "down" + ] + }, + { + "id": 19, + "startPoint": 10, + "path": [ + "right", + "down", + "down", + "down" + ] + }, + { + "id": 20, + "startPoint": 133, + "path": [ + "up", + "left", + "left", + "left", + "left", + "down" + ] + }, + { + "id": 21, + "startPoint": 13, + "path": [ + "left" + ] + }, + { + "id": 22, + "startPoint": 161, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 23, + "startPoint": 197, + "path": [ + "left" + ] + }, + { + "id": 24, + "startPoint": 121, + "path": [ + "down" + ] + }, + { + "id": 25, + "startPoint": 183, + "path": [ + "up" + ] + }, + { + "id": 26, + "startPoint": 2, + "path": [ + "left" + ] + }, + { + "id": 27, + "startPoint": 250, + "path": [ + "left", + "left" + ] + }, + { + "id": 28, + "startPoint": 141, + "path": [ + "left" + ] + }, + { + "id": 29, + "startPoint": 201, + "path": [ + "right" + ] + }, + { + "id": 30, + "startPoint": 243, + "path": [ + "right", + "right", + "right", + "up", + "right" + ] + }, + { + "id": 31, + "startPoint": 28, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 32, + "startPoint": 81, + "path": [ + "down" + ] + }, + { + "id": 33, + "startPoint": 29, + "path": [ + "down" + ] + }, + { + "id": 34, + "startPoint": 84, + "path": [ + "left", + "left" + ] + }, + { + "id": 35, + "startPoint": 212, + "path": [ + "right" + ] + }, + { + "id": 36, + "startPoint": 19, + "path": [ + "right", + "right", + "right" + ] + }, + { + "id": 37, + "startPoint": 175, + "path": [ + "up" + ] + }, + { + "id": 38, + "startPoint": 228, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 39, + "startPoint": 206, + "path": [ + "down", + "down" + ] + } + ] + }, + { + "levelId": 99, + "levelName": "第-901关", + "gridRows": 16, + "gridCols": 16, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 91, + "path": [ + "left", + "up", + "up", + "left", + "up" + ] + }, + { + "id": 2, + "startPoint": 22, + "path": [ + "left", + "down" + ] + }, + { + "id": 3, + "startPoint": 43, + "path": [ + "down", + "down" + ] + }, + { + "id": 4, + "startPoint": 185, + "path": [ + "right", + "right" + ] + }, + { + "id": 5, + "startPoint": 232, + "path": [ + "down" + ] + }, + { + "id": 6, + "startPoint": 46, + "path": [ + "up", + "right" + ] + }, + { + "id": 7, + "startPoint": 15, + "path": [ + "left", + "left" + ] + }, + { + "id": 8, + "startPoint": 105, + "path": [ + "up", + "up" + ] + }, + { + "id": 9, + "startPoint": 175, + "path": [ + "left", + "left", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 10, + "startPoint": 241, + "path": [ + "left" + ] + }, + { + "id": 11, + "startPoint": 136, + "path": [ + "right", + "right", + "right", + "right", + "right" + ] + }, + { + "id": 12, + "startPoint": 227, + "path": [ + "up", + "up", + "up", + "up", + "left", + "left" + ] + }, + { + "id": 13, + "startPoint": 128, + "path": [ + "down", + "down" + ] + }, + { + "id": 14, + "startPoint": 149, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 15, + "startPoint": 104, + "path": [ + "up", + "up", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 16, + "startPoint": 80, + "path": [ + "right", + "up", + "up", + "right", + "down" + ] + }, + { + "id": 17, + "startPoint": 181, + "path": [ + "right", + "right", + "down", + "left", + "left", + "left" + ] + }, + { + "id": 18, + "startPoint": 54, + "path": [ + "right" + ] + }, + { + "id": 19, + "startPoint": 219, + "path": [ + "down", + "down" + ] + }, + { + "id": 20, + "startPoint": 212, + "path": [ + "down", + "down", + "left" + ] + }, + { + "id": 21, + "startPoint": 86, + "path": [ + "up" + ] + }, + { + "id": 22, + "startPoint": 39, + "path": [ + "up", + "up" + ] + }, + { + "id": 23, + "startPoint": 230, + "path": [ + "up" + ] + }, + { + "id": 24, + "startPoint": 158, + "path": [ + "right" + ] + }, + { + "id": 25, + "startPoint": 99, + "path": [ + "left", + "down", + "down", + "left" + ] + }, + { + "id": 26, + "startPoint": 95, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 27, + "startPoint": 102, + "path": [ + "right", + "up" + ] + }, + { + "id": 28, + "startPoint": 53, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 29, + "startPoint": 118, + "path": [ + "left", + "left", + "left", + "down" + ] + }, + { + "id": 30, + "startPoint": 26, + "path": [ + "left" + ] + }, + { + "id": 31, + "startPoint": 45, + "path": [ + "up" + ] + }, + { + "id": 32, + "startPoint": 156, + "path": [ + "right" + ] + }, + { + "id": 33, + "startPoint": 250, + "path": [ + "up", + "up", + "up" + ] + }, + { + "id": 34, + "startPoint": 0, + "path": [ + "down" + ] + }, + { + "id": 35, + "startPoint": 190, + "path": [ + "down", + "down", + "down", + "left", + "left", + "down" + ] + }, + { + "id": 36, + "startPoint": 122, + "path": [ + "left", + "left", + "left" + ] + }, + { + "id": 37, + "startPoint": 83, + "path": [ + "up", + "up", + "right", + "up", + "up", + "up" + ] + }, + { + "id": 38, + "startPoint": 1, + "path": [ + "down", + "down", + "left" + ] + }, + { + "id": 39, + "startPoint": 143, + "path": [ + "up", + "up" + ] + }, + { + "id": 40, + "startPoint": 60, + "path": [ + "up", + "up", + "up" + ] + } + ] + }, + { + "levelId": 100, + "levelName": "第-900关", + "gridRows": 16, + "gridCols": 16, + "pointSpacing": 60, + "arrows": [ + { + "id": 1, + "startPoint": 100, + "path": [ + "left", + "left", + "left", + "left" + ] + }, + { + "id": 2, + "startPoint": 42, + "path": [ + "down", + "down" + ] + }, + { + "id": 3, + "startPoint": 134, + "path": [ + "left", + "left", + "left", + "down", + "left", + "left" + ] + }, + { + "id": 4, + "startPoint": 25, + "path": [ + "up" + ] + }, + { + "id": 5, + "startPoint": 219, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 6, + "startPoint": 13, + "path": [ + "down", + "down", + "down", + "down" + ] + }, + { + "id": 7, + "startPoint": 157, + "path": [ + "left", + "down", + "down", + "down", + "right" + ] + }, + { + "id": 8, + "startPoint": 180, + "path": [ + "up", + "left", + "left", + "left" + ] + }, + { + "id": 9, + "startPoint": 201, + "path": [ + "right", + "right" + ] + }, + { + "id": 10, + "startPoint": 38, + "path": [ + "left", + "left", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 11, + "startPoint": 149, + "path": [ + "down", + "down", + "down", + "down", + "down", + "down" + ] + }, + { + "id": 12, + "startPoint": 190, + "path": [ + "up", + "up", + "up", + "up", + "right" + ] + }, + { + "id": 13, + "startPoint": 255, + "path": [ + "left", + "left" + ] + }, + { + "id": 14, + "startPoint": 210, + "path": [ + "left", + "left" + ] + }, + { + "id": 15, + "startPoint": 106, + "path": [ + "left", + "left", + "up" + ] + }, + { + "id": 16, + "startPoint": 186, + "path": [ + "up", + "left", + "left", + "left", + "left" + ] + }, + { + "id": 17, + "startPoint": 70, + "path": [ + "left", + "down", + "down", + "down" + ] + }, + { + "id": 18, + "startPoint": 15, + "path": [ + "left" + ] + }, + { + "id": 19, + "startPoint": 64, + "path": [ + "up" + ] + }, + { + "id": 20, + "startPoint": 154, + "path": [ + "up", + "left", + "left", + "left" + ] + }, + { + "id": 21, + "startPoint": 94, + "path": [ + "down" + ] + }, + { + "id": 22, + "startPoint": 20, + "path": [ + "left" + ] + }, + { + "id": 23, + "startPoint": 66, + "path": [ + "right", + "right", + "up" + ] + }, + { + "id": 24, + "startPoint": 113, + "path": [ + "down" + ] + }, + { + "id": 25, + "startPoint": 103, + "path": [ + "up", + "left" + ] + }, + { + "id": 26, + "startPoint": 187, + "path": [ + "up", + "up" + ] + }, + { + "id": 27, + "startPoint": 121, + "path": [ + "right", + "right", + "right", + "right" + ] + }, + { + "id": 28, + "startPoint": 120, + "path": [ + "left", + "left" + ] + }, + { + "id": 29, + "startPoint": 175, + "path": [ + "down", + "down" + ] + }, + { + "id": 30, + "startPoint": 200, + "path": [ + "down", + "down", + "down" + ] + }, + { + "id": 31, + "startPoint": 234, + "path": [ + "down" + ] + }, + { + "id": 32, + "startPoint": 177, + "path": [ + "left", + "down" + ] + }, + { + "id": 33, + "startPoint": 227, + "path": [ + "down" + ] + }, + { + "id": 34, + "startPoint": 242, + "path": [ + "left", + "left" + ] + }, + { + "id": 35, + "startPoint": 27, + "path": [ + "up" + ] + }, + { + "id": 36, + "startPoint": 22, + "path": [ + "right", + "right" + ] + }, + { + "id": 37, + "startPoint": 151, + "path": [ + "right" + ] + }, + { + "id": 38, + "startPoint": 31, + "path": [ + "down", + "down" + ] + }, + { + "id": 39, + "startPoint": 91, + "path": [ + "right", + "up", + "up", + "up", + "up" + ] + }, + { + "id": 40, + "startPoint": 128, + "path": [ + "down", + "down" + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Assets/StreamingAssets/all_levels.json.meta b/Assets/StreamingAssets/all_levels.json.meta new file mode 100644 index 0000000..a0d6bdf --- /dev/null +++ b/Assets/StreamingAssets/all_levels.json.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: d3ca8a2f2a5b49058adc6209a86a8251 +timeCreated: 1781603321 \ No newline at end of file