diff --git a/graph/formats/cytoscapejs/cytoscapejs.go b/graph/formats/cytoscapejs/cytoscapejs.go new file mode 100644 index 00000000..f9f9d767 --- /dev/null +++ b/graph/formats/cytoscapejs/cytoscapejs.go @@ -0,0 +1,310 @@ +// Copyright ©2018 The Gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package cytoscapejs implements marshaling and unmarshaling of Cytoscape.js JSON documents. +// +// See http://js.cytoscape.org/ for Cytoscape.js documentation. +package cytoscapejs // import "gonum.org/v1/gonum/graph/formats/cytoscapejs" + +import ( + "encoding/json" + "errors" + "fmt" +) + +// GraphElem is a Cytoscape.js graph with mixed graph elements. +type GraphElem struct { + Elements []Element `json:"elements"` + Layout interface{} `json:"layout,omitempty"` + Style []interface{} `json:"style,omitempty"` +} + +// Element is a mixed graph element. +type Element struct { + Group string `json:"group,omitempty"` + Data ElemData `json:"data"` + Position Position `json:"position,omitempty"` + RenderedPosition Position `json:"renderedPosition,omitempty"` + Selected bool `json:"selected,omitempty"` + Selectable bool `json:"selectable,omitempty"` + Locked bool `json:"locked,omitempty"` + Grabbable bool `json:"grabbable,omitempty"` + Classes string `json:"classes,omitempty"` + Scratch interface{} `json:"scratch,omitempty"` +} + +// ElemType describes an Element type. +type ElemType int + +const ( + InvalidElement ElemType = iota - 1 + NodeElement + EdgeElement +) + +// Type returns the element type of the receiver. It returns an error if the Element Group +// is invalid or does not match the Element Data, or if the Elelement Data is an incomplete +// edge. +func (e Element) Type() (ElemType, error) { + et := InvalidElement + switch { + case e.Data.Source == "" && e.Data.Target == "": + et = NodeElement + case e.Data.Source != "" && e.Data.Target != "": + et = EdgeElement + default: + return et, errors.New("cytoscapejs: invalid element: incomplete edge") + } + switch { + case e.Group == "": + return et, nil + case e.Group == "node" && et == NodeElement: + return NodeElement, nil + case e.Group == "edge" && et == EdgeElement: + return NodeElement, nil + default: + return InvalidElement, errors.New("cytoscapejs: invalid element: mismatched group") + } +} + +// ElemData is a graph element's data container. +type ElemData struct { + ID string + Source string + Target string + Parent string + Attributes map[string]interface{} +} + +var ( + _ json.Marshaler = (*ElemData)(nil) + _ json.Unmarshaler = (*ElemData)(nil) +) + +// MarshalJSON implements the json.Marshaler interface. +func (e *ElemData) MarshalJSON() ([]byte, error) { + if e.Attributes == nil { + type edge struct { + ID string `json:"id"` + Source string `json:"source"` + Target string `json:"target"` + Parent string `json:"parent,omitempty"` + } + return json.Marshal(edge{ID: e.ID, Source: e.Source, Target: e.Target, Parent: e.Parent}) + } + e.Attributes["id"] = e.ID + if e.Source != "" { + e.Attributes["source"] = e.Source + } + if e.Target != "" { + e.Attributes["target"] = e.Target + } + if e.Parent != "" { + e.Attributes["parent"] = e.Parent + } + b, err := json.Marshal(e.Attributes) + delete(e.Attributes, "id") + if e.Source != "" { + delete(e.Attributes, "source") + } + if e.Target != "" { + delete(e.Attributes, "target") + } + if e.Parent != "" { + delete(e.Attributes, "parent") + } + return b, err +} + +// UnmarshalJSON implements the json.Unmarshaler interface. +func (e *ElemData) UnmarshalJSON(data []byte) error { + var attrs map[string]interface{} + err := json.Unmarshal(data, &attrs) + if err != nil { + return err + } + id, ok := attrs["id"] + if !ok { + return errors.New("cytoscapejs: no ID") + } + e.ID = fmt.Sprint(id) + source, ok := attrs["source"] + if ok { + e.Source = fmt.Sprint(source) + } + target, ok := attrs["target"] + if ok { + e.Target = fmt.Sprint(target) + } + p, ok := attrs["parent"] + if ok { + e.Parent = fmt.Sprint(p) + } + delete(attrs, "id") + delete(attrs, "source") + delete(attrs, "target") + delete(attrs, "parent") + if len(attrs) != 0 { + e.Attributes = attrs + } + return nil +} + +// GraphNodeEdge is a Cytoscape.js graph with separated nodes and edges. +type GraphNodeEdge struct { + Elements Elements `json:"elements"` + Layout interface{} `json:"layout,omitempty"` + Style []interface{} `json:"style,omitempty"` +} + +// Elements contains the nodes and edges of a GraphNodeEdge. +type Elements struct { + Nodes []Node `json:"nodes"` + Edges []Edge `json:"edges"` +} + +// Node is a Cytoscape.js node. +type Node struct { + Data NodeData `json:"data"` + Position Position `json:"position,omitempty"` + RenderedPosition Position `json:"renderedPosition,omitempty"` + Selected bool `json:"selected,omitempty"` + Selectable bool `json:"selectable,omitempty"` + Locked bool `json:"locked,omitempty"` + Grabbable bool `json:"grabbable,omitempty"` + Classes string `json:"classes,omitempty"` + Scratch interface{} `json:"scratch,omitempty"` +} + +// NodeData is a graph node's data container. +type NodeData struct { + ID string + Parent string + Attributes map[string]interface{} +} + +var ( + _ json.Marshaler = (*NodeData)(nil) + _ json.Unmarshaler = (*NodeData)(nil) +) + +// MarshalJSON implements the json.Marshaler interface. +func (n *NodeData) MarshalJSON() ([]byte, error) { + if n.Attributes == nil { + type node struct { + ID string `json:"id"` + Parent string `json:"parent,omitempty"` + } + return json.Marshal(node{ID: n.ID, Parent: n.Parent}) + } + n.Attributes["id"] = n.ID + n.Attributes["parent"] = n.Parent + b, err := json.Marshal(n.Attributes) + delete(n.Attributes, "id") + delete(n.Attributes, "parent") + return b, err +} + +// UnmarshalJSON implements the json.Unmarshaler interface. +func (n *NodeData) UnmarshalJSON(data []byte) error { + var attrs map[string]interface{} + err := json.Unmarshal(data, &attrs) + if err != nil { + return err + } + id, ok := attrs["id"] + if !ok { + return errors.New("cytoscapejs: no ID") + } + n.ID = fmt.Sprint(id) + delete(attrs, "id") + p, ok := attrs["parent"] + if ok { + n.Parent = fmt.Sprint(p) + } + delete(attrs, "parent") + if len(attrs) != 0 { + n.Attributes = attrs + } + return nil +} + +// Edge is a Cytoscape.js edge. +type Edge struct { + Data EdgeData `json:"data"` + Selected bool `json:"selected,omitempty"` + Selectable bool `json:"selectable,omitempty"` + Classes string `json:"classes,omitempty"` + Scratch interface{} `json:"scratch,omitempty"` +} + +// EdgeData is a graph edge's data container. +type EdgeData struct { + ID string + Source string + Target string + Attributes map[string]interface{} +} + +var ( + _ json.Marshaler = (*EdgeData)(nil) + _ json.Unmarshaler = (*EdgeData)(nil) +) + +// MarshalJSON implements the json.Marshaler interface. +func (e *EdgeData) MarshalJSON() ([]byte, error) { + if e.Attributes == nil { + type edge struct { + ID string `json:"id"` + Source string `json:"source"` + Target string `json:"target"` + } + return json.Marshal(edge{ID: e.ID, Source: e.Source, Target: e.Target}) + } + e.Attributes["id"] = e.ID + e.Attributes["source"] = e.Source + e.Attributes["target"] = e.Target + b, err := json.Marshal(e.Attributes) + delete(e.Attributes, "id") + delete(e.Attributes, "source") + delete(e.Attributes, "target") + return b, err +} + +// UnmarshalJSON implements the json.Unmarshaler interface. +func (e *EdgeData) UnmarshalJSON(data []byte) error { + var attrs map[string]interface{} + err := json.Unmarshal(data, &attrs) + if err != nil { + return err + } + id, ok := attrs["id"] + if !ok { + return errors.New("cytoscapejs: no ID") + } + source, ok := attrs["source"] + if !ok { + return errors.New("cytoscapejs: no source") + } + target, ok := attrs["target"] + if !ok { + return errors.New("cytoscapejs: no target") + } + e.ID = fmt.Sprint(id) + e.Source = fmt.Sprint(source) + e.Target = fmt.Sprint(target) + delete(attrs, "id") + delete(attrs, "source") + delete(attrs, "target") + if len(attrs) != 0 { + e.Attributes = attrs + } + return nil +} + +// Position is a node position. +type Position struct { + X float64 `json:"x"` + Y float64 `json:"y"` +} diff --git a/graph/formats/cytoscapejs/cytoscapejs_test.go b/graph/formats/cytoscapejs/cytoscapejs_test.go new file mode 100644 index 00000000..41217877 --- /dev/null +++ b/graph/formats/cytoscapejs/cytoscapejs_test.go @@ -0,0 +1,371 @@ +// Copyright ©2018 The Gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package cytoscapejs + +import ( + "encoding/json" + "io/ioutil" + "path/filepath" + "reflect" + "testing" +) + +var cytoscapejsElementsTests = []struct { + path string + wantNodes int + wantEdges int + wantGraph []Element + wantAttributes []string +}{ + { + path: "edge-type.json", + wantNodes: 10, + wantEdges: 10, + wantGraph: []Element{ + {Data: ElemData{ID: "n01", Attributes: map[string]interface{}{"type": "bezier"}}}, + {Data: ElemData{ID: "n02"}}, + {Data: ElemData{ID: "e01", Source: "n01", Target: "n02"}, Classes: "bezier"}, + {Data: ElemData{ID: "e02", Source: "n01", Target: "n02"}, Classes: "bezier"}, + {Data: ElemData{ID: "e03", Source: "n02", Target: "n01"}, Classes: "bezier"}, + {Data: ElemData{ID: "n03", Attributes: map[string]interface{}{"type": "unbundled-bezier"}}}, + {Data: ElemData{ID: "n04"}}, + {Data: ElemData{ID: "e04", Source: "n03", Target: "n04"}, Classes: "unbundled-bezier"}, + {Data: ElemData{ID: "n05", Attributes: map[string]interface{}{"type": "unbundled-bezier(multiple)"}}}, + {Data: ElemData{ID: "n06"}}, + {Data: ElemData{ID: "e05", Source: "n05", Target: "n06", Parent: ""}, Classes: "multi-unbundled-bezier"}, + {Data: ElemData{ID: "n07", Attributes: map[string]interface{}{"type": "haystack"}}}, + {Data: ElemData{ID: "n08"}}, + {Data: ElemData{ID: "e06", Source: "n08", Target: "n07"}, Classes: "haystack"}, + {Data: ElemData{ID: "e07", Source: "n08", Target: "n07"}, Classes: "haystack"}, + {Data: ElemData{ID: "e08", Source: "n08", Target: "n07"}, Classes: "haystack"}, + {Data: ElemData{ID: "e09", Source: "n08", Target: "n07"}, Classes: "haystack"}, + {Data: ElemData{ID: "n09", Attributes: map[string]interface{}{"type": "segments"}}}, + {Data: ElemData{ID: "n10"}}, + {Data: ElemData{ID: "e10", Source: "n09", Target: "n10"}, Classes: "segments"}, + }, + }, +} + +func TestUnmarshalElements(t *testing.T) { + for _, test := range cytoscapejsElementsTests { + data, err := ioutil.ReadFile(filepath.Join("testdata", test.path)) + if err != nil { + t.Errorf("failed to read %q: %v", test.path, err) + continue + } + var got []Element + err = json.Unmarshal(data, &got) + if err != nil { + t.Errorf("failed to unmarshal %q: %v", test.path, err) + continue + } + var gotNodes, gotEdges int + for _, e := range got { + typ, err := e.Type() + if err != nil { + t.Errorf("unexpected error finding element type for %+v: %v", e, err) + } + switch typ { + case NodeElement: + gotNodes++ + case EdgeElement: + gotEdges++ + } + } + + if gotNodes != test.wantNodes { + t.Errorf("unexpected result for order of %q: got:%d want:%d", test.path, gotNodes, test.wantNodes) + } + if gotEdges != test.wantEdges { + t.Errorf("unexpected result for size of %q: got:%d want:%d", test.path, gotEdges, test.wantEdges) + } + if test.wantGraph != nil && !reflect.DeepEqual(got, test.wantGraph) { + t.Errorf("unexpected result for %q:\ngot:\n%#v\nwant:\n%#v", test.path, got, test.wantGraph) + } + } +} + +func TestMarshalElements(t *testing.T) { + for _, test := range cytoscapejsElementsTests { + data, err := ioutil.ReadFile(filepath.Join("testdata", test.path)) + if err != nil { + t.Errorf("failed to read %q: %v", test.path, err) + continue + } + var want []Element + err = json.Unmarshal(data, &want) + if err != nil { + t.Errorf("failed to unmarshal %q: %v", test.path, err) + continue + } + marshaled, err := json.Marshal(want) + if err != nil { + t.Errorf("failed to unmarshal %q: %v", test.path, err) + continue + } + var got []Element + err = json.Unmarshal(marshaled, &got) + if err != nil { + t.Errorf("failed to unmarshal %q: %v", test.path, err) + continue + } + if !reflect.DeepEqual(got, want) { + t.Errorf("unexpected result for %q:\ngot:\n%#v\nwant:\n%#v", test.path, got, want) + } + } +} + +var cytoscapejsNodeEdgeTests = []struct { + path string + wantNodes int + wantEdges int + wantGraph *Elements + firstNode Node + firstEdge Edge + wantNodeAttributes map[string]bool + wantEdgeAttributes map[string]bool +}{ + { + path: "cola-compound.json", + wantNodes: 9, + wantEdges: 7, + wantGraph: &Elements{ + Nodes: []Node{ + {Data: NodeData{ID: "compound-1", Parent: ""}}, + {Data: NodeData{ID: "compound-2", Parent: ""}}, + {Data: NodeData{ID: "compound-3", Parent: ""}}, + {Data: NodeData{ID: "b", Parent: "compound-1"}}, + {Data: NodeData{ID: "c", Parent: "compound-1"}}, + {Data: NodeData{ID: "a", Parent: "compound-2"}}, + {Data: NodeData{ID: "d", Parent: "compound-3"}}, + {Data: NodeData{ID: "e", Parent: "compound-3"}}, + {Data: NodeData{ID: "f", Parent: ""}}, + }, + Edges: []Edge{ + {Data: EdgeData{ID: "ab", Source: "a", Target: "b"}}, + {Data: EdgeData{ID: "bc", Source: "b", Target: "c"}}, + {Data: EdgeData{ID: "ac", Source: "a", Target: "c"}}, + {Data: EdgeData{ID: "cd", Source: "c", Target: "d"}}, + {Data: EdgeData{ID: "de", Source: "d", Target: "e"}}, + {Data: EdgeData{ID: "df", Source: "d", Target: "f"}}, + {Data: EdgeData{ID: "af", Source: "a", Target: "f"}}, + }, + }, + }, + { + path: "tokyo-railways.json", + wantNodes: 943, + wantEdges: 860, + firstNode: Node{ + Data: NodeData{ + ID: "8220", + Attributes: map[string]interface{}{ + "station_name": "京成高砂", + "close_ymd": "", + "lon": 139.866875, + "post": "", + "e_status": 0.0, + "SUID": 8220.0, + "station_g_cd": 2300110.0, + "add": "東京都葛飾区高砂五丁目28-1", + "line_cd": 99340.0, + "selected": false, + "open_ymd": "", + "name": "9934001", + "pref_name": "東京都", + "shared_name": "9934001", + "lat": 35.750932, + "x": 1398668.75, + "y": -357509.32, + }, + }, + Position: Position{ + X: 1398668.75, + Y: -357509.32, + }, + }, + firstEdge: Edge{ + Data: EdgeData{ + ID: "18417", + Source: "8220", + Target: "8221", + Attributes: map[string]interface{}{ + "line_name_k": "ホクソウテツドウホクソウセン", + "is_bullet": false, + "lon": 140.03784499075186, + "company_name_k": "ホクソウテツドウ", + "zoom": 11.0, + "SUID": 18417.0, + "company_type": 0.0, + "company_name_h": "北総鉄道株式会社", + "interaction": "99340", + "shared_interaction": "99340", + "company_url": "http://www.hokuso-railway.co.jp/", + "line_name": "北総鉄道北総線", + "selected": false, + "company_name": "北総鉄道", + "company_cd": 152.0, + "name": "9934001 (99340) 9934002", + "rr_cd": 99.0, + "company_name_r": "北総鉄道", + "e_status_x": 0.0, + "shared_name": "9934001 (99340) 9934002", + "lat": 35.78346285846615, + "e_status_y": 0.0, + "line_name_h": "北総鉄道北総線", + }, + }, + }, + wantNodeAttributes: map[string]bool{ + "station_name": true, + "close_ymd": true, + "lon": true, + "post": true, + "e_status": true, + "SUID": true, + "station_g_cd": true, + "add": true, + "line_cd": true, + "selected": true, + "open_ymd": true, + "name": true, + "pref_name": true, + "shared_name": true, + "lat": true, + "x": true, + "y": true, + }, + wantEdgeAttributes: map[string]bool{ + "line_name_k": true, + "is_bullet": true, + "lon": true, + "company_name_k": true, + "zoom": true, + "SUID": true, + "company_type": true, + "company_name_h": true, + "interaction": true, + "shared_interaction": true, + "company_url": true, + "line_name": true, + "selected": true, + "company_name": true, + "company_cd": true, + "name": true, + "rr_cd": true, + "company_name_r": true, + "e_status_x": true, + "shared_name": true, + "lat": true, + "e_status_y": true, + "line_name_h": true, + }, + }, +} + +func TestUnmarshalNodeEdge(t *testing.T) { + for _, test := range cytoscapejsNodeEdgeTests { + data, err := ioutil.ReadFile(filepath.Join("testdata", test.path)) + if err != nil { + t.Errorf("failed to read %q: %v", test.path, err) + continue + } + var got Elements + err = json.Unmarshal(data, &got) + if err != nil { + t.Errorf("failed to unmarshal %q: %v", test.path, err) + continue + } + + if len(got.Nodes) != test.wantNodes { + t.Errorf("unexpected result for order of %q: got:%d want:%d", test.path, len(got.Nodes), test.wantNodes) + } + if len(got.Edges) != test.wantEdges { + t.Errorf("unexpected result for size of %q: got:%d want:%d", test.path, len(got.Edges), test.wantEdges) + } + if test.wantGraph != nil { + if !reflect.DeepEqual(&got, test.wantGraph) { + t.Errorf("unexpected result for %q:\ngot:\n%#v\nwant:\n%#v", test.path, got.Nodes, test.wantGraph.Nodes) + } + } else { + if !reflect.DeepEqual(got.Nodes[0], test.firstNode) { + t.Errorf("unexpected result for %q:\ngot:\n%#v\nwant:\n%#v", test.path, got.Nodes[0], test.firstNode) + } + if !reflect.DeepEqual(got.Edges[0], test.firstEdge) { + t.Errorf("unexpected result for %q:\ngot:\n%v\nwant:\n%#v", test.path, got.Edges[0].Data.Source, test.firstEdge.Data.Source) + } + } + if test.wantNodeAttributes != nil { + var paths []string + for _, n := range got.Nodes { + paths = attrPaths(paths, "", n.Data.Attributes) + } + gotAttrs := make(map[string]bool) + for _, p := range paths { + gotAttrs[p] = true + } + if !reflect.DeepEqual(gotAttrs, test.wantNodeAttributes) { + t.Errorf("unexpected result for %q:\ngot:\n%#v\nwant:\n%#v", test.path, gotAttrs, test.wantNodeAttributes) + } + } + if test.wantEdgeAttributes != nil { + var paths []string + for _, e := range got.Edges { + paths = attrPaths(paths, "", e.Data.Attributes) + } + gotAttrs := make(map[string]bool) + for _, p := range paths { + gotAttrs[p] = true + } + if !reflect.DeepEqual(gotAttrs, test.wantEdgeAttributes) { + t.Errorf("unexpected result for %q:\ngot:\n%#v\nwant:\n%#v", test.path, gotAttrs, test.wantEdgeAttributes) + } + } + } +} + +func TestMarshalNodeEdge(t *testing.T) { + for _, test := range cytoscapejsNodeEdgeTests { + data, err := ioutil.ReadFile(filepath.Join("testdata", test.path)) + if err != nil { + t.Errorf("failed to read %q: %v", test.path, err) + continue + } + var want Elements + err = json.Unmarshal(data, &want) + if err != nil { + t.Errorf("failed to unmarshal %q: %v", test.path, err) + continue + } + marshaled, err := json.Marshal(want) + if err != nil { + t.Errorf("failed to unmarshal %q: %v", test.path, err) + continue + } + var got Elements + err = json.Unmarshal(marshaled, &got) + if err != nil { + t.Errorf("failed to unmarshal %q: %v", test.path, err) + continue + } + if !reflect.DeepEqual(got, want) { + t.Errorf("unexpected result for %q:\ngot:\n%#v\nwant:\n%#v", test.path, got, want) + } + } +} + +func attrPaths(dst []string, prefix string, m map[string]interface{}) []string { + for k, v := range m { + path := prefix + if path != "" { + path += "." + } + if v, ok := v.(map[string]interface{}); ok { + dst = attrPaths(dst, path+k, v) + } + dst = append(dst, path+k) + } + return dst +} diff --git a/graph/formats/cytoscapejs/testdata/LICENSE b/graph/formats/cytoscapejs/testdata/LICENSE new file mode 100644 index 00000000..9e21a7e3 --- /dev/null +++ b/graph/formats/cytoscapejs/testdata/LICENSE @@ -0,0 +1,21 @@ + + +Copyright (c) 2016-2018, The Cytoscape Consortium. + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the “Software”), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/graph/formats/cytoscapejs/testdata/cola-compound.json b/graph/formats/cytoscapejs/testdata/cola-compound.json new file mode 100644 index 00000000..6c1b7e89 --- /dev/null +++ b/graph/formats/cytoscapejs/testdata/cola-compound.json @@ -0,0 +1,22 @@ +{ + "nodes": [ + { "data": { "id": "compound-1" } }, + { "data": { "id": "compound-2" } }, + { "data": { "id": "compound-3" } }, + { "data": { "id": "b", "parent": "compound-1" } }, + { "data": { "id": "c", "parent": "compound-1" } }, + { "data": { "id": "a", "parent": "compound-2" } }, + { "data": { "id": "d", "parent": "compound-3" } }, + { "data": { "id": "e", "parent": "compound-3" } }, + { "data": { "id": "f" } } + ], + "edges": [ + { "data": { "id": "ab", "source": "a", "target": "b" } }, + { "data": { "id": "bc", "source": "b", "target": "c" } }, + { "data": { "id": "ac", "source": "a", "target": "c" } }, + { "data": { "id": "cd", "source": "c", "target": "d" } }, + { "data": { "id": "de", "source": "d", "target": "e" } }, + { "data": { "id": "df", "source": "d", "target": "f" } }, + { "data": { "id": "af", "source": "a", "target": "f" } } + ] +} \ No newline at end of file diff --git a/graph/formats/cytoscapejs/testdata/edge-type.json b/graph/formats/cytoscapejs/testdata/edge-type.json new file mode 100644 index 00000000..27178998 --- /dev/null +++ b/graph/formats/cytoscapejs/testdata/edge-type.json @@ -0,0 +1,116 @@ +[{ + "data": { + "id": "n01", + "type": "bezier" + } +}, { + "data": { + "id": "n02" + } +}, { + "data": { + "id": "e01", + "source": "n01", + "target": "n02" + }, + "classes": "bezier" +}, { + "data": { + "id": "e02", + "source": "n01", + "target": "n02" + }, + "classes": "bezier" +}, { + "data": { + "id": "e03", + "source": "n02", + "target": "n01" + }, + "classes": "bezier" +}, { + "data": { + "id": "n03", + "type": "unbundled-bezier" + } +}, { + "data": { + "id": "n04" + } +}, { + "data": { + "id": "e04", + "source": "n03", + "target": "n04" + }, + "classes": "unbundled-bezier" +}, { + "data": { + "id": "n05", + "type": "unbundled-bezier(multiple)" + } +}, { + "data": { + "id": "n06" + } +}, { + "data": { + "id": "e05", + "source": "n05", + "target": "n06" + }, + "classes": "multi-unbundled-bezier" +}, { + "data": { + "id": "n07", + "type": "haystack" + } +}, { + "data": { + "id": "n08" + } +}, { + "data": { + "id": "e06", + "source": "n08", + "target": "n07" + }, + "classes": "haystack" +}, { + "data": { + "id": "e07", + "source": "n08", + "target": "n07" + }, + "classes": "haystack" +}, { + "data": { + "id": "e08", + "source": "n08", + "target": "n07" + }, + "classes": "haystack" +}, { + "data": { + "id": "e09", + "source": "n08", + "target": "n07" + }, + "classes": "haystack" +}, { + "data": { + "id": "n09", + "type": "segments" + } +}, { + "data": { + "id": "n10" + } +}, { + "data": { + "id": "e10", + "source": "n09", + "target": "n10" + }, + "classes": "segments" +}] diff --git a/graph/formats/cytoscapejs/testdata/tokyo-railways.json b/graph/formats/cytoscapejs/testdata/tokyo-railways.json new file mode 100644 index 00000000..edd3cfe2 --- /dev/null +++ b/graph/formats/cytoscapejs/testdata/tokyo-railways.json @@ -0,0 +1,50322 @@ +{ + "nodes" : [ { + "data" : { + "id" : "8220", + "station_name" : "京成高砂", + "close_ymd" : "", + "lon" : 139.866875, + "post" : "", + "e_status" : 0, + "SUID" : 8220, + "station_g_cd" : 2300110, + "add" : "東京都葛飾区高砂五丁目28-1", + "line_cd" : 99340, + "selected" : false, + "open_ymd" : "", + "name" : "9934001", + "pref_name" : "東京都", + "shared_name" : "9934001", + "lat" : 35.750932, + "y" : -357509.32, + "x" : 1398668.75 + }, + "position" : { + "x" : 1398668.75, + "y" : -357509.32 + }, + "selected" : false + }, { + "data" : { + "id" : "8221", + "station_name" : "新柴又", + "close_ymd" : "", + "lon" : 139.879376, + "post" : "125-0052", + "e_status" : 0, + "SUID" : 8221, + "station_g_cd" : 9934002, + "add" : "葛飾区柴又5-7-1", + "line_cd" : 99340, + "selected" : false, + "open_ymd" : "", + "name" : "9934002", + "pref_name" : "東京都", + "shared_name" : "9934002", + "lat" : 35.75101, + "y" : -357510.10000000003, + "x" : 1398793.76 + }, + "position" : { + "x" : 1398793.76, + "y" : -357510.10000000003 + }, + "selected" : false + }, { + "data" : { + "id" : "5901", + "station_name" : "日本橋", + "close_ymd" : "", + "lon" : 139.773516, + "post" : "103-0027", + "e_status" : 0, + "SUID" : 5901, + "station_g_cd" : 2800109, + "add" : "中央区日本橋1丁目", + "line_cd" : 28001, + "selected" : false, + "open_ymd" : "", + "name" : "2800109", + "pref_name" : "東京都", + "shared_name" : "2800109", + "lat" : 35.682078000000004, + "y" : -356820.78, + "x" : 1397735.16 + }, + "position" : { + "x" : 1397735.16, + "y" : -356820.78 + }, + "selected" : false + }, { + "data" : { + "id" : "5902", + "station_name" : "京橋", + "close_ymd" : "", + "lon" : 139.770126, + "post" : "104-0031", + "e_status" : 0, + "SUID" : 5902, + "station_g_cd" : 2800110, + "add" : "中央区京橋2-2-10", + "line_cd" : 28001, + "selected" : false, + "open_ymd" : "", + "name" : "2800110", + "pref_name" : "東京都", + "shared_name" : "2800110", + "lat" : 35.676856, + "y" : -356768.56, + "x" : 1397701.26 + }, + "position" : { + "x" : 1397701.26, + "y" : -356768.56 + }, + "selected" : false + }, { + "data" : { + "id" : "5903", + "station_name" : "銀座", + "close_ymd" : "", + "lon" : 139.76396499999998, + "post" : "104-0061", + "e_status" : 0, + "SUID" : 5903, + "station_g_cd" : 2800111, + "add" : "中央区銀座4-1-2", + "line_cd" : 28001, + "selected" : false, + "open_ymd" : "", + "name" : "2800111", + "pref_name" : "東京都", + "shared_name" : "2800111", + "lat" : 35.671989, + "y" : -356719.89, + "x" : 1397639.65 + }, + "position" : { + "x" : 1397639.65, + "y" : -356719.89 + }, + "selected" : false + }, { + "data" : { + "id" : "5904", + "station_name" : "新橋", + "close_ymd" : "", + "lon" : 139.758432, + "post" : "", + "e_status" : 0, + "SUID" : 5904, + "station_g_cd" : 1130102, + "add" : "東京都港区新橋二丁目17-5", + "line_cd" : 28001, + "selected" : false, + "open_ymd" : "", + "name" : "2800112", + "pref_name" : "東京都", + "shared_name" : "2800112", + "lat" : 35.667434, + "y" : -356674.34, + "x" : 1397584.32 + }, + "position" : { + "x" : 1397584.32, + "y" : -356674.34 + }, + "selected" : false + }, { + "data" : { + "id" : "5905", + "station_name" : "虎ノ門", + "close_ymd" : "", + "lon" : 139.749832, + "post" : "105-0001", + "e_status" : 0, + "SUID" : 5905, + "station_g_cd" : 2800113, + "add" : "港区虎ノ門1-1-21", + "line_cd" : 28001, + "selected" : false, + "open_ymd" : "", + "name" : "2800113", + "pref_name" : "東京都", + "shared_name" : "2800113", + "lat" : 35.670235999999996, + "y" : -356702.3599999999, + "x" : 1397498.32 + }, + "position" : { + "x" : 1397498.32, + "y" : -356702.3599999999 + }, + "selected" : false + }, { + "data" : { + "id" : "5906", + "station_name" : "溜池山王", + "close_ymd" : "", + "lon" : 139.741419, + "post" : "100-0014", + "e_status" : 0, + "SUID" : 5906, + "station_g_cd" : 2800114, + "add" : "千代田区永田町2-11-1", + "line_cd" : 28001, + "selected" : false, + "open_ymd" : "", + "name" : "2800114", + "pref_name" : "東京都", + "shared_name" : "2800114", + "lat" : 35.673621000000004, + "y" : -356736.21, + "x" : 1397414.1900000002 + }, + "position" : { + "x" : 1397414.1900000002, + "y" : -356736.21 + }, + "selected" : false + }, { + "data" : { + "id" : "5907", + "station_name" : "赤坂見附", + "close_ymd" : "", + "lon" : 139.737047, + "post" : "107-0052", + "e_status" : 0, + "SUID" : 5907, + "station_g_cd" : 2800115, + "add" : "港区赤坂3-1-6", + "line_cd" : 28001, + "selected" : false, + "open_ymd" : "", + "name" : "2800115", + "pref_name" : "東京都", + "shared_name" : "2800115", + "lat" : 35.677021, + "y" : -356770.21, + "x" : 1397370.47 + }, + "position" : { + "x" : 1397370.47, + "y" : -356770.21 + }, + "selected" : false + }, { + "data" : { + "id" : "5908", + "station_name" : "青山一丁目", + "close_ymd" : "", + "lon" : 139.72415900000001, + "post" : "107-0062", + "e_status" : 0, + "SUID" : 5908, + "station_g_cd" : 2800116, + "add" : "港区南青山1-1-19", + "line_cd" : 28001, + "selected" : false, + "open_ymd" : "", + "name" : "2800116", + "pref_name" : "東京都", + "shared_name" : "2800116", + "lat" : 35.672765000000005, + "y" : -356727.6500000001, + "x" : 1397241.59 + }, + "position" : { + "x" : 1397241.59, + "y" : -356727.6500000001 + }, + "selected" : false + }, { + "data" : { + "id" : "5893", + "station_name" : "浅草", + "close_ymd" : "", + "lon" : 139.79759199999998, + "post" : "", + "e_status" : 0, + "SUID" : 5893, + "station_g_cd" : 2100201, + "add" : "東京都台東区", + "line_cd" : 28001, + "selected" : false, + "open_ymd" : "", + "name" : "2800101", + "pref_name" : "東京都", + "shared_name" : "2800101", + "lat" : 35.710733000000005, + "y" : -357107.3300000001, + "x" : 1397975.9199999997 + }, + "position" : { + "x" : 1397975.9199999997, + "y" : -357107.3300000001 + }, + "selected" : false + }, { + "data" : { + "id" : "5894", + "station_name" : "田原町", + "close_ymd" : "", + "lon" : 139.790897, + "post" : "111-0035", + "e_status" : 0, + "SUID" : 5894, + "station_g_cd" : 2800102, + "add" : "台東区西浅草1-1-18", + "line_cd" : 28001, + "selected" : false, + "open_ymd" : "", + "name" : "2800102", + "pref_name" : "東京都", + "shared_name" : "2800102", + "lat" : 35.709897, + "y" : -357098.97, + "x" : 1397908.97 + }, + "position" : { + "x" : 1397908.97, + "y" : -357098.97 + }, + "selected" : false + }, { + "data" : { + "id" : "5895", + "station_name" : "稲荷町", + "close_ymd" : "", + "lon" : 139.782593, + "post" : "110-0015", + "e_status" : 0, + "SUID" : 5895, + "station_g_cd" : 2800103, + "add" : "台東区東上野3-33-11", + "line_cd" : 28001, + "selected" : false, + "open_ymd" : "", + "name" : "2800103", + "pref_name" : "東京都", + "shared_name" : "2800103", + "lat" : 35.711273, + "y" : -357112.73, + "x" : 1397825.93 + }, + "position" : { + "x" : 1397825.93, + "y" : -357112.73 + }, + "selected" : false + }, { + "data" : { + "id" : "5896", + "station_name" : "上野", + "close_ymd" : "", + "lon" : 139.777122, + "post" : "", + "e_status" : 0, + "SUID" : 5896, + "station_g_cd" : 1130220, + "add" : "東京都台東区東上野三丁目19-6", + "line_cd" : 28001, + "selected" : false, + "open_ymd" : "", + "name" : "2800104", + "pref_name" : "東京都", + "shared_name" : "2800104", + "lat" : 35.711482000000004, + "y" : -357114.82000000007, + "x" : 1397771.22 + }, + "position" : { + "x" : 1397771.22, + "y" : -357114.82000000007 + }, + "selected" : false + }, { + "data" : { + "id" : "5897", + "station_name" : "上野広小路", + "close_ymd" : "", + "lon" : 139.772877, + "post" : "110-0005", + "e_status" : 0, + "SUID" : 5897, + "station_g_cd" : 1130221, + "add" : "台東区上野3-29-3", + "line_cd" : 28001, + "selected" : false, + "open_ymd" : "", + "name" : "2800105", + "pref_name" : "東京都", + "shared_name" : "2800105", + "lat" : 35.707679999999996, + "y" : -357076.8, + "x" : 1397728.77 + }, + "position" : { + "x" : 1397728.77, + "y" : -357076.8 + }, + "selected" : false + }, { + "data" : { + "id" : "5898", + "station_name" : "末広町", + "close_ymd" : "", + "lon" : 139.77171299999998, + "post" : "101-0021", + "e_status" : 0, + "SUID" : 5898, + "station_g_cd" : 2800106, + "add" : "千代田区外神田4-7-3", + "line_cd" : 28001, + "selected" : false, + "open_ymd" : "", + "name" : "2800106", + "pref_name" : "東京都", + "shared_name" : "2800106", + "lat" : 35.702971999999995, + "y" : -357029.72, + "x" : 1397717.1299999997 + }, + "position" : { + "x" : 1397717.1299999997, + "y" : -357029.72 + }, + "selected" : false + }, { + "data" : { + "id" : "5899", + "station_name" : "神田", + "close_ymd" : "", + "lon" : 139.770899, + "post" : "", + "e_status" : 0, + "SUID" : 5899, + "station_g_cd" : 1130223, + "add" : "東京都千代田区神田須田町一丁目16", + "line_cd" : 28001, + "selected" : false, + "open_ymd" : "", + "name" : "2800107", + "pref_name" : "東京都", + "shared_name" : "2800107", + "lat" : 35.693587, + "y" : -356935.87, + "x" : 1397708.9899999998 + }, + "position" : { + "x" : 1397708.9899999998, + "y" : -356935.87 + }, + "selected" : false + }, { + "data" : { + "id" : "5900", + "station_name" : "三越前", + "close_ymd" : "", + "lon" : 139.773594, + "post" : "103-0022", + "e_status" : 0, + "SUID" : 5900, + "station_g_cd" : 1131402, + "add" : "中央区日本橋室町1-8-1", + "line_cd" : 28001, + "selected" : false, + "open_ymd" : "", + "name" : "2800108", + "pref_name" : "東京都", + "shared_name" : "2800108", + "lat" : 35.687101, + "y" : -356871.01, + "x" : 1397735.94 + }, + "position" : { + "x" : 1397735.94, + "y" : -356871.01 + }, + "selected" : false + }, { + "data" : { + "id" : "5871", + "station_name" : "羽田空港国際線ターミナル", + "close_ymd" : "", + "lon" : 139.768968, + "post" : "144-0041", + "e_status" : 0, + "SUID" : 5871, + "station_g_cd" : 2700207, + "add" : "東京都大田区羽田空港二丁目6番5号", + "line_cd" : 27002, + "selected" : false, + "open_ymd" : "2010-10-21", + "name" : "2700207", + "pref_name" : "東京都", + "shared_name" : "2700207", + "lat" : 35.544676, + "y" : -355446.76, + "x" : 1397689.68 + }, + "position" : { + "x" : 1397689.68, + "y" : -355446.76 + }, + "selected" : false + }, { + "data" : { + "id" : "5872", + "station_name" : "羽田空港", + "close_ymd" : "", + "lon" : 139.785962, + "post" : "144-0041", + "e_status" : 0, + "SUID" : 5872, + "station_g_cd" : 2700206, + "add" : "大田区羽田空港3-3-4", + "line_cd" : 27002, + "selected" : false, + "open_ymd" : "", + "name" : "2700206", + "pref_name" : "東京都", + "shared_name" : "2700206", + "lat" : 35.549809, + "y" : -355498.09, + "x" : 1397859.62 + }, + "position" : { + "x" : 1397859.62, + "y" : -355498.09 + }, + "selected" : false + }, { + "data" : { + "id" : "5869", + "station_name" : "穴守稲荷", + "close_ymd" : "", + "lon" : 139.746669, + "post" : "144-0043", + "e_status" : 0, + "SUID" : 5869, + "station_g_cd" : 2700204, + "add" : "大田区羽田4-6-11", + "line_cd" : 27002, + "selected" : false, + "open_ymd" : "", + "name" : "2700204", + "pref_name" : "東京都", + "shared_name" : "2700204", + "lat" : 35.550326, + "y" : -355503.26, + "x" : 1397466.69 + }, + "position" : { + "x" : 1397466.69, + "y" : -355503.26 + }, + "selected" : false + }, { + "data" : { + "id" : "5870", + "station_name" : "天空橋", + "close_ymd" : "", + "lon" : 139.75423, + "post" : "144-0041", + "e_status" : 0, + "SUID" : 5870, + "station_g_cd" : 2700205, + "add" : "大田区羽田空港1-1-2", + "line_cd" : 27002, + "selected" : false, + "open_ymd" : "", + "name" : "2700205", + "pref_name" : "東京都", + "shared_name" : "2700205", + "lat" : 35.548908000000004, + "y" : -355489.08, + "x" : 1397542.3 + }, + "position" : { + "x" : 1397542.3, + "y" : -355489.08 + }, + "selected" : false + }, { + "data" : { + "id" : "5867", + "station_name" : "糀谷", + "close_ymd" : "", + "lon" : 139.72961999999998, + "post" : "144-0034", + "e_status" : 0, + "SUID" : 5867, + "station_g_cd" : 2700202, + "add" : "大田区西糀谷4-13-17", + "line_cd" : 27002, + "selected" : false, + "open_ymd" : "", + "name" : "2700202", + "pref_name" : "東京都", + "shared_name" : "2700202", + "lat" : 35.5545, + "y" : -355545.0, + "x" : 1397296.1999999997 + }, + "position" : { + "x" : 1397296.1999999997, + "y" : -355545.0 + }, + "selected" : false + }, { + "data" : { + "id" : "5868", + "station_name" : "大鳥居", + "close_ymd" : "", + "lon" : 139.73935600000002, + "post" : "144-0034", + "e_status" : 0, + "SUID" : 5868, + "station_g_cd" : 2700203, + "add" : "大田区西糀谷3-37-18", + "line_cd" : 27002, + "selected" : false, + "open_ymd" : "", + "name" : "2700203", + "pref_name" : "東京都", + "shared_name" : "2700203", + "lat" : 35.552531, + "y" : -355525.31, + "x" : 1397393.56 + }, + "position" : { + "x" : 1397393.56, + "y" : -355525.31 + }, + "selected" : false + }, { + "data" : { + "id" : "5866", + "station_name" : "京急蒲田", + "close_ymd" : "", + "lon" : 139.723681, + "post" : "144-0052", + "e_status" : 0, + "SUID" : 5866, + "station_g_cd" : 2700112, + "add" : "大田区蒲田4-50-10", + "line_cd" : 27002, + "selected" : false, + "open_ymd" : "", + "name" : "2700201", + "pref_name" : "東京都", + "shared_name" : "2700201", + "lat" : 35.560796, + "y" : -355607.96, + "x" : 1397236.81 + }, + "position" : { + "x" : 1397236.81, + "y" : -355607.96 + }, + "selected" : false + }, { + "data" : { + "id" : "5826", + "station_name" : "梅屋敷", + "close_ymd" : "", + "lon" : 139.728266, + "post" : "144-0052", + "e_status" : 0, + "SUID" : 5826, + "station_g_cd" : 2700111, + "add" : "大田区蒲田2-28-1", + "line_cd" : 27001, + "selected" : false, + "open_ymd" : "", + "name" : "2700111", + "pref_name" : "東京都", + "shared_name" : "2700111", + "lat" : 35.566873, + "y" : -355668.73000000004, + "x" : 1397282.66 + }, + "position" : { + "x" : 1397282.66, + "y" : -355668.73000000004 + }, + "selected" : false + }, { + "data" : { + "id" : "5825", + "station_name" : "大森町", + "close_ymd" : "", + "lon" : 139.732027, + "post" : "143-0015", + "e_status" : 0, + "SUID" : 5825, + "station_g_cd" : 2700110, + "add" : "大田区大森西3-24-7", + "line_cd" : 27001, + "selected" : false, + "open_ymd" : "", + "name" : "2700110", + "pref_name" : "東京都", + "shared_name" : "2700110", + "lat" : 35.572431, + "y" : -355724.31, + "x" : 1397320.2699999998 + }, + "position" : { + "x" : 1397320.2699999998, + "y" : -355724.31 + }, + "selected" : false + }, { + "data" : { + "id" : "5828", + "station_name" : "雑色", + "close_ymd" : "", + "lon" : 139.715005, + "post" : "144-0055", + "e_status" : 0, + "SUID" : 5828, + "station_g_cd" : 2700113, + "add" : "大田区仲六郷2-42-1", + "line_cd" : 27001, + "selected" : false, + "open_ymd" : "", + "name" : "2700113", + "pref_name" : "東京都", + "shared_name" : "2700113", + "lat" : 35.549725, + "y" : -355497.25, + "x" : 1397150.0499999998 + }, + "position" : { + "x" : 1397150.0499999998, + "y" : -355497.25 + }, + "selected" : false + }, { + "data" : { + "id" : "5827", + "station_name" : "京急蒲田", + "close_ymd" : "", + "lon" : 139.723681, + "post" : "144-0052", + "e_status" : 0, + "SUID" : 5827, + "station_g_cd" : 2700112, + "add" : "大田区蒲田4-50-10", + "line_cd" : 27001, + "selected" : false, + "open_ymd" : "", + "name" : "2700112", + "pref_name" : "東京都", + "shared_name" : "2700112", + "lat" : 35.560796, + "y" : -355607.96, + "x" : 1397236.81 + }, + "position" : { + "x" : 1397236.81, + "y" : -355607.96 + }, + "selected" : false + }, { + "data" : { + "id" : "5822", + "station_name" : "立会川", + "close_ymd" : "", + "lon" : 139.738886, + "post" : "140-0011", + "e_status" : 0, + "SUID" : 5822, + "station_g_cd" : 2700107, + "add" : "品川区東大井2-23-1", + "line_cd" : 27001, + "selected" : false, + "open_ymd" : "", + "name" : "2700107", + "pref_name" : "東京都", + "shared_name" : "2700107", + "lat" : 35.598489, + "y" : -355984.89, + "x" : 1397388.86 + }, + "position" : { + "x" : 1397388.86, + "y" : -355984.89 + }, + "selected" : false + }, { + "data" : { + "id" : "5821", + "station_name" : "鮫洲", + "close_ymd" : "", + "lon" : 139.742227, + "post" : "140-0011", + "e_status" : 0, + "SUID" : 5821, + "station_g_cd" : 2700106, + "add" : "品川区東大井1-2-20", + "line_cd" : 27001, + "selected" : false, + "open_ymd" : "", + "name" : "2700106", + "pref_name" : "東京都", + "shared_name" : "2700106", + "lat" : 35.604977000000005, + "y" : -356049.7700000001, + "x" : 1397422.2700000003 + }, + "position" : { + "x" : 1397422.2700000003, + "y" : -356049.7700000001 + }, + "selected" : false + }, { + "data" : { + "id" : "5824", + "station_name" : "平和島", + "close_ymd" : "", + "lon" : 139.73491, + "post" : "143-0016", + "e_status" : 0, + "SUID" : 5824, + "station_g_cd" : 2700109, + "add" : "大田区大森北6-13-11", + "line_cd" : 27001, + "selected" : false, + "open_ymd" : "", + "name" : "2700109", + "pref_name" : "東京都", + "shared_name" : "2700109", + "lat" : 35.57868, + "y" : -355786.8, + "x" : 1397349.1 + }, + "position" : { + "x" : 1397349.1, + "y" : -355786.8 + }, + "selected" : false + }, { + "data" : { + "id" : "5823", + "station_name" : "大森海岸", + "close_ymd" : "", + "lon" : 139.73543999999998, + "post" : "140-0013", + "e_status" : 0, + "SUID" : 5823, + "station_g_cd" : 2700108, + "add" : "品川区南大井3-32-1", + "line_cd" : 27001, + "selected" : false, + "open_ymd" : "", + "name" : "2700108", + "pref_name" : "東京都", + "shared_name" : "2700108", + "lat" : 35.587576, + "y" : -355875.76, + "x" : 1397354.4 + }, + "position" : { + "x" : 1397354.4, + "y" : -355875.76 + }, + "selected" : false + }, { + "data" : { + "id" : "5818", + "station_name" : "北品川", + "close_ymd" : "", + "lon" : 139.739191, + "post" : "140-0001", + "e_status" : 0, + "SUID" : 5818, + "station_g_cd" : 2700103, + "add" : "品川区北品川1-1-4", + "line_cd" : 27001, + "selected" : false, + "open_ymd" : "", + "name" : "2700103", + "pref_name" : "東京都", + "shared_name" : "2700103", + "lat" : 35.622458, + "y" : -356224.58, + "x" : 1397391.9100000001 + }, + "position" : { + "x" : 1397391.9100000001, + "y" : -356224.58 + }, + "selected" : false + }, { + "data" : { + "id" : "5817", + "station_name" : "品川", + "close_ymd" : "", + "lon" : 139.73809, + "post" : "", + "e_status" : 0, + "SUID" : 5817, + "station_g_cd" : 1130103, + "add" : "東京都港区高輪三丁目26-26", + "line_cd" : 27001, + "selected" : false, + "open_ymd" : "", + "name" : "2700102", + "pref_name" : "東京都", + "shared_name" : "2700102", + "lat" : 35.628284, + "y" : -356282.84, + "x" : 1397380.9 + }, + "position" : { + "x" : 1397380.9, + "y" : -356282.84 + }, + "selected" : false + }, { + "data" : { + "id" : "5820", + "station_name" : "青物横丁", + "close_ymd" : "", + "lon" : 139.74295800000002, + "post" : "140-0004", + "e_status" : 0, + "SUID" : 5820, + "station_g_cd" : 2700105, + "add" : "品川区南品川3-1-20", + "line_cd" : 27001, + "selected" : false, + "open_ymd" : "", + "name" : "2700105", + "pref_name" : "東京都", + "shared_name" : "2700105", + "lat" : 35.609351000000004, + "y" : -356093.51, + "x" : 1397429.58 + }, + "position" : { + "x" : 1397429.58, + "y" : -356093.51 + }, + "selected" : false + }, { + "data" : { + "id" : "5819", + "station_name" : "新馬場", + "close_ymd" : "", + "lon" : 139.741366, + "post" : "140-0001", + "e_status" : 0, + "SUID" : 5819, + "station_g_cd" : 2700104, + "add" : "品川区北品川2-18-1", + "line_cd" : 27001, + "selected" : false, + "open_ymd" : "", + "name" : "2700104", + "pref_name" : "東京都", + "shared_name" : "2700104", + "lat" : 35.61762, + "y" : -356176.2, + "x" : 1397413.66 + }, + "position" : { + "x" : 1397413.66, + "y" : -356176.2 + }, + "selected" : false + }, { + "data" : { + "id" : "5816", + "station_name" : "泉岳寺", + "close_ymd" : "", + "lon" : 139.74002, + "post" : "108-0074", + "e_status" : 0, + "SUID" : 5816, + "station_g_cd" : 2700101, + "add" : "港区高輪2-16-34", + "line_cd" : 27001, + "selected" : false, + "open_ymd" : "", + "name" : "2700101", + "pref_name" : "東京都", + "shared_name" : "2700101", + "lat" : 35.638692, + "y" : -356386.92, + "x" : 1397400.2 + }, + "position" : { + "x" : 1397400.2, + "y" : -356386.92 + }, + "selected" : false + }, { + "data" : { + "id" : "5829", + "station_name" : "六郷土手", + "close_ymd" : "", + "lon" : 139.7076, + "post" : "144-0055", + "e_status" : 0, + "SUID" : 5829, + "station_g_cd" : 2700114, + "add" : "大田区仲六郷4-27-11", + "line_cd" : 27001, + "selected" : false, + "open_ymd" : "", + "name" : "2700114", + "pref_name" : "東京都", + "shared_name" : "2700114", + "lat" : 35.540577, + "y" : -355405.77, + "x" : 1397076.0000000002 + }, + "position" : { + "x" : 1397076.0000000002, + "y" : -355405.77 + }, + "selected" : false + }, { + "data" : { + "id" : "5796", + "station_name" : "多摩川", + "close_ymd" : "", + "lon" : 139.668723, + "post" : "145-0071", + "e_status" : 0, + "SUID" : 5796, + "station_g_cd" : 2600109, + "add" : "大田区田園調布1-53-8", + "line_cd" : 26006, + "selected" : false, + "open_ymd" : "", + "name" : "2600601", + "pref_name" : "東京都", + "shared_name" : "2600601", + "lat" : 35.589591, + "y" : -355895.91, + "x" : 1396687.23 + }, + "position" : { + "x" : 1396687.23, + "y" : -355895.91 + }, + "selected" : false + }, { + "data" : { + "id" : "5795", + "station_name" : "蒲田", + "close_ymd" : "", + "lon" : 139.714626, + "post" : "144-0052", + "e_status" : 0, + "SUID" : 5795, + "station_g_cd" : 1133230, + "add" : "大田区蒲田5丁目", + "line_cd" : 26005, + "selected" : false, + "open_ymd" : "", + "name" : "2600515", + "pref_name" : "東京都", + "shared_name" : "2600515", + "lat" : 35.561766999999996, + "y" : -355617.67, + "x" : 1397146.26 + }, + "position" : { + "x" : 1397146.26, + "y" : -355617.67 + }, + "selected" : false + }, { + "data" : { + "id" : "5794", + "station_name" : "蓮沼", + "close_ymd" : "", + "lon" : 139.708544, + "post" : "144-0051", + "e_status" : 0, + "SUID" : 5794, + "station_g_cd" : 2600514, + "add" : "大田区西蒲田7-17-1", + "line_cd" : 26005, + "selected" : false, + "open_ymd" : "", + "name" : "2600514", + "pref_name" : "東京都", + "shared_name" : "2600514", + "lat" : 35.564173, + "y" : -355641.73, + "x" : 1397085.44 + }, + "position" : { + "x" : 1397085.44, + "y" : -355641.73 + }, + "selected" : false + }, { + "data" : { + "id" : "5793", + "station_name" : "池上", + "close_ymd" : "", + "lon" : 139.702822, + "post" : "146-0082", + "e_status" : 0, + "SUID" : 5793, + "station_g_cd" : 2600513, + "add" : "大田区池上6-3-10", + "line_cd" : 26005, + "selected" : false, + "open_ymd" : "", + "name" : "2600513", + "pref_name" : "東京都", + "shared_name" : "2600513", + "lat" : 35.572025, + "y" : -355720.24999999994, + "x" : 1397028.22 + }, + "position" : { + "x" : 1397028.22, + "y" : -355720.24999999994 + }, + "selected" : false + }, { + "data" : { + "id" : "5792", + "station_name" : "千鳥町", + "close_ymd" : "", + "lon" : 139.69142, + "post" : "146-0083", + "e_status" : 0, + "SUID" : 5792, + "station_g_cd" : 2600512, + "add" : "大田区千鳥1-20-1", + "line_cd" : 26005, + "selected" : false, + "open_ymd" : "", + "name" : "2600512", + "pref_name" : "東京都", + "shared_name" : "2600512", + "lat" : 35.572983, + "y" : -355729.83, + "x" : 1396914.2 + }, + "position" : { + "x" : 1396914.2, + "y" : -355729.83 + }, + "selected" : false + }, { + "data" : { + "id" : "5791", + "station_name" : "久が原", + "close_ymd" : "", + "lon" : 139.685678, + "post" : "146-0084", + "e_status" : 0, + "SUID" : 5791, + "station_g_cd" : 2600511, + "add" : "大田区南久が原2-6-10", + "line_cd" : 26005, + "selected" : false, + "open_ymd" : "", + "name" : "2600511", + "pref_name" : "東京都", + "shared_name" : "2600511", + "lat" : 35.579499, + "y" : -355794.99, + "x" : 1396856.78 + }, + "position" : { + "x" : 1396856.78, + "y" : -355794.99 + }, + "selected" : false + }, { + "data" : { + "id" : "5790", + "station_name" : "御嶽山", + "close_ymd" : "", + "lon" : 139.682473, + "post" : "145-0073", + "e_status" : 0, + "SUID" : 5790, + "station_g_cd" : 2600510, + "add" : "大田区北嶺町32-17", + "line_cd" : 26005, + "selected" : false, + "open_ymd" : "", + "name" : "2600510", + "pref_name" : "東京都", + "shared_name" : "2600510", + "lat" : 35.585236, + "y" : -355852.36000000004, + "x" : 1396824.73 + }, + "position" : { + "x" : 1396824.73, + "y" : -355852.36000000004 + }, + "selected" : false + }, { + "data" : { + "id" : "5789", + "station_name" : "雪が谷大塚", + "close_ymd" : "", + "lon" : 139.681083, + "post" : "145-0066", + "e_status" : 0, + "SUID" : 5789, + "station_g_cd" : 2600509, + "add" : "大田区南雪谷2-2-16", + "line_cd" : 26005, + "selected" : false, + "open_ymd" : "", + "name" : "2600509", + "pref_name" : "東京都", + "shared_name" : "2600509", + "lat" : 35.592038, + "y" : -355920.38, + "x" : 1396810.83 + }, + "position" : { + "x" : 1396810.83, + "y" : -355920.38 + }, + "selected" : false + }, { + "data" : { + "id" : "5788", + "station_name" : "石川台", + "close_ymd" : "", + "lon" : 139.68506299999999, + "post" : "145-0065", + "e_status" : 0, + "SUID" : 5788, + "station_g_cd" : 2600508, + "add" : "大田区東雪谷2-23-1", + "line_cd" : 26005, + "selected" : false, + "open_ymd" : "", + "name" : "2600508", + "pref_name" : "東京都", + "shared_name" : "2600508", + "lat" : 35.596888, + "y" : -355968.88, + "x" : 1396850.63 + }, + "position" : { + "x" : 1396850.63, + "y" : -355968.88 + }, + "selected" : false + }, { + "data" : { + "id" : "5787", + "station_name" : "洗足池", + "close_ymd" : "", + "lon" : 139.690896, + "post" : "145-0065", + "e_status" : 0, + "SUID" : 5787, + "station_g_cd" : 2600507, + "add" : "大田区東雪谷1-1-6", + "line_cd" : 26005, + "selected" : false, + "open_ymd" : "", + "name" : "2600507", + "pref_name" : "東京都", + "shared_name" : "2600507", + "lat" : 35.599647999999995, + "y" : -355996.4799999999, + "x" : 1396908.9600000002 + }, + "position" : { + "x" : 1396908.9600000002, + "y" : -355996.4799999999 + }, + "selected" : false + }, { + "data" : { + "id" : "5786", + "station_name" : "長原", + "close_ymd" : "", + "lon" : 139.697881, + "post" : "145-0064", + "e_status" : 0, + "SUID" : 5786, + "station_g_cd" : 2600506, + "add" : "大田区上池台1-10-10", + "line_cd" : 26005, + "selected" : false, + "open_ymd" : "", + "name" : "2600506", + "pref_name" : "東京都", + "shared_name" : "2600506", + "lat" : 35.60219, + "y" : -356021.9, + "x" : 1396978.81 + }, + "position" : { + "x" : 1396978.81, + "y" : -356021.9 + }, + "selected" : false + }, { + "data" : { + "id" : "5785", + "station_name" : "旗の台", + "close_ymd" : "", + "lon" : 139.70228600000002, + "post" : "142-0064", + "e_status" : 0, + "SUID" : 5785, + "station_g_cd" : 2600406, + "add" : "品川区旗の台2-13-1", + "line_cd" : 26005, + "selected" : false, + "open_ymd" : "", + "name" : "2600505", + "pref_name" : "東京都", + "shared_name" : "2600505", + "lat" : 35.604923, + "y" : -356049.23, + "x" : 1397022.86 + }, + "position" : { + "x" : 1397022.86, + "y" : -356049.23 + }, + "selected" : false + }, { + "data" : { + "id" : "5784", + "station_name" : "荏原中延", + "close_ymd" : "", + "lon" : 139.712196, + "post" : "142-0053", + "e_status" : 0, + "SUID" : 5784, + "station_g_cd" : 2600504, + "add" : "品川区中延2-8-1", + "line_cd" : 26005, + "selected" : false, + "open_ymd" : "", + "name" : "2600504", + "pref_name" : "東京都", + "shared_name" : "2600504", + "lat" : 35.610056, + "y" : -356100.56, + "x" : 1397121.96 + }, + "position" : { + "x" : 1397121.96, + "y" : -356100.56 + }, + "selected" : false + }, { + "data" : { + "id" : "5783", + "station_name" : "戸越銀座", + "close_ymd" : "", + "lon" : 139.714862, + "post" : "142-0051", + "e_status" : 0, + "SUID" : 5783, + "station_g_cd" : 2600503, + "add" : "品川区平塚2-16-1", + "line_cd" : 26005, + "selected" : false, + "open_ymd" : "", + "name" : "2600503", + "pref_name" : "東京都", + "shared_name" : "2600503", + "lat" : 35.615928000000004, + "y" : -356159.28, + "x" : 1397148.62 + }, + "position" : { + "x" : 1397148.62, + "y" : -356159.28 + }, + "selected" : false + }, { + "data" : { + "id" : "5782", + "station_name" : "大崎広小路", + "close_ymd" : "", + "lon" : 139.72233899999998, + "post" : "141-0032", + "e_status" : 0, + "SUID" : 5782, + "station_g_cd" : 2600502, + "add" : "品川区大崎4-1-1", + "line_cd" : 26005, + "selected" : false, + "open_ymd" : "", + "name" : "2600502", + "pref_name" : "東京都", + "shared_name" : "2600502", + "lat" : 35.622244, + "y" : -356222.44, + "x" : 1397223.3899999997 + }, + "position" : { + "x" : 1397223.3899999997, + "y" : -356222.44 + }, + "selected" : false + }, { + "data" : { + "id" : "5781", + "station_name" : "五反田", + "close_ymd" : "", + "lon" : 139.724175, + "post" : "", + "e_status" : 0, + "SUID" : 5781, + "station_g_cd" : 1130202, + "add" : "東京都品川区東五反田二丁目1-1", + "line_cd" : 26005, + "selected" : false, + "open_ymd" : "", + "name" : "2600501", + "pref_name" : "東京都", + "shared_name" : "2600501", + "lat" : 35.625262, + "y" : -356252.62, + "x" : 1397241.75 + }, + "position" : { + "x" : 1397241.75, + "y" : -356252.62 + }, + "selected" : false + }, { + "data" : { + "id" : "5811", + "station_name" : "松原", + "close_ymd" : "", + "lon" : 139.642, + "post" : "156-0043", + "e_status" : 0, + "SUID" : 5811, + "station_g_cd" : 2600709, + "add" : "世田谷区松原4-10-8", + "line_cd" : 26007, + "selected" : false, + "open_ymd" : "", + "name" : "2600709", + "pref_name" : "東京都", + "shared_name" : "2600709", + "lat" : 35.660047999999996, + "y" : -356600.48, + "x" : 1396420.0 + }, + "position" : { + "x" : 1396420.0, + "y" : -356600.48 + }, + "selected" : false + }, { + "data" : { + "id" : "5812", + "station_name" : "下高井戸", + "close_ymd" : "", + "lon" : 139.641372, + "post" : "156-0043", + "e_status" : 0, + "SUID" : 5812, + "station_g_cd" : 2400107, + "add" : "世田谷区松原3-29-17", + "line_cd" : 26007, + "selected" : false, + "open_ymd" : "", + "name" : "2600710", + "pref_name" : "東京都", + "shared_name" : "2600710", + "lat" : 35.66615, + "y" : -356661.5, + "x" : 1396413.72 + }, + "position" : { + "x" : 1396413.72, + "y" : -356661.5 + }, + "selected" : false + }, { + "data" : { + "id" : "5809", + "station_name" : "宮の坂", + "close_ymd" : "", + "lon" : 139.64494, + "post" : "156-0051", + "e_status" : 0, + "SUID" : 5809, + "station_g_cd" : 2600707, + "add" : "世田谷区宮坂1-24-7", + "line_cd" : 26007, + "selected" : false, + "open_ymd" : "", + "name" : "2600707", + "pref_name" : "東京都", + "shared_name" : "2600707", + "lat" : 35.647508, + "y" : -356475.08, + "x" : 1396449.4 + }, + "position" : { + "x" : 1396449.4, + "y" : -356475.08 + }, + "selected" : false + }, { + "data" : { + "id" : "5810", + "station_name" : "山下", + "close_ymd" : "", + "lon" : 139.646509, + "post" : "154-0021", + "e_status" : 0, + "SUID" : 5810, + "station_g_cd" : 2500110, + "add" : "世田谷区豪徳寺1-44-5", + "line_cd" : 26007, + "selected" : false, + "open_ymd" : "", + "name" : "2600708", + "pref_name" : "東京都", + "shared_name" : "2600708", + "lat" : 35.653844, + "y" : -356538.44, + "x" : 1396465.09 + }, + "position" : { + "x" : 1396465.09, + "y" : -356538.44 + }, + "selected" : false + }, { + "data" : { + "id" : "5807", + "station_name" : "世田谷", + "close_ymd" : "", + "lon" : 139.650945, + "post" : "154-0017", + "e_status" : 0, + "SUID" : 5807, + "station_g_cd" : 2600705, + "add" : "世田谷区世田谷4-9-6", + "line_cd" : 26007, + "selected" : false, + "open_ymd" : "", + "name" : "2600705", + "pref_name" : "東京都", + "shared_name" : "2600705", + "lat" : 35.643564000000005, + "y" : -356435.6400000001, + "x" : 1396509.4500000002 + }, + "position" : { + "x" : 1396509.4500000002, + "y" : -356435.6400000001 + }, + "selected" : false + }, { + "data" : { + "id" : "5808", + "station_name" : "上町", + "close_ymd" : "", + "lon" : 139.646276, + "post" : "154-0017", + "e_status" : 0, + "SUID" : 5808, + "station_g_cd" : 2600706, + "add" : "世田谷区世田谷3-4-3", + "line_cd" : 26007, + "selected" : false, + "open_ymd" : "", + "name" : "2600706", + "pref_name" : "東京都", + "shared_name" : "2600706", + "lat" : 35.643656, + "y" : -356436.56, + "x" : 1396462.76 + }, + "position" : { + "x" : 1396462.76, + "y" : -356436.56 + }, + "selected" : false + }, { + "data" : { + "id" : "5805", + "station_name" : "若林", + "close_ymd" : "", + "lon" : 139.65991100000002, + "post" : "154-0023", + "e_status" : 0, + "SUID" : 5805, + "station_g_cd" : 2600703, + "add" : "世田谷区若林4-3-15", + "line_cd" : 26007, + "selected" : false, + "open_ymd" : "", + "name" : "2600703", + "pref_name" : "東京都", + "shared_name" : "2600703", + "lat" : 35.645933, + "y" : -356459.33, + "x" : 1396599.1100000003 + }, + "position" : { + "x" : 1396599.1100000003, + "y" : -356459.33 + }, + "selected" : false + }, { + "data" : { + "id" : "5806", + "station_name" : "松陰神社前", + "close_ymd" : "", + "lon" : 139.655211, + "post" : "154-0023", + "e_status" : 0, + "SUID" : 5806, + "station_g_cd" : 2600704, + "add" : "世田谷区若林4-21-16", + "line_cd" : 26007, + "selected" : false, + "open_ymd" : "", + "name" : "2600704", + "pref_name" : "東京都", + "shared_name" : "2600704", + "lat" : 35.643947, + "y" : -356439.47, + "x" : 1396552.11 + }, + "position" : { + "x" : 1396552.11, + "y" : -356439.47 + }, + "selected" : false + }, { + "data" : { + "id" : "5803", + "station_name" : "三軒茶屋", + "close_ymd" : "", + "lon" : 139.670156, + "post" : "154-0004", + "e_status" : 0, + "SUID" : 5803, + "station_g_cd" : 2600303, + "add" : "世田谷区太子堂4-21-1", + "line_cd" : 26007, + "selected" : false, + "open_ymd" : "", + "name" : "2600701", + "pref_name" : "東京都", + "shared_name" : "2600701", + "lat" : 35.643716, + "y" : -356437.16, + "x" : 1396701.5599999998 + }, + "position" : { + "x" : 1396701.5599999998, + "y" : -356437.16 + }, + "selected" : false + }, { + "data" : { + "id" : "5804", + "station_name" : "西太子堂", + "close_ymd" : "", + "lon" : 139.666382, + "post" : "154-0004", + "e_status" : 0, + "SUID" : 5804, + "station_g_cd" : 2600702, + "add" : "世田谷区太子堂4-10-3", + "line_cd" : 26007, + "selected" : false, + "open_ymd" : "", + "name" : "2600702", + "pref_name" : "東京都", + "shared_name" : "2600702", + "lat" : 35.644545, + "y" : -356445.45, + "x" : 1396663.82 + }, + "position" : { + "x" : 1396663.82, + "y" : -356445.45 + }, + "selected" : false + }, { + "data" : { + "id" : "5801", + "station_name" : "矢口渡", + "close_ymd" : "", + "lon" : 139.700389, + "post" : "146-0095", + "e_status" : 0, + "SUID" : 5801, + "station_g_cd" : 2600606, + "add" : "大田区多摩川1-20-15", + "line_cd" : 26006, + "selected" : false, + "open_ymd" : "", + "name" : "2600606", + "pref_name" : "東京都", + "shared_name" : "2600606", + "lat" : 35.562462, + "y" : -355624.61999999994, + "x" : 1397003.89 + }, + "position" : { + "x" : 1397003.89, + "y" : -355624.61999999994 + }, + "selected" : false + }, { + "data" : { + "id" : "5802", + "station_name" : "蒲田", + "close_ymd" : "", + "lon" : 139.714626, + "post" : "144-0052", + "e_status" : 0, + "SUID" : 5802, + "station_g_cd" : 1133230, + "add" : "大田区蒲田5丁目", + "line_cd" : 26006, + "selected" : false, + "open_ymd" : "", + "name" : "2600607", + "pref_name" : "東京都", + "shared_name" : "2600607", + "lat" : 35.561766999999996, + "y" : -355617.67, + "x" : 1397146.26 + }, + "position" : { + "x" : 1397146.26, + "y" : -355617.67 + }, + "selected" : false + }, { + "data" : { + "id" : "5799", + "station_name" : "下丸子", + "close_ymd" : "", + "lon" : 139.685576, + "post" : "146-0092", + "e_status" : 0, + "SUID" : 5799, + "station_g_cd" : 2600604, + "add" : "大田区下丸子3-7-1", + "line_cd" : 26006, + "selected" : false, + "open_ymd" : "", + "name" : "2600604", + "pref_name" : "東京都", + "shared_name" : "2600604", + "lat" : 35.571397, + "y" : -355713.97, + "x" : 1396855.76 + }, + "position" : { + "x" : 1396855.76, + "y" : -355713.97 + }, + "selected" : false + }, { + "data" : { + "id" : "5800", + "station_name" : "武蔵新田", + "close_ymd" : "", + "lon" : 139.692506, + "post" : "146-0093", + "e_status" : 0, + "SUID" : 5800, + "station_g_cd" : 2600605, + "add" : "大田区矢口1-18-1", + "line_cd" : 26006, + "selected" : false, + "open_ymd" : "", + "name" : "2600605", + "pref_name" : "東京都", + "shared_name" : "2600605", + "lat" : 35.567806, + "y" : -355678.06, + "x" : 1396925.06 + }, + "position" : { + "x" : 1396925.06, + "y" : -355678.06 + }, + "selected" : false + }, { + "data" : { + "id" : "5797", + "station_name" : "沼部", + "close_ymd" : "", + "lon" : 139.67326, + "post" : "145-0072", + "e_status" : 0, + "SUID" : 5797, + "station_g_cd" : 2600602, + "add" : "大田区田園調布本町28-1", + "line_cd" : 26006, + "selected" : false, + "open_ymd" : "", + "name" : "2600602", + "pref_name" : "東京都", + "shared_name" : "2600602", + "lat" : 35.582526, + "y" : -355825.26, + "x" : 1396732.6 + }, + "position" : { + "x" : 1396732.6, + "y" : -355825.26 + }, + "selected" : false + }, { + "data" : { + "id" : "5798", + "station_name" : "鵜の木", + "close_ymd" : "", + "lon" : 139.680554, + "post" : "146-0091", + "e_status" : 0, + "SUID" : 5798, + "station_g_cd" : 2600603, + "add" : "大田区鵜の木2-4-1", + "line_cd" : 26006, + "selected" : false, + "open_ymd" : "", + "name" : "2600603", + "pref_name" : "東京都", + "shared_name" : "2600603", + "lat" : 35.575452, + "y" : -355754.51999999996, + "x" : 1396805.54 + }, + "position" : { + "x" : 1396805.54, + "y" : -355754.51999999996 + }, + "selected" : false + }, { + "data" : { + "id" : "8157", + "station_name" : "立川北", + "close_ymd" : "", + "lon" : 139.41253999999998, + "post" : "190-0012", + "e_status" : 0, + "SUID" : 8157, + "station_g_cd" : 9933412, + "add" : "立川市曙町2-4", + "line_cd" : 99334, + "selected" : false, + "open_ymd" : "", + "name" : "9933412", + "pref_name" : "東京都", + "shared_name" : "9933412", + "lat" : 35.699502, + "y" : -356995.02, + "x" : 1394125.3999999997 + }, + "position" : { + "x" : 1394125.3999999997, + "y" : -356995.02 + }, + "selected" : false + }, { + "data" : { + "id" : "8158", + "station_name" : "高松", + "close_ymd" : "", + "lon" : 139.413242, + "post" : "190-0011", + "e_status" : 0, + "SUID" : 8158, + "station_g_cd" : 9933413, + "add" : "立川市高松町1-100", + "line_cd" : 99334, + "selected" : false, + "open_ymd" : "", + "name" : "9933413", + "pref_name" : "東京都", + "shared_name" : "9933413", + "lat" : 35.710158, + "y" : -357101.58, + "x" : 1394132.42 + }, + "position" : { + "x" : 1394132.42, + "y" : -357101.58 + }, + "selected" : false + }, { + "data" : { + "id" : "8159", + "station_name" : "立飛", + "close_ymd" : "", + "lon" : 139.41738700000002, + "post" : "190-0015", + "e_status" : 0, + "SUID" : 8159, + "station_g_cd" : 9933414, + "add" : "立川市泉町935", + "line_cd" : 99334, + "selected" : false, + "open_ymd" : "", + "name" : "9933414", + "pref_name" : "東京都", + "shared_name" : "9933414", + "lat" : 35.714717, + "y" : -357147.17, + "x" : 1394173.87 + }, + "position" : { + "x" : 1394173.87, + "y" : -357147.17 + }, + "selected" : false + }, { + "data" : { + "id" : "8160", + "station_name" : "泉体育館", + "close_ymd" : "", + "lon" : 139.419525, + "post" : "190-0015", + "e_status" : 0, + "SUID" : 8160, + "station_g_cd" : 9933415, + "add" : "立川市泉町841", + "line_cd" : 99334, + "selected" : false, + "open_ymd" : "", + "name" : "9933415", + "pref_name" : "東京都", + "shared_name" : "9933415", + "lat" : 35.718775, + "y" : -357187.75, + "x" : 1394195.25 + }, + "position" : { + "x" : 1394195.25, + "y" : -357187.75 + }, + "selected" : false + }, { + "data" : { + "id" : "8161", + "station_name" : "砂川七番", + "close_ymd" : "", + "lon" : 139.418097, + "post" : "190-0002", + "e_status" : 0, + "SUID" : 8161, + "station_g_cd" : 9933416, + "add" : "立川市幸町5-1", + "line_cd" : 99334, + "selected" : false, + "open_ymd" : "", + "name" : "9933416", + "pref_name" : "東京都", + "shared_name" : "9933416", + "lat" : 35.723319000000004, + "y" : -357233.19000000006, + "x" : 1394180.97 + }, + "position" : { + "x" : 1394180.97, + "y" : -357233.19000000006 + }, + "selected" : false + }, { + "data" : { + "id" : "8162", + "station_name" : "玉川上水", + "close_ymd" : "", + "lon" : 139.417866, + "post" : "190-0002", + "e_status" : 0, + "SUID" : 8162, + "station_g_cd" : 2200805, + "add" : "立川市幸町6-36-1", + "line_cd" : 99334, + "selected" : false, + "open_ymd" : "", + "name" : "9933417", + "pref_name" : "東京都", + "shared_name" : "9933417", + "lat" : 35.73223, + "y" : -357322.3, + "x" : 1394178.6600000001 + }, + "position" : { + "x" : 1394178.6600000001, + "y" : -357322.3 + }, + "selected" : false + }, { + "data" : { + "id" : "8163", + "station_name" : "桜街道", + "close_ymd" : "", + "lon" : 139.416653, + "post" : "207-0023", + "e_status" : 0, + "SUID" : 8163, + "station_g_cd" : 9933418, + "add" : "東大和市上北台3-470", + "line_cd" : 99334, + "selected" : false, + "open_ymd" : "", + "name" : "9933418", + "pref_name" : "東京都", + "shared_name" : "9933418", + "lat" : 35.739000000000004, + "y" : -357390.00000000006, + "x" : 1394166.53 + }, + "position" : { + "x" : 1394166.53, + "y" : -357390.00000000006 + }, + "selected" : false + }, { + "data" : { + "id" : "8164", + "station_name" : "上北台", + "close_ymd" : "", + "lon" : 139.415822, + "post" : "207-0023", + "e_status" : 0, + "SUID" : 8164, + "station_g_cd" : 9933419, + "add" : "東大和市上北台1-742", + "line_cd" : 99334, + "selected" : false, + "open_ymd" : "", + "name" : "9933419", + "pref_name" : "東京都", + "shared_name" : "9933419", + "lat" : 35.745824, + "y" : -357458.24, + "x" : 1394158.22 + }, + "position" : { + "x" : 1394158.22, + "y" : -357458.24 + }, + "selected" : false + }, { + "data" : { + "id" : "8149", + "station_name" : "中央大学・明星大学", + "close_ymd" : "", + "lon" : 139.408672, + "post" : "192-0351", + "e_status" : 0, + "SUID" : 8149, + "station_g_cd" : 9933404, + "add" : "八王子市東中野742", + "line_cd" : 99334, + "selected" : false, + "open_ymd" : "", + "name" : "9933404", + "pref_name" : "東京都", + "shared_name" : "9933404", + "lat" : 35.64197, + "y" : -356419.7, + "x" : 1394086.72 + }, + "position" : { + "x" : 1394086.72, + "y" : -356419.7 + }, + "selected" : false + }, { + "data" : { + "id" : "5758", + "station_name" : "つくし野", + "close_ymd" : "", + "lon" : 139.485139, + "post" : "194-0001", + "e_status" : 0, + "SUID" : 5758, + "station_g_cd" : 2600323, + "add" : "町田市つくし野4-1", + "line_cd" : 26003, + "selected" : false, + "open_ymd" : "", + "name" : "2600323", + "pref_name" : "東京都", + "shared_name" : "2600323", + "lat" : 35.527559000000004, + "y" : -355275.59, + "x" : 1394851.3900000001 + }, + "position" : { + "x" : 1394851.3900000001, + "y" : -355275.59 + }, + "selected" : false + }, { + "data" : { + "id" : "8150", + "station_name" : "多摩動物公園", + "close_ymd" : "", + "lon" : 139.403672, + "post" : "191-0042", + "e_status" : 0, + "SUID" : 8150, + "station_g_cd" : 2400502, + "add" : "日野市程久保3-36-39", + "line_cd" : 99334, + "selected" : false, + "open_ymd" : "", + "name" : "9933405", + "pref_name" : "東京都", + "shared_name" : "9933405", + "lat" : 35.648666, + "y" : -356486.66, + "x" : 1394036.72 + }, + "position" : { + "x" : 1394036.72, + "y" : -356486.66 + }, + "selected" : false + }, { + "data" : { + "id" : "5759", + "station_name" : "すずかけ台", + "close_ymd" : "", + "lon" : 139.481684, + "post" : "194-0001", + "e_status" : 0, + "SUID" : 5759, + "station_g_cd" : 2600324, + "add" : "町田市つくし野3-1", + "line_cd" : 26003, + "selected" : false, + "open_ymd" : "", + "name" : "2600324", + "pref_name" : "東京都", + "shared_name" : "2600324", + "lat" : 35.517094, + "y" : -355170.94, + "x" : 1394816.84 + }, + "position" : { + "x" : 1394816.84, + "y" : -355170.94 + }, + "selected" : false + }, { + "data" : { + "id" : "8151", + "station_name" : "程久保", + "close_ymd" : "", + "lon" : 139.410698, + "post" : "191-0042", + "e_status" : 0, + "SUID" : 8151, + "station_g_cd" : 9933406, + "add" : "日野市程久保8-1", + "line_cd" : 99334, + "selected" : false, + "open_ymd" : "", + "name" : "9933406", + "pref_name" : "東京都", + "shared_name" : "9933406", + "lat" : 35.655093, + "y" : -356550.93, + "x" : 1394106.98 + }, + "position" : { + "x" : 1394106.98, + "y" : -356550.93 + }, + "selected" : false + }, { + "data" : { + "id" : "5760", + "station_name" : "南町田", + "close_ymd" : "", + "lon" : 139.470318, + "post" : "194-0004", + "e_status" : 0, + "SUID" : 5760, + "station_g_cd" : 2600325, + "add" : "町田市鶴間3-3-2", + "line_cd" : 26003, + "selected" : false, + "open_ymd" : "", + "name" : "2600325", + "pref_name" : "東京都", + "shared_name" : "2600325", + "lat" : 35.511502, + "y" : -355115.02, + "x" : 1394703.18 + }, + "position" : { + "x" : 1394703.18, + "y" : -355115.02 + }, + "selected" : false + }, { + "data" : { + "id" : "8152", + "station_name" : "高幡不動", + "close_ymd" : "", + "lon" : 139.415184, + "post" : "191-0031", + "e_status" : 0, + "SUID" : 8152, + "station_g_cd" : 2400129, + "add" : "日野市高幡139", + "line_cd" : 99334, + "selected" : false, + "open_ymd" : "", + "name" : "9933407", + "pref_name" : "東京都", + "shared_name" : "9933407", + "lat" : 35.66148, + "y" : -356614.8, + "x" : 1394151.84 + }, + "position" : { + "x" : 1394151.84, + "y" : -356614.8 + }, + "selected" : false + }, { + "data" : { + "id" : "8153", + "station_name" : "万願寺", + "close_ymd" : "", + "lon" : 139.42007900000002, + "post" : "191-0022", + "e_status" : 0, + "SUID" : 8153, + "station_g_cd" : 9933408, + "add" : "日野市新井124", + "line_cd" : 99334, + "selected" : false, + "open_ymd" : "", + "name" : "9933408", + "pref_name" : "東京都", + "shared_name" : "9933408", + "lat" : 35.671248999999996, + "y" : -356712.48999999993, + "x" : 1394200.7900000003 + }, + "position" : { + "x" : 1394200.7900000003, + "y" : -356712.48999999993 + }, + "selected" : false + }, { + "data" : { + "id" : "8154", + "station_name" : "甲州街道", + "close_ymd" : "", + "lon" : 139.409191, + "post" : "191-0012", + "e_status" : 0, + "SUID" : 8154, + "station_g_cd" : 9933409, + "add" : "日野市日野1030", + "line_cd" : 99334, + "selected" : false, + "open_ymd" : "", + "name" : "9933409", + "pref_name" : "東京都", + "shared_name" : "9933409", + "lat" : 35.678262, + "y" : -356782.61999999994, + "x" : 1394091.91 + }, + "position" : { + "x" : 1394091.91, + "y" : -356782.61999999994 + }, + "selected" : false + }, { + "data" : { + "id" : "5763", + "station_name" : "大井町", + "close_ymd" : "", + "lon" : 139.735025, + "post" : "140-0014", + "e_status" : 0, + "SUID" : 5763, + "station_g_cd" : 1133228, + "add" : "品川区大井1丁目", + "line_cd" : 26004, + "selected" : false, + "open_ymd" : "", + "name" : "2600401", + "pref_name" : "東京都", + "shared_name" : "2600401", + "lat" : 35.607535, + "y" : -356075.35, + "x" : 1397350.25 + }, + "position" : { + "x" : 1397350.25, + "y" : -356075.35 + }, + "selected" : false + }, { + "data" : { + "id" : "8155", + "station_name" : "柴崎体育館", + "close_ymd" : "", + "lon" : 139.409191, + "post" : "190-0023", + "e_status" : 0, + "SUID" : 8155, + "station_g_cd" : 9933410, + "add" : "立川市柴崎町6-107", + "line_cd" : 99334, + "selected" : false, + "open_ymd" : "", + "name" : "9933410", + "pref_name" : "東京都", + "shared_name" : "9933410", + "lat" : 35.689475, + "y" : -356894.75, + "x" : 1394091.91 + }, + "position" : { + "x" : 1394091.91, + "y" : -356894.75 + }, + "selected" : false + }, { + "data" : { + "id" : "8156", + "station_name" : "立川南", + "close_ymd" : "", + "lon" : 139.412546, + "post" : "190-0023", + "e_status" : 0, + "SUID" : 8156, + "station_g_cd" : 9933411, + "add" : "立川市柴崎町3-7", + "line_cd" : 99334, + "selected" : false, + "open_ymd" : "", + "name" : "9933411", + "pref_name" : "東京都", + "shared_name" : "9933411", + "lat" : 35.696077, + "y" : -356960.77, + "x" : 1394125.46 + }, + "position" : { + "x" : 1394125.46, + "y" : -356960.77 + }, + "selected" : false + }, { + "data" : { + "id" : "5764", + "station_name" : "下神明", + "close_ymd" : "", + "lon" : 139.726256, + "post" : "141-0033", + "e_status" : 0, + "SUID" : 5764, + "station_g_cd" : 2600402, + "add" : "品川区西品川1-29-6", + "line_cd" : 26004, + "selected" : false, + "open_ymd" : "", + "name" : "2600402", + "pref_name" : "東京都", + "shared_name" : "2600402", + "lat" : 35.608703999999996, + "y" : -356087.04, + "x" : 1397262.56 + }, + "position" : { + "x" : 1397262.56, + "y" : -356087.04 + }, + "selected" : false + }, { + "data" : { + "id" : "5766", + "station_name" : "中延", + "close_ymd" : "", + "lon" : 139.712526, + "post" : "142-0053", + "e_status" : 0, + "SUID" : 5766, + "station_g_cd" : 2600404, + "add" : "品川区中延4-5-5", + "line_cd" : 26004, + "selected" : false, + "open_ymd" : "", + "name" : "2600404", + "pref_name" : "東京都", + "shared_name" : "2600404", + "lat" : 35.605709999999995, + "y" : -356057.1, + "x" : 1397125.26 + }, + "position" : { + "x" : 1397125.26, + "y" : -356057.1 + }, + "selected" : false + }, { + "data" : { + "id" : "5765", + "station_name" : "戸越公園", + "close_ymd" : "", + "lon" : 139.718159, + "post" : "142-0041", + "e_status" : 0, + "SUID" : 5765, + "station_g_cd" : 2600403, + "add" : "品川区戸越5-10-15", + "line_cd" : 26004, + "selected" : false, + "open_ymd" : "", + "name" : "2600403", + "pref_name" : "東京都", + "shared_name" : "2600403", + "lat" : 35.608856, + "y" : -356088.56000000006, + "x" : 1397181.59 + }, + "position" : { + "x" : 1397181.59, + "y" : -356088.56000000006 + }, + "selected" : false + }, { + "data" : { + "id" : "8176", + "station_name" : "天王洲アイル", + "close_ymd" : "", + "lon" : 139.750675, + "post" : "140-0002", + "e_status" : 0, + "SUID" : 8176, + "station_g_cd" : 9933602, + "add" : "品川区東品川2-5-19", + "line_cd" : 99336, + "selected" : false, + "open_ymd" : "", + "name" : "9933602", + "pref_name" : "東京都", + "shared_name" : "9933602", + "lat" : 35.622908, + "y" : -356229.08, + "x" : 1397506.75 + }, + "position" : { + "x" : 1397506.75, + "y" : -356229.08 + }, + "selected" : false + }, { + "data" : { + "id" : "5768", + "station_name" : "旗の台", + "close_ymd" : "", + "lon" : 139.70228600000002, + "post" : "142-0064", + "e_status" : 0, + "SUID" : 5768, + "station_g_cd" : 2600406, + "add" : "品川区旗の台2-13-1", + "line_cd" : 26004, + "selected" : false, + "open_ymd" : "", + "name" : "2600406", + "pref_name" : "東京都", + "shared_name" : "2600406", + "lat" : 35.604923, + "y" : -356049.23, + "x" : 1397022.86 + }, + "position" : { + "x" : 1397022.86, + "y" : -356049.23 + }, + "selected" : false + }, { + "data" : { + "id" : "8175", + "station_name" : "浜松町", + "close_ymd" : "", + "lon" : 139.756747, + "post" : "", + "e_status" : 0, + "SUID" : 8175, + "station_g_cd" : 1130227, + "add" : "東京都港区", + "line_cd" : 99336, + "selected" : false, + "open_ymd" : "", + "name" : "9933601", + "pref_name" : "東京都", + "shared_name" : "9933601", + "lat" : 35.655666, + "y" : -356556.66, + "x" : 1397567.47 + }, + "position" : { + "x" : 1397567.47, + "y" : -356556.66 + }, + "selected" : false + }, { + "data" : { + "id" : "5767", + "station_name" : "荏原町", + "close_ymd" : "", + "lon" : 139.707571, + "post" : "142-0053", + "e_status" : 0, + "SUID" : 5767, + "station_g_cd" : 2600405, + "add" : "品川区中延5-2-1", + "line_cd" : 26004, + "selected" : false, + "open_ymd" : "", + "name" : "2600405", + "pref_name" : "東京都", + "shared_name" : "2600405", + "lat" : 35.60382, + "y" : -356038.2, + "x" : 1397075.71 + }, + "position" : { + "x" : 1397075.71, + "y" : -356038.2 + }, + "selected" : false + }, { + "data" : { + "id" : "8178", + "station_name" : "流通センター", + "close_ymd" : "", + "lon" : 139.748964, + "post" : "143-0006", + "e_status" : 0, + "SUID" : 8178, + "station_g_cd" : 9933604, + "add" : "大田区平和島6-1-2", + "line_cd" : 99336, + "selected" : false, + "open_ymd" : "", + "name" : "9933604", + "pref_name" : "東京都", + "shared_name" : "9933604", + "lat" : 35.58186, + "y" : -355818.6, + "x" : 1397489.64 + }, + "position" : { + "x" : 1397489.64, + "y" : -355818.6 + }, + "selected" : false + }, { + "data" : { + "id" : "5770", + "station_name" : "大岡山", + "close_ymd" : "", + "lon" : 139.685909, + "post" : "145-0062", + "e_status" : 0, + "SUID" : 5770, + "station_g_cd" : 2600206, + "add" : "大田区北千束3-27-1", + "line_cd" : 26004, + "selected" : false, + "open_ymd" : "", + "name" : "2600408", + "pref_name" : "東京都", + "shared_name" : "2600408", + "lat" : 35.607456, + "y" : -356074.56, + "x" : 1396859.09 + }, + "position" : { + "x" : 1396859.09, + "y" : -356074.56 + }, + "selected" : false + }, { + "data" : { + "id" : "8177", + "station_name" : "大井競馬場前", + "close_ymd" : "", + "lon" : 139.74708, + "post" : "140-0012", + "e_status" : 0, + "SUID" : 8177, + "station_g_cd" : 9933603, + "add" : "品川区勝島2-2-35", + "line_cd" : 99336, + "selected" : false, + "open_ymd" : "", + "name" : "9933603", + "pref_name" : "東京都", + "shared_name" : "9933603", + "lat" : 35.595006, + "y" : -355950.06, + "x" : 1397470.8 + }, + "position" : { + "x" : 1397470.8, + "y" : -355950.06 + }, + "selected" : false + }, { + "data" : { + "id" : "5769", + "station_name" : "北千束", + "close_ymd" : "", + "lon" : 139.69330300000001, + "post" : "145-0062", + "e_status" : 0, + "SUID" : 5769, + "station_g_cd" : 2600407, + "add" : "大田区北千束2-16-1", + "line_cd" : 26004, + "selected" : false, + "open_ymd" : "", + "name" : "2600407", + "pref_name" : "東京都", + "shared_name" : "2600407", + "lat" : 35.606311, + "y" : -356063.11, + "x" : 1396933.0300000003 + }, + "position" : { + "x" : 1396933.0300000003, + "y" : -356063.11 + }, + "selected" : false + }, { + "data" : { + "id" : "8180", + "station_name" : "整備場", + "close_ymd" : "", + "lon" : 139.753366, + "post" : "144-0041", + "e_status" : 0, + "SUID" : 8180, + "station_g_cd" : 9933606, + "add" : "大田区羽田空港1-7-4", + "line_cd" : 99336, + "selected" : false, + "open_ymd" : "", + "name" : "9933606", + "pref_name" : "東京都", + "shared_name" : "9933606", + "lat" : 35.555125, + "y" : -355551.24999999994, + "x" : 1397533.66 + }, + "position" : { + "x" : 1397533.66, + "y" : -355551.24999999994 + }, + "selected" : false + }, { + "data" : { + "id" : "5772", + "station_name" : "自由が丘", + "close_ymd" : "", + "lon" : 139.66866399999998, + "post" : "152-0035", + "e_status" : 0, + "SUID" : 5772, + "station_g_cd" : 2600107, + "add" : "目黒区自由が丘1-30-1", + "line_cd" : 26004, + "selected" : false, + "open_ymd" : "", + "name" : "2600410", + "pref_name" : "東京都", + "shared_name" : "2600410", + "lat" : 35.607224, + "y" : -356072.24000000005, + "x" : 1396686.64 + }, + "position" : { + "x" : 1396686.64, + "y" : -356072.24000000005 + }, + "selected" : false + }, { + "data" : { + "id" : "8179", + "station_name" : "昭和島", + "close_ymd" : "", + "lon" : 139.74991799999998, + "post" : "143-0004", + "e_status" : 0, + "SUID" : 8179, + "station_g_cd" : 9933605, + "add" : "大田区昭和島2-2-1", + "line_cd" : 99336, + "selected" : false, + "open_ymd" : "", + "name" : "9933605", + "pref_name" : "東京都", + "shared_name" : "9933605", + "lat" : 35.570656, + "y" : -355706.56, + "x" : 1397499.1799999997 + }, + "position" : { + "x" : 1397499.1799999997, + "y" : -355706.56 + }, + "selected" : false + }, { + "data" : { + "id" : "5771", + "station_name" : "緑が丘", + "close_ymd" : "", + "lon" : 139.679482, + "post" : "152-0034", + "e_status" : 0, + "SUID" : 5771, + "station_g_cd" : 2600409, + "add" : "目黒区緑が丘3-1-12", + "line_cd" : 26004, + "selected" : false, + "open_ymd" : "", + "name" : "2600409", + "pref_name" : "東京都", + "shared_name" : "2600409", + "lat" : 35.60638, + "y" : -356063.8, + "x" : 1396794.82 + }, + "position" : { + "x" : 1396794.82, + "y" : -356063.8 + }, + "selected" : false + }, { + "data" : { + "id" : "5774", + "station_name" : "尾山台", + "close_ymd" : "", + "lon" : 139.653862, + "post" : "158-0082", + "e_status" : 0, + "SUID" : 5774, + "station_g_cd" : 2600412, + "add" : "世田谷区等々力5-5-7", + "line_cd" : 26004, + "selected" : false, + "open_ymd" : "", + "name" : "2600412", + "pref_name" : "東京都", + "shared_name" : "2600412", + "lat" : 35.606971, + "y" : -356069.71, + "x" : 1396538.62 + }, + "position" : { + "x" : 1396538.62, + "y" : -356069.71 + }, + "selected" : false + }, { + "data" : { + "id" : "5773", + "station_name" : "九品仏", + "close_ymd" : "", + "lon" : 139.660992, + "post" : "158-0083", + "e_status" : 0, + "SUID" : 5773, + "station_g_cd" : 2600411, + "add" : "世田谷区奥沢7-20-1", + "line_cd" : 26004, + "selected" : false, + "open_ymd" : "", + "name" : "2600411", + "pref_name" : "東京都", + "shared_name" : "2600411", + "lat" : 35.60538, + "y" : -356053.8, + "x" : 1396609.92 + }, + "position" : { + "x" : 1396609.92, + "y" : -356053.8 + }, + "selected" : false + }, { + "data" : { + "id" : "5776", + "station_name" : "上野毛", + "close_ymd" : "", + "lon" : 139.638917, + "post" : "158-0093", + "e_status" : 0, + "SUID" : 5776, + "station_g_cd" : 2600414, + "add" : "世田谷区上野毛1-26-6", + "line_cd" : 26004, + "selected" : false, + "open_ymd" : "", + "name" : "2600414", + "pref_name" : "東京都", + "shared_name" : "2600414", + "lat" : 35.611957000000004, + "y" : -356119.57000000007, + "x" : 1396389.17 + }, + "position" : { + "x" : 1396389.17, + "y" : -356119.57000000007 + }, + "selected" : false + }, { + "data" : { + "id" : "5775", + "station_name" : "等々力", + "close_ymd" : "", + "lon" : 139.64793799999998, + "post" : "158-0082", + "e_status" : 0, + "SUID" : 5775, + "station_g_cd" : 2600413, + "add" : "世田谷区等々力3-1-1", + "line_cd" : 26004, + "selected" : false, + "open_ymd" : "", + "name" : "2600413", + "pref_name" : "東京都", + "shared_name" : "2600413", + "lat" : 35.608369, + "y" : -356083.69000000006, + "x" : 1396479.38 + }, + "position" : { + "x" : 1396479.38, + "y" : -356083.69000000006 + }, + "selected" : false + }, { + "data" : { + "id" : "5777", + "station_name" : "二子玉川", + "close_ymd" : "", + "lon" : 139.626685, + "post" : "158-0094", + "e_status" : 0, + "SUID" : 5777, + "station_g_cd" : 2600307, + "add" : "世田谷区玉川2-22-13", + "line_cd" : 26004, + "selected" : false, + "open_ymd" : "", + "name" : "2600415", + "pref_name" : "東京都", + "shared_name" : "2600415", + "lat" : 35.611788, + "y" : -356117.87999999995, + "x" : 1396266.85 + }, + "position" : { + "x" : 1396266.85, + "y" : -356117.87999999995 + }, + "selected" : false + }, { + "data" : { + "id" : "8191", + "station_name" : "品川シーサイド", + "close_ymd" : "", + "lon" : 139.749549, + "post" : "140-0002", + "e_status" : 0, + "SUID" : 8191, + "station_g_cd" : 9933706, + "add" : "品川区東品川4-12-22", + "line_cd" : 99337, + "selected" : false, + "open_ymd" : "", + "name" : "9933706", + "pref_name" : "東京都", + "shared_name" : "9933706", + "lat" : 35.608523999999996, + "y" : -356085.23999999993, + "x" : 1397495.49 + }, + "position" : { + "x" : 1397495.49, + "y" : -356085.23999999993 + }, + "selected" : false + }, { + "data" : { + "id" : "8192", + "station_name" : "大井町", + "close_ymd" : "", + "lon" : 139.735025, + "post" : "140-0014", + "e_status" : 0, + "SUID" : 8192, + "station_g_cd" : 1133228, + "add" : "品川区大井1丁目", + "line_cd" : 99337, + "selected" : false, + "open_ymd" : "", + "name" : "9933707", + "pref_name" : "東京都", + "shared_name" : "9933707", + "lat" : 35.607535, + "y" : -356075.35, + "x" : 1397350.25 + }, + "position" : { + "x" : 1397350.25, + "y" : -356075.35 + }, + "selected" : false + }, { + "data" : { + "id" : "8189", + "station_name" : "東京テレポート", + "close_ymd" : "", + "lon" : 139.778896, + "post" : "135-0064", + "e_status" : 0, + "SUID" : 8189, + "station_g_cd" : 9933704, + "add" : "江東区青海1-2", + "line_cd" : 99337, + "selected" : false, + "open_ymd" : "", + "name" : "9933704", + "pref_name" : "東京都", + "shared_name" : "9933704", + "lat" : 35.62753, + "y" : -356275.3, + "x" : 1397788.96 + }, + "position" : { + "x" : 1397788.96, + "y" : -356275.3 + }, + "selected" : false + }, { + "data" : { + "id" : "8190", + "station_name" : "天王洲アイル", + "close_ymd" : "", + "lon" : 139.750793, + "post" : "140-0002", + "e_status" : 0, + "SUID" : 8190, + "station_g_cd" : 9933602, + "add" : "品川区東品川2-5-19", + "line_cd" : 99337, + "selected" : false, + "open_ymd" : "", + "name" : "9933705", + "pref_name" : "東京都", + "shared_name" : "9933705", + "lat" : 35.620562, + "y" : -356205.62, + "x" : 1397507.93 + }, + "position" : { + "x" : 1397507.93, + "y" : -356205.62 + }, + "selected" : false + }, { + "data" : { + "id" : "5723", + "station_name" : "目黒", + "close_ymd" : "", + "lon" : 139.7155, + "post" : "", + "e_status" : 0, + "SUID" : 5723, + "station_g_cd" : 1130203, + "add" : "東京都品川区上大崎四丁目2-1", + "line_cd" : 26002, + "selected" : false, + "open_ymd" : "", + "name" : "2600201", + "pref_name" : "東京都", + "shared_name" : "2600201", + "lat" : 35.633272, + "y" : -356332.72, + "x" : 1397155.0 + }, + "position" : { + "x" : 1397155.0, + "y" : -356332.72 + }, + "selected" : false + }, { + "data" : { + "id" : "5724", + "station_name" : "不動前", + "close_ymd" : "", + "lon" : 139.71469, + "post" : "141-0031", + "e_status" : 0, + "SUID" : 5724, + "station_g_cd" : 2600202, + "add" : "品川区西五反田5-12-1", + "line_cd" : 26002, + "selected" : false, + "open_ymd" : "", + "name" : "2600202", + "pref_name" : "東京都", + "shared_name" : "2600202", + "lat" : 35.626526, + "y" : -356265.26, + "x" : 1397146.9 + }, + "position" : { + "x" : 1397146.9, + "y" : -356265.26 + }, + "selected" : false + }, { + "data" : { + "id" : "8193", + "station_name" : "大崎", + "close_ymd" : "", + "lon" : 139.72843899999998, + "post" : "", + "e_status" : 0, + "SUID" : 8193, + "station_g_cd" : 1130201, + "add" : "東京都品川区大崎一丁目21-4", + "line_cd" : 99337, + "selected" : false, + "open_ymd" : "", + "name" : "9933708", + "pref_name" : "東京都", + "shared_name" : "9933708", + "lat" : 35.619772, + "y" : -356197.72, + "x" : 1397284.39 + }, + "position" : { + "x" : 1397284.39, + "y" : -356197.72 + }, + "selected" : false + }, { + "data" : { + "id" : "5727", + "station_name" : "洗足", + "close_ymd" : "", + "lon" : 139.694367, + "post" : "152-0012", + "e_status" : 0, + "SUID" : 5727, + "station_g_cd" : 2600205, + "add" : "目黒区洗足2-21-1", + "line_cd" : 26002, + "selected" : false, + "open_ymd" : "", + "name" : "2600205", + "pref_name" : "東京都", + "shared_name" : "2600205", + "lat" : 35.61043, + "y" : -356104.3, + "x" : 1396943.67 + }, + "position" : { + "x" : 1396943.67, + "y" : -356104.3 + }, + "selected" : false + }, { + "data" : { + "id" : "8183", + "station_name" : "新整備場", + "close_ymd" : "", + "lon" : 139.786777, + "post" : "144-0041", + "e_status" : 0, + "SUID" : 8183, + "station_g_cd" : 9933608, + "add" : "大田区羽田空港3-5-1", + "line_cd" : 99336, + "selected" : false, + "open_ymd" : "", + "name" : "9933608", + "pref_name" : "東京都", + "shared_name" : "9933608", + "lat" : 35.542773, + "y" : -355427.73, + "x" : 1397867.77 + }, + "position" : { + "x" : 1397867.77, + "y" : -355427.73 + }, + "selected" : false + }, { + "data" : { + "id" : "5728", + "station_name" : "大岡山", + "close_ymd" : "", + "lon" : 139.685909, + "post" : "145-0062", + "e_status" : 0, + "SUID" : 5728, + "station_g_cd" : 2600206, + "add" : "大田区北千束3-27-1", + "line_cd" : 26002, + "selected" : false, + "open_ymd" : "", + "name" : "2600206", + "pref_name" : "東京都", + "shared_name" : "2600206", + "lat" : 35.607456, + "y" : -356074.56, + "x" : 1396859.09 + }, + "position" : { + "x" : 1396859.09, + "y" : -356074.56 + }, + "selected" : false + }, { + "data" : { + "id" : "8184", + "station_name" : "羽田空港第1ビル", + "close_ymd" : "", + "lon" : 139.784653, + "post" : "144-0041", + "e_status" : 0, + "SUID" : 8184, + "station_g_cd" : 2700206, + "add" : "大田区羽田空港3-3-2", + "line_cd" : 99336, + "selected" : false, + "open_ymd" : "", + "name" : "9933609", + "pref_name" : "東京都", + "shared_name" : "9933609", + "lat" : 35.549163, + "y" : -355491.63, + "x" : 1397846.53 + }, + "position" : { + "x" : 1397846.53, + "y" : -355491.63 + }, + "selected" : false + }, { + "data" : { + "id" : "5725", + "station_name" : "武蔵小山", + "close_ymd" : "", + "lon" : 139.704524, + "post" : "142-0062", + "e_status" : 0, + "SUID" : 5725, + "station_g_cd" : 2600203, + "add" : "品川区小山3-4-8", + "line_cd" : 26002, + "selected" : false, + "open_ymd" : "", + "name" : "2600203", + "pref_name" : "東京都", + "shared_name" : "2600203", + "lat" : 35.620538, + "y" : -356205.38, + "x" : 1397045.24 + }, + "position" : { + "x" : 1397045.24, + "y" : -356205.38 + }, + "selected" : false + }, { + "data" : { + "id" : "8181", + "station_name" : "天空橋", + "close_ymd" : "", + "lon" : 139.75423, + "post" : "144-0041", + "e_status" : 0, + "SUID" : 8181, + "station_g_cd" : 2700205, + "add" : "大田区羽田空港1-1-2", + "line_cd" : 99336, + "selected" : false, + "open_ymd" : "", + "name" : "9933607", + "pref_name" : "東京都", + "shared_name" : "9933607", + "lat" : 35.548908000000004, + "y" : -355489.08, + "x" : 1397542.3 + }, + "position" : { + "x" : 1397542.3, + "y" : -355489.08 + }, + "selected" : false + }, { + "data" : { + "id" : "5726", + "station_name" : "西小山", + "close_ymd" : "", + "lon" : 139.698694, + "post" : "142-0062", + "e_status" : 0, + "SUID" : 5726, + "station_g_cd" : 2600204, + "add" : "品川区小山6-3-10", + "line_cd" : 26002, + "selected" : false, + "open_ymd" : "", + "name" : "2600204", + "pref_name" : "東京都", + "shared_name" : "2600204", + "lat" : 35.615455, + "y" : -356154.55, + "x" : 1396986.94 + }, + "position" : { + "x" : 1396986.94, + "y" : -356154.55 + }, + "selected" : false + }, { + "data" : { + "id" : "8182", + "station_name" : "羽田空港国際線ビル", + "close_ymd" : "", + "lon" : 139.768206, + "post" : "144-0041", + "e_status" : 0, + "SUID" : 8182, + "station_g_cd" : 2700207, + "add" : "東京都大田区羽田空港二丁目6-5", + "line_cd" : 99336, + "selected" : false, + "open_ymd" : "2010-10-21", + "name" : "9933611", + "pref_name" : "東京都", + "shared_name" : "9933611", + "lat" : 35.544169000000004, + "y" : -355441.69000000006, + "x" : 1397682.0599999998 + }, + "position" : { + "x" : 1397682.0599999998, + "y" : -355441.69000000006 + }, + "selected" : false + }, { + "data" : { + "id" : "5731", + "station_name" : "多摩川", + "close_ymd" : "", + "lon" : 139.668723, + "post" : "145-0071", + "e_status" : 0, + "SUID" : 5731, + "station_g_cd" : 2600109, + "add" : "大田区田園調布1-53-8", + "line_cd" : 26002, + "selected" : false, + "open_ymd" : "", + "name" : "2600209", + "pref_name" : "東京都", + "shared_name" : "2600209", + "lat" : 35.589591, + "y" : -355895.91, + "x" : 1396687.23 + }, + "position" : { + "x" : 1396687.23, + "y" : -355895.91 + }, + "selected" : false + }, { + "data" : { + "id" : "8187", + "station_name" : "東雲", + "close_ymd" : "", + "lon" : 139.804395, + "post" : "135-0062", + "e_status" : 0, + "SUID" : 8187, + "station_g_cd" : 9933702, + "add" : "江東区東雲2-8-10", + "line_cd" : 99337, + "selected" : false, + "open_ymd" : "", + "name" : "9933702", + "pref_name" : "東京都", + "shared_name" : "9933702", + "lat" : 35.640987, + "y" : -356409.87000000005, + "x" : 1398043.95 + }, + "position" : { + "x" : 1398043.95, + "y" : -356409.87000000005 + }, + "selected" : false + }, { + "data" : { + "id" : "8188", + "station_name" : "国際展示場", + "close_ymd" : "", + "lon" : 139.791617, + "post" : "135-0063", + "e_status" : 0, + "SUID" : 8188, + "station_g_cd" : 9933703, + "add" : "江東区有明2-5-25", + "line_cd" : 99337, + "selected" : false, + "open_ymd" : "", + "name" : "9933703", + "pref_name" : "東京都", + "shared_name" : "9933703", + "lat" : 35.634409999999995, + "y" : -356344.1, + "x" : 1397916.17 + }, + "position" : { + "x" : 1397916.17, + "y" : -356344.1 + }, + "selected" : false + }, { + "data" : { + "id" : "5729", + "station_name" : "奥沢", + "close_ymd" : "", + "lon" : 139.672355, + "post" : "158-0083", + "e_status" : 0, + "SUID" : 5729, + "station_g_cd" : 2600207, + "add" : "世田谷区奥沢3-47-17", + "line_cd" : 26002, + "selected" : false, + "open_ymd" : "", + "name" : "2600207", + "pref_name" : "東京都", + "shared_name" : "2600207", + "lat" : 35.603947, + "y" : -356039.47, + "x" : 1396723.55 + }, + "position" : { + "x" : 1396723.55, + "y" : -356039.47 + }, + "selected" : false + }, { + "data" : { + "id" : "8185", + "station_name" : "羽田空港第2ビル", + "close_ymd" : "", + "lon" : 139.787979, + "post" : "144-0041", + "e_status" : 0, + "SUID" : 8185, + "station_g_cd" : 2700206, + "add" : "大田区羽田空港3-4-2", + "line_cd" : 99336, + "selected" : false, + "open_ymd" : "", + "name" : "9933610", + "pref_name" : "東京都", + "shared_name" : "9933610", + "lat" : 35.550734000000006, + "y" : -355507.3400000001, + "x" : 1397879.79 + }, + "position" : { + "x" : 1397879.79, + "y" : -355507.3400000001 + }, + "selected" : false + }, { + "data" : { + "id" : "5730", + "station_name" : "田園調布", + "close_ymd" : "", + "lon" : 139.667356, + "post" : "145-0071", + "e_status" : 0, + "SUID" : 5730, + "station_g_cd" : 2600108, + "add" : "大田区田園調布3-25-18", + "line_cd" : 26002, + "selected" : false, + "open_ymd" : "", + "name" : "2600208", + "pref_name" : "東京都", + "shared_name" : "2600208", + "lat" : 35.596815, + "y" : -355968.15, + "x" : 1396673.56 + }, + "position" : { + "x" : 1396673.56, + "y" : -355968.15 + }, + "selected" : false + }, { + "data" : { + "id" : "8186", + "station_name" : "新木場", + "close_ymd" : "", + "lon" : 139.827402, + "post" : "", + "e_status" : 0, + "SUID" : 8186, + "station_g_cd" : 1132605, + "add" : "東京都江東区新木場一丁目6", + "line_cd" : 99337, + "selected" : false, + "open_ymd" : "", + "name" : "9933701", + "pref_name" : "東京都", + "shared_name" : "9933701", + "lat" : 35.646172, + "y" : -356461.72, + "x" : 1398274.02 + }, + "position" : { + "x" : 1398274.02, + "y" : -356461.72 + }, + "selected" : false + }, { + "data" : { + "id" : "5736", + "station_name" : "渋谷", + "close_ymd" : "", + "lon" : 139.702148, + "post" : "", + "e_status" : 0, + "SUID" : 5736, + "station_g_cd" : 1130205, + "add" : "東京都渋谷区道玄坂二丁目1-1", + "line_cd" : 26003, + "selected" : false, + "open_ymd" : "", + "name" : "2600301", + "pref_name" : "東京都", + "shared_name" : "2600301", + "lat" : 35.65802, + "y" : -356580.2, + "x" : 1397021.48 + }, + "position" : { + "x" : 1397021.48, + "y" : -356580.2 + }, + "selected" : false + }, { + "data" : { + "id" : "5740", + "station_name" : "桜新町", + "close_ymd" : "", + "lon" : 139.644779, + "post" : "154-0015", + "e_status" : 0, + "SUID" : 5740, + "station_g_cd" : 2600305, + "add" : "世田谷区桜新町2-8", + "line_cd" : 26003, + "selected" : false, + "open_ymd" : "", + "name" : "2600305", + "pref_name" : "東京都", + "shared_name" : "2600305", + "lat" : 35.631665999999996, + "y" : -356316.66, + "x" : 1396447.79 + }, + "position" : { + "x" : 1396447.79, + "y" : -356316.66 + }, + "selected" : false + }, { + "data" : { + "id" : "5739", + "station_name" : "駒沢大学", + "close_ymd" : "", + "lon" : 139.661702, + "post" : "154-0011", + "e_status" : 0, + "SUID" : 5739, + "station_g_cd" : 2600304, + "add" : "世田谷区上馬4-3", + "line_cd" : 26003, + "selected" : false, + "open_ymd" : "", + "name" : "2600304", + "pref_name" : "東京都", + "shared_name" : "2600304", + "lat" : 35.633471, + "y" : -356334.71, + "x" : 1396617.02 + }, + "position" : { + "x" : 1396617.02, + "y" : -356334.71 + }, + "selected" : false + }, { + "data" : { + "id" : "5738", + "station_name" : "三軒茶屋", + "close_ymd" : "", + "lon" : 139.670156, + "post" : "154-0004", + "e_status" : 0, + "SUID" : 5738, + "station_g_cd" : 2600303, + "add" : "世田谷区太子堂4-21-1", + "line_cd" : 26003, + "selected" : false, + "open_ymd" : "", + "name" : "2600303", + "pref_name" : "東京都", + "shared_name" : "2600303", + "lat" : 35.643716, + "y" : -356437.16, + "x" : 1396701.5599999998 + }, + "position" : { + "x" : 1396701.5599999998, + "y" : -356437.16 + }, + "selected" : false + }, { + "data" : { + "id" : "5737", + "station_name" : "池尻大橋", + "close_ymd" : "", + "lon" : 139.684319, + "post" : "154-0001", + "e_status" : 0, + "SUID" : 5737, + "station_g_cd" : 2600302, + "add" : "世田谷区池尻3-2", + "line_cd" : 26003, + "selected" : false, + "open_ymd" : "", + "name" : "2600302", + "pref_name" : "東京都", + "shared_name" : "2600302", + "lat" : 35.650603000000004, + "y" : -356506.03, + "x" : 1396843.19 + }, + "position" : { + "x" : 1396843.19, + "y" : -356506.03 + }, + "selected" : false + }, { + "data" : { + "id" : "5742", + "station_name" : "二子玉川", + "close_ymd" : "", + "lon" : 139.626685, + "post" : "158-0094", + "e_status" : 0, + "SUID" : 5742, + "station_g_cd" : 2600307, + "add" : "世田谷区玉川2-22-13", + "line_cd" : 26003, + "selected" : false, + "open_ymd" : "", + "name" : "2600307", + "pref_name" : "東京都", + "shared_name" : "2600307", + "lat" : 35.611788, + "y" : -356117.87999999995, + "x" : 1396266.85 + }, + "position" : { + "x" : 1396266.85, + "y" : -356117.87999999995 + }, + "selected" : false + }, { + "data" : { + "id" : "5741", + "station_name" : "用賀", + "close_ymd" : "", + "lon" : 139.633928, + "post" : "158-0097", + "e_status" : 0, + "SUID" : 5741, + "station_g_cd" : 2600306, + "add" : "世田谷区用賀2-39", + "line_cd" : 26003, + "selected" : false, + "open_ymd" : "", + "name" : "2600306", + "pref_name" : "東京都", + "shared_name" : "2600306", + "lat" : 35.626436, + "y" : -356264.36, + "x" : 1396339.28 + }, + "position" : { + "x" : 1396339.28, + "y" : -356264.36 + }, + "selected" : false + }, { + "data" : { + "id" : "5699", + "station_name" : "小田急永山", + "close_ymd" : "", + "lon" : 139.44794299999998, + "post" : "206-0025", + "e_status" : 0, + "SUID" : 5699, + "station_g_cd" : 2400207, + "add" : "多摩市永山1丁目", + "line_cd" : 25003, + "selected" : false, + "open_ymd" : "", + "name" : "2500306", + "pref_name" : "東京都", + "shared_name" : "2500306", + "lat" : 35.629971999999995, + "y" : -356299.72, + "x" : 1394479.4299999997 + }, + "position" : { + "x" : 1394479.4299999997, + "y" : -356299.72 + }, + "selected" : false + }, { + "data" : { + "id" : "5700", + "station_name" : "小田急多摩センター", + "close_ymd" : "", + "lon" : 139.424298, + "post" : "206-0033", + "e_status" : 0, + "SUID" : 5700, + "station_g_cd" : 2400208, + "add" : "多摩市落合1丁目", + "line_cd" : 25003, + "selected" : false, + "open_ymd" : "", + "name" : "2500307", + "pref_name" : "東京都", + "shared_name" : "2500307", + "lat" : 35.624902, + "y" : -356249.01999999996, + "x" : 1394242.98 + }, + "position" : { + "x" : 1394242.98, + "y" : -356249.01999999996 + }, + "selected" : false + }, { + "data" : { + "id" : "5706", + "station_name" : "学芸大学", + "close_ymd" : "", + "lon" : 139.68522, + "post" : "152-0004", + "e_status" : 0, + "SUID" : 5706, + "station_g_cd" : 2600105, + "add" : "目黒区鷹番3-2-1", + "line_cd" : 26001, + "selected" : false, + "open_ymd" : "", + "name" : "2600105", + "pref_name" : "東京都", + "shared_name" : "2600105", + "lat" : 35.628786, + "y" : -356287.86, + "x" : 1396852.2 + }, + "position" : { + "x" : 1396852.2, + "y" : -356287.86 + }, + "selected" : false + }, { + "data" : { + "id" : "5705", + "station_name" : "祐天寺", + "close_ymd" : "", + "lon" : 139.69075800000002, + "post" : "153-0052", + "e_status" : 0, + "SUID" : 5705, + "station_g_cd" : 2600104, + "add" : "目黒区祐天寺2-13-3", + "line_cd" : 26001, + "selected" : false, + "open_ymd" : "", + "name" : "2600104", + "pref_name" : "東京都", + "shared_name" : "2600104", + "lat" : 35.637163, + "y" : -356371.63, + "x" : 1396907.58 + }, + "position" : { + "x" : 1396907.58, + "y" : -356371.63 + }, + "selected" : false + }, { + "data" : { + "id" : "5708", + "station_name" : "自由が丘", + "close_ymd" : "", + "lon" : 139.66866399999998, + "post" : "152-0035", + "e_status" : 0, + "SUID" : 5708, + "station_g_cd" : 2600107, + "add" : "目黒区自由が丘1-30-1", + "line_cd" : 26001, + "selected" : false, + "open_ymd" : "", + "name" : "2600107", + "pref_name" : "東京都", + "shared_name" : "2600107", + "lat" : 35.607224, + "y" : -356072.24000000005, + "x" : 1396686.64 + }, + "position" : { + "x" : 1396686.64, + "y" : -356072.24000000005 + }, + "selected" : false + }, { + "data" : { + "id" : "5707", + "station_name" : "都立大学", + "close_ymd" : "", + "lon" : 139.676393, + "post" : "152-0031", + "e_status" : 0, + "SUID" : 5707, + "station_g_cd" : 2600106, + "add" : "目黒区中根1-5-1", + "line_cd" : 26001, + "selected" : false, + "open_ymd" : "", + "name" : "2600106", + "pref_name" : "東京都", + "shared_name" : "2600106", + "lat" : 35.617835, + "y" : -356178.35, + "x" : 1396763.93 + }, + "position" : { + "x" : 1396763.93, + "y" : -356178.35 + }, + "selected" : false + }, { + "data" : { + "id" : "5702", + "station_name" : "渋谷", + "close_ymd" : "", + "lon" : 139.702417, + "post" : "-", + "e_status" : 0, + "SUID" : 5702, + "station_g_cd" : 1130205, + "add" : "東京都渋谷区渋谷二丁目24-1", + "line_cd" : 26001, + "selected" : false, + "open_ymd" : "", + "name" : "2600101", + "pref_name" : "東京都", + "shared_name" : "2600101", + "lat" : 35.659545, + "y" : -356595.45, + "x" : 1397024.17 + }, + "position" : { + "x" : 1397024.17, + "y" : -356595.45 + }, + "selected" : false + }, { + "data" : { + "id" : "5701", + "station_name" : "唐木田", + "close_ymd" : "", + "lon" : 139.411622, + "post" : "206-0033", + "e_status" : 0, + "SUID" : 5701, + "station_g_cd" : 2500308, + "add" : "多摩市落合", + "line_cd" : 25003, + "selected" : false, + "open_ymd" : "", + "name" : "2500308", + "pref_name" : "東京都", + "shared_name" : "2500308", + "lat" : 35.616671999999994, + "y" : -356166.7199999999, + "x" : 1394116.22 + }, + "position" : { + "x" : 1394116.22, + "y" : -356166.7199999999 + }, + "selected" : false + }, { + "data" : { + "id" : "5704", + "station_name" : "中目黒", + "close_ymd" : "", + "lon" : 139.698621, + "post" : "153-0051", + "e_status" : 0, + "SUID" : 5704, + "station_g_cd" : 2600103, + "add" : "目黒区上目黒3-4-1", + "line_cd" : 26001, + "selected" : false, + "open_ymd" : "", + "name" : "2600103", + "pref_name" : "東京都", + "shared_name" : "2600103", + "lat" : 35.643854, + "y" : -356438.54, + "x" : 1396986.21 + }, + "position" : { + "x" : 1396986.21, + "y" : -356438.54 + }, + "selected" : false + }, { + "data" : { + "id" : "5703", + "station_name" : "代官山", + "close_ymd" : "", + "lon" : 139.703284, + "post" : "150-0034", + "e_status" : 0, + "SUID" : 5703, + "station_g_cd" : 2600102, + "add" : "渋谷区代官山町19-4", + "line_cd" : 26001, + "selected" : false, + "open_ymd" : "", + "name" : "2600102", + "pref_name" : "東京都", + "shared_name" : "2600102", + "lat" : 35.648193, + "y" : -356481.93, + "x" : 1397032.8399999999 + }, + "position" : { + "x" : 1397032.8399999999, + "y" : -356481.93 + }, + "selected" : false + }, { + "data" : { + "id" : "5710", + "station_name" : "多摩川", + "close_ymd" : "", + "lon" : 139.668723, + "post" : "145-0071", + "e_status" : 0, + "SUID" : 5710, + "station_g_cd" : 2600109, + "add" : "大田区田園調布1-53-8", + "line_cd" : 26001, + "selected" : false, + "open_ymd" : "", + "name" : "2600109", + "pref_name" : "東京都", + "shared_name" : "2600109", + "lat" : 35.589591, + "y" : -355895.91, + "x" : 1396687.23 + }, + "position" : { + "x" : 1396687.23, + "y" : -355895.91 + }, + "selected" : false + }, { + "data" : { + "id" : "5709", + "station_name" : "田園調布", + "close_ymd" : "", + "lon" : 139.667356, + "post" : "145-0071", + "e_status" : 0, + "SUID" : 5709, + "station_g_cd" : 2600108, + "add" : "大田区田園調布3-25-18", + "line_cd" : 26001, + "selected" : false, + "open_ymd" : "", + "name" : "2600108", + "pref_name" : "東京都", + "shared_name" : "2600108", + "lat" : 35.596815, + "y" : -355968.15, + "x" : 1396673.56 + }, + "position" : { + "x" : 1396673.56, + "y" : -355968.15 + }, + "selected" : false + }, { + "data" : { + "id" : "5655", + "station_name" : "玉川学園前", + "close_ymd" : "", + "lon" : 139.46338799999998, + "post" : "194-0041", + "e_status" : 0, + "SUID" : 5655, + "station_g_cd" : 2500126, + "add" : "町田市玉川学園2丁目", + "line_cd" : 25001, + "selected" : false, + "open_ymd" : "", + "name" : "2500126", + "pref_name" : "東京都", + "shared_name" : "2500126", + "lat" : 35.563486, + "y" : -355634.86, + "x" : 1394633.88 + }, + "position" : { + "x" : 1394633.88, + "y" : -355634.86 + }, + "selected" : false + }, { + "data" : { + "id" : "5656", + "station_name" : "町田", + "close_ymd" : "", + "lon" : 139.44523600000002, + "post" : "194-0013", + "e_status" : 0, + "SUID" : 5656, + "station_g_cd" : 1130611, + "add" : "町田市原町田1丁目", + "line_cd" : 25001, + "selected" : false, + "open_ymd" : "", + "name" : "2500127", + "pref_name" : "東京都", + "shared_name" : "2500127", + "lat" : 35.544222, + "y" : -355442.22, + "x" : 1394452.3600000003 + }, + "position" : { + "x" : 1394452.3600000003, + "y" : -355442.22 + }, + "selected" : false + }, { + "data" : { + "id" : "5654", + "station_name" : "鶴川", + "close_ymd" : "", + "lon" : 139.481759, + "post" : "195-0053", + "e_status" : 0, + "SUID" : 5654, + "station_g_cd" : 2500125, + "add" : "町田市能ケ谷町", + "line_cd" : 25001, + "selected" : false, + "open_ymd" : "", + "name" : "2500125", + "pref_name" : "東京都", + "shared_name" : "2500125", + "lat" : 35.583077, + "y" : -355830.77, + "x" : 1394817.59 + }, + "position" : { + "x" : 1394817.59, + "y" : -355830.77 + }, + "selected" : false + }, { + "data" : { + "id" : "8148", + "station_name" : "大塚・帝京大学", + "close_ymd" : "", + "lon" : 139.416461, + "post" : "192-0352", + "e_status" : 0, + "SUID" : 8148, + "station_g_cd" : 9933403, + "add" : "八王子市大塚1473", + "line_cd" : 99334, + "selected" : false, + "open_ymd" : "", + "name" : "9933403", + "pref_name" : "東京都", + "shared_name" : "9933403", + "lat" : 35.636878, + "y" : -356368.78, + "x" : 1394164.6099999999 + }, + "position" : { + "x" : 1394164.6099999999, + "y" : -356368.78 + }, + "selected" : false + }, { + "data" : { + "id" : "8147", + "station_name" : "松が谷", + "close_ymd" : "", + "lon" : 139.422201, + "post" : "192-0354", + "e_status" : 0, + "SUID" : 8147, + "station_g_cd" : 9933402, + "add" : "八王子市松が谷40", + "line_cd" : 99334, + "selected" : false, + "open_ymd" : "", + "name" : "9933402", + "pref_name" : "東京都", + "shared_name" : "9933402", + "lat" : 35.63169, + "y" : -356316.89999999997, + "x" : 1394222.01 + }, + "position" : { + "x" : 1394222.01, + "y" : -356316.89999999997 + }, + "selected" : false + }, { + "data" : { + "id" : "8146", + "station_name" : "多摩センター", + "close_ymd" : "", + "lon" : 139.422782, + "post" : "206-0033", + "e_status" : 0, + "SUID" : 8146, + "station_g_cd" : 2400208, + "add" : "多摩市落合1-48-1", + "line_cd" : 99334, + "selected" : false, + "open_ymd" : "", + "name" : "9933401", + "pref_name" : "東京都", + "shared_name" : "9933401", + "lat" : 35.623723999999996, + "y" : -356237.23999999993, + "x" : 1394227.82 + }, + "position" : { + "x" : 1394227.82, + "y" : -356237.23999999993 + }, + "selected" : false + }, { + "data" : { + "id" : "7783", + "station_name" : "新御徒町", + "close_ymd" : "", + "lon" : 139.781958, + "post" : "111-0041", + "e_status" : 0, + "SUID" : 7783, + "station_g_cd" : 9930111, + "add" : "台東区元浅草1-5-2", + "line_cd" : 99309, + "selected" : false, + "open_ymd" : "", + "name" : "9930902", + "pref_name" : "東京都", + "shared_name" : "9930902", + "lat" : 35.707045, + "y" : -357070.45, + "x" : 1397819.58 + }, + "position" : { + "x" : 1397819.58, + "y" : -357070.45 + }, + "selected" : false + }, { + "data" : { + "id" : "7784", + "station_name" : "浅草", + "close_ymd" : "", + "lon" : 139.792389, + "post" : "", + "e_status" : 0, + "SUID" : 7784, + "station_g_cd" : 9930903, + "add" : "東京都台東区", + "line_cd" : 99309, + "selected" : false, + "open_ymd" : "", + "name" : "9930903", + "pref_name" : "東京都", + "shared_name" : "9930903", + "lat" : 35.713817, + "y" : -357138.17, + "x" : 1397923.89 + }, + "position" : { + "x" : 1397923.89, + "y" : -357138.17 + }, + "selected" : false + }, { + "data" : { + "id" : "7782", + "station_name" : "秋葉原", + "close_ymd" : "", + "lon" : 139.774273, + "post" : "", + "e_status" : 0, + "SUID" : 7782, + "station_g_cd" : 1130222, + "add" : "東京都千代田区", + "line_cd" : 99309, + "selected" : false, + "open_ymd" : "", + "name" : "9930901", + "pref_name" : "東京都", + "shared_name" : "9930901", + "lat" : 35.698889, + "y" : -356988.89, + "x" : 1397742.73 + }, + "position" : { + "x" : 1397742.73, + "y" : -356988.89 + }, + "selected" : false + }, { + "data" : { + "id" : "7787", + "station_name" : "青井", + "close_ymd" : "", + "lon" : 139.82038, + "post" : "120-0012", + "e_status" : 0, + "SUID" : 7787, + "station_g_cd" : 9930906, + "add" : "足立区青井三丁目", + "line_cd" : 99309, + "selected" : false, + "open_ymd" : "", + "name" : "9930906", + "pref_name" : "東京都", + "shared_name" : "9930906", + "lat" : 35.771782, + "y" : -357717.82, + "x" : 1398203.8 + }, + "position" : { + "x" : 1398203.8, + "y" : -357717.82 + }, + "selected" : false + }, { + "data" : { + "id" : "7788", + "station_name" : "六町", + "close_ymd" : "", + "lon" : 139.82181599999998, + "post" : "121-0073", + "e_status" : 0, + "SUID" : 7788, + "station_g_cd" : 9930907, + "add" : "足立区六町四丁目", + "line_cd" : 99309, + "selected" : false, + "open_ymd" : "", + "name" : "9930907", + "pref_name" : "東京都", + "shared_name" : "9930907", + "lat" : 35.784963, + "y" : -357849.63, + "x" : 1398218.16 + }, + "position" : { + "x" : 1398218.16, + "y" : -357849.63 + }, + "selected" : false + }, { + "data" : { + "id" : "7785", + "station_name" : "南千住", + "close_ymd" : "", + "lon" : 139.79878300000001, + "post" : "116-0003", + "e_status" : 0, + "SUID" : 7785, + "station_g_cd" : 1132004, + "add" : "荒川区南千住4丁目", + "line_cd" : 99309, + "selected" : false, + "open_ymd" : "", + "name" : "9930904", + "pref_name" : "東京都", + "shared_name" : "9930904", + "lat" : 35.732413, + "y" : -357324.13, + "x" : 1397987.83 + }, + "position" : { + "x" : 1397987.83, + "y" : -357324.13 + }, + "selected" : false + }, { + "data" : { + "id" : "7786", + "station_name" : "北千住", + "close_ymd" : "", + "lon" : 139.805092, + "post" : "120-0026", + "e_status" : 0, + "SUID" : 7786, + "station_g_cd" : 1132005, + "add" : "足立区千住旭町", + "line_cd" : 99309, + "selected" : false, + "open_ymd" : "", + "name" : "9930905", + "pref_name" : "東京都", + "shared_name" : "9930905", + "lat" : 35.74949, + "y" : -357494.9, + "x" : 1398050.92 + }, + "position" : { + "x" : 1398050.92, + "y" : -357494.9 + }, + "selected" : false + }, { + "data" : { + "id" : "7813", + "station_name" : "お台場海浜公園", + "close_ymd" : "", + "lon" : 139.778607, + "post" : "135-0091", + "e_status" : 0, + "SUID" : 7813, + "station_g_cd" : 9931106, + "add" : "港区台場2-3", + "line_cd" : 99311, + "selected" : false, + "open_ymd" : "", + "name" : "9931106", + "pref_name" : "東京都", + "shared_name" : "9931106", + "lat" : 35.629813, + "y" : -356298.13, + "x" : 1397786.0699999998 + }, + "position" : { + "x" : 1397786.0699999998, + "y" : -356298.13 + }, + "selected" : false + }, { + "data" : { + "id" : "7814", + "station_name" : "台場", + "close_ymd" : "", + "lon" : 139.771435, + "post" : "135-0091", + "e_status" : 0, + "SUID" : 7814, + "station_g_cd" : 9931107, + "add" : "港区台場2-6", + "line_cd" : 99311, + "selected" : false, + "open_ymd" : "", + "name" : "9931107", + "pref_name" : "東京都", + "shared_name" : "9931107", + "lat" : 35.625908, + "y" : -356259.08, + "x" : 1397714.3499999999 + }, + "position" : { + "x" : 1397714.3499999999, + "y" : -356259.08 + }, + "selected" : false + }, { + "data" : { + "id" : "7815", + "station_name" : "船の科学館", + "close_ymd" : "", + "lon" : 139.773157, + "post" : "135-0064", + "e_status" : 0, + "SUID" : 7815, + "station_g_cd" : 9931108, + "add" : "江東区青海1", + "line_cd" : 99311, + "selected" : false, + "open_ymd" : "", + "name" : "9931108", + "pref_name" : "東京都", + "shared_name" : "9931108", + "lat" : 35.621462, + "y" : -356214.62, + "x" : 1397731.57 + }, + "position" : { + "x" : 1397731.57, + "y" : -356214.62 + }, + "selected" : false + }, { + "data" : { + "id" : "7816", + "station_name" : "テレコムセンター", + "close_ymd" : "", + "lon" : 139.779327, + "post" : "135-0064", + "e_status" : 0, + "SUID" : 7816, + "station_g_cd" : 9931109, + "add" : "江東区青海2-29", + "line_cd" : 99311, + "selected" : false, + "open_ymd" : "", + "name" : "9931109", + "pref_name" : "東京都", + "shared_name" : "9931109", + "lat" : 35.617593, + "y" : -356175.93, + "x" : 1397793.27 + }, + "position" : { + "x" : 1397793.27, + "y" : -356175.93 + }, + "selected" : false + }, { + "data" : { + "id" : "7817", + "station_name" : "青海", + "close_ymd" : "", + "lon" : 139.781132, + "post" : "135-0064", + "e_status" : 0, + "SUID" : 7817, + "station_g_cd" : 9931110, + "add" : "江東区青海1", + "line_cd" : 99311, + "selected" : false, + "open_ymd" : "", + "name" : "9931110", + "pref_name" : "東京都", + "shared_name" : "9931110", + "lat" : 35.62467, + "y" : -356246.7, + "x" : 1397811.32 + }, + "position" : { + "x" : 1397811.32, + "y" : -356246.7 + }, + "selected" : false + }, { + "data" : { + "id" : "7818", + "station_name" : "国際展示場正門", + "close_ymd" : "", + "lon" : 139.791228, + "post" : "135-0063", + "e_status" : 0, + "SUID" : 7818, + "station_g_cd" : 9931111, + "add" : "江東区有明3-1", + "line_cd" : 99311, + "selected" : false, + "open_ymd" : "", + "name" : "9931111", + "pref_name" : "東京都", + "shared_name" : "9931111", + "lat" : 35.630158, + "y" : -356301.58, + "x" : 1397912.2799999998 + }, + "position" : { + "x" : 1397912.2799999998, + "y" : -356301.58 + }, + "selected" : false + }, { + "data" : { + "id" : "7819", + "station_name" : "有明", + "close_ymd" : "", + "lon" : 139.79326899999998, + "post" : "135-0063", + "e_status" : 0, + "SUID" : 7819, + "station_g_cd" : 9931112, + "add" : "江東区有明2-5", + "line_cd" : 99311, + "selected" : false, + "open_ymd" : "", + "name" : "9931112", + "pref_name" : "東京都", + "shared_name" : "9931112", + "lat" : 35.634596, + "y" : -356345.96, + "x" : 1397932.6899999997 + }, + "position" : { + "x" : 1397932.6899999997, + "y" : -356345.96 + }, + "selected" : false + }, { + "data" : { + "id" : "7820", + "station_name" : "有明テニスの森", + "close_ymd" : "", + "lon" : 139.78888, + "post" : "135-0063", + "e_status" : 0, + "SUID" : 7820, + "station_g_cd" : 9931113, + "add" : "江東区有明1丁目", + "line_cd" : 99311, + "selected" : false, + "open_ymd" : "", + "name" : "9931113", + "pref_name" : "東京都", + "shared_name" : "9931113", + "lat" : 35.639964, + "y" : -356399.64, + "x" : 1397888.8 + }, + "position" : { + "x" : 1397888.8, + "y" : -356399.64 + }, + "selected" : false + }, { + "data" : { + "id" : "7821", + "station_name" : "市場前", + "close_ymd" : "", + "lon" : 139.78564, + "post" : "135-0061", + "e_status" : 0, + "SUID" : 7821, + "station_g_cd" : 9931114, + "add" : "江東区豊洲6丁目", + "line_cd" : 99311, + "selected" : false, + "open_ymd" : "", + "name" : "9931114", + "pref_name" : "東京都", + "shared_name" : "9931114", + "lat" : 35.645684, + "y" : -356456.84, + "x" : 1397856.4 + }, + "position" : { + "x" : 1397856.4, + "y" : -356456.84 + }, + "selected" : false + }, { + "data" : { + "id" : "7822", + "station_name" : "新豊洲", + "close_ymd" : "", + "lon" : 139.789996, + "post" : "135-0061", + "e_status" : 0, + "SUID" : 7822, + "station_g_cd" : 9931115, + "add" : "江東区豊洲6丁目", + "line_cd" : 99311, + "selected" : false, + "open_ymd" : "", + "name" : "9931115", + "pref_name" : "東京都", + "shared_name" : "9931115", + "lat" : 35.648718, + "y" : -356487.18000000005, + "x" : 1397899.96 + }, + "position" : { + "x" : 1397899.96, + "y" : -356487.18000000005 + }, + "selected" : false + }, { + "data" : { + "id" : "7823", + "station_name" : "豊洲", + "close_ymd" : "", + "lon" : 139.795414, + "post" : "", + "e_status" : 0, + "SUID" : 7823, + "station_g_cd" : 2800622, + "add" : "東京都江東区豊洲", + "line_cd" : 99311, + "selected" : false, + "open_ymd" : "", + "name" : "9931116", + "pref_name" : "東京都", + "shared_name" : "9931116", + "lat" : 35.653791999999996, + "y" : -356537.92, + "x" : 1397954.14 + }, + "position" : { + "x" : 1397954.14, + "y" : -356537.92 + }, + "selected" : false + }, { + "data" : { + "id" : "7808", + "station_name" : "新橋", + "close_ymd" : "", + "lon" : 139.75964399999998, + "post" : "", + "e_status" : 0, + "SUID" : 7808, + "station_g_cd" : 1130102, + "add" : "東京都港区東新橋一丁目5-13", + "line_cd" : 99311, + "selected" : false, + "open_ymd" : "", + "name" : "9931101", + "pref_name" : "東京都", + "shared_name" : "9931101", + "lat" : 35.665503, + "y" : -356655.03, + "x" : 1397596.4399999997 + }, + "position" : { + "x" : 1397596.4399999997, + "y" : -356655.03 + }, + "selected" : false + }, { + "data" : { + "id" : "7810", + "station_name" : "竹芝", + "close_ymd" : "", + "lon" : 139.76203700000002, + "post" : "105-0022", + "e_status" : 0, + "SUID" : 7810, + "station_g_cd" : 9931103, + "add" : "港区海岸1-13-10", + "line_cd" : 99311, + "selected" : false, + "open_ymd" : "", + "name" : "9931103", + "pref_name" : "東京都", + "shared_name" : "9931103", + "lat" : 35.654099, + "y" : -356540.99000000005, + "x" : 1397620.37 + }, + "position" : { + "x" : 1397620.37, + "y" : -356540.99000000005 + }, + "selected" : false + }, { + "data" : { + "id" : "7809", + "station_name" : "汐留", + "close_ymd" : "", + "lon" : 139.759985, + "post" : "105-0021", + "e_status" : 0, + "SUID" : 7809, + "station_g_cd" : 9930120, + "add" : "港区東新橋1丁目5", + "line_cd" : 99311, + "selected" : false, + "open_ymd" : "", + "name" : "9931102", + "pref_name" : "東京都", + "shared_name" : "9931102", + "lat" : 35.662871, + "y" : -356628.71, + "x" : 1397599.85 + }, + "position" : { + "x" : 1397599.85, + "y" : -356628.71 + }, + "selected" : false + }, { + "data" : { + "id" : "7812", + "station_name" : "芝浦ふ頭", + "close_ymd" : "", + "lon" : 139.757852, + "post" : "108-0022", + "e_status" : 0, + "SUID" : 7812, + "station_g_cd" : 9931105, + "add" : "港区海岸3-22-12", + "line_cd" : 99311, + "selected" : false, + "open_ymd" : "", + "name" : "9931105", + "pref_name" : "東京都", + "shared_name" : "9931105", + "lat" : 35.641773, + "y" : -356417.73, + "x" : 1397578.5200000003 + }, + "position" : { + "x" : 1397578.5200000003, + "y" : -356417.73 + }, + "selected" : false + }, { + "data" : { + "id" : "7811", + "station_name" : "日の出", + "close_ymd" : "", + "lon" : 139.75906, + "post" : "105-0022", + "e_status" : 0, + "SUID" : 7811, + "station_g_cd" : 9931104, + "add" : "港区海岸2-7-68", + "line_cd" : 99311, + "selected" : false, + "open_ymd" : "", + "name" : "9931104", + "pref_name" : "東京都", + "shared_name" : "9931104", + "lat" : 35.649136, + "y" : -356491.36, + "x" : 1397590.6 + }, + "position" : { + "x" : 1397590.6, + "y" : -356491.36 + }, + "selected" : false + }, { + "data" : { + "id" : "7723", + "station_name" : "舎人", + "close_ymd" : "", + "lon" : 139.770108, + "post" : "121-0831", + "e_status" : 0, + "SUID" : 7723, + "station_g_cd" : 9934212, + "add" : "足立区舎人1-16-15", + "line_cd" : 99342, + "selected" : false, + "open_ymd" : "", + "name" : "9934212", + "pref_name" : "東京都", + "shared_name" : "9934212", + "lat" : 35.8057, + "y" : -358057.0, + "x" : 1397701.0799999998 + }, + "position" : { + "x" : 1397701.0799999998, + "y" : -358057.0 + }, + "selected" : false + }, { + "data" : { + "id" : "7724", + "station_name" : "見沼代親水公園", + "close_ymd" : "", + "lon" : 139.77071899999999, + "post" : "121-0831", + "e_status" : 0, + "SUID" : 7724, + "station_g_cd" : 9934213, + "add" : "足立区舎人2-21-13", + "line_cd" : 99342, + "selected" : false, + "open_ymd" : "", + "name" : "9934213", + "pref_name" : "東京都", + "shared_name" : "9934213", + "lat" : 35.814544, + "y" : -358145.44, + "x" : 1397707.19 + }, + "position" : { + "x" : 1397707.19, + "y" : -358145.44 + }, + "selected" : false + }, { + "data" : { + "id" : "7721", + "station_name" : "谷在家", + "close_ymd" : "", + "lon" : 139.770043, + "post" : "123-0863", + "e_status" : 0, + "SUID" : 7721, + "station_g_cd" : 9934210, + "add" : "足立区谷在家3-20-23", + "line_cd" : 99342, + "selected" : false, + "open_ymd" : "", + "name" : "9934210", + "pref_name" : "東京都", + "shared_name" : "9934210", + "lat" : 35.788774, + "y" : -357887.74, + "x" : 1397700.43 + }, + "position" : { + "x" : 1397700.43, + "y" : -357887.74 + }, + "selected" : false + }, { + "data" : { + "id" : "7722", + "station_name" : "舎人公園", + "close_ymd" : "", + "lon" : 139.770183, + "post" : "121-0837", + "e_status" : 0, + "SUID" : 7722, + "station_g_cd" : 9934211, + "add" : "足立区舎人公園1-10", + "line_cd" : 99342, + "selected" : false, + "open_ymd" : "", + "name" : "9934211", + "pref_name" : "東京都", + "shared_name" : "9934211", + "lat" : 35.79623, + "y" : -357962.3, + "x" : 1397701.83 + }, + "position" : { + "x" : 1397701.83, + "y" : -357962.3 + }, + "selected" : false + }, { + "data" : { + "id" : "7719", + "station_name" : "江北", + "close_ymd" : "", + "lon" : 139.770306, + "post" : "123-0872", + "e_status" : 0, + "SUID" : 7719, + "station_g_cd" : 9934208, + "add" : "足立区江北4-30-27", + "line_cd" : 99342, + "selected" : false, + "open_ymd" : "", + "name" : "9934208", + "pref_name" : "東京都", + "shared_name" : "9934208", + "lat" : 35.774021000000005, + "y" : -357740.21, + "x" : 1397703.06 + }, + "position" : { + "x" : 1397703.06, + "y" : -357740.21 + }, + "selected" : false + }, { + "data" : { + "id" : "7720", + "station_name" : "西新井大師西", + "close_ymd" : "", + "lon" : 139.770094, + "post" : "123-0872", + "e_status" : 0, + "SUID" : 7720, + "station_g_cd" : 9934209, + "add" : "足立区江北6-30-23", + "line_cd" : 99342, + "selected" : false, + "open_ymd" : "", + "name" : "9934209", + "pref_name" : "東京都", + "shared_name" : "9934209", + "lat" : 35.781504999999996, + "y" : -357815.04999999993, + "x" : 1397700.94 + }, + "position" : { + "x" : 1397700.94, + "y" : -357815.04999999993 + }, + "selected" : false + }, { + "data" : { + "id" : "7717", + "station_name" : "扇大橋", + "close_ymd" : "", + "lon" : 139.77080800000002, + "post" : "123-0873", + "e_status" : 0, + "SUID" : 7717, + "station_g_cd" : 9934206, + "add" : "足立区扇2-25-7", + "line_cd" : 99342, + "selected" : false, + "open_ymd" : "", + "name" : "9934206", + "pref_name" : "東京都", + "shared_name" : "9934206", + "lat" : 35.763897, + "y" : -357638.97, + "x" : 1397708.08 + }, + "position" : { + "x" : 1397708.08, + "y" : -357638.97 + }, + "selected" : false + }, { + "data" : { + "id" : "7718", + "station_name" : "高野", + "close_ymd" : "", + "lon" : 139.770679, + "post" : "123-0873", + "e_status" : 0, + "SUID" : 7718, + "station_g_cd" : 9934207, + "add" : "足立区扇2-45-1", + "line_cd" : 99342, + "selected" : false, + "open_ymd" : "", + "name" : "9934207", + "pref_name" : "東京都", + "shared_name" : "9934207", + "lat" : 35.768359000000004, + "y" : -357683.59, + "x" : 1397706.79 + }, + "position" : { + "x" : 1397706.79, + "y" : -357683.59 + }, + "selected" : false + }, { + "data" : { + "id" : "7708", + "station_name" : "鬼子母神前", + "close_ymd" : "", + "lon" : 139.714916, + "post" : "171-0032", + "e_status" : 0, + "SUID" : 7708, + "station_g_cd" : 2801010, + "add" : "豊島区雑司が谷2", + "line_cd" : 99305, + "selected" : false, + "open_ymd" : "", + "name" : "9930527", + "pref_name" : "東京都", + "shared_name" : "9930527", + "lat" : 35.720403000000005, + "y" : -357204.03, + "x" : 1397149.16 + }, + "position" : { + "x" : 1397149.16, + "y" : -357204.03 + }, + "selected" : false + }, { + "data" : { + "id" : "7707", + "station_name" : "都電雑司ヶ谷", + "close_ymd" : "", + "lon" : 139.718006, + "post" : "", + "e_status" : 0, + "SUID" : 7707, + "station_g_cd" : 9930526, + "add" : "東京都豊島区南池袋", + "line_cd" : 99305, + "selected" : false, + "open_ymd" : "", + "name" : "9930526", + "pref_name" : "東京都", + "shared_name" : "9930526", + "lat" : 35.724261, + "y" : -357242.61, + "x" : 1397180.06 + }, + "position" : { + "x" : 1397180.06, + "y" : -357242.61 + }, + "selected" : false + }, { + "data" : { + "id" : "7706", + "station_name" : "東池袋四丁目", + "close_ymd" : "", + "lon" : 139.720012, + "post" : "170-0013", + "e_status" : 0, + "SUID" : 7706, + "station_g_cd" : 2800610, + "add" : "豊島区東池袋5", + "line_cd" : 99305, + "selected" : false, + "open_ymd" : "", + "name" : "9930525", + "pref_name" : "東京都", + "shared_name" : "9930525", + "lat" : 35.72528, + "y" : -357252.8, + "x" : 1397200.1199999999 + }, + "position" : { + "x" : 1397200.1199999999, + "y" : -357252.8 + }, + "selected" : false + }, { + "data" : { + "id" : "7705", + "station_name" : "向原", + "close_ymd" : "", + "lon" : 139.724894, + "post" : "170-0005", + "e_status" : 0, + "SUID" : 7705, + "station_g_cd" : 9930524, + "add" : "豊島区南大塚3", + "line_cd" : 99305, + "selected" : false, + "open_ymd" : "", + "name" : "9930524", + "pref_name" : "東京都", + "shared_name" : "9930524", + "lat" : 35.728938, + "y" : -357289.38, + "x" : 1397248.9400000002 + }, + "position" : { + "x" : 1397248.9400000002, + "y" : -357289.38 + }, + "selected" : false + }, { + "data" : { + "id" : "7704", + "station_name" : "大塚駅前", + "close_ymd" : "", + "lon" : 139.729593, + "post" : "170-0005", + "e_status" : 0, + "SUID" : 7704, + "station_g_cd" : 1130213, + "add" : "豊島区南大塚3", + "line_cd" : 99305, + "selected" : false, + "open_ymd" : "", + "name" : "9930523", + "pref_name" : "東京都", + "shared_name" : "9930523", + "lat" : 35.732082, + "y" : -357320.82, + "x" : 1397295.93 + }, + "position" : { + "x" : 1397295.93, + "y" : -357320.82 + }, + "selected" : false + }, { + "data" : { + "id" : "7703", + "station_name" : "巣鴨新田", + "close_ymd" : "", + "lon" : 139.727769, + "post" : "170-0001", + "e_status" : 0, + "SUID" : 7703, + "station_g_cd" : 9930522, + "add" : "豊島区西巣鴨1", + "line_cd" : 99305, + "selected" : false, + "open_ymd" : "", + "name" : "9930522", + "pref_name" : "東京都", + "shared_name" : "9930522", + "lat" : 35.735488000000004, + "y" : -357354.88000000006, + "x" : 1397277.69 + }, + "position" : { + "x" : 1397277.69, + "y" : -357354.88000000006 + }, + "selected" : false + }, { + "data" : { + "id" : "6078", + "station_name" : "渋谷", + "close_ymd" : "", + "lon" : 139.702417, + "post" : "", + "e_status" : 0, + "SUID" : 6078, + "station_g_cd" : 1130205, + "add" : "東京都渋谷区道玄坂二丁目1-1", + "line_cd" : 28010, + "selected" : false, + "open_ymd" : "", + "name" : "2801016", + "pref_name" : "東京都", + "shared_name" : "2801016", + "lat" : 35.659545, + "y" : -356595.45, + "x" : 1397024.17 + }, + "position" : { + "x" : 1397024.17, + "y" : -356595.45 + }, + "selected" : false + }, { + "data" : { + "id" : "7702", + "station_name" : "庚申塚", + "close_ymd" : "", + "lon" : 139.72974299999998, + "post" : "170-0001", + "e_status" : 0, + "SUID" : 7702, + "station_g_cd" : 9930521, + "add" : "豊島区西巣鴨3", + "line_cd" : 99305, + "selected" : false, + "open_ymd" : "", + "name" : "9930521", + "pref_name" : "東京都", + "shared_name" : "9930521", + "lat" : 35.739563000000004, + "y" : -357395.63000000006, + "x" : 1397297.43 + }, + "position" : { + "x" : 1397297.43, + "y" : -357395.63000000006 + }, + "selected" : false + }, { + "data" : { + "id" : "6077", + "station_name" : "明治神宮前〈原宿〉", + "close_ymd" : "", + "lon" : 139.705367, + "post" : "150-0001", + "e_status" : 0, + "SUID" : 6077, + "station_g_cd" : 1130206, + "add" : "渋谷区神宮前1丁目", + "line_cd" : 28010, + "selected" : false, + "open_ymd" : "", + "name" : "2801015", + "pref_name" : "東京都", + "shared_name" : "2801015", + "lat" : 35.668496999999995, + "y" : -356684.97, + "x" : 1397053.67 + }, + "position" : { + "x" : 1397053.67, + "y" : -356684.97 + }, + "selected" : false + }, { + "data" : { + "id" : "7701", + "station_name" : "新庚申塚", + "close_ymd" : "", + "lon" : 139.730451, + "post" : "170-0001", + "e_status" : 0, + "SUID" : 7701, + "station_g_cd" : 9930520, + "add" : "豊島区西巣鴨4", + "line_cd" : 99305, + "selected" : false, + "open_ymd" : "", + "name" : "9930520", + "pref_name" : "東京都", + "shared_name" : "9930520", + "lat" : 35.741347999999995, + "y" : -357413.4799999999, + "x" : 1397304.5099999998 + }, + "position" : { + "x" : 1397304.5099999998, + "y" : -357413.4799999999 + }, + "selected" : false + }, { + "data" : { + "id" : "7716", + "station_name" : "足立小台", + "close_ymd" : "", + "lon" : 139.77038100000001, + "post" : "120-0046", + "e_status" : 0, + "SUID" : 7716, + "station_g_cd" : 9934205, + "add" : "足立区小台1-20-1", + "line_cd" : 99342, + "selected" : false, + "open_ymd" : "", + "name" : "9934205", + "pref_name" : "東京都", + "shared_name" : "9934205", + "lat" : 35.754658, + "y" : -357546.58, + "x" : 1397703.81 + }, + "position" : { + "x" : 1397703.81, + "y" : -357546.58 + }, + "selected" : false + }, { + "data" : { + "id" : "6076", + "station_name" : "北参道", + "close_ymd" : "", + "lon" : 139.705453, + "post" : "151-0051", + "e_status" : 0, + "SUID" : 6076, + "station_g_cd" : 2801014, + "add" : "渋谷区千駄ヶ谷4丁目", + "line_cd" : 28010, + "selected" : false, + "open_ymd" : "", + "name" : "2801014", + "pref_name" : "東京都", + "shared_name" : "2801014", + "lat" : 35.678459000000004, + "y" : -356784.59, + "x" : 1397054.53 + }, + "position" : { + "x" : 1397054.53, + "y" : -356784.59 + }, + "selected" : false + }, { + "data" : { + "id" : "6075", + "station_name" : "新宿三丁目", + "close_ymd" : "", + "lon" : 139.704828, + "post" : "160-0022", + "e_status" : 0, + "SUID" : 6075, + "station_g_cd" : 2800217, + "add" : "新宿区新宿3-14-1", + "line_cd" : 28010, + "selected" : false, + "open_ymd" : "", + "name" : "2801013", + "pref_name" : "東京都", + "shared_name" : "2801013", + "lat" : 35.690853000000004, + "y" : -356908.53, + "x" : 1397048.28 + }, + "position" : { + "x" : 1397048.28, + "y" : -356908.53 + }, + "selected" : false + }, { + "data" : { + "id" : "7715", + "station_name" : "熊野前", + "close_ymd" : "", + "lon" : 139.76969499999998, + "post" : "116-0012", + "e_status" : 0, + "SUID" : 7715, + "station_g_cd" : 9930509, + "add" : "荒川区東尾久5", + "line_cd" : 99342, + "selected" : false, + "open_ymd" : "", + "name" : "9934204", + "pref_name" : "東京都", + "shared_name" : "9934204", + "lat" : 35.748971999999995, + "y" : -357489.72, + "x" : 1397696.95 + }, + "position" : { + "x" : 1397696.95, + "y" : -357489.72 + }, + "selected" : false + }, { + "data" : { + "id" : "6074", + "station_name" : "東新宿", + "close_ymd" : "", + "lon" : 139.707593, + "post" : "160-0022", + "e_status" : 0, + "SUID" : 6074, + "station_g_cd" : 2801012, + "add" : "新宿区新宿7-27-3", + "line_cd" : 28010, + "selected" : false, + "open_ymd" : "", + "name" : "2801012", + "pref_name" : "東京都", + "shared_name" : "2801012", + "lat" : 35.698915, + "y" : -356989.15, + "x" : 1397075.93 + }, + "position" : { + "x" : 1397075.93, + "y" : -356989.15 + }, + "selected" : false + }, { + "data" : { + "id" : "7714", + "station_name" : "赤土小学校前", + "close_ymd" : "", + "lon" : 139.76898899999998, + "post" : "116-0012", + "e_status" : 0, + "SUID" : 7714, + "station_g_cd" : 9934203, + "add" : "荒川区東尾久4-7-7", + "line_cd" : 99342, + "selected" : false, + "open_ymd" : "", + "name" : "9934203", + "pref_name" : "東京都", + "shared_name" : "9934203", + "lat" : 35.742453999999995, + "y" : -357424.54, + "x" : 1397689.8899999997 + }, + "position" : { + "x" : 1397689.8899999997, + "y" : -357424.54 + }, + "selected" : false + }, { + "data" : { + "id" : "6073", + "station_name" : "西早稲田", + "close_ymd" : "", + "lon" : 139.709101, + "post" : "162-0051", + "e_status" : 0, + "SUID" : 6073, + "station_g_cd" : 2801011, + "add" : "新宿区西早稲田二丁目", + "line_cd" : 28010, + "selected" : false, + "open_ymd" : "", + "name" : "2801011", + "pref_name" : "東京都", + "shared_name" : "2801011", + "lat" : 35.708242, + "y" : -357082.42, + "x" : 1397091.01 + }, + "position" : { + "x" : 1397091.01, + "y" : -357082.42 + }, + "selected" : false + }, { + "data" : { + "id" : "7713", + "station_name" : "西日暮里", + "close_ymd" : "", + "lon" : 139.76685700000002, + "post" : "", + "e_status" : 0, + "SUID" : 7713, + "station_g_cd" : 1130217, + "add" : "東京都荒川区西日暮里五丁目31-7", + "line_cd" : 99342, + "selected" : false, + "open_ymd" : "", + "name" : "9934202", + "pref_name" : "東京都", + "shared_name" : "9934202", + "lat" : 35.731953999999995, + "y" : -357319.5399999999, + "x" : 1397668.57 + }, + "position" : { + "x" : 1397668.57, + "y" : -357319.5399999999 + }, + "selected" : false + }, { + "data" : { + "id" : "6072", + "station_name" : "雑司が谷", + "close_ymd" : "", + "lon" : 139.714795, + "post" : "171-0032", + "e_status" : 0, + "SUID" : 6072, + "station_g_cd" : 2801010, + "add" : "豊島区雑司が谷二丁目", + "line_cd" : 28010, + "selected" : false, + "open_ymd" : "", + "name" : "2801010", + "pref_name" : "東京都", + "shared_name" : "2801010", + "lat" : 35.720233, + "y" : -357202.33, + "x" : 1397147.9500000002 + }, + "position" : { + "x" : 1397147.9500000002, + "y" : -357202.33 + }, + "selected" : false + }, { + "data" : { + "id" : "7712", + "station_name" : "日暮里", + "close_ymd" : "", + "lon" : 139.771287, + "post" : "116-0013", + "e_status" : 0, + "SUID" : 7712, + "station_g_cd" : 1130218, + "add" : "東京都荒川区西日暮里二丁目19-1", + "line_cd" : 99342, + "selected" : false, + "open_ymd" : "1905-04-01", + "name" : "9934201", + "pref_name" : "東京都", + "shared_name" : "9934201", + "lat" : 35.727908, + "y" : -357279.08, + "x" : 1397712.87 + }, + "position" : { + "x" : 1397712.87, + "y" : -357279.08 + }, + "selected" : false + }, { + "data" : { + "id" : "6071", + "station_name" : "池袋", + "close_ymd" : "", + "lon" : 139.708291, + "post" : "", + "e_status" : 0, + "SUID" : 6071, + "station_g_cd" : 1130212, + "add" : "東京都豊島区", + "line_cd" : 28010, + "selected" : false, + "open_ymd" : "", + "name" : "2801009", + "pref_name" : "東京都", + "shared_name" : "2801009", + "lat" : 35.731464, + "y" : -357314.64, + "x" : 1397082.91 + }, + "position" : { + "x" : 1397082.91, + "y" : -357314.64 + }, + "selected" : false + }, { + "data" : { + "id" : "7711", + "station_name" : "早稲田", + "close_ymd" : "", + "lon" : 139.718928, + "post" : "", + "e_status" : 0, + "SUID" : 7711, + "station_g_cd" : 9930530, + "add" : "東京都新宿区", + "line_cd" : 99305, + "selected" : false, + "open_ymd" : "", + "name" : "9930530", + "pref_name" : "東京都", + "shared_name" : "9930530", + "lat" : 35.711847999999996, + "y" : -357118.48, + "x" : 1397189.28 + }, + "position" : { + "x" : 1397189.28, + "y" : -357118.48 + }, + "selected" : false + }, { + "data" : { + "id" : "6070", + "station_name" : "要町", + "close_ymd" : "", + "lon" : 139.698715, + "post" : "", + "e_status" : 0, + "SUID" : 6070, + "station_g_cd" : 2800608, + "add" : "東京都豊島区要町一丁目1-10", + "line_cd" : 28010, + "selected" : false, + "open_ymd" : "", + "name" : "2801008", + "pref_name" : "東京都", + "shared_name" : "2801008", + "lat" : 35.73323, + "y" : -357332.3, + "x" : 1396987.15 + }, + "position" : { + "x" : 1396987.15, + "y" : -357332.3 + }, + "selected" : false + }, { + "data" : { + "id" : "7710", + "station_name" : "面影橋", + "close_ymd" : "", + "lon" : 139.714444, + "post" : "169-0051", + "e_status" : 0, + "SUID" : 7710, + "station_g_cd" : 9930529, + "add" : "新宿区西早稲田3", + "line_cd" : 99305, + "selected" : false, + "open_ymd" : "", + "name" : "9930529", + "pref_name" : "東京都", + "shared_name" : "9930529", + "lat" : 35.712981, + "y" : -357129.81, + "x" : 1397144.44 + }, + "position" : { + "x" : 1397144.44, + "y" : -357129.81 + }, + "selected" : false + }, { + "data" : { + "id" : "6069", + "station_name" : "千川", + "close_ymd" : "", + "lon" : 139.689271, + "post" : "", + "e_status" : 0, + "SUID" : 6069, + "station_g_cd" : 2800607, + "add" : "東京都豊島区要町三丁目10-7", + "line_cd" : 28010, + "selected" : false, + "open_ymd" : "", + "name" : "2801007", + "pref_name" : "東京都", + "shared_name" : "2801007", + "lat" : 35.738229, + "y" : -357382.29, + "x" : 1396892.71 + }, + "position" : { + "x" : 1396892.71, + "y" : -357382.29 + }, + "selected" : false + }, { + "data" : { + "id" : "7709", + "station_name" : "学習院下", + "close_ymd" : "", + "lon" : 139.71247, + "post" : "171-0033", + "e_status" : 0, + "SUID" : 7709, + "station_g_cd" : 9930528, + "add" : "豊島区高田2", + "line_cd" : 99305, + "selected" : false, + "open_ymd" : "", + "name" : "9930528", + "pref_name" : "東京都", + "shared_name" : "9930528", + "lat" : 35.716248, + "y" : -357162.48, + "x" : 1397124.7 + }, + "position" : { + "x" : 1397124.7, + "y" : -357162.48 + }, + "selected" : false + }, { + "data" : { + "id" : "6065", + "station_name" : "地下鉄赤塚", + "close_ymd" : "", + "lon" : 139.644021, + "post" : "", + "e_status" : 0, + "SUID" : 6065, + "station_g_cd" : 2100109, + "add" : "東京都練馬区北町八丁目37-16", + "line_cd" : 28010, + "selected" : false, + "open_ymd" : "", + "name" : "2801003", + "pref_name" : "東京都", + "shared_name" : "2801003", + "lat" : 35.769939, + "y" : -357699.39, + "x" : 1396440.2100000002 + }, + "position" : { + "x" : 1396440.2100000002, + "y" : -357699.39 + }, + "selected" : false + }, { + "data" : { + "id" : "6066", + "station_name" : "平和台", + "close_ymd" : "", + "lon" : 139.653762, + "post" : "", + "e_status" : 0, + "SUID" : 6066, + "station_g_cd" : 2800604, + "add" : "東京都練馬区早宮2-17-48", + "line_cd" : 28010, + "selected" : false, + "open_ymd" : "", + "name" : "2801004", + "pref_name" : "東京都", + "shared_name" : "2801004", + "lat" : 35.757863, + "y" : -357578.63, + "x" : 1396537.62 + }, + "position" : { + "x" : 1396537.62, + "y" : -357578.63 + }, + "selected" : false + }, { + "data" : { + "id" : "6067", + "station_name" : "氷川台", + "close_ymd" : "", + "lon" : 139.66556699999998, + "post" : "", + "e_status" : 0, + "SUID" : 6067, + "station_g_cd" : 2800605, + "add" : "東京都練馬区氷川台三丁目38-18", + "line_cd" : 28010, + "selected" : false, + "open_ymd" : "", + "name" : "2801005", + "pref_name" : "東京都", + "shared_name" : "2801005", + "lat" : 35.74955, + "y" : -357495.5, + "x" : 1396655.67 + }, + "position" : { + "x" : 1396655.67, + "y" : -357495.5 + }, + "selected" : false + }, { + "data" : { + "id" : "6068", + "station_name" : "小竹向原", + "close_ymd" : "", + "lon" : 139.678572, + "post" : "", + "e_status" : 0, + "SUID" : 6068, + "station_g_cd" : 2200301, + "add" : "東京都練馬区小竹町二丁目16-15", + "line_cd" : 28010, + "selected" : false, + "open_ymd" : "", + "name" : "2801006", + "pref_name" : "東京都", + "shared_name" : "2801006", + "lat" : 35.743803, + "y" : -357438.02999999997, + "x" : 1396785.72 + }, + "position" : { + "x" : 1396785.72, + "y" : -357438.02999999997 + }, + "selected" : false + }, { + "data" : { + "id" : "6061", + "station_name" : "白金台", + "close_ymd" : "", + "lon" : 139.726133, + "post" : "108-0071", + "e_status" : 0, + "SUID" : 6061, + "station_g_cd" : 2800918, + "add" : "港区白金台3-2", + "line_cd" : 28009, + "selected" : false, + "open_ymd" : "", + "name" : "2800918", + "pref_name" : "東京都", + "shared_name" : "2800918", + "lat" : 35.637917, + "y" : -356379.17000000004, + "x" : 1397261.33 + }, + "position" : { + "x" : 1397261.33, + "y" : -356379.17000000004 + }, + "selected" : false + }, { + "data" : { + "id" : "6062", + "station_name" : "目黒", + "close_ymd" : "", + "lon" : 139.7155, + "post" : "", + "e_status" : 0, + "SUID" : 6062, + "station_g_cd" : 1130203, + "add" : "東京都品川区上大崎四丁目2-1", + "line_cd" : 28009, + "selected" : false, + "open_ymd" : "", + "name" : "2800919", + "pref_name" : "東京都", + "shared_name" : "2800919", + "lat" : 35.633272, + "y" : -356332.72, + "x" : 1397155.0 + }, + "position" : { + "x" : 1397155.0, + "y" : -356332.72 + }, + "selected" : false + }, { + "data" : { + "id" : "6064", + "station_name" : "地下鉄成増", + "close_ymd" : "", + "lon" : 139.631497, + "post" : "", + "e_status" : 0, + "SUID" : 6064, + "station_g_cd" : 2100110, + "add" : "東京都板橋区成増二丁目11-3", + "line_cd" : 28010, + "selected" : false, + "open_ymd" : "", + "name" : "2801002", + "pref_name" : "東京都", + "shared_name" : "2801002", + "lat" : 35.776557000000004, + "y" : -357765.57000000007, + "x" : 1396314.97 + }, + "position" : { + "x" : 1396314.97, + "y" : -357765.57000000007 + }, + "selected" : false + }, { + "data" : { + "id" : "6057", + "station_name" : "溜池山王", + "close_ymd" : "", + "lon" : 139.741419, + "post" : "100-0014", + "e_status" : 0, + "SUID" : 6057, + "station_g_cd" : 2800114, + "add" : "千代田区永田町2-11-1", + "line_cd" : 28009, + "selected" : false, + "open_ymd" : "", + "name" : "2800914", + "pref_name" : "東京都", + "shared_name" : "2800914", + "lat" : 35.673621000000004, + "y" : -356736.21, + "x" : 1397414.1900000002 + }, + "position" : { + "x" : 1397414.1900000002, + "y" : -356736.21 + }, + "selected" : false + }, { + "data" : { + "id" : "6058", + "station_name" : "六本木一丁目", + "close_ymd" : "", + "lon" : 139.739, + "post" : "106-0032", + "e_status" : 0, + "SUID" : 6058, + "station_g_cd" : 2800915, + "add" : "港区六本木1-4-1", + "line_cd" : 28009, + "selected" : false, + "open_ymd" : "", + "name" : "2800915", + "pref_name" : "東京都", + "shared_name" : "2800915", + "lat" : 35.665595, + "y" : -356655.95, + "x" : 1397390.0 + }, + "position" : { + "x" : 1397390.0, + "y" : -356655.95 + }, + "selected" : false + }, { + "data" : { + "id" : "6059", + "station_name" : "麻布十番", + "close_ymd" : "", + "lon" : 139.737051, + "post" : "106-0045", + "e_status" : 0, + "SUID" : 6059, + "station_g_cd" : 2800916, + "add" : "港区麻布十番4-4-9", + "line_cd" : 28009, + "selected" : false, + "open_ymd" : "", + "name" : "2800916", + "pref_name" : "東京都", + "shared_name" : "2800916", + "lat" : 35.654682, + "y" : -356546.82, + "x" : 1397370.51 + }, + "position" : { + "x" : 1397370.51, + "y" : -356546.82 + }, + "selected" : false + }, { + "data" : { + "id" : "6060", + "station_name" : "白金高輪", + "close_ymd" : "", + "lon" : 139.734104, + "post" : "108-0074", + "e_status" : 0, + "SUID" : 6060, + "station_g_cd" : 2800917, + "add" : "港区高輪1-3-20", + "line_cd" : 28009, + "selected" : false, + "open_ymd" : "", + "name" : "2800917", + "pref_name" : "東京都", + "shared_name" : "2800917", + "lat" : 35.642903000000004, + "y" : -356429.03, + "x" : 1397341.04 + }, + "position" : { + "x" : 1397341.04, + "y" : -356429.03 + }, + "selected" : false + }, { + "data" : { + "id" : "6053", + "station_name" : "飯田橋", + "close_ymd" : "", + "lon" : 139.74366899999998, + "post" : "", + "e_status" : 0, + "SUID" : 6053, + "station_g_cd" : 1131205, + "add" : "東京都新宿区神楽坂一丁目13", + "line_cd" : 28009, + "selected" : false, + "open_ymd" : "", + "name" : "2800910", + "pref_name" : "東京都", + "shared_name" : "2800910", + "lat" : 35.701934, + "y" : -357019.34, + "x" : 1397436.69 + }, + "position" : { + "x" : 1397436.69, + "y" : -357019.34 + }, + "selected" : false + }, { + "data" : { + "id" : "6054", + "station_name" : "市ケ谷", + "close_ymd" : "", + "lon" : 139.736642, + "post" : "", + "e_status" : 0, + "SUID" : 6054, + "station_g_cd" : 1131206, + "add" : "東京都千代田区五番町2-1", + "line_cd" : 28009, + "selected" : false, + "open_ymd" : "", + "name" : "2800911", + "pref_name" : "東京都", + "shared_name" : "2800911", + "lat" : 35.691295000000004, + "y" : -356912.95, + "x" : 1397366.42 + }, + "position" : { + "x" : 1397366.42, + "y" : -356912.95 + }, + "selected" : false + }, { + "data" : { + "id" : "6055", + "station_name" : "四ツ谷", + "close_ymd" : "", + "lon" : 139.72955, + "post" : "160-0004", + "e_status" : 0, + "SUID" : 6055, + "station_g_cd" : 1131102, + "add" : "新宿区四谷1丁目", + "line_cd" : 28009, + "selected" : false, + "open_ymd" : "", + "name" : "2800912", + "pref_name" : "東京都", + "shared_name" : "2800912", + "lat" : 35.686032, + "y" : -356860.31999999995, + "x" : 1397295.5 + }, + "position" : { + "x" : 1397295.5, + "y" : -356860.31999999995 + }, + "selected" : false + }, { + "data" : { + "id" : "6056", + "station_name" : "永田町", + "close_ymd" : "", + "lon" : 139.740258, + "post" : "", + "e_status" : 0, + "SUID" : 6056, + "station_g_cd" : 2800115, + "add" : "東京都千代田区永田町一丁目11-28", + "line_cd" : 28009, + "selected" : false, + "open_ymd" : "", + "name" : "2800913", + "pref_name" : "東京都", + "shared_name" : "2800913", + "lat" : 35.678757, + "y" : -356787.56999999995, + "x" : 1397402.58 + }, + "position" : { + "x" : 1397402.58, + "y" : -356787.56999999995 + }, + "selected" : false + }, { + "data" : { + "id" : "7760", + "station_name" : "赤羽岩淵", + "close_ymd" : "", + "lon" : 139.722103, + "post" : "115-0045", + "e_status" : 0, + "SUID" : 7760, + "station_g_cd" : 2800901, + "add" : "北区赤羽1-52-8", + "line_cd" : 99307, + "selected" : false, + "open_ymd" : "", + "name" : "9930701", + "pref_name" : "東京都", + "shared_name" : "9930701", + "lat" : 35.783417, + "y" : -357834.17, + "x" : 1397221.03 + }, + "position" : { + "x" : 1397221.03, + "y" : -357834.17 + }, + "selected" : false + }, { + "data" : { + "id" : "6050", + "station_name" : "本駒込", + "close_ymd" : "", + "lon" : 139.753828, + "post" : "113-0023", + "e_status" : 0, + "SUID" : 6050, + "station_g_cd" : 2800907, + "add" : "文京区向丘2-37-1", + "line_cd" : 28009, + "selected" : false, + "open_ymd" : "", + "name" : "2800907", + "pref_name" : "東京都", + "shared_name" : "2800907", + "lat" : 35.724154999999996, + "y" : -357241.55, + "x" : 1397538.28 + }, + "position" : { + "x" : 1397538.28, + "y" : -357241.55 + }, + "selected" : false + }, { + "data" : { + "id" : "6049", + "station_name" : "駒込", + "close_ymd" : "", + "lon" : 139.746442, + "post" : "", + "e_status" : 0, + "SUID" : 6049, + "station_g_cd" : 1130215, + "add" : "東京都豊島区駒込二丁目", + "line_cd" : 28009, + "selected" : false, + "open_ymd" : "", + "name" : "2800906", + "pref_name" : "東京都", + "shared_name" : "2800906", + "lat" : 35.736959000000006, + "y" : -357369.5900000001, + "x" : 1397464.42 + }, + "position" : { + "x" : 1397464.42, + "y" : -357369.5900000001 + }, + "selected" : false + }, { + "data" : { + "id" : "6052", + "station_name" : "後楽園", + "close_ymd" : "", + "lon" : 139.75186399999998, + "post" : "112-0003", + "e_status" : 0, + "SUID" : 6052, + "station_g_cd" : 2800204, + "add" : "文京区春日1-2-3", + "line_cd" : 28009, + "selected" : false, + "open_ymd" : "", + "name" : "2800909", + "pref_name" : "東京都", + "shared_name" : "2800909", + "lat" : 35.707898, + "y" : -357078.98, + "x" : 1397518.64 + }, + "position" : { + "x" : 1397518.64, + "y" : -357078.98 + }, + "selected" : false + }, { + "data" : { + "id" : "6051", + "station_name" : "東大前", + "close_ymd" : "", + "lon" : 139.758025, + "post" : "113-0023", + "e_status" : 0, + "SUID" : 6051, + "station_g_cd" : 2800908, + "add" : "文京区向丘1-19-2", + "line_cd" : 28009, + "selected" : false, + "open_ymd" : "", + "name" : "2800908", + "pref_name" : "東京都", + "shared_name" : "2800908", + "lat" : 35.717633, + "y" : -357176.33, + "x" : 1397580.25 + }, + "position" : { + "x" : 1397580.25, + "y" : -357176.33 + }, + "selected" : false + }, { + "data" : { + "id" : "6046", + "station_name" : "王子神谷", + "close_ymd" : "", + "lon" : 139.73593300000002, + "post" : "114-0002", + "e_status" : 0, + "SUID" : 6046, + "station_g_cd" : 2800903, + "add" : "北区王子5-2-11", + "line_cd" : 28009, + "selected" : false, + "open_ymd" : "", + "name" : "2800903", + "pref_name" : "東京都", + "shared_name" : "2800903", + "lat" : 35.765172, + "y" : -357651.72, + "x" : 1397359.33 + }, + "position" : { + "x" : 1397359.33, + "y" : -357651.72 + }, + "selected" : false + }, { + "data" : { + "id" : "6045", + "station_name" : "志茂", + "close_ymd" : "", + "lon" : 139.732599, + "post" : "115-0042", + "e_status" : 0, + "SUID" : 6045, + "station_g_cd" : 2800902, + "add" : "北区志茂2-1-18", + "line_cd" : 28009, + "selected" : false, + "open_ymd" : "", + "name" : "2800902", + "pref_name" : "東京都", + "shared_name" : "2800902", + "lat" : 35.777947999999995, + "y" : -357779.4799999999, + "x" : 1397325.99 + }, + "position" : { + "x" : 1397325.99, + "y" : -357779.4799999999 + }, + "selected" : false + }, { + "data" : { + "id" : "6048", + "station_name" : "西ケ原", + "close_ymd" : "", + "lon" : 139.742322, + "post" : "114-0024", + "e_status" : 0, + "SUID" : 6048, + "station_g_cd" : 2800905, + "add" : "東京都北区西ヶ原二丁目3-8", + "line_cd" : 28009, + "selected" : false, + "open_ymd" : "", + "name" : "2800905", + "pref_name" : "東京都", + "shared_name" : "2800905", + "lat" : 35.746008, + "y" : -357460.08, + "x" : 1397423.22 + }, + "position" : { + "x" : 1397423.22, + "y" : -357460.08 + }, + "selected" : false + }, { + "data" : { + "id" : "6047", + "station_name" : "王子", + "close_ymd" : "", + "lon" : 139.737618, + "post" : "114-0002", + "e_status" : 0, + "SUID" : 6047, + "station_g_cd" : 1133212, + "add" : "北区王子1丁目", + "line_cd" : 28009, + "selected" : false, + "open_ymd" : "", + "name" : "2800904", + "pref_name" : "東京都", + "shared_name" : "2800904", + "lat" : 35.753966, + "y" : -357539.66, + "x" : 1397376.18 + }, + "position" : { + "x" : 1397376.18, + "y" : -357539.66 + }, + "selected" : false + }, { + "data" : { + "id" : "6042", + "station_name" : "錦糸町", + "close_ymd" : "", + "lon" : 139.814941, + "post" : "130-0022", + "e_status" : 0, + "SUID" : 6042, + "station_g_cd" : 1131322, + "add" : "墨田区江東橋3丁目", + "line_cd" : 28008, + "selected" : false, + "open_ymd" : "", + "name" : "2800812", + "pref_name" : "東京都", + "shared_name" : "2800812", + "lat" : 35.697578, + "y" : -356975.78, + "x" : 1398149.4100000001 + }, + "position" : { + "x" : 1398149.4100000001, + "y" : -356975.78 + }, + "selected" : false + }, { + "data" : { + "id" : "6041", + "station_name" : "住吉", + "close_ymd" : "", + "lon" : 139.815681, + "post" : "135-0002", + "e_status" : 0, + "SUID" : 6041, + "station_g_cd" : 2800814, + "add" : "江東区住吉2-23-12", + "line_cd" : 28008, + "selected" : false, + "open_ymd" : "", + "name" : "2800814", + "pref_name" : "東京都", + "shared_name" : "2800814", + "lat" : 35.689073, + "y" : -356890.73, + "x" : 1398156.81 + }, + "position" : { + "x" : 1398156.81, + "y" : -356890.73 + }, + "selected" : false + }, { + "data" : { + "id" : "6044", + "station_name" : "赤羽岩淵", + "close_ymd" : "", + "lon" : 139.722103, + "post" : "115-0045", + "e_status" : 0, + "SUID" : 6044, + "station_g_cd" : 2800901, + "add" : "北区赤羽1-52-8", + "line_cd" : 28009, + "selected" : false, + "open_ymd" : "", + "name" : "2800901", + "pref_name" : "東京都", + "shared_name" : "2800901", + "lat" : 35.783417, + "y" : -357834.17, + "x" : 1397221.03 + }, + "position" : { + "x" : 1397221.03, + "y" : -357834.17 + }, + "selected" : false + }, { + "data" : { + "id" : "6043", + "station_name" : "押上〈スカイツリー前〉", + "close_ymd" : "", + "lon" : 139.812935, + "post" : "131-0045", + "e_status" : 0, + "SUID" : 6043, + "station_g_cd" : 2100203, + "add" : "墨田区押上一丁目", + "line_cd" : 28008, + "selected" : false, + "open_ymd" : "", + "name" : "2800813", + "pref_name" : "東京都", + "shared_name" : "2800813", + "lat" : 35.710702000000005, + "y" : -357107.0200000001, + "x" : 1398129.35 + }, + "position" : { + "x" : 1398129.35, + "y" : -357107.0200000001 + }, + "selected" : false + }, { + "data" : { + "id" : "6038", + "station_name" : "三越前", + "close_ymd" : "", + "lon" : 139.773147, + "post" : "103-0022", + "e_status" : 0, + "SUID" : 6038, + "station_g_cd" : 1131402, + "add" : "中央区日本橋室町1-8-1", + "line_cd" : 28008, + "selected" : false, + "open_ymd" : "", + "name" : "2800809", + "pref_name" : "東京都", + "shared_name" : "2800809", + "lat" : 35.684908, + "y" : -356849.08, + "x" : 1397731.47 + }, + "position" : { + "x" : 1397731.47, + "y" : -356849.08 + }, + "selected" : false + }, { + "data" : { + "id" : "6037", + "station_name" : "大手町", + "close_ymd" : "", + "lon" : 139.764107, + "post" : "100-0004", + "e_status" : 0, + "SUID" : 6037, + "station_g_cd" : 2800208, + "add" : "千代田区大手町1丁目", + "line_cd" : 28008, + "selected" : false, + "open_ymd" : "", + "name" : "2800808", + "pref_name" : "東京都", + "shared_name" : "2800808", + "lat" : 35.686859999999996, + "y" : -356868.6, + "x" : 1397641.07 + }, + "position" : { + "x" : 1397641.07, + "y" : -356868.6 + }, + "selected" : false + }, { + "data" : { + "id" : "6040", + "station_name" : "清澄白河", + "close_ymd" : "", + "lon" : 139.798851, + "post" : "135-0021", + "e_status" : 0, + "SUID" : 6040, + "station_g_cd" : 2800811, + "add" : "江東区白河1-7-14", + "line_cd" : 28008, + "selected" : false, + "open_ymd" : "", + "name" : "2800811", + "pref_name" : "東京都", + "shared_name" : "2800811", + "lat" : 35.682105, + "y" : -356821.05, + "x" : 1397988.5100000002 + }, + "position" : { + "x" : 1397988.5100000002, + "y" : -356821.05 + }, + "selected" : false + }, { + "data" : { + "id" : "6039", + "station_name" : "水天宮前", + "close_ymd" : "", + "lon" : 139.785377, + "post" : "103-0014", + "e_status" : 0, + "SUID" : 6039, + "station_g_cd" : 2800810, + "add" : "中央区日本橋蛎殻町2-1-1", + "line_cd" : 28008, + "selected" : false, + "open_ymd" : "", + "name" : "2800810", + "pref_name" : "東京都", + "shared_name" : "2800810", + "lat" : 35.682683000000004, + "y" : -356826.83, + "x" : 1397853.77 + }, + "position" : { + "x" : 1397853.77, + "y" : -356826.83 + }, + "selected" : false + }, { + "data" : { + "id" : "6024", + "station_name" : "月島", + "close_ymd" : "", + "lon" : 139.784233, + "post" : "104-0052", + "e_status" : 0, + "SUID" : 6024, + "station_g_cd" : 2800621, + "add" : "東京都中央区月島一丁目3-9", + "line_cd" : 28006, + "selected" : false, + "open_ymd" : "1988-06-08", + "name" : "2800621", + "pref_name" : "東京都", + "shared_name" : "2800621", + "lat" : 35.664871000000005, + "y" : -356648.7100000001, + "x" : 1397842.33 + }, + "position" : { + "x" : 1397842.33, + "y" : -356648.7100000001 + }, + "selected" : false + }, { + "data" : { + "id" : "6023", + "station_name" : "新富町", + "close_ymd" : "", + "lon" : 139.77371100000002, + "post" : "104-0045", + "e_status" : 0, + "SUID" : 6023, + "station_g_cd" : 2800620, + "add" : "東京都中央区築地一丁目1-1", + "line_cd" : 28006, + "selected" : false, + "open_ymd" : "1980-03-27", + "name" : "2800620", + "pref_name" : "東京都", + "shared_name" : "2800620", + "lat" : 35.670462, + "y" : -356704.62, + "x" : 1397737.11 + }, + "position" : { + "x" : 1397737.11, + "y" : -356704.62 + }, + "selected" : false + }, { + "data" : { + "id" : "6022", + "station_name" : "銀座一丁目", + "close_ymd" : "", + "lon" : 139.767045, + "post" : "104-0061", + "e_status" : 0, + "SUID" : 6022, + "station_g_cd" : 2800619, + "add" : "東京都中央区銀座一丁目7-12", + "line_cd" : 28006, + "selected" : false, + "open_ymd" : "1974-10-30", + "name" : "2800619", + "pref_name" : "東京都", + "shared_name" : "2800619", + "lat" : 35.67435, + "y" : -356743.49999999994, + "x" : 1397670.45 + }, + "position" : { + "x" : 1397670.45, + "y" : -356743.49999999994 + }, + "selected" : false + }, { + "data" : { + "id" : "6021", + "station_name" : "有楽町", + "close_ymd" : "", + "lon" : 139.763265, + "post" : "100-0006", + "e_status" : 0, + "SUID" : 6021, + "station_g_cd" : 1130225, + "add" : "東京都千代田区有楽町一丁目11-1", + "line_cd" : 28006, + "selected" : false, + "open_ymd" : "1974-10-30", + "name" : "2800618", + "pref_name" : "東京都", + "shared_name" : "2800618", + "lat" : 35.675714, + "y" : -356757.14, + "x" : 1397632.65 + }, + "position" : { + "x" : 1397632.65, + "y" : -356757.14 + }, + "selected" : false + }, { + "data" : { + "id" : "6028", + "station_name" : "新線池袋", + "close_ymd" : "2008-06-14", + "lon" : 139.710388, + "post" : "171-0021", + "e_status" : 2, + "SUID" : 6028, + "station_g_cd" : 1130212, + "add" : "東京都豊島区西池袋", + "line_cd" : 28007, + "selected" : false, + "open_ymd" : "1994-12-07", + "name" : "2800701", + "pref_name" : "東京都", + "shared_name" : "2800701", + "lat" : 35.730645, + "y" : -357306.45, + "x" : 1397103.88 + }, + "position" : { + "x" : 1397103.88, + "y" : -357306.45 + }, + "selected" : false + }, { + "data" : { + "id" : "6027", + "station_name" : "新木場", + "close_ymd" : "", + "lon" : 139.826254, + "post" : "136-0082", + "e_status" : 0, + "SUID" : 6027, + "station_g_cd" : 1132605, + "add" : "東京都江東区新木場一丁目6", + "line_cd" : 28006, + "selected" : false, + "open_ymd" : "1988-06-08", + "name" : "2800624", + "pref_name" : "東京都", + "shared_name" : "2800624", + "lat" : 35.645832, + "y" : -356458.32, + "x" : 1398262.54 + }, + "position" : { + "x" : 1398262.54, + "y" : -356458.32 + }, + "selected" : false + }, { + "data" : { + "id" : "6026", + "station_name" : "辰巳", + "close_ymd" : "", + "lon" : 139.81052, + "post" : "135-0053", + "e_status" : 0, + "SUID" : 6026, + "station_g_cd" : 2800623, + "add" : "東京都江東区辰巳一丁目1-44", + "line_cd" : 28006, + "selected" : false, + "open_ymd" : "1988-06-08", + "name" : "2800623", + "pref_name" : "東京都", + "shared_name" : "2800623", + "lat" : 35.645576, + "y" : -356455.76, + "x" : 1398105.2 + }, + "position" : { + "x" : 1398105.2, + "y" : -356455.76 + }, + "selected" : false + }, { + "data" : { + "id" : "6025", + "station_name" : "豊洲", + "close_ymd" : "", + "lon" : 139.79621, + "post" : "135-0061", + "e_status" : 0, + "SUID" : 6025, + "station_g_cd" : 2800622, + "add" : "東京都江東区豊洲四丁目1-1", + "line_cd" : 28006, + "selected" : false, + "open_ymd" : "1988-06-08", + "name" : "2800622", + "pref_name" : "東京都", + "shared_name" : "2800622", + "lat" : 35.654908, + "y" : -356549.08, + "x" : 1397962.1 + }, + "position" : { + "x" : 1397962.1, + "y" : -356549.08 + }, + "selected" : false + }, { + "data" : { + "id" : "6032", + "station_name" : "青山一丁目", + "close_ymd" : "", + "lon" : 139.72415900000001, + "post" : "107-0062", + "e_status" : 0, + "SUID" : 6032, + "station_g_cd" : 2800116, + "add" : "港区南青山1-1-19", + "line_cd" : 28008, + "selected" : false, + "open_ymd" : "", + "name" : "2800803", + "pref_name" : "東京都", + "shared_name" : "2800803", + "lat" : 35.672765000000005, + "y" : -356727.6500000001, + "x" : 1397241.59 + }, + "position" : { + "x" : 1397241.59, + "y" : -356727.6500000001 + }, + "selected" : false + }, { + "data" : { + "id" : "6031", + "station_name" : "表参道", + "close_ymd" : "", + "lon" : 139.712314, + "post" : "107-0061", + "e_status" : 0, + "SUID" : 6031, + "station_g_cd" : 2800118, + "add" : "港区北青山3丁目", + "line_cd" : 28008, + "selected" : false, + "open_ymd" : "", + "name" : "2800802", + "pref_name" : "東京都", + "shared_name" : "2800802", + "lat" : 35.665246999999994, + "y" : -356652.4699999999, + "x" : 1397123.14 + }, + "position" : { + "x" : 1397123.14, + "y" : -356652.4699999999 + }, + "selected" : false + }, { + "data" : { + "id" : "6030", + "station_name" : "渋谷", + "close_ymd" : "", + "lon" : 139.701, + "post" : "", + "e_status" : 0, + "SUID" : 6030, + "station_g_cd" : 1130205, + "add" : "東京都渋谷区道玄坂二丁目1-1", + "line_cd" : 28008, + "selected" : false, + "open_ymd" : "", + "name" : "2800801", + "pref_name" : "東京都", + "shared_name" : "2800801", + "lat" : 35.659065999999996, + "y" : -356590.66, + "x" : 1397010.0 + }, + "position" : { + "x" : 1397010.0, + "y" : -356590.66 + }, + "selected" : false + }, { + "data" : { + "id" : "6029", + "station_name" : "小竹向原", + "close_ymd" : "", + "lon" : 139.678572, + "post" : "176-0004", + "e_status" : 2, + "SUID" : 6029, + "station_g_cd" : 2200301, + "add" : "東京都練馬区小竹町二丁目16-15", + "line_cd" : 28007, + "selected" : false, + "open_ymd" : "1983-06-24", + "name" : "2800702", + "pref_name" : "東京都", + "shared_name" : "2800702", + "lat" : 35.743803, + "y" : -357438.02999999997, + "x" : 1396785.72 + }, + "position" : { + "x" : 1396785.72, + "y" : -357438.02999999997 + }, + "selected" : false + }, { + "data" : { + "id" : "6036", + "station_name" : "神保町", + "close_ymd" : "", + "lon" : 139.757606, + "post" : "101-0051", + "e_status" : 0, + "SUID" : 6036, + "station_g_cd" : 2800807, + "add" : "千代田区神田神保町2-2", + "line_cd" : 28008, + "selected" : false, + "open_ymd" : "", + "name" : "2800807", + "pref_name" : "東京都", + "shared_name" : "2800807", + "lat" : 35.695966, + "y" : -356959.66, + "x" : 1397576.06 + }, + "position" : { + "x" : 1397576.06, + "y" : -356959.66 + }, + "selected" : false + }, { + "data" : { + "id" : "6035", + "station_name" : "九段下", + "close_ymd" : "", + "lon" : 139.751948, + "post" : "102-0074", + "e_status" : 0, + "SUID" : 6035, + "station_g_cd" : 2800407, + "add" : "千代田区九段南1-6-1", + "line_cd" : 28008, + "selected" : false, + "open_ymd" : "", + "name" : "2800806", + "pref_name" : "東京都", + "shared_name" : "2800806", + "lat" : 35.695589, + "y" : -356955.88999999996, + "x" : 1397519.48 + }, + "position" : { + "x" : 1397519.48, + "y" : -356955.88999999996 + }, + "selected" : false + }, { + "data" : { + "id" : "6034", + "station_name" : "半蔵門", + "close_ymd" : "", + "lon" : 139.74163000000001, + "post" : "102-0083", + "e_status" : 0, + "SUID" : 6034, + "station_g_cd" : 2800805, + "add" : "千代田区麹町1-6", + "line_cd" : 28008, + "selected" : false, + "open_ymd" : "", + "name" : "2800805", + "pref_name" : "東京都", + "shared_name" : "2800805", + "lat" : 35.685703000000004, + "y" : -356857.03, + "x" : 1397416.3 + }, + "position" : { + "x" : 1397416.3, + "y" : -356857.03 + }, + "selected" : false + }, { + "data" : { + "id" : "6033", + "station_name" : "永田町", + "close_ymd" : "", + "lon" : 139.740258, + "post" : "", + "e_status" : 0, + "SUID" : 6033, + "station_g_cd" : 2800115, + "add" : "東京都千代田区永田町一丁目11-29", + "line_cd" : 28008, + "selected" : false, + "open_ymd" : "", + "name" : "2800804", + "pref_name" : "東京都", + "shared_name" : "2800804", + "lat" : 35.678757, + "y" : -356787.56999999995, + "x" : 1397402.58 + }, + "position" : { + "x" : 1397402.58, + "y" : -356787.56999999995 + }, + "selected" : false + }, { + "data" : { + "id" : "6007", + "station_name" : "平和台", + "close_ymd" : "", + "lon" : 139.653762, + "post" : "179-0085", + "e_status" : 0, + "SUID" : 6007, + "station_g_cd" : 2800604, + "add" : "東京都練馬区早宮2-17-48", + "line_cd" : 28006, + "selected" : false, + "open_ymd" : "1983-06-24", + "name" : "2800604", + "pref_name" : "東京都", + "shared_name" : "2800604", + "lat" : 35.757863, + "y" : -357578.63, + "x" : 1396537.62 + }, + "position" : { + "x" : 1396537.62, + "y" : -357578.63 + }, + "selected" : false + }, { + "data" : { + "id" : "6008", + "station_name" : "氷川台", + "close_ymd" : "", + "lon" : 139.66556699999998, + "post" : "179-0084", + "e_status" : 0, + "SUID" : 6008, + "station_g_cd" : 2800605, + "add" : "東京都練馬区氷川台三丁目38-18", + "line_cd" : 28006, + "selected" : false, + "open_ymd" : "1983-06-24", + "name" : "2800605", + "pref_name" : "東京都", + "shared_name" : "2800605", + "lat" : 35.74955, + "y" : -357495.5, + "x" : 1396655.67 + }, + "position" : { + "x" : 1396655.67, + "y" : -357495.5 + }, + "selected" : false + }, { + "data" : { + "id" : "6005", + "station_name" : "地下鉄成増", + "close_ymd" : "", + "lon" : 139.631497, + "post" : "175-0094", + "e_status" : 0, + "SUID" : 6005, + "station_g_cd" : 2100110, + "add" : "東京都板橋区成増二丁目11-3", + "line_cd" : 28006, + "selected" : false, + "open_ymd" : "1983-06-24", + "name" : "2800602", + "pref_name" : "東京都", + "shared_name" : "2800602", + "lat" : 35.776557000000004, + "y" : -357765.57000000007, + "x" : 1396314.97 + }, + "position" : { + "x" : 1396314.97, + "y" : -357765.57000000007 + }, + "selected" : false + }, { + "data" : { + "id" : "6006", + "station_name" : "地下鉄赤塚", + "close_ymd" : "", + "lon" : 139.644021, + "post" : "179-0081", + "e_status" : 0, + "SUID" : 6006, + "station_g_cd" : 2100109, + "add" : "東京都練馬区北町八丁目37-16", + "line_cd" : 28006, + "selected" : false, + "open_ymd" : "1983-06-24", + "name" : "2800603", + "pref_name" : "東京都", + "shared_name" : "2800603", + "lat" : 35.769939, + "y" : -357699.39, + "x" : 1396440.2100000002 + }, + "position" : { + "x" : 1396440.2100000002, + "y" : -357699.39 + }, + "selected" : false + }, { + "data" : { + "id" : "6011", + "station_name" : "要町", + "close_ymd" : "", + "lon" : 139.698715, + "post" : "171-0043", + "e_status" : 0, + "SUID" : 6011, + "station_g_cd" : 2800608, + "add" : "東京都豊島区要町一丁目1-10", + "line_cd" : 28006, + "selected" : false, + "open_ymd" : "1983-06-24", + "name" : "2800608", + "pref_name" : "東京都", + "shared_name" : "2800608", + "lat" : 35.73323, + "y" : -357332.3, + "x" : 1396987.15 + }, + "position" : { + "x" : 1396987.15, + "y" : -357332.3 + }, + "selected" : false + }, { + "data" : { + "id" : "6012", + "station_name" : "池袋", + "close_ymd" : "", + "lon" : 139.71008799999998, + "post" : "171-0021", + "e_status" : 0, + "SUID" : 6012, + "station_g_cd" : 1130212, + "add" : "東京都豊島区西池袋三丁目28-14", + "line_cd" : 28006, + "selected" : false, + "open_ymd" : "1954-01-20", + "name" : "2800609", + "pref_name" : "東京都", + "shared_name" : "2800609", + "lat" : 35.729565, + "y" : -357295.65, + "x" : 1397100.88 + }, + "position" : { + "x" : 1397100.88, + "y" : -357295.65 + }, + "selected" : false + }, { + "data" : { + "id" : "6009", + "station_name" : "小竹向原", + "close_ymd" : "", + "lon" : 139.678572, + "post" : "176-0004", + "e_status" : 0, + "SUID" : 6009, + "station_g_cd" : 2200301, + "add" : "東京都練馬区小竹町二丁目16-15", + "line_cd" : 28006, + "selected" : false, + "open_ymd" : "1983-06-24", + "name" : "2800606", + "pref_name" : "東京都", + "shared_name" : "2800606", + "lat" : 35.743803, + "y" : -357438.02999999997, + "x" : 1396785.72 + }, + "position" : { + "x" : 1396785.72, + "y" : -357438.02999999997 + }, + "selected" : false + }, { + "data" : { + "id" : "6010", + "station_name" : "千川", + "close_ymd" : "", + "lon" : 139.689271, + "post" : "171-0043", + "e_status" : 0, + "SUID" : 6010, + "station_g_cd" : 2800607, + "add" : "東京都豊島区要町三丁目10-7", + "line_cd" : 28006, + "selected" : false, + "open_ymd" : "1983-06-24", + "name" : "2800607", + "pref_name" : "東京都", + "shared_name" : "2800607", + "lat" : 35.738229, + "y" : -357382.29, + "x" : 1396892.71 + }, + "position" : { + "x" : 1396892.71, + "y" : -357382.29 + }, + "selected" : false + }, { + "data" : { + "id" : "6015", + "station_name" : "江戸川橋", + "close_ymd" : "", + "lon" : 139.73353799999998, + "post" : "112-0014", + "e_status" : 0, + "SUID" : 6015, + "station_g_cd" : 2800612, + "add" : "東京都文京区関口一丁目19-6", + "line_cd" : 28006, + "selected" : false, + "open_ymd" : "1974-10-30", + "name" : "2800612", + "pref_name" : "東京都", + "shared_name" : "2800612", + "lat" : 35.709495000000004, + "y" : -357094.95, + "x" : 1397335.38 + }, + "position" : { + "x" : 1397335.38, + "y" : -357094.95 + }, + "selected" : false + }, { + "data" : { + "id" : "6016", + "station_name" : "飯田橋", + "close_ymd" : "", + "lon" : 139.74366899999998, + "post" : "162-0825", + "e_status" : 0, + "SUID" : 6016, + "station_g_cd" : 1131205, + "add" : "東京都新宿区神楽坂一丁目13", + "line_cd" : 28006, + "selected" : false, + "open_ymd" : "1964-12-23", + "name" : "2800613", + "pref_name" : "東京都", + "shared_name" : "2800613", + "lat" : 35.701934, + "y" : -357019.34, + "x" : 1397436.69 + }, + "position" : { + "x" : 1397436.69, + "y" : -357019.34 + }, + "selected" : false + }, { + "data" : { + "id" : "6013", + "station_name" : "東池袋", + "close_ymd" : "", + "lon" : 139.719546, + "post" : "170-0013", + "e_status" : 0, + "SUID" : 6013, + "station_g_cd" : 2800610, + "add" : "東京都豊島区東池袋四丁目4-4", + "line_cd" : 28006, + "selected" : false, + "open_ymd" : "1974-10-30", + "name" : "2800610", + "pref_name" : "東京都", + "shared_name" : "2800610", + "lat" : 35.725732, + "y" : -357257.32, + "x" : 1397195.4600000002 + }, + "position" : { + "x" : 1397195.4600000002, + "y" : -357257.32 + }, + "selected" : false + }, { + "data" : { + "id" : "6014", + "station_name" : "護国寺", + "close_ymd" : "", + "lon" : 139.72754, + "post" : "112-0012", + "e_status" : 0, + "SUID" : 6014, + "station_g_cd" : 2800611, + "add" : "東京都文京区大塚五丁目40-8", + "line_cd" : 28006, + "selected" : false, + "open_ymd" : "1974-10-30", + "name" : "2800611", + "pref_name" : "東京都", + "shared_name" : "2800611", + "lat" : 35.719044, + "y" : -357190.43999999994, + "x" : 1397275.4000000001 + }, + "position" : { + "x" : 1397275.4000000001, + "y" : -357190.43999999994 + }, + "selected" : false + }, { + "data" : { + "id" : "6019", + "station_name" : "永田町", + "close_ymd" : "", + "lon" : 139.740258, + "post" : "100-0014", + "e_status" : 0, + "SUID" : 6019, + "station_g_cd" : 2800115, + "add" : "東京都千代田区永田町一丁目11-28", + "line_cd" : 28006, + "selected" : false, + "open_ymd" : "1974-10-30", + "name" : "2800616", + "pref_name" : "東京都", + "shared_name" : "2800616", + "lat" : 35.678757, + "y" : -356787.56999999995, + "x" : 1397402.58 + }, + "position" : { + "x" : 1397402.58, + "y" : -356787.56999999995 + }, + "selected" : false + }, { + "data" : { + "id" : "6020", + "station_name" : "桜田門", + "close_ymd" : "", + "lon" : 139.75149, + "post" : "100-0013", + "e_status" : 0, + "SUID" : 6020, + "station_g_cd" : 2800617, + "add" : "東京都千代田区霞が関二丁目1-1", + "line_cd" : 28006, + "selected" : false, + "open_ymd" : "1974-10-30", + "name" : "2800617", + "pref_name" : "東京都", + "shared_name" : "2800617", + "lat" : 35.677405, + "y" : -356774.05, + "x" : 1397514.9 + }, + "position" : { + "x" : 1397514.9, + "y" : -356774.05 + }, + "selected" : false + }, { + "data" : { + "id" : "6017", + "station_name" : "市ケ谷", + "close_ymd" : "", + "lon" : 139.73647, + "post" : "162-0843", + "e_status" : 0, + "SUID" : 6017, + "station_g_cd" : 1131206, + "add" : "東京都新宿区市谷田町一丁目1", + "line_cd" : 28006, + "selected" : false, + "open_ymd" : "1974-10-30", + "name" : "2800614", + "pref_name" : "東京都", + "shared_name" : "2800614", + "lat" : 35.691958, + "y" : -356919.58, + "x" : 1397364.7 + }, + "position" : { + "x" : 1397364.7, + "y" : -356919.58 + }, + "selected" : false + }, { + "data" : { + "id" : "6018", + "station_name" : "麹町", + "close_ymd" : "", + "lon" : 139.73761299999998, + "post" : "102-0083", + "e_status" : 0, + "SUID" : 6018, + "station_g_cd" : 2800615, + "add" : "東京都千代田区麹町三丁目2", + "line_cd" : 28006, + "selected" : false, + "open_ymd" : "1974-10-30", + "name" : "2800615", + "pref_name" : "東京都", + "shared_name" : "2800615", + "lat" : 35.684006, + "y" : -356840.05999999994, + "x" : 1397376.13 + }, + "position" : { + "x" : 1397376.13, + "y" : -356840.05999999994 + }, + "selected" : false + }, { + "data" : { + "id" : "5990", + "station_name" : "根津", + "close_ymd" : "", + "lon" : 139.765655, + "post" : "113-0031", + "e_status" : 0, + "SUID" : 5990, + "station_g_cd" : 2800507, + "add" : "文京区根津1丁目", + "line_cd" : 28005, + "selected" : false, + "open_ymd" : "", + "name" : "2800507", + "pref_name" : "東京都", + "shared_name" : "2800507", + "lat" : 35.7174, + "y" : -357174.0, + "x" : 1397656.55 + }, + "position" : { + "x" : 1397656.55, + "y" : -357174.0 + }, + "selected" : false + }, { + "data" : { + "id" : "5989", + "station_name" : "千駄木", + "close_ymd" : "", + "lon" : 139.763243, + "post" : "113-0022", + "e_status" : 0, + "SUID" : 5989, + "station_g_cd" : 2800506, + "add" : "文京区千駄木2丁目", + "line_cd" : 28005, + "selected" : false, + "open_ymd" : "", + "name" : "2800506", + "pref_name" : "東京都", + "shared_name" : "2800506", + "lat" : 35.725549, + "y" : -357255.49, + "x" : 1397632.43 + }, + "position" : { + "x" : 1397632.43, + "y" : -357255.49 + }, + "selected" : false + }, { + "data" : { + "id" : "5992", + "station_name" : "新御茶ノ水", + "close_ymd" : "", + "lon" : 139.76601399999998, + "post" : "101-0062", + "e_status" : 0, + "SUID" : 5992, + "station_g_cd" : 1131203, + "add" : "千代田区神田駿河台3丁目", + "line_cd" : 28005, + "selected" : false, + "open_ymd" : "", + "name" : "2800509", + "pref_name" : "東京都", + "shared_name" : "2800509", + "lat" : 35.698071999999996, + "y" : -356980.72, + "x" : 1397660.14 + }, + "position" : { + "x" : 1397660.14, + "y" : -356980.72 + }, + "selected" : false + }, { + "data" : { + "id" : "5991", + "station_name" : "湯島", + "close_ymd" : "", + "lon" : 139.769916, + "post" : "113-0034", + "e_status" : 0, + "SUID" : 5991, + "station_g_cd" : 2800508, + "add" : "文京区湯島3丁目", + "line_cd" : 28005, + "selected" : false, + "open_ymd" : "", + "name" : "2800508", + "pref_name" : "東京都", + "shared_name" : "2800508", + "lat" : 35.708242999999996, + "y" : -357082.42999999993, + "x" : 1397699.16 + }, + "position" : { + "x" : 1397699.16, + "y" : -357082.42999999993 + }, + "selected" : false + }, { + "data" : { + "id" : "5994", + "station_name" : "二重橋前", + "close_ymd" : "", + "lon" : 139.761948, + "post" : "100-0005", + "e_status" : 0, + "SUID" : 5994, + "station_g_cd" : 2800511, + "add" : "千代田区丸の内2丁目", + "line_cd" : 28005, + "selected" : false, + "open_ymd" : "", + "name" : "2800511", + "pref_name" : "東京都", + "shared_name" : "2800511", + "lat" : 35.681071, + "y" : -356810.71, + "x" : 1397619.48 + }, + "position" : { + "x" : 1397619.48, + "y" : -356810.71 + }, + "selected" : false + }, { + "data" : { + "id" : "5993", + "station_name" : "大手町", + "close_ymd" : "", + "lon" : 139.763399, + "post" : "100-0004", + "e_status" : 0, + "SUID" : 5993, + "station_g_cd" : 2800208, + "add" : "千代田区大手町1丁目", + "line_cd" : 28005, + "selected" : false, + "open_ymd" : "", + "name" : "2800510", + "pref_name" : "東京都", + "shared_name" : "2800510", + "lat" : 35.686153999999995, + "y" : -356861.5399999999, + "x" : 1397633.99 + }, + "position" : { + "x" : 1397633.99, + "y" : -356861.5399999999 + }, + "selected" : false + }, { + "data" : { + "id" : "5996", + "station_name" : "霞ケ関", + "close_ymd" : "", + "lon" : 139.750899, + "post" : "100-0013", + "e_status" : 0, + "SUID" : 5996, + "station_g_cd" : 2800211, + "add" : "千代田区霞が関2丁目", + "line_cd" : 28005, + "selected" : false, + "open_ymd" : "", + "name" : "2800513", + "pref_name" : "東京都", + "shared_name" : "2800513", + "lat" : 35.673838, + "y" : -356738.38000000006, + "x" : 1397508.99 + }, + "position" : { + "x" : 1397508.99, + "y" : -356738.38000000006 + }, + "selected" : false + }, { + "data" : { + "id" : "5995", + "station_name" : "日比谷", + "close_ymd" : "", + "lon" : 139.758732, + "post" : "100-0006", + "e_status" : 0, + "SUID" : 5995, + "station_g_cd" : 2800315, + "add" : "千代田区有楽町1丁目", + "line_cd" : 28005, + "selected" : false, + "open_ymd" : "", + "name" : "2800512", + "pref_name" : "東京都", + "shared_name" : "2800512", + "lat" : 35.674240999999995, + "y" : -356742.41, + "x" : 1397587.32 + }, + "position" : { + "x" : 1397587.32, + "y" : -356742.41 + }, + "selected" : false + }, { + "data" : { + "id" : "5998", + "station_name" : "赤坂", + "close_ymd" : "", + "lon" : 139.738348, + "post" : "107-0052", + "e_status" : 0, + "SUID" : 5998, + "station_g_cd" : 2800515, + "add" : "港区赤坂5丁目", + "line_cd" : 28005, + "selected" : false, + "open_ymd" : "", + "name" : "2800515", + "pref_name" : "東京都", + "shared_name" : "2800515", + "lat" : 35.67323, + "y" : -356732.3, + "x" : 1397383.48 + }, + "position" : { + "x" : 1397383.48, + "y" : -356732.3 + }, + "selected" : false + }, { + "data" : { + "id" : "5997", + "station_name" : "国会議事堂前", + "close_ymd" : "", + "lon" : 139.745219, + "post" : "100-0014", + "e_status" : 0, + "SUID" : 5997, + "station_g_cd" : 2800212, + "add" : "千代田区永田町1丁目", + "line_cd" : 28005, + "selected" : false, + "open_ymd" : "", + "name" : "2800514", + "pref_name" : "東京都", + "shared_name" : "2800514", + "lat" : 35.67393, + "y" : -356739.3, + "x" : 1397452.19 + }, + "position" : { + "x" : 1397452.19, + "y" : -356739.3 + }, + "selected" : false + }, { + "data" : { + "id" : "6000", + "station_name" : "表参道", + "close_ymd" : "", + "lon" : 139.712314, + "post" : "107-0061", + "e_status" : 0, + "SUID" : 6000, + "station_g_cd" : 2800118, + "add" : "港区北青山3丁目", + "line_cd" : 28005, + "selected" : false, + "open_ymd" : "", + "name" : "2800517", + "pref_name" : "東京都", + "shared_name" : "2800517", + "lat" : 35.665246999999994, + "y" : -356652.4699999999, + "x" : 1397123.14 + }, + "position" : { + "x" : 1397123.14, + "y" : -356652.4699999999 + }, + "selected" : false + }, { + "data" : { + "id" : "5999", + "station_name" : "乃木坂", + "close_ymd" : "", + "lon" : 139.726215, + "post" : "107-0062", + "e_status" : 0, + "SUID" : 5999, + "station_g_cd" : 2800516, + "add" : "港区南青山1丁目", + "line_cd" : 28005, + "selected" : false, + "open_ymd" : "", + "name" : "2800516", + "pref_name" : "東京都", + "shared_name" : "2800516", + "lat" : 35.666571999999995, + "y" : -356665.72, + "x" : 1397262.15 + }, + "position" : { + "x" : 1397262.15, + "y" : -356665.72 + }, + "selected" : false + }, { + "data" : { + "id" : "6002", + "station_name" : "代々木公園", + "close_ymd" : "", + "lon" : 139.689099, + "post" : "151-0063", + "e_status" : 0, + "SUID" : 6002, + "station_g_cd" : 2500104, + "add" : "渋谷区富ケ谷1丁目", + "line_cd" : 28005, + "selected" : false, + "open_ymd" : "", + "name" : "2800519", + "pref_name" : "東京都", + "shared_name" : "2800519", + "lat" : 35.669187, + "y" : -356691.87, + "x" : 1396890.99 + }, + "position" : { + "x" : 1396890.99, + "y" : -356691.87 + }, + "selected" : false + }, { + "data" : { + "id" : "6001", + "station_name" : "明治神宮前〈原宿〉", + "close_ymd" : "", + "lon" : 139.703995, + "post" : "150-0001", + "e_status" : 0, + "SUID" : 6001, + "station_g_cd" : 1130206, + "add" : "渋谷区神宮前1丁目", + "line_cd" : 28005, + "selected" : false, + "open_ymd" : "", + "name" : "2800518", + "pref_name" : "東京都", + "shared_name" : "2800518", + "lat" : 35.669071, + "y" : -356690.71, + "x" : 1397039.95 + }, + "position" : { + "x" : 1397039.95, + "y" : -356690.71 + }, + "selected" : false + }, { + "data" : { + "id" : "6003", + "station_name" : "代々木上原", + "close_ymd" : "", + "lon" : 139.680153, + "post" : "151-0066", + "e_status" : 0, + "SUID" : 6003, + "station_g_cd" : 2500105, + "add" : "渋谷区西原3丁目", + "line_cd" : 28005, + "selected" : false, + "open_ymd" : "", + "name" : "2800520", + "pref_name" : "東京都", + "shared_name" : "2800520", + "lat" : 35.669159, + "y" : -356691.59, + "x" : 1396801.5299999998 + }, + "position" : { + "x" : 1396801.5299999998, + "y" : -356691.59 + }, + "selected" : false + }, { + "data" : { + "id" : "5973", + "station_name" : "木場", + "close_ymd" : "", + "lon" : 139.807042, + "post" : "135-0042", + "e_status" : 0, + "SUID" : 5973, + "station_g_cd" : 2800413, + "add" : "江東区木場5-5-1", + "line_cd" : 28004, + "selected" : false, + "open_ymd" : "", + "name" : "2800413", + "pref_name" : "東京都", + "shared_name" : "2800413", + "lat" : 35.669351, + "y" : -356693.51, + "x" : 1398070.42 + }, + "position" : { + "x" : 1398070.42, + "y" : -356693.51 + }, + "selected" : false + }, { + "data" : { + "id" : "5974", + "station_name" : "東陽町", + "close_ymd" : "", + "lon" : 139.817596, + "post" : "135-0016", + "e_status" : 0, + "SUID" : 5974, + "station_g_cd" : 2800414, + "add" : "江東区東陽4-2-1", + "line_cd" : 28004, + "selected" : false, + "open_ymd" : "", + "name" : "2800414", + "pref_name" : "東京都", + "shared_name" : "2800414", + "lat" : 35.669629, + "y" : -356696.29, + "x" : 1398175.9600000002 + }, + "position" : { + "x" : 1398175.9600000002, + "y" : -356696.29 + }, + "selected" : false + }, { + "data" : { + "id" : "5975", + "station_name" : "南砂町", + "close_ymd" : "", + "lon" : 139.83065, + "post" : "136-0076", + "e_status" : 0, + "SUID" : 5975, + "station_g_cd" : 2800415, + "add" : "江東区南砂3-11-85", + "line_cd" : 28004, + "selected" : false, + "open_ymd" : "", + "name" : "2800415", + "pref_name" : "東京都", + "shared_name" : "2800415", + "lat" : 35.668796, + "y" : -356687.96, + "x" : 1398306.5 + }, + "position" : { + "x" : 1398306.5, + "y" : -356687.96 + }, + "selected" : false + }, { + "data" : { + "id" : "5976", + "station_name" : "西葛西", + "close_ymd" : "", + "lon" : 139.859259, + "post" : "134-0088", + "e_status" : 0, + "SUID" : 5976, + "station_g_cd" : 2800416, + "add" : "江戸川区西葛西6-14-1", + "line_cd" : 28004, + "selected" : false, + "open_ymd" : "", + "name" : "2800416", + "pref_name" : "東京都", + "shared_name" : "2800416", + "lat" : 35.664631, + "y" : -356646.31, + "x" : 1398592.59 + }, + "position" : { + "x" : 1398592.59, + "y" : -356646.31 + }, + "selected" : false + }, { + "data" : { + "id" : "5977", + "station_name" : "葛西", + "close_ymd" : "", + "lon" : 139.872458, + "post" : "134-0083", + "e_status" : 0, + "SUID" : 5977, + "station_g_cd" : 2800417, + "add" : "江戸川区中葛西5-43-11", + "line_cd" : 28004, + "selected" : false, + "open_ymd" : "", + "name" : "2800417", + "pref_name" : "東京都", + "shared_name" : "2800417", + "lat" : 35.663554, + "y" : -356635.54, + "x" : 1398724.5799999998 + }, + "position" : { + "x" : 1398724.5799999998, + "y" : -356635.54 + }, + "selected" : false + }, { + "data" : { + "id" : "5984", + "station_name" : "北綾瀬", + "close_ymd" : "", + "lon" : 139.83203500000002, + "post" : "120-0006", + "e_status" : 0, + "SUID" : 5984, + "station_g_cd" : 2800501, + "add" : "足立区谷中2丁目", + "line_cd" : 28005, + "selected" : false, + "open_ymd" : "", + "name" : "2800501", + "pref_name" : "東京都", + "shared_name" : "2800501", + "lat" : 35.777117, + "y" : -357771.17, + "x" : 1398320.35 + }, + "position" : { + "x" : 1398320.35, + "y" : -357771.17 + }, + "selected" : false + }, { + "data" : { + "id" : "5985", + "station_name" : "綾瀬", + "close_ymd" : "", + "lon" : 139.825019, + "post" : "120-0005", + "e_status" : 0, + "SUID" : 5985, + "station_g_cd" : 1132006, + "add" : "足立区綾瀬3丁目", + "line_cd" : 28005, + "selected" : false, + "open_ymd" : "", + "name" : "2800502", + "pref_name" : "東京都", + "shared_name" : "2800502", + "lat" : 35.762221999999994, + "y" : -357622.2199999999, + "x" : 1398250.19 + }, + "position" : { + "x" : 1398250.19, + "y" : -357622.2199999999 + }, + "selected" : false + }, { + "data" : { + "id" : "5986", + "station_name" : "北千住", + "close_ymd" : "", + "lon" : 139.804276, + "post" : "120-0026", + "e_status" : 0, + "SUID" : 5986, + "station_g_cd" : 1132005, + "add" : "足立区千住旭町", + "line_cd" : 28005, + "selected" : false, + "open_ymd" : "", + "name" : "2800503", + "pref_name" : "東京都", + "shared_name" : "2800503", + "lat" : 35.748915999999994, + "y" : -357489.1599999999, + "x" : 1398042.7599999998 + }, + "position" : { + "x" : 1398042.7599999998, + "y" : -357489.1599999999 + }, + "selected" : false + }, { + "data" : { + "id" : "5987", + "station_name" : "町屋", + "close_ymd" : "", + "lon" : 139.780501, + "post" : "116-0001", + "e_status" : 0, + "SUID" : 5987, + "station_g_cd" : 2300104, + "add" : "荒川区町屋1丁目", + "line_cd" : 28005, + "selected" : false, + "open_ymd" : "", + "name" : "2800504", + "pref_name" : "東京都", + "shared_name" : "2800504", + "lat" : 35.742733, + "y" : -357427.33, + "x" : 1397805.0099999998 + }, + "position" : { + "x" : 1397805.0099999998, + "y" : -357427.33 + }, + "selected" : false + }, { + "data" : { + "id" : "5988", + "station_name" : "西日暮里", + "close_ymd" : "", + "lon" : 139.766511, + "post" : "", + "e_status" : 0, + "SUID" : 5988, + "station_g_cd" : 1130217, + "add" : "東京都荒川区西日暮里五丁目14-1", + "line_cd" : 28005, + "selected" : false, + "open_ymd" : "", + "name" : "2800505", + "pref_name" : "東京都", + "shared_name" : "2800505", + "lat" : 35.732257000000004, + "y" : -357322.57000000007, + "x" : 1397665.11 + }, + "position" : { + "x" : 1397665.11, + "y" : -357322.57000000007 + }, + "selected" : false + }, { + "data" : { + "id" : "5964", + "station_name" : "早稲田", + "close_ymd" : "", + "lon" : 139.721319, + "post" : "", + "e_status" : 0, + "SUID" : 5964, + "station_g_cd" : 2800404, + "add" : "東京都新宿区", + "line_cd" : 28004, + "selected" : false, + "open_ymd" : "", + "name" : "2800404", + "pref_name" : "東京都", + "shared_name" : "2800404", + "lat" : 35.705723, + "y" : -357057.23, + "x" : 1397213.19 + }, + "position" : { + "x" : 1397213.19, + "y" : -357057.23 + }, + "selected" : false + }, { + "data" : { + "id" : "5963", + "station_name" : "高田馬場", + "close_ymd" : "", + "lon" : 139.704745, + "post" : "", + "e_status" : 0, + "SUID" : 5963, + "station_g_cd" : 1130210, + "add" : "東京都新宿区高田馬場一丁目35-1", + "line_cd" : 28004, + "selected" : false, + "open_ymd" : "", + "name" : "2800403", + "pref_name" : "東京都", + "shared_name" : "2800403", + "lat" : 35.713338, + "y" : -357133.38, + "x" : 1397047.45 + }, + "position" : { + "x" : 1397047.45, + "y" : -357133.38 + }, + "selected" : false + }, { + "data" : { + "id" : "5962", + "station_name" : "落合", + "close_ymd" : "", + "lon" : 139.687284, + "post" : "161-0034", + "e_status" : 0, + "SUID" : 5962, + "station_g_cd" : 2800402, + "add" : "新宿区上落合2-13-7", + "line_cd" : 28004, + "selected" : false, + "open_ymd" : "", + "name" : "2800402", + "pref_name" : "東京都", + "shared_name" : "2800402", + "lat" : 35.710976, + "y" : -357109.76, + "x" : 1396872.84 + }, + "position" : { + "x" : 1396872.84, + "y" : -357109.76 + }, + "selected" : false + }, { + "data" : { + "id" : "5961", + "station_name" : "中野", + "close_ymd" : "", + "lon" : 139.66583500000002, + "post" : "164-0001", + "e_status" : 0, + "SUID" : 5961, + "station_g_cd" : 1131214, + "add" : "中野区中野5丁目", + "line_cd" : 28004, + "selected" : false, + "open_ymd" : "", + "name" : "2800401", + "pref_name" : "東京都", + "shared_name" : "2800401", + "lat" : 35.705765, + "y" : -357057.65, + "x" : 1396658.35 + }, + "position" : { + "x" : 1396658.35, + "y" : -357057.65 + }, + "selected" : false + }, { + "data" : { + "id" : "5960", + "station_name" : "中目黒", + "close_ymd" : "", + "lon" : 139.698621, + "post" : "153-0051", + "e_status" : 0, + "SUID" : 5960, + "station_g_cd" : 2600103, + "add" : "目黒区上目黒3-4-1", + "line_cd" : 28003, + "selected" : false, + "open_ymd" : "", + "name" : "2800321", + "pref_name" : "東京都", + "shared_name" : "2800321", + "lat" : 35.643854, + "y" : -356438.54, + "x" : 1396986.21 + }, + "position" : { + "x" : 1396986.21, + "y" : -356438.54 + }, + "selected" : false + }, { + "data" : { + "id" : "5959", + "station_name" : "恵比寿", + "close_ymd" : "", + "lon" : 139.70898799999998, + "post" : "", + "e_status" : 0, + "SUID" : 5959, + "station_g_cd" : 1130204, + "add" : "東京都渋谷区恵比寿南一丁目5-5", + "line_cd" : 28003, + "selected" : false, + "open_ymd" : "", + "name" : "2800320", + "pref_name" : "東京都", + "shared_name" : "2800320", + "lat" : 35.647332, + "y" : -356473.32, + "x" : 1397089.8799999997 + }, + "position" : { + "x" : 1397089.8799999997, + "y" : -356473.32 + }, + "selected" : false + }, { + "data" : { + "id" : "5958", + "station_name" : "広尾", + "close_ymd" : "", + "lon" : 139.722202, + "post" : "106-0047", + "e_status" : 0, + "SUID" : 5958, + "station_g_cd" : 2800319, + "add" : "港区南麻布5-10-28", + "line_cd" : 28003, + "selected" : false, + "open_ymd" : "", + "name" : "2800319", + "pref_name" : "東京都", + "shared_name" : "2800319", + "lat" : 35.652279, + "y" : -356522.79, + "x" : 1397222.02 + }, + "position" : { + "x" : 1397222.02, + "y" : -356522.79 + }, + "selected" : false + }, { + "data" : { + "id" : "5957", + "station_name" : "六本木", + "close_ymd" : "", + "lon" : 139.73144299999998, + "post" : "106-0032", + "e_status" : 0, + "SUID" : 5957, + "station_g_cd" : 2800318, + "add" : "港区六本木6-1-25", + "line_cd" : 28003, + "selected" : false, + "open_ymd" : "", + "name" : "2800318", + "pref_name" : "東京都", + "shared_name" : "2800318", + "lat" : 35.662836, + "y" : -356628.36, + "x" : 1397314.43 + }, + "position" : { + "x" : 1397314.43, + "y" : -356628.36 + }, + "selected" : false + }, { + "data" : { + "id" : "5972", + "station_name" : "門前仲町", + "close_ymd" : "", + "lon" : 139.796209, + "post" : "135-0048", + "e_status" : 0, + "SUID" : 5972, + "station_g_cd" : 2800412, + "add" : "江東区門前仲町1丁目", + "line_cd" : 28004, + "selected" : false, + "open_ymd" : "", + "name" : "2800412", + "pref_name" : "東京都", + "shared_name" : "2800412", + "lat" : 35.671851000000004, + "y" : -356718.51, + "x" : 1397962.09 + }, + "position" : { + "x" : 1397962.09, + "y" : -356718.51 + }, + "selected" : false + }, { + "data" : { + "id" : "5971", + "station_name" : "茅場町", + "close_ymd" : "", + "lon" : 139.78000500000002, + "post" : "103-0025", + "e_status" : 0, + "SUID" : 5971, + "station_g_cd" : 2800310, + "add" : "中央区日本橋茅場町1-4-6", + "line_cd" : 28004, + "selected" : false, + "open_ymd" : "", + "name" : "2800411", + "pref_name" : "東京都", + "shared_name" : "2800411", + "lat" : 35.679752, + "y" : -356797.52, + "x" : 1397800.0500000003 + }, + "position" : { + "x" : 1397800.0500000003, + "y" : -356797.52 + }, + "selected" : false + }, { + "data" : { + "id" : "5970", + "station_name" : "日本橋", + "close_ymd" : "", + "lon" : 139.773516, + "post" : "103-0027", + "e_status" : 0, + "SUID" : 5970, + "station_g_cd" : 2800109, + "add" : "中央区日本橋1丁目", + "line_cd" : 28004, + "selected" : false, + "open_ymd" : "", + "name" : "2800410", + "pref_name" : "東京都", + "shared_name" : "2800410", + "lat" : 35.682078000000004, + "y" : -356820.78, + "x" : 1397735.16 + }, + "position" : { + "x" : 1397735.16, + "y" : -356820.78 + }, + "selected" : false + }, { + "data" : { + "id" : "5969", + "station_name" : "大手町", + "close_ymd" : "", + "lon" : 139.766086, + "post" : "100-0004", + "e_status" : 0, + "SUID" : 5969, + "station_g_cd" : 2800208, + "add" : "千代田区大手町1丁目", + "line_cd" : 28004, + "selected" : false, + "open_ymd" : "", + "name" : "2800409", + "pref_name" : "東京都", + "shared_name" : "2800409", + "lat" : 35.684801, + "y" : -356848.01, + "x" : 1397660.86 + }, + "position" : { + "x" : 1397660.86, + "y" : -356848.01 + }, + "selected" : false + }, { + "data" : { + "id" : "5968", + "station_name" : "竹橋", + "close_ymd" : "", + "lon" : 139.75681699999998, + "post" : "100-0003", + "e_status" : 0, + "SUID" : 5968, + "station_g_cd" : 2800408, + "add" : "千代田区一ツ橋1-1-1", + "line_cd" : 28004, + "selected" : false, + "open_ymd" : "", + "name" : "2800408", + "pref_name" : "東京都", + "shared_name" : "2800408", + "lat" : 35.690661999999996, + "y" : -356906.61999999994, + "x" : 1397568.17 + }, + "position" : { + "x" : 1397568.17, + "y" : -356906.61999999994 + }, + "selected" : false + }, { + "data" : { + "id" : "5967", + "station_name" : "九段下", + "close_ymd" : "", + "lon" : 139.751948, + "post" : "102-0074", + "e_status" : 0, + "SUID" : 5967, + "station_g_cd" : 2800407, + "add" : "千代田区九段南1-6-1", + "line_cd" : 28004, + "selected" : false, + "open_ymd" : "", + "name" : "2800407", + "pref_name" : "東京都", + "shared_name" : "2800407", + "lat" : 35.695589, + "y" : -356955.88999999996, + "x" : 1397519.48 + }, + "position" : { + "x" : 1397519.48, + "y" : -356955.88999999996 + }, + "selected" : false + }, { + "data" : { + "id" : "5966", + "station_name" : "飯田橋", + "close_ymd" : "", + "lon" : 139.74598600000002, + "post" : "", + "e_status" : 0, + "SUID" : 5966, + "station_g_cd" : 1131205, + "add" : "東京都千代田区飯田橋四丁目10-3", + "line_cd" : 28004, + "selected" : false, + "open_ymd" : "", + "name" : "2800406", + "pref_name" : "東京都", + "shared_name" : "2800406", + "lat" : 35.701725, + "y" : -357017.25000000006, + "x" : 1397459.86 + }, + "position" : { + "x" : 1397459.86, + "y" : -357017.25000000006 + }, + "selected" : false + }, { + "data" : { + "id" : "5965", + "station_name" : "神楽坂", + "close_ymd" : "", + "lon" : 139.734546, + "post" : "162-0805", + "e_status" : 0, + "SUID" : 5965, + "station_g_cd" : 2800405, + "add" : "新宿区矢来町112", + "line_cd" : 28004, + "selected" : false, + "open_ymd" : "", + "name" : "2800405", + "pref_name" : "東京都", + "shared_name" : "2800405", + "lat" : 35.703790000000005, + "y" : -357037.9, + "x" : 1397345.46 + }, + "position" : { + "x" : 1397345.46, + "y" : -357037.9 + }, + "selected" : false + }, { + "data" : { + "id" : "5947", + "station_name" : "小伝馬町", + "close_ymd" : "", + "lon" : 139.778433, + "post" : "103-0001", + "e_status" : 0, + "SUID" : 5947, + "station_g_cd" : 2800308, + "add" : "中央区日本橋小伝馬町11-1", + "line_cd" : 28003, + "selected" : false, + "open_ymd" : "", + "name" : "2800308", + "pref_name" : "東京都", + "shared_name" : "2800308", + "lat" : 35.690737, + "y" : -356907.37, + "x" : 1397784.33 + }, + "position" : { + "x" : 1397784.33, + "y" : -356907.37 + }, + "selected" : false + }, { + "data" : { + "id" : "5948", + "station_name" : "人形町", + "close_ymd" : "", + "lon" : 139.782285, + "post" : "103-0013", + "e_status" : 0, + "SUID" : 5948, + "station_g_cd" : 2800309, + "add" : "中央区日本橋人形町2-6-5", + "line_cd" : 28003, + "selected" : false, + "open_ymd" : "", + "name" : "2800309", + "pref_name" : "東京都", + "shared_name" : "2800309", + "lat" : 35.686307, + "y" : -356863.07, + "x" : 1397822.85 + }, + "position" : { + "x" : 1397822.85, + "y" : -356863.07 + }, + "selected" : false + }, { + "data" : { + "id" : "5945", + "station_name" : "仲御徒町", + "close_ymd" : "", + "lon" : 139.77613799999997, + "post" : "110-0005", + "e_status" : 0, + "SUID" : 5945, + "station_g_cd" : 1130221, + "add" : "台東区上野5-24-12", + "line_cd" : 28003, + "selected" : false, + "open_ymd" : "", + "name" : "2800306", + "pref_name" : "東京都", + "shared_name" : "2800306", + "lat" : 35.706649, + "y" : -357066.49, + "x" : 1397761.3799999997 + }, + "position" : { + "x" : 1397761.3799999997, + "y" : -357066.49 + }, + "selected" : false + }, { + "data" : { + "id" : "5946", + "station_name" : "秋葉原", + "close_ymd" : "", + "lon" : 139.775459, + "post" : "", + "e_status" : 0, + "SUID" : 5946, + "station_g_cd" : 1130222, + "add" : "東京都千代田区神田佐久間町一丁目21", + "line_cd" : 28003, + "selected" : false, + "open_ymd" : "", + "name" : "2800307", + "pref_name" : "東京都", + "shared_name" : "2800307", + "lat" : 35.698161999999996, + "y" : -356981.61999999994, + "x" : 1397754.59 + }, + "position" : { + "x" : 1397754.59, + "y" : -356981.61999999994 + }, + "selected" : false + }, { + "data" : { + "id" : "5943", + "station_name" : "入谷", + "close_ymd" : "", + "lon" : 139.783924, + "post" : "110-0013", + "e_status" : 0, + "SUID" : 5943, + "station_g_cd" : 2800304, + "add" : "台東区入谷1-6-4", + "line_cd" : 28003, + "selected" : false, + "open_ymd" : "", + "name" : "2800304", + "pref_name" : "東京都", + "shared_name" : "2800304", + "lat" : 35.719862, + "y" : -357198.62, + "x" : 1397839.2400000002 + }, + "position" : { + "x" : 1397839.2400000002, + "y" : -357198.62 + }, + "selected" : false + }, { + "data" : { + "id" : "5944", + "station_name" : "上野", + "close_ymd" : "", + "lon" : 139.777122, + "post" : "", + "e_status" : 0, + "SUID" : 5944, + "station_g_cd" : 1130220, + "add" : "東京都台東区東上野三丁目19-6", + "line_cd" : 28003, + "selected" : false, + "open_ymd" : "", + "name" : "2800305", + "pref_name" : "東京都", + "shared_name" : "2800305", + "lat" : 35.711482000000004, + "y" : -357114.82000000007, + "x" : 1397771.22 + }, + "position" : { + "x" : 1397771.22, + "y" : -357114.82000000007 + }, + "selected" : false + }, { + "data" : { + "id" : "5941", + "station_name" : "南千住", + "close_ymd" : "", + "lon" : 139.799273, + "post" : "116-0003", + "e_status" : 0, + "SUID" : 5941, + "station_g_cd" : 1132004, + "add" : "荒川区南千住4丁目", + "line_cd" : 28003, + "selected" : false, + "open_ymd" : "", + "name" : "2800302", + "pref_name" : "東京都", + "shared_name" : "2800302", + "lat" : 35.733398, + "y" : -357333.98000000004, + "x" : 1397992.73 + }, + "position" : { + "x" : 1397992.73, + "y" : -357333.98000000004 + }, + "selected" : false + }, { + "data" : { + "id" : "5942", + "station_name" : "三ノ輪", + "close_ymd" : "", + "lon" : 139.79148500000002, + "post" : "110-0011", + "e_status" : 0, + "SUID" : 5942, + "station_g_cd" : 2800303, + "add" : "台東区三ノ輪2-14-7", + "line_cd" : 28003, + "selected" : false, + "open_ymd" : "", + "name" : "2800303", + "pref_name" : "東京都", + "shared_name" : "2800303", + "lat" : 35.729623, + "y" : -357296.23, + "x" : 1397914.8500000003 + }, + "position" : { + "x" : 1397914.8500000003, + "y" : -357296.23 + }, + "selected" : false + }, { + "data" : { + "id" : "5955", + "station_name" : "霞ケ関", + "close_ymd" : "", + "lon" : 139.750899, + "post" : "100-0013", + "e_status" : 0, + "SUID" : 5955, + "station_g_cd" : 2800211, + "add" : "千代田区霞が関2丁目", + "line_cd" : 28003, + "selected" : false, + "open_ymd" : "", + "name" : "2800316", + "pref_name" : "東京都", + "shared_name" : "2800316", + "lat" : 35.673838, + "y" : -356738.38000000006, + "x" : 1397508.99 + }, + "position" : { + "x" : 1397508.99, + "y" : -356738.38000000006 + }, + "selected" : false + }, { + "data" : { + "id" : "5956", + "station_name" : "神谷町", + "close_ymd" : "", + "lon" : 139.745069, + "post" : "105-0001", + "e_status" : 0, + "SUID" : 5956, + "station_g_cd" : 2800317, + "add" : "港区虎ノ門5-12-11", + "line_cd" : 28003, + "selected" : false, + "open_ymd" : "", + "name" : "2800317", + "pref_name" : "東京都", + "shared_name" : "2800317", + "lat" : 35.662978, + "y" : -356629.78, + "x" : 1397450.69 + }, + "position" : { + "x" : 1397450.69, + "y" : -356629.78 + }, + "selected" : false + }, { + "data" : { + "id" : "5953", + "station_name" : "銀座", + "close_ymd" : "", + "lon" : 139.76396499999998, + "post" : "104-0061", + "e_status" : 0, + "SUID" : 5953, + "station_g_cd" : 2800111, + "add" : "中央区銀座4-1-2", + "line_cd" : 28003, + "selected" : false, + "open_ymd" : "", + "name" : "2800314", + "pref_name" : "東京都", + "shared_name" : "2800314", + "lat" : 35.671989, + "y" : -356719.89, + "x" : 1397639.65 + }, + "position" : { + "x" : 1397639.65, + "y" : -356719.89 + }, + "selected" : false + }, { + "data" : { + "id" : "5954", + "station_name" : "日比谷", + "close_ymd" : "", + "lon" : 139.76017, + "post" : "100-0006", + "e_status" : 0, + "SUID" : 5954, + "station_g_cd" : 2800315, + "add" : "千代田区有楽町1丁目", + "line_cd" : 28003, + "selected" : false, + "open_ymd" : "", + "name" : "2800315", + "pref_name" : "東京都", + "shared_name" : "2800315", + "lat" : 35.67459, + "y" : -356745.9, + "x" : 1397601.7 + }, + "position" : { + "x" : 1397601.7, + "y" : -356745.9 + }, + "selected" : false + }, { + "data" : { + "id" : "5951", + "station_name" : "築地", + "close_ymd" : "", + "lon" : 139.772603, + "post" : "104-0045", + "e_status" : 0, + "SUID" : 5951, + "station_g_cd" : 2800312, + "add" : "中央区築地3-15-1", + "line_cd" : 28003, + "selected" : false, + "open_ymd" : "", + "name" : "2800312", + "pref_name" : "東京都", + "shared_name" : "2800312", + "lat" : 35.668115, + "y" : -356681.15, + "x" : 1397726.03 + }, + "position" : { + "x" : 1397726.03, + "y" : -356681.15 + }, + "selected" : false + }, { + "data" : { + "id" : "5952", + "station_name" : "東銀座", + "close_ymd" : "", + "lon" : 139.767253, + "post" : "104-0061", + "e_status" : 0, + "SUID" : 5952, + "station_g_cd" : 2800313, + "add" : "中央区銀座4-12-15", + "line_cd" : 28003, + "selected" : false, + "open_ymd" : "", + "name" : "2800313", + "pref_name" : "東京都", + "shared_name" : "2800313", + "lat" : 35.669464000000005, + "y" : -356694.6400000001, + "x" : 1397672.53 + }, + "position" : { + "x" : 1397672.53, + "y" : -356694.6400000001 + }, + "selected" : false + }, { + "data" : { + "id" : "5949", + "station_name" : "茅場町", + "close_ymd" : "", + "lon" : 139.78000500000002, + "post" : "103-0025", + "e_status" : 0, + "SUID" : 5949, + "station_g_cd" : 2800310, + "add" : "中央区日本橋茅場町1-4-6", + "line_cd" : 28003, + "selected" : false, + "open_ymd" : "", + "name" : "2800310", + "pref_name" : "東京都", + "shared_name" : "2800310", + "lat" : 35.679752, + "y" : -356797.52, + "x" : 1397800.0500000003 + }, + "position" : { + "x" : 1397800.0500000003, + "y" : -356797.52 + }, + "selected" : false + }, { + "data" : { + "id" : "5950", + "station_name" : "八丁堀", + "close_ymd" : "", + "lon" : 139.776982, + "post" : "104-0032", + "e_status" : 0, + "SUID" : 5950, + "station_g_cd" : 1132602, + "add" : "中央区八丁堀3丁目", + "line_cd" : 28003, + "selected" : false, + "open_ymd" : "", + "name" : "2800311", + "pref_name" : "東京都", + "shared_name" : "2800311", + "lat" : 35.674851000000004, + "y" : -356748.51000000007, + "x" : 1397769.82 + }, + "position" : { + "x" : 1397769.82, + "y" : -356748.51000000007 + }, + "selected" : false + }, { + "data" : { + "id" : "5930", + "station_name" : "西新宿", + "close_ymd" : "", + "lon" : 139.692778, + "post" : "160-0023", + "e_status" : 0, + "SUID" : 5930, + "station_g_cd" : 2800219, + "add" : "新宿区西新宿6-7-51", + "line_cd" : 28002, + "selected" : false, + "open_ymd" : "", + "name" : "2800219", + "pref_name" : "東京都", + "shared_name" : "2800219", + "lat" : 35.694297999999996, + "y" : -356942.98, + "x" : 1396927.78 + }, + "position" : { + "x" : 1396927.78, + "y" : -356942.98 + }, + "selected" : false + }, { + "data" : { + "id" : "5929", + "station_name" : "新宿", + "close_ymd" : "", + "lon" : 139.700711, + "post" : "-", + "e_status" : 0, + "SUID" : 5929, + "station_g_cd" : 1130208, + "add" : "東京都新宿区西新宿一丁目 西口地下街1号", + "line_cd" : 28002, + "selected" : false, + "open_ymd" : "", + "name" : "2800218", + "pref_name" : "東京都", + "shared_name" : "2800218", + "lat" : 35.69235, + "y" : -356923.5, + "x" : 1397007.11 + }, + "position" : { + "x" : 1397007.11, + "y" : -356923.5 + }, + "selected" : false + }, { + "data" : { + "id" : "5932", + "station_name" : "新中野", + "close_ymd" : "", + "lon" : 139.66903, + "post" : "164-0011", + "e_status" : 0, + "SUID" : 5932, + "station_g_cd" : 2800221, + "add" : "中野区中央4-2-15", + "line_cd" : 28002, + "selected" : false, + "open_ymd" : "", + "name" : "2800221", + "pref_name" : "東京都", + "shared_name" : "2800221", + "lat" : 35.697491, + "y" : -356974.91, + "x" : 1396690.2999999998 + }, + "position" : { + "x" : 1396690.2999999998, + "y" : -356974.91 + }, + "selected" : false + }, { + "data" : { + "id" : "5931", + "station_name" : "中野坂上", + "close_ymd" : "", + "lon" : 139.68291000000002, + "post" : "164-0011", + "e_status" : 0, + "SUID" : 5931, + "station_g_cd" : 2800220, + "add" : "中野区中央2-1-2", + "line_cd" : 28002, + "selected" : false, + "open_ymd" : "", + "name" : "2800220", + "pref_name" : "東京都", + "shared_name" : "2800220", + "lat" : 35.69792, + "y" : -356979.2, + "x" : 1396829.1000000003 + }, + "position" : { + "x" : 1396829.1000000003, + "y" : -356979.2 + }, + "selected" : false + }, { + "data" : { + "id" : "5926", + "station_name" : "四谷三丁目", + "close_ymd" : "", + "lon" : 139.720103, + "post" : "160-0004", + "e_status" : 0, + "SUID" : 5926, + "station_g_cd" : 2800215, + "add" : "新宿区四谷3-8", + "line_cd" : 28002, + "selected" : false, + "open_ymd" : "", + "name" : "2800215", + "pref_name" : "東京都", + "shared_name" : "2800215", + "lat" : 35.687958, + "y" : -356879.58, + "x" : 1397201.03 + }, + "position" : { + "x" : 1397201.03, + "y" : -356879.58 + }, + "selected" : false + }, { + "data" : { + "id" : "5925", + "station_name" : "四ツ谷", + "close_ymd" : "", + "lon" : 139.729947, + "post" : "160-0004", + "e_status" : 0, + "SUID" : 5925, + "station_g_cd" : 1131102, + "add" : "新宿区四谷1丁目", + "line_cd" : 28002, + "selected" : false, + "open_ymd" : "", + "name" : "2800214", + "pref_name" : "東京都", + "shared_name" : "2800214", + "lat" : 35.684585999999996, + "y" : -356845.86, + "x" : 1397299.4700000002 + }, + "position" : { + "x" : 1397299.4700000002, + "y" : -356845.86 + }, + "selected" : false + }, { + "data" : { + "id" : "5928", + "station_name" : "新宿三丁目", + "close_ymd" : "", + "lon" : 139.704895, + "post" : "160-0022", + "e_status" : 0, + "SUID" : 5928, + "station_g_cd" : 2800217, + "add" : "新宿区新宿3-14-1", + "line_cd" : 28002, + "selected" : false, + "open_ymd" : "", + "name" : "2800217", + "pref_name" : "東京都", + "shared_name" : "2800217", + "lat" : 35.690847, + "y" : -356908.47, + "x" : 1397048.95 + }, + "position" : { + "x" : 1397048.95, + "y" : -356908.47 + }, + "selected" : false + }, { + "data" : { + "id" : "5927", + "station_name" : "新宿御苑前", + "close_ymd" : "", + "lon" : 139.71069, + "post" : "160-0022", + "e_status" : 0, + "SUID" : 5927, + "station_g_cd" : 2800216, + "add" : "新宿区新宿1-8-1", + "line_cd" : 28002, + "selected" : false, + "open_ymd" : "", + "name" : "2800216", + "pref_name" : "東京都", + "shared_name" : "2800216", + "lat" : 35.688588, + "y" : -356885.88, + "x" : 1397106.9 + }, + "position" : { + "x" : 1397106.9, + "y" : -356885.88 + }, + "selected" : false + }, { + "data" : { + "id" : "5938", + "station_name" : "中野富士見町", + "close_ymd" : "", + "lon" : 139.666933, + "post" : "164-0013", + "e_status" : 0, + "SUID" : 5938, + "station_g_cd" : 2800227, + "add" : "中野区弥生町5-24-4", + "line_cd" : 28002, + "selected" : false, + "open_ymd" : "", + "name" : "2800227", + "pref_name" : "東京都", + "shared_name" : "2800227", + "lat" : 35.690514, + "y" : -356905.14, + "x" : 1396669.33 + }, + "position" : { + "x" : 1396669.33, + "y" : -356905.14 + }, + "selected" : false + }, { + "data" : { + "id" : "5937", + "station_name" : "荻窪", + "close_ymd" : "", + "lon" : 139.620116, + "post" : "167-0043", + "e_status" : 0, + "SUID" : 5937, + "station_g_cd" : 1131217, + "add" : "杉並区上荻1丁目", + "line_cd" : 28002, + "selected" : false, + "open_ymd" : "", + "name" : "2800225", + "pref_name" : "東京都", + "shared_name" : "2800225", + "lat" : 35.704304, + "y" : -357043.04, + "x" : 1396201.16 + }, + "position" : { + "x" : 1396201.16, + "y" : -357043.04 + }, + "selected" : false + }, { + "data" : { + "id" : "5940", + "station_name" : "北千住", + "close_ymd" : "", + "lon" : 139.804276, + "post" : "120-0026", + "e_status" : 0, + "SUID" : 5940, + "station_g_cd" : 1132005, + "add" : "足立区千住旭町", + "line_cd" : 28003, + "selected" : false, + "open_ymd" : "", + "name" : "2800301", + "pref_name" : "東京都", + "shared_name" : "2800301", + "lat" : 35.748915999999994, + "y" : -357489.1599999999, + "x" : 1398042.7599999998 + }, + "position" : { + "x" : 1398042.7599999998, + "y" : -357489.1599999999 + }, + "selected" : false + }, { + "data" : { + "id" : "5939", + "station_name" : "方南町", + "close_ymd" : "", + "lon" : 139.656498, + "post" : "166-0013", + "e_status" : 0, + "SUID" : 5939, + "station_g_cd" : 2800228, + "add" : "杉並区堀ノ内1-1-1", + "line_cd" : 28002, + "selected" : false, + "open_ymd" : "", + "name" : "2800228", + "pref_name" : "東京都", + "shared_name" : "2800228", + "lat" : 35.683496000000005, + "y" : -356834.9600000001, + "x" : 1396564.98 + }, + "position" : { + "x" : 1396564.98, + "y" : -356834.9600000001 + }, + "selected" : false + }, { + "data" : { + "id" : "5934", + "station_name" : "東高円寺", + "close_ymd" : "", + "lon" : 139.657822, + "post" : "166-0012", + "e_status" : 0, + "SUID" : 5934, + "station_g_cd" : 2800222, + "add" : "杉並区和田3-55-42", + "line_cd" : 28002, + "selected" : false, + "open_ymd" : "", + "name" : "2800222", + "pref_name" : "東京都", + "shared_name" : "2800222", + "lat" : 35.697802, + "y" : -356978.02, + "x" : 1396578.2200000002 + }, + "position" : { + "x" : 1396578.2200000002, + "y" : -356978.02 + }, + "selected" : false + }, { + "data" : { + "id" : "5933", + "station_name" : "中野新橋", + "close_ymd" : "", + "lon" : 139.67399699999999, + "post" : "164-0013", + "e_status" : 0, + "SUID" : 5933, + "station_g_cd" : 2800226, + "add" : "中野区弥生町2-26-8", + "line_cd" : 28002, + "selected" : false, + "open_ymd" : "", + "name" : "2800226", + "pref_name" : "東京都", + "shared_name" : "2800226", + "lat" : 35.692122999999995, + "y" : -356921.2299999999, + "x" : 1396739.97 + }, + "position" : { + "x" : 1396739.97, + "y" : -356921.2299999999 + }, + "selected" : false + }, { + "data" : { + "id" : "5936", + "station_name" : "南阿佐ケ谷", + "close_ymd" : "", + "lon" : 139.63576, + "post" : "166-0004", + "e_status" : 0, + "SUID" : 5936, + "station_g_cd" : 2800224, + "add" : "杉並区阿佐谷南1-15-7", + "line_cd" : 28002, + "selected" : false, + "open_ymd" : "", + "name" : "2800224", + "pref_name" : "東京都", + "shared_name" : "2800224", + "lat" : 35.699624, + "y" : -356996.24, + "x" : 1396357.6 + }, + "position" : { + "x" : 1396357.6, + "y" : -356996.24 + }, + "selected" : false + }, { + "data" : { + "id" : "5935", + "station_name" : "新高円寺", + "close_ymd" : "", + "lon" : 139.648068, + "post" : "166-0003", + "e_status" : 0, + "SUID" : 5935, + "station_g_cd" : 2800223, + "add" : "杉並区高円寺南2-20-1", + "line_cd" : 28002, + "selected" : false, + "open_ymd" : "", + "name" : "2800223", + "pref_name" : "東京都", + "shared_name" : "2800223", + "lat" : 35.697984999999996, + "y" : -356979.85, + "x" : 1396480.68 + }, + "position" : { + "x" : 1396480.68, + "y" : -356979.85 + }, + "selected" : false + }, { + "data" : { + "id" : "5913", + "station_name" : "新大塚", + "close_ymd" : "", + "lon" : 139.729971, + "post" : "112-0012", + "e_status" : 0, + "SUID" : 5913, + "station_g_cd" : 2800202, + "add" : "文京区大塚4-51-5", + "line_cd" : 28002, + "selected" : false, + "open_ymd" : "", + "name" : "2800202", + "pref_name" : "東京都", + "shared_name" : "2800202", + "lat" : 35.72569, + "y" : -357256.9, + "x" : 1397299.71 + }, + "position" : { + "x" : 1397299.71, + "y" : -357256.9 + }, + "selected" : false + }, { + "data" : { + "id" : "5914", + "station_name" : "茗荷谷", + "close_ymd" : "", + "lon" : 139.737184, + "post" : "112-0006", + "e_status" : 0, + "SUID" : 5914, + "station_g_cd" : 2800203, + "add" : "文京区小日向4-6-15", + "line_cd" : 28002, + "selected" : false, + "open_ymd" : "", + "name" : "2800203", + "pref_name" : "東京都", + "shared_name" : "2800203", + "lat" : 35.716989, + "y" : -357169.88999999996, + "x" : 1397371.84 + }, + "position" : { + "x" : 1397371.84, + "y" : -357169.88999999996 + }, + "selected" : false + }, { + "data" : { + "id" : "5915", + "station_name" : "後楽園", + "close_ymd" : "", + "lon" : 139.75186399999998, + "post" : "112-0003", + "e_status" : 0, + "SUID" : 5915, + "station_g_cd" : 2800204, + "add" : "文京区春日1-2-3", + "line_cd" : 28002, + "selected" : false, + "open_ymd" : "", + "name" : "2800204", + "pref_name" : "東京都", + "shared_name" : "2800204", + "lat" : 35.707898, + "y" : -357078.98, + "x" : 1397518.64 + }, + "position" : { + "x" : 1397518.64, + "y" : -357078.98 + }, + "selected" : false + }, { + "data" : { + "id" : "5916", + "station_name" : "本郷三丁目", + "close_ymd" : "", + "lon" : 139.75991399999998, + "post" : "113-0033", + "e_status" : 0, + "SUID" : 5916, + "station_g_cd" : 2800205, + "add" : "文京区本郷2-39-1", + "line_cd" : 28002, + "selected" : false, + "open_ymd" : "", + "name" : "2800205", + "pref_name" : "東京都", + "shared_name" : "2800205", + "lat" : 35.706671, + "y" : -357066.71, + "x" : 1397599.14 + }, + "position" : { + "x" : 1397599.14, + "y" : -357066.71 + }, + "selected" : false + }, { + "data" : { + "id" : "5909", + "station_name" : "外苑前", + "close_ymd" : "", + "lon" : 139.717857, + "post" : "107-0061", + "e_status" : 0, + "SUID" : 5909, + "station_g_cd" : 2800117, + "add" : "港区北青山2-7-16", + "line_cd" : 28001, + "selected" : false, + "open_ymd" : "", + "name" : "2800117", + "pref_name" : "東京都", + "shared_name" : "2800117", + "lat" : 35.670527, + "y" : -356705.27, + "x" : 1397178.57 + }, + "position" : { + "x" : 1397178.57, + "y" : -356705.27 + }, + "selected" : false + }, { + "data" : { + "id" : "5910", + "station_name" : "表参道", + "close_ymd" : "", + "lon" : 139.712314, + "post" : "107-0061", + "e_status" : 0, + "SUID" : 5910, + "station_g_cd" : 2800118, + "add" : "港区北青山3丁目", + "line_cd" : 28001, + "selected" : false, + "open_ymd" : "", + "name" : "2800118", + "pref_name" : "東京都", + "shared_name" : "2800118", + "lat" : 35.665246999999994, + "y" : -356652.4699999999, + "x" : 1397123.14 + }, + "position" : { + "x" : 1397123.14, + "y" : -356652.4699999999 + }, + "selected" : false + }, { + "data" : { + "id" : "5911", + "station_name" : "渋谷", + "close_ymd" : "", + "lon" : 139.701, + "post" : "", + "e_status" : 0, + "SUID" : 5911, + "station_g_cd" : 1130205, + "add" : "東京都渋谷区道玄坂一丁目1-1", + "line_cd" : 28001, + "selected" : false, + "open_ymd" : "", + "name" : "2800119", + "pref_name" : "東京都", + "shared_name" : "2800119", + "lat" : 35.659065999999996, + "y" : -356590.66, + "x" : 1397010.0 + }, + "position" : { + "x" : 1397010.0, + "y" : -356590.66 + }, + "selected" : false + }, { + "data" : { + "id" : "5912", + "station_name" : "池袋", + "close_ymd" : "", + "lon" : 139.71108600000002, + "post" : "", + "e_status" : 0, + "SUID" : 5912, + "station_g_cd" : 1130212, + "add" : "東京都豊島区", + "line_cd" : 28002, + "selected" : false, + "open_ymd" : "", + "name" : "2800201", + "pref_name" : "東京都", + "shared_name" : "2800201", + "lat" : 35.730256, + "y" : -357302.56, + "x" : 1397110.8600000003 + }, + "position" : { + "x" : 1397110.8600000003, + "y" : -357302.56 + }, + "selected" : false + }, { + "data" : { + "id" : "5921", + "station_name" : "銀座", + "close_ymd" : "", + "lon" : 139.76396499999998, + "post" : "104-0061", + "e_status" : 0, + "SUID" : 5921, + "station_g_cd" : 2800111, + "add" : "中央区銀座4-1-2", + "line_cd" : 28002, + "selected" : false, + "open_ymd" : "", + "name" : "2800210", + "pref_name" : "東京都", + "shared_name" : "2800210", + "lat" : 35.671989, + "y" : -356719.89, + "x" : 1397639.65 + }, + "position" : { + "x" : 1397639.65, + "y" : -356719.89 + }, + "selected" : false + }, { + "data" : { + "id" : "5922", + "station_name" : "霞ケ関", + "close_ymd" : "", + "lon" : 139.750899, + "post" : "100-0013", + "e_status" : 0, + "SUID" : 5922, + "station_g_cd" : 2800211, + "add" : "千代田区霞が関2丁目", + "line_cd" : 28002, + "selected" : false, + "open_ymd" : "", + "name" : "2800211", + "pref_name" : "東京都", + "shared_name" : "2800211", + "lat" : 35.673838, + "y" : -356738.38000000006, + "x" : 1397508.99 + }, + "position" : { + "x" : 1397508.99, + "y" : -356738.38000000006 + }, + "selected" : false + }, { + "data" : { + "id" : "5923", + "station_name" : "国会議事堂前", + "close_ymd" : "", + "lon" : 139.745219, + "post" : "100-0014", + "e_status" : 0, + "SUID" : 5923, + "station_g_cd" : 2800212, + "add" : "千代田区永田町1丁目", + "line_cd" : 28002, + "selected" : false, + "open_ymd" : "", + "name" : "2800212", + "pref_name" : "東京都", + "shared_name" : "2800212", + "lat" : 35.67393, + "y" : -356739.3, + "x" : 1397452.19 + }, + "position" : { + "x" : 1397452.19, + "y" : -356739.3 + }, + "selected" : false + }, { + "data" : { + "id" : "5924", + "station_name" : "赤坂見附", + "close_ymd" : "", + "lon" : 139.737047, + "post" : "107-0052", + "e_status" : 0, + "SUID" : 5924, + "station_g_cd" : 2800115, + "add" : "港区赤坂3-1-6", + "line_cd" : 28002, + "selected" : false, + "open_ymd" : "", + "name" : "2800213", + "pref_name" : "東京都", + "shared_name" : "2800213", + "lat" : 35.677021, + "y" : -356770.21, + "x" : 1397370.47 + }, + "position" : { + "x" : 1397370.47, + "y" : -356770.21 + }, + "selected" : false + }, { + "data" : { + "id" : "5917", + "station_name" : "御茶ノ水", + "close_ymd" : "", + "lon" : 139.763952, + "post" : "101-0062", + "e_status" : 0, + "SUID" : 5917, + "station_g_cd" : 1131203, + "add" : "千代田区神田駿河台2丁目", + "line_cd" : 28002, + "selected" : false, + "open_ymd" : "", + "name" : "2800206", + "pref_name" : "東京都", + "shared_name" : "2800206", + "lat" : 35.700614, + "y" : -357006.14, + "x" : 1397639.5199999998 + }, + "position" : { + "x" : 1397639.5199999998, + "y" : -357006.14 + }, + "selected" : false + }, { + "data" : { + "id" : "5918", + "station_name" : "淡路町", + "close_ymd" : "", + "lon" : 139.767575, + "post" : "101-0063", + "e_status" : 0, + "SUID" : 5918, + "station_g_cd" : 2800207, + "add" : "千代田区神田淡路町1-2", + "line_cd" : 28002, + "selected" : false, + "open_ymd" : "", + "name" : "2800207", + "pref_name" : "東京都", + "shared_name" : "2800207", + "lat" : 35.695434000000006, + "y" : -356954.3400000001, + "x" : 1397675.75 + }, + "position" : { + "x" : 1397675.75, + "y" : -356954.3400000001 + }, + "selected" : false + }, { + "data" : { + "id" : "5919", + "station_name" : "大手町", + "close_ymd" : "", + "lon" : 139.7662, + "post" : "100-0004", + "e_status" : 0, + "SUID" : 5919, + "station_g_cd" : 2800208, + "add" : "千代田区大手町1丁目", + "line_cd" : 28002, + "selected" : false, + "open_ymd" : "", + "name" : "2800208", + "pref_name" : "東京都", + "shared_name" : "2800208", + "lat" : 35.686564000000004, + "y" : -356865.64, + "x" : 1397662.0 + }, + "position" : { + "x" : 1397662.0, + "y" : -356865.64 + }, + "selected" : false + }, { + "data" : { + "id" : "5920", + "station_name" : "東京", + "close_ymd" : "", + "lon" : 139.764708, + "post" : "", + "e_status" : 0, + "SUID" : 5920, + "station_g_cd" : 1130101, + "add" : "東京都千代田区丸の内一丁目", + "line_cd" : 28002, + "selected" : false, + "open_ymd" : "", + "name" : "2800209", + "pref_name" : "東京都", + "shared_name" : "2800209", + "lat" : 35.681753, + "y" : -356817.53, + "x" : 1397647.08 + }, + "position" : { + "x" : 1397647.08, + "y" : -356817.53 + }, + "selected" : false + }, { + "data" : { + "id" : "3103", + "station_name" : "赤羽", + "close_ymd" : "", + "lon" : 139.72092800000001, + "post" : "115-0045", + "e_status" : 0, + "SUID" : 3103, + "station_g_cd" : 1131903, + "add" : "北区赤羽1丁目", + "line_cd" : 11321, + "selected" : false, + "open_ymd" : "", + "name" : "1132108", + "pref_name" : "東京都", + "shared_name" : "1132108", + "lat" : 35.778026000000004, + "y" : -357780.26000000007, + "x" : 1397209.2800000003 + }, + "position" : { + "x" : 1397209.2800000003, + "y" : -357780.26000000007 + }, + "selected" : false + }, { + "data" : { + "id" : "3104", + "station_name" : "北赤羽", + "close_ymd" : "", + "lon" : 139.70569, + "post" : "115-0052", + "e_status" : 0, + "SUID" : 3104, + "station_g_cd" : 1132109, + "add" : "北区赤羽北2丁目", + "line_cd" : 11321, + "selected" : false, + "open_ymd" : "", + "name" : "1132109", + "pref_name" : "東京都", + "shared_name" : "1132109", + "lat" : 35.787007, + "y" : -357870.07, + "x" : 1397056.9000000001 + }, + "position" : { + "x" : 1397056.9000000001, + "y" : -357870.07 + }, + "selected" : false + }, { + "data" : { + "id" : "3101", + "station_name" : "板橋", + "close_ymd" : "", + "lon" : 139.719507, + "post" : "173-0004", + "e_status" : 0, + "SUID" : 3101, + "station_g_cd" : 1132106, + "add" : "板橋区板橋1丁目", + "line_cd" : 11321, + "selected" : false, + "open_ymd" : "", + "name" : "1132106", + "pref_name" : "東京都", + "shared_name" : "1132106", + "lat" : 35.745435, + "y" : -357454.35, + "x" : 1397195.0699999998 + }, + "position" : { + "x" : 1397195.0699999998, + "y" : -357454.35 + }, + "selected" : false + }, { + "data" : { + "id" : "3102", + "station_name" : "十条", + "close_ymd" : "", + "lon" : 139.72223300000002, + "post" : "114-0034", + "e_status" : 0, + "SUID" : 3102, + "station_g_cd" : 1132107, + "add" : "北区上十条1丁目", + "line_cd" : 11321, + "selected" : false, + "open_ymd" : "", + "name" : "1132107", + "pref_name" : "東京都", + "shared_name" : "1132107", + "lat" : 35.760321000000005, + "y" : -357603.21, + "x" : 1397222.33 + }, + "position" : { + "x" : 1397222.33, + "y" : -357603.21 + }, + "selected" : false + }, { + "data" : { + "id" : "3105", + "station_name" : "浮間舟渡", + "close_ymd" : "", + "lon" : 139.691341, + "post" : "115-0051", + "e_status" : 0, + "SUID" : 3105, + "station_g_cd" : 1132110, + "add" : "北区浮間4丁目", + "line_cd" : 11321, + "selected" : false, + "open_ymd" : "", + "name" : "1132110", + "pref_name" : "東京都", + "shared_name" : "1132110", + "lat" : 35.791209, + "y" : -357912.09, + "x" : 1396913.41 + }, + "position" : { + "x" : 1396913.41, + "y" : -357912.09 + }, + "selected" : false + }, { + "data" : { + "id" : "3096", + "station_name" : "大崎", + "close_ymd" : "", + "lon" : 139.72843899999998, + "post" : "141-0032", + "e_status" : 0, + "SUID" : 3096, + "station_g_cd" : 1130201, + "add" : "東京都品川区大崎一丁目21-4", + "line_cd" : 11321, + "selected" : false, + "open_ymd" : "", + "name" : "1132101", + "pref_name" : "東京都", + "shared_name" : "1132101", + "lat" : 35.619772, + "y" : -356197.72, + "x" : 1397284.39 + }, + "position" : { + "x" : 1397284.39, + "y" : -356197.72 + }, + "selected" : false + }, { + "data" : { + "id" : "3099", + "station_name" : "新宿", + "close_ymd" : "", + "lon" : 139.70046399999998, + "post" : "160-0022", + "e_status" : 0, + "SUID" : 3099, + "station_g_cd" : 1130208, + "add" : "東京都新宿区新宿三丁目38-1", + "line_cd" : 11321, + "selected" : false, + "open_ymd" : "", + "name" : "1132104", + "pref_name" : "東京都", + "shared_name" : "1132104", + "lat" : 35.689729, + "y" : -356897.29, + "x" : 1397004.64 + }, + "position" : { + "x" : 1397004.64, + "y" : -356897.29 + }, + "selected" : false + }, { + "data" : { + "id" : "5300", + "station_name" : "曳舟", + "close_ymd" : "", + "lon" : 139.81663400000002, + "post" : "131-0032", + "e_status" : 0, + "SUID" : 5300, + "station_g_cd" : 2100204, + "add" : "墨田区東向島2丁目", + "line_cd" : 21005, + "selected" : false, + "open_ymd" : "", + "name" : "2100501", + "pref_name" : "東京都", + "shared_name" : "2100501", + "lat" : 35.718418, + "y" : -357184.18, + "x" : 1398166.3400000003 + }, + "position" : { + "x" : 1398166.3400000003, + "y" : -357184.18 + }, + "selected" : false + }, { + "data" : { + "id" : "3100", + "station_name" : "池袋", + "close_ymd" : "", + "lon" : 139.71108600000002, + "post" : "170-0000", + "e_status" : 0, + "SUID" : 3100, + "station_g_cd" : 1130212, + "add" : "東京都豊島区", + "line_cd" : 11321, + "selected" : false, + "open_ymd" : "", + "name" : "1132105", + "pref_name" : "東京都", + "shared_name" : "1132105", + "lat" : 35.730256, + "y" : -357302.56, + "x" : 1397110.8600000003 + }, + "position" : { + "x" : 1397110.8600000003, + "y" : -357302.56 + }, + "selected" : false + }, { + "data" : { + "id" : "3097", + "station_name" : "恵比寿", + "close_ymd" : "", + "lon" : 139.71007, + "post" : "151-0022", + "e_status" : 0, + "SUID" : 3097, + "station_g_cd" : 1130204, + "add" : "東京都渋谷区恵比寿南一丁目5-5", + "line_cd" : 11321, + "selected" : false, + "open_ymd" : "", + "name" : "1132102", + "pref_name" : "東京都", + "shared_name" : "1132102", + "lat" : 35.646685, + "y" : -356466.85, + "x" : 1397100.7 + }, + "position" : { + "x" : 1397100.7, + "y" : -356466.85 + }, + "selected" : false + }, { + "data" : { + "id" : "3098", + "station_name" : "渋谷", + "close_ymd" : "", + "lon" : 139.701238, + "post" : "150-0043", + "e_status" : 0, + "SUID" : 3098, + "station_g_cd" : 1130205, + "add" : "東京都渋谷区道玄坂一丁目1-1", + "line_cd" : 11321, + "selected" : false, + "open_ymd" : "", + "name" : "1132103", + "pref_name" : "東京都", + "shared_name" : "1132103", + "lat" : 35.658871000000005, + "y" : -356588.71, + "x" : 1397012.38 + }, + "position" : { + "x" : 1397012.38, + "y" : -356588.71 + }, + "selected" : false + }, { + "data" : { + "id" : "5302", + "station_name" : "東あずま", + "close_ymd" : "", + "lon" : 139.831883, + "post" : "131-0043", + "e_status" : 0, + "SUID" : 5302, + "station_g_cd" : 2100503, + "add" : "墨田区立花4-23-8", + "line_cd" : 21005, + "selected" : false, + "open_ymd" : "", + "name" : "2100503", + "pref_name" : "東京都", + "shared_name" : "2100503", + "lat" : 35.707066999999995, + "y" : -357070.6699999999, + "x" : 1398318.83 + }, + "position" : { + "x" : 1398318.83, + "y" : -357070.6699999999 + }, + "selected" : false + }, { + "data" : { + "id" : "5301", + "station_name" : "小村井", + "close_ymd" : "", + "lon" : 139.827595, + "post" : "131-0044", + "e_status" : 0, + "SUID" : 5301, + "station_g_cd" : 2100502, + "add" : "墨田区文花2-20-1", + "line_cd" : 21005, + "selected" : false, + "open_ymd" : "", + "name" : "2100502", + "pref_name" : "東京都", + "shared_name" : "2100502", + "lat" : 35.710316, + "y" : -357103.16, + "x" : 1398275.95 + }, + "position" : { + "x" : 1398275.95, + "y" : -357103.16 + }, + "selected" : false + }, { + "data" : { + "id" : "5304", + "station_name" : "亀戸", + "close_ymd" : "", + "lon" : 139.826791, + "post" : "136-0071", + "e_status" : 0, + "SUID" : 5304, + "station_g_cd" : 1131323, + "add" : "江東区亀戸5丁目", + "line_cd" : 21005, + "selected" : false, + "open_ymd" : "", + "name" : "2100505", + "pref_name" : "東京都", + "shared_name" : "2100505", + "lat" : 35.697708, + "y" : -356977.07999999996, + "x" : 1398267.91 + }, + "position" : { + "x" : 1398267.91, + "y" : -356977.07999999996 + }, + "selected" : false + }, { + "data" : { + "id" : "5303", + "station_name" : "亀戸水神", + "close_ymd" : "", + "lon" : 139.83342199999998, + "post" : "136-0071", + "e_status" : 0, + "SUID" : 5303, + "station_g_cd" : 2100504, + "add" : "江東区亀戸8-5-1", + "line_cd" : 21005, + "selected" : false, + "open_ymd" : "", + "name" : "2100504", + "pref_name" : "東京都", + "shared_name" : "2100504", + "lat" : 35.699976, + "y" : -356999.76, + "x" : 1398334.2199999997 + }, + "position" : { + "x" : 1398334.2199999997, + "y" : -356999.76 + }, + "selected" : false + }, { + "data" : { + "id" : "5306", + "station_name" : "大師前", + "close_ymd" : "", + "lon" : 139.781647, + "post" : "123-0841", + "e_status" : 0, + "SUID" : 5306, + "station_g_cd" : 2100602, + "add" : "足立区西新井1-3-1", + "line_cd" : 21006, + "selected" : false, + "open_ymd" : "", + "name" : "2100602", + "pref_name" : "東京都", + "shared_name" : "2100602", + "lat" : 35.778989, + "y" : -357789.89, + "x" : 1397816.47 + }, + "position" : { + "x" : 1397816.47, + "y" : -357789.89 + }, + "selected" : false + }, { + "data" : { + "id" : "5305", + "station_name" : "西新井", + "close_ymd" : "", + "lon" : 139.790372, + "post" : "123-0843", + "e_status" : 0, + "SUID" : 5305, + "station_g_cd" : 2100213, + "add" : "足立区西新井栄町2丁目", + "line_cd" : 21006, + "selected" : false, + "open_ymd" : "", + "name" : "2100601", + "pref_name" : "東京都", + "shared_name" : "2100601", + "lat" : 35.777322999999996, + "y" : -357773.23, + "x" : 1397903.72 + }, + "position" : { + "x" : 1397903.72, + "y" : -357773.23 + }, + "selected" : false + }, { + "data" : { + "id" : "3126", + "station_name" : "上野", + "close_ymd" : "", + "lon" : 139.777043, + "post" : "", + "e_status" : 0, + "SUID" : 3126, + "station_g_cd" : 1130220, + "add" : "東京都台東区上野七丁目1-1", + "line_cd" : 11323, + "selected" : false, + "open_ymd" : "", + "name" : "1132301", + "pref_name" : "東京都", + "shared_name" : "1132301", + "lat" : 35.71379, + "y" : -357137.9, + "x" : 1397770.43 + }, + "position" : { + "x" : 1397770.43, + "y" : -357137.9 + }, + "selected" : false + }, { + "data" : { + "id" : "3127", + "station_name" : "尾久", + "close_ymd" : "", + "lon" : 139.753846, + "post" : "114-0011", + "e_status" : 0, + "SUID" : 3127, + "station_g_cd" : 1131902, + "add" : "北区昭和町1丁目", + "line_cd" : 11323, + "selected" : false, + "open_ymd" : "", + "name" : "1132302", + "pref_name" : "東京都", + "shared_name" : "1132302", + "lat" : 35.746829999999996, + "y" : -357468.29999999993, + "x" : 1397538.4600000002 + }, + "position" : { + "x" : 1397538.4600000002, + "y" : -357468.29999999993 + }, + "selected" : false + }, { + "data" : { + "id" : "3128", + "station_name" : "赤羽", + "close_ymd" : "", + "lon" : 139.72092800000001, + "post" : "115-0045", + "e_status" : 0, + "SUID" : 3128, + "station_g_cd" : 1131903, + "add" : "北区赤羽1丁目", + "line_cd" : 11323, + "selected" : false, + "open_ymd" : "", + "name" : "1132303", + "pref_name" : "東京都", + "shared_name" : "1132303", + "lat" : 35.778026000000004, + "y" : -357780.26000000007, + "x" : 1397209.2800000003 + }, + "position" : { + "x" : 1397209.2800000003, + "y" : -357780.26000000007 + }, + "selected" : false + }, { + "data" : { + "id" : "5363", + "station_name" : "椎名町", + "close_ymd" : "", + "lon" : 139.69436299999998, + "post" : "171-0051", + "e_status" : 0, + "SUID" : 5363, + "station_g_cd" : 2200102, + "add" : "豊島区長崎1-1-22", + "line_cd" : 22001, + "selected" : false, + "open_ymd" : "", + "name" : "2200102", + "pref_name" : "東京都", + "shared_name" : "2200102", + "lat" : 35.726572, + "y" : -357265.72, + "x" : 1396943.63 + }, + "position" : { + "x" : 1396943.63, + "y" : -357265.72 + }, + "selected" : false + }, { + "data" : { + "id" : "5364", + "station_name" : "東長崎", + "close_ymd" : "", + "lon" : 139.683294, + "post" : "171-0051", + "e_status" : 0, + "SUID" : 5364, + "station_g_cd" : 2200103, + "add" : "豊島区長崎5-1-1", + "line_cd" : 22001, + "selected" : false, + "open_ymd" : "", + "name" : "2200103", + "pref_name" : "東京都", + "shared_name" : "2200103", + "lat" : 35.73003, + "y" : -357300.3, + "x" : 1396832.94 + }, + "position" : { + "x" : 1396832.94, + "y" : -357300.3 + }, + "selected" : false + }, { + "data" : { + "id" : "5362", + "station_name" : "池袋", + "close_ymd" : "", + "lon" : 139.711461, + "post" : "171-0022", + "e_status" : 0, + "SUID" : 5362, + "station_g_cd" : 1130212, + "add" : "東京都豊島区南池袋一丁目28-2", + "line_cd" : 22001, + "selected" : false, + "open_ymd" : "", + "name" : "2200101", + "pref_name" : "東京都", + "shared_name" : "2200101", + "lat" : 35.72913, + "y" : -357291.3, + "x" : 1397114.61 + }, + "position" : { + "x" : 1397114.61, + "y" : -357291.3 + }, + "selected" : false + }, { + "data" : { + "id" : "5370", + "station_name" : "練馬高野台", + "close_ymd" : "", + "lon" : 139.616749, + "post" : "177-0033", + "e_status" : 0, + "SUID" : 5370, + "station_g_cd" : 2200109, + "add" : "練馬区高野台1-7-27", + "line_cd" : 22001, + "selected" : false, + "open_ymd" : "", + "name" : "2200109", + "pref_name" : "東京都", + "shared_name" : "2200109", + "lat" : 35.740621999999995, + "y" : -357406.22, + "x" : 1396167.49 + }, + "position" : { + "x" : 1396167.49, + "y" : -357406.22 + }, + "selected" : false + }, { + "data" : { + "id" : "5369", + "station_name" : "富士見台", + "close_ymd" : "", + "lon" : 139.62968999999998, + "post" : "176-0021", + "e_status" : 0, + "SUID" : 5369, + "station_g_cd" : 2200108, + "add" : "練馬区貫井3-7-4", + "line_cd" : 22001, + "selected" : false, + "open_ymd" : "", + "name" : "2200108", + "pref_name" : "東京都", + "shared_name" : "2200108", + "lat" : 35.735867, + "y" : -357358.67, + "x" : 1396296.9 + }, + "position" : { + "x" : 1396296.9, + "y" : -357358.67 + }, + "selected" : false + }, { + "data" : { + "id" : "5372", + "station_name" : "大泉学園", + "close_ymd" : "", + "lon" : 139.586732, + "post" : "178-0063", + "e_status" : 0, + "SUID" : 5372, + "station_g_cd" : 2200111, + "add" : "練馬区東大泉1-29-7", + "line_cd" : 22001, + "selected" : false, + "open_ymd" : "", + "name" : "2200111", + "pref_name" : "東京都", + "shared_name" : "2200111", + "lat" : 35.749406, + "y" : -357494.06, + "x" : 1395867.32 + }, + "position" : { + "x" : 1395867.32, + "y" : -357494.06 + }, + "selected" : false + }, { + "data" : { + "id" : "5371", + "station_name" : "石神井公園", + "close_ymd" : "", + "lon" : 139.60698100000002, + "post" : "177-0041", + "e_status" : 0, + "SUID" : 5371, + "station_g_cd" : 2200110, + "add" : "練馬区石神井町3-23-10", + "line_cd" : 22001, + "selected" : false, + "open_ymd" : "", + "name" : "2200110", + "pref_name" : "東京都", + "shared_name" : "2200110", + "lat" : 35.743563, + "y" : -357435.63, + "x" : 1396069.8100000003 + }, + "position" : { + "x" : 1396069.8100000003, + "y" : -357435.63 + }, + "selected" : false + }, { + "data" : { + "id" : "3214", + "station_name" : "葛西臨海公園", + "close_ymd" : "", + "lon" : 139.861529, + "post" : "134-0086", + "e_status" : 0, + "SUID" : 3214, + "station_g_cd" : 1132606, + "add" : "江戸川区臨海町6丁目", + "line_cd" : 11326, + "selected" : false, + "open_ymd" : "", + "name" : "1132606", + "pref_name" : "東京都", + "shared_name" : "1132606", + "lat" : 35.644391999999996, + "y" : -356443.92, + "x" : 1398615.2899999998 + }, + "position" : { + "x" : 1398615.2899999998, + "y" : -356443.92 + }, + "selected" : false + }, { + "data" : { + "id" : "5366", + "station_name" : "桜台", + "close_ymd" : "", + "lon" : 139.662602, + "post" : "176-0002", + "e_status" : 0, + "SUID" : 5366, + "station_g_cd" : 2200105, + "add" : "練馬区桜台1-5-1", + "line_cd" : 22001, + "selected" : false, + "open_ymd" : "", + "name" : "2200105", + "pref_name" : "東京都", + "shared_name" : "2200105", + "lat" : 35.738797, + "y" : -357387.97, + "x" : 1396626.02 + }, + "position" : { + "x" : 1396626.02, + "y" : -357387.97 + }, + "selected" : false + }, { + "data" : { + "id" : "3213", + "station_name" : "新木場", + "close_ymd" : "", + "lon" : 139.827402, + "post" : "", + "e_status" : 0, + "SUID" : 3213, + "station_g_cd" : 1132605, + "add" : "東京都江東区新木場一丁目5", + "line_cd" : 11326, + "selected" : false, + "open_ymd" : "", + "name" : "1132605", + "pref_name" : "東京都", + "shared_name" : "1132605", + "lat" : 35.646172, + "y" : -356461.72, + "x" : 1398274.02 + }, + "position" : { + "x" : 1398274.02, + "y" : -356461.72 + }, + "selected" : false + }, { + "data" : { + "id" : "5365", + "station_name" : "江古田", + "close_ymd" : "", + "lon" : 139.672814, + "post" : "176-0005", + "e_status" : 0, + "SUID" : 5365, + "station_g_cd" : 2200104, + "add" : "練馬区旭丘1-78-7", + "line_cd" : 22001, + "selected" : false, + "open_ymd" : "", + "name" : "2200104", + "pref_name" : "東京都", + "shared_name" : "2200104", + "lat" : 35.737557, + "y" : -357375.57, + "x" : 1396728.14 + }, + "position" : { + "x" : 1396728.14, + "y" : -357375.57 + }, + "selected" : false + }, { + "data" : { + "id" : "5368", + "station_name" : "中村橋", + "close_ymd" : "", + "lon" : 139.63745600000001, + "post" : "176-0023", + "e_status" : 0, + "SUID" : 5368, + "station_g_cd" : 2200107, + "add" : "練馬区中村北4-2-1", + "line_cd" : 22001, + "selected" : false, + "open_ymd" : "", + "name" : "2200107", + "pref_name" : "東京都", + "shared_name" : "2200107", + "lat" : 35.736767, + "y" : -357367.67, + "x" : 1396374.56 + }, + "position" : { + "x" : 1396374.56, + "y" : -357367.67 + }, + "selected" : false + }, { + "data" : { + "id" : "5367", + "station_name" : "練馬", + "close_ymd" : "", + "lon" : 139.654368, + "post" : "176-0001", + "e_status" : 0, + "SUID" : 5367, + "station_g_cd" : 2200106, + "add" : "練馬区練馬1-3-5", + "line_cd" : 22001, + "selected" : false, + "open_ymd" : "", + "name" : "2200106", + "pref_name" : "東京都", + "shared_name" : "2200106", + "lat" : 35.737893, + "y" : -357378.93, + "x" : 1396543.6800000002 + }, + "position" : { + "x" : 1396543.6800000002, + "y" : -357378.93 + }, + "selected" : false + }, { + "data" : { + "id" : "3210", + "station_name" : "八丁堀", + "close_ymd" : "", + "lon" : 139.777705, + "post" : "104-0032", + "e_status" : 0, + "SUID" : 3210, + "station_g_cd" : 1132602, + "add" : "中央区八丁堀3丁目", + "line_cd" : 11326, + "selected" : false, + "open_ymd" : "", + "name" : "1132602", + "pref_name" : "東京都", + "shared_name" : "1132602", + "lat" : 35.674617, + "y" : -356746.17, + "x" : 1397777.05 + }, + "position" : { + "x" : 1397777.05, + "y" : -356746.17 + }, + "selected" : false + }, { + "data" : { + "id" : "3209", + "station_name" : "東京", + "close_ymd" : "", + "lon" : 139.76610300000002, + "post" : "-", + "e_status" : 0, + "SUID" : 3209, + "station_g_cd" : 1130101, + "add" : "東京都千代田区丸の内一丁目", + "line_cd" : 11326, + "selected" : false, + "open_ymd" : "", + "name" : "1132601", + "pref_name" : "東京都", + "shared_name" : "1132601", + "lat" : 35.681391, + "y" : -356813.91, + "x" : 1397661.0300000003 + }, + "position" : { + "x" : 1397661.0300000003, + "y" : -356813.91 + }, + "selected" : false + }, { + "data" : { + "id" : "5377", + "station_name" : "秋津", + "close_ymd" : "", + "lon" : 139.49653899999998, + "post" : "189-0001", + "e_status" : 0, + "SUID" : 5377, + "station_g_cd" : 2200116, + "add" : "東村山市秋津町5-7-8", + "line_cd" : 22001, + "selected" : false, + "open_ymd" : "", + "name" : "2200116", + "pref_name" : "東京都", + "shared_name" : "2200116", + "lat" : 35.778614000000005, + "y" : -357786.1400000001, + "x" : 1394965.39 + }, + "position" : { + "x" : 1394965.39, + "y" : -357786.1400000001 + }, + "selected" : false + }, { + "data" : { + "id" : "3212", + "station_name" : "潮見", + "close_ymd" : "", + "lon" : 139.817341, + "post" : "135-0052", + "e_status" : 0, + "SUID" : 3212, + "station_g_cd" : 1132604, + "add" : "江東区潮見2丁目", + "line_cd" : 11326, + "selected" : false, + "open_ymd" : "", + "name" : "1132604", + "pref_name" : "東京都", + "shared_name" : "1132604", + "lat" : 35.658702000000005, + "y" : -356587.0200000001, + "x" : 1398173.41 + }, + "position" : { + "x" : 1398173.41, + "y" : -356587.0200000001 + }, + "selected" : false + }, { + "data" : { + "id" : "3211", + "station_name" : "越中島", + "close_ymd" : "", + "lon" : 139.792713, + "post" : "135-0044", + "e_status" : 0, + "SUID" : 3211, + "station_g_cd" : 1132603, + "add" : "江東区越中島2丁目", + "line_cd" : 11326, + "selected" : false, + "open_ymd" : "", + "name" : "1132603", + "pref_name" : "東京都", + "shared_name" : "1132603", + "lat" : 35.667946, + "y" : -356679.46, + "x" : 1397927.13 + }, + "position" : { + "x" : 1397927.13, + "y" : -356679.46 + }, + "selected" : false + }, { + "data" : { + "id" : "5374", + "station_name" : "ひばりヶ丘", + "close_ymd" : "", + "lon" : 139.545852, + "post" : "202-0005", + "e_status" : 0, + "SUID" : 5374, + "station_g_cd" : 2200113, + "add" : "東京都西東京市住吉町三丁目", + "line_cd" : 22001, + "selected" : false, + "open_ymd" : "", + "name" : "2200113", + "pref_name" : "東京都", + "shared_name" : "2200113", + "lat" : 35.751484999999995, + "y" : -357514.85, + "x" : 1395458.52 + }, + "position" : { + "x" : 1395458.52, + "y" : -357514.85 + }, + "selected" : false + }, { + "data" : { + "id" : "5373", + "station_name" : "保谷", + "close_ymd" : "", + "lon" : 139.567753, + "post" : "202-0012", + "e_status" : 0, + "SUID" : 5373, + "station_g_cd" : 2200112, + "add" : "西東京市東町3-14-30", + "line_cd" : 22001, + "selected" : false, + "open_ymd" : "", + "name" : "2200112", + "pref_name" : "東京都", + "shared_name" : "2200112", + "lat" : 35.748222, + "y" : -357482.22, + "x" : 1395677.53 + }, + "position" : { + "x" : 1395677.53, + "y" : -357482.22 + }, + "selected" : false + }, { + "data" : { + "id" : "5376", + "station_name" : "清瀬", + "close_ymd" : "", + "lon" : 139.519917, + "post" : "204-0021", + "e_status" : 0, + "SUID" : 5376, + "station_g_cd" : 2200115, + "add" : "清瀬市元町1-2-4", + "line_cd" : 22001, + "selected" : false, + "open_ymd" : "", + "name" : "2200115", + "pref_name" : "東京都", + "shared_name" : "2200115", + "lat" : 35.772221, + "y" : -357722.21, + "x" : 1395199.17 + }, + "position" : { + "x" : 1395199.17, + "y" : -357722.21 + }, + "selected" : false + }, { + "data" : { + "id" : "5375", + "station_name" : "東久留米", + "close_ymd" : "", + "lon" : 139.533739, + "post" : "203-0014", + "e_status" : 0, + "SUID" : 5375, + "station_g_cd" : 2200114, + "add" : "東久留米市東本町1-8", + "line_cd" : 22001, + "selected" : false, + "open_ymd" : "", + "name" : "2200114", + "pref_name" : "東京都", + "shared_name" : "2200114", + "lat" : 35.760445000000004, + "y" : -357604.45000000007, + "x" : 1395337.39 + }, + "position" : { + "x" : 1395337.39, + "y" : -357604.45000000007 + }, + "selected" : false + }, { + "data" : { + "id" : "7607", + "station_name" : "中井", + "close_ymd" : "", + "lon" : 139.68635600000002, + "post" : "161-0032", + "e_status" : 0, + "SUID" : 7607, + "station_g_cd" : 2200704, + "add" : "新宿区中落合1-19-1", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930132", + "pref_name" : "東京都", + "shared_name" : "9930132", + "lat" : 35.714034999999996, + "y" : -357140.35, + "x" : 1396863.5600000003 + }, + "position" : { + "x" : 1396863.5600000003, + "y" : -357140.35 + }, + "selected" : false + }, { + "data" : { + "id" : "5151", + "station_name" : "ときわ台", + "close_ymd" : "", + "lon" : 139.68901499999998, + "post" : "174-0071", + "e_status" : 0, + "SUID" : 5151, + "station_g_cd" : 2100106, + "add" : "板橋区常盤台1-43-1", + "line_cd" : 21001, + "selected" : false, + "open_ymd" : "", + "name" : "2100106", + "pref_name" : "東京都", + "shared_name" : "2100106", + "lat" : 35.758771, + "y" : -357587.71, + "x" : 1396890.15 + }, + "position" : { + "x" : 1396890.15, + "y" : -357587.71 + }, + "selected" : false + }, { + "data" : { + "id" : "7608", + "station_name" : "落合南長崎", + "close_ymd" : "", + "lon" : 139.683303, + "post" : "161-0031", + "e_status" : 0, + "SUID" : 7608, + "station_g_cd" : 9930133, + "add" : "新宿区西落合3-1-18", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930133", + "pref_name" : "東京都", + "shared_name" : "9930133", + "lat" : 35.723608, + "y" : -357236.07999999996, + "x" : 1396833.03 + }, + "position" : { + "x" : 1396833.03, + "y" : -357236.07999999996 + }, + "selected" : false + }, { + "data" : { + "id" : "5152", + "station_name" : "上板橋", + "close_ymd" : "", + "lon" : 139.67641, + "post" : "174-0076", + "e_status" : 0, + "SUID" : 5152, + "station_g_cd" : 2100107, + "add" : "板橋区上板橋2-36-7", + "line_cd" : 21001, + "selected" : false, + "open_ymd" : "", + "name" : "2100107", + "pref_name" : "東京都", + "shared_name" : "2100107", + "lat" : 35.763596, + "y" : -357635.96, + "x" : 1396764.1 + }, + "position" : { + "x" : 1396764.1, + "y" : -357635.96 + }, + "selected" : false + }, { + "data" : { + "id" : "7605", + "station_name" : "中野坂上", + "close_ymd" : "", + "lon" : 139.682279, + "post" : "164-0011", + "e_status" : 0, + "SUID" : 7605, + "station_g_cd" : 2800220, + "add" : "中野区中央2-1-2", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930130", + "pref_name" : "東京都", + "shared_name" : "9930130", + "lat" : 35.69709, + "y" : -356970.9, + "x" : 1396822.79 + }, + "position" : { + "x" : 1396822.79, + "y" : -356970.9 + }, + "selected" : false + }, { + "data" : { + "id" : "5149", + "station_name" : "大山", + "close_ymd" : "", + "lon" : 139.702589, + "post" : "173-0023", + "e_status" : 0, + "SUID" : 5149, + "station_g_cd" : 2100104, + "add" : "板橋区大山町4-1", + "line_cd" : 21001, + "selected" : false, + "open_ymd" : "", + "name" : "2100104", + "pref_name" : "東京都", + "shared_name" : "2100104", + "lat" : 35.748398, + "y" : -357483.98000000004, + "x" : 1397025.89 + }, + "position" : { + "x" : 1397025.89, + "y" : -357483.98000000004 + }, + "selected" : false + }, { + "data" : { + "id" : "7606", + "station_name" : "東中野", + "close_ymd" : "", + "lon" : 139.682987, + "post" : "164-0003", + "e_status" : 0, + "SUID" : 7606, + "station_g_cd" : 1131213, + "add" : "中野区東中野4丁目", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930131", + "pref_name" : "東京都", + "shared_name" : "9930131", + "lat" : 35.706891, + "y" : -357068.91, + "x" : 1396829.8699999999 + }, + "position" : { + "x" : 1396829.8699999999, + "y" : -357068.91 + }, + "selected" : false + }, { + "data" : { + "id" : "5150", + "station_name" : "中板橋", + "close_ymd" : "", + "lon" : 139.694628, + "post" : "173-0021", + "e_status" : 0, + "SUID" : 5150, + "station_g_cd" : 2100105, + "add" : "板橋区弥生町33-1", + "line_cd" : 21001, + "selected" : false, + "open_ymd" : "", + "name" : "2100105", + "pref_name" : "東京都", + "shared_name" : "2100105", + "lat" : 35.756214, + "y" : -357562.14, + "x" : 1396946.28 + }, + "position" : { + "x" : 1396946.28, + "y" : -357562.14 + }, + "selected" : false + }, { + "data" : { + "id" : "7611", + "station_name" : "豊島園", + "close_ymd" : "", + "lon" : 139.64911, + "post" : "176-0001", + "e_status" : 0, + "SUID" : 7611, + "station_g_cd" : 2200402, + "add" : "練馬区練馬4-16-5", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930136", + "pref_name" : "東京都", + "shared_name" : "9930136", + "lat" : 35.742067, + "y" : -357420.67, + "x" : 1396491.1 + }, + "position" : { + "x" : 1396491.1, + "y" : -357420.67 + }, + "selected" : false + }, { + "data" : { + "id" : "5155", + "station_name" : "成増", + "close_ymd" : "", + "lon" : 139.632708, + "post" : "175-0094", + "e_status" : 0, + "SUID" : 5155, + "station_g_cd" : 2100110, + "add" : "板橋区成増2-13-1", + "line_cd" : 21001, + "selected" : false, + "open_ymd" : "", + "name" : "2100110", + "pref_name" : "東京都", + "shared_name" : "2100110", + "lat" : 35.777722999999995, + "y" : -357777.2299999999, + "x" : 1396327.08 + }, + "position" : { + "x" : 1396327.08, + "y" : -357777.2299999999 + }, + "selected" : false + }, { + "data" : { + "id" : "7612", + "station_name" : "練馬春日町", + "close_ymd" : "", + "lon" : 139.64023600000002, + "post" : "179-0074", + "e_status" : 0, + "SUID" : 7612, + "station_g_cd" : 9930137, + "add" : "練馬区春日町3-29-25", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930137", + "pref_name" : "東京都", + "shared_name" : "9930137", + "lat" : 35.751452, + "y" : -357514.52, + "x" : 1396402.36 + }, + "position" : { + "x" : 1396402.36, + "y" : -357514.52 + }, + "selected" : false + }, { + "data" : { + "id" : "7609", + "station_name" : "新江古田", + "close_ymd" : "", + "lon" : 139.67065300000002, + "post" : "165-0023", + "e_status" : 0, + "SUID" : 7609, + "station_g_cd" : 9930134, + "add" : "中野区江原町2-29-13", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930134", + "pref_name" : "東京都", + "shared_name" : "9930134", + "lat" : 35.732538, + "y" : -357325.38, + "x" : 1396706.5300000003 + }, + "position" : { + "x" : 1396706.5300000003, + "y" : -357325.38 + }, + "selected" : false + }, { + "data" : { + "id" : "5153", + "station_name" : "東武練馬", + "close_ymd" : "", + "lon" : 139.66196399999998, + "post" : "175-0083", + "e_status" : 0, + "SUID" : 5153, + "station_g_cd" : 2100108, + "add" : "板橋区徳丸2-2-14", + "line_cd" : 21001, + "selected" : false, + "open_ymd" : "", + "name" : "2100108", + "pref_name" : "東京都", + "shared_name" : "2100108", + "lat" : 35.768698, + "y" : -357686.98, + "x" : 1396619.64 + }, + "position" : { + "x" : 1396619.64, + "y" : -357686.98 + }, + "selected" : false + }, { + "data" : { + "id" : "7610", + "station_name" : "練馬", + "close_ymd" : "", + "lon" : 139.65476999999998, + "post" : "176-0001", + "e_status" : 0, + "SUID" : 7610, + "station_g_cd" : 2200106, + "add" : "練馬区練馬1-3-5", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930135", + "pref_name" : "東京都", + "shared_name" : "9930135", + "lat" : 35.737404, + "y" : -357374.04, + "x" : 1396547.7 + }, + "position" : { + "x" : 1396547.7, + "y" : -357374.04 + }, + "selected" : false + }, { + "data" : { + "id" : "5154", + "station_name" : "下赤塚", + "close_ymd" : "", + "lon" : 139.644482, + "post" : "175-0093", + "e_status" : 0, + "SUID" : 5154, + "station_g_cd" : 2100109, + "add" : "板橋区赤塚新町1-23-1", + "line_cd" : 21001, + "selected" : false, + "open_ymd" : "", + "name" : "2100109", + "pref_name" : "東京都", + "shared_name" : "2100109", + "lat" : 35.770558, + "y" : -357705.58, + "x" : 1396444.82 + }, + "position" : { + "x" : 1396444.82, + "y" : -357705.58 + }, + "selected" : false + }, { + "data" : { + "id" : "7615", + "station_name" : "馬込", + "close_ymd" : "", + "lon" : 139.711772, + "post" : "143-0021", + "e_status" : 0, + "SUID" : 7615, + "station_g_cd" : 9930202, + "add" : "大田区北馬込2-31-9", + "line_cd" : 99302, + "selected" : false, + "open_ymd" : "", + "name" : "9930202", + "pref_name" : "東京都", + "shared_name" : "9930202", + "lat" : 35.596435, + "y" : -355964.35, + "x" : 1397117.72 + }, + "position" : { + "x" : 1397117.72, + "y" : -355964.35 + }, + "selected" : false + }, { + "data" : { + "id" : "7616", + "station_name" : "中延", + "close_ymd" : "", + "lon" : 139.713736, + "post" : "142-0053", + "e_status" : 0, + "SUID" : 7616, + "station_g_cd" : 2600404, + "add" : "品川区中延4-5-5", + "line_cd" : 99302, + "selected" : false, + "open_ymd" : "", + "name" : "9930203", + "pref_name" : "東京都", + "shared_name" : "9930203", + "lat" : 35.605769, + "y" : -356057.69, + "x" : 1397137.36 + }, + "position" : { + "x" : 1397137.36, + "y" : -356057.69 + }, + "selected" : false + }, { + "data" : { + "id" : "7613", + "station_name" : "光が丘", + "close_ymd" : "", + "lon" : 139.628603, + "post" : "179-0072", + "e_status" : 0, + "SUID" : 7613, + "station_g_cd" : 9930138, + "add" : "練馬区光が丘2-9-5", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930138", + "pref_name" : "東京都", + "shared_name" : "9930138", + "lat" : 35.758526, + "y" : -357585.26, + "x" : 1396286.03 + }, + "position" : { + "x" : 1396286.03, + "y" : -357585.26 + }, + "selected" : false + }, { + "data" : { + "id" : "7614", + "station_name" : "西馬込", + "close_ymd" : "", + "lon" : 139.705942, + "post" : "143-0026", + "e_status" : 0, + "SUID" : 7614, + "station_g_cd" : 9930201, + "add" : "大田区西馬込2-1-6", + "line_cd" : 99302, + "selected" : false, + "open_ymd" : "", + "name" : "9930201", + "pref_name" : "東京都", + "shared_name" : "9930201", + "lat" : 35.586859000000004, + "y" : -355868.59, + "x" : 1397059.42 + }, + "position" : { + "x" : 1397059.42, + "y" : -355868.59 + }, + "selected" : false + }, { + "data" : { + "id" : "5147", + "station_name" : "北池袋", + "close_ymd" : "", + "lon" : 139.716749, + "post" : "170-0011", + "e_status" : 0, + "SUID" : 5147, + "station_g_cd" : 2100102, + "add" : "豊島区池袋本町1-36-6", + "line_cd" : 21001, + "selected" : false, + "open_ymd" : "", + "name" : "2100102", + "pref_name" : "東京都", + "shared_name" : "2100102", + "lat" : 35.741283, + "y" : -357412.83, + "x" : 1397167.49 + }, + "position" : { + "x" : 1397167.49, + "y" : -357412.83 + }, + "selected" : false + }, { + "data" : { + "id" : "7619", + "station_name" : "高輪台", + "close_ymd" : "", + "lon" : 139.73030500000002, + "post" : "108-0071", + "e_status" : 0, + "SUID" : 7619, + "station_g_cd" : 9930206, + "add" : "港区白金台2-26-7", + "line_cd" : 99302, + "selected" : false, + "open_ymd" : "", + "name" : "9930206", + "pref_name" : "東京都", + "shared_name" : "9930206", + "lat" : 35.631679, + "y" : -356316.79, + "x" : 1397303.05 + }, + "position" : { + "x" : 1397303.05, + "y" : -356316.79 + }, + "selected" : false + }, { + "data" : { + "id" : "7620", + "station_name" : "泉岳寺", + "close_ymd" : "", + "lon" : 139.74002, + "post" : "108-0074", + "e_status" : 0, + "SUID" : 7620, + "station_g_cd" : 2700101, + "add" : "港区高輪2-16-34", + "line_cd" : 99302, + "selected" : false, + "open_ymd" : "", + "name" : "9930207", + "pref_name" : "東京都", + "shared_name" : "9930207", + "lat" : 35.638692, + "y" : -356386.92, + "x" : 1397400.2 + }, + "position" : { + "x" : 1397400.2, + "y" : -356386.92 + }, + "selected" : false + }, { + "data" : { + "id" : "5148", + "station_name" : "下板橋", + "close_ymd" : "", + "lon" : 139.714785, + "post" : "170-0011", + "e_status" : 0, + "SUID" : 5148, + "station_g_cd" : 2100103, + "add" : "豊島区池袋本町4-43-11", + "line_cd" : 21001, + "selected" : false, + "open_ymd" : "", + "name" : "2100103", + "pref_name" : "東京都", + "shared_name" : "2100103", + "lat" : 35.745721, + "y" : -357457.21, + "x" : 1397147.85 + }, + "position" : { + "x" : 1397147.85, + "y" : -357457.21 + }, + "selected" : false + }, { + "data" : { + "id" : "7617", + "station_name" : "戸越", + "close_ymd" : "", + "lon" : 139.716495, + "post" : "142-0041", + "e_status" : 0, + "SUID" : 7617, + "station_g_cd" : 2600503, + "add" : "品川区戸越3-4-17", + "line_cd" : 99302, + "selected" : false, + "open_ymd" : "", + "name" : "9930204", + "pref_name" : "東京都", + "shared_name" : "9930204", + "lat" : 35.614633000000005, + "y" : -356146.3300000001, + "x" : 1397164.9500000002 + }, + "position" : { + "x" : 1397164.9500000002, + "y" : -356146.3300000001 + }, + "selected" : false + }, { + "data" : { + "id" : "5146", + "station_name" : "池袋", + "close_ymd" : "", + "lon" : 139.710678, + "post" : "", + "e_status" : 0, + "SUID" : 5146, + "station_g_cd" : 1130212, + "add" : "東京都豊島区", + "line_cd" : 21001, + "selected" : false, + "open_ymd" : "", + "name" : "2100101", + "pref_name" : "東京都", + "shared_name" : "2100101", + "lat" : 35.730924, + "y" : -357309.24, + "x" : 1397106.78 + }, + "position" : { + "x" : 1397106.78, + "y" : -357309.24 + }, + "selected" : false + }, { + "data" : { + "id" : "7618", + "station_name" : "五反田", + "close_ymd" : "", + "lon" : 139.724175, + "post" : "", + "e_status" : 0, + "SUID" : 7618, + "station_g_cd" : 1130202, + "add" : "東京都品川区東五反田一丁目26-14", + "line_cd" : 99302, + "selected" : false, + "open_ymd" : "", + "name" : "9930205", + "pref_name" : "東京都", + "shared_name" : "9930205", + "lat" : 35.627102, + "y" : -356271.02, + "x" : 1397241.75 + }, + "position" : { + "x" : 1397241.75, + "y" : -356271.02 + }, + "selected" : false + }, { + "data" : { + "id" : "7624", + "station_name" : "東銀座", + "close_ymd" : "", + "lon" : 139.767253, + "post" : "104-0061", + "e_status" : 0, + "SUID" : 7624, + "station_g_cd" : 2800313, + "add" : "中央区銀座4-12-15", + "line_cd" : 99302, + "selected" : false, + "open_ymd" : "", + "name" : "9930211", + "pref_name" : "東京都", + "shared_name" : "9930211", + "lat" : 35.669464000000005, + "y" : -356694.6400000001, + "x" : 1397672.53 + }, + "position" : { + "x" : 1397672.53, + "y" : -356694.6400000001 + }, + "selected" : false + }, { + "data" : { + "id" : "7623", + "station_name" : "新橋", + "close_ymd" : "", + "lon" : 139.759451, + "post" : "", + "e_status" : 0, + "SUID" : 7623, + "station_g_cd" : 1130102, + "add" : "東京都港区新橋二丁目21-1", + "line_cd" : 99302, + "selected" : false, + "open_ymd" : "", + "name" : "9930210", + "pref_name" : "東京都", + "shared_name" : "9930210", + "lat" : 35.665577, + "y" : -356655.77, + "x" : 1397594.5100000002 + }, + "position" : { + "x" : 1397594.5100000002, + "y" : -356655.77 + }, + "selected" : false + }, { + "data" : { + "id" : "7622", + "station_name" : "大門", + "close_ymd" : "", + "lon" : 139.75466, + "post" : "105-0013", + "e_status" : 0, + "SUID" : 7622, + "station_g_cd" : 9930121, + "add" : "港区浜松町1-27-12", + "line_cd" : 99302, + "selected" : false, + "open_ymd" : "", + "name" : "9930209", + "pref_name" : "東京都", + "shared_name" : "9930209", + "lat" : 35.656785, + "y" : -356567.85, + "x" : 1397546.6 + }, + "position" : { + "x" : 1397546.6, + "y" : -356567.85 + }, + "selected" : false + }, { + "data" : { + "id" : "7621", + "station_name" : "三田", + "close_ymd" : "", + "lon" : 139.748775, + "post" : "108-0014", + "e_status" : 0, + "SUID" : 7621, + "station_g_cd" : 9930208, + "add" : "港区芝5-34-10", + "line_cd" : 99302, + "selected" : false, + "open_ymd" : "", + "name" : "9930208", + "pref_name" : "東京都", + "shared_name" : "9930208", + "lat" : 35.648179999999996, + "y" : -356481.8, + "x" : 1397487.75 + }, + "position" : { + "x" : 1397487.75, + "y" : -356481.8 + }, + "selected" : false + }, { + "data" : { + "id" : "7628", + "station_name" : "東日本橋", + "close_ymd" : "", + "lon" : 139.784821, + "post" : "103-0004", + "e_status" : 0, + "SUID" : 7628, + "station_g_cd" : 1131403, + "add" : "中央区東日本橋3-11-8", + "line_cd" : 99302, + "selected" : false, + "open_ymd" : "", + "name" : "9930215", + "pref_name" : "東京都", + "shared_name" : "9930215", + "lat" : 35.692126, + "y" : -356921.26, + "x" : 1397848.21 + }, + "position" : { + "x" : 1397848.21, + "y" : -356921.26 + }, + "selected" : false + }, { + "data" : { + "id" : "7627", + "station_name" : "人形町", + "close_ymd" : "", + "lon" : 139.782285, + "post" : "103-0013", + "e_status" : 0, + "SUID" : 7627, + "station_g_cd" : 2800309, + "add" : "中央区日本橋人形町2-6-5", + "line_cd" : 99302, + "selected" : false, + "open_ymd" : "", + "name" : "9930214", + "pref_name" : "東京都", + "shared_name" : "9930214", + "lat" : 35.686307, + "y" : -356863.07, + "x" : 1397822.85 + }, + "position" : { + "x" : 1397822.85, + "y" : -356863.07 + }, + "selected" : false + }, { + "data" : { + "id" : "7626", + "station_name" : "日本橋", + "close_ymd" : "", + "lon" : 139.775721, + "post" : "103-0027", + "e_status" : 0, + "SUID" : 7626, + "station_g_cd" : 2800109, + "add" : "中央区日本橋1丁目", + "line_cd" : 99302, + "selected" : false, + "open_ymd" : "", + "name" : "9930213", + "pref_name" : "東京都", + "shared_name" : "9930213", + "lat" : 35.681688, + "y" : -356816.88, + "x" : 1397757.21 + }, + "position" : { + "x" : 1397757.21, + "y" : -356816.88 + }, + "selected" : false + }, { + "data" : { + "id" : "7625", + "station_name" : "宝町", + "close_ymd" : "", + "lon" : 139.77176699999998, + "post" : "104-0031", + "e_status" : 0, + "SUID" : 7625, + "station_g_cd" : 2800110, + "add" : "中央区京橋2-13-11", + "line_cd" : 99302, + "selected" : false, + "open_ymd" : "", + "name" : "9930212", + "pref_name" : "東京都", + "shared_name" : "9930212", + "lat" : 35.675461, + "y" : -356754.61, + "x" : 1397717.67 + }, + "position" : { + "x" : 1397717.67, + "y" : -356754.61 + }, + "selected" : false + }, { + "data" : { + "id" : "7632", + "station_name" : "本所吾妻橋", + "close_ymd" : "", + "lon" : 139.804624, + "post" : "130-0001", + "e_status" : 0, + "SUID" : 7632, + "station_g_cd" : 9930219, + "add" : "墨田区吾妻橋3-7-16", + "line_cd" : 99302, + "selected" : false, + "open_ymd" : "", + "name" : "9930219", + "pref_name" : "東京都", + "shared_name" : "9930219", + "lat" : 35.70858, + "y" : -357085.8, + "x" : 1398046.24 + }, + "position" : { + "x" : 1398046.24, + "y" : -357085.8 + }, + "selected" : false + }, { + "data" : { + "id" : "7631", + "station_name" : "浅草", + "close_ymd" : "", + "lon" : 139.79697, + "post" : "", + "e_status" : 0, + "SUID" : 7631, + "station_g_cd" : 2100201, + "add" : "東京都台東区", + "line_cd" : 99302, + "selected" : false, + "open_ymd" : "", + "name" : "9930218", + "pref_name" : "東京都", + "shared_name" : "9930218", + "lat" : 35.709461, + "y" : -357094.61, + "x" : 1397969.7 + }, + "position" : { + "x" : 1397969.7, + "y" : -357094.61 + }, + "selected" : false + }, { + "data" : { + "id" : "7630", + "station_name" : "蔵前", + "close_ymd" : "", + "lon" : 139.790931, + "post" : "111-0051", + "e_status" : 0, + "SUID" : 7630, + "station_g_cd" : 9930112, + "add" : "台東区蔵前2-3-1", + "line_cd" : 99302, + "selected" : false, + "open_ymd" : "", + "name" : "9930217", + "pref_name" : "東京都", + "shared_name" : "9930217", + "lat" : 35.703236, + "y" : -357032.36, + "x" : 1397909.31 + }, + "position" : { + "x" : 1397909.31, + "y" : -357032.36 + }, + "selected" : false + }, { + "data" : { + "id" : "7629", + "station_name" : "浅草橋", + "close_ymd" : "", + "lon" : 139.786305, + "post" : "111-0053", + "e_status" : 0, + "SUID" : 7629, + "station_g_cd" : 1131320, + "add" : "台東区浅草橋1丁目", + "line_cd" : 99302, + "selected" : false, + "open_ymd" : "", + "name" : "9930216", + "pref_name" : "東京都", + "shared_name" : "9930216", + "lat" : 35.697451, + "y" : -356974.51, + "x" : 1397863.05 + }, + "position" : { + "x" : 1397863.05, + "y" : -356974.51 + }, + "selected" : false + }, { + "data" : { + "id" : "7636", + "station_name" : "白金高輪", + "close_ymd" : "", + "lon" : 139.734104, + "post" : "108-0074", + "e_status" : 0, + "SUID" : 7636, + "station_g_cd" : 2800917, + "add" : "港区高輪1-3-20", + "line_cd" : 99303, + "selected" : false, + "open_ymd" : "", + "name" : "9930303", + "pref_name" : "東京都", + "shared_name" : "9930303", + "lat" : 35.642903000000004, + "y" : -356429.03, + "x" : 1397341.04 + }, + "position" : { + "x" : 1397341.04, + "y" : -356429.03 + }, + "selected" : false + }, { + "data" : { + "id" : "7635", + "station_name" : "白金台", + "close_ymd" : "", + "lon" : 139.726133, + "post" : "108-0071", + "e_status" : 0, + "SUID" : 7635, + "station_g_cd" : 2800918, + "add" : "港区白金台3-2", + "line_cd" : 99303, + "selected" : false, + "open_ymd" : "", + "name" : "9930302", + "pref_name" : "東京都", + "shared_name" : "9930302", + "lat" : 35.637917, + "y" : -356379.17000000004, + "x" : 1397261.33 + }, + "position" : { + "x" : 1397261.33, + "y" : -356379.17000000004 + }, + "selected" : false + }, { + "data" : { + "id" : "7634", + "station_name" : "目黒", + "close_ymd" : "", + "lon" : 139.7155, + "post" : "", + "e_status" : 0, + "SUID" : 7634, + "station_g_cd" : 1130203, + "add" : "東京都品川区上大崎四丁目2-1", + "line_cd" : 99303, + "selected" : false, + "open_ymd" : "", + "name" : "9930301", + "pref_name" : "東京都", + "shared_name" : "9930301", + "lat" : 35.633272, + "y" : -356332.72, + "x" : 1397155.0 + }, + "position" : { + "x" : 1397155.0, + "y" : -356332.72 + }, + "selected" : false + }, { + "data" : { + "id" : "7633", + "station_name" : "押上(スカイツリー前)", + "close_ymd" : "", + "lon" : 139.812935, + "post" : "131-0045", + "e_status" : 0, + "SUID" : 7633, + "station_g_cd" : 2100203, + "add" : "墨田区押上一丁目", + "line_cd" : 99302, + "selected" : false, + "open_ymd" : "", + "name" : "9930220", + "pref_name" : "東京都", + "shared_name" : "9930220", + "lat" : 35.710702000000005, + "y" : -357107.0200000001, + "x" : 1398129.35 + }, + "position" : { + "x" : 1398129.35, + "y" : -357107.0200000001 + }, + "selected" : false + }, { + "data" : { + "id" : "3270", + "station_name" : "高尾", + "close_ymd" : "", + "lon" : 139.282288, + "post" : "193-0844", + "e_status" : 0, + "SUID" : 3270, + "station_g_cd" : 1131112, + "add" : "八王子市高尾町", + "line_cd" : 11328, + "selected" : false, + "open_ymd" : "", + "name" : "1132815", + "pref_name" : "東京都", + "shared_name" : "1132815", + "lat" : 35.642026, + "y" : -356420.26, + "x" : 1392822.88 + }, + "position" : { + "x" : 1392822.88, + "y" : -356420.26 + }, + "selected" : false + }, { + "data" : { + "id" : "3271", + "station_name" : "八王子", + "close_ymd" : "", + "lon" : 139.338998, + "post" : "-", + "e_status" : 0, + "SUID" : 3271, + "station_g_cd" : 1130620, + "add" : "東京都八王子市旭町1-1", + "line_cd" : 11328, + "selected" : false, + "open_ymd" : "1889-08-11", + "name" : "1132816", + "pref_name" : "東京都", + "shared_name" : "1132816", + "lat" : 35.655555, + "y" : -356555.55, + "x" : 1393389.98 + }, + "position" : { + "x" : 1393389.98, + "y" : -356555.55 + }, + "selected" : false + }, { + "data" : { + "id" : "3272", + "station_name" : "立川", + "close_ymd" : "", + "lon" : 139.413704, + "post" : "-", + "e_status" : 0, + "SUID" : 3272, + "station_g_cd" : 1130325, + "add" : "東京都立川市曙町二丁目1-1", + "line_cd" : 11328, + "selected" : false, + "open_ymd" : "1889-04-11", + "name" : "1132817", + "pref_name" : "東京都", + "shared_name" : "1132817", + "lat" : 35.698202, + "y" : -356982.02, + "x" : 1394137.04 + }, + "position" : { + "x" : 1394137.04, + "y" : -356982.02 + }, + "selected" : false + }, { + "data" : { + "id" : "7576", + "station_name" : "都庁前", + "close_ymd" : "", + "lon" : 139.69257, + "post" : "160-0023", + "e_status" : 0, + "SUID" : 7576, + "station_g_cd" : 9930101, + "add" : "新宿区西新宿2-8-1", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930101", + "pref_name" : "東京都", + "shared_name" : "9930101", + "lat" : 35.690551, + "y" : -356905.51, + "x" : 1396925.7 + }, + "position" : { + "x" : 1396925.7, + "y" : -356905.51 + }, + "selected" : false + }, { + "data" : { + "id" : "5184", + "station_name" : "浅草", + "close_ymd" : "", + "lon" : 139.798214, + "post" : "", + "e_status" : 0, + "SUID" : 5184, + "station_g_cd" : 2100201, + "add" : "東京都台東区", + "line_cd" : 21002, + "selected" : false, + "open_ymd" : "", + "name" : "2100201", + "pref_name" : "東京都", + "shared_name" : "2100201", + "lat" : 35.711883, + "y" : -357118.83, + "x" : 1397982.1400000001 + }, + "position" : { + "x" : 1397982.1400000001, + "y" : -357118.83 + }, + "selected" : false + }, { + "data" : { + "id" : "3273", + "station_name" : "国分寺", + "close_ymd" : "", + "lon" : 139.480841, + "post" : "-", + "e_status" : 0, + "SUID" : 3273, + "station_g_cd" : 1131106, + "add" : "東京都国分寺市本町二丁目", + "line_cd" : 11328, + "selected" : false, + "open_ymd" : "1889-04-11", + "name" : "1132818", + "pref_name" : "東京都", + "shared_name" : "1132818", + "lat" : 35.700123, + "y" : -357001.23, + "x" : 1394808.41 + }, + "position" : { + "x" : 1394808.41, + "y" : -357001.23 + }, + "selected" : false + }, { + "data" : { + "id" : "7577", + "station_name" : "西新宿五丁目", + "close_ymd" : "", + "lon" : 139.684304, + "post" : "160-0023", + "e_status" : 0, + "SUID" : 7577, + "station_g_cd" : 9930129, + "add" : "新宿区西新宿5-25-9", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930129", + "pref_name" : "東京都", + "shared_name" : "9930129", + "lat" : 35.689797999999996, + "y" : -356897.98, + "x" : 1396843.04 + }, + "position" : { + "x" : 1396843.04, + "y" : -356897.98 + }, + "selected" : false + }, { + "data" : { + "id" : "5185", + "station_name" : "とうきょうスカイツリー", + "close_ymd" : "", + "lon" : 139.809332, + "post" : "131-0045", + "e_status" : 0, + "SUID" : 5185, + "station_g_cd" : 2100202, + "add" : "墨田区押上1丁目", + "line_cd" : 21002, + "selected" : false, + "open_ymd" : "1902-04-01", + "name" : "2100202", + "pref_name" : "東京都", + "shared_name" : "2100202", + "lat" : 35.71043, + "y" : -357104.30000000005, + "x" : 1398093.32 + }, + "position" : { + "x" : 1398093.32, + "y" : -357104.30000000005 + }, + "selected" : false + }, { + "data" : { + "id" : "3274", + "station_name" : "三鷹", + "close_ymd" : "", + "lon" : 139.560325, + "post" : "-", + "e_status" : 0, + "SUID" : 3274, + "station_g_cd" : 1131105, + "add" : "東京都三鷹市下連雀三丁目46-1", + "line_cd" : 11328, + "selected" : false, + "open_ymd" : "1930-06-25", + "name" : "1132819", + "pref_name" : "東京都", + "shared_name" : "1132819", + "lat" : 35.702683, + "y" : -357026.83, + "x" : 1395603.25 + }, + "position" : { + "x" : 1395603.25, + "y" : -357026.83 + }, + "selected" : false + }, { + "data" : { + "id" : "7578", + "station_name" : "新宿西口", + "close_ymd" : "", + "lon" : 139.69915500000002, + "post" : "160-0023", + "e_status" : 0, + "SUID" : 7578, + "station_g_cd" : 9930102, + "add" : "新宿区西新宿1-3-17", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930102", + "pref_name" : "東京都", + "shared_name" : "9930102", + "lat" : 35.693315000000005, + "y" : -356933.1500000001, + "x" : 1396991.5500000003 + }, + "position" : { + "x" : 1396991.5500000003, + "y" : -356933.1500000001 + }, + "selected" : false + }, { + "data" : { + "id" : "5186", + "station_name" : "押上〈スカイツリー前〉", + "close_ymd" : "", + "lon" : 139.812935, + "post" : "131-0045", + "e_status" : 0, + "SUID" : 5186, + "station_g_cd" : 2100203, + "add" : "墨田区押上一丁目", + "line_cd" : 21002, + "selected" : false, + "open_ymd" : "", + "name" : "2100203", + "pref_name" : "東京都", + "shared_name" : "2100203", + "lat" : 35.710702000000005, + "y" : -357107.0200000001, + "x" : 1398129.35 + }, + "position" : { + "x" : 1398129.35, + "y" : -357107.0200000001 + }, + "selected" : false + }, { + "data" : { + "id" : "3275", + "station_name" : "吉祥寺", + "close_ymd" : "", + "lon" : 139.57976499999998, + "post" : "-", + "e_status" : 0, + "SUID" : 3275, + "station_g_cd" : 1131104, + "add" : "東京都武蔵野市吉祥寺南町", + "line_cd" : 11328, + "selected" : false, + "open_ymd" : "1899-12-30", + "name" : "1132820", + "pref_name" : "東京都", + "shared_name" : "1132820", + "lat" : 35.703119, + "y" : -357031.19, + "x" : 1395797.65 + }, + "position" : { + "x" : 1395797.65, + "y" : -357031.19 + }, + "selected" : false + }, { + "data" : { + "id" : "7579", + "station_name" : "東新宿", + "close_ymd" : "", + "lon" : 139.707549, + "post" : "160-0022", + "e_status" : 0, + "SUID" : 7579, + "station_g_cd" : 2801012, + "add" : "新宿区新宿7-27-3", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930103", + "pref_name" : "東京都", + "shared_name" : "9930103", + "lat" : 35.69792, + "y" : -356979.2, + "x" : 1397075.49 + }, + "position" : { + "x" : 1397075.49, + "y" : -356979.2 + }, + "selected" : false + }, { + "data" : { + "id" : "5187", + "station_name" : "曳舟", + "close_ymd" : "", + "lon" : 139.81663400000002, + "post" : "131-0032", + "e_status" : 0, + "SUID" : 5187, + "station_g_cd" : 2100204, + "add" : "墨田区東向島2丁目", + "line_cd" : 21002, + "selected" : false, + "open_ymd" : "", + "name" : "2100204", + "pref_name" : "東京都", + "shared_name" : "2100204", + "lat" : 35.718418, + "y" : -357184.18, + "x" : 1398166.3400000003 + }, + "position" : { + "x" : 1398166.3400000003, + "y" : -357184.18 + }, + "selected" : false + }, { + "data" : { + "id" : "5188", + "station_name" : "東向島", + "close_ymd" : "", + "lon" : 139.819306, + "post" : "131-0032", + "e_status" : 0, + "SUID" : 5188, + "station_g_cd" : 2100205, + "add" : "墨田区東向島4丁目", + "line_cd" : 21002, + "selected" : false, + "open_ymd" : "", + "name" : "2100205", + "pref_name" : "東京都", + "shared_name" : "2100205", + "lat" : 35.724323999999996, + "y" : -357243.23999999993, + "x" : 1398193.06 + }, + "position" : { + "x" : 1398193.06, + "y" : -357243.23999999993 + }, + "selected" : false + }, { + "data" : { + "id" : "7580", + "station_name" : "若松河田", + "close_ymd" : "", + "lon" : 139.718184, + "post" : "162-0054", + "e_status" : 0, + "SUID" : 7580, + "station_g_cd" : 9930104, + "add" : "新宿区河田町10-10", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930104", + "pref_name" : "東京都", + "shared_name" : "9930104", + "lat" : 35.699218, + "y" : -356992.18, + "x" : 1397181.84 + }, + "position" : { + "x" : 1397181.84, + "y" : -356992.18 + }, + "selected" : false + }, { + "data" : { + "id" : "7581", + "station_name" : "牛込柳町", + "close_ymd" : "", + "lon" : 139.725027, + "post" : "162-0053", + "e_status" : 0, + "SUID" : 7581, + "station_g_cd" : 9930105, + "add" : "新宿区原町2-32", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930105", + "pref_name" : "東京都", + "shared_name" : "9930105", + "lat" : 35.699518, + "y" : -356995.18, + "x" : 1397250.27 + }, + "position" : { + "x" : 1397250.27, + "y" : -356995.18 + }, + "selected" : false + }, { + "data" : { + "id" : "7582", + "station_name" : "牛込神楽坂", + "close_ymd" : "", + "lon" : 139.735802, + "post" : "162-0833", + "e_status" : 0, + "SUID" : 7582, + "station_g_cd" : 9930106, + "add" : "新宿区箪笥町15", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930106", + "pref_name" : "東京都", + "shared_name" : "9930106", + "lat" : 35.700851, + "y" : -357008.51, + "x" : 1397358.02 + }, + "position" : { + "x" : 1397358.02, + "y" : -357008.51 + }, + "selected" : false + }, { + "data" : { + "id" : "7583", + "station_name" : "飯田橋", + "close_ymd" : "", + "lon" : 139.744999, + "post" : "", + "e_status" : 0, + "SUID" : 7583, + "station_g_cd" : 1131205, + "add" : "東京都文京区後楽一丁目9-5", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930107", + "pref_name" : "東京都", + "shared_name" : "9930107", + "lat" : 35.702927, + "y" : -357029.27, + "x" : 1397449.99 + }, + "position" : { + "x" : 1397449.99, + "y" : -357029.27 + }, + "selected" : false + }, { + "data" : { + "id" : "7584", + "station_name" : "春日", + "close_ymd" : "", + "lon" : 139.75325, + "post" : "112-0003", + "e_status" : 0, + "SUID" : 7584, + "station_g_cd" : 9930108, + "add" : "文京区春日1-16-17", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930108", + "pref_name" : "東京都", + "shared_name" : "9930108", + "lat" : 35.709598, + "y" : -357095.98, + "x" : 1397532.5 + }, + "position" : { + "x" : 1397532.5, + "y" : -357095.98 + }, + "selected" : false + }, { + "data" : { + "id" : "7585", + "station_name" : "本郷三丁目", + "close_ymd" : "", + "lon" : 139.760095, + "post" : "113-0033", + "e_status" : 0, + "SUID" : 7585, + "station_g_cd" : 2800205, + "add" : "文京区本郷2-39-1", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930109", + "pref_name" : "東京都", + "shared_name" : "9930109", + "lat" : 35.707462, + "y" : -357074.62, + "x" : 1397600.95 + }, + "position" : { + "x" : 1397600.95, + "y" : -357074.62 + }, + "selected" : false + }, { + "data" : { + "id" : "7586", + "station_name" : "上野御徒町", + "close_ymd" : "", + "lon" : 139.77433200000002, + "post" : "110-0005", + "e_status" : 0, + "SUID" : 7586, + "station_g_cd" : 1130221, + "add" : "台東区上野5-26-6", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930110", + "pref_name" : "東京都", + "shared_name" : "9930110", + "lat" : 35.707893, + "y" : -357078.93, + "x" : 1397743.32 + }, + "position" : { + "x" : 1397743.32, + "y" : -357078.93 + }, + "selected" : false + }, { + "data" : { + "id" : "7587", + "station_name" : "新御徒町", + "close_ymd" : "", + "lon" : 139.781958, + "post" : "111-0041", + "e_status" : 0, + "SUID" : 7587, + "station_g_cd" : 9930111, + "add" : "台東区元浅草1-5-2", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930111", + "pref_name" : "東京都", + "shared_name" : "9930111", + "lat" : 35.707045, + "y" : -357070.45, + "x" : 1397819.58 + }, + "position" : { + "x" : 1397819.58, + "y" : -357070.45 + }, + "selected" : false + }, { + "data" : { + "id" : "7588", + "station_name" : "蔵前", + "close_ymd" : "", + "lon" : 139.790931, + "post" : "111-0051", + "e_status" : 0, + "SUID" : 7588, + "station_g_cd" : 9930112, + "add" : "台東区蔵前2-3-1", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930112", + "pref_name" : "東京都", + "shared_name" : "9930112", + "lat" : 35.703236, + "y" : -357032.36, + "x" : 1397909.31 + }, + "position" : { + "x" : 1397909.31, + "y" : -357032.36 + }, + "selected" : false + }, { + "data" : { + "id" : "7590", + "station_name" : "森下", + "close_ymd" : "", + "lon" : 139.797042, + "post" : "135-0004", + "e_status" : 0, + "SUID" : 7590, + "station_g_cd" : 9930114, + "add" : "江東区森下2-17-17", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930114", + "pref_name" : "東京都", + "shared_name" : "9930114", + "lat" : 35.68796, + "y" : -356879.6, + "x" : 1397970.4200000002 + }, + "position" : { + "x" : 1397970.4200000002, + "y" : -356879.6 + }, + "selected" : false + }, { + "data" : { + "id" : "5197", + "station_name" : "竹ノ塚", + "close_ymd" : "", + "lon" : 139.790788, + "post" : "121-0813", + "e_status" : 0, + "SUID" : 5197, + "station_g_cd" : 2100214, + "add" : "足立区竹の塚6丁目", + "line_cd" : 21002, + "selected" : false, + "open_ymd" : "", + "name" : "2100214", + "pref_name" : "東京都", + "shared_name" : "2100214", + "lat" : 35.794368, + "y" : -357943.68, + "x" : 1397907.88 + }, + "position" : { + "x" : 1397907.88, + "y" : -357943.68 + }, + "selected" : false + }, { + "data" : { + "id" : "7589", + "station_name" : "両国", + "close_ymd" : "", + "lon" : 139.79742099999999, + "post" : "130-0015", + "e_status" : 0, + "SUID" : 7589, + "station_g_cd" : 1131321, + "add" : "墨田区横網1丁目", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930113", + "pref_name" : "東京都", + "shared_name" : "9930113", + "lat" : 35.696881, + "y" : -356968.81, + "x" : 1397974.21 + }, + "position" : { + "x" : 1397974.21, + "y" : -356968.81 + }, + "selected" : false + }, { + "data" : { + "id" : "7592", + "station_name" : "門前仲町", + "close_ymd" : "", + "lon" : 139.796209, + "post" : "135-0048", + "e_status" : 0, + "SUID" : 7592, + "station_g_cd" : 2800412, + "add" : "江東区門前仲町1丁目", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930116", + "pref_name" : "東京都", + "shared_name" : "9930116", + "lat" : 35.671851000000004, + "y" : -356718.51, + "x" : 1397962.09 + }, + "position" : { + "x" : 1397962.09, + "y" : -356718.51 + }, + "selected" : false + }, { + "data" : { + "id" : "7591", + "station_name" : "清澄白河", + "close_ymd" : "", + "lon" : 139.798851, + "post" : "135-0021", + "e_status" : 0, + "SUID" : 7591, + "station_g_cd" : 2800811, + "add" : "江東区白河1-7-14", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930115", + "pref_name" : "東京都", + "shared_name" : "9930115", + "lat" : 35.682105, + "y" : -356821.05, + "x" : 1397988.5100000002 + }, + "position" : { + "x" : 1397988.5100000002, + "y" : -356821.05 + }, + "selected" : false + }, { + "data" : { + "id" : "7594", + "station_name" : "勝どき", + "close_ymd" : "", + "lon" : 139.776442, + "post" : "104-0054", + "e_status" : 0, + "SUID" : 7594, + "station_g_cd" : 9930118, + "add" : "中央区勝どき2-10-15", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930118", + "pref_name" : "東京都", + "shared_name" : "9930118", + "lat" : 35.658507, + "y" : -356585.07, + "x" : 1397764.42 + }, + "position" : { + "x" : 1397764.42, + "y" : -356585.07 + }, + "selected" : false + }, { + "data" : { + "id" : "7593", + "station_name" : "月島", + "close_ymd" : "", + "lon" : 139.784233, + "post" : "", + "e_status" : 0, + "SUID" : 7593, + "station_g_cd" : 2800621, + "add" : "東京都中央区月島一丁目3-9", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930117", + "pref_name" : "東京都", + "shared_name" : "9930117", + "lat" : 35.664871000000005, + "y" : -356648.7100000001, + "x" : 1397842.33 + }, + "position" : { + "x" : 1397842.33, + "y" : -356648.7100000001 + }, + "selected" : false + }, { + "data" : { + "id" : "3260", + "station_name" : "池袋", + "close_ymd" : "", + "lon" : 139.71108600000002, + "post" : "", + "e_status" : 0, + "SUID" : 3260, + "station_g_cd" : 1130212, + "add" : "東京都豊島区", + "line_cd" : 11328, + "selected" : false, + "open_ymd" : "", + "name" : "1132805", + "pref_name" : "東京都", + "shared_name" : "1132805", + "lat" : 35.730256, + "y" : -357302.56, + "x" : 1397110.8600000003 + }, + "position" : { + "x" : 1397110.8600000003, + "y" : -357302.56 + }, + "selected" : false + }, { + "data" : { + "id" : "7596", + "station_name" : "汐留", + "close_ymd" : "", + "lon" : 139.760642, + "post" : "105-0021", + "e_status" : 0, + "SUID" : 7596, + "station_g_cd" : 9930120, + "add" : "港区東新橋1丁目5", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930120", + "pref_name" : "東京都", + "shared_name" : "9930120", + "lat" : 35.663703000000005, + "y" : -356637.03, + "x" : 1397606.42 + }, + "position" : { + "x" : 1397606.42, + "y" : -356637.03 + }, + "selected" : false + }, { + "data" : { + "id" : "7595", + "station_name" : "築地市場", + "close_ymd" : "", + "lon" : 139.76691499999998, + "post" : "104-0045", + "e_status" : 0, + "SUID" : 7595, + "station_g_cd" : 9930119, + "add" : "中央区築地5-1-2", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930119", + "pref_name" : "東京都", + "shared_name" : "9930119", + "lat" : 35.664895, + "y" : -356648.95, + "x" : 1397669.15 + }, + "position" : { + "x" : 1397669.15, + "y" : -356648.95 + }, + "selected" : false + }, { + "data" : { + "id" : "5190", + "station_name" : "堀切", + "close_ymd" : "", + "lon" : 139.817727, + "post" : "120-0023", + "e_status" : 0, + "SUID" : 5190, + "station_g_cd" : 2100207, + "add" : "足立区千住曙町", + "line_cd" : 21002, + "selected" : false, + "open_ymd" : "", + "name" : "2100207", + "pref_name" : "東京都", + "shared_name" : "2100207", + "lat" : 35.742977, + "y" : -357429.77, + "x" : 1398177.27 + }, + "position" : { + "x" : 1398177.27, + "y" : -357429.77 + }, + "selected" : false + }, { + "data" : { + "id" : "3262", + "station_name" : "渋谷", + "close_ymd" : "", + "lon" : 139.701238, + "post" : "", + "e_status" : 0, + "SUID" : 3262, + "station_g_cd" : 1130205, + "add" : "東京都渋谷区道玄坂一丁目1-1", + "line_cd" : 11328, + "selected" : false, + "open_ymd" : "", + "name" : "1132807", + "pref_name" : "東京都", + "shared_name" : "1132807", + "lat" : 35.658871000000005, + "y" : -356588.71, + "x" : 1397012.38 + }, + "position" : { + "x" : 1397012.38, + "y" : -356588.71 + }, + "selected" : false + }, { + "data" : { + "id" : "7598", + "station_name" : "赤羽橋", + "close_ymd" : "", + "lon" : 139.743642, + "post" : "106-0044", + "e_status" : 0, + "SUID" : 7598, + "station_g_cd" : 9930122, + "add" : "港区東麻布1-28-13", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930122", + "pref_name" : "東京都", + "shared_name" : "9930122", + "lat" : 35.655007, + "y" : -356550.06999999995, + "x" : 1397436.42 + }, + "position" : { + "x" : 1397436.42, + "y" : -356550.06999999995 + }, + "selected" : false + }, { + "data" : { + "id" : "5189", + "station_name" : "鐘ヶ淵", + "close_ymd" : "", + "lon" : 139.820344, + "post" : "", + "e_status" : 0, + "SUID" : 5189, + "station_g_cd" : 2100206, + "add" : "東京都墨田区墨田5丁目", + "line_cd" : 21002, + "selected" : false, + "open_ymd" : "", + "name" : "2100206", + "pref_name" : "東京都", + "shared_name" : "2100206", + "lat" : 35.733712, + "y" : -357337.12, + "x" : 1398203.44 + }, + "position" : { + "x" : 1398203.44, + "y" : -357337.12 + }, + "selected" : false + }, { + "data" : { + "id" : "3261", + "station_name" : "新宿", + "close_ymd" : "", + "lon" : 139.70046399999998, + "post" : "", + "e_status" : 0, + "SUID" : 3261, + "station_g_cd" : 1130208, + "add" : "東京都新宿区新宿三丁目38-1", + "line_cd" : 11328, + "selected" : false, + "open_ymd" : "", + "name" : "1132806", + "pref_name" : "東京都", + "shared_name" : "1132806", + "lat" : 35.689729, + "y" : -356897.29, + "x" : 1397004.64 + }, + "position" : { + "x" : 1397004.64, + "y" : -356897.29 + }, + "selected" : false + }, { + "data" : { + "id" : "7597", + "station_name" : "大門", + "close_ymd" : "", + "lon" : 139.75466, + "post" : "105-0013", + "e_status" : 0, + "SUID" : 7597, + "station_g_cd" : 9930121, + "add" : "港区浜松町1-27-12", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930121", + "pref_name" : "東京都", + "shared_name" : "9930121", + "lat" : 35.656785, + "y" : -356567.85, + "x" : 1397546.6 + }, + "position" : { + "x" : 1397546.6, + "y" : -356567.85 + }, + "selected" : false + }, { + "data" : { + "id" : "5192", + "station_name" : "北千住", + "close_ymd" : "", + "lon" : 139.805564, + "post" : "120-0026", + "e_status" : 0, + "SUID" : 5192, + "station_g_cd" : 1132005, + "add" : "足立区千住旭町", + "line_cd" : 21002, + "selected" : false, + "open_ymd" : "", + "name" : "2100209", + "pref_name" : "東京都", + "shared_name" : "2100209", + "lat" : 35.749891, + "y" : -357498.91, + "x" : 1398055.6400000001 + }, + "position" : { + "x" : 1398055.6400000001, + "y" : -357498.91 + }, + "selected" : false + }, { + "data" : { + "id" : "3264", + "station_name" : "東京", + "close_ymd" : "", + "lon" : 139.76610300000002, + "post" : "", + "e_status" : 0, + "SUID" : 3264, + "station_g_cd" : 1130101, + "add" : "東京都千代田区丸の内一丁目", + "line_cd" : 11328, + "selected" : false, + "open_ymd" : "", + "name" : "1132809", + "pref_name" : "東京都", + "shared_name" : "1132809", + "lat" : 35.681391, + "y" : -356813.91, + "x" : 1397661.0300000003 + }, + "position" : { + "x" : 1397661.0300000003, + "y" : -356813.91 + }, + "selected" : false + }, { + "data" : { + "id" : "7600", + "station_name" : "六本木", + "close_ymd" : "", + "lon" : 139.73156699999998, + "post" : "106-0032", + "e_status" : 0, + "SUID" : 7600, + "station_g_cd" : 2800318, + "add" : "港区六本木6-1-25", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930124", + "pref_name" : "東京都", + "shared_name" : "9930124", + "lat" : 35.663921, + "y" : -356639.21, + "x" : 1397315.67 + }, + "position" : { + "x" : 1397315.67, + "y" : -356639.21 + }, + "selected" : false + }, { + "data" : { + "id" : "5191", + "station_name" : "牛田", + "close_ymd" : "", + "lon" : 139.811816, + "post" : "120-0023", + "e_status" : 0, + "SUID" : 5191, + "station_g_cd" : 2100208, + "add" : "足立区千住曙町", + "line_cd" : 21002, + "selected" : false, + "open_ymd" : "", + "name" : "2100208", + "pref_name" : "東京都", + "shared_name" : "2100208", + "lat" : 35.744555, + "y" : -357445.55, + "x" : 1398118.16 + }, + "position" : { + "x" : 1398118.16, + "y" : -357445.55 + }, + "selected" : false + }, { + "data" : { + "id" : "3263", + "station_name" : "品川", + "close_ymd" : "", + "lon" : 139.738999, + "post" : "", + "e_status" : 0, + "SUID" : 3263, + "station_g_cd" : 1130103, + "add" : "東京都港区高輪三丁目26-26", + "line_cd" : 11328, + "selected" : false, + "open_ymd" : "", + "name" : "1132808", + "pref_name" : "東京都", + "shared_name" : "1132808", + "lat" : 35.62876, + "y" : -356287.6, + "x" : 1397389.99 + }, + "position" : { + "x" : 1397389.99, + "y" : -356287.6 + }, + "selected" : false + }, { + "data" : { + "id" : "7599", + "station_name" : "麻布十番", + "close_ymd" : "", + "lon" : 139.73611599999998, + "post" : "106-0045", + "e_status" : 0, + "SUID" : 7599, + "station_g_cd" : 2800916, + "add" : "港区麻布十番4-4-9", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930123", + "pref_name" : "東京都", + "shared_name" : "9930123", + "lat" : 35.656503, + "y" : -356565.03, + "x" : 1397361.16 + }, + "position" : { + "x" : 1397361.16, + "y" : -356565.03 + }, + "selected" : false + }, { + "data" : { + "id" : "5194", + "station_name" : "五反野", + "close_ymd" : "", + "lon" : 139.809643, + "post" : "120-0015", + "e_status" : 0, + "SUID" : 5194, + "station_g_cd" : 2100211, + "add" : "足立区足立3丁目", + "line_cd" : 21002, + "selected" : false, + "open_ymd" : "", + "name" : "2100211", + "pref_name" : "東京都", + "shared_name" : "2100211", + "lat" : 35.765852, + "y" : -357658.52, + "x" : 1398096.43 + }, + "position" : { + "x" : 1398096.43, + "y" : -357658.52 + }, + "selected" : false + }, { + "data" : { + "id" : "7602", + "station_name" : "国立競技場", + "close_ymd" : "", + "lon" : 139.714932, + "post" : "160-0013", + "e_status" : 0, + "SUID" : 7602, + "station_g_cd" : 9930126, + "add" : "新宿区霞ケ丘町10-3", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930126", + "pref_name" : "東京都", + "shared_name" : "9930126", + "lat" : 35.679831, + "y" : -356798.31, + "x" : 1397149.32 + }, + "position" : { + "x" : 1397149.32, + "y" : -356798.31 + }, + "selected" : false + }, { + "data" : { + "id" : "5193", + "station_name" : "小菅", + "close_ymd" : "", + "lon" : 139.812935, + "post" : "120-0015", + "e_status" : 0, + "SUID" : 5193, + "station_g_cd" : 2100210, + "add" : "足立区足立2丁目", + "line_cd" : 21002, + "selected" : false, + "open_ymd" : "", + "name" : "2100210", + "pref_name" : "東京都", + "shared_name" : "2100210", + "lat" : 35.759039, + "y" : -357590.39, + "x" : 1398129.35 + }, + "position" : { + "x" : 1398129.35, + "y" : -357590.39 + }, + "selected" : false + }, { + "data" : { + "id" : "7601", + "station_name" : "青山一丁目", + "close_ymd" : "", + "lon" : 139.72396, + "post" : "107-0062", + "e_status" : 0, + "SUID" : 7601, + "station_g_cd" : 2800116, + "add" : "港区南青山1-1-19", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930125", + "pref_name" : "東京都", + "shared_name" : "9930125", + "lat" : 35.672928999999996, + "y" : -356729.29, + "x" : 1397239.6 + }, + "position" : { + "x" : 1397239.6, + "y" : -356729.29 + }, + "selected" : false + }, { + "data" : { + "id" : "5196", + "station_name" : "西新井", + "close_ymd" : "", + "lon" : 139.790372, + "post" : "123-0843", + "e_status" : 0, + "SUID" : 5196, + "station_g_cd" : 2100213, + "add" : "足立区西新井栄町2丁目", + "line_cd" : 21002, + "selected" : false, + "open_ymd" : "", + "name" : "2100213", + "pref_name" : "東京都", + "shared_name" : "2100213", + "lat" : 35.777322999999996, + "y" : -357773.23, + "x" : 1397903.72 + }, + "position" : { + "x" : 1397903.72, + "y" : -357773.23 + }, + "selected" : false + }, { + "data" : { + "id" : "7604", + "station_name" : "新宿", + "close_ymd" : "", + "lon" : 139.698812, + "post" : "", + "e_status" : 0, + "SUID" : 7604, + "station_g_cd" : 1130208, + "add" : "東京都渋谷区代々木二丁目1-1", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930128", + "pref_name" : "東京都", + "shared_name" : "9930128", + "lat" : 35.68869, + "y" : -356886.9, + "x" : 1396988.12 + }, + "position" : { + "x" : 1396988.12, + "y" : -356886.9 + }, + "selected" : false + }, { + "data" : { + "id" : "5195", + "station_name" : "梅島", + "close_ymd" : "", + "lon" : 139.797916, + "post" : "123-0851", + "e_status" : 0, + "SUID" : 5195, + "station_g_cd" : 2100212, + "add" : "足立区梅田7丁目", + "line_cd" : 21002, + "selected" : false, + "open_ymd" : "", + "name" : "2100212", + "pref_name" : "東京都", + "shared_name" : "2100212", + "lat" : 35.772437, + "y" : -357724.36999999994, + "x" : 1397979.16 + }, + "position" : { + "x" : 1397979.16, + "y" : -357724.36999999994 + }, + "selected" : false + }, { + "data" : { + "id" : "7603", + "station_name" : "代々木", + "close_ymd" : "", + "lon" : 139.701666, + "post" : "", + "e_status" : 0, + "SUID" : 7603, + "station_g_cd" : 1130207, + "add" : "東京都渋谷区代々木一丁目35-5", + "line_cd" : 99301, + "selected" : false, + "open_ymd" : "", + "name" : "9930127", + "pref_name" : "東京都", + "shared_name" : "9930127", + "lat" : 35.683218, + "y" : -356832.18, + "x" : 1397016.66 + }, + "position" : { + "x" : 1397016.66, + "y" : -356832.18 + }, + "selected" : false + }, { + "data" : { + "id" : "7675", + "station_name" : "大島", + "close_ymd" : "", + "lon" : 139.83565, + "post" : "136-0072", + "e_status" : 0, + "SUID" : 7675, + "station_g_cd" : 9930415, + "add" : "江東区大島5-10-8", + "line_cd" : 99304, + "selected" : false, + "open_ymd" : "", + "name" : "9930415", + "pref_name" : "東京都", + "shared_name" : "9930415", + "lat" : 35.689904999999996, + "y" : -356899.05, + "x" : 1398356.4999999998 + }, + "position" : { + "x" : 1398356.4999999998, + "y" : -356899.05 + }, + "selected" : false + }, { + "data" : { + "id" : "7676", + "station_name" : "東大島", + "close_ymd" : "", + "lon" : 139.84596299999998, + "post" : "136-0072", + "e_status" : 0, + "SUID" : 7676, + "station_g_cd" : 9930416, + "add" : "江東区大島9-3-14", + "line_cd" : 99304, + "selected" : false, + "open_ymd" : "", + "name" : "9930416", + "pref_name" : "東京都", + "shared_name" : "9930416", + "lat" : 35.690355, + "y" : -356903.55, + "x" : 1398459.63 + }, + "position" : { + "x" : 1398459.63, + "y" : -356903.55 + }, + "selected" : false + }, { + "data" : { + "id" : "7673", + "station_name" : "住吉", + "close_ymd" : "", + "lon" : 139.815681, + "post" : "135-0002", + "e_status" : 0, + "SUID" : 7673, + "station_g_cd" : 2800814, + "add" : "江東区住吉2-23-12", + "line_cd" : 99304, + "selected" : false, + "open_ymd" : "", + "name" : "9930413", + "pref_name" : "東京都", + "shared_name" : "9930413", + "lat" : 35.689073, + "y" : -356890.73, + "x" : 1398156.81 + }, + "position" : { + "x" : 1398156.81, + "y" : -356890.73 + }, + "selected" : false + }, { + "data" : { + "id" : "7674", + "station_name" : "西大島", + "close_ymd" : "", + "lon" : 139.826206, + "post" : "136-0072", + "e_status" : 0, + "SUID" : 7674, + "station_g_cd" : 9930414, + "add" : "江東区大島2-41-19", + "line_cd" : 99304, + "selected" : false, + "open_ymd" : "", + "name" : "9930414", + "pref_name" : "東京都", + "shared_name" : "9930414", + "lat" : 35.689349, + "y" : -356893.49, + "x" : 1398262.06 + }, + "position" : { + "x" : 1398262.06, + "y" : -356893.49 + }, + "selected" : false + }, { + "data" : { + "id" : "7671", + "station_name" : "森下", + "close_ymd" : "", + "lon" : 139.797042, + "post" : "135-0004", + "e_status" : 0, + "SUID" : 7671, + "station_g_cd" : 9930114, + "add" : "江東区森下2-17-17", + "line_cd" : 99304, + "selected" : false, + "open_ymd" : "", + "name" : "9930411", + "pref_name" : "東京都", + "shared_name" : "9930411", + "lat" : 35.68796, + "y" : -356879.6, + "x" : 1397970.4200000002 + }, + "position" : { + "x" : 1397970.4200000002, + "y" : -356879.6 + }, + "selected" : false + }, { + "data" : { + "id" : "7672", + "station_name" : "菊川", + "close_ymd" : "", + "lon" : 139.806016, + "post" : "130-0024", + "e_status" : 0, + "SUID" : 7672, + "station_g_cd" : 9930412, + "add" : "墨田区菊川3-16-2", + "line_cd" : 99304, + "selected" : false, + "open_ymd" : "", + "name" : "9930412", + "pref_name" : "東京都", + "shared_name" : "9930412", + "lat" : 35.688379, + "y" : -356883.79, + "x" : 1398060.16 + }, + "position" : { + "x" : 1398060.16, + "y" : -356883.79 + }, + "selected" : false + }, { + "data" : { + "id" : "7669", + "station_name" : "馬喰横山", + "close_ymd" : "", + "lon" : 139.782768, + "post" : "103-0003", + "e_status" : 0, + "SUID" : 7669, + "station_g_cd" : 1131403, + "add" : "中央区日本橋横山町4-13", + "line_cd" : 99304, + "selected" : false, + "open_ymd" : "", + "name" : "9930409", + "pref_name" : "東京都", + "shared_name" : "9930409", + "lat" : 35.69212, + "y" : -356921.2, + "x" : 1397827.68 + }, + "position" : { + "x" : 1397827.68, + "y" : -356921.2 + }, + "selected" : false + }, { + "data" : { + "id" : "7670", + "station_name" : "浜町", + "close_ymd" : "", + "lon" : 139.788154, + "post" : "103-0007", + "e_status" : 0, + "SUID" : 7670, + "station_g_cd" : 9930410, + "add" : "中央区日本橋浜町2-59-3", + "line_cd" : 99304, + "selected" : false, + "open_ymd" : "", + "name" : "9930410", + "pref_name" : "東京都", + "shared_name" : "9930410", + "lat" : 35.688516, + "y" : -356885.16, + "x" : 1397881.5399999998 + }, + "position" : { + "x" : 1397881.5399999998, + "y" : -356885.16 + }, + "selected" : false + }, { + "data" : { + "id" : "3315", + "station_name" : "田端", + "close_ymd" : "", + "lon" : 139.76122900000001, + "post" : "", + "e_status" : 0, + "SUID" : 3315, + "station_g_cd" : 1130216, + "add" : "東京都北区東田端一丁目17-1", + "line_cd" : 11332, + "selected" : false, + "open_ymd" : "", + "name" : "1133214", + "pref_name" : "東京都", + "shared_name" : "1133214", + "lat" : 35.737781, + "y" : -357377.81, + "x" : 1397612.29 + }, + "position" : { + "x" : 1397612.29, + "y" : -357377.81 + }, + "selected" : false + }, { + "data" : { + "id" : "7683", + "station_name" : "荒川一中前", + "close_ymd" : "", + "lon" : 139.788988, + "post" : "116-0003", + "e_status" : 0, + "SUID" : 7683, + "station_g_cd" : 9930502, + "add" : "荒川区南千住1-1", + "line_cd" : 99305, + "selected" : false, + "open_ymd" : "", + "name" : "9930502", + "pref_name" : "東京都", + "shared_name" : "9930502", + "lat" : 35.733659, + "y" : -357336.59, + "x" : 1397889.88 + }, + "position" : { + "x" : 1397889.88, + "y" : -357336.59 + }, + "selected" : false + }, { + "data" : { + "id" : "3316", + "station_name" : "西日暮里", + "close_ymd" : "", + "lon" : 139.76685700000002, + "post" : "", + "e_status" : 0, + "SUID" : 3316, + "station_g_cd" : 1130217, + "add" : "東京都荒川区西日暮里五丁目22-1", + "line_cd" : 11332, + "selected" : false, + "open_ymd" : "", + "name" : "1133215", + "pref_name" : "東京都", + "shared_name" : "1133215", + "lat" : 35.731953999999995, + "y" : -357319.5399999999, + "x" : 1397668.57 + }, + "position" : { + "x" : 1397668.57, + "y" : -357319.5399999999 + }, + "selected" : false + }, { + "data" : { + "id" : "7684", + "station_name" : "荒川区役所前", + "close_ymd" : "", + "lon" : 139.78645600000002, + "post" : "116-0002", + "e_status" : 0, + "SUID" : 7684, + "station_g_cd" : 9930503, + "add" : "荒川区荒川1", + "line_cd" : 99305, + "selected" : false, + "open_ymd" : "", + "name" : "9930503", + "pref_name" : "東京都", + "shared_name" : "9930503", + "lat" : 35.73493, + "y" : -357349.3, + "x" : 1397864.56 + }, + "position" : { + "x" : 1397864.56, + "y" : -357349.3 + }, + "selected" : false + }, { + "data" : { + "id" : "3313", + "station_name" : "王子", + "close_ymd" : "", + "lon" : 139.73809, + "post" : "114-0002", + "e_status" : 0, + "SUID" : 3313, + "station_g_cd" : 1133212, + "add" : "北区王子1丁目", + "line_cd" : 11332, + "selected" : false, + "open_ymd" : "", + "name" : "1133212", + "pref_name" : "東京都", + "shared_name" : "1133212", + "lat" : 35.752538, + "y" : -357525.38, + "x" : 1397380.9 + }, + "position" : { + "x" : 1397380.9, + "y" : -357525.38 + }, + "selected" : false + }, { + "data" : { + "id" : "3314", + "station_name" : "上中里", + "close_ymd" : "", + "lon" : 139.745769, + "post" : "114-0016", + "e_status" : 0, + "SUID" : 3314, + "station_g_cd" : 1133213, + "add" : "北区上中里1丁目", + "line_cd" : 11332, + "selected" : false, + "open_ymd" : "", + "name" : "1133213", + "pref_name" : "東京都", + "shared_name" : "1133213", + "lat" : 35.747279999999996, + "y" : -357472.8, + "x" : 1397457.69 + }, + "position" : { + "x" : 1397457.69, + "y" : -357472.8 + }, + "selected" : false + }, { + "data" : { + "id" : "7682", + "station_name" : "三ノ輪橋", + "close_ymd" : "", + "lon" : 139.791412, + "post" : "116-0003", + "e_status" : 0, + "SUID" : 7682, + "station_g_cd" : 9930501, + "add" : "荒川区南千住1", + "line_cd" : 99305, + "selected" : false, + "open_ymd" : "", + "name" : "9930501", + "pref_name" : "東京都", + "shared_name" : "9930501", + "lat" : 35.732248, + "y" : -357322.48, + "x" : 1397914.12 + }, + "position" : { + "x" : 1397914.12, + "y" : -357322.48 + }, + "selected" : false + }, { + "data" : { + "id" : "3311", + "station_name" : "赤羽", + "close_ymd" : "", + "lon" : 139.72092800000001, + "post" : "115-0045", + "e_status" : 0, + "SUID" : 3311, + "station_g_cd" : 1131903, + "add" : "北区赤羽1丁目", + "line_cd" : 11332, + "selected" : false, + "open_ymd" : "", + "name" : "1133210", + "pref_name" : "東京都", + "shared_name" : "1133210", + "lat" : 35.778026000000004, + "y" : -357780.26000000007, + "x" : 1397209.2800000003 + }, + "position" : { + "x" : 1397209.2800000003, + "y" : -357780.26000000007 + }, + "selected" : false + }, { + "data" : { + "id" : "7679", + "station_name" : "瑞江", + "close_ymd" : "", + "lon" : 139.89761000000001, + "post" : "132-0011", + "e_status" : 0, + "SUID" : 7679, + "station_g_cd" : 9930419, + "add" : "江戸川区瑞江2-2-1", + "line_cd" : 99304, + "selected" : false, + "open_ymd" : "", + "name" : "9930419", + "pref_name" : "東京都", + "shared_name" : "9930419", + "lat" : 35.693318, + "y" : -356933.18, + "x" : 1398976.1 + }, + "position" : { + "x" : 1398976.1, + "y" : -356933.18 + }, + "selected" : false + }, { + "data" : { + "id" : "3312", + "station_name" : "東十条", + "close_ymd" : "", + "lon" : 139.72685800000002, + "post" : "114-0001", + "e_status" : 0, + "SUID" : 3312, + "station_g_cd" : 1133211, + "add" : "北区東十条3丁目", + "line_cd" : 11332, + "selected" : false, + "open_ymd" : "", + "name" : "1133211", + "pref_name" : "東京都", + "shared_name" : "1133211", + "lat" : 35.763803, + "y" : -357638.03, + "x" : 1397268.5800000003 + }, + "position" : { + "x" : 1397268.5800000003, + "y" : -357638.03 + }, + "selected" : false + }, { + "data" : { + "id" : "7680", + "station_name" : "篠崎", + "close_ymd" : "", + "lon" : 139.903698, + "post" : "133-0061", + "e_status" : 0, + "SUID" : 7680, + "station_g_cd" : 9930420, + "add" : "江戸川区篠崎町7-27-1", + "line_cd" : 99304, + "selected" : false, + "open_ymd" : "", + "name" : "9930420", + "pref_name" : "東京都", + "shared_name" : "9930420", + "lat" : 35.706016999999996, + "y" : -357060.17, + "x" : 1399036.98 + }, + "position" : { + "x" : 1399036.98, + "y" : -357060.17 + }, + "selected" : false + }, { + "data" : { + "id" : "7677", + "station_name" : "船堀", + "close_ymd" : "", + "lon" : 139.864258, + "post" : "134-0091", + "e_status" : 0, + "SUID" : 7677, + "station_g_cd" : 9930417, + "add" : "江戸川区船堀3-6-1", + "line_cd" : 99304, + "selected" : false, + "open_ymd" : "", + "name" : "9930417", + "pref_name" : "東京都", + "shared_name" : "9930417", + "lat" : 35.683795, + "y" : -356837.95, + "x" : 1398642.58 + }, + "position" : { + "x" : 1398642.58, + "y" : -356837.95 + }, + "selected" : false + }, { + "data" : { + "id" : "7678", + "station_name" : "一之江", + "close_ymd" : "", + "lon" : 139.882934, + "post" : "134-0003", + "e_status" : 0, + "SUID" : 7678, + "station_g_cd" : 9930418, + "add" : "江戸川区春江町4-2", + "line_cd" : 99304, + "selected" : false, + "open_ymd" : "", + "name" : "9930418", + "pref_name" : "東京都", + "shared_name" : "9930418", + "lat" : 35.686054999999996, + "y" : -356860.55, + "x" : 1398829.34 + }, + "position" : { + "x" : 1398829.34, + "y" : -356860.55 + }, + "selected" : false + }, { + "data" : { + "id" : "7692", + "station_name" : "小台", + "close_ymd" : "", + "lon" : 139.761779, + "post" : "116-0011", + "e_status" : 0, + "SUID" : 7692, + "station_g_cd" : 9930511, + "add" : "荒川区西尾久5", + "line_cd" : 99305, + "selected" : false, + "open_ymd" : "", + "name" : "9930511", + "pref_name" : "東京都", + "shared_name" : "9930511", + "lat" : 35.750578999999995, + "y" : -357505.7899999999, + "x" : 1397617.7899999998 + }, + "position" : { + "x" : 1397617.7899999998, + "y" : -357505.7899999999 + }, + "selected" : false + }, { + "data" : { + "id" : "7691", + "station_name" : "宮ノ前", + "close_ymd" : "", + "lon" : 139.76495500000001, + "post" : "116-0012", + "e_status" : 0, + "SUID" : 7691, + "station_g_cd" : 9930510, + "add" : "荒川区東尾久5", + "line_cd" : 99305, + "selected" : false, + "open_ymd" : "", + "name" : "9930510", + "pref_name" : "東京都", + "shared_name" : "9930510", + "lat" : 35.750135, + "y" : -357501.35, + "x" : 1397649.55 + }, + "position" : { + "x" : 1397649.55, + "y" : -357501.35 + }, + "selected" : false + }, { + "data" : { + "id" : "7690", + "station_name" : "熊野前", + "close_ymd" : "", + "lon" : 139.769204, + "post" : "116-0012", + "e_status" : 0, + "SUID" : 7690, + "station_g_cd" : 9930509, + "add" : "荒川区東尾久5", + "line_cd" : 99305, + "selected" : false, + "open_ymd" : "", + "name" : "9930509", + "pref_name" : "東京都", + "shared_name" : "9930509", + "lat" : 35.749212, + "y" : -357492.12, + "x" : 1397692.04 + }, + "position" : { + "x" : 1397692.04, + "y" : -357492.12 + }, + "selected" : false + }, { + "data" : { + "id" : "7689", + "station_name" : "東尾久三丁目", + "close_ymd" : "", + "lon" : 139.77438600000002, + "post" : "116-0012", + "e_status" : 0, + "SUID" : 7689, + "station_g_cd" : 9930508, + "add" : "荒川区東尾久3", + "line_cd" : 99305, + "selected" : false, + "open_ymd" : "", + "name" : "9930508", + "pref_name" : "東京都", + "shared_name" : "9930508", + "lat" : 35.745398, + "y" : -357453.98000000004, + "x" : 1397743.86 + }, + "position" : { + "x" : 1397743.86, + "y" : -357453.98000000004 + }, + "selected" : false + }, { + "data" : { + "id" : "7688", + "station_name" : "町屋二丁目", + "close_ymd" : "", + "lon" : 139.776625, + "post" : "116-0002", + "e_status" : 0, + "SUID" : 7688, + "station_g_cd" : 9930507, + "add" : "荒川区荒川6", + "line_cd" : 99305, + "selected" : false, + "open_ymd" : "", + "name" : "9930507", + "pref_name" : "東京都", + "shared_name" : "9930507", + "lat" : 35.743837, + "y" : -357438.37, + "x" : 1397766.25 + }, + "position" : { + "x" : 1397766.25, + "y" : -357438.37 + }, + "selected" : false + }, { + "data" : { + "id" : "7687", + "station_name" : "町屋駅前", + "close_ymd" : "", + "lon" : 139.781145, + "post" : "116-0002", + "e_status" : 0, + "SUID" : 7687, + "station_g_cd" : 2300104, + "add" : "荒川区荒川7", + "line_cd" : 99305, + "selected" : false, + "open_ymd" : "", + "name" : "9930506", + "pref_name" : "東京都", + "shared_name" : "9930506", + "lat" : 35.74275, + "y" : -357427.5, + "x" : 1397811.4500000002 + }, + "position" : { + "x" : 1397811.4500000002, + "y" : -357427.5 + }, + "selected" : false + }, { + "data" : { + "id" : "7686", + "station_name" : "荒川七丁目", + "close_ymd" : "", + "lon" : 139.78417, + "post" : "116-0002", + "e_status" : 0, + "SUID" : 7686, + "station_g_cd" : 9930505, + "add" : "荒川区荒川7", + "line_cd" : 99305, + "selected" : false, + "open_ymd" : "", + "name" : "9930505", + "pref_name" : "東京都", + "shared_name" : "9930505", + "lat" : 35.741975, + "y" : -357419.74999999994, + "x" : 1397841.7 + }, + "position" : { + "x" : 1397841.7, + "y" : -357419.74999999994 + }, + "selected" : false + }, { + "data" : { + "id" : "7685", + "station_name" : "荒川二丁目", + "close_ymd" : "", + "lon" : 139.784696, + "post" : "116-0002", + "e_status" : 0, + "SUID" : 7685, + "station_g_cd" : 9930504, + "add" : "荒川区荒川2", + "line_cd" : 99305, + "selected" : false, + "open_ymd" : "", + "name" : "9930504", + "pref_name" : "東京都", + "shared_name" : "9930504", + "lat" : 35.738623, + "y" : -357386.23, + "x" : 1397846.96 + }, + "position" : { + "x" : 1397846.96, + "y" : -357386.23 + }, + "selected" : false + }, { + "data" : { + "id" : "7700", + "station_name" : "西ヶ原四丁目", + "close_ymd" : "", + "lon" : 139.732779, + "post" : "", + "e_status" : 0, + "SUID" : 7700, + "station_g_cd" : 9930519, + "add" : "東京都北区西ヶ原四丁目", + "line_cd" : 99305, + "selected" : false, + "open_ymd" : "", + "name" : "9930519", + "pref_name" : "東京都", + "shared_name" : "9930519", + "lat" : 35.744501, + "y" : -357445.01, + "x" : 1397327.79 + }, + "position" : { + "x" : 1397327.79, + "y" : -357445.01 + }, + "selected" : false + }, { + "data" : { + "id" : "7699", + "station_name" : "滝野川一丁目", + "close_ymd" : "", + "lon" : 139.735376, + "post" : "114-0023", + "e_status" : 0, + "SUID" : 7699, + "station_g_cd" : 9930518, + "add" : "北区滝野川1", + "line_cd" : 99305, + "selected" : false, + "open_ymd" : "", + "name" : "9930518", + "pref_name" : "東京都", + "shared_name" : "9930518", + "lat" : 35.747374, + "y" : -357473.74, + "x" : 1397353.76 + }, + "position" : { + "x" : 1397353.76, + "y" : -357473.74 + }, + "selected" : false + }, { + "data" : { + "id" : "7698", + "station_name" : "飛鳥山", + "close_ymd" : "", + "lon" : 139.737382, + "post" : "114-0023", + "e_status" : 0, + "SUID" : 7698, + "station_g_cd" : 9930517, + "add" : "北区滝野川1", + "line_cd" : 99305, + "selected" : false, + "open_ymd" : "", + "name" : "9930517", + "pref_name" : "東京都", + "shared_name" : "9930517", + "lat" : 35.750248, + "y" : -357502.48, + "x" : 1397373.82 + }, + "position" : { + "x" : 1397373.82, + "y" : -357502.48 + }, + "selected" : false + }, { + "data" : { + "id" : "7697", + "station_name" : "王子駅前", + "close_ymd" : "", + "lon" : 139.737661, + "post" : "114-0002", + "e_status" : 0, + "SUID" : 7697, + "station_g_cd" : 1133212, + "add" : "北区王子1", + "line_cd" : 99305, + "selected" : false, + "open_ymd" : "", + "name" : "9930516", + "pref_name" : "東京都", + "shared_name" : "9930516", + "lat" : 35.753199, + "y" : -357531.99000000005, + "x" : 1397376.61 + }, + "position" : { + "x" : 1397376.61, + "y" : -357531.99000000005 + }, + "selected" : false + }, { + "data" : { + "id" : "7696", + "station_name" : "栄町", + "close_ymd" : "", + "lon" : 139.742124, + "post" : "114-0005", + "e_status" : 0, + "SUID" : 7696, + "station_g_cd" : 9930515, + "add" : "北区栄町", + "line_cd" : 99305, + "selected" : false, + "open_ymd" : "", + "name" : "9930515", + "pref_name" : "東京都", + "shared_name" : "9930515", + "lat" : 35.750909, + "y" : -357509.09, + "x" : 1397421.24 + }, + "position" : { + "x" : 1397421.24, + "y" : -357509.09 + }, + "selected" : false + }, { + "data" : { + "id" : "7695", + "station_name" : "梶原", + "close_ymd" : "", + "lon" : 139.747403, + "post" : "114-0004", + "e_status" : 0, + "SUID" : 7695, + "station_g_cd" : 9930514, + "add" : "北区堀船3", + "line_cd" : 99305, + "selected" : false, + "open_ymd" : "", + "name" : "9930514", + "pref_name" : "東京都", + "shared_name" : "9930514", + "lat" : 35.751162, + "y" : -357511.62, + "x" : 1397474.03 + }, + "position" : { + "x" : 1397474.03, + "y" : -357511.62 + }, + "selected" : false + }, { + "data" : { + "id" : "7694", + "station_name" : "荒川車庫前", + "close_ymd" : "", + "lon" : 139.752617, + "post" : "116-0011", + "e_status" : 0, + "SUID" : 7694, + "station_g_cd" : 9930513, + "add" : "荒川区西尾久7", + "line_cd" : 99305, + "selected" : false, + "open_ymd" : "", + "name" : "9930513", + "pref_name" : "東京都", + "shared_name" : "9930513", + "lat" : 35.750909, + "y" : -357509.09, + "x" : 1397526.17 + }, + "position" : { + "x" : 1397526.17, + "y" : -357509.09 + }, + "selected" : false + }, { + "data" : { + "id" : "7693", + "station_name" : "荒川遊園地前", + "close_ymd" : "", + "lon" : 139.757767, + "post" : "116-0011", + "e_status" : 0, + "SUID" : 7693, + "station_g_cd" : 9930512, + "add" : "荒川区西尾久5", + "line_cd" : 99305, + "selected" : false, + "open_ymd" : "", + "name" : "9930512", + "pref_name" : "東京都", + "shared_name" : "9930512", + "lat" : 35.750744, + "y" : -357507.44, + "x" : 1397577.67 + }, + "position" : { + "x" : 1397577.67, + "y" : -357507.44 + }, + "selected" : false + }, { + "data" : { + "id" : "7641", + "station_name" : "日比谷", + "close_ymd" : "", + "lon" : 139.759998, + "post" : "100-0006", + "e_status" : 0, + "SUID" : 7641, + "station_g_cd" : 2800315, + "add" : "千代田区有楽町1丁目", + "line_cd" : 99303, + "selected" : false, + "open_ymd" : "", + "name" : "9930308", + "pref_name" : "東京都", + "shared_name" : "9930308", + "lat" : 35.676035999999996, + "y" : -356760.36, + "x" : 1397599.98 + }, + "position" : { + "x" : 1397599.98, + "y" : -356760.36 + }, + "selected" : false + }, { + "data" : { + "id" : "7642", + "station_name" : "大手町", + "close_ymd" : "", + "lon" : 139.762959, + "post" : "100-0004", + "e_status" : 0, + "SUID" : 7642, + "station_g_cd" : 2800208, + "add" : "千代田区大手町1丁目", + "line_cd" : 99303, + "selected" : false, + "open_ymd" : "", + "name" : "9930309", + "pref_name" : "東京都", + "shared_name" : "9930309", + "lat" : 35.684855999999996, + "y" : -356848.55999999994, + "x" : 1397629.5899999999 + }, + "position" : { + "x" : 1397629.5899999999, + "y" : -356848.55999999994 + }, + "selected" : false + }, { + "data" : { + "id" : "3339", + "station_name" : "赤羽", + "close_ymd" : "", + "lon" : 139.72092800000001, + "post" : "115-0045", + "e_status" : 0, + "SUID" : 3339, + "station_g_cd" : 1131903, + "add" : "北区赤羽1丁目", + "line_cd" : 11333, + "selected" : false, + "open_ymd" : "", + "name" : "1133302", + "pref_name" : "東京都", + "shared_name" : "1133302", + "lat" : 35.778026000000004, + "y" : -357780.26000000007, + "x" : 1397209.2800000003 + }, + "position" : { + "x" : 1397209.2800000003, + "y" : -357780.26000000007 + }, + "selected" : false + }, { + "data" : { + "id" : "7643", + "station_name" : "神保町", + "close_ymd" : "", + "lon" : 139.75812, + "post" : "101-0051", + "e_status" : 0, + "SUID" : 7643, + "station_g_cd" : 2800807, + "add" : "千代田区神田神保町2-2", + "line_cd" : 99303, + "selected" : false, + "open_ymd" : "", + "name" : "9930310", + "pref_name" : "東京都", + "shared_name" : "9930310", + "lat" : 35.695492, + "y" : -356954.92000000004, + "x" : 1397581.2 + }, + "position" : { + "x" : 1397581.2, + "y" : -356954.92000000004 + }, + "selected" : false + }, { + "data" : { + "id" : "3340", + "station_name" : "池袋", + "close_ymd" : "", + "lon" : 139.71108600000002, + "post" : "", + "e_status" : 0, + "SUID" : 3340, + "station_g_cd" : 1130212, + "add" : "東京都豊島区", + "line_cd" : 11333, + "selected" : false, + "open_ymd" : "", + "name" : "1133303", + "pref_name" : "東京都", + "shared_name" : "1133303", + "lat" : 35.730256, + "y" : -357302.56, + "x" : 1397110.8600000003 + }, + "position" : { + "x" : 1397110.8600000003, + "y" : -357302.56 + }, + "selected" : false + }, { + "data" : { + "id" : "7644", + "station_name" : "水道橋", + "close_ymd" : "", + "lon" : 139.75516000000002, + "post" : "101-0061", + "e_status" : 0, + "SUID" : 7644, + "station_g_cd" : 1131204, + "add" : "千代田区三崎町2丁目", + "line_cd" : 99303, + "selected" : false, + "open_ymd" : "", + "name" : "9930311", + "pref_name" : "東京都", + "shared_name" : "9930311", + "lat" : 35.703398, + "y" : -357033.98, + "x" : 1397551.6 + }, + "position" : { + "x" : 1397551.6, + "y" : -357033.98 + }, + "selected" : false + }, { + "data" : { + "id" : "7637", + "station_name" : "三田", + "close_ymd" : "", + "lon" : 139.748775, + "post" : "108-0014", + "e_status" : 0, + "SUID" : 7637, + "station_g_cd" : 9930208, + "add" : "港区芝5-34-10", + "line_cd" : 99303, + "selected" : false, + "open_ymd" : "", + "name" : "9930304", + "pref_name" : "東京都", + "shared_name" : "9930304", + "lat" : 35.648179999999996, + "y" : -356481.8, + "x" : 1397487.75 + }, + "position" : { + "x" : 1397487.75, + "y" : -356481.8 + }, + "selected" : false + }, { + "data" : { + "id" : "7638", + "station_name" : "芝公園", + "close_ymd" : "", + "lon" : 139.749824, + "post" : "105-0011", + "e_status" : 0, + "SUID" : 7638, + "station_g_cd" : 9930305, + "add" : "港区芝公園4-8-14", + "line_cd" : 99303, + "selected" : false, + "open_ymd" : "", + "name" : "9930305", + "pref_name" : "東京都", + "shared_name" : "9930305", + "lat" : 35.654074, + "y" : -356540.74, + "x" : 1397498.24 + }, + "position" : { + "x" : 1397498.24, + "y" : -356540.74 + }, + "selected" : false + }, { + "data" : { + "id" : "7639", + "station_name" : "御成門", + "close_ymd" : "", + "lon" : 139.75153500000002, + "post" : "105-0003", + "e_status" : 0, + "SUID" : 7639, + "station_g_cd" : 9930306, + "add" : "港区西新橋3-24-6", + "line_cd" : 99303, + "selected" : false, + "open_ymd" : "", + "name" : "9930306", + "pref_name" : "東京都", + "shared_name" : "9930306", + "lat" : 35.661215000000006, + "y" : -356612.1500000001, + "x" : 1397515.35 + }, + "position" : { + "x" : 1397515.35, + "y" : -356612.1500000001 + }, + "selected" : false + }, { + "data" : { + "id" : "7640", + "station_name" : "内幸町", + "close_ymd" : "", + "lon" : 139.75561000000002, + "post" : "100-0011", + "e_status" : 0, + "SUID" : 7640, + "station_g_cd" : 9930307, + "add" : "千代田区内幸町2-2-3", + "line_cd" : 99303, + "selected" : false, + "open_ymd" : "", + "name" : "9930307", + "pref_name" : "東京都", + "shared_name" : "9930307", + "lat" : 35.66975, + "y" : -356697.5, + "x" : 1397556.1 + }, + "position" : { + "x" : 1397556.1, + "y" : -356697.5 + }, + "selected" : false + }, { + "data" : { + "id" : "3345", + "station_name" : "西大井", + "close_ymd" : "", + "lon" : 139.721729, + "post" : "140-0015", + "e_status" : 0, + "SUID" : 3345, + "station_g_cd" : 1130804, + "add" : "品川区西大井1丁目", + "line_cd" : 11333, + "selected" : false, + "open_ymd" : "", + "name" : "1133308", + "pref_name" : "東京都", + "shared_name" : "1133308", + "lat" : 35.601616, + "y" : -356016.16, + "x" : 1397217.29 + }, + "position" : { + "x" : 1397217.29, + "y" : -356016.16 + }, + "selected" : false + }, { + "data" : { + "id" : "7649", + "station_name" : "西巣鴨", + "close_ymd" : "", + "lon" : 139.728712, + "post" : "170-0001", + "e_status" : 0, + "SUID" : 7649, + "station_g_cd" : 9930316, + "add" : "豊島区西巣鴨3-25-13", + "line_cd" : 99303, + "selected" : false, + "open_ymd" : "", + "name" : "9930316", + "pref_name" : "東京都", + "shared_name" : "9930316", + "lat" : 35.743508, + "y" : -357435.07999999996, + "x" : 1397287.12 + }, + "position" : { + "x" : 1397287.12, + "y" : -357435.07999999996 + }, + "selected" : false + }, { + "data" : { + "id" : "7650", + "station_name" : "新板橋", + "close_ymd" : "", + "lon" : 139.720101, + "post" : "173-0004", + "e_status" : 0, + "SUID" : 7650, + "station_g_cd" : 9930317, + "add" : "板橋区板橋1-53-17", + "line_cd" : 99303, + "selected" : false, + "open_ymd" : "", + "name" : "9930317", + "pref_name" : "東京都", + "shared_name" : "9930317", + "lat" : 35.748785, + "y" : -357487.85, + "x" : 1397201.01 + }, + "position" : { + "x" : 1397201.01, + "y" : -357487.85 + }, + "selected" : false + }, { + "data" : { + "id" : "7651", + "station_name" : "板橋区役所前", + "close_ymd" : "", + "lon" : 139.710102, + "post" : "173-0004", + "e_status" : 0, + "SUID" : 7651, + "station_g_cd" : 9930318, + "add" : "板橋区板橋2-66-17", + "line_cd" : 99303, + "selected" : false, + "open_ymd" : "", + "name" : "9930318", + "pref_name" : "東京都", + "shared_name" : "9930318", + "lat" : 35.751284000000005, + "y" : -357512.84, + "x" : 1397101.02 + }, + "position" : { + "x" : 1397101.02, + "y" : -357512.84 + }, + "selected" : false + }, { + "data" : { + "id" : "7652", + "station_name" : "板橋本町", + "close_ymd" : "", + "lon" : 139.705535, + "post" : "173-0012", + "e_status" : 0, + "SUID" : 7652, + "station_g_cd" : 9930319, + "add" : "板橋区大和町17-1", + "line_cd" : 99303, + "selected" : false, + "open_ymd" : "", + "name" : "9930319", + "pref_name" : "東京都", + "shared_name" : "9930319", + "lat" : 35.761339, + "y" : -357613.39, + "x" : 1397055.3499999999 + }, + "position" : { + "x" : 1397055.3499999999, + "y" : -357613.39 + }, + "selected" : false + }, { + "data" : { + "id" : "3341", + "station_name" : "新宿", + "close_ymd" : "", + "lon" : 139.70046399999998, + "post" : "", + "e_status" : 0, + "SUID" : 3341, + "station_g_cd" : 1130208, + "add" : "東京都新宿区新宿三丁目38-1", + "line_cd" : 11333, + "selected" : false, + "open_ymd" : "", + "name" : "1133304", + "pref_name" : "東京都", + "shared_name" : "1133304", + "lat" : 35.689729, + "y" : -356897.29, + "x" : 1397004.64 + }, + "position" : { + "x" : 1397004.64, + "y" : -356897.29 + }, + "selected" : false + }, { + "data" : { + "id" : "7645", + "station_name" : "春日", + "close_ymd" : "", + "lon" : 139.75325, + "post" : "112-0003", + "e_status" : 0, + "SUID" : 7645, + "station_g_cd" : 9930108, + "add" : "文京区春日1-16-17", + "line_cd" : 99303, + "selected" : false, + "open_ymd" : "", + "name" : "9930312", + "pref_name" : "東京都", + "shared_name" : "9930312", + "lat" : 35.709598, + "y" : -357095.98, + "x" : 1397532.5 + }, + "position" : { + "x" : 1397532.5, + "y" : -357095.98 + }, + "selected" : false + }, { + "data" : { + "id" : "3342", + "station_name" : "渋谷", + "close_ymd" : "", + "lon" : 139.701238, + "post" : "", + "e_status" : 0, + "SUID" : 3342, + "station_g_cd" : 1130205, + "add" : "東京都渋谷区道玄坂一丁目1-1", + "line_cd" : 11333, + "selected" : false, + "open_ymd" : "", + "name" : "1133305", + "pref_name" : "東京都", + "shared_name" : "1133305", + "lat" : 35.658871000000005, + "y" : -356588.71, + "x" : 1397012.38 + }, + "position" : { + "x" : 1397012.38, + "y" : -356588.71 + }, + "selected" : false + }, { + "data" : { + "id" : "7646", + "station_name" : "白山", + "close_ymd" : "", + "lon" : 139.752136, + "post" : "112-0001", + "e_status" : 0, + "SUID" : 7646, + "station_g_cd" : 9930313, + "add" : "文京区白山5-36-10", + "line_cd" : 99303, + "selected" : false, + "open_ymd" : "", + "name" : "9930313", + "pref_name" : "東京都", + "shared_name" : "9930313", + "lat" : 35.721408000000004, + "y" : -357214.08, + "x" : 1397521.36 + }, + "position" : { + "x" : 1397521.36, + "y" : -357214.08 + }, + "selected" : false + }, { + "data" : { + "id" : "3343", + "station_name" : "恵比寿", + "close_ymd" : "", + "lon" : 139.71007, + "post" : "", + "e_status" : 0, + "SUID" : 3343, + "station_g_cd" : 1130204, + "add" : "東京都渋谷区恵比寿南一丁目5-5", + "line_cd" : 11333, + "selected" : false, + "open_ymd" : "", + "name" : "1133306", + "pref_name" : "東京都", + "shared_name" : "1133306", + "lat" : 35.646685, + "y" : -356466.85, + "x" : 1397100.7 + }, + "position" : { + "x" : 1397100.7, + "y" : -356466.85 + }, + "selected" : false + }, { + "data" : { + "id" : "7647", + "station_name" : "千石", + "close_ymd" : "", + "lon" : 139.744792, + "post" : "112-0011", + "e_status" : 0, + "SUID" : 7647, + "station_g_cd" : 9930314, + "add" : "文京区千石1-29-13", + "line_cd" : 99303, + "selected" : false, + "open_ymd" : "", + "name" : "9930314", + "pref_name" : "東京都", + "shared_name" : "9930314", + "lat" : 35.727957, + "y" : -357279.57, + "x" : 1397447.92 + }, + "position" : { + "x" : 1397447.92, + "y" : -357279.57 + }, + "selected" : false + }, { + "data" : { + "id" : "3344", + "station_name" : "大崎", + "close_ymd" : "", + "lon" : 139.72843899999998, + "post" : "", + "e_status" : 0, + "SUID" : 3344, + "station_g_cd" : 1130201, + "add" : "東京都品川区大崎一丁目21-4", + "line_cd" : 11333, + "selected" : false, + "open_ymd" : "", + "name" : "1133307", + "pref_name" : "東京都", + "shared_name" : "1133307", + "lat" : 35.619772, + "y" : -356197.72, + "x" : 1397284.39 + }, + "position" : { + "x" : 1397284.39, + "y" : -356197.72 + }, + "selected" : false + }, { + "data" : { + "id" : "7648", + "station_name" : "巣鴨", + "close_ymd" : "", + "lon" : 139.738519, + "post" : "", + "e_status" : 0, + "SUID" : 7648, + "station_g_cd" : 1130214, + "add" : "東京都豊島区巣鴨", + "line_cd" : 99303, + "selected" : false, + "open_ymd" : "", + "name" : "9930315", + "pref_name" : "東京都", + "shared_name" : "9930315", + "lat" : 35.733502, + "y" : -357335.02, + "x" : 1397385.19 + }, + "position" : { + "x" : 1397385.19, + "y" : -357335.02 + }, + "selected" : false + }, { + "data" : { + "id" : "3322", + "station_name" : "神田", + "close_ymd" : "", + "lon" : 139.77064099999998, + "post" : "", + "e_status" : 0, + "SUID" : 3322, + "station_g_cd" : 1130223, + "add" : "東京都千代田区鍛冶町二丁目13-1", + "line_cd" : 11332, + "selected" : false, + "open_ymd" : "", + "name" : "1133221", + "pref_name" : "東京都", + "shared_name" : "1133221", + "lat" : 35.691173, + "y" : -356911.73, + "x" : 1397706.41 + }, + "position" : { + "x" : 1397706.41, + "y" : -356911.73 + }, + "selected" : false + }, { + "data" : { + "id" : "7658", + "station_name" : "高島平", + "close_ymd" : "", + "lon" : 139.661216, + "post" : "175-0082", + "e_status" : 0, + "SUID" : 7658, + "station_g_cd" : 9930325, + "add" : "板橋区高島平8-2-1", + "line_cd" : 99303, + "selected" : false, + "open_ymd" : "", + "name" : "9930325", + "pref_name" : "東京都", + "shared_name" : "9930325", + "lat" : 35.789056, + "y" : -357890.56, + "x" : 1396612.16 + }, + "position" : { + "x" : 1396612.16, + "y" : -357890.56 + }, + "selected" : false + }, { + "data" : { + "id" : "3321", + "station_name" : "秋葉原", + "close_ymd" : "", + "lon" : 139.77328799999998, + "post" : "", + "e_status" : 0, + "SUID" : 3321, + "station_g_cd" : 1130222, + "add" : "東京都千代田区外神田一丁目17-6", + "line_cd" : 11332, + "selected" : false, + "open_ymd" : "", + "name" : "1133220", + "pref_name" : "東京都", + "shared_name" : "1133220", + "lat" : 35.698619, + "y" : -356986.19, + "x" : 1397732.88 + }, + "position" : { + "x" : 1397732.88, + "y" : -356986.19 + }, + "selected" : false + }, { + "data" : { + "id" : "7657", + "station_name" : "西台", + "close_ymd" : "", + "lon" : 139.673971, + "post" : "175-0082", + "e_status" : 0, + "SUID" : 7657, + "station_g_cd" : 9930324, + "add" : "板橋区高島平9-1-1", + "line_cd" : 99303, + "selected" : false, + "open_ymd" : "", + "name" : "9930324", + "pref_name" : "東京都", + "shared_name" : "9930324", + "lat" : 35.78699, + "y" : -357869.9, + "x" : 1396739.71 + }, + "position" : { + "x" : 1396739.71, + "y" : -357869.9 + }, + "selected" : false + }, { + "data" : { + "id" : "3324", + "station_name" : "有楽町", + "close_ymd" : "", + "lon" : 139.76380600000002, + "post" : "", + "e_status" : 0, + "SUID" : 3324, + "station_g_cd" : 1130225, + "add" : "東京都千代田区有楽町二丁目9-17", + "line_cd" : 11332, + "selected" : false, + "open_ymd" : "", + "name" : "1133223", + "pref_name" : "東京都", + "shared_name" : "1133223", + "lat" : 35.675441, + "y" : -356754.41, + "x" : 1397638.06 + }, + "position" : { + "x" : 1397638.06, + "y" : -356754.41 + }, + "selected" : false + }, { + "data" : { + "id" : "7660", + "station_name" : "西高島平", + "close_ymd" : "", + "lon" : 139.64594, + "post" : "175-0082", + "e_status" : 0, + "SUID" : 7660, + "station_g_cd" : 9930327, + "add" : "板橋区高島平6-1", + "line_cd" : 99303, + "selected" : false, + "open_ymd" : "", + "name" : "9930327", + "pref_name" : "東京都", + "shared_name" : "9930327", + "lat" : 35.791833000000004, + "y" : -357918.33, + "x" : 1396459.4 + }, + "position" : { + "x" : 1396459.4, + "y" : -357918.33 + }, + "selected" : false + }, { + "data" : { + "id" : "3323", + "station_name" : "東京", + "close_ymd" : "", + "lon" : 139.76610300000002, + "post" : "", + "e_status" : 0, + "SUID" : 3323, + "station_g_cd" : 1130101, + "add" : "東京都千代田区丸の内一丁目", + "line_cd" : 11332, + "selected" : false, + "open_ymd" : "", + "name" : "1133222", + "pref_name" : "東京都", + "shared_name" : "1133222", + "lat" : 35.681391, + "y" : -356813.91, + "x" : 1397661.0300000003 + }, + "position" : { + "x" : 1397661.0300000003, + "y" : -356813.91 + }, + "selected" : false + }, { + "data" : { + "id" : "7659", + "station_name" : "新高島平", + "close_ymd" : "", + "lon" : 139.654275, + "post" : "175-0082", + "e_status" : 0, + "SUID" : 7659, + "station_g_cd" : 9930326, + "add" : "板橋区高島平7-1", + "line_cd" : 99303, + "selected" : false, + "open_ymd" : "", + "name" : "9930326", + "pref_name" : "東京都", + "shared_name" : "9930326", + "lat" : 35.790189, + "y" : -357901.88999999996, + "x" : 1396542.7500000002 + }, + "position" : { + "x" : 1396542.7500000002, + "y" : -357901.88999999996 + }, + "selected" : false + }, { + "data" : { + "id" : "3318", + "station_name" : "鶯谷", + "close_ymd" : "", + "lon" : 139.77801499999998, + "post" : "", + "e_status" : 0, + "SUID" : 3318, + "station_g_cd" : 1130219, + "add" : "東京都台東区根岸一丁目4-1", + "line_cd" : 11332, + "selected" : false, + "open_ymd" : "", + "name" : "1133217", + "pref_name" : "東京都", + "shared_name" : "1133217", + "lat" : 35.721484000000004, + "y" : -357214.84, + "x" : 1397780.15 + }, + "position" : { + "x" : 1397780.15, + "y" : -357214.84 + }, + "selected" : false + }, { + "data" : { + "id" : "7654", + "station_name" : "志村坂上", + "close_ymd" : "", + "lon" : 139.69538, + "post" : "174-0056", + "e_status" : 0, + "SUID" : 7654, + "station_g_cd" : 9930321, + "add" : "板橋区志村1-14-13", + "line_cd" : 99303, + "selected" : false, + "open_ymd" : "", + "name" : "9930321", + "pref_name" : "東京都", + "shared_name" : "9930321", + "lat" : 35.775725, + "y" : -357757.25, + "x" : 1396953.8 + }, + "position" : { + "x" : 1396953.8, + "y" : -357757.25 + }, + "selected" : false + }, { + "data" : { + "id" : "3317", + "station_name" : "日暮里", + "close_ymd" : "", + "lon" : 139.771287, + "post" : "", + "e_status" : 0, + "SUID" : 3317, + "station_g_cd" : 1130218, + "add" : "東京都荒川区西日暮里二丁目", + "line_cd" : 11332, + "selected" : false, + "open_ymd" : "", + "name" : "1133216", + "pref_name" : "東京都", + "shared_name" : "1133216", + "lat" : 35.727908, + "y" : -357279.08, + "x" : 1397712.87 + }, + "position" : { + "x" : 1397712.87, + "y" : -357279.08 + }, + "selected" : false + }, { + "data" : { + "id" : "7653", + "station_name" : "本蓮沼", + "close_ymd" : "", + "lon" : 139.702324, + "post" : "174-0052", + "e_status" : 0, + "SUID" : 7653, + "station_g_cd" : 9930320, + "add" : "板橋区蓮沼町19-8", + "line_cd" : 99303, + "selected" : false, + "open_ymd" : "", + "name" : "9930320", + "pref_name" : "東京都", + "shared_name" : "9930320", + "lat" : 35.768782, + "y" : -357687.82, + "x" : 1397023.24 + }, + "position" : { + "x" : 1397023.24, + "y" : -357687.82 + }, + "selected" : false + }, { + "data" : { + "id" : "3320", + "station_name" : "御徒町", + "close_ymd" : "", + "lon" : 139.774727, + "post" : "", + "e_status" : 0, + "SUID" : 3320, + "station_g_cd" : 1130221, + "add" : "東京都台東区上野五丁目27", + "line_cd" : 11332, + "selected" : false, + "open_ymd" : "", + "name" : "1133219", + "pref_name" : "東京都", + "shared_name" : "1133219", + "lat" : 35.707282, + "y" : -357072.82, + "x" : 1397747.27 + }, + "position" : { + "x" : 1397747.27, + "y" : -357072.82 + }, + "selected" : false + }, { + "data" : { + "id" : "7656", + "station_name" : "蓮根", + "close_ymd" : "", + "lon" : 139.678993, + "post" : "174-0046", + "e_status" : 0, + "SUID" : 7656, + "station_g_cd" : 9930323, + "add" : "板橋区蓮根2-31-30", + "line_cd" : 99303, + "selected" : false, + "open_ymd" : "", + "name" : "9930323", + "pref_name" : "東京都", + "shared_name" : "9930323", + "lat" : 35.784335, + "y" : -357843.35, + "x" : 1396789.93 + }, + "position" : { + "x" : 1396789.93, + "y" : -357843.35 + }, + "selected" : false + }, { + "data" : { + "id" : "3319", + "station_name" : "上野", + "close_ymd" : "", + "lon" : 139.777043, + "post" : "", + "e_status" : 0, + "SUID" : 3319, + "station_g_cd" : 1130220, + "add" : "東京都台東区上野七丁目1-1", + "line_cd" : 11332, + "selected" : false, + "open_ymd" : "", + "name" : "1133218", + "pref_name" : "東京都", + "shared_name" : "1133218", + "lat" : 35.71379, + "y" : -357137.9, + "x" : 1397770.43 + }, + "position" : { + "x" : 1397770.43, + "y" : -357137.9 + }, + "selected" : false + }, { + "data" : { + "id" : "7655", + "station_name" : "志村三丁目", + "close_ymd" : "", + "lon" : 139.68593700000002, + "post" : "174-0056", + "e_status" : 0, + "SUID" : 7655, + "station_g_cd" : 9930322, + "add" : "板橋区志村3-23-1", + "line_cd" : 99303, + "selected" : false, + "open_ymd" : "", + "name" : "9930322", + "pref_name" : "東京都", + "shared_name" : "9930322", + "lat" : 35.777390999999994, + "y" : -357773.9099999999, + "x" : 1396859.3700000003 + }, + "position" : { + "x" : 1396859.3700000003, + "y" : -357773.9099999999 + }, + "selected" : false + }, { + "data" : { + "id" : "3330", + "station_name" : "大森", + "close_ymd" : "", + "lon" : 139.728079, + "post" : "143-0016", + "e_status" : 0, + "SUID" : 3330, + "station_g_cd" : 1133229, + "add" : "大田区大森北1丁目", + "line_cd" : 11332, + "selected" : false, + "open_ymd" : "", + "name" : "1133229", + "pref_name" : "東京都", + "shared_name" : "1133229", + "lat" : 35.588903, + "y" : -355889.03, + "x" : 1397280.79 + }, + "position" : { + "x" : 1397280.79, + "y" : -355889.03 + }, + "selected" : false + }, { + "data" : { + "id" : "7666", + "station_name" : "神保町", + "close_ymd" : "", + "lon" : 139.757606, + "post" : "101-0051", + "e_status" : 0, + "SUID" : 7666, + "station_g_cd" : 2800807, + "add" : "千代田区神田神保町2-2", + "line_cd" : 99304, + "selected" : false, + "open_ymd" : "", + "name" : "9930406", + "pref_name" : "東京都", + "shared_name" : "9930406", + "lat" : 35.695966, + "y" : -356959.66, + "x" : 1397576.06 + }, + "position" : { + "x" : 1397576.06, + "y" : -356959.66 + }, + "selected" : false + }, { + "data" : { + "id" : "3329", + "station_name" : "大井町", + "close_ymd" : "", + "lon" : 139.73485, + "post" : "140-0014", + "e_status" : 0, + "SUID" : 3329, + "station_g_cd" : 1133228, + "add" : "品川区大井1丁目", + "line_cd" : 11332, + "selected" : false, + "open_ymd" : "", + "name" : "1133228", + "pref_name" : "東京都", + "shared_name" : "1133228", + "lat" : 35.606257, + "y" : -356062.57, + "x" : 1397348.5 + }, + "position" : { + "x" : 1397348.5, + "y" : -356062.57 + }, + "selected" : false + }, { + "data" : { + "id" : "7665", + "station_name" : "九段下", + "close_ymd" : "", + "lon" : 139.751948, + "post" : "102-0074", + "e_status" : 0, + "SUID" : 7665, + "station_g_cd" : 2800407, + "add" : "千代田区九段南1-6-1", + "line_cd" : 99304, + "selected" : false, + "open_ymd" : "", + "name" : "9930405", + "pref_name" : "東京都", + "shared_name" : "9930405", + "lat" : 35.695589, + "y" : -356955.88999999996, + "x" : 1397519.48 + }, + "position" : { + "x" : 1397519.48, + "y" : -356955.88999999996 + }, + "selected" : false + }, { + "data" : { + "id" : "7668", + "station_name" : "岩本町", + "close_ymd" : "", + "lon" : 139.77586599999998, + "post" : "101-0033", + "e_status" : 0, + "SUID" : 7668, + "station_g_cd" : 9930408, + "add" : "千代田区神田岩本町1", + "line_cd" : 99304, + "selected" : false, + "open_ymd" : "", + "name" : "9930408", + "pref_name" : "東京都", + "shared_name" : "9930408", + "lat" : 35.695534, + "y" : -356955.34, + "x" : 1397758.6599999997 + }, + "position" : { + "x" : 1397758.6599999997, + "y" : -356955.34 + }, + "selected" : false + }, { + "data" : { + "id" : "3331", + "station_name" : "蒲田", + "close_ymd" : "", + "lon" : 139.716032, + "post" : "144-0052", + "e_status" : 0, + "SUID" : 3331, + "station_g_cd" : 1133230, + "add" : "大田区蒲田5丁目", + "line_cd" : 11332, + "selected" : false, + "open_ymd" : "", + "name" : "1133230", + "pref_name" : "東京都", + "shared_name" : "1133230", + "lat" : 35.562517, + "y" : -355625.17, + "x" : 1397160.32 + }, + "position" : { + "x" : 1397160.32, + "y" : -355625.17 + }, + "selected" : false + }, { + "data" : { + "id" : "7667", + "station_name" : "小川町", + "close_ymd" : "", + "lon" : 139.767551, + "post" : "101-0052", + "e_status" : 0, + "SUID" : 7667, + "station_g_cd" : 2800207, + "add" : "千代田区神田小川町1-6", + "line_cd" : 99304, + "selected" : false, + "open_ymd" : "", + "name" : "9930407", + "pref_name" : "東京都", + "shared_name" : "9930407", + "lat" : 35.695487, + "y" : -356954.87, + "x" : 1397675.51 + }, + "position" : { + "x" : 1397675.51, + "y" : -356954.87 + }, + "selected" : false + }, { + "data" : { + "id" : "3326", + "station_name" : "浜松町", + "close_ymd" : "", + "lon" : 139.757135, + "post" : "", + "e_status" : 0, + "SUID" : 3326, + "station_g_cd" : 1130227, + "add" : "東京都港区海岸一丁目3-1", + "line_cd" : 11332, + "selected" : false, + "open_ymd" : "", + "name" : "1133225", + "pref_name" : "東京都", + "shared_name" : "1133225", + "lat" : 35.655390999999995, + "y" : -356553.9099999999, + "x" : 1397571.35 + }, + "position" : { + "x" : 1397571.35, + "y" : -356553.9099999999 + }, + "selected" : false + }, { + "data" : { + "id" : "7662", + "station_name" : "新宿三丁目", + "close_ymd" : "", + "lon" : 139.706271, + "post" : "160-0022", + "e_status" : 0, + "SUID" : 7662, + "station_g_cd" : 2800217, + "add" : "新宿区新宿3-14-1", + "line_cd" : 99304, + "selected" : false, + "open_ymd" : "", + "name" : "9930402", + "pref_name" : "東京都", + "shared_name" : "9930402", + "lat" : 35.690616, + "y" : -356906.16, + "x" : 1397062.71 + }, + "position" : { + "x" : 1397062.71, + "y" : -356906.16 + }, + "selected" : false + }, { + "data" : { + "id" : "3325", + "station_name" : "新橋", + "close_ymd" : "", + "lon" : 139.758587, + "post" : "", + "e_status" : 0, + "SUID" : 3325, + "station_g_cd" : 1130102, + "add" : "東京都港区新橋二丁目17", + "line_cd" : 11332, + "selected" : false, + "open_ymd" : "", + "name" : "1133224", + "pref_name" : "東京都", + "shared_name" : "1133224", + "lat" : 35.666195, + "y" : -356661.95, + "x" : 1397585.87 + }, + "position" : { + "x" : 1397585.87, + "y" : -356661.95 + }, + "selected" : false + }, { + "data" : { + "id" : "7661", + "station_name" : "新宿", + "close_ymd" : "", + "lon" : 139.698812, + "post" : "", + "e_status" : 0, + "SUID" : 7661, + "station_g_cd" : 1130208, + "add" : "東京都新宿区西新宿一丁目18", + "line_cd" : 99304, + "selected" : false, + "open_ymd" : "", + "name" : "9930401", + "pref_name" : "東京都", + "shared_name" : "9930401", + "lat" : 35.68869, + "y" : -356886.9, + "x" : 1396988.12 + }, + "position" : { + "x" : 1396988.12, + "y" : -356886.9 + }, + "selected" : false + }, { + "data" : { + "id" : "3328", + "station_name" : "品川", + "close_ymd" : "", + "lon" : 139.738999, + "post" : "", + "e_status" : 0, + "SUID" : 3328, + "station_g_cd" : 1130103, + "add" : "東京都港区高輪三丁目26-26", + "line_cd" : 11332, + "selected" : false, + "open_ymd" : "", + "name" : "1133227", + "pref_name" : "東京都", + "shared_name" : "1133227", + "lat" : 35.62876, + "y" : -356287.6, + "x" : 1397389.99 + }, + "position" : { + "x" : 1397389.99, + "y" : -356287.6 + }, + "selected" : false + }, { + "data" : { + "id" : "7664", + "station_name" : "市ヶ谷", + "close_ymd" : "", + "lon" : 139.735794, + "post" : "162-0843", + "e_status" : 0, + "SUID" : 7664, + "station_g_cd" : 1131206, + "add" : "東京都新宿区市谷田町一丁目1", + "line_cd" : 99304, + "selected" : false, + "open_ymd" : "", + "name" : "9930404", + "pref_name" : "東京都", + "shared_name" : "9930404", + "lat" : 35.692594, + "y" : -356925.94, + "x" : 1397357.94 + }, + "position" : { + "x" : 1397357.94, + "y" : -356925.94 + }, + "selected" : false + }, { + "data" : { + "id" : "3327", + "station_name" : "田町", + "close_ymd" : "", + "lon" : 139.747575, + "post" : "", + "e_status" : 0, + "SUID" : 3327, + "station_g_cd" : 1130228, + "add" : "東京都港区芝五丁目33-36", + "line_cd" : 11332, + "selected" : false, + "open_ymd" : "", + "name" : "1133226", + "pref_name" : "東京都", + "shared_name" : "1133226", + "lat" : 35.645736, + "y" : -356457.36, + "x" : 1397475.7500000002 + }, + "position" : { + "x" : 1397475.7500000002, + "y" : -356457.36 + }, + "selected" : false + }, { + "data" : { + "id" : "7663", + "station_name" : "曙橋", + "close_ymd" : "", + "lon" : 139.722881, + "post" : "162-0065", + "e_status" : 0, + "SUID" : 7663, + "station_g_cd" : 9930403, + "add" : "新宿区住吉町7-1", + "line_cd" : 99304, + "selected" : false, + "open_ymd" : "", + "name" : "9930403", + "pref_name" : "東京都", + "shared_name" : "9930403", + "lat" : 35.692402, + "y" : -356924.02, + "x" : 1397228.81 + }, + "position" : { + "x" : 1397228.81, + "y" : -356924.02 + }, + "selected" : false + }, { + "data" : { + "id" : "5541", + "station_name" : "京成上野", + "close_ymd" : "", + "lon" : 139.773571, + "post" : "-", + "e_status" : 0, + "SUID" : 5541, + "station_g_cd" : 2300101, + "add" : "東京都台東区上野公園1-60", + "line_cd" : 23006, + "selected" : false, + "open_ymd" : "1933-12-10", + "name" : "2300601", + "pref_name" : "東京都", + "shared_name" : "2300601", + "lat" : 35.711232, + "y" : -357112.32, + "x" : 1397735.71 + }, + "position" : { + "x" : 1397735.71, + "y" : -357112.32 + }, + "selected" : false + }, { + "data" : { + "id" : "5542", + "station_name" : "日暮里", + "close_ymd" : "", + "lon" : 139.771287, + "post" : "-", + "e_status" : 0, + "SUID" : 5542, + "station_g_cd" : 1130218, + "add" : "東京都荒川区西日暮里二丁目19-1", + "line_cd" : 23006, + "selected" : false, + "open_ymd" : "1931-12-19", + "name" : "2300602", + "pref_name" : "東京都", + "shared_name" : "2300602", + "lat" : 35.727908, + "y" : -357279.08, + "x" : 1397712.87 + }, + "position" : { + "x" : 1397712.87, + "y" : -357279.08 + }, + "selected" : false + }, { + "data" : { + "id" : "5543", + "station_name" : "青砥", + "close_ymd" : "", + "lon" : 139.856292, + "post" : "-", + "e_status" : 0, + "SUID" : 5543, + "station_g_cd" : 2300109, + "add" : "東京都葛飾区青戸三丁目36番1号", + "line_cd" : 23006, + "selected" : false, + "open_ymd" : "1928-11-01", + "name" : "2300603", + "pref_name" : "東京都", + "shared_name" : "2300603", + "lat" : 35.745883, + "y" : -357458.83, + "x" : 1398562.92 + }, + "position" : { + "x" : 1398562.92, + "y" : -357458.83 + }, + "selected" : false + }, { + "data" : { + "id" : "5544", + "station_name" : "京成高砂", + "close_ymd" : "", + "lon" : 139.866875, + "post" : "-", + "e_status" : 0, + "SUID" : 5544, + "station_g_cd" : 2300110, + "add" : "東京都葛飾区高砂五丁目28-1", + "line_cd" : 23006, + "selected" : false, + "open_ymd" : "", + "name" : "2300604", + "pref_name" : "東京都", + "shared_name" : "2300604", + "lat" : 35.750932, + "y" : -357509.32, + "x" : 1398668.75 + }, + "position" : { + "x" : 1398668.75, + "y" : -357509.32 + }, + "selected" : false + }, { + "data" : { + "id" : "5552", + "station_name" : "新宿", + "close_ymd" : "", + "lon" : 139.69918700000002, + "post" : "", + "e_status" : 0, + "SUID" : 5552, + "station_g_cd" : 1130208, + "add" : "東京都新宿区西新宿一丁目1-4", + "line_cd" : 24001, + "selected" : false, + "open_ymd" : "", + "name" : "2400101", + "pref_name" : "東京都", + "shared_name" : "2400101", + "lat" : 35.690163, + "y" : -356901.63, + "x" : 1396991.8700000003 + }, + "position" : { + "x" : 1396991.8700000003, + "y" : -356901.63 + }, + "selected" : false + }, { + "data" : { + "id" : "5553", + "station_name" : "初台", + "close_ymd" : "", + "lon" : 139.686354, + "post" : "151-0061", + "e_status" : 0, + "SUID" : 5553, + "station_g_cd" : 2400102, + "add" : "渋谷区初台1-53-7", + "line_cd" : 24001, + "selected" : false, + "open_ymd" : "", + "name" : "2400102", + "pref_name" : "東京都", + "shared_name" : "2400102", + "lat" : 35.68123, + "y" : -356812.3, + "x" : 1396863.54 + }, + "position" : { + "x" : 1396863.54, + "y" : -356812.3 + }, + "selected" : false + }, { + "data" : { + "id" : "5554", + "station_name" : "幡ヶ谷", + "close_ymd" : "", + "lon" : 139.676183, + "post" : "", + "e_status" : 0, + "SUID" : 5554, + "station_g_cd" : 2400103, + "add" : "東京都渋谷区幡ヶ谷一丁目", + "line_cd" : 24001, + "selected" : false, + "open_ymd" : "", + "name" : "2400103", + "pref_name" : "東京都", + "shared_name" : "2400103", + "lat" : 35.677061, + "y" : -356770.61000000004, + "x" : 1396761.83 + }, + "position" : { + "x" : 1396761.83, + "y" : -356770.61000000004 + }, + "selected" : false + }, { + "data" : { + "id" : "5555", + "station_name" : "笹塚", + "close_ymd" : "", + "lon" : 139.667251, + "post" : "151-0073", + "e_status" : 0, + "SUID" : 5555, + "station_g_cd" : 2400104, + "add" : "渋谷区笹塚1-56-7", + "line_cd" : 24001, + "selected" : false, + "open_ymd" : "", + "name" : "2400104", + "pref_name" : "東京都", + "shared_name" : "2400104", + "lat" : 35.673758, + "y" : -356737.58, + "x" : 1396672.51 + }, + "position" : { + "x" : 1396672.51, + "y" : -356737.58 + }, + "selected" : false + }, { + "data" : { + "id" : "5556", + "station_name" : "代田橋", + "close_ymd" : "", + "lon" : 139.659413, + "post" : "156-0041", + "e_status" : 0, + "SUID" : 5556, + "station_g_cd" : 2400105, + "add" : "世田谷区大原2-18-9", + "line_cd" : 24001, + "selected" : false, + "open_ymd" : "", + "name" : "2400105", + "pref_name" : "東京都", + "shared_name" : "2400105", + "lat" : 35.671092, + "y" : -356710.92000000004, + "x" : 1396594.1300000001 + }, + "position" : { + "x" : 1396594.1300000001, + "y" : -356710.92000000004 + }, + "selected" : false + }, { + "data" : { + "id" : "5575", + "station_name" : "府中", + "close_ymd" : "", + "lon" : 139.4799, + "post" : "183-0023", + "e_status" : 0, + "SUID" : 5575, + "station_g_cd" : 2400124, + "add" : "府中市宮町1-1-10", + "line_cd" : 24001, + "selected" : false, + "open_ymd" : "", + "name" : "2400124", + "pref_name" : "東京都", + "shared_name" : "2400124", + "lat" : 35.672245000000004, + "y" : -356722.45, + "x" : 1394798.9999999998 + }, + "position" : { + "x" : 1394798.9999999998, + "y" : -356722.45 + }, + "selected" : false + }, { + "data" : { + "id" : "5576", + "station_name" : "分倍河原", + "close_ymd" : "", + "lon" : 139.468798, + "post" : "183-0021", + "e_status" : 0, + "SUID" : 5576, + "station_g_cd" : 1130321, + "add" : "府中市片町2丁目", + "line_cd" : 24001, + "selected" : false, + "open_ymd" : "", + "name" : "2400125", + "pref_name" : "東京都", + "shared_name" : "2400125", + "lat" : 35.668493, + "y" : -356684.93, + "x" : 1394687.98 + }, + "position" : { + "x" : 1394687.98, + "y" : -356684.93 + }, + "selected" : false + }, { + "data" : { + "id" : "5573", + "station_name" : "多磨霊園", + "close_ymd" : "", + "lon" : 139.502615, + "post" : "183-0015", + "e_status" : 0, + "SUID" : 5573, + "station_g_cd" : 2400122, + "add" : "府中市清水が丘3-26-11", + "line_cd" : 24001, + "selected" : false, + "open_ymd" : "", + "name" : "2400122", + "pref_name" : "東京都", + "shared_name" : "2400122", + "lat" : 35.666197, + "y" : -356661.97, + "x" : 1395026.15 + }, + "position" : { + "x" : 1395026.15, + "y" : -356661.97 + }, + "selected" : false + }, { + "data" : { + "id" : "5574", + "station_name" : "東府中", + "close_ymd" : "", + "lon" : 139.495257, + "post" : "183-0015", + "e_status" : 0, + "SUID" : 5574, + "station_g_cd" : 2400123, + "add" : "府中市清水が丘1-8-3", + "line_cd" : 24001, + "selected" : false, + "open_ymd" : "", + "name" : "2400123", + "pref_name" : "東京都", + "shared_name" : "2400123", + "lat" : 35.668766, + "y" : -356687.66, + "x" : 1394952.57 + }, + "position" : { + "x" : 1394952.57, + "y" : -356687.66 + }, + "selected" : false + }, { + "data" : { + "id" : "5579", + "station_name" : "百草園", + "close_ymd" : "", + "lon" : 139.431285, + "post" : "191-0033", + "e_status" : 0, + "SUID" : 5579, + "station_g_cd" : 2400128, + "add" : "日野市百草209", + "line_cd" : 24001, + "selected" : false, + "open_ymd" : "", + "name" : "2400128", + "pref_name" : "東京都", + "shared_name" : "2400128", + "lat" : 35.657362, + "y" : -356573.62, + "x" : 1394312.85 + }, + "position" : { + "x" : 1394312.85, + "y" : -356573.62 + }, + "selected" : false + }, { + "data" : { + "id" : "5580", + "station_name" : "高幡不動", + "close_ymd" : "", + "lon" : 139.41295300000002, + "post" : "191-0031", + "e_status" : 0, + "SUID" : 5580, + "station_g_cd" : 2400129, + "add" : "日野市高幡139", + "line_cd" : 24001, + "selected" : false, + "open_ymd" : "", + "name" : "2400129", + "pref_name" : "東京都", + "shared_name" : "2400129", + "lat" : 35.662361, + "y" : -356623.61, + "x" : 1394129.5300000003 + }, + "position" : { + "x" : 1394129.5300000003, + "y" : -356623.61 + }, + "selected" : false + }, { + "data" : { + "id" : "5577", + "station_name" : "中河原", + "close_ymd" : "", + "lon" : 139.457602, + "post" : "183-0034", + "e_status" : 0, + "SUID" : 5577, + "station_g_cd" : 2400126, + "add" : "府中市住吉町2-1-16", + "line_cd" : 24001, + "selected" : false, + "open_ymd" : "", + "name" : "2400126", + "pref_name" : "東京都", + "shared_name" : "2400126", + "lat" : 35.659549, + "y" : -356595.49, + "x" : 1394576.02 + }, + "position" : { + "x" : 1394576.02, + "y" : -356595.49 + }, + "selected" : false + }, { + "data" : { + "id" : "5578", + "station_name" : "聖蹟桜ヶ丘", + "close_ymd" : "", + "lon" : 139.446979, + "post" : "", + "e_status" : 0, + "SUID" : 5578, + "station_g_cd" : 2400127, + "add" : "東京都多摩市関戸一丁目10-10", + "line_cd" : 24001, + "selected" : false, + "open_ymd" : "", + "name" : "2400127", + "pref_name" : "東京都", + "shared_name" : "2400127", + "lat" : 35.650814000000004, + "y" : -356508.14, + "x" : 1394469.79 + }, + "position" : { + "x" : 1394469.79, + "y" : -356508.14 + }, + "selected" : false + }, { + "data" : { + "id" : "5583", + "station_name" : "長沼", + "close_ymd" : "", + "lon" : 139.365849, + "post" : "192-0907", + "e_status" : 0, + "SUID" : 5583, + "station_g_cd" : 2400132, + "add" : "八王子市長沼町700", + "line_cd" : 24001, + "selected" : false, + "open_ymd" : "", + "name" : "2400132", + "pref_name" : "東京都", + "shared_name" : "2400132", + "lat" : 35.642788, + "y" : -356427.88, + "x" : 1393658.49 + }, + "position" : { + "x" : 1393658.49, + "y" : -356427.88 + }, + "selected" : false + }, { + "data" : { + "id" : "5584", + "station_name" : "北野", + "close_ymd" : "", + "lon" : 139.354489, + "post" : "192-0911", + "e_status" : 0, + "SUID" : 5584, + "station_g_cd" : 2400133, + "add" : "八王子市打越町335-1", + "line_cd" : 24001, + "selected" : false, + "open_ymd" : "", + "name" : "2400133", + "pref_name" : "東京都", + "shared_name" : "2400133", + "lat" : 35.644479, + "y" : -356444.79, + "x" : 1393544.89 + }, + "position" : { + "x" : 1393544.89, + "y" : -356444.79 + }, + "selected" : false + }, { + "data" : { + "id" : "5581", + "station_name" : "南平", + "close_ymd" : "", + "lon" : 139.392008, + "post" : "191-0041", + "e_status" : 0, + "SUID" : 5581, + "station_g_cd" : 2400130, + "add" : "日野市南平6-9-31", + "line_cd" : 24001, + "selected" : false, + "open_ymd" : "", + "name" : "2400130", + "pref_name" : "東京都", + "shared_name" : "2400130", + "lat" : 35.654559000000006, + "y" : -356545.5900000001, + "x" : 1393920.08 + }, + "position" : { + "x" : 1393920.08, + "y" : -356545.5900000001 + }, + "selected" : false + }, { + "data" : { + "id" : "5582", + "station_name" : "平山城址公園", + "close_ymd" : "", + "lon" : 139.379926, + "post" : "191-0043", + "e_status" : 0, + "SUID" : 5582, + "station_g_cd" : 2400131, + "add" : "日野市平山5-18-10", + "line_cd" : 24001, + "selected" : false, + "open_ymd" : "", + "name" : "2400131", + "pref_name" : "東京都", + "shared_name" : "2400131", + "lat" : 35.647371, + "y" : -356473.71, + "x" : 1393799.26 + }, + "position" : { + "x" : 1393799.26, + "y" : -356473.71 + }, + "selected" : false + }, { + "data" : { + "id" : "5587", + "station_name" : "京王多摩川", + "close_ymd" : "", + "lon" : 139.536606, + "post" : "182-0025", + "e_status" : 0, + "SUID" : 5587, + "station_g_cd" : 2400202, + "add" : "調布市多摩川4-40-1", + "line_cd" : 24002, + "selected" : false, + "open_ymd" : "", + "name" : "2400202", + "pref_name" : "東京都", + "shared_name" : "2400202", + "lat" : 35.644498999999996, + "y" : -356444.99, + "x" : 1395366.06 + }, + "position" : { + "x" : 1395366.06, + "y" : -356444.99 + }, + "selected" : false + }, { + "data" : { + "id" : "5585", + "station_name" : "京王八王子", + "close_ymd" : "", + "lon" : 139.343851, + "post" : "192-0046", + "e_status" : 0, + "SUID" : 5585, + "station_g_cd" : 2400134, + "add" : "八王子市明神町3-27-1", + "line_cd" : 24001, + "selected" : false, + "open_ymd" : "", + "name" : "2400134", + "pref_name" : "東京都", + "shared_name" : "2400134", + "lat" : 35.657416, + "y" : -356574.16, + "x" : 1393438.51 + }, + "position" : { + "x" : 1393438.51, + "y" : -356574.16 + }, + "selected" : false + }, { + "data" : { + "id" : "5586", + "station_name" : "調布", + "close_ymd" : "", + "lon" : 139.54398799999998, + "post" : "182-0024", + "e_status" : 0, + "SUID" : 5586, + "station_g_cd" : 2400118, + "add" : "調布市布田4-32-1", + "line_cd" : 24002, + "selected" : false, + "open_ymd" : "", + "name" : "2400201", + "pref_name" : "東京都", + "shared_name" : "2400201", + "lat" : 35.652181, + "y" : -356521.81, + "x" : 1395439.88 + }, + "position" : { + "x" : 1395439.88, + "y" : -356521.81 + }, + "selected" : false + }, { + "data" : { + "id" : "5560", + "station_name" : "上北沢", + "close_ymd" : "", + "lon" : 139.62329, + "post" : "156-0057", + "e_status" : 0, + "SUID" : 5560, + "station_g_cd" : 2400109, + "add" : "世田谷区上北沢4-14-3", + "line_cd" : 24001, + "selected" : false, + "open_ymd" : "", + "name" : "2400109", + "pref_name" : "東京都", + "shared_name" : "2400109", + "lat" : 35.668857, + "y" : -356688.57, + "x" : 1396232.9 + }, + "position" : { + "x" : 1396232.9, + "y" : -356688.57 + }, + "selected" : false + }, { + "data" : { + "id" : "5559", + "station_name" : "桜上水", + "close_ymd" : "", + "lon" : 139.63128999999998, + "post" : "156-0045", + "e_status" : 0, + "SUID" : 5559, + "station_g_cd" : 2400108, + "add" : "世田谷区桜上水5-29-52", + "line_cd" : 24001, + "selected" : false, + "open_ymd" : "", + "name" : "2400108", + "pref_name" : "東京都", + "shared_name" : "2400108", + "lat" : 35.66768, + "y" : -356676.8, + "x" : 1396312.8999999997 + }, + "position" : { + "x" : 1396312.8999999997, + "y" : -356676.8 + }, + "selected" : false + }, { + "data" : { + "id" : "5558", + "station_name" : "下高井戸", + "close_ymd" : "", + "lon" : 139.641372, + "post" : "156-0043", + "e_status" : 0, + "SUID" : 5558, + "station_g_cd" : 2400107, + "add" : "世田谷区松原3-29-17", + "line_cd" : 24001, + "selected" : false, + "open_ymd" : "", + "name" : "2400107", + "pref_name" : "東京都", + "shared_name" : "2400107", + "lat" : 35.66615, + "y" : -356661.5, + "x" : 1396413.72 + }, + "position" : { + "x" : 1396413.72, + "y" : -356661.5 + }, + "selected" : false + }, { + "data" : { + "id" : "5557", + "station_name" : "明大前", + "close_ymd" : "", + "lon" : 139.650352, + "post" : "156-0043", + "e_status" : 0, + "SUID" : 5557, + "station_g_cd" : 2400106, + "add" : "世田谷区松原2-45-1", + "line_cd" : 24001, + "selected" : false, + "open_ymd" : "", + "name" : "2400106", + "pref_name" : "東京都", + "shared_name" : "2400106", + "lat" : 35.668758000000004, + "y" : -356687.58, + "x" : 1396503.52 + }, + "position" : { + "x" : 1396503.52, + "y" : -356687.58 + }, + "selected" : false + }, { + "data" : { + "id" : "5564", + "station_name" : "仙川", + "close_ymd" : "", + "lon" : 139.584908, + "post" : "182-0002", + "e_status" : 0, + "SUID" : 5564, + "station_g_cd" : 2400113, + "add" : "調布市仙川町1-43", + "line_cd" : 24001, + "selected" : false, + "open_ymd" : "", + "name" : "2400113", + "pref_name" : "東京都", + "shared_name" : "2400113", + "lat" : 35.662257000000004, + "y" : -356622.57000000007, + "x" : 1395849.08 + }, + "position" : { + "x" : 1395849.08, + "y" : -356622.57000000007 + }, + "selected" : false + }, { + "data" : { + "id" : "5563", + "station_name" : "千歳烏山", + "close_ymd" : "", + "lon" : 139.60067, + "post" : "157-0062", + "e_status" : 0, + "SUID" : 5563, + "station_g_cd" : 2400112, + "add" : "世田谷区南烏山6-1-1", + "line_cd" : 24001, + "selected" : false, + "open_ymd" : "", + "name" : "2400112", + "pref_name" : "東京都", + "shared_name" : "2400112", + "lat" : 35.667921, + "y" : -356679.21, + "x" : 1396006.7000000002 + }, + "position" : { + "x" : 1396006.7000000002, + "y" : -356679.21 + }, + "selected" : false + }, { + "data" : { + "id" : "5562", + "station_name" : "芦花公園", + "close_ymd" : "", + "lon" : 139.608247, + "post" : "157-0062", + "e_status" : 0, + "SUID" : 5562, + "station_g_cd" : 2400111, + "add" : "世田谷区南烏山3-1-16", + "line_cd" : 24001, + "selected" : false, + "open_ymd" : "", + "name" : "2400111", + "pref_name" : "東京都", + "shared_name" : "2400111", + "lat" : 35.670479, + "y" : -356704.79, + "x" : 1396082.47 + }, + "position" : { + "x" : 1396082.47, + "y" : -356704.79 + }, + "selected" : false + }, { + "data" : { + "id" : "5561", + "station_name" : "八幡山", + "close_ymd" : "", + "lon" : 139.614927, + "post" : "168-0074", + "e_status" : 0, + "SUID" : 5561, + "station_g_cd" : 2400110, + "add" : "杉並区上高井戸1-1-11", + "line_cd" : 24001, + "selected" : false, + "open_ymd" : "", + "name" : "2400110", + "pref_name" : "東京都", + "shared_name" : "2400110", + "lat" : 35.669982, + "y" : -356699.81999999995, + "x" : 1396149.27 + }, + "position" : { + "x" : 1396149.27, + "y" : -356699.81999999995 + }, + "selected" : false + }, { + "data" : { + "id" : "5568", + "station_name" : "布田", + "close_ymd" : "", + "lon" : 139.551557, + "post" : "182-0022", + "e_status" : 0, + "SUID" : 5568, + "station_g_cd" : 2400117, + "add" : "調布市国領町5-67-1", + "line_cd" : 24001, + "selected" : false, + "open_ymd" : "", + "name" : "2400117", + "pref_name" : "東京都", + "shared_name" : "2400117", + "lat" : 35.649904, + "y" : -356499.04, + "x" : 1395515.57 + }, + "position" : { + "x" : 1395515.57, + "y" : -356499.04 + }, + "selected" : false + }, { + "data" : { + "id" : "5567", + "station_name" : "国領", + "close_ymd" : "", + "lon" : 139.55803600000002, + "post" : "182-0022", + "e_status" : 0, + "SUID" : 5567, + "station_g_cd" : 2400116, + "add" : "調布市国領町3-18-1", + "line_cd" : 24001, + "selected" : false, + "open_ymd" : "", + "name" : "2400116", + "pref_name" : "東京都", + "shared_name" : "2400116", + "lat" : 35.650087, + "y" : -356500.87, + "x" : 1395580.36 + }, + "position" : { + "x" : 1395580.36, + "y" : -356500.87 + }, + "selected" : false + }, { + "data" : { + "id" : "5566", + "station_name" : "柴崎", + "close_ymd" : "", + "lon" : 139.56658000000002, + "post" : "182-0007", + "e_status" : 0, + "SUID" : 5566, + "station_g_cd" : 2400115, + "add" : "調布市菊野台2-67-11", + "line_cd" : 24001, + "selected" : false, + "open_ymd" : "", + "name" : "2400115", + "pref_name" : "東京都", + "shared_name" : "2400115", + "lat" : 35.653997, + "y" : -356539.97, + "x" : 1395665.8 + }, + "position" : { + "x" : 1395665.8, + "y" : -356539.97 + }, + "selected" : false + }, { + "data" : { + "id" : "5565", + "station_name" : "つつじヶ丘", + "close_ymd" : "", + "lon" : 139.575103, + "post" : "", + "e_status" : 0, + "SUID" : 5565, + "station_g_cd" : 2400114, + "add" : "東京都調布市西つつじヶ丘三丁目35-1", + "line_cd" : 24001, + "selected" : false, + "open_ymd" : "", + "name" : "2400114", + "pref_name" : "東京都", + "shared_name" : "2400114", + "lat" : 35.657936, + "y" : -356579.36, + "x" : 1395751.03 + }, + "position" : { + "x" : 1395751.03, + "y" : -356579.36 + }, + "selected" : false + }, { + "data" : { + "id" : "5572", + "station_name" : "武蔵野台", + "close_ymd" : "", + "lon" : 139.51128899999998, + "post" : "183-0011", + "e_status" : 0, + "SUID" : 5572, + "station_g_cd" : 2400121, + "add" : "府中市白糸台4-18-4", + "line_cd" : 24001, + "selected" : false, + "open_ymd" : "", + "name" : "2400121", + "pref_name" : "東京都", + "shared_name" : "2400121", + "lat" : 35.664159000000005, + "y" : -356641.59, + "x" : 1395112.8899999997 + }, + "position" : { + "x" : 1395112.8899999997, + "y" : -356641.59 + }, + "selected" : false + }, { + "data" : { + "id" : "5571", + "station_name" : "飛田給", + "close_ymd" : "", + "lon" : 139.523666, + "post" : "182-0036", + "e_status" : 0, + "SUID" : 5571, + "station_g_cd" : 2400120, + "add" : "調布市飛田給1-42-11", + "line_cd" : 24001, + "selected" : false, + "open_ymd" : "", + "name" : "2400120", + "pref_name" : "東京都", + "shared_name" : "2400120", + "lat" : 35.660121000000004, + "y" : -356601.21, + "x" : 1395236.66 + }, + "position" : { + "x" : 1395236.66, + "y" : -356601.21 + }, + "selected" : false + }, { + "data" : { + "id" : "5570", + "station_name" : "西調布", + "close_ymd" : "", + "lon" : 139.529822, + "post" : "182-0035", + "e_status" : 0, + "SUID" : 5570, + "station_g_cd" : 2400119, + "add" : "調布市上石原1-25-17", + "line_cd" : 24001, + "selected" : false, + "open_ymd" : "", + "name" : "2400119", + "pref_name" : "東京都", + "shared_name" : "2400119", + "lat" : 35.657169, + "y" : -356571.69000000006, + "x" : 1395298.22 + }, + "position" : { + "x" : 1395298.22, + "y" : -356571.69000000006 + }, + "selected" : false + }, { + "data" : { + "id" : "5569", + "station_name" : "調布", + "close_ymd" : "", + "lon" : 139.54398799999998, + "post" : "182-0024", + "e_status" : 0, + "SUID" : 5569, + "station_g_cd" : 2400118, + "add" : "調布市布田4-32-1", + "line_cd" : 24001, + "selected" : false, + "open_ymd" : "", + "name" : "2400118", + "pref_name" : "東京都", + "shared_name" : "2400118", + "lat" : 35.652181, + "y" : -356521.81, + "x" : 1395439.88 + }, + "position" : { + "x" : 1395439.88, + "y" : -356521.81 + }, + "selected" : false + }, { + "data" : { + "id" : "5609", + "station_name" : "渋谷", + "close_ymd" : "", + "lon" : 139.700872, + "post" : "-", + "e_status" : 0, + "SUID" : 5609, + "station_g_cd" : 1130205, + "add" : "東京都渋谷区道玄坂一丁目4-1", + "line_cd" : 24006, + "selected" : false, + "open_ymd" : "", + "name" : "2400601", + "pref_name" : "東京都", + "shared_name" : "2400601", + "lat" : 35.6587, + "y" : -356587.00000000006, + "x" : 1397008.72 + }, + "position" : { + "x" : 1397008.72, + "y" : -356587.00000000006 + }, + "selected" : false + }, { + "data" : { + "id" : "5610", + "station_name" : "神泉", + "close_ymd" : "", + "lon" : 139.693579, + "post" : "150-0045", + "e_status" : 0, + "SUID" : 5610, + "station_g_cd" : 2400602, + "add" : "渋谷区神泉町4-6", + "line_cd" : 24006, + "selected" : false, + "open_ymd" : "", + "name" : "2400602", + "pref_name" : "東京都", + "shared_name" : "2400602", + "lat" : 35.657244, + "y" : -356572.44, + "x" : 1396935.79 + }, + "position" : { + "x" : 1396935.79, + "y" : -356572.44 + }, + "selected" : false + }, { + "data" : { + "id" : "5611", + "station_name" : "駒場東大前", + "close_ymd" : "", + "lon" : 139.68430800000002, + "post" : "153-0041", + "e_status" : 0, + "SUID" : 5611, + "station_g_cd" : 2400603, + "add" : "目黒区駒場3-9-1", + "line_cd" : 24006, + "selected" : false, + "open_ymd" : "", + "name" : "2400603", + "pref_name" : "東京都", + "shared_name" : "2400603", + "lat" : 35.65868, + "y" : -356586.8, + "x" : 1396843.08 + }, + "position" : { + "x" : 1396843.08, + "y" : -356586.8 + }, + "selected" : false + }, { + "data" : { + "id" : "5612", + "station_name" : "池ノ上", + "close_ymd" : "", + "lon" : 139.67344, + "post" : "155-0032", + "e_status" : 0, + "SUID" : 5612, + "station_g_cd" : 2400104, + "add" : "世田谷区代沢2-43-8", + "line_cd" : 24006, + "selected" : false, + "open_ymd" : "", + "name" : "2400604", + "pref_name" : "東京都", + "shared_name" : "2400604", + "lat" : 35.660402000000005, + "y" : -356604.0200000001, + "x" : 1396734.4 + }, + "position" : { + "x" : 1396734.4, + "y" : -356604.0200000001 + }, + "selected" : false + }, { + "data" : { + "id" : "5605", + "station_name" : "東府中", + "close_ymd" : "", + "lon" : 139.495257, + "post" : "183-0015", + "e_status" : 0, + "SUID" : 5605, + "station_g_cd" : 2400123, + "add" : "府中市清水が丘1-8-3", + "line_cd" : 24004, + "selected" : false, + "open_ymd" : "", + "name" : "2400401", + "pref_name" : "東京都", + "shared_name" : "2400401", + "lat" : 35.668766, + "y" : -356687.66, + "x" : 1394952.57 + }, + "position" : { + "x" : 1394952.57, + "y" : -356687.66 + }, + "selected" : false + }, { + "data" : { + "id" : "5606", + "station_name" : "府中競馬正門前", + "close_ymd" : "", + "lon" : 139.485019, + "post" : "183-0016", + "e_status" : 0, + "SUID" : 5606, + "station_g_cd" : 2400402, + "add" : "府中市八幡町1-18", + "line_cd" : 24004, + "selected" : false, + "open_ymd" : "", + "name" : "2400402", + "pref_name" : "東京都", + "shared_name" : "2400402", + "lat" : 35.668288000000004, + "y" : -356682.88000000006, + "x" : 1394850.19 + }, + "position" : { + "x" : 1394850.19, + "y" : -356682.88000000006 + }, + "selected" : false + }, { + "data" : { + "id" : "5607", + "station_name" : "高幡不動", + "close_ymd" : "", + "lon" : 139.41295300000002, + "post" : "191-0031", + "e_status" : 0, + "SUID" : 5607, + "station_g_cd" : 2400129, + "add" : "日野市高幡139", + "line_cd" : 24005, + "selected" : false, + "open_ymd" : "", + "name" : "2400501", + "pref_name" : "東京都", + "shared_name" : "2400501", + "lat" : 35.662361, + "y" : -356623.61, + "x" : 1394129.5300000003 + }, + "position" : { + "x" : 1394129.5300000003, + "y" : -356623.61 + }, + "selected" : false + }, { + "data" : { + "id" : "5608", + "station_name" : "多摩動物公園", + "close_ymd" : "", + "lon" : 139.404627, + "post" : "191-0042", + "e_status" : 0, + "SUID" : 5608, + "station_g_cd" : 2400502, + "add" : "日野市程久保3-36-39", + "line_cd" : 24005, + "selected" : false, + "open_ymd" : "", + "name" : "2400502", + "pref_name" : "東京都", + "shared_name" : "2400502", + "lat" : 35.649215000000005, + "y" : -356492.15, + "x" : 1394046.27 + }, + "position" : { + "x" : 1394046.27, + "y" : -356492.15 + }, + "selected" : false + }, { + "data" : { + "id" : "5617", + "station_name" : "永福町", + "close_ymd" : "", + "lon" : 139.64273300000002, + "post" : "168-0064", + "e_status" : 0, + "SUID" : 5617, + "station_g_cd" : 2400609, + "add" : "杉並区永福2-60-31", + "line_cd" : 24006, + "selected" : false, + "open_ymd" : "", + "name" : "2400609", + "pref_name" : "東京都", + "shared_name" : "2400609", + "lat" : 35.67629, + "y" : -356762.9, + "x" : 1396427.3300000003 + }, + "position" : { + "x" : 1396427.3300000003, + "y" : -356762.9 + }, + "selected" : false + }, { + "data" : { + "id" : "5618", + "station_name" : "西永福", + "close_ymd" : "", + "lon" : 139.634936, + "post" : "168-0064", + "e_status" : 0, + "SUID" : 5618, + "station_g_cd" : 2400610, + "add" : "杉並区永福3-36-1", + "line_cd" : 24006, + "selected" : false, + "open_ymd" : "", + "name" : "2400610", + "pref_name" : "東京都", + "shared_name" : "2400610", + "lat" : 35.678917999999996, + "y" : -356789.17999999993, + "x" : 1396349.36 + }, + "position" : { + "x" : 1396349.36, + "y" : -356789.17999999993 + }, + "selected" : false + }, { + "data" : { + "id" : "5619", + "station_name" : "浜田山", + "close_ymd" : "", + "lon" : 139.627528, + "post" : "168-0065", + "e_status" : 0, + "SUID" : 5619, + "station_g_cd" : 2400611, + "add" : "杉並区浜田山3-31-2", + "line_cd" : 24006, + "selected" : false, + "open_ymd" : "", + "name" : "2400611", + "pref_name" : "東京都", + "shared_name" : "2400611", + "lat" : 35.681603, + "y" : -356816.03, + "x" : 1396275.28 + }, + "position" : { + "x" : 1396275.28, + "y" : -356816.03 + }, + "selected" : false + }, { + "data" : { + "id" : "5620", + "station_name" : "高井戸", + "close_ymd" : "", + "lon" : 139.615115, + "post" : "168-0071", + "e_status" : 0, + "SUID" : 5620, + "station_g_cd" : 2400612, + "add" : "杉並区高井戸西2-1-26", + "line_cd" : 24006, + "selected" : false, + "open_ymd" : "", + "name" : "2400612", + "pref_name" : "東京都", + "shared_name" : "2400612", + "lat" : 35.683253, + "y" : -356832.53, + "x" : 1396151.1500000001 + }, + "position" : { + "x" : 1396151.1500000001, + "y" : -356832.53 + }, + "selected" : false + }, { + "data" : { + "id" : "5613", + "station_name" : "下北沢", + "close_ymd" : "", + "lon" : 139.66691, + "post" : "155-0031", + "e_status" : 0, + "SUID" : 5613, + "station_g_cd" : 2400605, + "add" : "世田谷区北沢2丁目", + "line_cd" : 24006, + "selected" : false, + "open_ymd" : "", + "name" : "2400605", + "pref_name" : "東京都", + "shared_name" : "2400605", + "lat" : 35.661539000000005, + "y" : -356615.3900000001, + "x" : 1396669.1 + }, + "position" : { + "x" : 1396669.1, + "y" : -356615.3900000001 + }, + "selected" : false + }, { + "data" : { + "id" : "5614", + "station_name" : "新代田", + "close_ymd" : "", + "lon" : 139.660524, + "post" : "155-0033", + "e_status" : 0, + "SUID" : 5614, + "station_g_cd" : 2400606, + "add" : "世田谷区代田5-30-18", + "line_cd" : 24006, + "selected" : false, + "open_ymd" : "", + "name" : "2400606", + "pref_name" : "東京都", + "shared_name" : "2400606", + "lat" : 35.662593, + "y" : -356625.93, + "x" : 1396605.24 + }, + "position" : { + "x" : 1396605.24, + "y" : -356625.93 + }, + "selected" : false + }, { + "data" : { + "id" : "5615", + "station_name" : "東松原", + "close_ymd" : "", + "lon" : 139.65553500000001, + "post" : "156-0043", + "e_status" : 0, + "SUID" : 5615, + "station_g_cd" : 2400607, + "add" : "世田谷区松原5-2-6", + "line_cd" : 24006, + "selected" : false, + "open_ymd" : "", + "name" : "2400607", + "pref_name" : "東京都", + "shared_name" : "2400607", + "lat" : 35.662634000000004, + "y" : -356626.34, + "x" : 1396555.35 + }, + "position" : { + "x" : 1396555.35, + "y" : -356626.34 + }, + "selected" : false + }, { + "data" : { + "id" : "5616", + "station_name" : "明大前", + "close_ymd" : "", + "lon" : 139.650352, + "post" : "156-0043", + "e_status" : 0, + "SUID" : 5616, + "station_g_cd" : 2400106, + "add" : "世田谷区松原2-45-1", + "line_cd" : 24006, + "selected" : false, + "open_ymd" : "", + "name" : "2400608", + "pref_name" : "東京都", + "shared_name" : "2400608", + "lat" : 35.668758000000004, + "y" : -356687.58, + "x" : 1396503.52 + }, + "position" : { + "x" : 1396503.52, + "y" : -356687.58 + }, + "selected" : false + }, { + "data" : { + "id" : "5594", + "station_name" : "京王堀之内", + "close_ymd" : "", + "lon" : 139.40031399999998, + "post" : "192-0355", + "e_status" : 0, + "SUID" : 5594, + "station_g_cd" : 2400209, + "add" : "八王子市堀之内3-24-4", + "line_cd" : 24002, + "selected" : false, + "open_ymd" : "", + "name" : "2400209", + "pref_name" : "東京都", + "shared_name" : "2400209", + "lat" : 35.624438, + "y" : -356244.38, + "x" : 1394003.14 + }, + "position" : { + "x" : 1394003.14, + "y" : -356244.38 + }, + "selected" : false + }, { + "data" : { + "id" : "5593", + "station_name" : "京王多摩センター", + "close_ymd" : "", + "lon" : 139.42401999999998, + "post" : "206-0033", + "e_status" : 0, + "SUID" : 5593, + "station_g_cd" : 2400208, + "add" : "多摩市落合1-10-2", + "line_cd" : 24002, + "selected" : false, + "open_ymd" : "", + "name" : "2400208", + "pref_name" : "東京都", + "shared_name" : "2400208", + "lat" : 35.62518, + "y" : -356251.8, + "x" : 1394240.2 + }, + "position" : { + "x" : 1394240.2, + "y" : -356251.8 + }, + "selected" : false + }, { + "data" : { + "id" : "5596", + "station_name" : "多摩境", + "close_ymd" : "", + "lon" : 139.36698700000002, + "post" : "194-0212", + "e_status" : 0, + "SUID" : 5596, + "station_g_cd" : 2400211, + "add" : "町田市小山町2718-1", + "line_cd" : 24002, + "selected" : false, + "open_ymd" : "", + "name" : "2400211", + "pref_name" : "東京都", + "shared_name" : "2400211", + "lat" : 35.601826, + "y" : -356018.26, + "x" : 1393669.8700000003 + }, + "position" : { + "x" : 1393669.8700000003, + "y" : -356018.26 + }, + "selected" : false + }, { + "data" : { + "id" : "5595", + "station_name" : "南大沢", + "close_ymd" : "", + "lon" : 139.3798, + "post" : "192-0364", + "e_status" : 0, + "SUID" : 5595, + "station_g_cd" : 2400210, + "add" : "八王子市南大沢2-1-6", + "line_cd" : 24002, + "selected" : false, + "open_ymd" : "", + "name" : "2400210", + "pref_name" : "東京都", + "shared_name" : "2400210", + "lat" : 35.6141, + "y" : -356141.0, + "x" : 1393798.0 + }, + "position" : { + "x" : 1393798.0, + "y" : -356141.0 + }, + "selected" : false + }, { + "data" : { + "id" : "5590", + "station_name" : "稲城", + "close_ymd" : "", + "lon" : 139.500398, + "post" : "206-0802", + "e_status" : 0, + "SUID" : 5590, + "station_g_cd" : 2400205, + "add" : "稲城市東長沼3108", + "line_cd" : 24002, + "selected" : false, + "open_ymd" : "", + "name" : "2400205", + "pref_name" : "東京都", + "shared_name" : "2400205", + "lat" : 35.636165999999996, + "y" : -356361.66, + "x" : 1395003.98 + }, + "position" : { + "x" : 1395003.98, + "y" : -356361.66 + }, + "selected" : false + }, { + "data" : { + "id" : "5589", + "station_name" : "京王よみうりランド", + "close_ymd" : "", + "lon" : 139.517597, + "post" : "", + "e_status" : 0, + "SUID" : 5589, + "station_g_cd" : 2400204, + "add" : "東京都稲城市矢野口", + "line_cd" : 24002, + "selected" : false, + "open_ymd" : "", + "name" : "2400204", + "pref_name" : "東京都", + "shared_name" : "2400204", + "lat" : 35.632934000000006, + "y" : -356329.3400000001, + "x" : 1395175.97 + }, + "position" : { + "x" : 1395175.97, + "y" : -356329.3400000001 + }, + "selected" : false + }, { + "data" : { + "id" : "5592", + "station_name" : "京王永山", + "close_ymd" : "", + "lon" : 139.448204, + "post" : "206-0025", + "e_status" : 0, + "SUID" : 5592, + "station_g_cd" : 2400207, + "add" : "多摩市永山1-18-1", + "line_cd" : 24002, + "selected" : false, + "open_ymd" : "", + "name" : "2400207", + "pref_name" : "東京都", + "shared_name" : "2400207", + "lat" : 35.630102, + "y" : -356301.02, + "x" : 1394482.04 + }, + "position" : { + "x" : 1394482.04, + "y" : -356301.02 + }, + "selected" : false + }, { + "data" : { + "id" : "5602", + "station_name" : "狭間", + "close_ymd" : "", + "lon" : 139.293808, + "post" : "193-0834", + "e_status" : 0, + "SUID" : 5602, + "station_g_cd" : 2400305, + "add" : "八王子市東浅川町773", + "line_cd" : 24003, + "selected" : false, + "open_ymd" : "", + "name" : "2400305", + "pref_name" : "東京都", + "shared_name" : "2400305", + "lat" : 35.640637, + "y" : -356406.37, + "x" : 1392938.08 + }, + "position" : { + "x" : 1392938.08, + "y" : -356406.37 + }, + "selected" : false + }, { + "data" : { + "id" : "5601", + "station_name" : "めじろ台", + "close_ymd" : "", + "lon" : 139.308446, + "post" : "193-0833", + "e_status" : 0, + "SUID" : 5601, + "station_g_cd" : 2400304, + "add" : "八王子市めじろ台1-100-1", + "line_cd" : 24003, + "selected" : false, + "open_ymd" : "", + "name" : "2400304", + "pref_name" : "東京都", + "shared_name" : "2400304", + "lat" : 35.643601000000004, + "y" : -356436.01000000007, + "x" : 1393084.46 + }, + "position" : { + "x" : 1393084.46, + "y" : -356436.01000000007 + }, + "selected" : false + }, { + "data" : { + "id" : "5604", + "station_name" : "高尾山口", + "close_ymd" : "", + "lon" : 139.269856, + "post" : "193-0844", + "e_status" : 0, + "SUID" : 5604, + "station_g_cd" : 2400307, + "add" : "八王子市高尾町2241", + "line_cd" : 24003, + "selected" : false, + "open_ymd" : "", + "name" : "2400307", + "pref_name" : "東京都", + "shared_name" : "2400307", + "lat" : 35.632377000000005, + "y" : -356323.7700000001, + "x" : 1392698.56 + }, + "position" : { + "x" : 1392698.56, + "y" : -356323.7700000001 + }, + "selected" : false + }, { + "data" : { + "id" : "5603", + "station_name" : "高尾", + "close_ymd" : "", + "lon" : 139.281551, + "post" : "193-0844", + "e_status" : 0, + "SUID" : 5603, + "station_g_cd" : 1131112, + "add" : "八王子市高尾町", + "line_cd" : 24003, + "selected" : false, + "open_ymd" : "", + "name" : "2400306", + "pref_name" : "東京都", + "shared_name" : "2400306", + "lat" : 35.641645000000004, + "y" : -356416.45, + "x" : 1392815.51 + }, + "position" : { + "x" : 1392815.51, + "y" : -356416.45 + }, + "selected" : false + }, { + "data" : { + "id" : "5598", + "station_name" : "北野", + "close_ymd" : "", + "lon" : 139.354489, + "post" : "192-0911", + "e_status" : 0, + "SUID" : 5598, + "station_g_cd" : 2400133, + "add" : "八王子市打越町335-1", + "line_cd" : 24003, + "selected" : false, + "open_ymd" : "", + "name" : "2400301", + "pref_name" : "東京都", + "shared_name" : "2400301", + "lat" : 35.644479, + "y" : -356444.79, + "x" : 1393544.89 + }, + "position" : { + "x" : 1393544.89, + "y" : -356444.79 + }, + "selected" : false + }, { + "data" : { + "id" : "5600", + "station_name" : "山田", + "close_ymd" : "", + "lon" : 139.32108200000002, + "post" : "193-0932", + "e_status" : 0, + "SUID" : 5600, + "station_g_cd" : 2400303, + "add" : "八王子市緑町434", + "line_cd" : 24003, + "selected" : false, + "open_ymd" : "", + "name" : "2400303", + "pref_name" : "東京都", + "shared_name" : "2400303", + "lat" : 35.644411, + "y" : -356444.11, + "x" : 1393210.8200000003 + }, + "position" : { + "x" : 1393210.8200000003, + "y" : -356444.11 + }, + "selected" : false + }, { + "data" : { + "id" : "5599", + "station_name" : "京王片倉", + "close_ymd" : "", + "lon" : 139.33703500000001, + "post" : "192-0914", + "e_status" : 0, + "SUID" : 5599, + "station_g_cd" : 2400302, + "add" : "八王子市片倉町34-9", + "line_cd" : 24003, + "selected" : false, + "open_ymd" : "", + "name" : "2400302", + "pref_name" : "東京都", + "shared_name" : "2400302", + "lat" : 35.644343, + "y" : -356443.43, + "x" : 1393370.35 + }, + "position" : { + "x" : 1393370.35, + "y" : -356443.43 + }, + "selected" : false + }, { + "data" : { + "id" : "5643", + "station_name" : "成城学園前", + "close_ymd" : "", + "lon" : 139.598958, + "post" : "157-0066", + "e_status" : 0, + "SUID" : 5643, + "station_g_cd" : 2500114, + "add" : "世田谷区成城6丁目", + "line_cd" : 25001, + "selected" : false, + "open_ymd" : "", + "name" : "2500114", + "pref_name" : "東京都", + "shared_name" : "2500114", + "lat" : 35.640114000000004, + "y" : -356401.14, + "x" : 1395989.58 + }, + "position" : { + "x" : 1395989.58, + "y" : -356401.14 + }, + "selected" : false + }, { + "data" : { + "id" : "5644", + "station_name" : "喜多見", + "close_ymd" : "", + "lon" : 139.587445, + "post" : "157-0067", + "e_status" : 0, + "SUID" : 5644, + "station_g_cd" : 2500115, + "add" : "世田谷区喜多見9丁目", + "line_cd" : 25001, + "selected" : false, + "open_ymd" : "", + "name" : "2500115", + "pref_name" : "東京都", + "shared_name" : "2500115", + "lat" : 35.636697, + "y" : -356366.97, + "x" : 1395874.45 + }, + "position" : { + "x" : 1395874.45, + "y" : -356366.97 + }, + "selected" : false + }, { + "data" : { + "id" : "5641", + "station_name" : "千歳船橋", + "close_ymd" : "", + "lon" : 139.624544, + "post" : "156-0055", + "e_status" : 0, + "SUID" : 5641, + "station_g_cd" : 2500112, + "add" : "世田谷区船橋1丁目", + "line_cd" : 25001, + "selected" : false, + "open_ymd" : "", + "name" : "2500112", + "pref_name" : "東京都", + "shared_name" : "2500112", + "lat" : 35.647616, + "y" : -356476.16, + "x" : 1396245.44 + }, + "position" : { + "x" : 1396245.44, + "y" : -356476.16 + }, + "selected" : false + }, { + "data" : { + "id" : "5642", + "station_name" : "祖師ヶ谷大蔵", + "close_ymd" : "", + "lon" : 139.60965900000002, + "post" : "", + "e_status" : 0, + "SUID" : 5642, + "station_g_cd" : 2500113, + "add" : "東京都世田谷区祖師谷1丁目", + "line_cd" : 25001, + "selected" : false, + "open_ymd" : "", + "name" : "2500113", + "pref_name" : "東京都", + "shared_name" : "2500113", + "lat" : 35.643236, + "y" : -356432.36000000004, + "x" : 1396096.5900000003 + }, + "position" : { + "x" : 1396096.5900000003, + "y" : -356432.36000000004 + }, + "selected" : false + }, { + "data" : { + "id" : "5639", + "station_name" : "豪徳寺", + "close_ymd" : "", + "lon" : 139.647381, + "post" : "154-0021", + "e_status" : 0, + "SUID" : 5639, + "station_g_cd" : 2500110, + "add" : "世田谷区豪徳寺1丁目", + "line_cd" : 25001, + "selected" : false, + "open_ymd" : "", + "name" : "2500110", + "pref_name" : "東京都", + "shared_name" : "2500110", + "lat" : 35.653807, + "y" : -356538.07, + "x" : 1396473.81 + }, + "position" : { + "x" : 1396473.81, + "y" : -356538.07 + }, + "selected" : false + }, { + "data" : { + "id" : "5640", + "station_name" : "経堂", + "close_ymd" : "", + "lon" : 139.63599299999998, + "post" : "156-0052", + "e_status" : 0, + "SUID" : 5640, + "station_g_cd" : 2500111, + "add" : "世田谷区経堂1丁目", + "line_cd" : 25001, + "selected" : false, + "open_ymd" : "", + "name" : "2500111", + "pref_name" : "東京都", + "shared_name" : "2500111", + "lat" : 35.650991, + "y" : -356509.91, + "x" : 1396359.93 + }, + "position" : { + "x" : 1396359.93, + "y" : -356509.91 + }, + "selected" : false + }, { + "data" : { + "id" : "5637", + "station_name" : "世田谷代田", + "close_ymd" : "", + "lon" : 139.66155700000002, + "post" : "155-0033", + "e_status" : 0, + "SUID" : 5637, + "station_g_cd" : 2500108, + "add" : "世田谷区代田2丁目", + "line_cd" : 25001, + "selected" : false, + "open_ymd" : "", + "name" : "2500108", + "pref_name" : "東京都", + "shared_name" : "2500108", + "lat" : 35.65834, + "y" : -356583.4, + "x" : 1396615.57 + }, + "position" : { + "x" : 1396615.57, + "y" : -356583.4 + }, + "selected" : false + }, { + "data" : { + "id" : "5638", + "station_name" : "梅ヶ丘", + "close_ymd" : "", + "lon" : 139.653628, + "post" : "", + "e_status" : 0, + "SUID" : 5638, + "station_g_cd" : 2500109, + "add" : "東京都世田谷区梅丘", + "line_cd" : 25001, + "selected" : false, + "open_ymd" : "", + "name" : "2500109", + "pref_name" : "東京都", + "shared_name" : "2500109", + "lat" : 35.656024, + "y" : -356560.24000000005, + "x" : 1396536.28 + }, + "position" : { + "x" : 1396536.28, + "y" : -356560.24000000005 + }, + "selected" : false + }, { + "data" : { + "id" : "5645", + "station_name" : "狛江", + "close_ymd" : "", + "lon" : 139.577127, + "post" : "201-0014", + "e_status" : 0, + "SUID" : 5645, + "station_g_cd" : 2500116, + "add" : "狛江市東和泉1丁目", + "line_cd" : 25001, + "selected" : false, + "open_ymd" : "", + "name" : "2500116", + "pref_name" : "東京都", + "shared_name" : "2500116", + "lat" : 35.632001, + "y" : -356320.01, + "x" : 1395771.2699999998 + }, + "position" : { + "x" : 1395771.2699999998, + "y" : -356320.01 + }, + "selected" : false + }, { + "data" : { + "id" : "5646", + "station_name" : "和泉多摩川", + "close_ymd" : "", + "lon" : 139.573695, + "post" : "201-0014", + "e_status" : 0, + "SUID" : 5646, + "station_g_cd" : 2500117, + "add" : "狛江市東和泉4丁目", + "line_cd" : 25001, + "selected" : false, + "open_ymd" : "", + "name" : "2500117", + "pref_name" : "東京都", + "shared_name" : "2500117", + "lat" : 35.627349, + "y" : -356273.49000000005, + "x" : 1395736.95 + }, + "position" : { + "x" : 1395736.95, + "y" : -356273.49000000005 + }, + "selected" : false + }, { + "data" : { + "id" : "5628", + "station_name" : "幡ヶ谷", + "close_ymd" : "", + "lon" : 139.676183, + "post" : "-", + "e_status" : 0, + "SUID" : 5628, + "station_g_cd" : 2400103, + "add" : "東京都渋谷区幡ヶ谷一丁目", + "line_cd" : 24007, + "selected" : false, + "open_ymd" : "", + "name" : "2400703", + "pref_name" : "東京都", + "shared_name" : "2400703", + "lat" : 35.677061, + "y" : -356770.61000000004, + "x" : 1396761.83 + }, + "position" : { + "x" : 1396761.83, + "y" : -356770.61000000004 + }, + "selected" : false + }, { + "data" : { + "id" : "5627", + "station_name" : "初台", + "close_ymd" : "", + "lon" : 139.686354, + "post" : "151-0061", + "e_status" : 0, + "SUID" : 5627, + "station_g_cd" : 2400102, + "add" : "渋谷区初台1-53-7", + "line_cd" : 24007, + "selected" : false, + "open_ymd" : "", + "name" : "2400702", + "pref_name" : "東京都", + "shared_name" : "2400702", + "lat" : 35.68123, + "y" : -356812.3, + "x" : 1396863.54 + }, + "position" : { + "x" : 1396863.54, + "y" : -356812.3 + }, + "selected" : false + }, { + "data" : { + "id" : "5626", + "station_name" : "新線新宿", + "close_ymd" : "", + "lon" : 139.698812, + "post" : "-", + "e_status" : 0, + "SUID" : 5626, + "station_g_cd" : 1130208, + "add" : "東京都新宿区西新宿一丁目18", + "line_cd" : 24007, + "selected" : false, + "open_ymd" : "", + "name" : "2400701", + "pref_name" : "東京都", + "shared_name" : "2400701", + "lat" : 35.68869, + "y" : -356886.9, + "x" : 1396988.12 + }, + "position" : { + "x" : 1396988.12, + "y" : -356886.9 + }, + "selected" : false + }, { + "data" : { + "id" : "5625", + "station_name" : "吉祥寺", + "close_ymd" : "", + "lon" : 139.580306, + "post" : "", + "e_status" : 0, + "SUID" : 5625, + "station_g_cd" : 1131104, + "add" : "東京都武蔵野市吉祥寺南町", + "line_cd" : 24006, + "selected" : false, + "open_ymd" : "", + "name" : "2400617", + "pref_name" : "東京都", + "shared_name" : "2400617", + "lat" : 35.702290999999995, + "y" : -357022.91, + "x" : 1395803.06 + }, + "position" : { + "x" : 1395803.06, + "y" : -357022.91 + }, + "selected" : false + }, { + "data" : { + "id" : "5624", + "station_name" : "井の頭公園", + "close_ymd" : "", + "lon" : 139.583112, + "post" : "181-0001", + "e_status" : 0, + "SUID" : 5624, + "station_g_cd" : 2400616, + "add" : "三鷹市井の頭3-35-12", + "line_cd" : 24006, + "selected" : false, + "open_ymd" : "", + "name" : "2400616", + "pref_name" : "東京都", + "shared_name" : "2400616", + "lat" : 35.697303999999995, + "y" : -356973.04, + "x" : 1395831.12 + }, + "position" : { + "x" : 1395831.12, + "y" : -356973.04 + }, + "selected" : false + }, { + "data" : { + "id" : "5623", + "station_name" : "三鷹台", + "close_ymd" : "", + "lon" : 139.58929799999999, + "post" : "181-0001", + "e_status" : 0, + "SUID" : 5623, + "station_g_cd" : 2400615, + "add" : "三鷹市井の頭1-32-1", + "line_cd" : 24006, + "selected" : false, + "open_ymd" : "", + "name" : "2400615", + "pref_name" : "東京都", + "shared_name" : "2400615", + "lat" : 35.692046000000005, + "y" : -356920.46, + "x" : 1395892.9799999997 + }, + "position" : { + "x" : 1395892.9799999997, + "y" : -356920.46 + }, + "selected" : false + }, { + "data" : { + "id" : "5622", + "station_name" : "久我山", + "close_ymd" : "", + "lon" : 139.599211, + "post" : "168-0082", + "e_status" : 0, + "SUID" : 5622, + "station_g_cd" : 2400614, + "add" : "杉並区久我山4-1-11", + "line_cd" : 24006, + "selected" : false, + "open_ymd" : "", + "name" : "2400614", + "pref_name" : "東京都", + "shared_name" : "2400614", + "lat" : 35.688138, + "y" : -356881.38, + "x" : 1395992.1099999999 + }, + "position" : { + "x" : 1395992.1099999999, + "y" : -356881.38 + }, + "selected" : false + }, { + "data" : { + "id" : "5621", + "station_name" : "富士見ヶ丘", + "close_ymd" : "", + "lon" : 139.607072, + "post" : "", + "e_status" : 0, + "SUID" : 5621, + "station_g_cd" : 2400613, + "add" : "東京都杉並区久我山五丁目1番25号", + "line_cd" : 24006, + "selected" : false, + "open_ymd" : "", + "name" : "2400613", + "pref_name" : "東京都", + "shared_name" : "2400613", + "lat" : 35.684805, + "y" : -356848.05, + "x" : 1396070.72 + }, + "position" : { + "x" : 1396070.72, + "y" : -356848.05 + }, + "selected" : false + }, { + "data" : { + "id" : "5636", + "station_name" : "下北沢", + "close_ymd" : "", + "lon" : 139.66751599999998, + "post" : "155-0031", + "e_status" : 0, + "SUID" : 5636, + "station_g_cd" : 2400605, + "add" : "世田谷区北沢2丁目", + "line_cd" : 25001, + "selected" : false, + "open_ymd" : "", + "name" : "2500107", + "pref_name" : "東京都", + "shared_name" : "2500107", + "lat" : 35.661654999999996, + "y" : -356616.55, + "x" : 1396675.1599999997 + }, + "position" : { + "x" : 1396675.1599999997, + "y" : -356616.55 + }, + "selected" : false + }, { + "data" : { + "id" : "5635", + "station_name" : "東北沢", + "close_ymd" : "", + "lon" : 139.673014, + "post" : "155-0031", + "e_status" : 0, + "SUID" : 5635, + "station_g_cd" : 2500106, + "add" : "世田谷区北沢3丁目", + "line_cd" : 25001, + "selected" : false, + "open_ymd" : "", + "name" : "2500106", + "pref_name" : "東京都", + "shared_name" : "2500106", + "lat" : 35.665378999999994, + "y" : -356653.7899999999, + "x" : 1396730.14 + }, + "position" : { + "x" : 1396730.14, + "y" : -356653.7899999999 + }, + "selected" : false + }, { + "data" : { + "id" : "5634", + "station_name" : "代々木上原", + "close_ymd" : "", + "lon" : 139.680153, + "post" : "151-0066", + "e_status" : 0, + "SUID" : 5634, + "station_g_cd" : 2500105, + "add" : "渋谷区西原3丁目", + "line_cd" : 25001, + "selected" : false, + "open_ymd" : "", + "name" : "2500105", + "pref_name" : "東京都", + "shared_name" : "2500105", + "lat" : 35.669159, + "y" : -356691.59, + "x" : 1396801.5299999998 + }, + "position" : { + "x" : 1396801.5299999998, + "y" : -356691.59 + }, + "selected" : false + }, { + "data" : { + "id" : "5633", + "station_name" : "代々木八幡", + "close_ymd" : "", + "lon" : 139.68891299999999, + "post" : "151-0053", + "e_status" : 0, + "SUID" : 5633, + "station_g_cd" : 2500104, + "add" : "渋谷区代々木5丁目", + "line_cd" : 25001, + "selected" : false, + "open_ymd" : "", + "name" : "2500104", + "pref_name" : "東京都", + "shared_name" : "2500104", + "lat" : 35.669715000000004, + "y" : -356697.15, + "x" : 1396889.13 + }, + "position" : { + "x" : 1396889.13, + "y" : -356697.15 + }, + "selected" : false + }, { + "data" : { + "id" : "5632", + "station_name" : "参宮橋", + "close_ymd" : "", + "lon" : 139.693568, + "post" : "151-0053", + "e_status" : 0, + "SUID" : 5632, + "station_g_cd" : 2500103, + "add" : "渋谷区代々木4丁目", + "line_cd" : 25001, + "selected" : false, + "open_ymd" : "", + "name" : "2500103", + "pref_name" : "東京都", + "shared_name" : "2500103", + "lat" : 35.678585999999996, + "y" : -356785.86, + "x" : 1396935.68 + }, + "position" : { + "x" : 1396935.68, + "y" : -356785.86 + }, + "selected" : false + }, { + "data" : { + "id" : "5631", + "station_name" : "南新宿", + "close_ymd" : "", + "lon" : 139.69867, + "post" : "151-0053", + "e_status" : 0, + "SUID" : 5631, + "station_g_cd" : 2500102, + "add" : "渋谷区代々木2丁目", + "line_cd" : 25001, + "selected" : false, + "open_ymd" : "", + "name" : "2500102", + "pref_name" : "東京都", + "shared_name" : "2500102", + "lat" : 35.683483, + "y" : -356834.83, + "x" : 1396986.7 + }, + "position" : { + "x" : 1396986.7, + "y" : -356834.83 + }, + "selected" : false + }, { + "data" : { + "id" : "5630", + "station_name" : "新宿", + "close_ymd" : "", + "lon" : 139.699574, + "post" : "", + "e_status" : 0, + "SUID" : 5630, + "station_g_cd" : 1130208, + "add" : "東京都新宿区西新宿一丁目1-3", + "line_cd" : 25001, + "selected" : false, + "open_ymd" : "", + "name" : "2500101", + "pref_name" : "東京都", + "shared_name" : "2500101", + "lat" : 35.691435, + "y" : -356914.35, + "x" : 1396995.7400000002 + }, + "position" : { + "x" : 1396995.7400000002, + "y" : -356914.35 + }, + "selected" : false + }, { + "data" : { + "id" : "5629", + "station_name" : "笹塚", + "close_ymd" : "", + "lon" : 139.667251, + "post" : "151-0073", + "e_status" : 0, + "SUID" : 5629, + "station_g_cd" : 2400104, + "add" : "渋谷区笹塚1-56-7", + "line_cd" : 24007, + "selected" : false, + "open_ymd" : "", + "name" : "2400704", + "pref_name" : "東京都", + "shared_name" : "2400704", + "lat" : 35.673758, + "y" : -356737.58, + "x" : 1396672.51 + }, + "position" : { + "x" : 1396672.51, + "y" : -356737.58 + }, + "selected" : false + }, { + "data" : { + "id" : "5422", + "station_name" : "都立家政", + "close_ymd" : "", + "lon" : 139.644839, + "post" : "165-0032", + "e_status" : 0, + "SUID" : 5422, + "station_g_cd" : 2200708, + "add" : "中野区鷺宮1-16-1", + "line_cd" : 22007, + "selected" : false, + "open_ymd" : "", + "name" : "2200708", + "pref_name" : "東京都", + "shared_name" : "2200708", + "lat" : 35.722313, + "y" : -357223.13, + "x" : 1396448.39 + }, + "position" : { + "x" : 1396448.39, + "y" : -357223.13 + }, + "selected" : false + }, { + "data" : { + "id" : "5421", + "station_name" : "野方", + "close_ymd" : "", + "lon" : 139.652733, + "post" : "165-0027", + "e_status" : 0, + "SUID" : 5421, + "station_g_cd" : 2200707, + "add" : "中野区野方6-3-3", + "line_cd" : 22007, + "selected" : false, + "open_ymd" : "", + "name" : "2200707", + "pref_name" : "東京都", + "shared_name" : "2200707", + "lat" : 35.719658, + "y" : -357196.58, + "x" : 1396527.33 + }, + "position" : { + "x" : 1396527.33, + "y" : -357196.58 + }, + "selected" : false + }, { + "data" : { + "id" : "5424", + "station_name" : "下井草", + "close_ymd" : "", + "lon" : 139.624688, + "post" : "167-0022", + "e_status" : 0, + "SUID" : 5424, + "station_g_cd" : 2200710, + "add" : "杉並区下井草2-44-10", + "line_cd" : 22007, + "selected" : false, + "open_ymd" : "", + "name" : "2200710", + "pref_name" : "東京都", + "shared_name" : "2200710", + "lat" : 35.723852, + "y" : -357238.52, + "x" : 1396246.88 + }, + "position" : { + "x" : 1396246.88, + "y" : -357238.52 + }, + "selected" : false + }, { + "data" : { + "id" : "5423", + "station_name" : "鷺ノ宮", + "close_ymd" : "", + "lon" : 139.63891999999998, + "post" : "165-0032", + "e_status" : 0, + "SUID" : 5423, + "station_g_cd" : 2200709, + "add" : "中野区鷺宮3-15-1", + "line_cd" : 22007, + "selected" : false, + "open_ymd" : "", + "name" : "2200709", + "pref_name" : "東京都", + "shared_name" : "2200709", + "lat" : 35.722605, + "y" : -357226.05, + "x" : 1396389.2 + }, + "position" : { + "x" : 1396389.2, + "y" : -357226.05 + }, + "selected" : false + }, { + "data" : { + "id" : "5426", + "station_name" : "上井草", + "close_ymd" : "", + "lon" : 139.602937, + "post" : "167-0023", + "e_status" : 0, + "SUID" : 5426, + "station_g_cd" : 2200712, + "add" : "杉並区上井草3-32-1", + "line_cd" : 22007, + "selected" : false, + "open_ymd" : "", + "name" : "2200712", + "pref_name" : "東京都", + "shared_name" : "2200712", + "lat" : 35.725326, + "y" : -357253.26, + "x" : 1396029.3699999999 + }, + "position" : { + "x" : 1396029.3699999999, + "y" : -357253.26 + }, + "selected" : false + }, { + "data" : { + "id" : "5425", + "station_name" : "井荻", + "close_ymd" : "", + "lon" : 139.615303, + "post" : "167-0022", + "e_status" : 0, + "SUID" : 5425, + "station_g_cd" : 2200711, + "add" : "杉並区下井草5-23-15", + "line_cd" : 22007, + "selected" : false, + "open_ymd" : "", + "name" : "2200711", + "pref_name" : "東京都", + "shared_name" : "2200711", + "lat" : 35.72469, + "y" : -357246.9, + "x" : 1396153.03 + }, + "position" : { + "x" : 1396153.03, + "y" : -357246.9 + }, + "selected" : false + }, { + "data" : { + "id" : "5428", + "station_name" : "武蔵関", + "close_ymd" : "", + "lon" : 139.576417, + "post" : "177-0051", + "e_status" : 0, + "SUID" : 5428, + "station_g_cd" : 2200714, + "add" : "練馬区関町北2-29-1", + "line_cd" : 22007, + "selected" : false, + "open_ymd" : "", + "name" : "2200714", + "pref_name" : "東京都", + "shared_name" : "2200714", + "lat" : 35.7276, + "y" : -357276.0, + "x" : 1395764.17 + }, + "position" : { + "x" : 1395764.17, + "y" : -357276.0 + }, + "selected" : false + }, { + "data" : { + "id" : "5427", + "station_name" : "上石神井", + "close_ymd" : "", + "lon" : 139.592266, + "post" : "177-0044", + "e_status" : 0, + "SUID" : 5427, + "station_g_cd" : 2200713, + "add" : "練馬区上石神井1-2-45", + "line_cd" : 22007, + "selected" : false, + "open_ymd" : "", + "name" : "2200713", + "pref_name" : "東京都", + "shared_name" : "2200713", + "lat" : 35.726189, + "y" : -357261.88999999996, + "x" : 1395922.66 + }, + "position" : { + "x" : 1395922.66, + "y" : -357261.88999999996 + }, + "selected" : false + }, { + "data" : { + "id" : "5416", + "station_name" : "高田馬場", + "close_ymd" : "", + "lon" : 139.703715, + "post" : "169-0075", + "e_status" : 0, + "SUID" : 5416, + "station_g_cd" : 1130210, + "add" : "東京都新宿区高田馬場一丁目35-2", + "line_cd" : 22007, + "selected" : false, + "open_ymd" : "", + "name" : "2200702", + "pref_name" : "東京都", + "shared_name" : "2200702", + "lat" : 35.712677, + "y" : -357126.77, + "x" : 1397037.15 + }, + "position" : { + "x" : 1397037.15, + "y" : -357126.77 + }, + "selected" : false + }, { + "data" : { + "id" : "5415", + "station_name" : "西武新宿", + "close_ymd" : "", + "lon" : 139.7, + "post" : "160-0021", + "e_status" : 0, + "SUID" : 5415, + "station_g_cd" : 2200701, + "add" : "新宿区歌舞伎町1-30-1", + "line_cd" : 22007, + "selected" : false, + "open_ymd" : "", + "name" : "2200701", + "pref_name" : "東京都", + "shared_name" : "2200701", + "lat" : 35.696253999999996, + "y" : -356962.54, + "x" : 1397000.0 + }, + "position" : { + "x" : 1397000.0, + "y" : -356962.54 + }, + "selected" : false + }, { + "data" : { + "id" : "5418", + "station_name" : "中井", + "close_ymd" : "", + "lon" : 139.68696699999998, + "post" : "161-0032", + "e_status" : 0, + "SUID" : 5418, + "station_g_cd" : 2200704, + "add" : "新宿区中落合1-19-1", + "line_cd" : 22007, + "selected" : false, + "open_ymd" : "", + "name" : "2200704", + "pref_name" : "東京都", + "shared_name" : "2200704", + "lat" : 35.715106, + "y" : -357151.06, + "x" : 1396869.67 + }, + "position" : { + "x" : 1396869.67, + "y" : -357151.06 + }, + "selected" : false + }, { + "data" : { + "id" : "5417", + "station_name" : "下落合", + "close_ymd" : "", + "lon" : 139.695391, + "post" : "161-0033", + "e_status" : 0, + "SUID" : 5417, + "station_g_cd" : 2200703, + "add" : "新宿区下落合1-16-1", + "line_cd" : 22007, + "selected" : false, + "open_ymd" : "", + "name" : "2200703", + "pref_name" : "東京都", + "shared_name" : "2200703", + "lat" : 35.715846, + "y" : -357158.45999999996, + "x" : 1396953.91 + }, + "position" : { + "x" : 1396953.91, + "y" : -357158.45999999996 + }, + "selected" : false + }, { + "data" : { + "id" : "5420", + "station_name" : "沼袋", + "close_ymd" : "", + "lon" : 139.663841, + "post" : "165-0025", + "e_status" : 0, + "SUID" : 5420, + "station_g_cd" : 2200706, + "add" : "中野区沼袋1-35-1", + "line_cd" : 22007, + "selected" : false, + "open_ymd" : "", + "name" : "2200706", + "pref_name" : "東京都", + "shared_name" : "2200706", + "lat" : 35.719458, + "y" : -357194.58, + "x" : 1396638.41 + }, + "position" : { + "x" : 1396638.41, + "y" : -357194.58 + }, + "selected" : false + }, { + "data" : { + "id" : "5419", + "station_name" : "新井薬師前", + "close_ymd" : "", + "lon" : 139.672582, + "post" : "164-0002", + "e_status" : 0, + "SUID" : 5419, + "station_g_cd" : 2200705, + "add" : "中野区上高田5-43-20", + "line_cd" : 22007, + "selected" : false, + "open_ymd" : "", + "name" : "2200705", + "pref_name" : "東京都", + "shared_name" : "2200705", + "lat" : 35.715778, + "y" : -357157.78, + "x" : 1396725.82 + }, + "position" : { + "x" : 1396725.82, + "y" : -357157.78 + }, + "selected" : false + }, { + "data" : { + "id" : "5405", + "station_name" : "新桜台", + "close_ymd" : "", + "lon" : 139.6683, + "post" : "176-0002", + "e_status" : 0, + "SUID" : 5405, + "station_g_cd" : 2200302, + "add" : "練馬区桜台1-28-11", + "line_cd" : 22003, + "selected" : false, + "open_ymd" : "", + "name" : "2200302", + "pref_name" : "東京都", + "shared_name" : "2200302", + "lat" : 35.74077, + "y" : -357407.69999999995, + "x" : 1396682.9999999998 + }, + "position" : { + "x" : 1396682.9999999998, + "y" : -357407.69999999995 + }, + "selected" : false + }, { + "data" : { + "id" : "5406", + "station_name" : "練馬", + "close_ymd" : "", + "lon" : 139.654368, + "post" : "176-0001", + "e_status" : 0, + "SUID" : 5406, + "station_g_cd" : 2200106, + "add" : "練馬区練馬1-3-5", + "line_cd" : 22003, + "selected" : false, + "open_ymd" : "", + "name" : "2200303", + "pref_name" : "東京都", + "shared_name" : "2200303", + "lat" : 35.737893, + "y" : -357378.93, + "x" : 1396543.6800000002 + }, + "position" : { + "x" : 1396543.6800000002, + "y" : -357378.93 + }, + "selected" : false + }, { + "data" : { + "id" : "5407", + "station_name" : "練馬", + "close_ymd" : "", + "lon" : 139.654368, + "post" : "176-0001", + "e_status" : 0, + "SUID" : 5407, + "station_g_cd" : 2200106, + "add" : "練馬区練馬1-3-5", + "line_cd" : 22004, + "selected" : false, + "open_ymd" : "", + "name" : "2200401", + "pref_name" : "東京都", + "shared_name" : "2200401", + "lat" : 35.737893, + "y" : -357378.93, + "x" : 1396543.6800000002 + }, + "position" : { + "x" : 1396543.6800000002, + "y" : -357378.93 + }, + "selected" : false + }, { + "data" : { + "id" : "5408", + "station_name" : "豊島園", + "close_ymd" : "", + "lon" : 139.647979, + "post" : "176-0001", + "e_status" : 0, + "SUID" : 5408, + "station_g_cd" : 2200402, + "add" : "練馬区練馬4-16-5", + "line_cd" : 22004, + "selected" : false, + "open_ymd" : "", + "name" : "2200402", + "pref_name" : "東京都", + "shared_name" : "2200402", + "lat" : 35.742053999999996, + "y" : -357420.54, + "x" : 1396479.79 + }, + "position" : { + "x" : 1396479.79, + "y" : -357420.54 + }, + "selected" : false + }, { + "data" : { + "id" : "5412", + "station_name" : "西武遊園地", + "close_ymd" : "", + "lon" : 139.442747, + "post" : "189-0026", + "e_status" : 0, + "SUID" : 5412, + "station_g_cd" : 2200601, + "add" : "東村山市多摩湖町3-15-18", + "line_cd" : 22006, + "selected" : false, + "open_ymd" : "", + "name" : "2200601", + "pref_name" : "東京都", + "shared_name" : "2200601", + "lat" : 35.765881, + "y" : -357658.81, + "x" : 1394427.47 + }, + "position" : { + "x" : 1394427.47, + "y" : -357658.81 + }, + "selected" : false + }, { + "data" : { + "id" : "5404", + "station_name" : "小竹向原", + "close_ymd" : "", + "lon" : 139.678572, + "post" : "176-0004", + "e_status" : 0, + "SUID" : 5404, + "station_g_cd" : 2200301, + "add" : "東京都練馬区小竹町二丁目16-15", + "line_cd" : 22003, + "selected" : false, + "open_ymd" : "", + "name" : "2200301", + "pref_name" : "東京都", + "shared_name" : "2200301", + "lat" : 35.743803, + "y" : -357438.02999999997, + "x" : 1396785.72 + }, + "position" : { + "x" : 1396785.72, + "y" : -357438.02999999997 + }, + "selected" : false + }, { + "data" : { + "id" : "5456", + "station_name" : "鷹の台", + "close_ymd" : "", + "lon" : 139.461155, + "post" : "187-0024", + "e_status" : 0, + "SUID" : 5456, + "station_g_cd" : 2201003, + "add" : "小平市たかの台45-4", + "line_cd" : 22010, + "selected" : false, + "open_ymd" : "", + "name" : "2201003", + "pref_name" : "東京都", + "shared_name" : "2201003", + "lat" : 35.723096999999996, + "y" : -357230.97, + "x" : 1394611.5499999998 + }, + "position" : { + "x" : 1394611.5499999998, + "y" : -357230.97 + }, + "selected" : false + }, { + "data" : { + "id" : "5455", + "station_name" : "恋ヶ窪", + "close_ymd" : "", + "lon" : 139.463944, + "post" : "", + "e_status" : 0, + "SUID" : 5455, + "station_g_cd" : 2201002, + "add" : "東京都国分寺市戸倉一丁目1-4", + "line_cd" : 22010, + "selected" : false, + "open_ymd" : "", + "name" : "2201002", + "pref_name" : "東京都", + "shared_name" : "2201002", + "lat" : 35.711385, + "y" : -357113.85, + "x" : 1394639.44 + }, + "position" : { + "x" : 1394639.44, + "y" : -357113.85 + }, + "selected" : false + }, { + "data" : { + "id" : "5454", + "station_name" : "国分寺", + "close_ymd" : "", + "lon" : 139.480841, + "post" : "", + "e_status" : 0, + "SUID" : 5454, + "station_g_cd" : 1131106, + "add" : "東京都国分寺市本町二丁目1-23", + "line_cd" : 22010, + "selected" : false, + "open_ymd" : "", + "name" : "2201001", + "pref_name" : "東京都", + "shared_name" : "2201001", + "lat" : 35.700123, + "y" : -357001.23, + "x" : 1394808.41 + }, + "position" : { + "x" : 1394808.41, + "y" : -357001.23 + }, + "selected" : false + }, { + "data" : { + "id" : "5453", + "station_name" : "西武園", + "close_ymd" : "", + "lon" : 139.448904, + "post" : "189-0026", + "e_status" : 0, + "SUID" : 5453, + "station_g_cd" : 2200902, + "add" : "東村山市多摩湖町4-29-1", + "line_cd" : 22009, + "selected" : false, + "open_ymd" : "", + "name" : "2200902", + "pref_name" : "東京都", + "shared_name" : "2200902", + "lat" : 35.767684, + "y" : -357676.84, + "x" : 1394489.04 + }, + "position" : { + "x" : 1394489.04, + "y" : -357676.84 + }, + "selected" : false + }, { + "data" : { + "id" : "5460", + "station_name" : "一橋学園", + "close_ymd" : "", + "lon" : 139.48003899999998, + "post" : "187-0045", + "e_status" : 0, + "SUID" : 5460, + "station_g_cd" : 2201102, + "add" : "小平市学園西町2-1-1", + "line_cd" : 22011, + "selected" : false, + "open_ymd" : "", + "name" : "2201102", + "pref_name" : "東京都", + "shared_name" : "2201102", + "lat" : 35.72217, + "y" : -357221.7, + "x" : 1394800.3899999997 + }, + "position" : { + "x" : 1394800.3899999997, + "y" : -357221.7 + }, + "selected" : false + }, { + "data" : { + "id" : "5459", + "station_name" : "国分寺", + "close_ymd" : "", + "lon" : 139.479547, + "post" : "", + "e_status" : 0, + "SUID" : 5459, + "station_g_cd" : 1131106, + "add" : "東京都国分寺市本町二丁目1-23", + "line_cd" : 22011, + "selected" : false, + "open_ymd" : "", + "name" : "2201101", + "pref_name" : "東京都", + "shared_name" : "2201101", + "lat" : 35.700835999999995, + "y" : -357008.3599999999, + "x" : 1394795.47 + }, + "position" : { + "x" : 1394795.47, + "y" : -357008.3599999999 + }, + "selected" : false + }, { + "data" : { + "id" : "5458", + "station_name" : "東村山", + "close_ymd" : "", + "lon" : 139.465839, + "post" : "189-0014", + "e_status" : 0, + "SUID" : 5458, + "station_g_cd" : 2200721, + "add" : "東村山市本町2-3-32", + "line_cd" : 22010, + "selected" : false, + "open_ymd" : "", + "name" : "2201005", + "pref_name" : "東京都", + "shared_name" : "2201005", + "lat" : 35.760059999999996, + "y" : -357600.6, + "x" : 1394658.39 + }, + "position" : { + "x" : 1394658.39, + "y" : -357600.6 + }, + "selected" : false + }, { + "data" : { + "id" : "5457", + "station_name" : "小川", + "close_ymd" : "", + "lon" : 139.463493, + "post" : "187-0031", + "e_status" : 0, + "SUID" : 5457, + "station_g_cd" : 2200803, + "add" : "小平市小川東町1-20-1", + "line_cd" : 22010, + "selected" : false, + "open_ymd" : "", + "name" : "2201004", + "pref_name" : "東京都", + "shared_name" : "2201004", + "lat" : 35.737573, + "y" : -357375.73, + "x" : 1394634.93 + }, + "position" : { + "x" : 1394634.93, + "y" : -357375.73 + }, + "selected" : false + }, { + "data" : { + "id" : "5448", + "station_name" : "玉川上水", + "close_ymd" : "", + "lon" : 139.41843500000002, + "post" : "190-0002", + "e_status" : 0, + "SUID" : 5448, + "station_g_cd" : 2200805, + "add" : "立川市幸町6-36-1", + "line_cd" : 22008, + "selected" : false, + "open_ymd" : "", + "name" : "2200805", + "pref_name" : "東京都", + "shared_name" : "2200805", + "lat" : 35.731751, + "y" : -357317.51, + "x" : 1394184.35 + }, + "position" : { + "x" : 1394184.35, + "y" : -357317.51 + }, + "selected" : false + }, { + "data" : { + "id" : "5447", + "station_name" : "東大和市", + "close_ymd" : "", + "lon" : 139.434249, + "post" : "207-0022", + "e_status" : 0, + "SUID" : 5447, + "station_g_cd" : 2200804, + "add" : "東大和市桜が丘1-1415-1", + "line_cd" : 22008, + "selected" : false, + "open_ymd" : "", + "name" : "2200804", + "pref_name" : "東京都", + "shared_name" : "2200804", + "lat" : 35.732828999999995, + "y" : -357328.29, + "x" : 1394342.49 + }, + "position" : { + "x" : 1394342.49, + "y" : -357328.29 + }, + "selected" : false + }, { + "data" : { + "id" : "5446", + "station_name" : "小川", + "close_ymd" : "", + "lon" : 139.463493, + "post" : "187-0031", + "e_status" : 0, + "SUID" : 5446, + "station_g_cd" : 2200803, + "add" : "小平市小川東町1-20-1", + "line_cd" : 22008, + "selected" : false, + "open_ymd" : "", + "name" : "2200803", + "pref_name" : "東京都", + "shared_name" : "2200803", + "lat" : 35.737573, + "y" : -357375.73, + "x" : 1394634.93 + }, + "position" : { + "x" : 1394634.93, + "y" : -357375.73 + }, + "selected" : false + }, { + "data" : { + "id" : "5445", + "station_name" : "萩山", + "close_ymd" : "", + "lon" : 139.476903, + "post" : "189-0012", + "e_status" : 0, + "SUID" : 5445, + "station_g_cd" : 2200802, + "add" : "東村山市萩山町2-1-1", + "line_cd" : 22008, + "selected" : false, + "open_ymd" : "", + "name" : "2200802", + "pref_name" : "東京都", + "shared_name" : "2200802", + "lat" : 35.740759000000004, + "y" : -357407.59, + "x" : 1394769.03 + }, + "position" : { + "x" : 1394769.03, + "y" : -357407.59 + }, + "selected" : false + }, { + "data" : { + "id" : "5452", + "station_name" : "東村山", + "close_ymd" : "", + "lon" : 139.465839, + "post" : "189-0014", + "e_status" : 0, + "SUID" : 5452, + "station_g_cd" : 2200721, + "add" : "東村山市本町2-3-32", + "line_cd" : 22009, + "selected" : false, + "open_ymd" : "", + "name" : "2200901", + "pref_name" : "東京都", + "shared_name" : "2200901", + "lat" : 35.760059999999996, + "y" : -357600.6, + "x" : 1394658.39 + }, + "position" : { + "x" : 1394658.39, + "y" : -357600.6 + }, + "selected" : false + }, { + "data" : { + "id" : "5451", + "station_name" : "拝島", + "close_ymd" : "", + "lon" : 139.343468, + "post" : "196-0003", + "e_status" : 0, + "SUID" : 5451, + "station_g_cd" : 1131506, + "add" : "昭島市松原町4丁目", + "line_cd" : 22008, + "selected" : false, + "open_ymd" : "", + "name" : "2200808", + "pref_name" : "東京都", + "shared_name" : "2200808", + "lat" : 35.721278000000005, + "y" : -357212.78, + "x" : 1393434.68 + }, + "position" : { + "x" : 1393434.68, + "y" : -357212.78 + }, + "selected" : false + }, { + "data" : { + "id" : "5450", + "station_name" : "西武立川", + "close_ymd" : "", + "lon" : 139.370124, + "post" : "190-0034", + "e_status" : 0, + "SUID" : 5450, + "station_g_cd" : 2200807, + "add" : "立川市西砂町1-21-2", + "line_cd" : 22008, + "selected" : false, + "open_ymd" : "", + "name" : "2200807", + "pref_name" : "東京都", + "shared_name" : "2200807", + "lat" : 35.7262, + "y" : -357262.0, + "x" : 1393701.24 + }, + "position" : { + "x" : 1393701.24, + "y" : -357262.0 + }, + "selected" : false + }, { + "data" : { + "id" : "5449", + "station_name" : "武蔵砂川", + "close_ymd" : "", + "lon" : 139.392319, + "post" : "190-0032", + "e_status" : 0, + "SUID" : 5449, + "station_g_cd" : 2200806, + "add" : "立川市上砂町5-44-4", + "line_cd" : 22008, + "selected" : false, + "open_ymd" : "", + "name" : "2200806", + "pref_name" : "東京都", + "shared_name" : "2200806", + "lat" : 35.728876, + "y" : -357288.76, + "x" : 1393923.19 + }, + "position" : { + "x" : 1393923.19, + "y" : -357288.76 + }, + "selected" : false + }, { + "data" : { + "id" : "5444", + "station_name" : "小平", + "close_ymd" : "", + "lon" : 139.48849099999998, + "post" : "187-0041", + "e_status" : 0, + "SUID" : 5444, + "station_g_cd" : 2200719, + "add" : "小平市美園町1-34-1", + "line_cd" : 22008, + "selected" : false, + "open_ymd" : "", + "name" : "2200801", + "pref_name" : "東京都", + "shared_name" : "2200801", + "lat" : 35.736963, + "y" : -357369.63, + "x" : 1394884.91 + }, + "position" : { + "x" : 1394884.91, + "y" : -357369.63 + }, + "selected" : false + }, { + "data" : { + "id" : "5431", + "station_name" : "田無", + "close_ymd" : "", + "lon" : 139.53925900000002, + "post" : "188-0011", + "e_status" : 0, + "SUID" : 5431, + "station_g_cd" : 2200717, + "add" : "西東京市田無町4-1-1", + "line_cd" : 22007, + "selected" : false, + "open_ymd" : "", + "name" : "2200717", + "pref_name" : "東京都", + "shared_name" : "2200717", + "lat" : 35.727307, + "y" : -357273.07, + "x" : 1395392.59 + }, + "position" : { + "x" : 1395392.59, + "y" : -357273.07 + }, + "selected" : false + }, { + "data" : { + "id" : "5432", + "station_name" : "花小金井", + "close_ymd" : "", + "lon" : 139.513228, + "post" : "187-0002", + "e_status" : 0, + "SUID" : 5432, + "station_g_cd" : 2200718, + "add" : "小平市花小金井1-10-5", + "line_cd" : 22007, + "selected" : false, + "open_ymd" : "", + "name" : "2200718", + "pref_name" : "東京都", + "shared_name" : "2200718", + "lat" : 35.726129, + "y" : -357261.29, + "x" : 1395132.28 + }, + "position" : { + "x" : 1395132.28, + "y" : -357261.29 + }, + "selected" : false + }, { + "data" : { + "id" : "5429", + "station_name" : "東伏見", + "close_ymd" : "", + "lon" : 139.56352900000002, + "post" : "202-0021", + "e_status" : 0, + "SUID" : 5429, + "station_g_cd" : 2200715, + "add" : "西東京市東伏見2-5-1", + "line_cd" : 22007, + "selected" : false, + "open_ymd" : "", + "name" : "2200715", + "pref_name" : "東京都", + "shared_name" : "2200715", + "lat" : 35.728761, + "y" : -357287.61, + "x" : 1395635.2900000003 + }, + "position" : { + "x" : 1395635.2900000003, + "y" : -357287.61 + }, + "selected" : false + }, { + "data" : { + "id" : "5430", + "station_name" : "西武柳沢", + "close_ymd" : "", + "lon" : 139.552477, + "post" : "202-0015", + "e_status" : 0, + "SUID" : 5430, + "station_g_cd" : 2200716, + "add" : "西東京市保谷町3-11-24", + "line_cd" : 22007, + "selected" : false, + "open_ymd" : "", + "name" : "2200716", + "pref_name" : "東京都", + "shared_name" : "2200716", + "lat" : 35.728621000000004, + "y" : -357286.21, + "x" : 1395524.77 + }, + "position" : { + "x" : 1395524.77, + "y" : -357286.21 + }, + "selected" : false + }, { + "data" : { + "id" : "5435", + "station_name" : "東村山", + "close_ymd" : "", + "lon" : 139.465839, + "post" : "189-0014", + "e_status" : 0, + "SUID" : 5435, + "station_g_cd" : 2200721, + "add" : "東村山市本町2-3-32", + "line_cd" : 22007, + "selected" : false, + "open_ymd" : "", + "name" : "2200721", + "pref_name" : "東京都", + "shared_name" : "2200721", + "lat" : 35.760059999999996, + "y" : -357600.6, + "x" : 1394658.39 + }, + "position" : { + "x" : 1394658.39, + "y" : -357600.6 + }, + "selected" : false + }, { + "data" : { + "id" : "5433", + "station_name" : "小平", + "close_ymd" : "", + "lon" : 139.48849099999998, + "post" : "187-0041", + "e_status" : 0, + "SUID" : 5433, + "station_g_cd" : 2200719, + "add" : "小平市美園町1-34-1", + "line_cd" : 22007, + "selected" : false, + "open_ymd" : "", + "name" : "2200719", + "pref_name" : "東京都", + "shared_name" : "2200719", + "lat" : 35.736963, + "y" : -357369.63, + "x" : 1394884.91 + }, + "position" : { + "x" : 1394884.91, + "y" : -357369.63 + }, + "selected" : false + }, { + "data" : { + "id" : "5434", + "station_name" : "久米川", + "close_ymd" : "", + "lon" : 139.472653, + "post" : "189-0013", + "e_status" : 0, + "SUID" : 5434, + "station_g_cd" : 2200720, + "add" : "東村山市栄町2-3-1", + "line_cd" : 22007, + "selected" : false, + "open_ymd" : "", + "name" : "2200720", + "pref_name" : "東京都", + "shared_name" : "2200720", + "lat" : 35.749575, + "y" : -357495.75, + "x" : 1394726.53 + }, + "position" : { + "x" : 1394726.53, + "y" : -357495.75 + }, + "selected" : false + }, { + "data" : { + "id" : "5482", + "station_name" : "京成小岩", + "close_ymd" : "", + "lon" : 139.88371, + "post" : "133-0051", + "e_status" : 0, + "SUID" : 5482, + "station_g_cd" : 2300111, + "add" : "江戸川区北小岩2-10-9", + "line_cd" : 23001, + "selected" : false, + "open_ymd" : "", + "name" : "2300111", + "pref_name" : "東京都", + "shared_name" : "2300111", + "lat" : 35.742158, + "y" : -357421.58, + "x" : 1398837.1 + }, + "position" : { + "x" : 1398837.1, + "y" : -357421.58 + }, + "selected" : false + }, { + "data" : { + "id" : "5481", + "station_name" : "京成高砂", + "close_ymd" : "", + "lon" : 139.866875, + "post" : "", + "e_status" : 0, + "SUID" : 5481, + "station_g_cd" : 2300110, + "add" : "東京都葛飾区高砂五丁目28-1", + "line_cd" : 23001, + "selected" : false, + "open_ymd" : "", + "name" : "2300110", + "pref_name" : "東京都", + "shared_name" : "2300110", + "lat" : 35.750932, + "y" : -357509.32, + "x" : 1398668.75 + }, + "position" : { + "x" : 1398668.75, + "y" : -357509.32 + }, + "selected" : false + }, { + "data" : { + "id" : "5483", + "station_name" : "江戸川", + "close_ymd" : "", + "lon" : 139.896226, + "post" : "133-0051", + "e_status" : 0, + "SUID" : 5483, + "station_g_cd" : 2300112, + "add" : "江戸川区北小岩3-24-15", + "line_cd" : 23001, + "selected" : false, + "open_ymd" : "", + "name" : "2300112", + "pref_name" : "東京都", + "shared_name" : "2300112", + "lat" : 35.737722999999995, + "y" : -357377.23, + "x" : 1398962.2600000002 + }, + "position" : { + "x" : 1398962.2600000002, + "y" : -357377.23 + }, + "selected" : false + }, { + "data" : { + "id" : "5478", + "station_name" : "堀切菖蒲園", + "close_ymd" : "", + "lon" : 139.827545, + "post" : "124-0006", + "e_status" : 0, + "SUID" : 5478, + "station_g_cd" : 2300107, + "add" : "葛飾区堀切5-1-1", + "line_cd" : 23001, + "selected" : false, + "open_ymd" : "", + "name" : "2300107", + "pref_name" : "東京都", + "shared_name" : "2300107", + "lat" : 35.747648999999996, + "y" : -357476.48999999993, + "x" : 1398275.45 + }, + "position" : { + "x" : 1398275.45, + "y" : -357476.48999999993 + }, + "selected" : false + }, { + "data" : { + "id" : "5477", + "station_name" : "京成関屋", + "close_ymd" : "", + "lon" : 139.81183000000001, + "post" : "120-0023", + "e_status" : 0, + "SUID" : 5477, + "station_g_cd" : 2100208, + "add" : "足立区千住曙町2-2", + "line_cd" : 23001, + "selected" : false, + "open_ymd" : "", + "name" : "2300106", + "pref_name" : "東京都", + "shared_name" : "2300106", + "lat" : 35.744008, + "y" : -357440.08, + "x" : 1398118.3 + }, + "position" : { + "x" : 1398118.3, + "y" : -357440.08 + }, + "selected" : false + }, { + "data" : { + "id" : "5480", + "station_name" : "青砥", + "close_ymd" : "", + "lon" : 139.856292, + "post" : "", + "e_status" : 0, + "SUID" : 5480, + "station_g_cd" : 2300109, + "add" : "東京都葛飾区青戸三丁目36番1号", + "line_cd" : 23001, + "selected" : false, + "open_ymd" : "", + "name" : "2300109", + "pref_name" : "東京都", + "shared_name" : "2300109", + "lat" : 35.745883, + "y" : -357458.83, + "x" : 1398562.92 + }, + "position" : { + "x" : 1398562.92, + "y" : -357458.83 + }, + "selected" : false + }, { + "data" : { + "id" : "5479", + "station_name" : "お花茶屋", + "close_ymd" : "", + "lon" : 139.83988, + "post" : "124-0005", + "e_status" : 0, + "SUID" : 5479, + "station_g_cd" : 2300108, + "add" : "葛飾区宝町2-37-1", + "line_cd" : 23001, + "selected" : false, + "open_ymd" : "", + "name" : "2300108", + "pref_name" : "東京都", + "shared_name" : "2300108", + "lat" : 35.747585, + "y" : -357475.85000000003, + "x" : 1398398.8 + }, + "position" : { + "x" : 1398398.8, + "y" : -357475.85000000003 + }, + "selected" : false + }, { + "data" : { + "id" : "5473", + "station_name" : "日暮里", + "close_ymd" : "", + "lon" : 139.771287, + "post" : "", + "e_status" : 0, + "SUID" : 5473, + "station_g_cd" : 1130218, + "add" : "東京都荒川区西日暮里二丁目", + "line_cd" : 23001, + "selected" : false, + "open_ymd" : "", + "name" : "2300102", + "pref_name" : "東京都", + "shared_name" : "2300102", + "lat" : 35.727908, + "y" : -357279.08, + "x" : 1397712.87 + }, + "position" : { + "x" : 1397712.87, + "y" : -357279.08 + }, + "selected" : false + }, { + "data" : { + "id" : "5474", + "station_name" : "新三河島", + "close_ymd" : "", + "lon" : 139.77383400000002, + "post" : "116-0013", + "e_status" : 0, + "SUID" : 5474, + "station_g_cd" : 2300103, + "add" : "荒川区西日暮里6-2-1", + "line_cd" : 23001, + "selected" : false, + "open_ymd" : "", + "name" : "2300103", + "pref_name" : "東京都", + "shared_name" : "2300103", + "lat" : 35.737140000000004, + "y" : -357371.4, + "x" : 1397738.3400000003 + }, + "position" : { + "x" : 1397738.3400000003, + "y" : -357371.4 + }, + "selected" : false + }, { + "data" : { + "id" : "5475", + "station_name" : "町屋", + "close_ymd" : "", + "lon" : 139.781499, + "post" : "116-0001", + "e_status" : 0, + "SUID" : 5475, + "station_g_cd" : 2300104, + "add" : "荒川区町屋1丁目", + "line_cd" : 23001, + "selected" : false, + "open_ymd" : "", + "name" : "2300104", + "pref_name" : "東京都", + "shared_name" : "2300104", + "lat" : 35.742354, + "y" : -357423.54, + "x" : 1397814.99 + }, + "position" : { + "x" : 1397814.99, + "y" : -357423.54 + }, + "selected" : false + }, { + "data" : { + "id" : "5476", + "station_name" : "千住大橋", + "close_ymd" : "", + "lon" : 139.79693400000002, + "post" : "120-0038", + "e_status" : 0, + "SUID" : 5476, + "station_g_cd" : 2300105, + "add" : "足立区千住橋戸町11-1", + "line_cd" : 23001, + "selected" : false, + "open_ymd" : "", + "name" : "2300105", + "pref_name" : "東京都", + "shared_name" : "2300105", + "lat" : 35.74243, + "y" : -357424.3, + "x" : 1397969.3400000003 + }, + "position" : { + "x" : 1397969.3400000003, + "y" : -357424.3 + }, + "selected" : false + }, { + "data" : { + "id" : "5469", + "station_name" : "白糸台", + "close_ymd" : "", + "lon" : 139.509862, + "post" : "183-0011", + "e_status" : 0, + "SUID" : 5469, + "station_g_cd" : 2201204, + "add" : "府中市白糸台2-71-6", + "line_cd" : 22012, + "selected" : false, + "open_ymd" : "", + "name" : "2201204", + "pref_name" : "東京都", + "shared_name" : "2201204", + "lat" : 35.666517, + "y" : -356665.17, + "x" : 1395098.6199999999 + }, + "position" : { + "x" : 1395098.6199999999, + "y" : -356665.17 + }, + "selected" : false + }, { + "data" : { + "id" : "5470", + "station_name" : "競艇場前", + "close_ymd" : "", + "lon" : 139.499721, + "post" : "183-0013", + "e_status" : 0, + "SUID" : 5470, + "station_g_cd" : 2201205, + "add" : "府中市小柳町4-10-11", + "line_cd" : 22012, + "selected" : false, + "open_ymd" : "", + "name" : "2201205", + "pref_name" : "東京都", + "shared_name" : "2201205", + "lat" : 35.656232, + "y" : -356562.32, + "x" : 1394997.21 + }, + "position" : { + "x" : 1394997.21, + "y" : -356562.32 + }, + "selected" : false + }, { + "data" : { + "id" : "5471", + "station_name" : "是政", + "close_ymd" : "", + "lon" : 139.48859199999998, + "post" : "183-0014", + "e_status" : 0, + "SUID" : 5471, + "station_g_cd" : 2201206, + "add" : "府中市是政5-8-2", + "line_cd" : 22012, + "selected" : false, + "open_ymd" : "", + "name" : "2201206", + "pref_name" : "東京都", + "shared_name" : "2201206", + "lat" : 35.656242, + "y" : -356562.42, + "x" : 1394885.92 + }, + "position" : { + "x" : 1394885.92, + "y" : -356562.42 + }, + "selected" : false + }, { + "data" : { + "id" : "5472", + "station_name" : "京成上野", + "close_ymd" : "", + "lon" : 139.773571, + "post" : "", + "e_status" : 0, + "SUID" : 5472, + "station_g_cd" : 2300101, + "add" : "東京都台東区上野公園1-60", + "line_cd" : 23001, + "selected" : false, + "open_ymd" : "", + "name" : "2300101", + "pref_name" : "東京都", + "shared_name" : "2300101", + "lat" : 35.711232, + "y" : -357112.32, + "x" : 1397735.71 + }, + "position" : { + "x" : 1397735.71, + "y" : -357112.32 + }, + "selected" : false + }, { + "data" : { + "id" : "5465", + "station_name" : "西武遊園地", + "close_ymd" : "", + "lon" : 139.442747, + "post" : "189-0026", + "e_status" : 0, + "SUID" : 5465, + "station_g_cd" : 2200601, + "add" : "東村山市多摩湖町3-15-18", + "line_cd" : 22011, + "selected" : false, + "open_ymd" : "", + "name" : "2201108", + "pref_name" : "東京都", + "shared_name" : "2201108", + "lat" : 35.765881, + "y" : -357658.81, + "x" : 1394427.47 + }, + "position" : { + "x" : 1394427.47, + "y" : -357658.81 + }, + "selected" : false + }, { + "data" : { + "id" : "5466", + "station_name" : "武蔵境", + "close_ymd" : "", + "lon" : 139.54340200000001, + "post" : "180-0022", + "e_status" : 0, + "SUID" : 5466, + "station_g_cd" : 1131221, + "add" : "武蔵野市境1丁目", + "line_cd" : 22012, + "selected" : false, + "open_ymd" : "", + "name" : "2201201", + "pref_name" : "東京都", + "shared_name" : "2201201", + "lat" : 35.702083, + "y" : -357020.83, + "x" : 1395434.0200000003 + }, + "position" : { + "x" : 1395434.0200000003, + "y" : -357020.83 + }, + "selected" : false + }, { + "data" : { + "id" : "5467", + "station_name" : "新小金井", + "close_ymd" : "", + "lon" : 139.526603, + "post" : "184-0011", + "e_status" : 0, + "SUID" : 5467, + "station_g_cd" : 2201202, + "add" : "小金井市東町4-24-1", + "line_cd" : 22012, + "selected" : false, + "open_ymd" : "", + "name" : "2201202", + "pref_name" : "東京都", + "shared_name" : "2201202", + "lat" : 35.695908, + "y" : -356959.08, + "x" : 1395266.03 + }, + "position" : { + "x" : 1395266.03, + "y" : -356959.08 + }, + "selected" : false + }, { + "data" : { + "id" : "5468", + "station_name" : "多磨", + "close_ymd" : "", + "lon" : 139.51713, + "post" : "183-0004", + "e_status" : 0, + "SUID" : 5468, + "station_g_cd" : 2201203, + "add" : "府中市紅葉丘3-42-2", + "line_cd" : 22012, + "selected" : false, + "open_ymd" : "", + "name" : "2201203", + "pref_name" : "東京都", + "shared_name" : "2201203", + "lat" : 35.676821000000004, + "y" : -356768.21, + "x" : 1395171.3 + }, + "position" : { + "x" : 1395171.3, + "y" : -356768.21 + }, + "selected" : false + }, { + "data" : { + "id" : "5461", + "station_name" : "青梅街道", + "close_ymd" : "", + "lon" : 139.476628, + "post" : "187-0032", + "e_status" : 0, + "SUID" : 5461, + "station_g_cd" : 2201103, + "add" : "小平市小川町2-1846", + "line_cd" : 22011, + "selected" : false, + "open_ymd" : "", + "name" : "2201103", + "pref_name" : "東京都", + "shared_name" : "2201103", + "lat" : 35.730979999999995, + "y" : -357309.79999999993, + "x" : 1394766.28 + }, + "position" : { + "x" : 1394766.28, + "y" : -357309.79999999993 + }, + "selected" : false + }, { + "data" : { + "id" : "5462", + "station_name" : "萩山", + "close_ymd" : "", + "lon" : 139.476903, + "post" : "189-0012", + "e_status" : 0, + "SUID" : 5462, + "station_g_cd" : 2200802, + "add" : "東村山市萩山町2-1-1", + "line_cd" : 22011, + "selected" : false, + "open_ymd" : "", + "name" : "2201105", + "pref_name" : "東京都", + "shared_name" : "2201105", + "lat" : 35.740759000000004, + "y" : -357407.59, + "x" : 1394769.03 + }, + "position" : { + "x" : 1394769.03, + "y" : -357407.59 + }, + "selected" : false + }, { + "data" : { + "id" : "5463", + "station_name" : "八坂", + "close_ymd" : "", + "lon" : 139.467676, + "post" : "189-0013", + "e_status" : 0, + "SUID" : 5463, + "station_g_cd" : 2201106, + "add" : "東村山市栄町3-18-1", + "line_cd" : 22011, + "selected" : false, + "open_ymd" : "", + "name" : "2201106", + "pref_name" : "東京都", + "shared_name" : "2201106", + "lat" : 35.744925, + "y" : -357449.25, + "x" : 1394676.76 + }, + "position" : { + "x" : 1394676.76, + "y" : -357449.25 + }, + "selected" : false + }, { + "data" : { + "id" : "5464", + "station_name" : "武蔵大和", + "close_ymd" : "", + "lon" : 139.444008, + "post" : "189-0025", + "e_status" : 0, + "SUID" : 5464, + "station_g_cd" : 2201107, + "add" : "東村山市廻田町3-9-19", + "line_cd" : 22011, + "selected" : false, + "open_ymd" : "", + "name" : "2201107", + "pref_name" : "東京都", + "shared_name" : "2201107", + "lat" : 35.756427, + "y" : -357564.27, + "x" : 1394440.08 + }, + "position" : { + "x" : 1394440.08, + "y" : -357564.27 + }, + "selected" : false + }, { + "data" : { + "id" : "5524", + "station_name" : "京成金町", + "close_ymd" : "", + "lon" : 139.87038700000002, + "post" : "125-0042", + "e_status" : 0, + "SUID" : 5524, + "station_g_cd" : 1132008, + "add" : "葛飾区金町5-37-9", + "line_cd" : 23003, + "selected" : false, + "open_ymd" : "", + "name" : "2300303", + "pref_name" : "東京都", + "shared_name" : "2300303", + "lat" : 35.768471000000005, + "y" : -357684.7100000001, + "x" : 1398703.87 + }, + "position" : { + "x" : 1398703.87, + "y" : -357684.7100000001 + }, + "selected" : false + }, { + "data" : { + "id" : "5523", + "station_name" : "柴又", + "close_ymd" : "", + "lon" : 139.87518799999998, + "post" : "125-0052", + "e_status" : 0, + "SUID" : 5523, + "station_g_cd" : 2300302, + "add" : "葛飾区柴又4-8-14", + "line_cd" : 23003, + "selected" : false, + "open_ymd" : "", + "name" : "2300302", + "pref_name" : "東京都", + "shared_name" : "2300302", + "lat" : 35.756322999999995, + "y" : -357563.2299999999, + "x" : 1398751.88 + }, + "position" : { + "x" : 1398751.88, + "y" : -357563.2299999999 + }, + "selected" : false + }, { + "data" : { + "id" : "5522", + "station_name" : "京成高砂", + "close_ymd" : "", + "lon" : 139.866875, + "post" : "", + "e_status" : 0, + "SUID" : 5522, + "station_g_cd" : 2300110, + "add" : "東京都葛飾区高砂五丁目28-1", + "line_cd" : 23003, + "selected" : false, + "open_ymd" : "", + "name" : "2300301", + "pref_name" : "東京都", + "shared_name" : "2300301", + "lat" : 35.750932, + "y" : -357509.32, + "x" : 1398668.75 + }, + "position" : { + "x" : 1398668.75, + "y" : -357509.32 + }, + "selected" : false + }, { + "data" : { + "id" : "5521", + "station_name" : "京成高砂", + "close_ymd" : "", + "lon" : 139.866875, + "post" : "", + "e_status" : 0, + "SUID" : 5521, + "station_g_cd" : 2300110, + "add" : "東京都葛飾区高砂五丁目28-1", + "line_cd" : 23002, + "selected" : false, + "open_ymd" : "", + "name" : "2300207", + "pref_name" : "東京都", + "shared_name" : "2300207", + "lat" : 35.750932, + "y" : -357509.32, + "x" : 1398668.75 + }, + "position" : { + "x" : 1398668.75, + "y" : -357509.32 + }, + "selected" : false + }, { + "data" : { + "id" : "5520", + "station_name" : "青砥", + "close_ymd" : "", + "lon" : 139.856292, + "post" : "", + "e_status" : 0, + "SUID" : 5520, + "station_g_cd" : 2300109, + "add" : "東京都葛飾区青戸三丁目36番1号", + "line_cd" : 23002, + "selected" : false, + "open_ymd" : "", + "name" : "2300206", + "pref_name" : "東京都", + "shared_name" : "2300206", + "lat" : 35.745883, + "y" : -357458.83, + "x" : 1398562.92 + }, + "position" : { + "x" : 1398562.92, + "y" : -357458.83 + }, + "selected" : false + }, { + "data" : { + "id" : "5519", + "station_name" : "京成立石", + "close_ymd" : "", + "lon" : 139.848558, + "post" : "124-0012", + "e_status" : 0, + "SUID" : 5519, + "station_g_cd" : 2300205, + "add" : "葛飾区立石4-24-1", + "line_cd" : 23002, + "selected" : false, + "open_ymd" : "", + "name" : "2300205", + "pref_name" : "東京都", + "shared_name" : "2300205", + "lat" : 35.738281, + "y" : -357382.81, + "x" : 1398485.58 + }, + "position" : { + "x" : 1398485.58, + "y" : -357382.81 + }, + "selected" : false + }, { + "data" : { + "id" : "5518", + "station_name" : "四ツ木", + "close_ymd" : "", + "lon" : 139.834918, + "post" : "124-0011", + "e_status" : 0, + "SUID" : 5518, + "station_g_cd" : 2300204, + "add" : "葛飾区四つ木1-1-1", + "line_cd" : 23002, + "selected" : false, + "open_ymd" : "", + "name" : "2300204", + "pref_name" : "東京都", + "shared_name" : "2300204", + "lat" : 35.731962, + "y" : -357319.62000000005, + "x" : 1398349.18 + }, + "position" : { + "x" : 1398349.18, + "y" : -357319.62000000005 + }, + "selected" : false + }, { + "data" : { + "id" : "5517", + "station_name" : "八広", + "close_ymd" : "", + "lon" : 139.828738, + "post" : "131-0041", + "e_status" : 0, + "SUID" : 5517, + "station_g_cd" : 2300203, + "add" : "墨田区八広6-25-20", + "line_cd" : 23002, + "selected" : false, + "open_ymd" : "", + "name" : "2300203", + "pref_name" : "東京都", + "shared_name" : "2300203", + "lat" : 35.727687, + "y" : -357276.87000000005, + "x" : 1398287.38 + }, + "position" : { + "x" : 1398287.38, + "y" : -357276.87000000005 + }, + "selected" : false + }, { + "data" : { + "id" : "5516", + "station_name" : "京成曳舟", + "close_ymd" : "", + "lon" : 139.82001200000002, + "post" : "131-0046", + "e_status" : 0, + "SUID" : 5516, + "station_g_cd" : 2300202, + "add" : "墨田区京島1-39-1", + "line_cd" : 23002, + "selected" : false, + "open_ymd" : "", + "name" : "2300202", + "pref_name" : "東京都", + "shared_name" : "2300202", + "lat" : 35.718441, + "y" : -357184.41, + "x" : 1398200.12 + }, + "position" : { + "x" : 1398200.12, + "y" : -357184.41 + }, + "selected" : false + }, { + "data" : { + "id" : "5515", + "station_name" : "押上(スカイツリー前)", + "close_ymd" : "", + "lon" : 139.812935, + "post" : "131-0045", + "e_status" : 0, + "SUID" : 5515, + "station_g_cd" : 2100203, + "add" : "墨田区押上一丁目", + "line_cd" : 23002, + "selected" : false, + "open_ymd" : "", + "name" : "2300201", + "pref_name" : "東京都", + "shared_name" : "2300201", + "lat" : 35.710702000000005, + "y" : -357107.0200000001, + "x" : 1398129.35 + }, + "position" : { + "x" : 1398129.35, + "y" : -357107.0200000001 + }, + "selected" : false + }, { + "data" : { + "id" : "2702", + "station_name" : "品川", + "close_ymd" : "", + "lon" : 139.738999, + "post" : "108-0074", + "e_status" : 0, + "SUID" : 2702, + "station_g_cd" : 1130103, + "add" : "東京都港区高輪三丁目26-26", + "line_cd" : 11302, + "selected" : false, + "open_ymd" : "1872-06-12", + "name" : "1130229", + "pref_name" : "東京都", + "shared_name" : "1130229", + "lat" : 35.62876, + "y" : -356287.6, + "x" : 1397389.99 + }, + "position" : { + "x" : 1397389.99, + "y" : -356287.6 + }, + "selected" : false + }, { + "data" : { + "id" : "2701", + "station_name" : "田町", + "close_ymd" : "", + "lon" : 139.747575, + "post" : "108-0014", + "e_status" : 0, + "SUID" : 2701, + "station_g_cd" : 1130228, + "add" : "東京都港区芝五丁目33-36", + "line_cd" : 11302, + "selected" : false, + "open_ymd" : "1906-12-16", + "name" : "1130228", + "pref_name" : "東京都", + "shared_name" : "1130228", + "lat" : 35.645736, + "y" : -356457.36, + "x" : 1397475.7500000002 + }, + "position" : { + "x" : 1397475.7500000002, + "y" : -356457.36 + }, + "selected" : false + }, { + "data" : { + "id" : "2694", + "station_name" : "御徒町", + "close_ymd" : "", + "lon" : 139.774727, + "post" : "110-0005", + "e_status" : 0, + "SUID" : 2694, + "station_g_cd" : 1130221, + "add" : "東京都台東区上野五丁目27", + "line_cd" : 11302, + "selected" : false, + "open_ymd" : "1925-11-01", + "name" : "1130221", + "pref_name" : "東京都", + "shared_name" : "1130221", + "lat" : 35.707282, + "y" : -357072.82, + "x" : 1397747.27 + }, + "position" : { + "x" : 1397747.27, + "y" : -357072.82 + }, + "selected" : false + }, { + "data" : { + "id" : "2693", + "station_name" : "上野", + "close_ymd" : "", + "lon" : 139.777043, + "post" : "110-0005", + "e_status" : 0, + "SUID" : 2693, + "station_g_cd" : 1130220, + "add" : "東京都台東区上野七丁目1-1", + "line_cd" : 11302, + "selected" : false, + "open_ymd" : "1883-07-28", + "name" : "1130220", + "pref_name" : "東京都", + "shared_name" : "1130220", + "lat" : 35.71379, + "y" : -357137.9, + "x" : 1397770.43 + }, + "position" : { + "x" : 1397770.43, + "y" : -357137.9 + }, + "selected" : false + }, { + "data" : { + "id" : "2696", + "station_name" : "神田", + "close_ymd" : "", + "lon" : 139.77064099999998, + "post" : "101-0044", + "e_status" : 0, + "SUID" : 2696, + "station_g_cd" : 1130223, + "add" : "東京都千代田区鍛冶町二丁目13-1", + "line_cd" : 11302, + "selected" : false, + "open_ymd" : "1919-03-01", + "name" : "1130223", + "pref_name" : "東京都", + "shared_name" : "1130223", + "lat" : 35.691173, + "y" : -356911.73, + "x" : 1397706.41 + }, + "position" : { + "x" : 1397706.41, + "y" : -356911.73 + }, + "selected" : false + }, { + "data" : { + "id" : "2695", + "station_name" : "秋葉原", + "close_ymd" : "", + "lon" : 139.77328799999998, + "post" : "101-0021", + "e_status" : 0, + "SUID" : 2695, + "station_g_cd" : 1130222, + "add" : "東京都千代田区外神田一丁目17", + "line_cd" : 11302, + "selected" : false, + "open_ymd" : "1890-11-01", + "name" : "1130222", + "pref_name" : "東京都", + "shared_name" : "1130222", + "lat" : 35.698619, + "y" : -356986.19, + "x" : 1397732.88 + }, + "position" : { + "x" : 1397732.88, + "y" : -356986.19 + }, + "selected" : false + }, { + "data" : { + "id" : "2698", + "station_name" : "有楽町", + "close_ymd" : "", + "lon" : 139.76380600000002, + "post" : "100-0006", + "e_status" : 0, + "SUID" : 2698, + "station_g_cd" : 1130225, + "add" : "東京都千代田区有楽町二丁目9", + "line_cd" : 11302, + "selected" : false, + "open_ymd" : "1910-06-25", + "name" : "1130225", + "pref_name" : "東京都", + "shared_name" : "1130225", + "lat" : 35.675441, + "y" : -356754.41, + "x" : 1397638.06 + }, + "position" : { + "x" : 1397638.06, + "y" : -356754.41 + }, + "selected" : false + }, { + "data" : { + "id" : "2697", + "station_name" : "東京", + "close_ymd" : "", + "lon" : 139.76610300000002, + "post" : "100-0005", + "e_status" : 0, + "SUID" : 2697, + "station_g_cd" : 1130101, + "add" : "東京都千代田区丸の内一丁目9-1", + "line_cd" : 11302, + "selected" : false, + "open_ymd" : "1914-12-20", + "name" : "1130224", + "pref_name" : "東京都", + "shared_name" : "1130224", + "lat" : 35.681391, + "y" : -356813.91, + "x" : 1397661.0300000003 + }, + "position" : { + "x" : 1397661.0300000003, + "y" : -356813.91 + }, + "selected" : false + }, { + "data" : { + "id" : "2700", + "station_name" : "浜松町", + "close_ymd" : "", + "lon" : 139.757135, + "post" : "105-0022", + "e_status" : 0, + "SUID" : 2700, + "station_g_cd" : 1130227, + "add" : "東京都港区海岸一丁目3-1", + "line_cd" : 11302, + "selected" : false, + "open_ymd" : "1909-12-16", + "name" : "1130227", + "pref_name" : "東京都", + "shared_name" : "1130227", + "lat" : 35.655390999999995, + "y" : -356553.9099999999, + "x" : 1397571.35 + }, + "position" : { + "x" : 1397571.35, + "y" : -356553.9099999999 + }, + "selected" : false + }, { + "data" : { + "id" : "2699", + "station_name" : "新橋", + "close_ymd" : "", + "lon" : 139.758587, + "post" : "105-0004", + "e_status" : 0, + "SUID" : 2699, + "station_g_cd" : 1130102, + "add" : "東京都港区新橋二丁目17", + "line_cd" : 11302, + "selected" : false, + "open_ymd" : "1909-12-16", + "name" : "1130226", + "pref_name" : "東京都", + "shared_name" : "1130226", + "lat" : 35.666195, + "y" : -356661.95, + "x" : 1397585.87 + }, + "position" : { + "x" : 1397585.87, + "y" : -356661.95 + }, + "selected" : false + }, { + "data" : { + "id" : "2685", + "station_name" : "池袋", + "close_ymd" : "", + "lon" : 139.71108600000002, + "post" : "171-0022", + "e_status" : 0, + "SUID" : 2685, + "station_g_cd" : 1130212, + "add" : "東京都豊島区南池袋一丁目28-2", + "line_cd" : 11302, + "selected" : false, + "open_ymd" : "1903-04-01", + "name" : "1130212", + "pref_name" : "東京都", + "shared_name" : "1130212", + "lat" : 35.730256, + "y" : -357302.56, + "x" : 1397110.8600000003 + }, + "position" : { + "x" : 1397110.8600000003, + "y" : -357302.56 + }, + "selected" : false + }, { + "data" : { + "id" : "2686", + "station_name" : "大塚", + "close_ymd" : "", + "lon" : 139.728584, + "post" : "170-0005", + "e_status" : 0, + "SUID" : 2686, + "station_g_cd" : 1130213, + "add" : "東京都豊島区南大塚三丁目33-1", + "line_cd" : 11302, + "selected" : false, + "open_ymd" : "1903-04-01", + "name" : "1130213", + "pref_name" : "東京都", + "shared_name" : "1130213", + "lat" : 35.731412, + "y" : -357314.12, + "x" : 1397285.84 + }, + "position" : { + "x" : 1397285.84, + "y" : -357314.12 + }, + "selected" : false + }, { + "data" : { + "id" : "2687", + "station_name" : "巣鴨", + "close_ymd" : "", + "lon" : 139.739303, + "post" : "170-0002", + "e_status" : 0, + "SUID" : 2687, + "station_g_cd" : 1130214, + "add" : "東京都豊島区巣鴨一丁目16-1", + "line_cd" : 11302, + "selected" : false, + "open_ymd" : "1903-04-01", + "name" : "1130214", + "pref_name" : "東京都", + "shared_name" : "1130214", + "lat" : 35.733445, + "y" : -357334.45, + "x" : 1397393.03 + }, + "position" : { + "x" : 1397393.03, + "y" : -357334.45 + }, + "selected" : false + }, { + "data" : { + "id" : "2688", + "station_name" : "駒込", + "close_ymd" : "", + "lon" : 139.748053, + "post" : "170-0003", + "e_status" : 0, + "SUID" : 2688, + "station_g_cd" : 1130215, + "add" : "東京都豊島区駒込二丁目1-1", + "line_cd" : 11302, + "selected" : false, + "open_ymd" : "1910-11-15", + "name" : "1130215", + "pref_name" : "東京都", + "shared_name" : "1130215", + "lat" : 35.736825, + "y" : -357368.25000000006, + "x" : 1397480.53 + }, + "position" : { + "x" : 1397480.53, + "y" : -357368.25000000006 + }, + "selected" : false + }, { + "data" : { + "id" : "2689", + "station_name" : "田端", + "close_ymd" : "", + "lon" : 139.76122900000001, + "post" : "114-0013", + "e_status" : 0, + "SUID" : 2689, + "station_g_cd" : 1130216, + "add" : "東京都北区東田端一丁目17-1", + "line_cd" : 11302, + "selected" : false, + "open_ymd" : "1896-04-01", + "name" : "1130216", + "pref_name" : "東京都", + "shared_name" : "1130216", + "lat" : 35.737781, + "y" : -357377.81, + "x" : 1397612.29 + }, + "position" : { + "x" : 1397612.29, + "y" : -357377.81 + }, + "selected" : false + }, { + "data" : { + "id" : "2690", + "station_name" : "西日暮里", + "close_ymd" : "", + "lon" : 139.76685700000002, + "post" : "116-0013", + "e_status" : 0, + "SUID" : 2690, + "station_g_cd" : 1130217, + "add" : "東京都荒川区西日暮里五丁目22-1", + "line_cd" : 11302, + "selected" : false, + "open_ymd" : "1971-04-20", + "name" : "1130217", + "pref_name" : "東京都", + "shared_name" : "1130217", + "lat" : 35.731953999999995, + "y" : -357319.5399999999, + "x" : 1397668.57 + }, + "position" : { + "x" : 1397668.57, + "y" : -357319.5399999999 + }, + "selected" : false + }, { + "data" : { + "id" : "2691", + "station_name" : "日暮里", + "close_ymd" : "", + "lon" : 139.771287, + "post" : "116-0013", + "e_status" : 0, + "SUID" : 2691, + "station_g_cd" : 1130218, + "add" : "東京都荒川区西日暮里二丁目19-1", + "line_cd" : 11302, + "selected" : false, + "open_ymd" : "1905-04-01", + "name" : "1130218", + "pref_name" : "東京都", + "shared_name" : "1130218", + "lat" : 35.727908, + "y" : -357279.08, + "x" : 1397712.87 + }, + "position" : { + "x" : 1397712.87, + "y" : -357279.08 + }, + "selected" : false + }, { + "data" : { + "id" : "2692", + "station_name" : "鶯谷", + "close_ymd" : "", + "lon" : 139.77801499999998, + "post" : "110-0003", + "e_status" : 0, + "SUID" : 2692, + "station_g_cd" : 1130219, + "add" : "東京都台東区根岸一丁目4-1", + "line_cd" : 11302, + "selected" : false, + "open_ymd" : "1912-07-11", + "name" : "1130219", + "pref_name" : "東京都", + "shared_name" : "1130219", + "lat" : 35.721484000000004, + "y" : -357214.84, + "x" : 1397780.15 + }, + "position" : { + "x" : 1397780.15, + "y" : -357214.84 + }, + "selected" : false + }, { + "data" : { + "id" : "2677", + "station_name" : "恵比寿", + "close_ymd" : "", + "lon" : 139.71007, + "post" : "150-0022", + "e_status" : 0, + "SUID" : 2677, + "station_g_cd" : 1130204, + "add" : "東京都渋谷区恵比寿南一丁目5-5", + "line_cd" : 11302, + "selected" : false, + "open_ymd" : "1901-02-25", + "name" : "1130204", + "pref_name" : "東京都", + "shared_name" : "1130204", + "lat" : 35.646685, + "y" : -356466.85, + "x" : 1397100.7 + }, + "position" : { + "x" : 1397100.7, + "y" : -356466.85 + }, + "selected" : false + }, { + "data" : { + "id" : "2678", + "station_name" : "渋谷", + "close_ymd" : "", + "lon" : 139.701238, + "post" : "150-0043", + "e_status" : 0, + "SUID" : 2678, + "station_g_cd" : 1130205, + "add" : "東京都渋谷区道玄坂一丁目1-1", + "line_cd" : 11302, + "selected" : false, + "open_ymd" : "1885-03-01", + "name" : "1130205", + "pref_name" : "東京都", + "shared_name" : "1130205", + "lat" : 35.658871000000005, + "y" : -356588.71, + "x" : 1397012.38 + }, + "position" : { + "x" : 1397012.38, + "y" : -356588.71 + }, + "selected" : false + }, { + "data" : { + "id" : "2679", + "station_name" : "原宿", + "close_ymd" : "", + "lon" : 139.70259199999998, + "post" : "150-0001", + "e_status" : 0, + "SUID" : 2679, + "station_g_cd" : 1130206, + "add" : "東京都渋谷区神宮前一丁目18", + "line_cd" : 11302, + "selected" : false, + "open_ymd" : "1906-10-30", + "name" : "1130206", + "pref_name" : "東京都", + "shared_name" : "1130206", + "lat" : 35.670646000000005, + "y" : -356706.46, + "x" : 1397025.92 + }, + "position" : { + "x" : 1397025.92, + "y" : -356706.46 + }, + "selected" : false + }, { + "data" : { + "id" : "2680", + "station_name" : "代々木", + "close_ymd" : "", + "lon" : 139.702042, + "post" : "151-0053", + "e_status" : 0, + "SUID" : 2680, + "station_g_cd" : 1130207, + "add" : "東京都渋谷区代々木一丁目34-1", + "line_cd" : 11302, + "selected" : false, + "open_ymd" : "1906-09-23", + "name" : "1130207", + "pref_name" : "東京都", + "shared_name" : "1130207", + "lat" : 35.683061, + "y" : -356830.61000000004, + "x" : 1397020.4200000002 + }, + "position" : { + "x" : 1397020.4200000002, + "y" : -356830.61000000004 + }, + "selected" : false + }, { + "data" : { + "id" : "2681", + "station_name" : "新宿", + "close_ymd" : "", + "lon" : 139.70046399999998, + "post" : "160-0022", + "e_status" : 0, + "SUID" : 2681, + "station_g_cd" : 1130208, + "add" : "東京都新宿区新宿三丁目38-1", + "line_cd" : 11302, + "selected" : false, + "open_ymd" : "1885-03-01", + "name" : "1130208", + "pref_name" : "東京都", + "shared_name" : "1130208", + "lat" : 35.689729, + "y" : -356897.29, + "x" : 1397004.64 + }, + "position" : { + "x" : 1397004.64, + "y" : -356897.29 + }, + "selected" : false + }, { + "data" : { + "id" : "2682", + "station_name" : "新大久保", + "close_ymd" : "", + "lon" : 139.700261, + "post" : "169-0073", + "e_status" : 0, + "SUID" : 2682, + "station_g_cd" : 1130209, + "add" : "東京都新宿区百人町一丁目10-15", + "line_cd" : 11302, + "selected" : false, + "open_ymd" : "1914-11-15", + "name" : "1130209", + "pref_name" : "東京都", + "shared_name" : "1130209", + "lat" : 35.700875, + "y" : -357008.75000000006, + "x" : 1397002.61 + }, + "position" : { + "x" : 1397002.61, + "y" : -357008.75000000006 + }, + "selected" : false + }, { + "data" : { + "id" : "2683", + "station_name" : "高田馬場", + "close_ymd" : "", + "lon" : 139.703715, + "post" : "169-0075", + "e_status" : 0, + "SUID" : 2683, + "station_g_cd" : 1130210, + "add" : "東京都新宿区高田馬場一丁目35-1", + "line_cd" : 11302, + "selected" : false, + "open_ymd" : "1910-09-15", + "name" : "1130210", + "pref_name" : "東京都", + "shared_name" : "1130210", + "lat" : 35.712677, + "y" : -357126.77, + "x" : 1397037.15 + }, + "position" : { + "x" : 1397037.15, + "y" : -357126.77 + }, + "selected" : false + }, { + "data" : { + "id" : "2684", + "station_name" : "目白", + "close_ymd" : "", + "lon" : 139.706228, + "post" : "171-0031", + "e_status" : 0, + "SUID" : 2684, + "station_g_cd" : 1130211, + "add" : "東京都豊島区目白三丁目3-1", + "line_cd" : 11302, + "selected" : false, + "open_ymd" : "1885-03-16", + "name" : "1130211", + "pref_name" : "東京都", + "shared_name" : "1130211", + "lat" : 35.720476, + "y" : -357204.75999999995, + "x" : 1397062.28 + }, + "position" : { + "x" : 1397062.28, + "y" : -357204.75999999995 + }, + "selected" : false + }, { + "data" : { + "id" : "2676", + "station_name" : "目黒", + "close_ymd" : "", + "lon" : 139.715775, + "post" : "141-0021", + "e_status" : 0, + "SUID" : 2676, + "station_g_cd" : 1130203, + "add" : "東京都品川区上大崎二丁目16-9", + "line_cd" : 11302, + "selected" : false, + "open_ymd" : "1885-03-16", + "name" : "1130203", + "pref_name" : "東京都", + "shared_name" : "1130203", + "lat" : 35.633922999999996, + "y" : -356339.23, + "x" : 1397157.75 + }, + "position" : { + "x" : 1397157.75, + "y" : -356339.23 + }, + "selected" : false + }, { + "data" : { + "id" : "2675", + "station_name" : "五反田", + "close_ymd" : "", + "lon" : 139.72382199999998, + "post" : "141-0022", + "e_status" : 0, + "SUID" : 2675, + "station_g_cd" : 1130202, + "add" : "東京都品川区東五反田一丁目26", + "line_cd" : 11302, + "selected" : false, + "open_ymd" : "1911-10-15", + "name" : "1130202", + "pref_name" : "東京都", + "shared_name" : "1130202", + "lat" : 35.625974, + "y" : -356259.74, + "x" : 1397238.2199999997 + }, + "position" : { + "x" : 1397238.2199999997, + "y" : -356259.74 + }, + "selected" : false + }, { + "data" : { + "id" : "2674", + "station_name" : "大崎", + "close_ymd" : "", + "lon" : 139.72843899999998, + "post" : "141-0032", + "e_status" : 0, + "SUID" : 2674, + "station_g_cd" : 1130201, + "add" : "東京都品川区大崎一丁目21-4", + "line_cd" : 11302, + "selected" : false, + "open_ymd" : "1901-02-25", + "name" : "1130201", + "pref_name" : "東京都", + "shared_name" : "1130201", + "lat" : 35.619772, + "y" : -356197.72, + "x" : 1397284.39 + }, + "position" : { + "x" : 1397284.39, + "y" : -356197.72 + }, + "selected" : false + }, { + "data" : { + "id" : "2655", + "station_name" : "品川", + "close_ymd" : "", + "lon" : 139.738999, + "post" : "108-0074", + "e_status" : 0, + "SUID" : 2655, + "station_g_cd" : 1130103, + "add" : "東京都港区高輪三丁目26-27", + "line_cd" : 11301, + "selected" : false, + "open_ymd" : "", + "name" : "1130103", + "pref_name" : "東京都", + "shared_name" : "1130103", + "lat" : 35.62876, + "y" : -356287.6, + "x" : 1397389.99 + }, + "position" : { + "x" : 1397389.99, + "y" : -356287.6 + }, + "selected" : false + }, { + "data" : { + "id" : "2653", + "station_name" : "東京", + "close_ymd" : "", + "lon" : 139.76610300000002, + "post" : "100-0005", + "e_status" : 0, + "SUID" : 2653, + "station_g_cd" : 1130101, + "add" : "東京都千代田区丸の内一丁目", + "line_cd" : 11301, + "selected" : false, + "open_ymd" : "", + "name" : "1130101", + "pref_name" : "東京都", + "shared_name" : "1130101", + "lat" : 35.681391, + "y" : -356813.91, + "x" : 1397661.0300000003 + }, + "position" : { + "x" : 1397661.0300000003, + "y" : -356813.91 + }, + "selected" : false + }, { + "data" : { + "id" : "2654", + "station_name" : "新橋", + "close_ymd" : "", + "lon" : 139.758587, + "post" : "105-0004", + "e_status" : 0, + "SUID" : 2654, + "station_g_cd" : 1130102, + "add" : "東京都港区新橋二丁目17", + "line_cd" : 11301, + "selected" : false, + "open_ymd" : "", + "name" : "1130102", + "pref_name" : "東京都", + "shared_name" : "1130102", + "lat" : 35.666195, + "y" : -356661.95, + "x" : 1397585.87 + }, + "position" : { + "x" : 1397585.87, + "y" : -356661.95 + }, + "selected" : false + }, { + "data" : { + "id" : "2746", + "station_name" : "北府中", + "close_ymd" : "", + "lon" : 139.471792, + "post" : "183-0057", + "e_status" : 0, + "SUID" : 2746, + "station_g_cd" : 1130502, + "add" : "府中市晴見町2丁目", + "line_cd" : 11305, + "selected" : false, + "open_ymd" : "", + "name" : "1130502", + "pref_name" : "東京都", + "shared_name" : "1130502", + "lat" : 35.68088, + "y" : -356808.80000000005, + "x" : 1394717.92 + }, + "position" : { + "x" : 1394717.92, + "y" : -356808.80000000005 + }, + "selected" : false + }, { + "data" : { + "id" : "2745", + "station_name" : "府中本町", + "close_ymd" : "", + "lon" : 139.477142, + "post" : "183-0027", + "e_status" : 0, + "SUID" : 2745, + "station_g_cd" : 1130320, + "add" : "府中市本町1丁目", + "line_cd" : 11305, + "selected" : false, + "open_ymd" : "", + "name" : "1130501", + "pref_name" : "東京都", + "shared_name" : "1130501", + "lat" : 35.665766, + "y" : -356657.66, + "x" : 1394771.42 + }, + "position" : { + "x" : 1394771.42, + "y" : -356657.66 + }, + "selected" : false + }, { + "data" : { + "id" : "2748", + "station_name" : "新小平", + "close_ymd" : "", + "lon" : 139.470745, + "post" : "187-0032", + "e_status" : 0, + "SUID" : 2748, + "station_g_cd" : 1130504, + "add" : "小平市小川町2丁目", + "line_cd" : 11305, + "selected" : false, + "open_ymd" : "", + "name" : "1130504", + "pref_name" : "東京都", + "shared_name" : "1130504", + "lat" : 35.73128, + "y" : -357312.8, + "x" : 1394707.45 + }, + "position" : { + "x" : 1394707.45, + "y" : -357312.8 + }, + "selected" : false + }, { + "data" : { + "id" : "2747", + "station_name" : "西国分寺", + "close_ymd" : "", + "lon" : 139.465994, + "post" : "185-0013", + "e_status" : 0, + "SUID" : 2747, + "station_g_cd" : 1130503, + "add" : "国分寺市西恋ケ窪2丁目", + "line_cd" : 11305, + "selected" : false, + "open_ymd" : "", + "name" : "1130503", + "pref_name" : "東京都", + "shared_name" : "1130503", + "lat" : 35.699744, + "y" : -356997.44, + "x" : 1394659.94 + }, + "position" : { + "x" : 1394659.94, + "y" : -356997.44 + }, + "selected" : false + }, { + "data" : { + "id" : "2749", + "station_name" : "新秋津", + "close_ymd" : "", + "lon" : 139.493592, + "post" : "189-0001", + "e_status" : 0, + "SUID" : 2749, + "station_g_cd" : 1130505, + "add" : "東村山市秋津町5丁目", + "line_cd" : 11305, + "selected" : false, + "open_ymd" : "", + "name" : "1130505", + "pref_name" : "東京都", + "shared_name" : "1130505", + "lat" : 35.778331, + "y" : -357783.31, + "x" : 1394935.9200000002 + }, + "position" : { + "x" : 1394935.9200000002, + "y" : -357783.31 + }, + "selected" : false + }, { + "data" : { + "id" : "2729", + "station_name" : "立川", + "close_ymd" : "", + "lon" : 139.413704, + "post" : "190-0012", + "e_status" : 0, + "SUID" : 2729, + "station_g_cd" : 1130325, + "add" : "東京都立川市曙町二丁目1-1", + "line_cd" : 11303, + "selected" : false, + "open_ymd" : "", + "name" : "1130325", + "pref_name" : "東京都", + "shared_name" : "1130325", + "lat" : 35.698202, + "y" : -356982.02, + "x" : 1394137.04 + }, + "position" : { + "x" : 1394137.04, + "y" : -356982.02 + }, + "selected" : false + }, { + "data" : { + "id" : "2727", + "station_name" : "矢川", + "close_ymd" : "", + "lon" : 139.431611, + "post" : "186-0011", + "e_status" : 0, + "SUID" : 2727, + "station_g_cd" : 1130323, + "add" : "国立市谷保石田", + "line_cd" : 11303, + "selected" : false, + "open_ymd" : "", + "name" : "1130323", + "pref_name" : "東京都", + "shared_name" : "1130323", + "lat" : 35.685078999999995, + "y" : -356850.7899999999, + "x" : 1394316.11 + }, + "position" : { + "x" : 1394316.11, + "y" : -356850.7899999999 + }, + "selected" : false + }, { + "data" : { + "id" : "2728", + "station_name" : "西国立", + "close_ymd" : "", + "lon" : 139.423887, + "post" : "190-0021", + "e_status" : 0, + "SUID" : 2728, + "station_g_cd" : 1130324, + "add" : "立川市羽衣町1丁目", + "line_cd" : 11303, + "selected" : false, + "open_ymd" : "", + "name" : "1130324", + "pref_name" : "東京都", + "shared_name" : "1130324", + "lat" : 35.69375, + "y" : -356937.5, + "x" : 1394238.87 + }, + "position" : { + "x" : 1394238.87, + "y" : -356937.5 + }, + "selected" : false + }, { + "data" : { + "id" : "2725", + "station_name" : "西府", + "close_ymd" : "", + "lon" : 139.457477, + "post" : "183-0032", + "e_status" : 0, + "SUID" : 2725, + "station_g_cd" : 1130329, + "add" : "東京都府中市本宿町一丁目40-6", + "line_cd" : 11303, + "selected" : false, + "open_ymd" : "", + "name" : "1130329", + "pref_name" : "東京都", + "shared_name" : "1130329", + "lat" : 35.670912, + "y" : -356709.12, + "x" : 1394574.77 + }, + "position" : { + "x" : 1394574.77, + "y" : -356709.12 + }, + "selected" : false + }, { + "data" : { + "id" : "2726", + "station_name" : "谷保", + "close_ymd" : "", + "lon" : 139.446724, + "post" : "186-0011", + "e_status" : 0, + "SUID" : 2726, + "station_g_cd" : 1130322, + "add" : "国立市谷保町", + "line_cd" : 11303, + "selected" : false, + "open_ymd" : "", + "name" : "1130322", + "pref_name" : "東京都", + "shared_name" : "1130322", + "lat" : 35.681377000000005, + "y" : -356813.7700000001, + "x" : 1394467.24 + }, + "position" : { + "x" : 1394467.24, + "y" : -356813.7700000001 + }, + "selected" : false + }, { + "data" : { + "id" : "2724", + "station_name" : "分倍河原", + "close_ymd" : "", + "lon" : 139.468798, + "post" : "183-0021", + "e_status" : 0, + "SUID" : 2724, + "station_g_cd" : 1130321, + "add" : "府中市片町2丁目", + "line_cd" : 11303, + "selected" : false, + "open_ymd" : "", + "name" : "1130321", + "pref_name" : "東京都", + "shared_name" : "1130321", + "lat" : 35.668493, + "y" : -356684.93, + "x" : 1394687.98 + }, + "position" : { + "x" : 1394687.98, + "y" : -356684.93 + }, + "selected" : false + }, { + "data" : { + "id" : "2723", + "station_name" : "府中本町", + "close_ymd" : "", + "lon" : 139.477142, + "post" : "183-0027", + "e_status" : 0, + "SUID" : 2723, + "station_g_cd" : 1130320, + "add" : "府中市本町1丁目", + "line_cd" : 11303, + "selected" : false, + "open_ymd" : "", + "name" : "1130320", + "pref_name" : "東京都", + "shared_name" : "1130320", + "lat" : 35.665766, + "y" : -356657.66, + "x" : 1394771.42 + }, + "position" : { + "x" : 1394771.42, + "y" : -356657.66 + }, + "selected" : false + }, { + "data" : { + "id" : "2722", + "station_name" : "南多摩", + "close_ymd" : "", + "lon" : 139.489781, + "post" : "206-0801", + "e_status" : 0, + "SUID" : 2722, + "station_g_cd" : 1130319, + "add" : "稲城市大丸", + "line_cd" : 11303, + "selected" : false, + "open_ymd" : "", + "name" : "1130319", + "pref_name" : "東京都", + "shared_name" : "1130319", + "lat" : 35.649249, + "y" : -356492.49, + "x" : 1394897.8099999998 + }, + "position" : { + "x" : 1394897.8099999998, + "y" : -356492.49 + }, + "selected" : false + }, { + "data" : { + "id" : "2721", + "station_name" : "稲城長沼", + "close_ymd" : "", + "lon" : 139.502811, + "post" : "206-0802", + "e_status" : 0, + "SUID" : 2721, + "station_g_cd" : 1130318, + "add" : "稲城市東長沼", + "line_cd" : 11303, + "selected" : false, + "open_ymd" : "", + "name" : "1130318", + "pref_name" : "東京都", + "shared_name" : "1130318", + "lat" : 35.644184, + "y" : -356441.84, + "x" : 1395028.11 + }, + "position" : { + "x" : 1395028.11, + "y" : -356441.84 + }, + "selected" : false + }, { + "data" : { + "id" : "2720", + "station_name" : "矢野口", + "close_ymd" : "", + "lon" : 139.520849, + "post" : "206-0812", + "e_status" : 0, + "SUID" : 2720, + "station_g_cd" : 1130317, + "add" : "稲城市矢野口", + "line_cd" : 11303, + "selected" : false, + "open_ymd" : "", + "name" : "1130317", + "pref_name" : "東京都", + "shared_name" : "1130317", + "lat" : 35.641304999999996, + "y" : -356413.04999999993, + "x" : 1395208.49 + }, + "position" : { + "x" : 1395208.49, + "y" : -356413.04999999993 + }, + "selected" : false + }, { + "data" : { + "id" : "2806", + "station_name" : "西大井", + "close_ymd" : "", + "lon" : 139.721729, + "post" : "140-0015", + "e_status" : 0, + "SUID" : 2806, + "station_g_cd" : 1130804, + "add" : "品川区西大井1丁目", + "line_cd" : 11308, + "selected" : false, + "open_ymd" : "", + "name" : "1130804", + "pref_name" : "東京都", + "shared_name" : "1130804", + "lat" : 35.601616, + "y" : -356016.16, + "x" : 1397217.29 + }, + "position" : { + "x" : 1397217.29, + "y" : -356016.16 + }, + "selected" : false + }, { + "data" : { + "id" : "2805", + "station_name" : "品川", + "close_ymd" : "", + "lon" : 139.738999, + "post" : "108-0074", + "e_status" : 0, + "SUID" : 2805, + "station_g_cd" : 1130103, + "add" : "東京都港区高輪三丁目26-26", + "line_cd" : 11308, + "selected" : false, + "open_ymd" : "", + "name" : "1130803", + "pref_name" : "東京都", + "shared_name" : "1130803", + "lat" : 35.62876, + "y" : -356287.6, + "x" : 1397389.99 + }, + "position" : { + "x" : 1397389.99, + "y" : -356287.6 + }, + "selected" : false + }, { + "data" : { + "id" : "2789", + "station_name" : "片倉", + "close_ymd" : "", + "lon" : 139.34118999999998, + "post" : "192-0914", + "e_status" : 0, + "SUID" : 2789, + "station_g_cd" : 1130619, + "add" : "八王子市片倉町", + "line_cd" : 11306, + "selected" : false, + "open_ymd" : "", + "name" : "1130619", + "pref_name" : "東京都", + "shared_name" : "1130619", + "lat" : 35.639703999999995, + "y" : -356397.0399999999, + "x" : 1393411.9 + }, + "position" : { + "x" : 1393411.9, + "y" : -356397.0399999999 + }, + "selected" : false + }, { + "data" : { + "id" : "2790", + "station_name" : "八王子", + "close_ymd" : "", + "lon" : 139.338998, + "post" : "192-0083", + "e_status" : 0, + "SUID" : 2790, + "station_g_cd" : 1130620, + "add" : "東京都八王子市旭町1-1", + "line_cd" : 11306, + "selected" : false, + "open_ymd" : "", + "name" : "1130620", + "pref_name" : "東京都", + "shared_name" : "1130620", + "lat" : 35.655555, + "y" : -356555.55, + "x" : 1393389.98 + }, + "position" : { + "x" : 1393389.98, + "y" : -356555.55 + }, + "selected" : false + }, { + "data" : { + "id" : "2803", + "station_name" : "東京", + "close_ymd" : "", + "lon" : 139.76610300000002, + "post" : "100-0005", + "e_status" : 0, + "SUID" : 2803, + "station_g_cd" : 1130101, + "add" : "東京都千代田区丸の内一丁目", + "line_cd" : 11308, + "selected" : false, + "open_ymd" : "", + "name" : "1130801", + "pref_name" : "東京都", + "shared_name" : "1130801", + "lat" : 35.681391, + "y" : -356813.91, + "x" : 1397661.0300000003 + }, + "position" : { + "x" : 1397661.0300000003, + "y" : -356813.91 + }, + "selected" : false + }, { + "data" : { + "id" : "2804", + "station_name" : "新橋", + "close_ymd" : "", + "lon" : 139.758587, + "post" : "105-0004", + "e_status" : 0, + "SUID" : 2804, + "station_g_cd" : 1130102, + "add" : "東京都港区新橋二丁目17", + "line_cd" : 11308, + "selected" : false, + "open_ymd" : "", + "name" : "1130802", + "pref_name" : "東京都", + "shared_name" : "1130802", + "lat" : 35.666195, + "y" : -356661.95, + "x" : 1397585.87 + }, + "position" : { + "x" : 1397585.87, + "y" : -356661.95 + }, + "selected" : false + }, { + "data" : { + "id" : "2780", + "station_name" : "成瀬", + "close_ymd" : "", + "lon" : 139.472875, + "post" : "194-0045", + "e_status" : 0, + "SUID" : 2780, + "station_g_cd" : 1130610, + "add" : "町田市南成瀬1丁目", + "line_cd" : 11306, + "selected" : false, + "open_ymd" : "", + "name" : "1130610", + "pref_name" : "東京都", + "shared_name" : "1130610", + "lat" : 35.535412, + "y" : -355354.12, + "x" : 1394728.7499999998 + }, + "position" : { + "x" : 1394728.7499999998, + "y" : -355354.12 + }, + "selected" : false + }, { + "data" : { + "id" : "2781", + "station_name" : "町田", + "close_ymd" : "", + "lon" : 139.445579, + "post" : "194-0013", + "e_status" : 0, + "SUID" : 2781, + "station_g_cd" : 1130611, + "add" : "町田市原町田1丁目", + "line_cd" : 11306, + "selected" : false, + "open_ymd" : "", + "name" : "1130611", + "pref_name" : "東京都", + "shared_name" : "1130611", + "lat" : 35.542004, + "y" : -355420.04, + "x" : 1394455.79 + }, + "position" : { + "x" : 1394455.79, + "y" : -355420.04 + }, + "selected" : false + }, { + "data" : { + "id" : "2788", + "station_name" : "八王子みなみ野", + "close_ymd" : "", + "lon" : 139.330678, + "post" : "192-0915", + "e_status" : 0, + "SUID" : 2788, + "station_g_cd" : 1130618, + "add" : "八王子市宇津貫町", + "line_cd" : 11306, + "selected" : false, + "open_ymd" : "", + "name" : "1130618", + "pref_name" : "東京都", + "shared_name" : "1130618", + "lat" : 35.630664, + "y" : -356306.64, + "x" : 1393306.78 + }, + "position" : { + "x" : 1393306.78, + "y" : -356306.64 + }, + "selected" : false + }, { + "data" : { + "id" : "2787", + "station_name" : "相原", + "close_ymd" : "", + "lon" : 139.33168999999998, + "post" : "194-0211", + "e_status" : 0, + "SUID" : 2787, + "station_g_cd" : 1130617, + "add" : "町田市相原町", + "line_cd" : 11306, + "selected" : false, + "open_ymd" : "", + "name" : "1130617", + "pref_name" : "東京都", + "shared_name" : "1130617", + "lat" : 35.60694, + "y" : -356069.4, + "x" : 1393316.9 + }, + "position" : { + "x" : 1393316.9, + "y" : -356069.4 + }, + "selected" : false + }, { + "data" : { + "id" : "2900", + "station_name" : "阿佐ケ谷", + "close_ymd" : "", + "lon" : 139.635868, + "post" : "166-0004", + "e_status" : 0, + "SUID" : 2900, + "station_g_cd" : 1131216, + "add" : "東京都杉並区阿佐谷南三丁目36-3", + "line_cd" : 11312, + "selected" : false, + "open_ymd" : "", + "name" : "1131216", + "pref_name" : "東京都", + "shared_name" : "1131216", + "lat" : 35.704817999999996, + "y" : -357048.17999999993, + "x" : 1396358.68 + }, + "position" : { + "x" : 1396358.68, + "y" : -357048.17999999993 + }, + "selected" : false + }, { + "data" : { + "id" : "2899", + "station_name" : "高円寺", + "close_ymd" : "", + "lon" : 139.649664, + "post" : "166-0003", + "e_status" : 0, + "SUID" : 2899, + "station_g_cd" : 1131215, + "add" : "杉並区高円寺南4丁目", + "line_cd" : 11312, + "selected" : false, + "open_ymd" : "", + "name" : "1131215", + "pref_name" : "東京都", + "shared_name" : "1131215", + "lat" : 35.705326, + "y" : -357053.26, + "x" : 1396496.64 + }, + "position" : { + "x" : 1396496.64, + "y" : -357053.26 + }, + "selected" : false + }, { + "data" : { + "id" : "2898", + "station_name" : "中野", + "close_ymd" : "", + "lon" : 139.66583500000002, + "post" : "164-0001", + "e_status" : 0, + "SUID" : 2898, + "station_g_cd" : 1131214, + "add" : "中野区中野5丁目", + "line_cd" : 11312, + "selected" : false, + "open_ymd" : "", + "name" : "1131214", + "pref_name" : "東京都", + "shared_name" : "1131214", + "lat" : 35.705765, + "y" : -357057.65, + "x" : 1396658.35 + }, + "position" : { + "x" : 1396658.35, + "y" : -357057.65 + }, + "selected" : false + }, { + "data" : { + "id" : "2897", + "station_name" : "新宿", + "close_ymd" : "", + "lon" : 139.70046399999998, + "post" : "160-0022", + "e_status" : 0, + "SUID" : 2897, + "station_g_cd" : 1130208, + "add" : "東京都新宿区新宿三丁目38-1", + "line_cd" : 11312, + "selected" : false, + "open_ymd" : "", + "name" : "1131211", + "pref_name" : "東京都", + "shared_name" : "1131211", + "lat" : 35.689729, + "y" : -356897.29, + "x" : 1397004.64 + }, + "position" : { + "x" : 1397004.64, + "y" : -356897.29 + }, + "selected" : false + }, { + "data" : { + "id" : "2896", + "station_name" : "四ツ谷", + "close_ymd" : "", + "lon" : 139.73064399999998, + "post" : "160-0004", + "e_status" : 0, + "SUID" : 2896, + "station_g_cd" : 1131102, + "add" : "東京都新宿区四谷一丁目", + "line_cd" : 11312, + "selected" : false, + "open_ymd" : "", + "name" : "1131207", + "pref_name" : "東京都", + "shared_name" : "1131207", + "lat" : 35.686040999999996, + "y" : -356860.41, + "x" : 1397306.44 + }, + "position" : { + "x" : 1397306.44, + "y" : -356860.41 + }, + "selected" : false + }, { + "data" : { + "id" : "2895", + "station_name" : "御茶ノ水", + "close_ymd" : "", + "lon" : 139.76495500000001, + "post" : "101-0062", + "e_status" : 0, + "SUID" : 2895, + "station_g_cd" : 1131203, + "add" : "千代田区神田駿河台2丁目", + "line_cd" : 11312, + "selected" : false, + "open_ymd" : "", + "name" : "1131203", + "pref_name" : "東京都", + "shared_name" : "1131203", + "lat" : 35.699605, + "y" : -356996.05, + "x" : 1397649.55 + }, + "position" : { + "x" : 1397649.55, + "y" : -356996.05 + }, + "selected" : false + }, { + "data" : { + "id" : "2894", + "station_name" : "神田", + "close_ymd" : "", + "lon" : 139.77064099999998, + "post" : "101-0044", + "e_status" : 0, + "SUID" : 2894, + "station_g_cd" : 1130223, + "add" : "東京都千代田区鍛冶町二丁目13-1", + "line_cd" : 11312, + "selected" : false, + "open_ymd" : "", + "name" : "1131202", + "pref_name" : "東京都", + "shared_name" : "1131202", + "lat" : 35.691173, + "y" : -356911.73, + "x" : 1397706.41 + }, + "position" : { + "x" : 1397706.41, + "y" : -356911.73 + }, + "selected" : false + }, { + "data" : { + "id" : "2893", + "station_name" : "東京", + "close_ymd" : "", + "lon" : 139.76610300000002, + "post" : "100-0005", + "e_status" : 0, + "SUID" : 2893, + "station_g_cd" : 1130101, + "add" : "東京都千代田区丸の内一丁目", + "line_cd" : 11312, + "selected" : false, + "open_ymd" : "", + "name" : "1131201", + "pref_name" : "東京都", + "shared_name" : "1131201", + "lat" : 35.681391, + "y" : -356813.91, + "x" : 1397661.0300000003 + }, + "position" : { + "x" : 1397661.0300000003, + "y" : -356813.91 + }, + "selected" : false + }, { + "data" : { + "id" : "2849", + "station_name" : "八王子", + "close_ymd" : "", + "lon" : 139.338998, + "post" : "192-0083", + "e_status" : 0, + "SUID" : 2849, + "station_g_cd" : 1130620, + "add" : "東京都八王子市旭町1-1", + "line_cd" : 11311, + "selected" : false, + "open_ymd" : "", + "name" : "1131110", + "pref_name" : "東京都", + "shared_name" : "1131110", + "lat" : 35.655555, + "y" : -356555.55, + "x" : 1393389.98 + }, + "position" : { + "x" : 1393389.98, + "y" : -356555.55 + }, + "selected" : false + }, { + "data" : { + "id" : "2850", + "station_name" : "西八王子", + "close_ymd" : "", + "lon" : 139.31264, + "post" : "193-0835", + "e_status" : 0, + "SUID" : 2850, + "station_g_cd" : 1131111, + "add" : "八王子市千人町2丁目", + "line_cd" : 11311, + "selected" : false, + "open_ymd" : "", + "name" : "1131111", + "pref_name" : "東京都", + "shared_name" : "1131111", + "lat" : 35.656621, + "y" : -356566.21, + "x" : 1393126.4 + }, + "position" : { + "x" : 1393126.4, + "y" : -356566.21 + }, + "selected" : false + }, { + "data" : { + "id" : "2851", + "station_name" : "高尾", + "close_ymd" : "", + "lon" : 139.282288, + "post" : "193-0844", + "e_status" : 0, + "SUID" : 2851, + "station_g_cd" : 1131112, + "add" : "八王子市高尾町", + "line_cd" : 11311, + "selected" : false, + "open_ymd" : "", + "name" : "1131112", + "pref_name" : "東京都", + "shared_name" : "1131112", + "lat" : 35.642026, + "y" : -356420.26, + "x" : 1392822.88 + }, + "position" : { + "x" : 1392822.88, + "y" : -356420.26 + }, + "selected" : false + }, { + "data" : { + "id" : "2845", + "station_name" : "国分寺", + "close_ymd" : "", + "lon" : 139.480841, + "post" : "185-0012", + "e_status" : 0, + "SUID" : 2845, + "station_g_cd" : 1131106, + "add" : "東京都国分寺市本町二丁目1-23", + "line_cd" : 11311, + "selected" : false, + "open_ymd" : "", + "name" : "1131106", + "pref_name" : "東京都", + "shared_name" : "1131106", + "lat" : 35.700123, + "y" : -357001.23, + "x" : 1394808.41 + }, + "position" : { + "x" : 1394808.41, + "y" : -357001.23 + }, + "selected" : false + }, { + "data" : { + "id" : "2846", + "station_name" : "立川", + "close_ymd" : "", + "lon" : 139.413704, + "post" : "190-0012", + "e_status" : 0, + "SUID" : 2846, + "station_g_cd" : 1130325, + "add" : "東京都立川市曙町二丁目1-1", + "line_cd" : 11311, + "selected" : false, + "open_ymd" : "", + "name" : "1131107", + "pref_name" : "東京都", + "shared_name" : "1131107", + "lat" : 35.698202, + "y" : -356982.02, + "x" : 1394137.04 + }, + "position" : { + "x" : 1394137.04, + "y" : -356982.02 + }, + "selected" : false + }, { + "data" : { + "id" : "2847", + "station_name" : "日野", + "close_ymd" : "", + "lon" : 139.39393, + "post" : "191-0061", + "e_status" : 0, + "SUID" : 2847, + "station_g_cd" : 1131108, + "add" : "日野市大坂上1丁目", + "line_cd" : 11311, + "selected" : false, + "open_ymd" : "", + "name" : "1131108", + "pref_name" : "東京都", + "shared_name" : "1131108", + "lat" : 35.679244, + "y" : -356792.43999999994, + "x" : 1393939.3 + }, + "position" : { + "x" : 1393939.3, + "y" : -356792.43999999994 + }, + "selected" : false + }, { + "data" : { + "id" : "2848", + "station_name" : "豊田", + "close_ymd" : "", + "lon" : 139.381495, + "post" : "191-0053", + "e_status" : 0, + "SUID" : 2848, + "station_g_cd" : 1131109, + "add" : "日野市豊田4丁目", + "line_cd" : 11311, + "selected" : false, + "open_ymd" : "", + "name" : "1131109", + "pref_name" : "東京都", + "shared_name" : "1131109", + "lat" : 35.659502, + "y" : -356595.02, + "x" : 1393814.95 + }, + "position" : { + "x" : 1393814.95, + "y" : -356595.02 + }, + "selected" : false + }, { + "data" : { + "id" : "2841", + "station_name" : "四ツ谷", + "close_ymd" : "", + "lon" : 139.73064399999998, + "post" : "160-0004", + "e_status" : 0, + "SUID" : 2841, + "station_g_cd" : 1131102, + "add" : "東京都新宿区四谷一丁目", + "line_cd" : 11311, + "selected" : false, + "open_ymd" : "", + "name" : "1131102", + "pref_name" : "東京都", + "shared_name" : "1131102", + "lat" : 35.686040999999996, + "y" : -356860.41, + "x" : 1397306.44 + }, + "position" : { + "x" : 1397306.44, + "y" : -356860.41 + }, + "selected" : false + }, { + "data" : { + "id" : "2842", + "station_name" : "新宿", + "close_ymd" : "", + "lon" : 139.70046399999998, + "post" : "160-0022", + "e_status" : 0, + "SUID" : 2842, + "station_g_cd" : 1130208, + "add" : "東京都新宿区新宿三丁目38-1", + "line_cd" : 11311, + "selected" : false, + "open_ymd" : "", + "name" : "1131103", + "pref_name" : "東京都", + "shared_name" : "1131103", + "lat" : 35.689729, + "y" : -356897.29, + "x" : 1397004.64 + }, + "position" : { + "x" : 1397004.64, + "y" : -356897.29 + }, + "selected" : false + }, { + "data" : { + "id" : "2843", + "station_name" : "吉祥寺", + "close_ymd" : "", + "lon" : 139.57976499999998, + "post" : "180-0003", + "e_status" : 0, + "SUID" : 2843, + "station_g_cd" : 1131104, + "add" : "東京都武蔵野市吉祥寺南町", + "line_cd" : 11311, + "selected" : false, + "open_ymd" : "", + "name" : "1131104", + "pref_name" : "東京都", + "shared_name" : "1131104", + "lat" : 35.703119, + "y" : -357031.19, + "x" : 1395797.65 + }, + "position" : { + "x" : 1395797.65, + "y" : -357031.19 + }, + "selected" : false + }, { + "data" : { + "id" : "2844", + "station_name" : "三鷹", + "close_ymd" : "", + "lon" : 139.560325, + "post" : "181-0013", + "e_status" : 0, + "SUID" : 2844, + "station_g_cd" : 1131105, + "add" : "東京都三鷹市下連雀三丁目46-1", + "line_cd" : 11311, + "selected" : false, + "open_ymd" : "", + "name" : "1131105", + "pref_name" : "東京都", + "shared_name" : "1131105", + "lat" : 35.702683, + "y" : -357026.83, + "x" : 1395603.25 + }, + "position" : { + "x" : 1395603.25, + "y" : -357026.83 + }, + "selected" : false + }, { + "data" : { + "id" : "2840", + "station_name" : "東京", + "close_ymd" : "", + "lon" : 139.76610300000002, + "post" : "100-0005", + "e_status" : 0, + "SUID" : 2840, + "station_g_cd" : 1130101, + "add" : "東京都千代田区丸の内一丁目", + "line_cd" : 11311, + "selected" : false, + "open_ymd" : "", + "name" : "1131101", + "pref_name" : "東京都", + "shared_name" : "1131101", + "lat" : 35.681391, + "y" : -356813.91, + "x" : 1397661.0300000003 + }, + "position" : { + "x" : 1397661.0300000003, + "y" : -356813.91 + }, + "selected" : false + }, { + "data" : { + "id" : "2941", + "station_name" : "新小岩", + "close_ymd" : "", + "lon" : 139.857777, + "post" : "124-0024", + "e_status" : 0, + "SUID" : 2941, + "station_g_cd" : 1131325, + "add" : "葛飾区新小岩1丁目", + "line_cd" : 11313, + "selected" : false, + "open_ymd" : "", + "name" : "1131325", + "pref_name" : "東京都", + "shared_name" : "1131325", + "lat" : 35.716903, + "y" : -357169.03, + "x" : 1398577.77 + }, + "position" : { + "x" : 1398577.77, + "y" : -357169.03 + }, + "selected" : false + }, { + "data" : { + "id" : "2942", + "station_name" : "小岩", + "close_ymd" : "", + "lon" : 139.881755, + "post" : "133-0056", + "e_status" : 0, + "SUID" : 2942, + "station_g_cd" : 1131326, + "add" : "江戸川区南小岩7丁目", + "line_cd" : 11313, + "selected" : false, + "open_ymd" : "", + "name" : "1131326", + "pref_name" : "東京都", + "shared_name" : "1131326", + "lat" : 35.733207, + "y" : -357332.07, + "x" : 1398817.55 + }, + "position" : { + "x" : 1398817.55, + "y" : -357332.07 + }, + "selected" : false + }, { + "data" : { + "id" : "2935", + "station_name" : "秋葉原", + "close_ymd" : "", + "lon" : 139.77328799999998, + "post" : "101-0021", + "e_status" : 0, + "SUID" : 2935, + "station_g_cd" : 1130222, + "add" : "東京都千代田区外神田一丁目17-6", + "line_cd" : 11313, + "selected" : false, + "open_ymd" : "", + "name" : "1131319", + "pref_name" : "東京都", + "shared_name" : "1131319", + "lat" : 35.698619, + "y" : -356986.19, + "x" : 1397732.88 + }, + "position" : { + "x" : 1397732.88, + "y" : -356986.19 + }, + "selected" : false + }, { + "data" : { + "id" : "2936", + "station_name" : "浅草橋", + "close_ymd" : "", + "lon" : 139.784427, + "post" : "111-0053", + "e_status" : 0, + "SUID" : 2936, + "station_g_cd" : 1131320, + "add" : "台東区浅草橋1丁目", + "line_cd" : 11313, + "selected" : false, + "open_ymd" : "", + "name" : "1131320", + "pref_name" : "東京都", + "shared_name" : "1131320", + "lat" : 35.697403, + "y" : -356974.03, + "x" : 1397844.27 + }, + "position" : { + "x" : 1397844.27, + "y" : -356974.03 + }, + "selected" : false + }, { + "data" : { + "id" : "2933", + "station_name" : "水道橋", + "close_ymd" : "", + "lon" : 139.754312, + "post" : "101-0061", + "e_status" : 0, + "SUID" : 2933, + "station_g_cd" : 1131204, + "add" : "千代田区三崎町2丁目", + "line_cd" : 11313, + "selected" : false, + "open_ymd" : "", + "name" : "1131317", + "pref_name" : "東京都", + "shared_name" : "1131317", + "lat" : 35.702039, + "y" : -357020.39, + "x" : 1397543.1199999999 + }, + "position" : { + "x" : 1397543.1199999999, + "y" : -357020.39 + }, + "selected" : false + }, { + "data" : { + "id" : "2934", + "station_name" : "御茶ノ水", + "close_ymd" : "", + "lon" : 139.76495500000001, + "post" : "101-0062", + "e_status" : 0, + "SUID" : 2934, + "station_g_cd" : 1131203, + "add" : "千代田区神田駿河台2丁目", + "line_cd" : 11313, + "selected" : false, + "open_ymd" : "", + "name" : "1131318", + "pref_name" : "東京都", + "shared_name" : "1131318", + "lat" : 35.699605, + "y" : -356996.05, + "x" : 1397649.55 + }, + "position" : { + "x" : 1397649.55, + "y" : -356996.05 + }, + "selected" : false + }, { + "data" : { + "id" : "2939", + "station_name" : "亀戸", + "close_ymd" : "", + "lon" : 139.826262, + "post" : "136-0071", + "e_status" : 0, + "SUID" : 2939, + "station_g_cd" : 1131323, + "add" : "江東区亀戸5丁目", + "line_cd" : 11313, + "selected" : false, + "open_ymd" : "", + "name" : "1131323", + "pref_name" : "東京都", + "shared_name" : "1131323", + "lat" : 35.697345, + "y" : -356973.45, + "x" : 1398262.62 + }, + "position" : { + "x" : 1398262.62, + "y" : -356973.45 + }, + "selected" : false + }, { + "data" : { + "id" : "2940", + "station_name" : "平井", + "close_ymd" : "", + "lon" : 139.842181, + "post" : "132-0035", + "e_status" : 0, + "SUID" : 2940, + "station_g_cd" : 1131324, + "add" : "江戸川区平井3丁目", + "line_cd" : 11313, + "selected" : false, + "open_ymd" : "", + "name" : "1131324", + "pref_name" : "東京都", + "shared_name" : "1131324", + "lat" : 35.70643, + "y" : -357064.3, + "x" : 1398421.81 + }, + "position" : { + "x" : 1398421.81, + "y" : -357064.3 + }, + "selected" : false + }, { + "data" : { + "id" : "2937", + "station_name" : "両国", + "close_ymd" : "", + "lon" : 139.79333400000002, + "post" : "130-0015", + "e_status" : 0, + "SUID" : 2937, + "station_g_cd" : 1131321, + "add" : "墨田区横網1丁目", + "line_cd" : 11313, + "selected" : false, + "open_ymd" : "", + "name" : "1131321", + "pref_name" : "東京都", + "shared_name" : "1131321", + "lat" : 35.69579, + "y" : -356957.9, + "x" : 1397933.34 + }, + "position" : { + "x" : 1397933.34, + "y" : -356957.9 + }, + "selected" : false + }, { + "data" : { + "id" : "2938", + "station_name" : "錦糸町", + "close_ymd" : "", + "lon" : 139.81413600000002, + "post" : "130-0022", + "e_status" : 0, + "SUID" : 2938, + "station_g_cd" : 1131322, + "add" : "墨田区江東橋3丁目", + "line_cd" : 11313, + "selected" : false, + "open_ymd" : "", + "name" : "1131322", + "pref_name" : "東京都", + "shared_name" : "1131322", + "lat" : 35.696802000000005, + "y" : -356968.0200000001, + "x" : 1398141.36 + }, + "position" : { + "x" : 1398141.36, + "y" : -356968.0200000001 + }, + "selected" : false + }, { + "data" : { + "id" : "2960", + "station_name" : "新小岩", + "close_ymd" : "", + "lon" : 139.857777, + "post" : "124-0024", + "e_status" : 0, + "SUID" : 2960, + "station_g_cd" : 1131325, + "add" : "葛飾区新小岩1丁目", + "line_cd" : 11314, + "selected" : false, + "open_ymd" : "", + "name" : "1131405", + "pref_name" : "東京都", + "shared_name" : "1131405", + "lat" : 35.716903, + "y" : -357169.03, + "x" : 1398577.77 + }, + "position" : { + "x" : 1398577.77, + "y" : -357169.03 + }, + "selected" : false + }, { + "data" : { + "id" : "2959", + "station_name" : "錦糸町", + "close_ymd" : "", + "lon" : 139.81413600000002, + "post" : "130-0022", + "e_status" : 0, + "SUID" : 2959, + "station_g_cd" : 1131322, + "add" : "墨田区江東橋3丁目", + "line_cd" : 11314, + "selected" : false, + "open_ymd" : "", + "name" : "1131404", + "pref_name" : "東京都", + "shared_name" : "1131404", + "lat" : 35.696802000000005, + "y" : -356968.0200000001, + "x" : 1398141.36 + }, + "position" : { + "x" : 1398141.36, + "y" : -356968.0200000001 + }, + "selected" : false + }, { + "data" : { + "id" : "2958", + "station_name" : "馬喰町", + "close_ymd" : "", + "lon" : 139.78238000000002, + "post" : "103-0002", + "e_status" : 0, + "SUID" : 2958, + "station_g_cd" : 1131403, + "add" : "中央区日本橋馬喰町1丁目", + "line_cd" : 11314, + "selected" : false, + "open_ymd" : "", + "name" : "1131403", + "pref_name" : "東京都", + "shared_name" : "1131403", + "lat" : 35.693365, + "y" : -356933.65, + "x" : 1397823.8000000003 + }, + "position" : { + "x" : 1397823.8000000003, + "y" : -356933.65 + }, + "selected" : false + }, { + "data" : { + "id" : "2957", + "station_name" : "新日本橋", + "close_ymd" : "", + "lon" : 139.77323, + "post" : "103-0022", + "e_status" : 0, + "SUID" : 2957, + "station_g_cd" : 1131402, + "add" : "中央区日本橋室町4丁目", + "line_cd" : 11314, + "selected" : false, + "open_ymd" : "", + "name" : "1131402", + "pref_name" : "東京都", + "shared_name" : "1131402", + "lat" : 35.688687, + "y" : -356886.87, + "x" : 1397732.3 + }, + "position" : { + "x" : 1397732.3, + "y" : -356886.87 + }, + "selected" : false + }, { + "data" : { + "id" : "2956", + "station_name" : "東京", + "close_ymd" : "", + "lon" : 139.76610300000002, + "post" : "100-0005", + "e_status" : 0, + "SUID" : 2956, + "station_g_cd" : 1130101, + "add" : "東京都千代田区丸の内一丁目", + "line_cd" : 11314, + "selected" : false, + "open_ymd" : "", + "name" : "1131401", + "pref_name" : "東京都", + "shared_name" : "1131401", + "lat" : 35.681391, + "y" : -356813.91, + "x" : 1397661.0300000003 + }, + "position" : { + "x" : 1397661.0300000003, + "y" : -356813.91 + }, + "selected" : false + }, { + "data" : { + "id" : "2909", + "station_name" : "西国分寺", + "close_ymd" : "", + "lon" : 139.465994, + "post" : "185-0013", + "e_status" : 0, + "SUID" : 2909, + "station_g_cd" : 1130503, + "add" : "国分寺市西恋ケ窪2丁目", + "line_cd" : 11312, + "selected" : false, + "open_ymd" : "", + "name" : "1131225", + "pref_name" : "東京都", + "shared_name" : "1131225", + "lat" : 35.699744, + "y" : -356997.44, + "x" : 1394659.94 + }, + "position" : { + "x" : 1394659.94, + "y" : -356997.44 + }, + "selected" : false + }, { + "data" : { + "id" : "2910", + "station_name" : "国立", + "close_ymd" : "", + "lon" : 139.44634, + "post" : "186-0001", + "e_status" : 0, + "SUID" : 2910, + "station_g_cd" : 1131226, + "add" : "国立市北1丁目", + "line_cd" : 11312, + "selected" : false, + "open_ymd" : "", + "name" : "1131226", + "pref_name" : "東京都", + "shared_name" : "1131226", + "lat" : 35.69923, + "y" : -356992.3, + "x" : 1394463.4 + }, + "position" : { + "x" : 1394463.4, + "y" : -356992.3 + }, + "selected" : false + }, { + "data" : { + "id" : "2911", + "station_name" : "立川", + "close_ymd" : "", + "lon" : 139.413704, + "post" : "190-0012", + "e_status" : 0, + "SUID" : 2911, + "station_g_cd" : 1130325, + "add" : "東京都立川市曙町二丁目1-1", + "line_cd" : 11312, + "selected" : false, + "open_ymd" : "", + "name" : "1131227", + "pref_name" : "東京都", + "shared_name" : "1131227", + "lat" : 35.698202, + "y" : -356982.02, + "x" : 1394137.04 + }, + "position" : { + "x" : 1394137.04, + "y" : -356982.02 + }, + "selected" : false + }, { + "data" : { + "id" : "2912", + "station_name" : "日野", + "close_ymd" : "", + "lon" : 139.39393, + "post" : "191-0061", + "e_status" : 0, + "SUID" : 2912, + "station_g_cd" : 1131108, + "add" : "日野市大坂上1丁目", + "line_cd" : 11312, + "selected" : false, + "open_ymd" : "", + "name" : "1131228", + "pref_name" : "東京都", + "shared_name" : "1131228", + "lat" : 35.679244, + "y" : -356792.43999999994, + "x" : 1393939.3 + }, + "position" : { + "x" : 1393939.3, + "y" : -356792.43999999994 + }, + "selected" : false + }, { + "data" : { + "id" : "2913", + "station_name" : "豊田", + "close_ymd" : "", + "lon" : 139.381495, + "post" : "191-0053", + "e_status" : 0, + "SUID" : 2913, + "station_g_cd" : 1131109, + "add" : "日野市豊田4丁目", + "line_cd" : 11312, + "selected" : false, + "open_ymd" : "", + "name" : "1131229", + "pref_name" : "東京都", + "shared_name" : "1131229", + "lat" : 35.659502, + "y" : -356595.02, + "x" : 1393814.95 + }, + "position" : { + "x" : 1393814.95, + "y" : -356595.02 + }, + "selected" : false + }, { + "data" : { + "id" : "2914", + "station_name" : "八王子", + "close_ymd" : "", + "lon" : 139.338998, + "post" : "192-0083", + "e_status" : 0, + "SUID" : 2914, + "station_g_cd" : 1130620, + "add" : "東京都八王子市旭町1-1", + "line_cd" : 11312, + "selected" : false, + "open_ymd" : "", + "name" : "1131230", + "pref_name" : "東京都", + "shared_name" : "1131230", + "lat" : 35.655555, + "y" : -356555.55, + "x" : 1393389.98 + }, + "position" : { + "x" : 1393389.98, + "y" : -356555.55 + }, + "selected" : false + }, { + "data" : { + "id" : "2915", + "station_name" : "西八王子", + "close_ymd" : "", + "lon" : 139.31264, + "post" : "193-0835", + "e_status" : 0, + "SUID" : 2915, + "station_g_cd" : 1131111, + "add" : "八王子市千人町2丁目", + "line_cd" : 11312, + "selected" : false, + "open_ymd" : "", + "name" : "1131231", + "pref_name" : "東京都", + "shared_name" : "1131231", + "lat" : 35.656621, + "y" : -356566.21, + "x" : 1393126.4 + }, + "position" : { + "x" : 1393126.4, + "y" : -356566.21 + }, + "selected" : false + }, { + "data" : { + "id" : "2916", + "station_name" : "高尾", + "close_ymd" : "", + "lon" : 139.282288, + "post" : "193-0844", + "e_status" : 0, + "SUID" : 2916, + "station_g_cd" : 1131112, + "add" : "八王子市高尾町", + "line_cd" : 11312, + "selected" : false, + "open_ymd" : "", + "name" : "1131232", + "pref_name" : "東京都", + "shared_name" : "1131232", + "lat" : 35.642026, + "y" : -356420.26, + "x" : 1392822.88 + }, + "position" : { + "x" : 1392822.88, + "y" : -356420.26 + }, + "selected" : false + }, { + "data" : { + "id" : "2901", + "station_name" : "荻窪", + "close_ymd" : "", + "lon" : 139.620109, + "post" : "167-0043", + "e_status" : 0, + "SUID" : 2901, + "station_g_cd" : 1131217, + "add" : "杉並区上荻1丁目", + "line_cd" : 11312, + "selected" : false, + "open_ymd" : "", + "name" : "1131217", + "pref_name" : "東京都", + "shared_name" : "1131217", + "lat" : 35.704522999999995, + "y" : -357045.2299999999, + "x" : 1396201.09 + }, + "position" : { + "x" : 1396201.09, + "y" : -357045.2299999999 + }, + "selected" : false + }, { + "data" : { + "id" : "2902", + "station_name" : "西荻窪", + "close_ymd" : "", + "lon" : 139.59936100000002, + "post" : "167-0053", + "e_status" : 0, + "SUID" : 2902, + "station_g_cd" : 1131218, + "add" : "杉並区西荻南3丁目", + "line_cd" : 11312, + "selected" : false, + "open_ymd" : "", + "name" : "1131218", + "pref_name" : "東京都", + "shared_name" : "1131218", + "lat" : 35.703842, + "y" : -357038.42000000004, + "x" : 1395993.61 + }, + "position" : { + "x" : 1395993.61, + "y" : -357038.42000000004 + }, + "selected" : false + }, { + "data" : { + "id" : "2903", + "station_name" : "吉祥寺", + "close_ymd" : "", + "lon" : 139.57976499999998, + "post" : "180-0003", + "e_status" : 0, + "SUID" : 2903, + "station_g_cd" : 1131104, + "add" : "東京都武蔵野市吉祥寺南町", + "line_cd" : 11312, + "selected" : false, + "open_ymd" : "", + "name" : "1131219", + "pref_name" : "東京都", + "shared_name" : "1131219", + "lat" : 35.703119, + "y" : -357031.19, + "x" : 1395797.65 + }, + "position" : { + "x" : 1395797.65, + "y" : -357031.19 + }, + "selected" : false + }, { + "data" : { + "id" : "2904", + "station_name" : "三鷹", + "close_ymd" : "", + "lon" : 139.560325, + "post" : "181-0013", + "e_status" : 0, + "SUID" : 2904, + "station_g_cd" : 1131105, + "add" : "東京都三鷹市下連雀三丁目46-1", + "line_cd" : 11312, + "selected" : false, + "open_ymd" : "", + "name" : "1131220", + "pref_name" : "東京都", + "shared_name" : "1131220", + "lat" : 35.702683, + "y" : -357026.83, + "x" : 1395603.25 + }, + "position" : { + "x" : 1395603.25, + "y" : -357026.83 + }, + "selected" : false + }, { + "data" : { + "id" : "2905", + "station_name" : "武蔵境", + "close_ymd" : "", + "lon" : 139.54340200000001, + "post" : "180-0022", + "e_status" : 0, + "SUID" : 2905, + "station_g_cd" : 1131221, + "add" : "武蔵野市境1丁目", + "line_cd" : 11312, + "selected" : false, + "open_ymd" : "", + "name" : "1131221", + "pref_name" : "東京都", + "shared_name" : "1131221", + "lat" : 35.702083, + "y" : -357020.83, + "x" : 1395434.0200000003 + }, + "position" : { + "x" : 1395434.0200000003, + "y" : -357020.83 + }, + "selected" : false + }, { + "data" : { + "id" : "2906", + "station_name" : "東小金井", + "close_ymd" : "", + "lon" : 139.52483700000002, + "post" : "184-0002", + "e_status" : 0, + "SUID" : 2906, + "station_g_cd" : 1131222, + "add" : "小金井市梶野町5丁目", + "line_cd" : 11312, + "selected" : false, + "open_ymd" : "", + "name" : "1131222", + "pref_name" : "東京都", + "shared_name" : "1131222", + "lat" : 35.701643, + "y" : -357016.43, + "x" : 1395248.37 + }, + "position" : { + "x" : 1395248.37, + "y" : -357016.43 + }, + "selected" : false + }, { + "data" : { + "id" : "2907", + "station_name" : "武蔵小金井", + "close_ymd" : "", + "lon" : 139.506483, + "post" : "184-0004", + "e_status" : 0, + "SUID" : 2907, + "station_g_cd" : 1131223, + "add" : "小金井市本町6丁目", + "line_cd" : 11312, + "selected" : false, + "open_ymd" : "", + "name" : "1131223", + "pref_name" : "東京都", + "shared_name" : "1131223", + "lat" : 35.701337, + "y" : -357013.37, + "x" : 1395064.83 + }, + "position" : { + "x" : 1395064.83, + "y" : -357013.37 + }, + "selected" : false + }, { + "data" : { + "id" : "2908", + "station_name" : "国分寺", + "close_ymd" : "", + "lon" : 139.480841, + "post" : "185-0012", + "e_status" : 0, + "SUID" : 2908, + "station_g_cd" : 1131106, + "add" : "東京都国分寺市本町二丁目1-23", + "line_cd" : 11312, + "selected" : false, + "open_ymd" : "", + "name" : "1131224", + "pref_name" : "東京都", + "shared_name" : "1131224", + "lat" : 35.700123, + "y" : -357001.23, + "x" : 1394808.41 + }, + "position" : { + "x" : 1394808.41, + "y" : -357001.23 + }, + "selected" : false + }, { + "data" : { + "id" : "2926", + "station_name" : "新宿", + "close_ymd" : "", + "lon" : 139.70046399999998, + "post" : "160-0022", + "e_status" : 0, + "SUID" : 2926, + "station_g_cd" : 1130208, + "add" : "東京都新宿区新宿三丁目38-1", + "line_cd" : 11313, + "selected" : false, + "open_ymd" : "", + "name" : "1131310", + "pref_name" : "東京都", + "shared_name" : "1131310", + "lat" : 35.689729, + "y" : -356897.29, + "x" : 1397004.64 + }, + "position" : { + "x" : 1397004.64, + "y" : -356897.29 + }, + "selected" : false + }, { + "data" : { + "id" : "2925", + "station_name" : "大久保", + "close_ymd" : "", + "lon" : 139.69732, + "post" : "169-0073", + "e_status" : 0, + "SUID" : 2925, + "station_g_cd" : 1131212, + "add" : "新宿区百人町1丁目", + "line_cd" : 11313, + "selected" : false, + "open_ymd" : "", + "name" : "1131309", + "pref_name" : "東京都", + "shared_name" : "1131309", + "lat" : 35.700784000000006, + "y" : -357007.8400000001, + "x" : 1396973.2 + }, + "position" : { + "x" : 1396973.2, + "y" : -357007.8400000001 + }, + "selected" : false + }, { + "data" : { + "id" : "2928", + "station_name" : "千駄ケ谷", + "close_ymd" : "", + "lon" : 139.711644, + "post" : "151-0051", + "e_status" : 0, + "SUID" : 2928, + "station_g_cd" : 1131209, + "add" : "東京都渋谷区千駄ヶ谷一丁目35-10", + "line_cd" : 11313, + "selected" : false, + "open_ymd" : "", + "name" : "1131312", + "pref_name" : "東京都", + "shared_name" : "1131312", + "lat" : 35.681231, + "y" : -356812.30999999994, + "x" : 1397116.4400000002 + }, + "position" : { + "x" : 1397116.4400000002, + "y" : -356812.30999999994 + }, + "selected" : false + }, { + "data" : { + "id" : "2927", + "station_name" : "代々木", + "close_ymd" : "", + "lon" : 139.702042, + "post" : "151-0053", + "e_status" : 0, + "SUID" : 2927, + "station_g_cd" : 1130207, + "add" : "東京都渋谷区代々木一丁目34-1", + "line_cd" : 11313, + "selected" : false, + "open_ymd" : "", + "name" : "1131311", + "pref_name" : "東京都", + "shared_name" : "1131311", + "lat" : 35.683061, + "y" : -356830.61000000004, + "x" : 1397020.4200000002 + }, + "position" : { + "x" : 1397020.4200000002, + "y" : -356830.61000000004 + }, + "selected" : false + }, { + "data" : { + "id" : "2930", + "station_name" : "四ツ谷", + "close_ymd" : "", + "lon" : 139.73064399999998, + "post" : "160-0004", + "e_status" : 0, + "SUID" : 2930, + "station_g_cd" : 1131102, + "add" : "東京都新宿区四谷一丁目", + "line_cd" : 11313, + "selected" : false, + "open_ymd" : "", + "name" : "1131314", + "pref_name" : "東京都", + "shared_name" : "1131314", + "lat" : 35.686040999999996, + "y" : -356860.41, + "x" : 1397306.44 + }, + "position" : { + "x" : 1397306.44, + "y" : -356860.41 + }, + "selected" : false + }, { + "data" : { + "id" : "2929", + "station_name" : "信濃町", + "close_ymd" : "", + "lon" : 139.720729, + "post" : "160-0016", + "e_status" : 0, + "SUID" : 2929, + "station_g_cd" : 1131208, + "add" : "新宿区信濃町", + "line_cd" : 11313, + "selected" : false, + "open_ymd" : "", + "name" : "1131313", + "pref_name" : "東京都", + "shared_name" : "1131313", + "lat" : 35.680031, + "y" : -356800.31, + "x" : 1397207.29 + }, + "position" : { + "x" : 1397207.29, + "y" : -356800.31 + }, + "selected" : false + }, { + "data" : { + "id" : "2932", + "station_name" : "飯田橋", + "close_ymd" : "", + "lon" : 139.74514299999998, + "post" : "102-0072", + "e_status" : 0, + "SUID" : 2932, + "station_g_cd" : 1131205, + "add" : "東京都千代田区飯田橋四丁目10-2", + "line_cd" : 11313, + "selected" : false, + "open_ymd" : "", + "name" : "1131316", + "pref_name" : "東京都", + "shared_name" : "1131316", + "lat" : 35.701834999999996, + "y" : -357018.35, + "x" : 1397451.43 + }, + "position" : { + "x" : 1397451.43, + "y" : -357018.35 + }, + "selected" : false + }, { + "data" : { + "id" : "2931", + "station_name" : "市ケ谷", + "close_ymd" : "", + "lon" : 139.735241, + "post" : "162-0843", + "e_status" : 0, + "SUID" : 2931, + "station_g_cd" : 1131206, + "add" : "東京都新宿区市谷田町一丁目1", + "line_cd" : 11313, + "selected" : false, + "open_ymd" : "", + "name" : "1131315", + "pref_name" : "東京都", + "shared_name" : "1131315", + "lat" : 35.691105, + "y" : -356911.05, + "x" : 1397352.41 + }, + "position" : { + "x" : 1397352.41, + "y" : -356911.05 + }, + "selected" : false + }, { + "data" : { + "id" : "2918", + "station_name" : "吉祥寺", + "close_ymd" : "", + "lon" : 139.57976499999998, + "post" : "180-0003", + "e_status" : 0, + "SUID" : 2918, + "station_g_cd" : 1131104, + "add" : "東京都武蔵野市吉祥寺南町", + "line_cd" : 11313, + "selected" : false, + "open_ymd" : "", + "name" : "1131302", + "pref_name" : "東京都", + "shared_name" : "1131302", + "lat" : 35.703119, + "y" : -357031.19, + "x" : 1395797.65 + }, + "position" : { + "x" : 1395797.65, + "y" : -357031.19 + }, + "selected" : false + }, { + "data" : { + "id" : "2917", + "station_name" : "三鷹", + "close_ymd" : "", + "lon" : 139.560325, + "post" : "181-0013", + "e_status" : 0, + "SUID" : 2917, + "station_g_cd" : 1131105, + "add" : "東京都三鷹市下連雀三丁目46-1", + "line_cd" : 11313, + "selected" : false, + "open_ymd" : "", + "name" : "1131301", + "pref_name" : "東京都", + "shared_name" : "1131301", + "lat" : 35.702683, + "y" : -357026.83, + "x" : 1395603.25 + }, + "position" : { + "x" : 1395603.25, + "y" : -357026.83 + }, + "selected" : false + }, { + "data" : { + "id" : "2920", + "station_name" : "荻窪", + "close_ymd" : "", + "lon" : 139.620109, + "post" : "167-0043", + "e_status" : 0, + "SUID" : 2920, + "station_g_cd" : 1131217, + "add" : "杉並区上荻1丁目", + "line_cd" : 11313, + "selected" : false, + "open_ymd" : "", + "name" : "1131304", + "pref_name" : "東京都", + "shared_name" : "1131304", + "lat" : 35.704522999999995, + "y" : -357045.2299999999, + "x" : 1396201.09 + }, + "position" : { + "x" : 1396201.09, + "y" : -357045.2299999999 + }, + "selected" : false + }, { + "data" : { + "id" : "2919", + "station_name" : "西荻窪", + "close_ymd" : "", + "lon" : 139.59936100000002, + "post" : "167-0053", + "e_status" : 0, + "SUID" : 2919, + "station_g_cd" : 1131218, + "add" : "杉並区西荻南3丁目", + "line_cd" : 11313, + "selected" : false, + "open_ymd" : "", + "name" : "1131303", + "pref_name" : "東京都", + "shared_name" : "1131303", + "lat" : 35.703842, + "y" : -357038.42000000004, + "x" : 1395993.61 + }, + "position" : { + "x" : 1395993.61, + "y" : -357038.42000000004 + }, + "selected" : false + }, { + "data" : { + "id" : "2922", + "station_name" : "高円寺", + "close_ymd" : "", + "lon" : 139.649664, + "post" : "166-0003", + "e_status" : 0, + "SUID" : 2922, + "station_g_cd" : 1131215, + "add" : "杉並区高円寺南4丁目", + "line_cd" : 11313, + "selected" : false, + "open_ymd" : "", + "name" : "1131306", + "pref_name" : "東京都", + "shared_name" : "1131306", + "lat" : 35.705326, + "y" : -357053.26, + "x" : 1396496.64 + }, + "position" : { + "x" : 1396496.64, + "y" : -357053.26 + }, + "selected" : false + }, { + "data" : { + "id" : "2921", + "station_name" : "阿佐ケ谷", + "close_ymd" : "", + "lon" : 139.635868, + "post" : "166-0004", + "e_status" : 0, + "SUID" : 2921, + "station_g_cd" : 1131216, + "add" : "東京都杉並区阿佐谷南三丁目36-2", + "line_cd" : 11313, + "selected" : false, + "open_ymd" : "", + "name" : "1131305", + "pref_name" : "東京都", + "shared_name" : "1131305", + "lat" : 35.704817999999996, + "y" : -357048.17999999993, + "x" : 1396358.68 + }, + "position" : { + "x" : 1396358.68, + "y" : -357048.17999999993 + }, + "selected" : false + }, { + "data" : { + "id" : "2924", + "station_name" : "東中野", + "close_ymd" : "", + "lon" : 139.684436, + "post" : "164-0003", + "e_status" : 0, + "SUID" : 2924, + "station_g_cd" : 1131213, + "add" : "中野区東中野4丁目", + "line_cd" : 11313, + "selected" : false, + "open_ymd" : "", + "name" : "1131308", + "pref_name" : "東京都", + "shared_name" : "1131308", + "lat" : 35.706528999999996, + "y" : -357065.29, + "x" : 1396844.36 + }, + "position" : { + "x" : 1396844.36, + "y" : -357065.29 + }, + "selected" : false + }, { + "data" : { + "id" : "2923", + "station_name" : "中野", + "close_ymd" : "", + "lon" : 139.66583500000002, + "post" : "164-0001", + "e_status" : 0, + "SUID" : 2923, + "station_g_cd" : 1131214, + "add" : "中野区中野5丁目", + "line_cd" : 11313, + "selected" : false, + "open_ymd" : "", + "name" : "1131307", + "pref_name" : "東京都", + "shared_name" : "1131307", + "lat" : 35.705765, + "y" : -357057.65, + "x" : 1396658.35 + }, + "position" : { + "x" : 1396658.35, + "y" : -357057.65 + }, + "selected" : false + }, { + "data" : { + "id" : "3004", + "station_name" : "軍畑", + "close_ymd" : "", + "lon" : 139.207431, + "post" : "198-0172", + "e_status" : 0, + "SUID" : 3004, + "station_g_cd" : 1131518, + "add" : "青梅市沢井1丁目", + "line_cd" : 11315, + "selected" : false, + "open_ymd" : "", + "name" : "1131518", + "pref_name" : "東京都", + "shared_name" : "1131518", + "lat" : 35.807382000000004, + "y" : -358073.82000000007, + "x" : 1392074.31 + }, + "position" : { + "x" : 1392074.31, + "y" : -358073.82000000007 + }, + "selected" : false + }, { + "data" : { + "id" : "3003", + "station_name" : "二俣尾", + "close_ymd" : "", + "lon" : 139.216161, + "post" : "198-0171", + "e_status" : 0, + "SUID" : 3003, + "station_g_cd" : 1131517, + "add" : "青梅市二俣尾4丁目", + "line_cd" : 11315, + "selected" : false, + "open_ymd" : "", + "name" : "1131517", + "pref_name" : "東京都", + "shared_name" : "1131517", + "lat" : 35.803946, + "y" : -358039.46, + "x" : 1392161.61 + }, + "position" : { + "x" : 1392161.61, + "y" : -358039.46 + }, + "selected" : false + }, { + "data" : { + "id" : "3002", + "station_name" : "石神前", + "close_ymd" : "", + "lon" : 139.225096, + "post" : "198-0171", + "e_status" : 0, + "SUID" : 3002, + "station_g_cd" : 1131516, + "add" : "青梅市二俣尾1丁目", + "line_cd" : 11315, + "selected" : false, + "open_ymd" : "", + "name" : "1131516", + "pref_name" : "東京都", + "shared_name" : "1131516", + "lat" : 35.79683, + "y" : -357968.3, + "x" : 1392250.96 + }, + "position" : { + "x" : 1392250.96, + "y" : -357968.3 + }, + "selected" : false + }, { + "data" : { + "id" : "3001", + "station_name" : "日向和田", + "close_ymd" : "", + "lon" : 139.229515, + "post" : "198-0046", + "e_status" : 0, + "SUID" : 3001, + "station_g_cd" : 1131515, + "add" : "青梅市日向和田3丁目", + "line_cd" : 11315, + "selected" : false, + "open_ymd" : "", + "name" : "1131515", + "pref_name" : "東京都", + "shared_name" : "1131515", + "lat" : 35.788665, + "y" : -357886.65, + "x" : 1392295.15 + }, + "position" : { + "x" : 1392295.15, + "y" : -357886.65 + }, + "selected" : false + }, { + "data" : { + "id" : "3000", + "station_name" : "宮ノ平", + "close_ymd" : "", + "lon" : 139.23728899999998, + "post" : "198-0046", + "e_status" : 0, + "SUID" : 3000, + "station_g_cd" : 1131514, + "add" : "青梅市日向和田2丁目", + "line_cd" : 11315, + "selected" : false, + "open_ymd" : "", + "name" : "1131514", + "pref_name" : "東京都", + "shared_name" : "1131514", + "lat" : 35.787545, + "y" : -357875.45, + "x" : 1392372.8899999997 + }, + "position" : { + "x" : 1392372.8899999997, + "y" : -357875.45 + }, + "selected" : false + }, { + "data" : { + "id" : "2999", + "station_name" : "青梅", + "close_ymd" : "", + "lon" : 139.258096, + "post" : "198-0000", + "e_status" : 0, + "SUID" : 2999, + "station_g_cd" : 1131513, + "add" : "青梅市青梅", + "line_cd" : 11315, + "selected" : false, + "open_ymd" : "", + "name" : "1131513", + "pref_name" : "東京都", + "shared_name" : "1131513", + "lat" : 35.790512, + "y" : -357905.12, + "x" : 1392580.96 + }, + "position" : { + "x" : 1392580.96, + "y" : -357905.12 + }, + "selected" : false + }, { + "data" : { + "id" : "2998", + "station_name" : "東青梅", + "close_ymd" : "", + "lon" : 139.272841, + "post" : "198-0042", + "e_status" : 0, + "SUID" : 2998, + "station_g_cd" : 1131512, + "add" : "青梅市東青梅1丁目", + "line_cd" : 11315, + "selected" : false, + "open_ymd" : "", + "name" : "1131512", + "pref_name" : "東京都", + "shared_name" : "1131512", + "lat" : 35.789768, + "y" : -357897.68000000005, + "x" : 1392728.41 + }, + "position" : { + "x" : 1392728.41, + "y" : -357897.68000000005 + }, + "selected" : false + }, { + "data" : { + "id" : "2997", + "station_name" : "河辺", + "close_ymd" : "", + "lon" : 139.284032, + "post" : "198-0036", + "e_status" : 0, + "SUID" : 2997, + "station_g_cd" : 1131511, + "add" : "青梅市河辺町5丁目", + "line_cd" : 11315, + "selected" : false, + "open_ymd" : "", + "name" : "1131511", + "pref_name" : "東京都", + "shared_name" : "1131511", + "lat" : 35.784729999999996, + "y" : -357847.3, + "x" : 1392840.32 + }, + "position" : { + "x" : 1392840.32, + "y" : -357847.3 + }, + "selected" : false + }, { + "data" : { + "id" : "3012", + "station_name" : "拝島", + "close_ymd" : "", + "lon" : 139.343468, + "post" : "196-0003", + "e_status" : 0, + "SUID" : 3012, + "station_g_cd" : 1131506, + "add" : "昭島市松原町4丁目", + "line_cd" : 11316, + "selected" : false, + "open_ymd" : "", + "name" : "1131601", + "pref_name" : "東京都", + "shared_name" : "1131601", + "lat" : 35.721278000000005, + "y" : -357212.78, + "x" : 1393434.68 + }, + "position" : { + "x" : 1393434.68, + "y" : -357212.78 + }, + "selected" : false + }, { + "data" : { + "id" : "3011", + "station_name" : "奥多摩", + "close_ymd" : "", + "lon" : 139.09696100000002, + "post" : "198-0212", + "e_status" : 0, + "SUID" : 3011, + "station_g_cd" : 1131525, + "add" : "西多摩郡奥多摩町氷川", + "line_cd" : 11315, + "selected" : false, + "open_ymd" : "", + "name" : "1131525", + "pref_name" : "東京都", + "shared_name" : "1131525", + "lat" : 35.809357, + "y" : -358093.57, + "x" : 1390969.61 + }, + "position" : { + "x" : 1390969.61, + "y" : -358093.57 + }, + "selected" : false + }, { + "data" : { + "id" : "3010", + "station_name" : "白丸", + "close_ymd" : "", + "lon" : 139.11486100000002, + "post" : "198-0107", + "e_status" : 0, + "SUID" : 3010, + "station_g_cd" : 1131524, + "add" : "西多摩郡奥多摩町白丸", + "line_cd" : 11315, + "selected" : false, + "open_ymd" : "", + "name" : "1131524", + "pref_name" : "東京都", + "shared_name" : "1131524", + "lat" : 35.811735, + "y" : -358117.35, + "x" : 1391148.61 + }, + "position" : { + "x" : 1391148.61, + "y" : -358117.35 + }, + "selected" : false + }, { + "data" : { + "id" : "3009", + "station_name" : "鳩ノ巣", + "close_ymd" : "", + "lon" : 139.12893200000002, + "post" : "198-0106", + "e_status" : 0, + "SUID" : 3009, + "station_g_cd" : 1131523, + "add" : "西多摩郡奥多摩町棚沢", + "line_cd" : 11315, + "selected" : false, + "open_ymd" : "", + "name" : "1131523", + "pref_name" : "東京都", + "shared_name" : "1131523", + "lat" : 35.815127000000004, + "y" : -358151.27, + "x" : 1391289.3200000003 + }, + "position" : { + "x" : 1391289.3200000003, + "y" : -358151.27 + }, + "selected" : false + }, { + "data" : { + "id" : "3008", + "station_name" : "古里", + "close_ymd" : "", + "lon" : 139.152102, + "post" : "198-0105", + "e_status" : 0, + "SUID" : 3008, + "station_g_cd" : 1131522, + "add" : "西多摩郡奥多摩町小丹波", + "line_cd" : 11315, + "selected" : false, + "open_ymd" : "", + "name" : "1131522", + "pref_name" : "東京都", + "shared_name" : "1131522", + "lat" : 35.816247, + "y" : -358162.47, + "x" : 1391521.02 + }, + "position" : { + "x" : 1391521.02, + "y" : -358162.47 + }, + "selected" : false + }, { + "data" : { + "id" : "3007", + "station_name" : "川井", + "close_ymd" : "", + "lon" : 139.16429, + "post" : "198-0102", + "e_status" : 0, + "SUID" : 3007, + "station_g_cd" : 1131521, + "add" : "西多摩郡奥多摩町川井", + "line_cd" : 11315, + "selected" : false, + "open_ymd" : "", + "name" : "1131521", + "pref_name" : "東京都", + "shared_name" : "1131521", + "lat" : 35.813697, + "y" : -358136.97, + "x" : 1391642.9 + }, + "position" : { + "x" : 1391642.9, + "y" : -358136.97 + }, + "selected" : false + }, { + "data" : { + "id" : "3006", + "station_name" : "御嶽", + "close_ymd" : "", + "lon" : 139.18258899999998, + "post" : "198-0173", + "e_status" : 0, + "SUID" : 3006, + "station_g_cd" : 1131520, + "add" : "青梅市御岳本町", + "line_cd" : 11315, + "selected" : false, + "open_ymd" : "", + "name" : "1131520", + "pref_name" : "東京都", + "shared_name" : "1131520", + "lat" : 35.801468, + "y" : -358014.68, + "x" : 1391825.89 + }, + "position" : { + "x" : 1391825.89, + "y" : -358014.68 + }, + "selected" : false + }, { + "data" : { + "id" : "3005", + "station_name" : "沢井", + "close_ymd" : "", + "lon" : 139.193324, + "post" : "198-0172", + "e_status" : 0, + "SUID" : 3005, + "station_g_cd" : 1131519, + "add" : "青梅市沢井2丁目", + "line_cd" : 11315, + "selected" : false, + "open_ymd" : "", + "name" : "1131519", + "pref_name" : "東京都", + "shared_name" : "1131519", + "lat" : 35.80594, + "y" : -358059.4, + "x" : 1391933.24 + }, + "position" : { + "x" : 1391933.24, + "y" : -358059.4 + }, + "selected" : false + }, { + "data" : { + "id" : "3019", + "station_name" : "八王子", + "close_ymd" : "", + "lon" : 139.338998, + "post" : "192-0083", + "e_status" : 0, + "SUID" : 3019, + "station_g_cd" : 1130620, + "add" : "東京都八王子市旭町1-1", + "line_cd" : 11317, + "selected" : false, + "open_ymd" : "", + "name" : "1131701", + "pref_name" : "東京都", + "shared_name" : "1131701", + "lat" : 35.655555, + "y" : -356555.55, + "x" : 1393389.98 + }, + "position" : { + "x" : 1393389.98, + "y" : -356555.55 + }, + "selected" : false + }, { + "data" : { + "id" : "3020", + "station_name" : "北八王子", + "close_ymd" : "", + "lon" : 139.363348, + "post" : "192-0032", + "e_status" : 0, + "SUID" : 3020, + "station_g_cd" : 1131702, + "add" : "八王子市石川町", + "line_cd" : 11317, + "selected" : false, + "open_ymd" : "", + "name" : "1131702", + "pref_name" : "東京都", + "shared_name" : "1131702", + "lat" : 35.669232, + "y" : -356692.32, + "x" : 1393633.48 + }, + "position" : { + "x" : 1393633.48, + "y" : -356692.32 + }, + "selected" : false + }, { + "data" : { + "id" : "3017", + "station_name" : "武蔵増戸", + "close_ymd" : "", + "lon" : 139.256355, + "post" : "190-0142", + "e_status" : 0, + "SUID" : 3017, + "station_g_cd" : 1131606, + "add" : "あきる野市伊奈", + "line_cd" : 11316, + "selected" : false, + "open_ymd" : "", + "name" : "1131606", + "pref_name" : "東京都", + "shared_name" : "1131606", + "lat" : 35.730961, + "y" : -357309.61, + "x" : 1392563.55 + }, + "position" : { + "x" : 1392563.55, + "y" : -357309.61 + }, + "selected" : false + }, { + "data" : { + "id" : "3018", + "station_name" : "武蔵五日市", + "close_ymd" : "", + "lon" : 139.228039, + "post" : "190-0163", + "e_status" : 0, + "SUID" : 3018, + "station_g_cd" : 1131607, + "add" : "あきる野市舘谷", + "line_cd" : 11316, + "selected" : false, + "open_ymd" : "", + "name" : "1131607", + "pref_name" : "東京都", + "shared_name" : "1131607", + "lat" : 35.732248, + "y" : -357322.48, + "x" : 1392280.39 + }, + "position" : { + "x" : 1392280.39, + "y" : -357322.48 + }, + "selected" : false + }, { + "data" : { + "id" : "3015", + "station_name" : "秋川", + "close_ymd" : "", + "lon" : 139.286715, + "post" : "197-0827", + "e_status" : 0, + "SUID" : 3015, + "station_g_cd" : 1131604, + "add" : "あきる野市油平", + "line_cd" : 11316, + "selected" : false, + "open_ymd" : "", + "name" : "1131604", + "pref_name" : "東京都", + "shared_name" : "1131604", + "lat" : 35.727998, + "y" : -357279.98, + "x" : 1392867.15 + }, + "position" : { + "x" : 1392867.15, + "y" : -357279.98 + }, + "selected" : false + }, { + "data" : { + "id" : "3016", + "station_name" : "武蔵引田", + "close_ymd" : "", + "lon" : 139.26990700000002, + "post" : "190-0100", + "e_status" : 0, + "SUID" : 3016, + "station_g_cd" : 1131605, + "add" : "あきる野市下引田", + "line_cd" : 11316, + "selected" : false, + "open_ymd" : "", + "name" : "1131605", + "pref_name" : "東京都", + "shared_name" : "1131605", + "lat" : 35.729711, + "y" : -357297.11000000004, + "x" : 1392699.07 + }, + "position" : { + "x" : 1392699.07, + "y" : -357297.11000000004 + }, + "selected" : false + }, { + "data" : { + "id" : "3013", + "station_name" : "熊川", + "close_ymd" : "", + "lon" : 139.33584, + "post" : "197-0003", + "e_status" : 0, + "SUID" : 3013, + "station_g_cd" : 1131602, + "add" : "福生市熊川北", + "line_cd" : 11316, + "selected" : false, + "open_ymd" : "", + "name" : "1131602", + "pref_name" : "東京都", + "shared_name" : "1131602", + "lat" : 35.728321, + "y" : -357283.21, + "x" : 1393358.4 + }, + "position" : { + "x" : 1393358.4, + "y" : -357283.21 + }, + "selected" : false + }, { + "data" : { + "id" : "3014", + "station_name" : "東秋留", + "close_ymd" : "", + "lon" : 139.31166499999998, + "post" : "197-0823", + "e_status" : 0, + "SUID" : 3014, + "station_g_cd" : 1131603, + "add" : "あきる野市野辺", + "line_cd" : 11316, + "selected" : false, + "open_ymd" : "", + "name" : "1131603", + "pref_name" : "東京都", + "shared_name" : "1131603", + "lat" : 35.725904, + "y" : -357259.04, + "x" : 1393116.6499999997 + }, + "position" : { + "x" : 1393116.6499999997, + "y" : -357259.04 + }, + "selected" : false + }, { + "data" : { + "id" : "3023", + "station_name" : "東福生", + "close_ymd" : "", + "lon" : 139.33594, + "post" : "197-0013", + "e_status" : 0, + "SUID" : 3023, + "station_g_cd" : 1131705, + "add" : "福生市武蔵野台1丁目", + "line_cd" : 11317, + "selected" : false, + "open_ymd" : "", + "name" : "1131705", + "pref_name" : "東京都", + "shared_name" : "1131705", + "lat" : 35.745810999999996, + "y" : -357458.11, + "x" : 1393359.4 + }, + "position" : { + "x" : 1393359.4, + "y" : -357458.11 + }, + "selected" : false + }, { + "data" : { + "id" : "3024", + "station_name" : "箱根ケ崎", + "close_ymd" : "", + "lon" : 139.34680500000002, + "post" : "190-1221", + "e_status" : 0, + "SUID" : 3024, + "station_g_cd" : 1131706, + "add" : "東京都西多摩郡瑞穂町大字箱根ケ崎397", + "line_cd" : 11317, + "selected" : false, + "open_ymd" : "", + "name" : "1131706", + "pref_name" : "東京都", + "shared_name" : "1131706", + "lat" : 35.771158, + "y" : -357711.58, + "x" : 1393468.0500000003 + }, + "position" : { + "x" : 1393468.0500000003, + "y" : -357711.58 + }, + "selected" : false + }, { + "data" : { + "id" : "3021", + "station_name" : "小宮", + "close_ymd" : "", + "lon" : 139.368481, + "post" : "192-0031", + "e_status" : 0, + "SUID" : 3021, + "station_g_cd" : 1131703, + "add" : "八王子市小宮町", + "line_cd" : 11317, + "selected" : false, + "open_ymd" : "", + "name" : "1131703", + "pref_name" : "東京都", + "shared_name" : "1131703", + "lat" : 35.685798999999996, + "y" : -356857.98999999993, + "x" : 1393684.81 + }, + "position" : { + "x" : 1393684.81, + "y" : -356857.98999999993 + }, + "selected" : false + }, { + "data" : { + "id" : "3022", + "station_name" : "拝島", + "close_ymd" : "", + "lon" : 139.343468, + "post" : "196-0003", + "e_status" : 0, + "SUID" : 3022, + "station_g_cd" : 1131506, + "add" : "昭島市松原町4丁目", + "line_cd" : 11317, + "selected" : false, + "open_ymd" : "", + "name" : "1131704", + "pref_name" : "東京都", + "shared_name" : "1131704", + "lat" : 35.721278000000005, + "y" : -357212.78, + "x" : 1393434.68 + }, + "position" : { + "x" : 1393434.68, + "y" : -357212.78 + }, + "selected" : false + }, { + "data" : { + "id" : "2987", + "station_name" : "立川", + "close_ymd" : "", + "lon" : 139.413704, + "post" : "190-0012", + "e_status" : 0, + "SUID" : 2987, + "station_g_cd" : 1130325, + "add" : "東京都立川市曙町二丁目1-1", + "line_cd" : 11315, + "selected" : false, + "open_ymd" : "", + "name" : "1131501", + "pref_name" : "東京都", + "shared_name" : "1131501", + "lat" : 35.698202, + "y" : -356982.02, + "x" : 1394137.04 + }, + "position" : { + "x" : 1394137.04, + "y" : -356982.02 + }, + "selected" : false + }, { + "data" : { + "id" : "2988", + "station_name" : "西立川", + "close_ymd" : "", + "lon" : 139.39355600000002, + "post" : "190-0013", + "e_status" : 0, + "SUID" : 2988, + "station_g_cd" : 1131502, + "add" : "立川市富士見町1丁目", + "line_cd" : 11315, + "selected" : false, + "open_ymd" : "", + "name" : "1131502", + "pref_name" : "東京都", + "shared_name" : "1131502", + "lat" : 35.703526000000004, + "y" : -357035.26, + "x" : 1393935.5600000003 + }, + "position" : { + "x" : 1393935.5600000003, + "y" : -357035.26 + }, + "selected" : false + }, { + "data" : { + "id" : "2993", + "station_name" : "牛浜", + "close_ymd" : "", + "lon" : 139.333677, + "post" : "197-0024", + "e_status" : 0, + "SUID" : 2993, + "station_g_cd" : 1131507, + "add" : "福生市牛浜", + "line_cd" : 11315, + "selected" : false, + "open_ymd" : "", + "name" : "1131507", + "pref_name" : "東京都", + "shared_name" : "1131507", + "lat" : 35.734547, + "y" : -357345.47, + "x" : 1393336.77 + }, + "position" : { + "x" : 1393336.77, + "y" : -357345.47 + }, + "selected" : false + }, { + "data" : { + "id" : "2994", + "station_name" : "福生", + "close_ymd" : "", + "lon" : 139.32776299999998, + "post" : "197-0022", + "e_status" : 0, + "SUID" : 2994, + "station_g_cd" : 1131508, + "add" : "福生市本町", + "line_cd" : 11315, + "selected" : false, + "open_ymd" : "", + "name" : "1131508", + "pref_name" : "東京都", + "shared_name" : "1131508", + "lat" : 35.742456, + "y" : -357424.56, + "x" : 1393277.6299999997 + }, + "position" : { + "x" : 1393277.6299999997, + "y" : -357424.56 + }, + "selected" : false + }, { + "data" : { + "id" : "2995", + "station_name" : "羽村", + "close_ymd" : "", + "lon" : 139.31618799999998, + "post" : "205-0014", + "e_status" : 0, + "SUID" : 2995, + "station_g_cd" : 1131509, + "add" : "羽村市羽東1丁目", + "line_cd" : 11315, + "selected" : false, + "open_ymd" : "", + "name" : "1131509", + "pref_name" : "東京都", + "shared_name" : "1131509", + "lat" : 35.758072999999996, + "y" : -357580.73, + "x" : 1393161.88 + }, + "position" : { + "x" : 1393161.88, + "y" : -357580.73 + }, + "selected" : false + }, { + "data" : { + "id" : "2996", + "station_name" : "小作", + "close_ymd" : "", + "lon" : 139.302233, + "post" : "205-0001", + "e_status" : 0, + "SUID" : 2996, + "station_g_cd" : 1131510, + "add" : "羽村市小作台", + "line_cd" : 11315, + "selected" : false, + "open_ymd" : "", + "name" : "1131510", + "pref_name" : "東京都", + "shared_name" : "1131510", + "lat" : 35.776047999999996, + "y" : -357760.48, + "x" : 1393022.33 + }, + "position" : { + "x" : 1393022.33, + "y" : -357760.48 + }, + "selected" : false + }, { + "data" : { + "id" : "2989", + "station_name" : "東中神", + "close_ymd" : "", + "lon" : 139.38452900000001, + "post" : "196-0034", + "e_status" : 0, + "SUID" : 2989, + "station_g_cd" : 1131503, + "add" : "昭島市玉川町1丁目", + "line_cd" : 11315, + "selected" : false, + "open_ymd" : "", + "name" : "1131503", + "pref_name" : "東京都", + "shared_name" : "1131503", + "lat" : 35.706337, + "y" : -357063.37, + "x" : 1393845.29 + }, + "position" : { + "x" : 1393845.29, + "y" : -357063.37 + }, + "selected" : false + }, { + "data" : { + "id" : "2990", + "station_name" : "中神", + "close_ymd" : "", + "lon" : 139.375816, + "post" : "196-0025", + "e_status" : 0, + "SUID" : 2990, + "station_g_cd" : 1131504, + "add" : "昭島市朝日町1丁目", + "line_cd" : 11315, + "selected" : false, + "open_ymd" : "", + "name" : "1131504", + "pref_name" : "東京都", + "shared_name" : "1131504", + "lat" : 35.709058, + "y" : -357090.58, + "x" : 1393758.16 + }, + "position" : { + "x" : 1393758.16, + "y" : -357090.58 + }, + "selected" : false + }, { + "data" : { + "id" : "2991", + "station_name" : "昭島", + "close_ymd" : "", + "lon" : 139.361564, + "post" : "196-0015", + "e_status" : 0, + "SUID" : 2991, + "station_g_cd" : 1131505, + "add" : "昭島市昭和町2丁目", + "line_cd" : 11315, + "selected" : false, + "open_ymd" : "", + "name" : "1131505", + "pref_name" : "東京都", + "shared_name" : "1131505", + "lat" : 35.713305, + "y" : -357133.05, + "x" : 1393615.64 + }, + "position" : { + "x" : 1393615.64, + "y" : -357133.05 + }, + "selected" : false + }, { + "data" : { + "id" : "2992", + "station_name" : "拝島", + "close_ymd" : "", + "lon" : 139.343468, + "post" : "196-0003", + "e_status" : 0, + "SUID" : 2992, + "station_g_cd" : 1131506, + "add" : "昭島市松原町4丁目", + "line_cd" : 11315, + "selected" : false, + "open_ymd" : "", + "name" : "1131506", + "pref_name" : "東京都", + "shared_name" : "1131506", + "lat" : 35.721278000000005, + "y" : -357212.78, + "x" : 1393434.68 + }, + "position" : { + "x" : 1393434.68, + "y" : -357212.78 + }, + "selected" : false + }, { + "data" : { + "id" : "3079", + "station_name" : "三河島", + "close_ymd" : "", + "lon" : 139.777131, + "post" : "116-0013", + "e_status" : 0, + "SUID" : 3079, + "station_g_cd" : 1132003, + "add" : "荒川区西日暮里1丁目", + "line_cd" : 11320, + "selected" : false, + "open_ymd" : "", + "name" : "1132003", + "pref_name" : "東京都", + "shared_name" : "1132003", + "lat" : 35.733383, + "y" : -357333.83, + "x" : 1397771.31 + }, + "position" : { + "x" : 1397771.31, + "y" : -357333.83 + }, + "selected" : false + }, { + "data" : { + "id" : "3080", + "station_name" : "南千住", + "close_ymd" : "", + "lon" : 139.7994, + "post" : "116-0003", + "e_status" : 0, + "SUID" : 3080, + "station_g_cd" : 1132004, + "add" : "荒川区南千住4丁目", + "line_cd" : 11320, + "selected" : false, + "open_ymd" : "", + "name" : "1132004", + "pref_name" : "東京都", + "shared_name" : "1132004", + "lat" : 35.734033000000004, + "y" : -357340.33, + "x" : 1397994.0 + }, + "position" : { + "x" : 1397994.0, + "y" : -357340.33 + }, + "selected" : false + }, { + "data" : { + "id" : "3077", + "station_name" : "上野", + "close_ymd" : "", + "lon" : 139.777043, + "post" : "110-0005", + "e_status" : 0, + "SUID" : 3077, + "station_g_cd" : 1130220, + "add" : "東京都台東区上野七丁目1-1", + "line_cd" : 11320, + "selected" : false, + "open_ymd" : "", + "name" : "1132001", + "pref_name" : "東京都", + "shared_name" : "1132001", + "lat" : 35.71379, + "y" : -357137.9, + "x" : 1397770.43 + }, + "position" : { + "x" : 1397770.43, + "y" : -357137.9 + }, + "selected" : false + }, { + "data" : { + "id" : "3078", + "station_name" : "日暮里", + "close_ymd" : "", + "lon" : 139.771287, + "post" : "116-0013", + "e_status" : 0, + "SUID" : 3078, + "station_g_cd" : 1130218, + "add" : "東京都荒川区西日暮里二丁目", + "line_cd" : 11320, + "selected" : false, + "open_ymd" : "", + "name" : "1132002", + "pref_name" : "東京都", + "shared_name" : "1132002", + "lat" : 35.727908, + "y" : -357279.08, + "x" : 1397712.87 + }, + "position" : { + "x" : 1397712.87, + "y" : -357279.08 + }, + "selected" : false + }, { + "data" : { + "id" : "3083", + "station_name" : "亀有", + "close_ymd" : "", + "lon" : 139.847573, + "post" : "125-0061", + "e_status" : 0, + "SUID" : 3083, + "station_g_cd" : 1132007, + "add" : "葛飾区亀有3", + "line_cd" : 11320, + "selected" : false, + "open_ymd" : "", + "name" : "1132007", + "pref_name" : "東京都", + "shared_name" : "1132007", + "lat" : 35.766527, + "y" : -357665.27, + "x" : 1398475.7300000002 + }, + "position" : { + "x" : 1398475.7300000002, + "y" : -357665.27 + }, + "selected" : false + }, { + "data" : { + "id" : "3084", + "station_name" : "金町", + "close_ymd" : "", + "lon" : 139.870482, + "post" : "125-0042", + "e_status" : 0, + "SUID" : 3084, + "station_g_cd" : 1132008, + "add" : "葛飾区金町6丁目", + "line_cd" : 11320, + "selected" : false, + "open_ymd" : "", + "name" : "1132008", + "pref_name" : "東京都", + "shared_name" : "1132008", + "lat" : 35.769582, + "y" : -357695.82, + "x" : 1398704.82 + }, + "position" : { + "x" : 1398704.82, + "y" : -357695.82 + }, + "selected" : false + }, { + "data" : { + "id" : "3081", + "station_name" : "北千住", + "close_ymd" : "", + "lon" : 139.804872, + "post" : "120-0026", + "e_status" : 0, + "SUID" : 3081, + "station_g_cd" : 1132005, + "add" : "足立区千住旭町", + "line_cd" : 11320, + "selected" : false, + "open_ymd" : "", + "name" : "1132005", + "pref_name" : "東京都", + "shared_name" : "1132005", + "lat" : 35.749677, + "y" : -357496.76999999996, + "x" : 1398048.72 + }, + "position" : { + "x" : 1398048.72, + "y" : -357496.76999999996 + }, + "selected" : false + }, { + "data" : { + "id" : "3082", + "station_name" : "綾瀬", + "close_ymd" : "", + "lon" : 139.825019, + "post" : "120-0005", + "e_status" : 0, + "SUID" : 3082, + "station_g_cd" : 1132006, + "add" : "足立区綾瀬3丁目", + "line_cd" : 11320, + "selected" : false, + "open_ymd" : "", + "name" : "1132006", + "pref_name" : "東京都", + "shared_name" : "1132006", + "lat" : 35.762221999999994, + "y" : -357622.2199999999, + "x" : 1398250.19 + }, + "position" : { + "x" : 1398250.19, + "y" : -357622.2199999999 + }, + "selected" : false + }, { + "data" : { + "id" : "3044", + "station_name" : "上野", + "close_ymd" : "", + "lon" : 139.777043, + "post" : "110-0005", + "e_status" : 0, + "SUID" : 3044, + "station_g_cd" : 1130220, + "add" : "東京都台東区上野七丁目1-1", + "line_cd" : 11319, + "selected" : false, + "open_ymd" : "", + "name" : "1131901", + "pref_name" : "東京都", + "shared_name" : "1131901", + "lat" : 35.71379, + "y" : -357137.9, + "x" : 1397770.43 + }, + "position" : { + "x" : 1397770.43, + "y" : -357137.9 + }, + "selected" : false + }, { + "data" : { + "id" : "3045", + "station_name" : "尾久", + "close_ymd" : "", + "lon" : 139.753846, + "post" : "114-0011", + "e_status" : 0, + "SUID" : 3045, + "station_g_cd" : 1131902, + "add" : "北区昭和町1丁目", + "line_cd" : 11319, + "selected" : false, + "open_ymd" : "", + "name" : "1131902", + "pref_name" : "東京都", + "shared_name" : "1131902", + "lat" : 35.746829999999996, + "y" : -357468.29999999993, + "x" : 1397538.4600000002 + }, + "position" : { + "x" : 1397538.4600000002, + "y" : -357468.29999999993 + }, + "selected" : false + }, { + "data" : { + "id" : "3046", + "station_name" : "赤羽", + "close_ymd" : "", + "lon" : 139.72092800000001, + "post" : "115-0045", + "e_status" : 0, + "SUID" : 3046, + "station_g_cd" : 1131903, + "add" : "北区赤羽1丁目", + "line_cd" : 11319, + "selected" : false, + "open_ymd" : "", + "name" : "1131903", + "pref_name" : "東京都", + "shared_name" : "1131903", + "lat" : 35.778026000000004, + "y" : -357780.26000000007, + "x" : 1397209.2800000003 + }, + "position" : { + "x" : 1397209.2800000003, + "y" : -357780.26000000007 + }, + "selected" : false + } ], + "edges" : [ { + "data" : { + "id" : "18417", + "source" : "8220", + "target" : "8221", + "line_name_k" : "ホクソウテツドウホクソウセン", + "is_bullet" : false, + "lon" : 140.03784499075186, + "company_name_k" : "ホクソウテツドウ", + "zoom" : 11, + "SUID" : 18417, + "company_type" : 0, + "company_name_h" : "北総鉄道株式会社", + "interaction" : "99340", + "shared_interaction" : "99340", + "company_url" : "http://www.hokuso-railway.co.jp/", + "line_name" : "北総鉄道北総線", + "selected" : false, + "company_name" : "北総鉄道", + "company_cd" : 152, + "name" : "9934001 (99340) 9934002", + "rr_cd" : 99, + "company_name_r" : "北総鉄道", + "e_status_x" : 0, + "shared_name" : "9934001 (99340) 9934002", + "lat" : 35.78346285846615, + "e_status_y" : 0, + "line_name_h" : "北総鉄道北総線" + }, + "selected" : false + }, { + "data" : { + "id" : "16253", + "source" : "5901", + "target" : "5902", + "line_name_k" : "ギンザセン", + "is_bullet" : false, + "lon" : 139.75720810526002, + "company_name_k" : "トウキョウメトロ", + "zoom" : 13, + "SUID" : 16253, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28001", + "shared_interaction" : "28001", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ銀座線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800109 (28001) 2800110", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800109 (28001) 2800110", + "lat" : 35.68646095045909, + "e_status_y" : 0, + "line_name_h" : "東京メトロ銀座線" + }, + "selected" : false + }, { + "data" : { + "id" : "16254", + "source" : "5902", + "target" : "5903", + "line_name_k" : "ギンザセン", + "is_bullet" : false, + "lon" : 139.75720810526002, + "company_name_k" : "トウキョウメトロ", + "zoom" : 13, + "SUID" : 16254, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28001", + "shared_interaction" : "28001", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ銀座線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800110 (28001) 2800111", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800110 (28001) 2800111", + "lat" : 35.68646095045909, + "e_status_y" : 0, + "line_name_h" : "東京メトロ銀座線" + }, + "selected" : false + }, { + "data" : { + "id" : "16255", + "source" : "5903", + "target" : "5904", + "line_name_k" : "ギンザセン", + "is_bullet" : false, + "lon" : 139.75720810526002, + "company_name_k" : "トウキョウメトロ", + "zoom" : 13, + "SUID" : 16255, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28001", + "shared_interaction" : "28001", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ銀座線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800111 (28001) 2800112", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800111 (28001) 2800112", + "lat" : 35.68646095045909, + "e_status_y" : 0, + "line_name_h" : "東京メトロ銀座線" + }, + "selected" : false + }, { + "data" : { + "id" : "16256", + "source" : "5904", + "target" : "5905", + "line_name_k" : "ギンザセン", + "is_bullet" : false, + "lon" : 139.75720810526002, + "company_name_k" : "トウキョウメトロ", + "zoom" : 13, + "SUID" : 16256, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28001", + "shared_interaction" : "28001", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ銀座線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800112 (28001) 2800113", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800112 (28001) 2800113", + "lat" : 35.68646095045909, + "e_status_y" : 0, + "line_name_h" : "東京メトロ銀座線" + }, + "selected" : false + }, { + "data" : { + "id" : "16257", + "source" : "5905", + "target" : "5906", + "line_name_k" : "ギンザセン", + "is_bullet" : false, + "lon" : 139.75720810526002, + "company_name_k" : "トウキョウメトロ", + "zoom" : 13, + "SUID" : 16257, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28001", + "shared_interaction" : "28001", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ銀座線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800113 (28001) 2800114", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800113 (28001) 2800114", + "lat" : 35.68646095045909, + "e_status_y" : 0, + "line_name_h" : "東京メトロ銀座線" + }, + "selected" : false + }, { + "data" : { + "id" : "16258", + "source" : "5906", + "target" : "5907", + "line_name_k" : "ギンザセン", + "is_bullet" : false, + "lon" : 139.75720810526002, + "company_name_k" : "トウキョウメトロ", + "zoom" : 13, + "SUID" : 16258, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28001", + "shared_interaction" : "28001", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ銀座線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800114 (28001) 2800115", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800114 (28001) 2800115", + "lat" : 35.68646095045909, + "e_status_y" : 0, + "line_name_h" : "東京メトロ銀座線" + }, + "selected" : false + }, { + "data" : { + "id" : "16259", + "source" : "5907", + "target" : "5908", + "line_name_k" : "ギンザセン", + "is_bullet" : false, + "lon" : 139.75720810526002, + "company_name_k" : "トウキョウメトロ", + "zoom" : 13, + "SUID" : 16259, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28001", + "shared_interaction" : "28001", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ銀座線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800115 (28001) 2800116", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800115 (28001) 2800116", + "lat" : 35.68646095045909, + "e_status_y" : 0, + "line_name_h" : "東京メトロ銀座線" + }, + "selected" : false + }, { + "data" : { + "id" : "16260", + "source" : "5908", + "target" : "5909", + "line_name_k" : "ギンザセン", + "is_bullet" : false, + "lon" : 139.75720810526002, + "company_name_k" : "トウキョウメトロ", + "zoom" : 13, + "SUID" : 16260, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28001", + "shared_interaction" : "28001", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ銀座線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800116 (28001) 2800117", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800116 (28001) 2800117", + "lat" : 35.68646095045909, + "e_status_y" : 0, + "line_name_h" : "東京メトロ銀座線" + }, + "selected" : false + }, { + "data" : { + "id" : "16245", + "source" : "5893", + "target" : "5894", + "line_name_k" : "ギンザセン", + "is_bullet" : false, + "lon" : 139.75720810526002, + "company_name_k" : "トウキョウメトロ", + "zoom" : 13, + "SUID" : 16245, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28001", + "shared_interaction" : "28001", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ銀座線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800101 (28001) 2800102", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800101 (28001) 2800102", + "lat" : 35.68646095045909, + "e_status_y" : 0, + "line_name_h" : "東京メトロ銀座線" + }, + "selected" : false + }, { + "data" : { + "id" : "16246", + "source" : "5894", + "target" : "5895", + "line_name_k" : "ギンザセン", + "is_bullet" : false, + "lon" : 139.75720810526002, + "company_name_k" : "トウキョウメトロ", + "zoom" : 13, + "SUID" : 16246, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28001", + "shared_interaction" : "28001", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ銀座線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800102 (28001) 2800103", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800102 (28001) 2800103", + "lat" : 35.68646095045909, + "e_status_y" : 0, + "line_name_h" : "東京メトロ銀座線" + }, + "selected" : false + }, { + "data" : { + "id" : "16247", + "source" : "5895", + "target" : "5896", + "line_name_k" : "ギンザセン", + "is_bullet" : false, + "lon" : 139.75720810526002, + "company_name_k" : "トウキョウメトロ", + "zoom" : 13, + "SUID" : 16247, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28001", + "shared_interaction" : "28001", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ銀座線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800103 (28001) 2800104", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800103 (28001) 2800104", + "lat" : 35.68646095045909, + "e_status_y" : 0, + "line_name_h" : "東京メトロ銀座線" + }, + "selected" : false + }, { + "data" : { + "id" : "16248", + "source" : "5896", + "target" : "5897", + "line_name_k" : "ギンザセン", + "is_bullet" : false, + "lon" : 139.75720810526002, + "company_name_k" : "トウキョウメトロ", + "zoom" : 13, + "SUID" : 16248, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28001", + "shared_interaction" : "28001", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ銀座線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800104 (28001) 2800105", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800104 (28001) 2800105", + "lat" : 35.68646095045909, + "e_status_y" : 0, + "line_name_h" : "東京メトロ銀座線" + }, + "selected" : false + }, { + "data" : { + "id" : "16249", + "source" : "5897", + "target" : "5898", + "line_name_k" : "ギンザセン", + "is_bullet" : false, + "lon" : 139.75720810526002, + "company_name_k" : "トウキョウメトロ", + "zoom" : 13, + "SUID" : 16249, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28001", + "shared_interaction" : "28001", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ銀座線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800105 (28001) 2800106", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800105 (28001) 2800106", + "lat" : 35.68646095045909, + "e_status_y" : 0, + "line_name_h" : "東京メトロ銀座線" + }, + "selected" : false + }, { + "data" : { + "id" : "16250", + "source" : "5898", + "target" : "5899", + "line_name_k" : "ギンザセン", + "is_bullet" : false, + "lon" : 139.75720810526002, + "company_name_k" : "トウキョウメトロ", + "zoom" : 13, + "SUID" : 16250, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28001", + "shared_interaction" : "28001", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ銀座線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800106 (28001) 2800107", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800106 (28001) 2800107", + "lat" : 35.68646095045909, + "e_status_y" : 0, + "line_name_h" : "東京メトロ銀座線" + }, + "selected" : false + }, { + "data" : { + "id" : "16251", + "source" : "5899", + "target" : "5900", + "line_name_k" : "ギンザセン", + "is_bullet" : false, + "lon" : 139.75720810526002, + "company_name_k" : "トウキョウメトロ", + "zoom" : 13, + "SUID" : 16251, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28001", + "shared_interaction" : "28001", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ銀座線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800107 (28001) 2800108", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800107 (28001) 2800108", + "lat" : 35.68646095045909, + "e_status_y" : 0, + "line_name_h" : "東京メトロ銀座線" + }, + "selected" : false + }, { + "data" : { + "id" : "16252", + "source" : "5900", + "target" : "5901", + "line_name_k" : "ギンザセン", + "is_bullet" : false, + "lon" : 139.75720810526002, + "company_name_k" : "トウキョウメトロ", + "zoom" : 13, + "SUID" : 16252, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28001", + "shared_interaction" : "28001", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ銀座線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800108 (28001) 2800109", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800108 (28001) 2800109", + "lat" : 35.68646095045909, + "e_status_y" : 0, + "line_name_h" : "東京メトロ銀座線" + }, + "selected" : false + }, { + "data" : { + "id" : "16227", + "source" : "5871", + "target" : "5872", + "line_name_k" : "ケイキュウクウコウセン", + "is_bullet" : false, + "lon" : 139.74978371429006, + "company_name_k" : "ケイキュウデンテツ", + "zoom" : 13, + "SUID" : 16227, + "company_type" : 2, + "company_name_h" : "京浜急行電鉄株式会社", + "interaction" : "27002", + "shared_interaction" : "27002", + "company_url" : "http://www.keikyu.co.jp/", + "line_name" : "京急空港線", + "selected" : false, + "company_name" : "京急電鉄", + "company_cd" : 17, + "name" : "2700207 (27002) 2700206", + "rr_cd" : 27, + "company_name_r" : "京急", + "e_status_x" : 0, + "shared_name" : "2700207 (27002) 2700206", + "lat" : 35.5550012530646, + "e_status_y" : 0, + "line_name_h" : "京急空港線" + }, + "selected" : false + }, { + "data" : { + "id" : "16225", + "source" : "5869", + "target" : "5870", + "line_name_k" : "ケイキュウクウコウセン", + "is_bullet" : false, + "lon" : 139.74978371429006, + "company_name_k" : "ケイキュウデンテツ", + "zoom" : 13, + "SUID" : 16225, + "company_type" : 2, + "company_name_h" : "京浜急行電鉄株式会社", + "interaction" : "27002", + "shared_interaction" : "27002", + "company_url" : "http://www.keikyu.co.jp/", + "line_name" : "京急空港線", + "selected" : false, + "company_name" : "京急電鉄", + "company_cd" : 17, + "name" : "2700204 (27002) 2700205", + "rr_cd" : 27, + "company_name_r" : "京急", + "e_status_x" : 0, + "shared_name" : "2700204 (27002) 2700205", + "lat" : 35.5550012530646, + "e_status_y" : 0, + "line_name_h" : "京急空港線" + }, + "selected" : false + }, { + "data" : { + "id" : "16226", + "source" : "5870", + "target" : "5871", + "line_name_k" : "ケイキュウクウコウセン", + "is_bullet" : false, + "lon" : 139.74978371429006, + "company_name_k" : "ケイキュウデンテツ", + "zoom" : 13, + "SUID" : 16226, + "company_type" : 2, + "company_name_h" : "京浜急行電鉄株式会社", + "interaction" : "27002", + "shared_interaction" : "27002", + "company_url" : "http://www.keikyu.co.jp/", + "line_name" : "京急空港線", + "selected" : false, + "company_name" : "京急電鉄", + "company_cd" : 17, + "name" : "2700205 (27002) 2700207", + "rr_cd" : 27, + "company_name_r" : "京急", + "e_status_x" : 0, + "shared_name" : "2700205 (27002) 2700207", + "lat" : 35.5550012530646, + "e_status_y" : 0, + "line_name_h" : "京急空港線" + }, + "selected" : false + }, { + "data" : { + "id" : "16223", + "source" : "5867", + "target" : "5868", + "line_name_k" : "ケイキュウクウコウセン", + "is_bullet" : false, + "lon" : 139.74978371429006, + "company_name_k" : "ケイキュウデンテツ", + "zoom" : 13, + "SUID" : 16223, + "company_type" : 2, + "company_name_h" : "京浜急行電鉄株式会社", + "interaction" : "27002", + "shared_interaction" : "27002", + "company_url" : "http://www.keikyu.co.jp/", + "line_name" : "京急空港線", + "selected" : false, + "company_name" : "京急電鉄", + "company_cd" : 17, + "name" : "2700202 (27002) 2700203", + "rr_cd" : 27, + "company_name_r" : "京急", + "e_status_x" : 0, + "shared_name" : "2700202 (27002) 2700203", + "lat" : 35.5550012530646, + "e_status_y" : 0, + "line_name_h" : "京急空港線" + }, + "selected" : false + }, { + "data" : { + "id" : "16224", + "source" : "5868", + "target" : "5869", + "line_name_k" : "ケイキュウクウコウセン", + "is_bullet" : false, + "lon" : 139.74978371429006, + "company_name_k" : "ケイキュウデンテツ", + "zoom" : 13, + "SUID" : 16224, + "company_type" : 2, + "company_name_h" : "京浜急行電鉄株式会社", + "interaction" : "27002", + "shared_interaction" : "27002", + "company_url" : "http://www.keikyu.co.jp/", + "line_name" : "京急空港線", + "selected" : false, + "company_name" : "京急電鉄", + "company_cd" : 17, + "name" : "2700203 (27002) 2700204", + "rr_cd" : 27, + "company_name_r" : "京急", + "e_status_x" : 0, + "shared_name" : "2700203 (27002) 2700204", + "lat" : 35.5550012530646, + "e_status_y" : 0, + "line_name_h" : "京急空港線" + }, + "selected" : false + }, { + "data" : { + "id" : "16222", + "source" : "5866", + "target" : "5867", + "line_name_k" : "ケイキュウクウコウセン", + "is_bullet" : false, + "lon" : 139.74978371429006, + "company_name_k" : "ケイキュウデンテツ", + "zoom" : 13, + "SUID" : 16222, + "company_type" : 2, + "company_name_h" : "京浜急行電鉄株式会社", + "interaction" : "27002", + "shared_interaction" : "27002", + "company_url" : "http://www.keikyu.co.jp/", + "line_name" : "京急空港線", + "selected" : false, + "company_name" : "京急電鉄", + "company_cd" : 17, + "name" : "2700201 (27002) 2700202", + "rr_cd" : 27, + "company_name_r" : "京急", + "e_status_x" : 0, + "shared_name" : "2700201 (27002) 2700202", + "lat" : 35.5550012530646, + "e_status_y" : 0, + "line_name_h" : "京急空港線" + }, + "selected" : false + }, { + "data" : { + "id" : "16183", + "source" : "5826", + "target" : "5827", + "line_name_k" : "ケイキュウホンセン", + "is_bullet" : false, + "lon" : 139.66542155593754, + "company_name_k" : "ケイキュウデンテツ", + "zoom" : 10, + "SUID" : 16183, + "company_type" : 2, + "company_name_h" : "京浜急行電鉄株式会社", + "interaction" : "27001", + "shared_interaction" : "27001", + "company_url" : "http://www.keikyu.co.jp/", + "line_name" : "京急本線", + "selected" : false, + "company_name" : "京急電鉄", + "company_cd" : 17, + "name" : "2700111 (27001) 2700112", + "rr_cd" : 27, + "company_name_r" : "京急", + "e_status_x" : 0, + "shared_name" : "2700111 (27001) 2700112", + "lat" : 35.470013165246186, + "e_status_y" : 0, + "line_name_h" : "京急本線" + }, + "selected" : false + }, { + "data" : { + "id" : "16182", + "source" : "5825", + "target" : "5826", + "line_name_k" : "ケイキュウホンセン", + "is_bullet" : false, + "lon" : 139.66542155593754, + "company_name_k" : "ケイキュウデンテツ", + "zoom" : 10, + "SUID" : 16182, + "company_type" : 2, + "company_name_h" : "京浜急行電鉄株式会社", + "interaction" : "27001", + "shared_interaction" : "27001", + "company_url" : "http://www.keikyu.co.jp/", + "line_name" : "京急本線", + "selected" : false, + "company_name" : "京急電鉄", + "company_cd" : 17, + "name" : "2700110 (27001) 2700111", + "rr_cd" : 27, + "company_name_r" : "京急", + "e_status_x" : 0, + "shared_name" : "2700110 (27001) 2700111", + "lat" : 35.470013165246186, + "e_status_y" : 0, + "line_name_h" : "京急本線" + }, + "selected" : false + }, { + "data" : { + "id" : "16185", + "source" : "5828", + "target" : "5829", + "line_name_k" : "ケイキュウホンセン", + "is_bullet" : false, + "lon" : 139.66542155593754, + "company_name_k" : "ケイキュウデンテツ", + "zoom" : 10, + "SUID" : 16185, + "company_type" : 2, + "company_name_h" : "京浜急行電鉄株式会社", + "interaction" : "27001", + "shared_interaction" : "27001", + "company_url" : "http://www.keikyu.co.jp/", + "line_name" : "京急本線", + "selected" : false, + "company_name" : "京急電鉄", + "company_cd" : 17, + "name" : "2700113 (27001) 2700114", + "rr_cd" : 27, + "company_name_r" : "京急", + "e_status_x" : 0, + "shared_name" : "2700113 (27001) 2700114", + "lat" : 35.470013165246186, + "e_status_y" : 0, + "line_name_h" : "京急本線" + }, + "selected" : false + }, { + "data" : { + "id" : "16184", + "source" : "5827", + "target" : "5828", + "line_name_k" : "ケイキュウホンセン", + "is_bullet" : false, + "lon" : 139.66542155593754, + "company_name_k" : "ケイキュウデンテツ", + "zoom" : 10, + "SUID" : 16184, + "company_type" : 2, + "company_name_h" : "京浜急行電鉄株式会社", + "interaction" : "27001", + "shared_interaction" : "27001", + "company_url" : "http://www.keikyu.co.jp/", + "line_name" : "京急本線", + "selected" : false, + "company_name" : "京急電鉄", + "company_cd" : 17, + "name" : "2700112 (27001) 2700113", + "rr_cd" : 27, + "company_name_r" : "京急", + "e_status_x" : 0, + "shared_name" : "2700112 (27001) 2700113", + "lat" : 35.470013165246186, + "e_status_y" : 0, + "line_name_h" : "京急本線" + }, + "selected" : false + }, { + "data" : { + "id" : "16179", + "source" : "5822", + "target" : "5823", + "line_name_k" : "ケイキュウホンセン", + "is_bullet" : false, + "lon" : 139.66542155593754, + "company_name_k" : "ケイキュウデンテツ", + "zoom" : 10, + "SUID" : 16179, + "company_type" : 2, + "company_name_h" : "京浜急行電鉄株式会社", + "interaction" : "27001", + "shared_interaction" : "27001", + "company_url" : "http://www.keikyu.co.jp/", + "line_name" : "京急本線", + "selected" : false, + "company_name" : "京急電鉄", + "company_cd" : 17, + "name" : "2700107 (27001) 2700108", + "rr_cd" : 27, + "company_name_r" : "京急", + "e_status_x" : 0, + "shared_name" : "2700107 (27001) 2700108", + "lat" : 35.470013165246186, + "e_status_y" : 0, + "line_name_h" : "京急本線" + }, + "selected" : false + }, { + "data" : { + "id" : "16178", + "source" : "5821", + "target" : "5822", + "line_name_k" : "ケイキュウホンセン", + "is_bullet" : false, + "lon" : 139.66542155593754, + "company_name_k" : "ケイキュウデンテツ", + "zoom" : 10, + "SUID" : 16178, + "company_type" : 2, + "company_name_h" : "京浜急行電鉄株式会社", + "interaction" : "27001", + "shared_interaction" : "27001", + "company_url" : "http://www.keikyu.co.jp/", + "line_name" : "京急本線", + "selected" : false, + "company_name" : "京急電鉄", + "company_cd" : 17, + "name" : "2700106 (27001) 2700107", + "rr_cd" : 27, + "company_name_r" : "京急", + "e_status_x" : 0, + "shared_name" : "2700106 (27001) 2700107", + "lat" : 35.470013165246186, + "e_status_y" : 0, + "line_name_h" : "京急本線" + }, + "selected" : false + }, { + "data" : { + "id" : "16181", + "source" : "5824", + "target" : "5825", + "line_name_k" : "ケイキュウホンセン", + "is_bullet" : false, + "lon" : 139.66542155593754, + "company_name_k" : "ケイキュウデンテツ", + "zoom" : 10, + "SUID" : 16181, + "company_type" : 2, + "company_name_h" : "京浜急行電鉄株式会社", + "interaction" : "27001", + "shared_interaction" : "27001", + "company_url" : "http://www.keikyu.co.jp/", + "line_name" : "京急本線", + "selected" : false, + "company_name" : "京急電鉄", + "company_cd" : 17, + "name" : "2700109 (27001) 2700110", + "rr_cd" : 27, + "company_name_r" : "京急", + "e_status_x" : 0, + "shared_name" : "2700109 (27001) 2700110", + "lat" : 35.470013165246186, + "e_status_y" : 0, + "line_name_h" : "京急本線" + }, + "selected" : false + }, { + "data" : { + "id" : "16180", + "source" : "5823", + "target" : "5824", + "line_name_k" : "ケイキュウホンセン", + "is_bullet" : false, + "lon" : 139.66542155593754, + "company_name_k" : "ケイキュウデンテツ", + "zoom" : 10, + "SUID" : 16180, + "company_type" : 2, + "company_name_h" : "京浜急行電鉄株式会社", + "interaction" : "27001", + "shared_interaction" : "27001", + "company_url" : "http://www.keikyu.co.jp/", + "line_name" : "京急本線", + "selected" : false, + "company_name" : "京急電鉄", + "company_cd" : 17, + "name" : "2700108 (27001) 2700109", + "rr_cd" : 27, + "company_name_r" : "京急", + "e_status_x" : 0, + "shared_name" : "2700108 (27001) 2700109", + "lat" : 35.470013165246186, + "e_status_y" : 0, + "line_name_h" : "京急本線" + }, + "selected" : false + }, { + "data" : { + "id" : "16175", + "source" : "5818", + "target" : "5819", + "line_name_k" : "ケイキュウホンセン", + "is_bullet" : false, + "lon" : 139.66542155593754, + "company_name_k" : "ケイキュウデンテツ", + "zoom" : 10, + "SUID" : 16175, + "company_type" : 2, + "company_name_h" : "京浜急行電鉄株式会社", + "interaction" : "27001", + "shared_interaction" : "27001", + "company_url" : "http://www.keikyu.co.jp/", + "line_name" : "京急本線", + "selected" : false, + "company_name" : "京急電鉄", + "company_cd" : 17, + "name" : "2700103 (27001) 2700104", + "rr_cd" : 27, + "company_name_r" : "京急", + "e_status_x" : 0, + "shared_name" : "2700103 (27001) 2700104", + "lat" : 35.470013165246186, + "e_status_y" : 0, + "line_name_h" : "京急本線" + }, + "selected" : false + }, { + "data" : { + "id" : "16174", + "source" : "5817", + "target" : "5818", + "line_name_k" : "ケイキュウホンセン", + "is_bullet" : false, + "lon" : 139.66542155593754, + "company_name_k" : "ケイキュウデンテツ", + "zoom" : 10, + "SUID" : 16174, + "company_type" : 2, + "company_name_h" : "京浜急行電鉄株式会社", + "interaction" : "27001", + "shared_interaction" : "27001", + "company_url" : "http://www.keikyu.co.jp/", + "line_name" : "京急本線", + "selected" : false, + "company_name" : "京急電鉄", + "company_cd" : 17, + "name" : "2700102 (27001) 2700103", + "rr_cd" : 27, + "company_name_r" : "京急", + "e_status_x" : 0, + "shared_name" : "2700102 (27001) 2700103", + "lat" : 35.470013165246186, + "e_status_y" : 0, + "line_name_h" : "京急本線" + }, + "selected" : false + }, { + "data" : { + "id" : "16177", + "source" : "5820", + "target" : "5821", + "line_name_k" : "ケイキュウホンセン", + "is_bullet" : false, + "lon" : 139.66542155593754, + "company_name_k" : "ケイキュウデンテツ", + "zoom" : 10, + "SUID" : 16177, + "company_type" : 2, + "company_name_h" : "京浜急行電鉄株式会社", + "interaction" : "27001", + "shared_interaction" : "27001", + "company_url" : "http://www.keikyu.co.jp/", + "line_name" : "京急本線", + "selected" : false, + "company_name" : "京急電鉄", + "company_cd" : 17, + "name" : "2700105 (27001) 2700106", + "rr_cd" : 27, + "company_name_r" : "京急", + "e_status_x" : 0, + "shared_name" : "2700105 (27001) 2700106", + "lat" : 35.470013165246186, + "e_status_y" : 0, + "line_name_h" : "京急本線" + }, + "selected" : false + }, { + "data" : { + "id" : "16176", + "source" : "5819", + "target" : "5820", + "line_name_k" : "ケイキュウホンセン", + "is_bullet" : false, + "lon" : 139.66542155593754, + "company_name_k" : "ケイキュウデンテツ", + "zoom" : 10, + "SUID" : 16176, + "company_type" : 2, + "company_name_h" : "京浜急行電鉄株式会社", + "interaction" : "27001", + "shared_interaction" : "27001", + "company_url" : "http://www.keikyu.co.jp/", + "line_name" : "京急本線", + "selected" : false, + "company_name" : "京急電鉄", + "company_cd" : 17, + "name" : "2700104 (27001) 2700105", + "rr_cd" : 27, + "company_name_r" : "京急", + "e_status_x" : 0, + "shared_name" : "2700104 (27001) 2700105", + "lat" : 35.470013165246186, + "e_status_y" : 0, + "line_name_h" : "京急本線" + }, + "selected" : false + }, { + "data" : { + "id" : "16173", + "source" : "5816", + "target" : "5817", + "line_name_k" : "ケイキュウホンセン", + "is_bullet" : false, + "lon" : 139.66542155593754, + "company_name_k" : "ケイキュウデンテツ", + "zoom" : 10, + "SUID" : 16173, + "company_type" : 2, + "company_name_h" : "京浜急行電鉄株式会社", + "interaction" : "27001", + "shared_interaction" : "27001", + "company_url" : "http://www.keikyu.co.jp/", + "line_name" : "京急本線", + "selected" : false, + "company_name" : "京急電鉄", + "company_cd" : 17, + "name" : "2700101 (27001) 2700102", + "rr_cd" : 27, + "company_name_r" : "京急", + "e_status_x" : 0, + "shared_name" : "2700101 (27001) 2700102", + "lat" : 35.470013165246186, + "e_status_y" : 0, + "line_name_h" : "京急本線" + }, + "selected" : false + }, { + "data" : { + "id" : "16156", + "source" : "5796", + "target" : "5797", + "line_name_k" : "トウキュウタマガワセン", + "is_bullet" : false, + "lon" : 139.68743273015912, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 13, + "SUID" : 16156, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26006", + "shared_interaction" : "26006", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急多摩川線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600601 (26006) 2600602", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600601 (26006) 2600602", + "lat" : 35.5724416406283, + "e_status_y" : 0, + "line_name_h" : "東急多摩川線" + }, + "selected" : false + }, { + "data" : { + "id" : "16155", + "source" : "5794", + "target" : "5795", + "line_name_k" : "トウキュウイケガミセン", + "is_bullet" : false, + "lon" : 139.70623944130853, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 13, + "SUID" : 16155, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26005", + "shared_interaction" : "26005", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急池上線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600514 (26005) 2600515", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600514 (26005) 2600515", + "lat" : 35.59393651096109, + "e_status_y" : 0, + "line_name_h" : "東急池上線" + }, + "selected" : false + }, { + "data" : { + "id" : "16154", + "source" : "5793", + "target" : "5794", + "line_name_k" : "トウキュウイケガミセン", + "is_bullet" : false, + "lon" : 139.70623944130853, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 13, + "SUID" : 16154, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26005", + "shared_interaction" : "26005", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急池上線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600513 (26005) 2600514", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600513 (26005) 2600514", + "lat" : 35.59393651096109, + "e_status_y" : 0, + "line_name_h" : "東急池上線" + }, + "selected" : false + }, { + "data" : { + "id" : "16153", + "source" : "5792", + "target" : "5793", + "line_name_k" : "トウキュウイケガミセン", + "is_bullet" : false, + "lon" : 139.70623944130853, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 13, + "SUID" : 16153, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26005", + "shared_interaction" : "26005", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急池上線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600512 (26005) 2600513", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600512 (26005) 2600513", + "lat" : 35.59393651096109, + "e_status_y" : 0, + "line_name_h" : "東急池上線" + }, + "selected" : false + }, { + "data" : { + "id" : "16152", + "source" : "5791", + "target" : "5792", + "line_name_k" : "トウキュウイケガミセン", + "is_bullet" : false, + "lon" : 139.70623944130853, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 13, + "SUID" : 16152, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26005", + "shared_interaction" : "26005", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急池上線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600511 (26005) 2600512", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600511 (26005) 2600512", + "lat" : 35.59393651096109, + "e_status_y" : 0, + "line_name_h" : "東急池上線" + }, + "selected" : false + }, { + "data" : { + "id" : "16151", + "source" : "5790", + "target" : "5791", + "line_name_k" : "トウキュウイケガミセン", + "is_bullet" : false, + "lon" : 139.70623944130853, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 13, + "SUID" : 16151, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26005", + "shared_interaction" : "26005", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急池上線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600510 (26005) 2600511", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600510 (26005) 2600511", + "lat" : 35.59393651096109, + "e_status_y" : 0, + "line_name_h" : "東急池上線" + }, + "selected" : false + }, { + "data" : { + "id" : "16150", + "source" : "5789", + "target" : "5790", + "line_name_k" : "トウキュウイケガミセン", + "is_bullet" : false, + "lon" : 139.70623944130853, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 13, + "SUID" : 16150, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26005", + "shared_interaction" : "26005", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急池上線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600509 (26005) 2600510", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600509 (26005) 2600510", + "lat" : 35.59393651096109, + "e_status_y" : 0, + "line_name_h" : "東急池上線" + }, + "selected" : false + }, { + "data" : { + "id" : "16149", + "source" : "5788", + "target" : "5789", + "line_name_k" : "トウキュウイケガミセン", + "is_bullet" : false, + "lon" : 139.70623944130853, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 13, + "SUID" : 16149, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26005", + "shared_interaction" : "26005", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急池上線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600508 (26005) 2600509", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600508 (26005) 2600509", + "lat" : 35.59393651096109, + "e_status_y" : 0, + "line_name_h" : "東急池上線" + }, + "selected" : false + }, { + "data" : { + "id" : "16148", + "source" : "5787", + "target" : "5788", + "line_name_k" : "トウキュウイケガミセン", + "is_bullet" : false, + "lon" : 139.70623944130853, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 13, + "SUID" : 16148, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26005", + "shared_interaction" : "26005", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急池上線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600507 (26005) 2600508", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600507 (26005) 2600508", + "lat" : 35.59393651096109, + "e_status_y" : 0, + "line_name_h" : "東急池上線" + }, + "selected" : false + }, { + "data" : { + "id" : "16147", + "source" : "5786", + "target" : "5787", + "line_name_k" : "トウキュウイケガミセン", + "is_bullet" : false, + "lon" : 139.70623944130853, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 13, + "SUID" : 16147, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26005", + "shared_interaction" : "26005", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急池上線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600506 (26005) 2600507", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600506 (26005) 2600507", + "lat" : 35.59393651096109, + "e_status_y" : 0, + "line_name_h" : "東急池上線" + }, + "selected" : false + }, { + "data" : { + "id" : "16146", + "source" : "5785", + "target" : "5786", + "line_name_k" : "トウキュウイケガミセン", + "is_bullet" : false, + "lon" : 139.70623944130853, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 13, + "SUID" : 16146, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26005", + "shared_interaction" : "26005", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急池上線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600505 (26005) 2600506", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600505 (26005) 2600506", + "lat" : 35.59393651096109, + "e_status_y" : 0, + "line_name_h" : "東急池上線" + }, + "selected" : false + }, { + "data" : { + "id" : "16145", + "source" : "5784", + "target" : "5785", + "line_name_k" : "トウキュウイケガミセン", + "is_bullet" : false, + "lon" : 139.70623944130853, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 13, + "SUID" : 16145, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26005", + "shared_interaction" : "26005", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急池上線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600504 (26005) 2600505", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600504 (26005) 2600505", + "lat" : 35.59393651096109, + "e_status_y" : 0, + "line_name_h" : "東急池上線" + }, + "selected" : false + }, { + "data" : { + "id" : "16144", + "source" : "5783", + "target" : "5784", + "line_name_k" : "トウキュウイケガミセン", + "is_bullet" : false, + "lon" : 139.70623944130853, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 13, + "SUID" : 16144, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26005", + "shared_interaction" : "26005", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急池上線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600503 (26005) 2600504", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600503 (26005) 2600504", + "lat" : 35.59393651096109, + "e_status_y" : 0, + "line_name_h" : "東急池上線" + }, + "selected" : false + }, { + "data" : { + "id" : "16143", + "source" : "5782", + "target" : "5783", + "line_name_k" : "トウキュウイケガミセン", + "is_bullet" : false, + "lon" : 139.70623944130853, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 13, + "SUID" : 16143, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26005", + "shared_interaction" : "26005", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急池上線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600502 (26005) 2600503", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600502 (26005) 2600503", + "lat" : 35.59393651096109, + "e_status_y" : 0, + "line_name_h" : "東急池上線" + }, + "selected" : false + }, { + "data" : { + "id" : "16142", + "source" : "5781", + "target" : "5782", + "line_name_k" : "トウキュウイケガミセン", + "is_bullet" : false, + "lon" : 139.70623944130853, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 13, + "SUID" : 16142, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26005", + "shared_interaction" : "26005", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急池上線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600501 (26005) 2600502", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600501 (26005) 2600502", + "lat" : 35.59393651096109, + "e_status_y" : 0, + "line_name_h" : "東急池上線" + }, + "selected" : false + }, { + "data" : { + "id" : "16170", + "source" : "5811", + "target" : "5812", + "line_name_k" : "トウキュウセタガヤセン", + "is_bullet" : false, + "lon" : 139.6525418613769, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 14, + "SUID" : 16170, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26007", + "shared_interaction" : "26007", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急世田谷線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600709 (26007) 2600710", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600709 (26007) 2600710", + "lat" : 35.653196779881476, + "e_status_y" : 0, + "line_name_h" : "東急世田谷線" + }, + "selected" : false + }, { + "data" : { + "id" : "16168", + "source" : "5809", + "target" : "5810", + "line_name_k" : "トウキュウセタガヤセン", + "is_bullet" : false, + "lon" : 139.6525418613769, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 14, + "SUID" : 16168, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26007", + "shared_interaction" : "26007", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急世田谷線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600707 (26007) 2600708", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600707 (26007) 2600708", + "lat" : 35.653196779881476, + "e_status_y" : 0, + "line_name_h" : "東急世田谷線" + }, + "selected" : false + }, { + "data" : { + "id" : "16169", + "source" : "5810", + "target" : "5811", + "line_name_k" : "トウキュウセタガヤセン", + "is_bullet" : false, + "lon" : 139.6525418613769, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 14, + "SUID" : 16169, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26007", + "shared_interaction" : "26007", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急世田谷線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600708 (26007) 2600709", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600708 (26007) 2600709", + "lat" : 35.653196779881476, + "e_status_y" : 0, + "line_name_h" : "東急世田谷線" + }, + "selected" : false + }, { + "data" : { + "id" : "16166", + "source" : "5807", + "target" : "5808", + "line_name_k" : "トウキュウセタガヤセン", + "is_bullet" : false, + "lon" : 139.6525418613769, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 14, + "SUID" : 16166, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26007", + "shared_interaction" : "26007", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急世田谷線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600705 (26007) 2600706", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600705 (26007) 2600706", + "lat" : 35.653196779881476, + "e_status_y" : 0, + "line_name_h" : "東急世田谷線" + }, + "selected" : false + }, { + "data" : { + "id" : "16167", + "source" : "5808", + "target" : "5809", + "line_name_k" : "トウキュウセタガヤセン", + "is_bullet" : false, + "lon" : 139.6525418613769, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 14, + "SUID" : 16167, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26007", + "shared_interaction" : "26007", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急世田谷線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600706 (26007) 2600707", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600706 (26007) 2600707", + "lat" : 35.653196779881476, + "e_status_y" : 0, + "line_name_h" : "東急世田谷線" + }, + "selected" : false + }, { + "data" : { + "id" : "16164", + "source" : "5805", + "target" : "5806", + "line_name_k" : "トウキュウセタガヤセン", + "is_bullet" : false, + "lon" : 139.6525418613769, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 14, + "SUID" : 16164, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26007", + "shared_interaction" : "26007", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急世田谷線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600703 (26007) 2600704", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600703 (26007) 2600704", + "lat" : 35.653196779881476, + "e_status_y" : 0, + "line_name_h" : "東急世田谷線" + }, + "selected" : false + }, { + "data" : { + "id" : "16165", + "source" : "5806", + "target" : "5807", + "line_name_k" : "トウキュウセタガヤセン", + "is_bullet" : false, + "lon" : 139.6525418613769, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 14, + "SUID" : 16165, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26007", + "shared_interaction" : "26007", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急世田谷線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600704 (26007) 2600705", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600704 (26007) 2600705", + "lat" : 35.653196779881476, + "e_status_y" : 0, + "line_name_h" : "東急世田谷線" + }, + "selected" : false + }, { + "data" : { + "id" : "16162", + "source" : "5803", + "target" : "5804", + "line_name_k" : "トウキュウセタガヤセン", + "is_bullet" : false, + "lon" : 139.6525418613769, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 14, + "SUID" : 16162, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26007", + "shared_interaction" : "26007", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急世田谷線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600701 (26007) 2600702", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600701 (26007) 2600702", + "lat" : 35.653196779881476, + "e_status_y" : 0, + "line_name_h" : "東急世田谷線" + }, + "selected" : false + }, { + "data" : { + "id" : "16163", + "source" : "5804", + "target" : "5805", + "line_name_k" : "トウキュウセタガヤセン", + "is_bullet" : false, + "lon" : 139.6525418613769, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 14, + "SUID" : 16163, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26007", + "shared_interaction" : "26007", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急世田谷線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600702 (26007) 2600703", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600702 (26007) 2600703", + "lat" : 35.653196779881476, + "e_status_y" : 0, + "line_name_h" : "東急世田谷線" + }, + "selected" : false + }, { + "data" : { + "id" : "16161", + "source" : "5801", + "target" : "5802", + "line_name_k" : "トウキュウタマガワセン", + "is_bullet" : false, + "lon" : 139.68743273015912, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 13, + "SUID" : 16161, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26006", + "shared_interaction" : "26006", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急多摩川線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600606 (26006) 2600607", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600606 (26006) 2600607", + "lat" : 35.5724416406283, + "e_status_y" : 0, + "line_name_h" : "東急多摩川線" + }, + "selected" : false + }, { + "data" : { + "id" : "16159", + "source" : "5799", + "target" : "5800", + "line_name_k" : "トウキュウタマガワセン", + "is_bullet" : false, + "lon" : 139.68743273015912, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 13, + "SUID" : 16159, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26006", + "shared_interaction" : "26006", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急多摩川線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600604 (26006) 2600605", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600604 (26006) 2600605", + "lat" : 35.5724416406283, + "e_status_y" : 0, + "line_name_h" : "東急多摩川線" + }, + "selected" : false + }, { + "data" : { + "id" : "16160", + "source" : "5800", + "target" : "5801", + "line_name_k" : "トウキュウタマガワセン", + "is_bullet" : false, + "lon" : 139.68743273015912, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 13, + "SUID" : 16160, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26006", + "shared_interaction" : "26006", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急多摩川線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600605 (26006) 2600606", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600605 (26006) 2600606", + "lat" : 35.5724416406283, + "e_status_y" : 0, + "line_name_h" : "東急多摩川線" + }, + "selected" : false + }, { + "data" : { + "id" : "16157", + "source" : "5797", + "target" : "5798", + "line_name_k" : "トウキュウタマガワセン", + "is_bullet" : false, + "lon" : 139.68743273015912, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 13, + "SUID" : 16157, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26006", + "shared_interaction" : "26006", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急多摩川線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600602 (26006) 2600603", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600602 (26006) 2600603", + "lat" : 35.5724416406283, + "e_status_y" : 0, + "line_name_h" : "東急多摩川線" + }, + "selected" : false + }, { + "data" : { + "id" : "16158", + "source" : "5798", + "target" : "5799", + "line_name_k" : "トウキュウタマガワセン", + "is_bullet" : false, + "lon" : 139.68743273015912, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 13, + "SUID" : 16158, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26006", + "shared_interaction" : "26006", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急多摩川線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600603 (26006) 2600604", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600603 (26006) 2600604", + "lat" : 35.5724416406283, + "e_status_y" : 0, + "line_name_h" : "東急多摩川線" + }, + "selected" : false + }, { + "data" : { + "id" : "18361", + "source" : "8157", + "target" : "8158", + "line_name_k" : "タマモノレール", + "is_bullet" : false, + "lon" : 139.42169850770813, + "company_name_k" : "タマトシモノレール", + "zoom" : 12, + "SUID" : 18361, + "company_type" : 0, + "company_name_h" : "多摩都市モノレール株式会社", + "interaction" : "99334", + "shared_interaction" : "99334", + "company_url" : "http://www.tama-monorail.co.jp/", + "line_name" : "多摩モノレール", + "selected" : false, + "company_name" : "多摩都市モノレール", + "company_cd" : 146, + "name" : "9933412 (99334) 9933413", + "rr_cd" : 99, + "company_name_r" : "多摩モノレール", + "e_status_x" : 0, + "shared_name" : "9933412 (99334) 9933413", + "lat" : 35.69743141486103, + "e_status_y" : 0, + "line_name_h" : "多摩都市モノレール線" + }, + "selected" : false + }, { + "data" : { + "id" : "18362", + "source" : "8158", + "target" : "8159", + "line_name_k" : "タマモノレール", + "is_bullet" : false, + "lon" : 139.42169850770813, + "company_name_k" : "タマトシモノレール", + "zoom" : 12, + "SUID" : 18362, + "company_type" : 0, + "company_name_h" : "多摩都市モノレール株式会社", + "interaction" : "99334", + "shared_interaction" : "99334", + "company_url" : "http://www.tama-monorail.co.jp/", + "line_name" : "多摩モノレール", + "selected" : false, + "company_name" : "多摩都市モノレール", + "company_cd" : 146, + "name" : "9933413 (99334) 9933414", + "rr_cd" : 99, + "company_name_r" : "多摩モノレール", + "e_status_x" : 0, + "shared_name" : "9933413 (99334) 9933414", + "lat" : 35.69743141486103, + "e_status_y" : 0, + "line_name_h" : "多摩都市モノレール線" + }, + "selected" : false + }, { + "data" : { + "id" : "18363", + "source" : "8159", + "target" : "8160", + "line_name_k" : "タマモノレール", + "is_bullet" : false, + "lon" : 139.42169850770813, + "company_name_k" : "タマトシモノレール", + "zoom" : 12, + "SUID" : 18363, + "company_type" : 0, + "company_name_h" : "多摩都市モノレール株式会社", + "interaction" : "99334", + "shared_interaction" : "99334", + "company_url" : "http://www.tama-monorail.co.jp/", + "line_name" : "多摩モノレール", + "selected" : false, + "company_name" : "多摩都市モノレール", + "company_cd" : 146, + "name" : "9933414 (99334) 9933415", + "rr_cd" : 99, + "company_name_r" : "多摩モノレール", + "e_status_x" : 0, + "shared_name" : "9933414 (99334) 9933415", + "lat" : 35.69743141486103, + "e_status_y" : 0, + "line_name_h" : "多摩都市モノレール線" + }, + "selected" : false + }, { + "data" : { + "id" : "18364", + "source" : "8160", + "target" : "8161", + "line_name_k" : "タマモノレール", + "is_bullet" : false, + "lon" : 139.42169850770813, + "company_name_k" : "タマトシモノレール", + "zoom" : 12, + "SUID" : 18364, + "company_type" : 0, + "company_name_h" : "多摩都市モノレール株式会社", + "interaction" : "99334", + "shared_interaction" : "99334", + "company_url" : "http://www.tama-monorail.co.jp/", + "line_name" : "多摩モノレール", + "selected" : false, + "company_name" : "多摩都市モノレール", + "company_cd" : 146, + "name" : "9933415 (99334) 9933416", + "rr_cd" : 99, + "company_name_r" : "多摩モノレール", + "e_status_x" : 0, + "shared_name" : "9933415 (99334) 9933416", + "lat" : 35.69743141486103, + "e_status_y" : 0, + "line_name_h" : "多摩都市モノレール線" + }, + "selected" : false + }, { + "data" : { + "id" : "18365", + "source" : "8161", + "target" : "8162", + "line_name_k" : "タマモノレール", + "is_bullet" : false, + "lon" : 139.42169850770813, + "company_name_k" : "タマトシモノレール", + "zoom" : 12, + "SUID" : 18365, + "company_type" : 0, + "company_name_h" : "多摩都市モノレール株式会社", + "interaction" : "99334", + "shared_interaction" : "99334", + "company_url" : "http://www.tama-monorail.co.jp/", + "line_name" : "多摩モノレール", + "selected" : false, + "company_name" : "多摩都市モノレール", + "company_cd" : 146, + "name" : "9933416 (99334) 9933417", + "rr_cd" : 99, + "company_name_r" : "多摩モノレール", + "e_status_x" : 0, + "shared_name" : "9933416 (99334) 9933417", + "lat" : 35.69743141486103, + "e_status_y" : 0, + "line_name_h" : "多摩都市モノレール線" + }, + "selected" : false + }, { + "data" : { + "id" : "18366", + "source" : "8162", + "target" : "8163", + "line_name_k" : "タマモノレール", + "is_bullet" : false, + "lon" : 139.42169850770813, + "company_name_k" : "タマトシモノレール", + "zoom" : 12, + "SUID" : 18366, + "company_type" : 0, + "company_name_h" : "多摩都市モノレール株式会社", + "interaction" : "99334", + "shared_interaction" : "99334", + "company_url" : "http://www.tama-monorail.co.jp/", + "line_name" : "多摩モノレール", + "selected" : false, + "company_name" : "多摩都市モノレール", + "company_cd" : 146, + "name" : "9933417 (99334) 9933418", + "rr_cd" : 99, + "company_name_r" : "多摩モノレール", + "e_status_x" : 0, + "shared_name" : "9933417 (99334) 9933418", + "lat" : 35.69743141486103, + "e_status_y" : 0, + "line_name_h" : "多摩都市モノレール線" + }, + "selected" : false + }, { + "data" : { + "id" : "18367", + "source" : "8163", + "target" : "8164", + "line_name_k" : "タマモノレール", + "is_bullet" : false, + "lon" : 139.42169850770813, + "company_name_k" : "タマトシモノレール", + "zoom" : 12, + "SUID" : 18367, + "company_type" : 0, + "company_name_h" : "多摩都市モノレール株式会社", + "interaction" : "99334", + "shared_interaction" : "99334", + "company_url" : "http://www.tama-monorail.co.jp/", + "line_name" : "多摩モノレール", + "selected" : false, + "company_name" : "多摩都市モノレール", + "company_cd" : 146, + "name" : "9933418 (99334) 9933419", + "rr_cd" : 99, + "company_name_r" : "多摩モノレール", + "e_status_x" : 0, + "shared_name" : "9933418 (99334) 9933419", + "lat" : 35.69743141486103, + "e_status_y" : 0, + "line_name_h" : "多摩都市モノレール線" + }, + "selected" : false + }, { + "data" : { + "id" : "18353", + "source" : "8149", + "target" : "8150", + "line_name_k" : "タマモノレール", + "is_bullet" : false, + "lon" : 139.42169850770813, + "company_name_k" : "タマトシモノレール", + "zoom" : 12, + "SUID" : 18353, + "company_type" : 0, + "company_name_h" : "多摩都市モノレール株式会社", + "interaction" : "99334", + "shared_interaction" : "99334", + "company_url" : "http://www.tama-monorail.co.jp/", + "line_name" : "多摩モノレール", + "selected" : false, + "company_name" : "多摩都市モノレール", + "company_cd" : 146, + "name" : "9933404 (99334) 9933405", + "rr_cd" : 99, + "company_name_r" : "多摩モノレール", + "e_status_x" : 0, + "shared_name" : "9933404 (99334) 9933405", + "lat" : 35.69743141486103, + "e_status_y" : 0, + "line_name_h" : "多摩都市モノレール線" + }, + "selected" : false + }, { + "data" : { + "id" : "16121", + "source" : "5758", + "target" : "5759", + "line_name_k" : "トウキュウデンエントシセン", + "is_bullet" : false, + "lon" : 139.58465916941623, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 11, + "SUID" : 16121, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26003", + "shared_interaction" : "26003", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急田園都市線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600323 (26003) 2600324", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600323 (26003) 2600324", + "lat" : 35.58324215005882, + "e_status_y" : 0, + "line_name_h" : "東急田園都市線" + }, + "selected" : false + }, { + "data" : { + "id" : "18354", + "source" : "8150", + "target" : "8151", + "line_name_k" : "タマモノレール", + "is_bullet" : false, + "lon" : 139.42169850770813, + "company_name_k" : "タマトシモノレール", + "zoom" : 12, + "SUID" : 18354, + "company_type" : 0, + "company_name_h" : "多摩都市モノレール株式会社", + "interaction" : "99334", + "shared_interaction" : "99334", + "company_url" : "http://www.tama-monorail.co.jp/", + "line_name" : "多摩モノレール", + "selected" : false, + "company_name" : "多摩都市モノレール", + "company_cd" : 146, + "name" : "9933405 (99334) 9933406", + "rr_cd" : 99, + "company_name_r" : "多摩モノレール", + "e_status_x" : 0, + "shared_name" : "9933405 (99334) 9933406", + "lat" : 35.69743141486103, + "e_status_y" : 0, + "line_name_h" : "多摩都市モノレール線" + }, + "selected" : false + }, { + "data" : { + "id" : "16122", + "source" : "5759", + "target" : "5760", + "line_name_k" : "トウキュウデンエントシセン", + "is_bullet" : false, + "lon" : 139.58465916941623, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 11, + "SUID" : 16122, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26003", + "shared_interaction" : "26003", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急田園都市線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600324 (26003) 2600325", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600324 (26003) 2600325", + "lat" : 35.58324215005882, + "e_status_y" : 0, + "line_name_h" : "東急田園都市線" + }, + "selected" : false + }, { + "data" : { + "id" : "18355", + "source" : "8151", + "target" : "8152", + "line_name_k" : "タマモノレール", + "is_bullet" : false, + "lon" : 139.42169850770813, + "company_name_k" : "タマトシモノレール", + "zoom" : 12, + "SUID" : 18355, + "company_type" : 0, + "company_name_h" : "多摩都市モノレール株式会社", + "interaction" : "99334", + "shared_interaction" : "99334", + "company_url" : "http://www.tama-monorail.co.jp/", + "line_name" : "多摩モノレール", + "selected" : false, + "company_name" : "多摩都市モノレール", + "company_cd" : 146, + "name" : "9933406 (99334) 9933407", + "rr_cd" : 99, + "company_name_r" : "多摩モノレール", + "e_status_x" : 0, + "shared_name" : "9933406 (99334) 9933407", + "lat" : 35.69743141486103, + "e_status_y" : 0, + "line_name_h" : "多摩都市モノレール線" + }, + "selected" : false + }, { + "data" : { + "id" : "18356", + "source" : "8152", + "target" : "8153", + "line_name_k" : "タマモノレール", + "is_bullet" : false, + "lon" : 139.42169850770813, + "company_name_k" : "タマトシモノレール", + "zoom" : 12, + "SUID" : 18356, + "company_type" : 0, + "company_name_h" : "多摩都市モノレール株式会社", + "interaction" : "99334", + "shared_interaction" : "99334", + "company_url" : "http://www.tama-monorail.co.jp/", + "line_name" : "多摩モノレール", + "selected" : false, + "company_name" : "多摩都市モノレール", + "company_cd" : 146, + "name" : "9933407 (99334) 9933408", + "rr_cd" : 99, + "company_name_r" : "多摩モノレール", + "e_status_x" : 0, + "shared_name" : "9933407 (99334) 9933408", + "lat" : 35.69743141486103, + "e_status_y" : 0, + "line_name_h" : "多摩都市モノレール線" + }, + "selected" : false + }, { + "data" : { + "id" : "18357", + "source" : "8153", + "target" : "8154", + "line_name_k" : "タマモノレール", + "is_bullet" : false, + "lon" : 139.42169850770813, + "company_name_k" : "タマトシモノレール", + "zoom" : 12, + "SUID" : 18357, + "company_type" : 0, + "company_name_h" : "多摩都市モノレール株式会社", + "interaction" : "99334", + "shared_interaction" : "99334", + "company_url" : "http://www.tama-monorail.co.jp/", + "line_name" : "多摩モノレール", + "selected" : false, + "company_name" : "多摩都市モノレール", + "company_cd" : 146, + "name" : "9933408 (99334) 9933409", + "rr_cd" : 99, + "company_name_r" : "多摩モノレール", + "e_status_x" : 0, + "shared_name" : "9933408 (99334) 9933409", + "lat" : 35.69743141486103, + "e_status_y" : 0, + "line_name_h" : "多摩都市モノレール線" + }, + "selected" : false + }, { + "data" : { + "id" : "18358", + "source" : "8154", + "target" : "8155", + "line_name_k" : "タマモノレール", + "is_bullet" : false, + "lon" : 139.42169850770813, + "company_name_k" : "タマトシモノレール", + "zoom" : 12, + "SUID" : 18358, + "company_type" : 0, + "company_name_h" : "多摩都市モノレール株式会社", + "interaction" : "99334", + "shared_interaction" : "99334", + "company_url" : "http://www.tama-monorail.co.jp/", + "line_name" : "多摩モノレール", + "selected" : false, + "company_name" : "多摩都市モノレール", + "company_cd" : 146, + "name" : "9933409 (99334) 9933410", + "rr_cd" : 99, + "company_name_r" : "多摩モノレール", + "e_status_x" : 0, + "shared_name" : "9933409 (99334) 9933410", + "lat" : 35.69743141486103, + "e_status_y" : 0, + "line_name_h" : "多摩都市モノレール線" + }, + "selected" : false + }, { + "data" : { + "id" : "16125", + "source" : "5763", + "target" : "5764", + "line_name_k" : "トウキュウオオイマチセン", + "is_bullet" : false, + "lon" : 139.67537624870124, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 12, + "SUID" : 16125, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26004", + "shared_interaction" : "26004", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急大井町線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600401 (26004) 2600402", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600401 (26004) 2600402", + "lat" : 35.607027243076224, + "e_status_y" : 0, + "line_name_h" : "東急大井町線" + }, + "selected" : false + }, { + "data" : { + "id" : "18359", + "source" : "8155", + "target" : "8156", + "line_name_k" : "タマモノレール", + "is_bullet" : false, + "lon" : 139.42169850770813, + "company_name_k" : "タマトシモノレール", + "zoom" : 12, + "SUID" : 18359, + "company_type" : 0, + "company_name_h" : "多摩都市モノレール株式会社", + "interaction" : "99334", + "shared_interaction" : "99334", + "company_url" : "http://www.tama-monorail.co.jp/", + "line_name" : "多摩モノレール", + "selected" : false, + "company_name" : "多摩都市モノレール", + "company_cd" : 146, + "name" : "9933410 (99334) 9933411", + "rr_cd" : 99, + "company_name_r" : "多摩モノレール", + "e_status_x" : 0, + "shared_name" : "9933410 (99334) 9933411", + "lat" : 35.69743141486103, + "e_status_y" : 0, + "line_name_h" : "多摩都市モノレール線" + }, + "selected" : false + }, { + "data" : { + "id" : "18360", + "source" : "8156", + "target" : "8157", + "line_name_k" : "タマモノレール", + "is_bullet" : false, + "lon" : 139.42169850770813, + "company_name_k" : "タマトシモノレール", + "zoom" : 12, + "SUID" : 18360, + "company_type" : 0, + "company_name_h" : "多摩都市モノレール株式会社", + "interaction" : "99334", + "shared_interaction" : "99334", + "company_url" : "http://www.tama-monorail.co.jp/", + "line_name" : "多摩モノレール", + "selected" : false, + "company_name" : "多摩都市モノレール", + "company_cd" : 146, + "name" : "9933411 (99334) 9933412", + "rr_cd" : 99, + "company_name_r" : "多摩モノレール", + "e_status_x" : 0, + "shared_name" : "9933411 (99334) 9933412", + "lat" : 35.69743141486103, + "e_status_y" : 0, + "line_name_h" : "多摩都市モノレール線" + }, + "selected" : false + }, { + "data" : { + "id" : "16126", + "source" : "5764", + "target" : "5765", + "line_name_k" : "トウキュウオオイマチセン", + "is_bullet" : false, + "lon" : 139.67537624870124, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 12, + "SUID" : 16126, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26004", + "shared_interaction" : "26004", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急大井町線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600402 (26004) 2600403", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600402 (26004) 2600403", + "lat" : 35.607027243076224, + "e_status_y" : 0, + "line_name_h" : "東急大井町線" + }, + "selected" : false + }, { + "data" : { + "id" : "16128", + "source" : "5766", + "target" : "5767", + "line_name_k" : "トウキュウオオイマチセン", + "is_bullet" : false, + "lon" : 139.67537624870124, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 12, + "SUID" : 16128, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26004", + "shared_interaction" : "26004", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急大井町線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600404 (26004) 2600405", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600404 (26004) 2600405", + "lat" : 35.607027243076224, + "e_status_y" : 0, + "line_name_h" : "東急大井町線" + }, + "selected" : false + }, { + "data" : { + "id" : "16127", + "source" : "5765", + "target" : "5766", + "line_name_k" : "トウキュウオオイマチセン", + "is_bullet" : false, + "lon" : 139.67537624870124, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 12, + "SUID" : 16127, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26004", + "shared_interaction" : "26004", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急大井町線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600403 (26004) 2600404", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600403 (26004) 2600404", + "lat" : 35.607027243076224, + "e_status_y" : 0, + "line_name_h" : "東急大井町線" + }, + "selected" : false + }, { + "data" : { + "id" : "18378", + "source" : "8176", + "target" : "8177", + "line_name_k" : "トウキョウモノレール", + "is_bullet" : false, + "lon" : 139.76328619095784, + "company_name_k" : "トウキョウモノレール", + "zoom" : 12, + "SUID" : 18378, + "company_type" : 0, + "company_name_h" : "東京モノレール株式会社", + "interaction" : "99336", + "shared_interaction" : "99336", + "company_url" : "http://www.tokyo-monorail.co.jp/", + "line_name" : "東京モノレール", + "selected" : false, + "company_name" : "東京モノレール", + "company_cd" : 148, + "name" : "9933602 (99336) 9933603", + "rr_cd" : 99, + "company_name_r" : "東京モノレール", + "e_status_x" : 0, + "shared_name" : "9933602 (99336) 9933603", + "lat" : 35.59102280877391, + "e_status_y" : 0, + "line_name_h" : "東京モノレール羽田空港線" + }, + "selected" : false + }, { + "data" : { + "id" : "16130", + "source" : "5768", + "target" : "5769", + "line_name_k" : "トウキュウオオイマチセン", + "is_bullet" : false, + "lon" : 139.67537624870124, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 12, + "SUID" : 16130, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26004", + "shared_interaction" : "26004", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急大井町線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600406 (26004) 2600407", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600406 (26004) 2600407", + "lat" : 35.607027243076224, + "e_status_y" : 0, + "line_name_h" : "東急大井町線" + }, + "selected" : false + }, { + "data" : { + "id" : "18377", + "source" : "8175", + "target" : "8176", + "line_name_k" : "トウキョウモノレール", + "is_bullet" : false, + "lon" : 139.76328619095784, + "company_name_k" : "トウキョウモノレール", + "zoom" : 12, + "SUID" : 18377, + "company_type" : 0, + "company_name_h" : "東京モノレール株式会社", + "interaction" : "99336", + "shared_interaction" : "99336", + "company_url" : "http://www.tokyo-monorail.co.jp/", + "line_name" : "東京モノレール", + "selected" : false, + "company_name" : "東京モノレール", + "company_cd" : 148, + "name" : "9933601 (99336) 9933602", + "rr_cd" : 99, + "company_name_r" : "東京モノレール", + "e_status_x" : 0, + "shared_name" : "9933601 (99336) 9933602", + "lat" : 35.59102280877391, + "e_status_y" : 0, + "line_name_h" : "東京モノレール羽田空港線" + }, + "selected" : false + }, { + "data" : { + "id" : "16129", + "source" : "5767", + "target" : "5768", + "line_name_k" : "トウキュウオオイマチセン", + "is_bullet" : false, + "lon" : 139.67537624870124, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 12, + "SUID" : 16129, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26004", + "shared_interaction" : "26004", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急大井町線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600405 (26004) 2600406", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600405 (26004) 2600406", + "lat" : 35.607027243076224, + "e_status_y" : 0, + "line_name_h" : "東急大井町線" + }, + "selected" : false + }, { + "data" : { + "id" : "18380", + "source" : "8178", + "target" : "8179", + "line_name_k" : "トウキョウモノレール", + "is_bullet" : false, + "lon" : 139.76328619095784, + "company_name_k" : "トウキョウモノレール", + "zoom" : 12, + "SUID" : 18380, + "company_type" : 0, + "company_name_h" : "東京モノレール株式会社", + "interaction" : "99336", + "shared_interaction" : "99336", + "company_url" : "http://www.tokyo-monorail.co.jp/", + "line_name" : "東京モノレール", + "selected" : false, + "company_name" : "東京モノレール", + "company_cd" : 148, + "name" : "9933604 (99336) 9933605", + "rr_cd" : 99, + "company_name_r" : "東京モノレール", + "e_status_x" : 0, + "shared_name" : "9933604 (99336) 9933605", + "lat" : 35.59102280877391, + "e_status_y" : 0, + "line_name_h" : "東京モノレール羽田空港線" + }, + "selected" : false + }, { + "data" : { + "id" : "16132", + "source" : "5770", + "target" : "5771", + "line_name_k" : "トウキュウオオイマチセン", + "is_bullet" : false, + "lon" : 139.67537624870124, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 12, + "SUID" : 16132, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26004", + "shared_interaction" : "26004", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急大井町線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600408 (26004) 2600409", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600408 (26004) 2600409", + "lat" : 35.607027243076224, + "e_status_y" : 0, + "line_name_h" : "東急大井町線" + }, + "selected" : false + }, { + "data" : { + "id" : "18379", + "source" : "8177", + "target" : "8178", + "line_name_k" : "トウキョウモノレール", + "is_bullet" : false, + "lon" : 139.76328619095784, + "company_name_k" : "トウキョウモノレール", + "zoom" : 12, + "SUID" : 18379, + "company_type" : 0, + "company_name_h" : "東京モノレール株式会社", + "interaction" : "99336", + "shared_interaction" : "99336", + "company_url" : "http://www.tokyo-monorail.co.jp/", + "line_name" : "東京モノレール", + "selected" : false, + "company_name" : "東京モノレール", + "company_cd" : 148, + "name" : "9933603 (99336) 9933604", + "rr_cd" : 99, + "company_name_r" : "東京モノレール", + "e_status_x" : 0, + "shared_name" : "9933603 (99336) 9933604", + "lat" : 35.59102280877391, + "e_status_y" : 0, + "line_name_h" : "東京モノレール羽田空港線" + }, + "selected" : false + }, { + "data" : { + "id" : "16131", + "source" : "5769", + "target" : "5770", + "line_name_k" : "トウキュウオオイマチセン", + "is_bullet" : false, + "lon" : 139.67537624870124, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 12, + "SUID" : 16131, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26004", + "shared_interaction" : "26004", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急大井町線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600407 (26004) 2600408", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600407 (26004) 2600408", + "lat" : 35.607027243076224, + "e_status_y" : 0, + "line_name_h" : "東急大井町線" + }, + "selected" : false + }, { + "data" : { + "id" : "18382", + "source" : "8180", + "target" : "8181", + "line_name_k" : "トウキョウモノレール", + "is_bullet" : false, + "lon" : 139.76328619095784, + "company_name_k" : "トウキョウモノレール", + "zoom" : 12, + "SUID" : 18382, + "company_type" : 0, + "company_name_h" : "東京モノレール株式会社", + "interaction" : "99336", + "shared_interaction" : "99336", + "company_url" : "http://www.tokyo-monorail.co.jp/", + "line_name" : "東京モノレール", + "selected" : false, + "company_name" : "東京モノレール", + "company_cd" : 148, + "name" : "9933606 (99336) 9933607", + "rr_cd" : 99, + "company_name_r" : "東京モノレール", + "e_status_x" : 0, + "shared_name" : "9933606 (99336) 9933607", + "lat" : 35.59102280877391, + "e_status_y" : 0, + "line_name_h" : "東京モノレール羽田空港線" + }, + "selected" : false + }, { + "data" : { + "id" : "16134", + "source" : "5772", + "target" : "5773", + "line_name_k" : "トウキュウオオイマチセン", + "is_bullet" : false, + "lon" : 139.67537624870124, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 12, + "SUID" : 16134, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26004", + "shared_interaction" : "26004", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急大井町線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600410 (26004) 2600411", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600410 (26004) 2600411", + "lat" : 35.607027243076224, + "e_status_y" : 0, + "line_name_h" : "東急大井町線" + }, + "selected" : false + }, { + "data" : { + "id" : "18381", + "source" : "8179", + "target" : "8180", + "line_name_k" : "トウキョウモノレール", + "is_bullet" : false, + "lon" : 139.76328619095784, + "company_name_k" : "トウキョウモノレール", + "zoom" : 12, + "SUID" : 18381, + "company_type" : 0, + "company_name_h" : "東京モノレール株式会社", + "interaction" : "99336", + "shared_interaction" : "99336", + "company_url" : "http://www.tokyo-monorail.co.jp/", + "line_name" : "東京モノレール", + "selected" : false, + "company_name" : "東京モノレール", + "company_cd" : 148, + "name" : "9933605 (99336) 9933606", + "rr_cd" : 99, + "company_name_r" : "東京モノレール", + "e_status_x" : 0, + "shared_name" : "9933605 (99336) 9933606", + "lat" : 35.59102280877391, + "e_status_y" : 0, + "line_name_h" : "東京モノレール羽田空港線" + }, + "selected" : false + }, { + "data" : { + "id" : "16133", + "source" : "5771", + "target" : "5772", + "line_name_k" : "トウキュウオオイマチセン", + "is_bullet" : false, + "lon" : 139.67537624870124, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 12, + "SUID" : 16133, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26004", + "shared_interaction" : "26004", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急大井町線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600409 (26004) 2600410", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600409 (26004) 2600410", + "lat" : 35.607027243076224, + "e_status_y" : 0, + "line_name_h" : "東急大井町線" + }, + "selected" : false + }, { + "data" : { + "id" : "16136", + "source" : "5774", + "target" : "5775", + "line_name_k" : "トウキュウオオイマチセン", + "is_bullet" : false, + "lon" : 139.67537624870124, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 12, + "SUID" : 16136, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26004", + "shared_interaction" : "26004", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急大井町線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600412 (26004) 2600413", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600412 (26004) 2600413", + "lat" : 35.607027243076224, + "e_status_y" : 0, + "line_name_h" : "東急大井町線" + }, + "selected" : false + }, { + "data" : { + "id" : "16135", + "source" : "5773", + "target" : "5774", + "line_name_k" : "トウキュウオオイマチセン", + "is_bullet" : false, + "lon" : 139.67537624870124, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 12, + "SUID" : 16135, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26004", + "shared_interaction" : "26004", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急大井町線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600411 (26004) 2600412", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600411 (26004) 2600412", + "lat" : 35.607027243076224, + "e_status_y" : 0, + "line_name_h" : "東急大井町線" + }, + "selected" : false + }, { + "data" : { + "id" : "16138", + "source" : "5776", + "target" : "5777", + "line_name_k" : "トウキュウオオイマチセン", + "is_bullet" : false, + "lon" : 139.67537624870124, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 12, + "SUID" : 16138, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26004", + "shared_interaction" : "26004", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急大井町線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600414 (26004) 2600415", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600414 (26004) 2600415", + "lat" : 35.607027243076224, + "e_status_y" : 0, + "line_name_h" : "東急大井町線" + }, + "selected" : false + }, { + "data" : { + "id" : "16137", + "source" : "5775", + "target" : "5776", + "line_name_k" : "トウキュウオオイマチセン", + "is_bullet" : false, + "lon" : 139.67537624870124, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 12, + "SUID" : 16137, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26004", + "shared_interaction" : "26004", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急大井町線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600413 (26004) 2600414", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600413 (26004) 2600414", + "lat" : 35.607027243076224, + "e_status_y" : 0, + "line_name_h" : "東急大井町線" + }, + "selected" : false + }, { + "data" : { + "id" : "18392", + "source" : "8191", + "target" : "8192", + "line_name_k" : "リンカイセン", + "is_bullet" : false, + "lon" : 139.7661296428223, + "company_name_k" : "トウキョウリンカイコウソクテツドウ", + "zoom" : 13, + "SUID" : 18392, + "company_type" : 0, + "company_name_h" : "東京臨海高速鉄道株式会社", + "interaction" : "99337", + "shared_interaction" : "99337", + "company_url" : "http://www.twr.co.jp/", + "line_name" : "りんかい線", + "selected" : false, + "company_name" : "東京臨海高速鉄道", + "company_cd" : 149, + "name" : "9933706 (99337) 9933707", + "rr_cd" : 99, + "company_name_r" : "東京臨海高速鉄道", + "e_status_x" : 0, + "shared_name" : "9933706 (99337) 9933707", + "lat" : 35.62373301157322, + "e_status_y" : 0, + "line_name_h" : "東京臨海高速鉄道りんかい線" + }, + "selected" : false + }, { + "data" : { + "id" : "18393", + "source" : "8192", + "target" : "8193", + "line_name_k" : "リンカイセン", + "is_bullet" : false, + "lon" : 139.7661296428223, + "company_name_k" : "トウキョウリンカイコウソクテツドウ", + "zoom" : 13, + "SUID" : 18393, + "company_type" : 0, + "company_name_h" : "東京臨海高速鉄道株式会社", + "interaction" : "99337", + "shared_interaction" : "99337", + "company_url" : "http://www.twr.co.jp/", + "line_name" : "りんかい線", + "selected" : false, + "company_name" : "東京臨海高速鉄道", + "company_cd" : 149, + "name" : "9933707 (99337) 9933708", + "rr_cd" : 99, + "company_name_r" : "東京臨海高速鉄道", + "e_status_x" : 0, + "shared_name" : "9933707 (99337) 9933708", + "lat" : 35.62373301157322, + "e_status_y" : 0, + "line_name_h" : "東京臨海高速鉄道りんかい線" + }, + "selected" : false + }, { + "data" : { + "id" : "18390", + "source" : "8189", + "target" : "8190", + "line_name_k" : "リンカイセン", + "is_bullet" : false, + "lon" : 139.7661296428223, + "company_name_k" : "トウキョウリンカイコウソクテツドウ", + "zoom" : 13, + "SUID" : 18390, + "company_type" : 0, + "company_name_h" : "東京臨海高速鉄道株式会社", + "interaction" : "99337", + "shared_interaction" : "99337", + "company_url" : "http://www.twr.co.jp/", + "line_name" : "りんかい線", + "selected" : false, + "company_name" : "東京臨海高速鉄道", + "company_cd" : 149, + "name" : "9933704 (99337) 9933705", + "rr_cd" : 99, + "company_name_r" : "東京臨海高速鉄道", + "e_status_x" : 0, + "shared_name" : "9933704 (99337) 9933705", + "lat" : 35.62373301157322, + "e_status_y" : 0, + "line_name_h" : "東京臨海高速鉄道りんかい線" + }, + "selected" : false + }, { + "data" : { + "id" : "18391", + "source" : "8190", + "target" : "8191", + "line_name_k" : "リンカイセン", + "is_bullet" : false, + "lon" : 139.7661296428223, + "company_name_k" : "トウキョウリンカイコウソクテツドウ", + "zoom" : 13, + "SUID" : 18391, + "company_type" : 0, + "company_name_h" : "東京臨海高速鉄道株式会社", + "interaction" : "99337", + "shared_interaction" : "99337", + "company_url" : "http://www.twr.co.jp/", + "line_name" : "りんかい線", + "selected" : false, + "company_name" : "東京臨海高速鉄道", + "company_cd" : 149, + "name" : "9933705 (99337) 9933706", + "rr_cd" : 99, + "company_name_r" : "東京臨海高速鉄道", + "e_status_x" : 0, + "shared_name" : "9933705 (99337) 9933706", + "lat" : 35.62373301157322, + "e_status_y" : 0, + "line_name_h" : "東京臨海高速鉄道りんかい線" + }, + "selected" : false + }, { + "data" : { + "id" : "16087", + "source" : "5723", + "target" : "5724", + "line_name_k" : "トウキュウメグロセン", + "is_bullet" : false, + "lon" : 139.67835129424657, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 13, + "SUID" : 16087, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26002", + "shared_interaction" : "26002", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急目黒線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600201 (26002) 2600202", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600201 (26002) 2600202", + "lat" : 35.603755429181255, + "e_status_y" : 0, + "line_name_h" : "東急目黒線" + }, + "selected" : false + }, { + "data" : { + "id" : "16088", + "source" : "5724", + "target" : "5725", + "line_name_k" : "トウキュウメグロセン", + "is_bullet" : false, + "lon" : 139.67835129424657, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 13, + "SUID" : 16088, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26002", + "shared_interaction" : "26002", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急目黒線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600202 (26002) 2600203", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600202 (26002) 2600203", + "lat" : 35.603755429181255, + "e_status_y" : 0, + "line_name_h" : "東急目黒線" + }, + "selected" : false + }, { + "data" : { + "id" : "16091", + "source" : "5727", + "target" : "5728", + "line_name_k" : "トウキュウメグロセン", + "is_bullet" : false, + "lon" : 139.67835129424657, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 13, + "SUID" : 16091, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26002", + "shared_interaction" : "26002", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急目黒線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600205 (26002) 2600206", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600205 (26002) 2600206", + "lat" : 35.603755429181255, + "e_status_y" : 0, + "line_name_h" : "東急目黒線" + }, + "selected" : false + }, { + "data" : { + "id" : "18385", + "source" : "8183", + "target" : "8184", + "line_name_k" : "トウキョウモノレール", + "is_bullet" : false, + "lon" : 139.76328619095784, + "company_name_k" : "トウキョウモノレール", + "zoom" : 12, + "SUID" : 18385, + "company_type" : 0, + "company_name_h" : "東京モノレール株式会社", + "interaction" : "99336", + "shared_interaction" : "99336", + "company_url" : "http://www.tokyo-monorail.co.jp/", + "line_name" : "東京モノレール", + "selected" : false, + "company_name" : "東京モノレール", + "company_cd" : 148, + "name" : "9933608 (99336) 9933609", + "rr_cd" : 99, + "company_name_r" : "東京モノレール", + "e_status_x" : 0, + "shared_name" : "9933608 (99336) 9933609", + "lat" : 35.59102280877391, + "e_status_y" : 0, + "line_name_h" : "東京モノレール羽田空港線" + }, + "selected" : false + }, { + "data" : { + "id" : "16092", + "source" : "5728", + "target" : "5729", + "line_name_k" : "トウキュウメグロセン", + "is_bullet" : false, + "lon" : 139.67835129424657, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 13, + "SUID" : 16092, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26002", + "shared_interaction" : "26002", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急目黒線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600206 (26002) 2600207", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600206 (26002) 2600207", + "lat" : 35.603755429181255, + "e_status_y" : 0, + "line_name_h" : "東急目黒線" + }, + "selected" : false + }, { + "data" : { + "id" : "18386", + "source" : "8184", + "target" : "8185", + "line_name_k" : "トウキョウモノレール", + "is_bullet" : false, + "lon" : 139.76328619095784, + "company_name_k" : "トウキョウモノレール", + "zoom" : 12, + "SUID" : 18386, + "company_type" : 0, + "company_name_h" : "東京モノレール株式会社", + "interaction" : "99336", + "shared_interaction" : "99336", + "company_url" : "http://www.tokyo-monorail.co.jp/", + "line_name" : "東京モノレール", + "selected" : false, + "company_name" : "東京モノレール", + "company_cd" : 148, + "name" : "9933609 (99336) 9933610", + "rr_cd" : 99, + "company_name_r" : "東京モノレール", + "e_status_x" : 0, + "shared_name" : "9933609 (99336) 9933610", + "lat" : 35.59102280877391, + "e_status_y" : 0, + "line_name_h" : "東京モノレール羽田空港線" + }, + "selected" : false + }, { + "data" : { + "id" : "16089", + "source" : "5725", + "target" : "5726", + "line_name_k" : "トウキュウメグロセン", + "is_bullet" : false, + "lon" : 139.67835129424657, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 13, + "SUID" : 16089, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26002", + "shared_interaction" : "26002", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急目黒線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600203 (26002) 2600204", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600203 (26002) 2600204", + "lat" : 35.603755429181255, + "e_status_y" : 0, + "line_name_h" : "東急目黒線" + }, + "selected" : false + }, { + "data" : { + "id" : "18383", + "source" : "8181", + "target" : "8182", + "line_name_k" : "トウキョウモノレール", + "is_bullet" : false, + "lon" : 139.76328619095784, + "company_name_k" : "トウキョウモノレール", + "zoom" : 12, + "SUID" : 18383, + "company_type" : 0, + "company_name_h" : "東京モノレール株式会社", + "interaction" : "99336", + "shared_interaction" : "99336", + "company_url" : "http://www.tokyo-monorail.co.jp/", + "line_name" : "東京モノレール", + "selected" : false, + "company_name" : "東京モノレール", + "company_cd" : 148, + "name" : "9933607 (99336) 9933611", + "rr_cd" : 99, + "company_name_r" : "東京モノレール", + "e_status_x" : 0, + "shared_name" : "9933607 (99336) 9933611", + "lat" : 35.59102280877391, + "e_status_y" : 0, + "line_name_h" : "東京モノレール羽田空港線" + }, + "selected" : false + }, { + "data" : { + "id" : "16090", + "source" : "5726", + "target" : "5727", + "line_name_k" : "トウキュウメグロセン", + "is_bullet" : false, + "lon" : 139.67835129424657, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 13, + "SUID" : 16090, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26002", + "shared_interaction" : "26002", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急目黒線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600204 (26002) 2600205", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600204 (26002) 2600205", + "lat" : 35.603755429181255, + "e_status_y" : 0, + "line_name_h" : "東急目黒線" + }, + "selected" : false + }, { + "data" : { + "id" : "18384", + "source" : "8182", + "target" : "8183", + "line_name_k" : "トウキョウモノレール", + "is_bullet" : false, + "lon" : 139.76328619095784, + "company_name_k" : "トウキョウモノレール", + "zoom" : 12, + "SUID" : 18384, + "company_type" : 0, + "company_name_h" : "東京モノレール株式会社", + "interaction" : "99336", + "shared_interaction" : "99336", + "company_url" : "http://www.tokyo-monorail.co.jp/", + "line_name" : "東京モノレール", + "selected" : false, + "company_name" : "東京モノレール", + "company_cd" : 148, + "name" : "9933611 (99336) 9933608", + "rr_cd" : 99, + "company_name_r" : "東京モノレール", + "e_status_x" : 0, + "shared_name" : "9933611 (99336) 9933608", + "lat" : 35.59102280877391, + "e_status_y" : 0, + "line_name_h" : "東京モノレール羽田空港線" + }, + "selected" : false + }, { + "data" : { + "id" : "18388", + "source" : "8187", + "target" : "8188", + "line_name_k" : "リンカイセン", + "is_bullet" : false, + "lon" : 139.7661296428223, + "company_name_k" : "トウキョウリンカイコウソクテツドウ", + "zoom" : 13, + "SUID" : 18388, + "company_type" : 0, + "company_name_h" : "東京臨海高速鉄道株式会社", + "interaction" : "99337", + "shared_interaction" : "99337", + "company_url" : "http://www.twr.co.jp/", + "line_name" : "りんかい線", + "selected" : false, + "company_name" : "東京臨海高速鉄道", + "company_cd" : 149, + "name" : "9933702 (99337) 9933703", + "rr_cd" : 99, + "company_name_r" : "東京臨海高速鉄道", + "e_status_x" : 0, + "shared_name" : "9933702 (99337) 9933703", + "lat" : 35.62373301157322, + "e_status_y" : 0, + "line_name_h" : "東京臨海高速鉄道りんかい線" + }, + "selected" : false + }, { + "data" : { + "id" : "18389", + "source" : "8188", + "target" : "8189", + "line_name_k" : "リンカイセン", + "is_bullet" : false, + "lon" : 139.7661296428223, + "company_name_k" : "トウキョウリンカイコウソクテツドウ", + "zoom" : 13, + "SUID" : 18389, + "company_type" : 0, + "company_name_h" : "東京臨海高速鉄道株式会社", + "interaction" : "99337", + "shared_interaction" : "99337", + "company_url" : "http://www.twr.co.jp/", + "line_name" : "りんかい線", + "selected" : false, + "company_name" : "東京臨海高速鉄道", + "company_cd" : 149, + "name" : "9933703 (99337) 9933704", + "rr_cd" : 99, + "company_name_r" : "東京臨海高速鉄道", + "e_status_x" : 0, + "shared_name" : "9933703 (99337) 9933704", + "lat" : 35.62373301157322, + "e_status_y" : 0, + "line_name_h" : "東京臨海高速鉄道りんかい線" + }, + "selected" : false + }, { + "data" : { + "id" : "16093", + "source" : "5729", + "target" : "5730", + "line_name_k" : "トウキュウメグロセン", + "is_bullet" : false, + "lon" : 139.67835129424657, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 13, + "SUID" : 16093, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26002", + "shared_interaction" : "26002", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急目黒線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600207 (26002) 2600208", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600207 (26002) 2600208", + "lat" : 35.603755429181255, + "e_status_y" : 0, + "line_name_h" : "東急目黒線" + }, + "selected" : false + }, { + "data" : { + "id" : "16094", + "source" : "5730", + "target" : "5731", + "line_name_k" : "トウキュウメグロセン", + "is_bullet" : false, + "lon" : 139.67835129424657, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 13, + "SUID" : 16094, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26002", + "shared_interaction" : "26002", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急目黒線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600208 (26002) 2600209", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600208 (26002) 2600209", + "lat" : 35.603755429181255, + "e_status_y" : 0, + "line_name_h" : "東急目黒線" + }, + "selected" : false + }, { + "data" : { + "id" : "18387", + "source" : "8186", + "target" : "8187", + "line_name_k" : "リンカイセン", + "is_bullet" : false, + "lon" : 139.7661296428223, + "company_name_k" : "トウキョウリンカイコウソクテツドウ", + "zoom" : 13, + "SUID" : 18387, + "company_type" : 0, + "company_name_h" : "東京臨海高速鉄道株式会社", + "interaction" : "99337", + "shared_interaction" : "99337", + "company_url" : "http://www.twr.co.jp/", + "line_name" : "りんかい線", + "selected" : false, + "company_name" : "東京臨海高速鉄道", + "company_cd" : 149, + "name" : "9933701 (99337) 9933702", + "rr_cd" : 99, + "company_name_r" : "東京臨海高速鉄道", + "e_status_x" : 0, + "shared_name" : "9933701 (99337) 9933702", + "lat" : 35.62373301157322, + "e_status_y" : 0, + "line_name_h" : "東京臨海高速鉄道りんかい線" + }, + "selected" : false + }, { + "data" : { + "id" : "16099", + "source" : "5736", + "target" : "5737", + "line_name_k" : "トウキュウデンエントシセン", + "is_bullet" : false, + "lon" : 139.58465916941623, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 11, + "SUID" : 16099, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26003", + "shared_interaction" : "26003", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急田園都市線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600301 (26003) 2600302", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600301 (26003) 2600302", + "lat" : 35.58324215005882, + "e_status_y" : 0, + "line_name_h" : "東急田園都市線" + }, + "selected" : false + }, { + "data" : { + "id" : "16103", + "source" : "5740", + "target" : "5741", + "line_name_k" : "トウキュウデンエントシセン", + "is_bullet" : false, + "lon" : 139.58465916941623, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 11, + "SUID" : 16103, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26003", + "shared_interaction" : "26003", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急田園都市線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600305 (26003) 2600306", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600305 (26003) 2600306", + "lat" : 35.58324215005882, + "e_status_y" : 0, + "line_name_h" : "東急田園都市線" + }, + "selected" : false + }, { + "data" : { + "id" : "16102", + "source" : "5739", + "target" : "5740", + "line_name_k" : "トウキュウデンエントシセン", + "is_bullet" : false, + "lon" : 139.58465916941623, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 11, + "SUID" : 16102, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26003", + "shared_interaction" : "26003", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急田園都市線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600304 (26003) 2600305", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600304 (26003) 2600305", + "lat" : 35.58324215005882, + "e_status_y" : 0, + "line_name_h" : "東急田園都市線" + }, + "selected" : false + }, { + "data" : { + "id" : "16101", + "source" : "5738", + "target" : "5739", + "line_name_k" : "トウキュウデンエントシセン", + "is_bullet" : false, + "lon" : 139.58465916941623, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 11, + "SUID" : 16101, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26003", + "shared_interaction" : "26003", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急田園都市線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600303 (26003) 2600304", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600303 (26003) 2600304", + "lat" : 35.58324215005882, + "e_status_y" : 0, + "line_name_h" : "東急田園都市線" + }, + "selected" : false + }, { + "data" : { + "id" : "16100", + "source" : "5737", + "target" : "5738", + "line_name_k" : "トウキュウデンエントシセン", + "is_bullet" : false, + "lon" : 139.58465916941623, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 11, + "SUID" : 16100, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26003", + "shared_interaction" : "26003", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急田園都市線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600302 (26003) 2600303", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600302 (26003) 2600303", + "lat" : 35.58324215005882, + "e_status_y" : 0, + "line_name_h" : "東急田園都市線" + }, + "selected" : false + }, { + "data" : { + "id" : "16104", + "source" : "5741", + "target" : "5742", + "line_name_k" : "トウキュウデンエントシセン", + "is_bullet" : false, + "lon" : 139.58465916941623, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 11, + "SUID" : 16104, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26003", + "shared_interaction" : "26003", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急田園都市線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600306 (26003) 2600307", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600306 (26003) 2600307", + "lat" : 35.58324215005882, + "e_status_y" : 0, + "line_name_h" : "東急田園都市線" + }, + "selected" : false + }, { + "data" : { + "id" : "16065", + "source" : "5699", + "target" : "5700", + "line_name_k" : "オダキュウタマセン", + "is_bullet" : false, + "lon" : 139.4602937407226, + "company_name_k" : "オダキュウデンテツ", + "zoom" : 13, + "SUID" : 16065, + "company_type" : 2, + "company_name_h" : "小田急電鉄株式会社", + "interaction" : "25003", + "shared_interaction" : "25003", + "company_url" : "http://www.odakyu.jp/", + "line_name" : "小田急多摩線", + "selected" : false, + "company_name" : "小田急電鉄", + "company_cd" : 15, + "name" : "2500306 (25003) 2500307", + "rr_cd" : 25, + "company_name_r" : "小田急", + "e_status_x" : 0, + "shared_name" : "2500306 (25003) 2500307", + "lat" : 35.61945834975, + "e_status_y" : 0, + "line_name_h" : "小田急多摩線" + }, + "selected" : false + }, { + "data" : { + "id" : "16066", + "source" : "5700", + "target" : "5701", + "line_name_k" : "オダキュウタマセン", + "is_bullet" : false, + "lon" : 139.4602937407226, + "company_name_k" : "オダキュウデンテツ", + "zoom" : 13, + "SUID" : 16066, + "company_type" : 2, + "company_name_h" : "小田急電鉄株式会社", + "interaction" : "25003", + "shared_interaction" : "25003", + "company_url" : "http://www.odakyu.jp/", + "line_name" : "小田急多摩線", + "selected" : false, + "company_name" : "小田急電鉄", + "company_cd" : 15, + "name" : "2500307 (25003) 2500308", + "rr_cd" : 25, + "company_name_r" : "小田急", + "e_status_x" : 0, + "shared_name" : "2500307 (25003) 2500308", + "lat" : 35.61945834975, + "e_status_y" : 0, + "line_name_h" : "小田急多摩線" + }, + "selected" : false + }, { + "data" : { + "id" : "16071", + "source" : "5706", + "target" : "5707", + "line_name_k" : "トウキュウトウヨコセン", + "is_bullet" : false, + "lon" : 139.66832596832717, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 11, + "SUID" : 16071, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26001", + "shared_interaction" : "26001", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急東横線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600105 (26001) 2600106", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600105 (26001) 2600106", + "lat" : 35.58608048810499, + "e_status_y" : 0, + "line_name_h" : "東急東横線" + }, + "selected" : false + }, { + "data" : { + "id" : "16070", + "source" : "5705", + "target" : "5706", + "line_name_k" : "トウキュウトウヨコセン", + "is_bullet" : false, + "lon" : 139.66832596832717, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 11, + "SUID" : 16070, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26001", + "shared_interaction" : "26001", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急東横線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600104 (26001) 2600105", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600104 (26001) 2600105", + "lat" : 35.58608048810499, + "e_status_y" : 0, + "line_name_h" : "東急東横線" + }, + "selected" : false + }, { + "data" : { + "id" : "16073", + "source" : "5708", + "target" : "5709", + "line_name_k" : "トウキュウトウヨコセン", + "is_bullet" : false, + "lon" : 139.66832596832717, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 11, + "SUID" : 16073, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26001", + "shared_interaction" : "26001", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急東横線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600107 (26001) 2600108", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600107 (26001) 2600108", + "lat" : 35.58608048810499, + "e_status_y" : 0, + "line_name_h" : "東急東横線" + }, + "selected" : false + }, { + "data" : { + "id" : "16072", + "source" : "5707", + "target" : "5708", + "line_name_k" : "トウキュウトウヨコセン", + "is_bullet" : false, + "lon" : 139.66832596832717, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 11, + "SUID" : 16072, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26001", + "shared_interaction" : "26001", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急東横線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600106 (26001) 2600107", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600106 (26001) 2600107", + "lat" : 35.58608048810499, + "e_status_y" : 0, + "line_name_h" : "東急東横線" + }, + "selected" : false + }, { + "data" : { + "id" : "16067", + "source" : "5702", + "target" : "5703", + "line_name_k" : "トウキュウトウヨコセン", + "is_bullet" : false, + "lon" : 139.66832596832717, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 11, + "SUID" : 16067, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26001", + "shared_interaction" : "26001", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急東横線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600101 (26001) 2600102", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600101 (26001) 2600102", + "lat" : 35.58608048810499, + "e_status_y" : 0, + "line_name_h" : "東急東横線" + }, + "selected" : false + }, { + "data" : { + "id" : "16069", + "source" : "5704", + "target" : "5705", + "line_name_k" : "トウキュウトウヨコセン", + "is_bullet" : false, + "lon" : 139.66832596832717, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 11, + "SUID" : 16069, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26001", + "shared_interaction" : "26001", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急東横線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600103 (26001) 2600104", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600103 (26001) 2600104", + "lat" : 35.58608048810499, + "e_status_y" : 0, + "line_name_h" : "東急東横線" + }, + "selected" : false + }, { + "data" : { + "id" : "16068", + "source" : "5703", + "target" : "5704", + "line_name_k" : "トウキュウトウヨコセン", + "is_bullet" : false, + "lon" : 139.66832596832717, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 11, + "SUID" : 16068, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26001", + "shared_interaction" : "26001", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急東横線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600102 (26001) 2600103", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600102 (26001) 2600103", + "lat" : 35.58608048810499, + "e_status_y" : 0, + "line_name_h" : "東急東横線" + }, + "selected" : false + }, { + "data" : { + "id" : "16074", + "source" : "5709", + "target" : "5710", + "line_name_k" : "トウキュウトウヨコセン", + "is_bullet" : false, + "lon" : 139.66832596832717, + "company_name_k" : "トウキョウデンテツ", + "zoom" : 11, + "SUID" : 16074, + "company_type" : 2, + "company_name_h" : "東京急行電鉄株式会社", + "interaction" : "26001", + "shared_interaction" : "26001", + "company_url" : "http://www.tokyu.co.jp/", + "line_name" : "東急東横線", + "selected" : false, + "company_name" : "東急電鉄", + "company_cd" : 16, + "name" : "2600108 (26001) 2600109", + "rr_cd" : 26, + "company_name_r" : "東急", + "e_status_x" : 0, + "shared_name" : "2600108 (26001) 2600109", + "lat" : 35.58608048810499, + "e_status_y" : 0, + "line_name_h" : "東急東横線" + }, + "selected" : false + }, { + "data" : { + "id" : "16023", + "source" : "5655", + "target" : "5656", + "line_name_k" : "オダキュウセン", + "is_bullet" : false, + "lon" : 139.43477539316441, + "company_name_k" : "オダキュウデンテツ", + "zoom" : 11, + "SUID" : 16023, + "company_type" : 2, + "company_name_h" : "小田急電鉄株式会社", + "interaction" : "25001", + "shared_interaction" : "25001", + "company_url" : "http://www.odakyu.jp/", + "line_name" : "小田急線", + "selected" : false, + "company_name" : "小田急電鉄", + "company_cd" : 15, + "name" : "2500126 (25001) 2500127", + "rr_cd" : 25, + "company_name_r" : "小田急", + "e_status_x" : 0, + "shared_name" : "2500126 (25001) 2500127", + "lat" : 35.528535238628024, + "e_status_y" : 0, + "line_name_h" : "小田急小田原線" + }, + "selected" : false + }, { + "data" : { + "id" : "16022", + "source" : "5654", + "target" : "5655", + "line_name_k" : "オダキュウセン", + "is_bullet" : false, + "lon" : 139.43477539316441, + "company_name_k" : "オダキュウデンテツ", + "zoom" : 11, + "SUID" : 16022, + "company_type" : 2, + "company_name_h" : "小田急電鉄株式会社", + "interaction" : "25001", + "shared_interaction" : "25001", + "company_url" : "http://www.odakyu.jp/", + "line_name" : "小田急線", + "selected" : false, + "company_name" : "小田急電鉄", + "company_cd" : 15, + "name" : "2500125 (25001) 2500126", + "rr_cd" : 25, + "company_name_r" : "小田急", + "e_status_x" : 0, + "shared_name" : "2500125 (25001) 2500126", + "lat" : 35.528535238628024, + "e_status_y" : 0, + "line_name_h" : "小田急小田原線" + }, + "selected" : false + }, { + "data" : { + "id" : "18352", + "source" : "8148", + "target" : "8149", + "line_name_k" : "タマモノレール", + "is_bullet" : false, + "lon" : 139.42169850770813, + "company_name_k" : "タマトシモノレール", + "zoom" : 12, + "SUID" : 18352, + "company_type" : 0, + "company_name_h" : "多摩都市モノレール株式会社", + "interaction" : "99334", + "shared_interaction" : "99334", + "company_url" : "http://www.tama-monorail.co.jp/", + "line_name" : "多摩モノレール", + "selected" : false, + "company_name" : "多摩都市モノレール", + "company_cd" : 146, + "name" : "9933403 (99334) 9933404", + "rr_cd" : 99, + "company_name_r" : "多摩モノレール", + "e_status_x" : 0, + "shared_name" : "9933403 (99334) 9933404", + "lat" : 35.69743141486103, + "e_status_y" : 0, + "line_name_h" : "多摩都市モノレール線" + }, + "selected" : false + }, { + "data" : { + "id" : "18351", + "source" : "8147", + "target" : "8148", + "line_name_k" : "タマモノレール", + "is_bullet" : false, + "lon" : 139.42169850770813, + "company_name_k" : "タマトシモノレール", + "zoom" : 12, + "SUID" : 18351, + "company_type" : 0, + "company_name_h" : "多摩都市モノレール株式会社", + "interaction" : "99334", + "shared_interaction" : "99334", + "company_url" : "http://www.tama-monorail.co.jp/", + "line_name" : "多摩モノレール", + "selected" : false, + "company_name" : "多摩都市モノレール", + "company_cd" : 146, + "name" : "9933402 (99334) 9933403", + "rr_cd" : 99, + "company_name_r" : "多摩モノレール", + "e_status_x" : 0, + "shared_name" : "9933402 (99334) 9933403", + "lat" : 35.69743141486103, + "e_status_y" : 0, + "line_name_h" : "多摩都市モノレール線" + }, + "selected" : false + }, { + "data" : { + "id" : "18350", + "source" : "8146", + "target" : "8147", + "line_name_k" : "タマモノレール", + "is_bullet" : false, + "lon" : 139.42169850770813, + "company_name_k" : "タマトシモノレール", + "zoom" : 12, + "SUID" : 18350, + "company_type" : 0, + "company_name_h" : "多摩都市モノレール株式会社", + "interaction" : "99334", + "shared_interaction" : "99334", + "company_url" : "http://www.tama-monorail.co.jp/", + "line_name" : "多摩モノレール", + "selected" : false, + "company_name" : "多摩都市モノレール", + "company_cd" : 146, + "name" : "9933401 (99334) 9933402", + "rr_cd" : 99, + "company_name_r" : "多摩モノレール", + "e_status_x" : 0, + "shared_name" : "9933401 (99334) 9933402", + "lat" : 35.69743141486103, + "e_status_y" : 0, + "line_name_h" : "多摩都市モノレール線" + }, + "selected" : false + }, { + "data" : { + "id" : "18012", + "source" : "7783", + "target" : "7784", + "line_name_k" : "ツクバエクスプレス", + "is_bullet" : false, + "lon" : 139.93750930625004, + "company_name_k" : "シュトケンシントシテツドウ", + "zoom" : 10, + "SUID" : 18012, + "company_type" : 0, + "company_name_h" : "首都圏新都市鉄道株式会社", + "interaction" : "99309", + "shared_interaction" : "99309", + "company_url" : "http://www.mir.co.jp/", + "line_name" : "つくばエクスプレス", + "selected" : false, + "company_name" : "首都圏新都市鉄道", + "company_cd" : 123, + "name" : "9930902 (99309) 9930903", + "rr_cd" : 99, + "company_name_r" : "首都圏新都市鉄道", + "e_status_x" : 0, + "shared_name" : "9930902 (99309) 9930903", + "lat" : 35.90577190655735, + "e_status_y" : 0, + "line_name_h" : "首都圏新都市鉄道つくばエクスプレス" + }, + "selected" : false + }, { + "data" : { + "id" : "18013", + "source" : "7784", + "target" : "7785", + "line_name_k" : "ツクバエクスプレス", + "is_bullet" : false, + "lon" : 139.93750930625004, + "company_name_k" : "シュトケンシントシテツドウ", + "zoom" : 10, + "SUID" : 18013, + "company_type" : 0, + "company_name_h" : "首都圏新都市鉄道株式会社", + "interaction" : "99309", + "shared_interaction" : "99309", + "company_url" : "http://www.mir.co.jp/", + "line_name" : "つくばエクスプレス", + "selected" : false, + "company_name" : "首都圏新都市鉄道", + "company_cd" : 123, + "name" : "9930903 (99309) 9930904", + "rr_cd" : 99, + "company_name_r" : "首都圏新都市鉄道", + "e_status_x" : 0, + "shared_name" : "9930903 (99309) 9930904", + "lat" : 35.90577190655735, + "e_status_y" : 0, + "line_name_h" : "首都圏新都市鉄道つくばエクスプレス" + }, + "selected" : false + }, { + "data" : { + "id" : "18011", + "source" : "7782", + "target" : "7783", + "line_name_k" : "ツクバエクスプレス", + "is_bullet" : false, + "lon" : 139.93750930625004, + "company_name_k" : "シュトケンシントシテツドウ", + "zoom" : 10, + "SUID" : 18011, + "company_type" : 0, + "company_name_h" : "首都圏新都市鉄道株式会社", + "interaction" : "99309", + "shared_interaction" : "99309", + "company_url" : "http://www.mir.co.jp/", + "line_name" : "つくばエクスプレス", + "selected" : false, + "company_name" : "首都圏新都市鉄道", + "company_cd" : 123, + "name" : "9930901 (99309) 9930902", + "rr_cd" : 99, + "company_name_r" : "首都圏新都市鉄道", + "e_status_x" : 0, + "shared_name" : "9930901 (99309) 9930902", + "lat" : 35.90577190655735, + "e_status_y" : 0, + "line_name_h" : "首都圏新都市鉄道つくばエクスプレス" + }, + "selected" : false + }, { + "data" : { + "id" : "18016", + "source" : "7787", + "target" : "7788", + "line_name_k" : "ツクバエクスプレス", + "is_bullet" : false, + "lon" : 139.93750930625004, + "company_name_k" : "シュトケンシントシテツドウ", + "zoom" : 10, + "SUID" : 18016, + "company_type" : 0, + "company_name_h" : "首都圏新都市鉄道株式会社", + "interaction" : "99309", + "shared_interaction" : "99309", + "company_url" : "http://www.mir.co.jp/", + "line_name" : "つくばエクスプレス", + "selected" : false, + "company_name" : "首都圏新都市鉄道", + "company_cd" : 123, + "name" : "9930906 (99309) 9930907", + "rr_cd" : 99, + "company_name_r" : "首都圏新都市鉄道", + "e_status_x" : 0, + "shared_name" : "9930906 (99309) 9930907", + "lat" : 35.90577190655735, + "e_status_y" : 0, + "line_name_h" : "首都圏新都市鉄道つくばエクスプレス" + }, + "selected" : false + }, { + "data" : { + "id" : "18014", + "source" : "7785", + "target" : "7786", + "line_name_k" : "ツクバエクスプレス", + "is_bullet" : false, + "lon" : 139.93750930625004, + "company_name_k" : "シュトケンシントシテツドウ", + "zoom" : 10, + "SUID" : 18014, + "company_type" : 0, + "company_name_h" : "首都圏新都市鉄道株式会社", + "interaction" : "99309", + "shared_interaction" : "99309", + "company_url" : "http://www.mir.co.jp/", + "line_name" : "つくばエクスプレス", + "selected" : false, + "company_name" : "首都圏新都市鉄道", + "company_cd" : 123, + "name" : "9930904 (99309) 9930905", + "rr_cd" : 99, + "company_name_r" : "首都圏新都市鉄道", + "e_status_x" : 0, + "shared_name" : "9930904 (99309) 9930905", + "lat" : 35.90577190655735, + "e_status_y" : 0, + "line_name_h" : "首都圏新都市鉄道つくばエクスプレス" + }, + "selected" : false + }, { + "data" : { + "id" : "18015", + "source" : "7786", + "target" : "7787", + "line_name_k" : "ツクバエクスプレス", + "is_bullet" : false, + "lon" : 139.93750930625004, + "company_name_k" : "シュトケンシントシテツドウ", + "zoom" : 10, + "SUID" : 18015, + "company_type" : 0, + "company_name_h" : "首都圏新都市鉄道株式会社", + "interaction" : "99309", + "shared_interaction" : "99309", + "company_url" : "http://www.mir.co.jp/", + "line_name" : "つくばエクスプレス", + "selected" : false, + "company_name" : "首都圏新都市鉄道", + "company_cd" : 123, + "name" : "9930905 (99309) 9930906", + "rr_cd" : 99, + "company_name_r" : "首都圏新都市鉄道", + "e_status_x" : 0, + "shared_name" : "9930905 (99309) 9930906", + "lat" : 35.90577190655735, + "e_status_y" : 0, + "line_name_h" : "首都圏新都市鉄道つくばエクスプレス" + }, + "selected" : false + }, { + "data" : { + "id" : "18040", + "source" : "7813", + "target" : "7814", + "line_name_k" : "ユリカモメ", + "is_bullet" : false, + "lon" : 139.77494982373048, + "company_name_k" : "ユリカモメ", + "zoom" : 13, + "SUID" : 18040, + "company_type" : 0, + "company_name_h" : "株式会社ゆりかもめ", + "interaction" : "99311", + "shared_interaction" : "99311", + "company_url" : "http://www.yurikamome.co.jp/", + "line_name" : "ゆりかもめ", + "selected" : false, + "company_name" : "ゆりかもめ", + "company_cd" : 125, + "name" : "9931106 (99311) 9931107", + "rr_cd" : 99, + "company_name_r" : "ゆりかもめ", + "e_status_x" : 0, + "shared_name" : "9931106 (99311) 9931107", + "lat" : 35.64286984685855, + "e_status_y" : 0, + "line_name_h" : "ゆりかもめ東京臨海新交通臨海線" + }, + "selected" : false + }, { + "data" : { + "id" : "18041", + "source" : "7814", + "target" : "7815", + "line_name_k" : "ユリカモメ", + "is_bullet" : false, + "lon" : 139.77494982373048, + "company_name_k" : "ユリカモメ", + "zoom" : 13, + "SUID" : 18041, + "company_type" : 0, + "company_name_h" : "株式会社ゆりかもめ", + "interaction" : "99311", + "shared_interaction" : "99311", + "company_url" : "http://www.yurikamome.co.jp/", + "line_name" : "ゆりかもめ", + "selected" : false, + "company_name" : "ゆりかもめ", + "company_cd" : 125, + "name" : "9931107 (99311) 9931108", + "rr_cd" : 99, + "company_name_r" : "ゆりかもめ", + "e_status_x" : 0, + "shared_name" : "9931107 (99311) 9931108", + "lat" : 35.64286984685855, + "e_status_y" : 0, + "line_name_h" : "ゆりかもめ東京臨海新交通臨海線" + }, + "selected" : false + }, { + "data" : { + "id" : "18042", + "source" : "7815", + "target" : "7816", + "line_name_k" : "ユリカモメ", + "is_bullet" : false, + "lon" : 139.77494982373048, + "company_name_k" : "ユリカモメ", + "zoom" : 13, + "SUID" : 18042, + "company_type" : 0, + "company_name_h" : "株式会社ゆりかもめ", + "interaction" : "99311", + "shared_interaction" : "99311", + "company_url" : "http://www.yurikamome.co.jp/", + "line_name" : "ゆりかもめ", + "selected" : false, + "company_name" : "ゆりかもめ", + "company_cd" : 125, + "name" : "9931108 (99311) 9931109", + "rr_cd" : 99, + "company_name_r" : "ゆりかもめ", + "e_status_x" : 0, + "shared_name" : "9931108 (99311) 9931109", + "lat" : 35.64286984685855, + "e_status_y" : 0, + "line_name_h" : "ゆりかもめ東京臨海新交通臨海線" + }, + "selected" : false + }, { + "data" : { + "id" : "18043", + "source" : "7816", + "target" : "7817", + "line_name_k" : "ユリカモメ", + "is_bullet" : false, + "lon" : 139.77494982373048, + "company_name_k" : "ユリカモメ", + "zoom" : 13, + "SUID" : 18043, + "company_type" : 0, + "company_name_h" : "株式会社ゆりかもめ", + "interaction" : "99311", + "shared_interaction" : "99311", + "company_url" : "http://www.yurikamome.co.jp/", + "line_name" : "ゆりかもめ", + "selected" : false, + "company_name" : "ゆりかもめ", + "company_cd" : 125, + "name" : "9931109 (99311) 9931110", + "rr_cd" : 99, + "company_name_r" : "ゆりかもめ", + "e_status_x" : 0, + "shared_name" : "9931109 (99311) 9931110", + "lat" : 35.64286984685855, + "e_status_y" : 0, + "line_name_h" : "ゆりかもめ東京臨海新交通臨海線" + }, + "selected" : false + }, { + "data" : { + "id" : "18044", + "source" : "7817", + "target" : "7818", + "line_name_k" : "ユリカモメ", + "is_bullet" : false, + "lon" : 139.77494982373048, + "company_name_k" : "ユリカモメ", + "zoom" : 13, + "SUID" : 18044, + "company_type" : 0, + "company_name_h" : "株式会社ゆりかもめ", + "interaction" : "99311", + "shared_interaction" : "99311", + "company_url" : "http://www.yurikamome.co.jp/", + "line_name" : "ゆりかもめ", + "selected" : false, + "company_name" : "ゆりかもめ", + "company_cd" : 125, + "name" : "9931110 (99311) 9931111", + "rr_cd" : 99, + "company_name_r" : "ゆりかもめ", + "e_status_x" : 0, + "shared_name" : "9931110 (99311) 9931111", + "lat" : 35.64286984685855, + "e_status_y" : 0, + "line_name_h" : "ゆりかもめ東京臨海新交通臨海線" + }, + "selected" : false + }, { + "data" : { + "id" : "18045", + "source" : "7818", + "target" : "7819", + "line_name_k" : "ユリカモメ", + "is_bullet" : false, + "lon" : 139.77494982373048, + "company_name_k" : "ユリカモメ", + "zoom" : 13, + "SUID" : 18045, + "company_type" : 0, + "company_name_h" : "株式会社ゆりかもめ", + "interaction" : "99311", + "shared_interaction" : "99311", + "company_url" : "http://www.yurikamome.co.jp/", + "line_name" : "ゆりかもめ", + "selected" : false, + "company_name" : "ゆりかもめ", + "company_cd" : 125, + "name" : "9931111 (99311) 9931112", + "rr_cd" : 99, + "company_name_r" : "ゆりかもめ", + "e_status_x" : 0, + "shared_name" : "9931111 (99311) 9931112", + "lat" : 35.64286984685855, + "e_status_y" : 0, + "line_name_h" : "ゆりかもめ東京臨海新交通臨海線" + }, + "selected" : false + }, { + "data" : { + "id" : "18046", + "source" : "7819", + "target" : "7820", + "line_name_k" : "ユリカモメ", + "is_bullet" : false, + "lon" : 139.77494982373048, + "company_name_k" : "ユリカモメ", + "zoom" : 13, + "SUID" : 18046, + "company_type" : 0, + "company_name_h" : "株式会社ゆりかもめ", + "interaction" : "99311", + "shared_interaction" : "99311", + "company_url" : "http://www.yurikamome.co.jp/", + "line_name" : "ゆりかもめ", + "selected" : false, + "company_name" : "ゆりかもめ", + "company_cd" : 125, + "name" : "9931112 (99311) 9931113", + "rr_cd" : 99, + "company_name_r" : "ゆりかもめ", + "e_status_x" : 0, + "shared_name" : "9931112 (99311) 9931113", + "lat" : 35.64286984685855, + "e_status_y" : 0, + "line_name_h" : "ゆりかもめ東京臨海新交通臨海線" + }, + "selected" : false + }, { + "data" : { + "id" : "18047", + "source" : "7820", + "target" : "7821", + "line_name_k" : "ユリカモメ", + "is_bullet" : false, + "lon" : 139.77494982373048, + "company_name_k" : "ユリカモメ", + "zoom" : 13, + "SUID" : 18047, + "company_type" : 0, + "company_name_h" : "株式会社ゆりかもめ", + "interaction" : "99311", + "shared_interaction" : "99311", + "company_url" : "http://www.yurikamome.co.jp/", + "line_name" : "ゆりかもめ", + "selected" : false, + "company_name" : "ゆりかもめ", + "company_cd" : 125, + "name" : "9931113 (99311) 9931114", + "rr_cd" : 99, + "company_name_r" : "ゆりかもめ", + "e_status_x" : 0, + "shared_name" : "9931113 (99311) 9931114", + "lat" : 35.64286984685855, + "e_status_y" : 0, + "line_name_h" : "ゆりかもめ東京臨海新交通臨海線" + }, + "selected" : false + }, { + "data" : { + "id" : "18048", + "source" : "7821", + "target" : "7822", + "line_name_k" : "ユリカモメ", + "is_bullet" : false, + "lon" : 139.77494982373048, + "company_name_k" : "ユリカモメ", + "zoom" : 13, + "SUID" : 18048, + "company_type" : 0, + "company_name_h" : "株式会社ゆりかもめ", + "interaction" : "99311", + "shared_interaction" : "99311", + "company_url" : "http://www.yurikamome.co.jp/", + "line_name" : "ゆりかもめ", + "selected" : false, + "company_name" : "ゆりかもめ", + "company_cd" : 125, + "name" : "9931114 (99311) 9931115", + "rr_cd" : 99, + "company_name_r" : "ゆりかもめ", + "e_status_x" : 0, + "shared_name" : "9931114 (99311) 9931115", + "lat" : 35.64286984685855, + "e_status_y" : 0, + "line_name_h" : "ゆりかもめ東京臨海新交通臨海線" + }, + "selected" : false + }, { + "data" : { + "id" : "18049", + "source" : "7822", + "target" : "7823", + "line_name_k" : "ユリカモメ", + "is_bullet" : false, + "lon" : 139.77494982373048, + "company_name_k" : "ユリカモメ", + "zoom" : 13, + "SUID" : 18049, + "company_type" : 0, + "company_name_h" : "株式会社ゆりかもめ", + "interaction" : "99311", + "shared_interaction" : "99311", + "company_url" : "http://www.yurikamome.co.jp/", + "line_name" : "ゆりかもめ", + "selected" : false, + "company_name" : "ゆりかもめ", + "company_cd" : 125, + "name" : "9931115 (99311) 9931116", + "rr_cd" : 99, + "company_name_r" : "ゆりかもめ", + "e_status_x" : 0, + "shared_name" : "9931115 (99311) 9931116", + "lat" : 35.64286984685855, + "e_status_y" : 0, + "line_name_h" : "ゆりかもめ東京臨海新交通臨海線" + }, + "selected" : false + }, { + "data" : { + "id" : "18035", + "source" : "7808", + "target" : "7809", + "line_name_k" : "ユリカモメ", + "is_bullet" : false, + "lon" : 139.77494982373048, + "company_name_k" : "ユリカモメ", + "zoom" : 13, + "SUID" : 18035, + "company_type" : 0, + "company_name_h" : "株式会社ゆりかもめ", + "interaction" : "99311", + "shared_interaction" : "99311", + "company_url" : "http://www.yurikamome.co.jp/", + "line_name" : "ゆりかもめ", + "selected" : false, + "company_name" : "ゆりかもめ", + "company_cd" : 125, + "name" : "9931101 (99311) 9931102", + "rr_cd" : 99, + "company_name_r" : "ゆりかもめ", + "e_status_x" : 0, + "shared_name" : "9931101 (99311) 9931102", + "lat" : 35.64286984685855, + "e_status_y" : 0, + "line_name_h" : "ゆりかもめ東京臨海新交通臨海線" + }, + "selected" : false + }, { + "data" : { + "id" : "18037", + "source" : "7810", + "target" : "7811", + "line_name_k" : "ユリカモメ", + "is_bullet" : false, + "lon" : 139.77494982373048, + "company_name_k" : "ユリカモメ", + "zoom" : 13, + "SUID" : 18037, + "company_type" : 0, + "company_name_h" : "株式会社ゆりかもめ", + "interaction" : "99311", + "shared_interaction" : "99311", + "company_url" : "http://www.yurikamome.co.jp/", + "line_name" : "ゆりかもめ", + "selected" : false, + "company_name" : "ゆりかもめ", + "company_cd" : 125, + "name" : "9931103 (99311) 9931104", + "rr_cd" : 99, + "company_name_r" : "ゆりかもめ", + "e_status_x" : 0, + "shared_name" : "9931103 (99311) 9931104", + "lat" : 35.64286984685855, + "e_status_y" : 0, + "line_name_h" : "ゆりかもめ東京臨海新交通臨海線" + }, + "selected" : false + }, { + "data" : { + "id" : "18036", + "source" : "7809", + "target" : "7810", + "line_name_k" : "ユリカモメ", + "is_bullet" : false, + "lon" : 139.77494982373048, + "company_name_k" : "ユリカモメ", + "zoom" : 13, + "SUID" : 18036, + "company_type" : 0, + "company_name_h" : "株式会社ゆりかもめ", + "interaction" : "99311", + "shared_interaction" : "99311", + "company_url" : "http://www.yurikamome.co.jp/", + "line_name" : "ゆりかもめ", + "selected" : false, + "company_name" : "ゆりかもめ", + "company_cd" : 125, + "name" : "9931102 (99311) 9931103", + "rr_cd" : 99, + "company_name_r" : "ゆりかもめ", + "e_status_x" : 0, + "shared_name" : "9931102 (99311) 9931103", + "lat" : 35.64286984685855, + "e_status_y" : 0, + "line_name_h" : "ゆりかもめ東京臨海新交通臨海線" + }, + "selected" : false + }, { + "data" : { + "id" : "18039", + "source" : "7812", + "target" : "7813", + "line_name_k" : "ユリカモメ", + "is_bullet" : false, + "lon" : 139.77494982373048, + "company_name_k" : "ユリカモメ", + "zoom" : 13, + "SUID" : 18039, + "company_type" : 0, + "company_name_h" : "株式会社ゆりかもめ", + "interaction" : "99311", + "shared_interaction" : "99311", + "company_url" : "http://www.yurikamome.co.jp/", + "line_name" : "ゆりかもめ", + "selected" : false, + "company_name" : "ゆりかもめ", + "company_cd" : 125, + "name" : "9931105 (99311) 9931106", + "rr_cd" : 99, + "company_name_r" : "ゆりかもめ", + "e_status_x" : 0, + "shared_name" : "9931105 (99311) 9931106", + "lat" : 35.64286984685855, + "e_status_y" : 0, + "line_name_h" : "ゆりかもめ東京臨海新交通臨海線" + }, + "selected" : false + }, { + "data" : { + "id" : "18038", + "source" : "7811", + "target" : "7812", + "line_name_k" : "ユリカモメ", + "is_bullet" : false, + "lon" : 139.77494982373048, + "company_name_k" : "ユリカモメ", + "zoom" : 13, + "SUID" : 18038, + "company_type" : 0, + "company_name_h" : "株式会社ゆりかもめ", + "interaction" : "99311", + "shared_interaction" : "99311", + "company_url" : "http://www.yurikamome.co.jp/", + "line_name" : "ゆりかもめ", + "selected" : false, + "company_name" : "ゆりかもめ", + "company_cd" : 125, + "name" : "9931104 (99311) 9931105", + "rr_cd" : 99, + "company_name_r" : "ゆりかもめ", + "e_status_x" : 0, + "shared_name" : "9931104 (99311) 9931105", + "lat" : 35.64286984685855, + "e_status_y" : 0, + "line_name_h" : "ゆりかもめ東京臨海新交通臨海線" + }, + "selected" : false + }, { + "data" : { + "id" : "17956", + "source" : "7723", + "target" : "7724", + "line_name_k" : "ニッポリ・トネリライナー", + "is_bullet" : false, + "lon" : 139.76949647740912, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17956, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99342", + "shared_interaction" : "99342", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "日暮里・舎人ライナー", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9934212 (99342) 9934213", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9934212 (99342) 9934213", + "lat" : 35.78182568612205, + "e_status_y" : 0, + "line_name_h" : "日暮里・舎人ライナー" + }, + "selected" : false + }, { + "data" : { + "id" : "17954", + "source" : "7721", + "target" : "7722", + "line_name_k" : "ニッポリ・トネリライナー", + "is_bullet" : false, + "lon" : 139.76949647740912, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17954, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99342", + "shared_interaction" : "99342", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "日暮里・舎人ライナー", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9934210 (99342) 9934211", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9934210 (99342) 9934211", + "lat" : 35.78182568612205, + "e_status_y" : 0, + "line_name_h" : "日暮里・舎人ライナー" + }, + "selected" : false + }, { + "data" : { + "id" : "17955", + "source" : "7722", + "target" : "7723", + "line_name_k" : "ニッポリ・トネリライナー", + "is_bullet" : false, + "lon" : 139.76949647740912, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17955, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99342", + "shared_interaction" : "99342", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "日暮里・舎人ライナー", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9934211 (99342) 9934212", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9934211 (99342) 9934212", + "lat" : 35.78182568612205, + "e_status_y" : 0, + "line_name_h" : "日暮里・舎人ライナー" + }, + "selected" : false + }, { + "data" : { + "id" : "17952", + "source" : "7719", + "target" : "7720", + "line_name_k" : "ニッポリ・トネリライナー", + "is_bullet" : false, + "lon" : 139.76949647740912, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17952, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99342", + "shared_interaction" : "99342", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "日暮里・舎人ライナー", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9934208 (99342) 9934209", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9934208 (99342) 9934209", + "lat" : 35.78182568612205, + "e_status_y" : 0, + "line_name_h" : "日暮里・舎人ライナー" + }, + "selected" : false + }, { + "data" : { + "id" : "17953", + "source" : "7720", + "target" : "7721", + "line_name_k" : "ニッポリ・トネリライナー", + "is_bullet" : false, + "lon" : 139.76949647740912, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17953, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99342", + "shared_interaction" : "99342", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "日暮里・舎人ライナー", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9934209 (99342) 9934210", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9934209 (99342) 9934210", + "lat" : 35.78182568612205, + "e_status_y" : 0, + "line_name_h" : "日暮里・舎人ライナー" + }, + "selected" : false + }, { + "data" : { + "id" : "17950", + "source" : "7717", + "target" : "7718", + "line_name_k" : "ニッポリ・トネリライナー", + "is_bullet" : false, + "lon" : 139.76949647740912, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17950, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99342", + "shared_interaction" : "99342", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "日暮里・舎人ライナー", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9934206 (99342) 9934207", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9934206 (99342) 9934207", + "lat" : 35.78182568612205, + "e_status_y" : 0, + "line_name_h" : "日暮里・舎人ライナー" + }, + "selected" : false + }, { + "data" : { + "id" : "17951", + "source" : "7718", + "target" : "7719", + "line_name_k" : "ニッポリ・トネリライナー", + "is_bullet" : false, + "lon" : 139.76949647740912, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17951, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99342", + "shared_interaction" : "99342", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "日暮里・舎人ライナー", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9934207 (99342) 9934208", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9934207 (99342) 9934208", + "lat" : 35.78182568612205, + "e_status_y" : 0, + "line_name_h" : "日暮里・舎人ライナー" + }, + "selected" : false + }, { + "data" : { + "id" : "17942", + "source" : "7708", + "target" : "7709", + "line_name_k" : "トデンアラカワセン", + "is_bullet" : false, + "lon" : 139.74861502275394, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 13, + "SUID" : 17942, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99305", + "shared_interaction" : "99305", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都電荒川線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930527 (99305) 9930528", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930527 (99305) 9930528", + "lat" : 35.735016925780094, + "e_status_y" : 0, + "line_name_h" : "都営都電荒川線" + }, + "selected" : false + }, { + "data" : { + "id" : "17941", + "source" : "7707", + "target" : "7708", + "line_name_k" : "トデンアラカワセン", + "is_bullet" : false, + "lon" : 139.74861502275394, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 13, + "SUID" : 17941, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99305", + "shared_interaction" : "99305", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都電荒川線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930526 (99305) 9930527", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930526 (99305) 9930527", + "lat" : 35.735016925780094, + "e_status_y" : 0, + "line_name_h" : "都営都電荒川線" + }, + "selected" : false + }, { + "data" : { + "id" : "17940", + "source" : "7706", + "target" : "7707", + "line_name_k" : "トデンアラカワセン", + "is_bullet" : false, + "lon" : 139.74861502275394, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 13, + "SUID" : 17940, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99305", + "shared_interaction" : "99305", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都電荒川線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930525 (99305) 9930526", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930525 (99305) 9930526", + "lat" : 35.735016925780094, + "e_status_y" : 0, + "line_name_h" : "都営都電荒川線" + }, + "selected" : false + }, { + "data" : { + "id" : "17939", + "source" : "7705", + "target" : "7706", + "line_name_k" : "トデンアラカワセン", + "is_bullet" : false, + "lon" : 139.74861502275394, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 13, + "SUID" : 17939, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99305", + "shared_interaction" : "99305", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都電荒川線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930524 (99305) 9930525", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930524 (99305) 9930525", + "lat" : 35.735016925780094, + "e_status_y" : 0, + "line_name_h" : "都営都電荒川線" + }, + "selected" : false + }, { + "data" : { + "id" : "17938", + "source" : "7704", + "target" : "7705", + "line_name_k" : "トデンアラカワセン", + "is_bullet" : false, + "lon" : 139.74861502275394, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 13, + "SUID" : 17938, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99305", + "shared_interaction" : "99305", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都電荒川線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930523 (99305) 9930524", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930523 (99305) 9930524", + "lat" : 35.735016925780094, + "e_status_y" : 0, + "line_name_h" : "都営都電荒川線" + }, + "selected" : false + }, { + "data" : { + "id" : "17937", + "source" : "7703", + "target" : "7704", + "line_name_k" : "トデンアラカワセン", + "is_bullet" : false, + "lon" : 139.74861502275394, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 13, + "SUID" : 17937, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99305", + "shared_interaction" : "99305", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都電荒川線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930522 (99305) 9930523", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930522 (99305) 9930523", + "lat" : 35.735016925780094, + "e_status_y" : 0, + "line_name_h" : "都営都電荒川線" + }, + "selected" : false + }, { + "data" : { + "id" : "17936", + "source" : "7702", + "target" : "7703", + "line_name_k" : "トデンアラカワセン", + "is_bullet" : false, + "lon" : 139.74861502275394, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 13, + "SUID" : 17936, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99305", + "shared_interaction" : "99305", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都電荒川線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930521 (99305) 9930522", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930521 (99305) 9930522", + "lat" : 35.735016925780094, + "e_status_y" : 0, + "line_name_h" : "都営都電荒川線" + }, + "selected" : false + }, { + "data" : { + "id" : "16420", + "source" : "6077", + "target" : "6078", + "line_name_k" : "フクトシンセン", + "is_bullet" : false, + "lon" : 139.686663477539, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16420, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28010", + "shared_interaction" : "28010", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ副都心線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2801015 (28010) 2801016", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2801015 (28010) 2801016", + "lat" : 35.731442005432505, + "e_status_y" : 0, + "line_name_h" : "東京メトロ副都心線" + }, + "selected" : false + }, { + "data" : { + "id" : "17935", + "source" : "7701", + "target" : "7702", + "line_name_k" : "トデンアラカワセン", + "is_bullet" : false, + "lon" : 139.74861502275394, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 13, + "SUID" : 17935, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99305", + "shared_interaction" : "99305", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都電荒川線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930520 (99305) 9930521", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930520 (99305) 9930521", + "lat" : 35.735016925780094, + "e_status_y" : 0, + "line_name_h" : "都営都電荒川線" + }, + "selected" : false + }, { + "data" : { + "id" : "17949", + "source" : "7716", + "target" : "7717", + "line_name_k" : "ニッポリ・トネリライナー", + "is_bullet" : false, + "lon" : 139.76949647740912, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17949, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99342", + "shared_interaction" : "99342", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "日暮里・舎人ライナー", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9934205 (99342) 9934206", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9934205 (99342) 9934206", + "lat" : 35.78182568612205, + "e_status_y" : 0, + "line_name_h" : "日暮里・舎人ライナー" + }, + "selected" : false + }, { + "data" : { + "id" : "16419", + "source" : "6076", + "target" : "6077", + "line_name_k" : "フクトシンセン", + "is_bullet" : false, + "lon" : 139.686663477539, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16419, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28010", + "shared_interaction" : "28010", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ副都心線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2801014 (28010) 2801015", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2801014 (28010) 2801015", + "lat" : 35.731442005432505, + "e_status_y" : 0, + "line_name_h" : "東京メトロ副都心線" + }, + "selected" : false + }, { + "data" : { + "id" : "16418", + "source" : "6075", + "target" : "6076", + "line_name_k" : "フクトシンセン", + "is_bullet" : false, + "lon" : 139.686663477539, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16418, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28010", + "shared_interaction" : "28010", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ副都心線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2801013 (28010) 2801014", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2801013 (28010) 2801014", + "lat" : 35.731442005432505, + "e_status_y" : 0, + "line_name_h" : "東京メトロ副都心線" + }, + "selected" : false + }, { + "data" : { + "id" : "17948", + "source" : "7715", + "target" : "7716", + "line_name_k" : "ニッポリ・トネリライナー", + "is_bullet" : false, + "lon" : 139.76949647740912, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17948, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99342", + "shared_interaction" : "99342", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "日暮里・舎人ライナー", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9934204 (99342) 9934205", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9934204 (99342) 9934205", + "lat" : 35.78182568612205, + "e_status_y" : 0, + "line_name_h" : "日暮里・舎人ライナー" + }, + "selected" : false + }, { + "data" : { + "id" : "16417", + "source" : "6074", + "target" : "6075", + "line_name_k" : "フクトシンセン", + "is_bullet" : false, + "lon" : 139.686663477539, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16417, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28010", + "shared_interaction" : "28010", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ副都心線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2801012 (28010) 2801013", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2801012 (28010) 2801013", + "lat" : 35.731442005432505, + "e_status_y" : 0, + "line_name_h" : "東京メトロ副都心線" + }, + "selected" : false + }, { + "data" : { + "id" : "17947", + "source" : "7714", + "target" : "7715", + "line_name_k" : "ニッポリ・トネリライナー", + "is_bullet" : false, + "lon" : 139.76949647740912, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17947, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99342", + "shared_interaction" : "99342", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "日暮里・舎人ライナー", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9934203 (99342) 9934204", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9934203 (99342) 9934204", + "lat" : 35.78182568612205, + "e_status_y" : 0, + "line_name_h" : "日暮里・舎人ライナー" + }, + "selected" : false + }, { + "data" : { + "id" : "16416", + "source" : "6073", + "target" : "6074", + "line_name_k" : "フクトシンセン", + "is_bullet" : false, + "lon" : 139.686663477539, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16416, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28010", + "shared_interaction" : "28010", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ副都心線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2801011 (28010) 2801012", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2801011 (28010) 2801012", + "lat" : 35.731442005432505, + "e_status_y" : 0, + "line_name_h" : "東京メトロ副都心線" + }, + "selected" : false + }, { + "data" : { + "id" : "17946", + "source" : "7713", + "target" : "7714", + "line_name_k" : "ニッポリ・トネリライナー", + "is_bullet" : false, + "lon" : 139.76949647740912, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17946, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99342", + "shared_interaction" : "99342", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "日暮里・舎人ライナー", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9934202 (99342) 9934203", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9934202 (99342) 9934203", + "lat" : 35.78182568612205, + "e_status_y" : 0, + "line_name_h" : "日暮里・舎人ライナー" + }, + "selected" : false + }, { + "data" : { + "id" : "16415", + "source" : "6072", + "target" : "6073", + "line_name_k" : "フクトシンセン", + "is_bullet" : false, + "lon" : 139.686663477539, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16415, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28010", + "shared_interaction" : "28010", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ副都心線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2801010 (28010) 2801011", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2801010 (28010) 2801011", + "lat" : 35.731442005432505, + "e_status_y" : 0, + "line_name_h" : "東京メトロ副都心線" + }, + "selected" : false + }, { + "data" : { + "id" : "17945", + "source" : "7712", + "target" : "7713", + "line_name_k" : "ニッポリ・トネリライナー", + "is_bullet" : false, + "lon" : 139.76949647740912, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17945, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99342", + "shared_interaction" : "99342", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "日暮里・舎人ライナー", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9934201 (99342) 9934202", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9934201 (99342) 9934202", + "lat" : 35.78182568612205, + "e_status_y" : 0, + "line_name_h" : "日暮里・舎人ライナー" + }, + "selected" : false + }, { + "data" : { + "id" : "16414", + "source" : "6071", + "target" : "6072", + "line_name_k" : "フクトシンセン", + "is_bullet" : false, + "lon" : 139.686663477539, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16414, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28010", + "shared_interaction" : "28010", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ副都心線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2801009 (28010) 2801010", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2801009 (28010) 2801010", + "lat" : 35.731442005432505, + "e_status_y" : 0, + "line_name_h" : "東京メトロ副都心線" + }, + "selected" : false + }, { + "data" : { + "id" : "16413", + "source" : "6070", + "target" : "6071", + "line_name_k" : "フクトシンセン", + "is_bullet" : false, + "lon" : 139.686663477539, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16413, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28010", + "shared_interaction" : "28010", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ副都心線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2801008 (28010) 2801009", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2801008 (28010) 2801009", + "lat" : 35.731442005432505, + "e_status_y" : 0, + "line_name_h" : "東京メトロ副都心線" + }, + "selected" : false + }, { + "data" : { + "id" : "17944", + "source" : "7710", + "target" : "7711", + "line_name_k" : "トデンアラカワセン", + "is_bullet" : false, + "lon" : 139.74861502275394, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 13, + "SUID" : 17944, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99305", + "shared_interaction" : "99305", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都電荒川線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930529 (99305) 9930530", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930529 (99305) 9930530", + "lat" : 35.735016925780094, + "e_status_y" : 0, + "line_name_h" : "都営都電荒川線" + }, + "selected" : false + }, { + "data" : { + "id" : "16412", + "source" : "6069", + "target" : "6070", + "line_name_k" : "フクトシンセン", + "is_bullet" : false, + "lon" : 139.686663477539, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16412, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28010", + "shared_interaction" : "28010", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ副都心線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2801007 (28010) 2801008", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2801007 (28010) 2801008", + "lat" : 35.731442005432505, + "e_status_y" : 0, + "line_name_h" : "東京メトロ副都心線" + }, + "selected" : false + }, { + "data" : { + "id" : "17943", + "source" : "7709", + "target" : "7710", + "line_name_k" : "トデンアラカワセン", + "is_bullet" : false, + "lon" : 139.74861502275394, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 13, + "SUID" : 17943, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99305", + "shared_interaction" : "99305", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都電荒川線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930528 (99305) 9930529", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930528 (99305) 9930529", + "lat" : 35.735016925780094, + "e_status_y" : 0, + "line_name_h" : "都営都電荒川線" + }, + "selected" : false + }, { + "data" : { + "id" : "16408", + "source" : "6065", + "target" : "6066", + "line_name_k" : "フクトシンセン", + "is_bullet" : false, + "lon" : 139.686663477539, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16408, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28010", + "shared_interaction" : "28010", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ副都心線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2801003 (28010) 2801004", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2801003 (28010) 2801004", + "lat" : 35.731442005432505, + "e_status_y" : 0, + "line_name_h" : "東京メトロ副都心線" + }, + "selected" : false + }, { + "data" : { + "id" : "16409", + "source" : "6066", + "target" : "6067", + "line_name_k" : "フクトシンセン", + "is_bullet" : false, + "lon" : 139.686663477539, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16409, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28010", + "shared_interaction" : "28010", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ副都心線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2801004 (28010) 2801005", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2801004 (28010) 2801005", + "lat" : 35.731442005432505, + "e_status_y" : 0, + "line_name_h" : "東京メトロ副都心線" + }, + "selected" : false + }, { + "data" : { + "id" : "16410", + "source" : "6067", + "target" : "6068", + "line_name_k" : "フクトシンセン", + "is_bullet" : false, + "lon" : 139.686663477539, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16410, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28010", + "shared_interaction" : "28010", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ副都心線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2801005 (28010) 2801006", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2801005 (28010) 2801006", + "lat" : 35.731442005432505, + "e_status_y" : 0, + "line_name_h" : "東京メトロ副都心線" + }, + "selected" : false + }, { + "data" : { + "id" : "16411", + "source" : "6068", + "target" : "6069", + "line_name_k" : "フクトシンセン", + "is_bullet" : false, + "lon" : 139.686663477539, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16411, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28010", + "shared_interaction" : "28010", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ副都心線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2801006 (28010) 2801007", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2801006 (28010) 2801007", + "lat" : 35.731442005432505, + "e_status_y" : 0, + "line_name_h" : "東京メトロ副都心線" + }, + "selected" : false + }, { + "data" : { + "id" : "16405", + "source" : "6061", + "target" : "6062", + "line_name_k" : "ナンボクセン", + "is_bullet" : false, + "lon" : 139.73433187075705, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16405, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28009", + "shared_interaction" : "28009", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ南北線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800918 (28009) 2800919", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800918 (28009) 2800919", + "lat" : 35.710299718407505, + "e_status_y" : 0, + "line_name_h" : "東京メトロ南北線" + }, + "selected" : false + }, { + "data" : { + "id" : "16407", + "source" : "6064", + "target" : "6065", + "line_name_k" : "フクトシンセン", + "is_bullet" : false, + "lon" : 139.686663477539, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16407, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28010", + "shared_interaction" : "28010", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ副都心線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2801002 (28010) 2801003", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2801002 (28010) 2801003", + "lat" : 35.731442005432505, + "e_status_y" : 0, + "line_name_h" : "東京メトロ副都心線" + }, + "selected" : false + }, { + "data" : { + "id" : "16401", + "source" : "6057", + "target" : "6058", + "line_name_k" : "ナンボクセン", + "is_bullet" : false, + "lon" : 139.73433187075705, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16401, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28009", + "shared_interaction" : "28009", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ南北線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800914 (28009) 2800915", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800914 (28009) 2800915", + "lat" : 35.710299718407505, + "e_status_y" : 0, + "line_name_h" : "東京メトロ南北線" + }, + "selected" : false + }, { + "data" : { + "id" : "16402", + "source" : "6058", + "target" : "6059", + "line_name_k" : "ナンボクセン", + "is_bullet" : false, + "lon" : 139.73433187075705, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16402, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28009", + "shared_interaction" : "28009", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ南北線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800915 (28009) 2800916", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800915 (28009) 2800916", + "lat" : 35.710299718407505, + "e_status_y" : 0, + "line_name_h" : "東京メトロ南北線" + }, + "selected" : false + }, { + "data" : { + "id" : "16403", + "source" : "6059", + "target" : "6060", + "line_name_k" : "ナンボクセン", + "is_bullet" : false, + "lon" : 139.73433187075705, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16403, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28009", + "shared_interaction" : "28009", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ南北線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800916 (28009) 2800917", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800916 (28009) 2800917", + "lat" : 35.710299718407505, + "e_status_y" : 0, + "line_name_h" : "東京メトロ南北線" + }, + "selected" : false + }, { + "data" : { + "id" : "16404", + "source" : "6060", + "target" : "6061", + "line_name_k" : "ナンボクセン", + "is_bullet" : false, + "lon" : 139.73433187075705, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16404, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28009", + "shared_interaction" : "28009", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ南北線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800917 (28009) 2800918", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800917 (28009) 2800918", + "lat" : 35.710299718407505, + "e_status_y" : 0, + "line_name_h" : "東京メトロ南北線" + }, + "selected" : false + }, { + "data" : { + "id" : "16397", + "source" : "6053", + "target" : "6054", + "line_name_k" : "ナンボクセン", + "is_bullet" : false, + "lon" : 139.73433187075705, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16397, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28009", + "shared_interaction" : "28009", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ南北線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800910 (28009) 2800911", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800910 (28009) 2800911", + "lat" : 35.710299718407505, + "e_status_y" : 0, + "line_name_h" : "東京メトロ南北線" + }, + "selected" : false + }, { + "data" : { + "id" : "16398", + "source" : "6054", + "target" : "6055", + "line_name_k" : "ナンボクセン", + "is_bullet" : false, + "lon" : 139.73433187075705, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16398, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28009", + "shared_interaction" : "28009", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ南北線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800911 (28009) 2800912", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800911 (28009) 2800912", + "lat" : 35.710299718407505, + "e_status_y" : 0, + "line_name_h" : "東京メトロ南北線" + }, + "selected" : false + }, { + "data" : { + "id" : "16399", + "source" : "6055", + "target" : "6056", + "line_name_k" : "ナンボクセン", + "is_bullet" : false, + "lon" : 139.73433187075705, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16399, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28009", + "shared_interaction" : "28009", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ南北線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800912 (28009) 2800913", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800912 (28009) 2800913", + "lat" : 35.710299718407505, + "e_status_y" : 0, + "line_name_h" : "東京メトロ南北線" + }, + "selected" : false + }, { + "data" : { + "id" : "16400", + "source" : "6056", + "target" : "6057", + "line_name_k" : "ナンボクセン", + "is_bullet" : false, + "lon" : 139.73433187075705, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16400, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28009", + "shared_interaction" : "28009", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ南北線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800913 (28009) 2800914", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800913 (28009) 2800914", + "lat" : 35.710299718407505, + "e_status_y" : 0, + "line_name_h" : "東京メトロ南北線" + }, + "selected" : false + }, { + "data" : { + "id" : "16394", + "source" : "6050", + "target" : "6051", + "line_name_k" : "ナンボクセン", + "is_bullet" : false, + "lon" : 139.73433187075705, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16394, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28009", + "shared_interaction" : "28009", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ南北線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800907 (28009) 2800908", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800907 (28009) 2800908", + "lat" : 35.710299718407505, + "e_status_y" : 0, + "line_name_h" : "東京メトロ南北線" + }, + "selected" : false + }, { + "data" : { + "id" : "16393", + "source" : "6049", + "target" : "6050", + "line_name_k" : "ナンボクセン", + "is_bullet" : false, + "lon" : 139.73433187075705, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16393, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28009", + "shared_interaction" : "28009", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ南北線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800906 (28009) 2800907", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800906 (28009) 2800907", + "lat" : 35.710299718407505, + "e_status_y" : 0, + "line_name_h" : "東京メトロ南北線" + }, + "selected" : false + }, { + "data" : { + "id" : "16396", + "source" : "6052", + "target" : "6053", + "line_name_k" : "ナンボクセン", + "is_bullet" : false, + "lon" : 139.73433187075705, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16396, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28009", + "shared_interaction" : "28009", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ南北線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800909 (28009) 2800910", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800909 (28009) 2800910", + "lat" : 35.710299718407505, + "e_status_y" : 0, + "line_name_h" : "東京メトロ南北線" + }, + "selected" : false + }, { + "data" : { + "id" : "16395", + "source" : "6051", + "target" : "6052", + "line_name_k" : "ナンボクセン", + "is_bullet" : false, + "lon" : 139.73433187075705, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16395, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28009", + "shared_interaction" : "28009", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ南北線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800908 (28009) 2800909", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800908 (28009) 2800909", + "lat" : 35.710299718407505, + "e_status_y" : 0, + "line_name_h" : "東京メトロ南北線" + }, + "selected" : false + }, { + "data" : { + "id" : "16390", + "source" : "6046", + "target" : "6047", + "line_name_k" : "ナンボクセン", + "is_bullet" : false, + "lon" : 139.73433187075705, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16390, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28009", + "shared_interaction" : "28009", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ南北線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800903 (28009) 2800904", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800903 (28009) 2800904", + "lat" : 35.710299718407505, + "e_status_y" : 0, + "line_name_h" : "東京メトロ南北線" + }, + "selected" : false + }, { + "data" : { + "id" : "16389", + "source" : "6045", + "target" : "6046", + "line_name_k" : "ナンボクセン", + "is_bullet" : false, + "lon" : 139.73433187075705, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16389, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28009", + "shared_interaction" : "28009", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ南北線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800902 (28009) 2800903", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800902 (28009) 2800903", + "lat" : 35.710299718407505, + "e_status_y" : 0, + "line_name_h" : "東京メトロ南北線" + }, + "selected" : false + }, { + "data" : { + "id" : "16392", + "source" : "6048", + "target" : "6049", + "line_name_k" : "ナンボクセン", + "is_bullet" : false, + "lon" : 139.73433187075705, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16392, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28009", + "shared_interaction" : "28009", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ南北線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800905 (28009) 2800906", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800905 (28009) 2800906", + "lat" : 35.710299718407505, + "e_status_y" : 0, + "line_name_h" : "東京メトロ南北線" + }, + "selected" : false + }, { + "data" : { + "id" : "16391", + "source" : "6047", + "target" : "6048", + "line_name_k" : "ナンボクセン", + "is_bullet" : false, + "lon" : 139.73433187075705, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16391, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28009", + "shared_interaction" : "28009", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ南北線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800904 (28009) 2800905", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800904 (28009) 2800905", + "lat" : 35.710299718407505, + "e_status_y" : 0, + "line_name_h" : "東京メトロ南北線" + }, + "selected" : false + }, { + "data" : { + "id" : "16387", + "source" : "6042", + "target" : "6043", + "line_name_k" : "ハンゾウモンセン", + "is_bullet" : false, + "lon" : 139.76522714815565, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16387, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28008", + "shared_interaction" : "28008", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ半蔵門線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800812 (28008) 2800813", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800812 (28008) 2800813", + "lat" : 35.68813210626038, + "e_status_y" : 0, + "line_name_h" : "東京メトロ半蔵門線" + }, + "selected" : false + }, { + "data" : { + "id" : "16386", + "source" : "6041", + "target" : "6042", + "line_name_k" : "ハンゾウモンセン", + "is_bullet" : false, + "lon" : 139.76522714815565, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16386, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28008", + "shared_interaction" : "28008", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ半蔵門線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800814 (28008) 2800812", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800814 (28008) 2800812", + "lat" : 35.68813210626038, + "e_status_y" : 0, + "line_name_h" : "東京メトロ半蔵門線" + }, + "selected" : false + }, { + "data" : { + "id" : "16388", + "source" : "6044", + "target" : "6045", + "line_name_k" : "ナンボクセン", + "is_bullet" : false, + "lon" : 139.73433187075705, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16388, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28009", + "shared_interaction" : "28009", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ南北線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800901 (28009) 2800902", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800901 (28009) 2800902", + "lat" : 35.710299718407505, + "e_status_y" : 0, + "line_name_h" : "東京メトロ南北線" + }, + "selected" : false + }, { + "data" : { + "id" : "16383", + "source" : "6038", + "target" : "6039", + "line_name_k" : "ハンゾウモンセン", + "is_bullet" : false, + "lon" : 139.76522714815565, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16383, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28008", + "shared_interaction" : "28008", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ半蔵門線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800809 (28008) 2800810", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800809 (28008) 2800810", + "lat" : 35.68813210626038, + "e_status_y" : 0, + "line_name_h" : "東京メトロ半蔵門線" + }, + "selected" : false + }, { + "data" : { + "id" : "16382", + "source" : "6037", + "target" : "6038", + "line_name_k" : "ハンゾウモンセン", + "is_bullet" : false, + "lon" : 139.76522714815565, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16382, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28008", + "shared_interaction" : "28008", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ半蔵門線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800808 (28008) 2800809", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800808 (28008) 2800809", + "lat" : 35.68813210626038, + "e_status_y" : 0, + "line_name_h" : "東京メトロ半蔵門線" + }, + "selected" : false + }, { + "data" : { + "id" : "16385", + "source" : "6040", + "target" : "6041", + "line_name_k" : "ハンゾウモンセン", + "is_bullet" : false, + "lon" : 139.76522714815565, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16385, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28008", + "shared_interaction" : "28008", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ半蔵門線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800811 (28008) 2800814", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800811 (28008) 2800814", + "lat" : 35.68813210626038, + "e_status_y" : 0, + "line_name_h" : "東京メトロ半蔵門線" + }, + "selected" : false + }, { + "data" : { + "id" : "16384", + "source" : "6039", + "target" : "6040", + "line_name_k" : "ハンゾウモンセン", + "is_bullet" : false, + "lon" : 139.76522714815565, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16384, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28008", + "shared_interaction" : "28008", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ半蔵門線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800810 (28008) 2800811", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800810 (28008) 2800811", + "lat" : 35.68813210626038, + "e_status_y" : 0, + "line_name_h" : "東京メトロ半蔵門線" + }, + "selected" : false + }, { + "data" : { + "id" : "16371", + "source" : "6024", + "target" : "6025", + "line_name_k" : "ユウラクチョウセン", + "is_bullet" : false, + "lon" : 139.70420434309565, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16371, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28006", + "shared_interaction" : "28006", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ有楽町線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800621 (28006) 2800622", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800621 (28006) 2800622", + "lat" : 35.73316551916096, + "e_status_y" : 0, + "line_name_h" : "東京メトロ有楽町線" + }, + "selected" : false + }, { + "data" : { + "id" : "16370", + "source" : "6023", + "target" : "6024", + "line_name_k" : "ユウラクチョウセン", + "is_bullet" : false, + "lon" : 139.70420434309565, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16370, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28006", + "shared_interaction" : "28006", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ有楽町線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800620 (28006) 2800621", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800620 (28006) 2800621", + "lat" : 35.73316551916096, + "e_status_y" : 0, + "line_name_h" : "東京メトロ有楽町線" + }, + "selected" : false + }, { + "data" : { + "id" : "16369", + "source" : "6022", + "target" : "6023", + "line_name_k" : "ユウラクチョウセン", + "is_bullet" : false, + "lon" : 139.70420434309565, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16369, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28006", + "shared_interaction" : "28006", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ有楽町線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800619 (28006) 2800620", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800619 (28006) 2800620", + "lat" : 35.73316551916096, + "e_status_y" : 0, + "line_name_h" : "東京メトロ有楽町線" + }, + "selected" : false + }, { + "data" : { + "id" : "16368", + "source" : "6021", + "target" : "6022", + "line_name_k" : "ユウラクチョウセン", + "is_bullet" : false, + "lon" : 139.70420434309565, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16368, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28006", + "shared_interaction" : "28006", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ有楽町線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800618 (28006) 2800619", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800618 (28006) 2800619", + "lat" : 35.73316551916096, + "e_status_y" : 0, + "line_name_h" : "東京メトロ有楽町線" + }, + "selected" : false + }, { + "data" : { + "id" : "16374", + "source" : "6028", + "target" : "6029", + "line_name_k" : "ユウラクチョウシンセン", + "is_bullet" : false, + "lon" : 139.69139009521484, + "company_name_k" : "トウキョウメトロ", + "zoom" : 14, + "SUID" : 16374, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28007", + "shared_interaction" : "28007", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ有楽町新線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800701 (28007) 2800702", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 2, + "shared_name" : "2800701 (28007) 2800702", + "lat" : 35.73819936189844, + "e_status_y" : 0, + "line_name_h" : "東京メトロ有楽町新線" + }, + "selected" : false + }, { + "data" : { + "id" : "16373", + "source" : "6026", + "target" : "6027", + "line_name_k" : "ユウラクチョウセン", + "is_bullet" : false, + "lon" : 139.70420434309565, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16373, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28006", + "shared_interaction" : "28006", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ有楽町線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800623 (28006) 2800624", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800623 (28006) 2800624", + "lat" : 35.73316551916096, + "e_status_y" : 0, + "line_name_h" : "東京メトロ有楽町線" + }, + "selected" : false + }, { + "data" : { + "id" : "16372", + "source" : "6025", + "target" : "6026", + "line_name_k" : "ユウラクチョウセン", + "is_bullet" : false, + "lon" : 139.70420434309565, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16372, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28006", + "shared_interaction" : "28006", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ有楽町線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800622 (28006) 2800623", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800622 (28006) 2800623", + "lat" : 35.73316551916096, + "e_status_y" : 0, + "line_name_h" : "東京メトロ有楽町線" + }, + "selected" : false + }, { + "data" : { + "id" : "16377", + "source" : "6032", + "target" : "6033", + "line_name_k" : "ハンゾウモンセン", + "is_bullet" : false, + "lon" : 139.76522714815565, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16377, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28008", + "shared_interaction" : "28008", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ半蔵門線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800803 (28008) 2800804", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800803 (28008) 2800804", + "lat" : 35.68813210626038, + "e_status_y" : 0, + "line_name_h" : "東京メトロ半蔵門線" + }, + "selected" : false + }, { + "data" : { + "id" : "16376", + "source" : "6031", + "target" : "6032", + "line_name_k" : "ハンゾウモンセン", + "is_bullet" : false, + "lon" : 139.76522714815565, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16376, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28008", + "shared_interaction" : "28008", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ半蔵門線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800802 (28008) 2800803", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800802 (28008) 2800803", + "lat" : 35.68813210626038, + "e_status_y" : 0, + "line_name_h" : "東京メトロ半蔵門線" + }, + "selected" : false + }, { + "data" : { + "id" : "16375", + "source" : "6030", + "target" : "6031", + "line_name_k" : "ハンゾウモンセン", + "is_bullet" : false, + "lon" : 139.76522714815565, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16375, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28008", + "shared_interaction" : "28008", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ半蔵門線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800801 (28008) 2800802", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800801 (28008) 2800802", + "lat" : 35.68813210626038, + "e_status_y" : 0, + "line_name_h" : "東京メトロ半蔵門線" + }, + "selected" : false + }, { + "data" : { + "id" : "16381", + "source" : "6036", + "target" : "6037", + "line_name_k" : "ハンゾウモンセン", + "is_bullet" : false, + "lon" : 139.76522714815565, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16381, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28008", + "shared_interaction" : "28008", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ半蔵門線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800807 (28008) 2800808", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800807 (28008) 2800808", + "lat" : 35.68813210626038, + "e_status_y" : 0, + "line_name_h" : "東京メトロ半蔵門線" + }, + "selected" : false + }, { + "data" : { + "id" : "16380", + "source" : "6035", + "target" : "6036", + "line_name_k" : "ハンゾウモンセン", + "is_bullet" : false, + "lon" : 139.76522714815565, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16380, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28008", + "shared_interaction" : "28008", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ半蔵門線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800806 (28008) 2800807", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800806 (28008) 2800807", + "lat" : 35.68813210626038, + "e_status_y" : 0, + "line_name_h" : "東京メトロ半蔵門線" + }, + "selected" : false + }, { + "data" : { + "id" : "16379", + "source" : "6034", + "target" : "6035", + "line_name_k" : "ハンゾウモンセン", + "is_bullet" : false, + "lon" : 139.76522714815565, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16379, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28008", + "shared_interaction" : "28008", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ半蔵門線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800805 (28008) 2800806", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800805 (28008) 2800806", + "lat" : 35.68813210626038, + "e_status_y" : 0, + "line_name_h" : "東京メトロ半蔵門線" + }, + "selected" : false + }, { + "data" : { + "id" : "16378", + "source" : "6033", + "target" : "6034", + "line_name_k" : "ハンゾウモンセン", + "is_bullet" : false, + "lon" : 139.76522714815565, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16378, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28008", + "shared_interaction" : "28008", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ半蔵門線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800804 (28008) 2800805", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800804 (28008) 2800805", + "lat" : 35.68813210626038, + "e_status_y" : 0, + "line_name_h" : "東京メトロ半蔵門線" + }, + "selected" : false + }, { + "data" : { + "id" : "16354", + "source" : "6007", + "target" : "6008", + "line_name_k" : "ユウラクチョウセン", + "is_bullet" : false, + "lon" : 139.70420434309565, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16354, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28006", + "shared_interaction" : "28006", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ有楽町線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800604 (28006) 2800605", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800604 (28006) 2800605", + "lat" : 35.73316551916096, + "e_status_y" : 0, + "line_name_h" : "東京メトロ有楽町線" + }, + "selected" : false + }, { + "data" : { + "id" : "16355", + "source" : "6008", + "target" : "6009", + "line_name_k" : "ユウラクチョウセン", + "is_bullet" : false, + "lon" : 139.70420434309565, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16355, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28006", + "shared_interaction" : "28006", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ有楽町線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800605 (28006) 2800606", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800605 (28006) 2800606", + "lat" : 35.73316551916096, + "e_status_y" : 0, + "line_name_h" : "東京メトロ有楽町線" + }, + "selected" : false + }, { + "data" : { + "id" : "16352", + "source" : "6005", + "target" : "6006", + "line_name_k" : "ユウラクチョウセン", + "is_bullet" : false, + "lon" : 139.70420434309565, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16352, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28006", + "shared_interaction" : "28006", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ有楽町線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800602 (28006) 2800603", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800602 (28006) 2800603", + "lat" : 35.73316551916096, + "e_status_y" : 0, + "line_name_h" : "東京メトロ有楽町線" + }, + "selected" : false + }, { + "data" : { + "id" : "16353", + "source" : "6006", + "target" : "6007", + "line_name_k" : "ユウラクチョウセン", + "is_bullet" : false, + "lon" : 139.70420434309565, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16353, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28006", + "shared_interaction" : "28006", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ有楽町線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800603 (28006) 2800604", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800603 (28006) 2800604", + "lat" : 35.73316551916096, + "e_status_y" : 0, + "line_name_h" : "東京メトロ有楽町線" + }, + "selected" : false + }, { + "data" : { + "id" : "16358", + "source" : "6011", + "target" : "6012", + "line_name_k" : "ユウラクチョウセン", + "is_bullet" : false, + "lon" : 139.70420434309565, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16358, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28006", + "shared_interaction" : "28006", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ有楽町線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800608 (28006) 2800609", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800608 (28006) 2800609", + "lat" : 35.73316551916096, + "e_status_y" : 0, + "line_name_h" : "東京メトロ有楽町線" + }, + "selected" : false + }, { + "data" : { + "id" : "16359", + "source" : "6012", + "target" : "6013", + "line_name_k" : "ユウラクチョウセン", + "is_bullet" : false, + "lon" : 139.70420434309565, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16359, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28006", + "shared_interaction" : "28006", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ有楽町線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800609 (28006) 2800610", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800609 (28006) 2800610", + "lat" : 35.73316551916096, + "e_status_y" : 0, + "line_name_h" : "東京メトロ有楽町線" + }, + "selected" : false + }, { + "data" : { + "id" : "16356", + "source" : "6009", + "target" : "6010", + "line_name_k" : "ユウラクチョウセン", + "is_bullet" : false, + "lon" : 139.70420434309565, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16356, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28006", + "shared_interaction" : "28006", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ有楽町線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800606 (28006) 2800607", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800606 (28006) 2800607", + "lat" : 35.73316551916096, + "e_status_y" : 0, + "line_name_h" : "東京メトロ有楽町線" + }, + "selected" : false + }, { + "data" : { + "id" : "16357", + "source" : "6010", + "target" : "6011", + "line_name_k" : "ユウラクチョウセン", + "is_bullet" : false, + "lon" : 139.70420434309565, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16357, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28006", + "shared_interaction" : "28006", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ有楽町線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800607 (28006) 2800608", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800607 (28006) 2800608", + "lat" : 35.73316551916096, + "e_status_y" : 0, + "line_name_h" : "東京メトロ有楽町線" + }, + "selected" : false + }, { + "data" : { + "id" : "16362", + "source" : "6015", + "target" : "6016", + "line_name_k" : "ユウラクチョウセン", + "is_bullet" : false, + "lon" : 139.70420434309565, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16362, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28006", + "shared_interaction" : "28006", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ有楽町線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800612 (28006) 2800613", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800612 (28006) 2800613", + "lat" : 35.73316551916096, + "e_status_y" : 0, + "line_name_h" : "東京メトロ有楽町線" + }, + "selected" : false + }, { + "data" : { + "id" : "16363", + "source" : "6016", + "target" : "6017", + "line_name_k" : "ユウラクチョウセン", + "is_bullet" : false, + "lon" : 139.70420434309565, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16363, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28006", + "shared_interaction" : "28006", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ有楽町線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800613 (28006) 2800614", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800613 (28006) 2800614", + "lat" : 35.73316551916096, + "e_status_y" : 0, + "line_name_h" : "東京メトロ有楽町線" + }, + "selected" : false + }, { + "data" : { + "id" : "16360", + "source" : "6013", + "target" : "6014", + "line_name_k" : "ユウラクチョウセン", + "is_bullet" : false, + "lon" : 139.70420434309565, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16360, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28006", + "shared_interaction" : "28006", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ有楽町線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800610 (28006) 2800611", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800610 (28006) 2800611", + "lat" : 35.73316551916096, + "e_status_y" : 0, + "line_name_h" : "東京メトロ有楽町線" + }, + "selected" : false + }, { + "data" : { + "id" : "16361", + "source" : "6014", + "target" : "6015", + "line_name_k" : "ユウラクチョウセン", + "is_bullet" : false, + "lon" : 139.70420434309565, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16361, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28006", + "shared_interaction" : "28006", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ有楽町線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800611 (28006) 2800612", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800611 (28006) 2800612", + "lat" : 35.73316551916096, + "e_status_y" : 0, + "line_name_h" : "東京メトロ有楽町線" + }, + "selected" : false + }, { + "data" : { + "id" : "16366", + "source" : "6019", + "target" : "6020", + "line_name_k" : "ユウラクチョウセン", + "is_bullet" : false, + "lon" : 139.70420434309565, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16366, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28006", + "shared_interaction" : "28006", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ有楽町線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800616 (28006) 2800617", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800616 (28006) 2800617", + "lat" : 35.73316551916096, + "e_status_y" : 0, + "line_name_h" : "東京メトロ有楽町線" + }, + "selected" : false + }, { + "data" : { + "id" : "16367", + "source" : "6020", + "target" : "6021", + "line_name_k" : "ユウラクチョウセン", + "is_bullet" : false, + "lon" : 139.70420434309565, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16367, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28006", + "shared_interaction" : "28006", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ有楽町線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800617 (28006) 2800618", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800617 (28006) 2800618", + "lat" : 35.73316551916096, + "e_status_y" : 0, + "line_name_h" : "東京メトロ有楽町線" + }, + "selected" : false + }, { + "data" : { + "id" : "16364", + "source" : "6017", + "target" : "6018", + "line_name_k" : "ユウラクチョウセン", + "is_bullet" : false, + "lon" : 139.70420434309565, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16364, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28006", + "shared_interaction" : "28006", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ有楽町線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800614 (28006) 2800615", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800614 (28006) 2800615", + "lat" : 35.73316551916096, + "e_status_y" : 0, + "line_name_h" : "東京メトロ有楽町線" + }, + "selected" : false + }, { + "data" : { + "id" : "16365", + "source" : "6018", + "target" : "6019", + "line_name_k" : "ユウラクチョウセン", + "is_bullet" : false, + "lon" : 139.70420434309565, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16365, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28006", + "shared_interaction" : "28006", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ有楽町線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800615 (28006) 2800616", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800615 (28006) 2800616", + "lat" : 35.73316551916096, + "e_status_y" : 0, + "line_name_h" : "東京メトロ有楽町線" + }, + "selected" : false + }, { + "data" : { + "id" : "16338", + "source" : "5990", + "target" : "5991", + "line_name_k" : "チヨダセン", + "is_bullet" : false, + "lon" : 139.7558611955078, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16338, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28005", + "shared_interaction" : "28005", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ千代田線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800507 (28005) 2800508", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800507 (28005) 2800508", + "lat" : 35.723011671551085, + "e_status_y" : 0, + "line_name_h" : "東京メトロ千代田線" + }, + "selected" : false + }, { + "data" : { + "id" : "16337", + "source" : "5989", + "target" : "5990", + "line_name_k" : "チヨダセン", + "is_bullet" : false, + "lon" : 139.7558611955078, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16337, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28005", + "shared_interaction" : "28005", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ千代田線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800506 (28005) 2800507", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800506 (28005) 2800507", + "lat" : 35.723011671551085, + "e_status_y" : 0, + "line_name_h" : "東京メトロ千代田線" + }, + "selected" : false + }, { + "data" : { + "id" : "16340", + "source" : "5992", + "target" : "5993", + "line_name_k" : "チヨダセン", + "is_bullet" : false, + "lon" : 139.7558611955078, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16340, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28005", + "shared_interaction" : "28005", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ千代田線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800509 (28005) 2800510", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800509 (28005) 2800510", + "lat" : 35.723011671551085, + "e_status_y" : 0, + "line_name_h" : "東京メトロ千代田線" + }, + "selected" : false + }, { + "data" : { + "id" : "16339", + "source" : "5991", + "target" : "5992", + "line_name_k" : "チヨダセン", + "is_bullet" : false, + "lon" : 139.7558611955078, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16339, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28005", + "shared_interaction" : "28005", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ千代田線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800508 (28005) 2800509", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800508 (28005) 2800509", + "lat" : 35.723011671551085, + "e_status_y" : 0, + "line_name_h" : "東京メトロ千代田線" + }, + "selected" : false + }, { + "data" : { + "id" : "16342", + "source" : "5994", + "target" : "5995", + "line_name_k" : "チヨダセン", + "is_bullet" : false, + "lon" : 139.7558611955078, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16342, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28005", + "shared_interaction" : "28005", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ千代田線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800511 (28005) 2800512", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800511 (28005) 2800512", + "lat" : 35.723011671551085, + "e_status_y" : 0, + "line_name_h" : "東京メトロ千代田線" + }, + "selected" : false + }, { + "data" : { + "id" : "16341", + "source" : "5993", + "target" : "5994", + "line_name_k" : "チヨダセン", + "is_bullet" : false, + "lon" : 139.7558611955078, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16341, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28005", + "shared_interaction" : "28005", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ千代田線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800510 (28005) 2800511", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800510 (28005) 2800511", + "lat" : 35.723011671551085, + "e_status_y" : 0, + "line_name_h" : "東京メトロ千代田線" + }, + "selected" : false + }, { + "data" : { + "id" : "16344", + "source" : "5996", + "target" : "5997", + "line_name_k" : "チヨダセン", + "is_bullet" : false, + "lon" : 139.7558611955078, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16344, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28005", + "shared_interaction" : "28005", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ千代田線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800513 (28005) 2800514", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800513 (28005) 2800514", + "lat" : 35.723011671551085, + "e_status_y" : 0, + "line_name_h" : "東京メトロ千代田線" + }, + "selected" : false + }, { + "data" : { + "id" : "16343", + "source" : "5995", + "target" : "5996", + "line_name_k" : "チヨダセン", + "is_bullet" : false, + "lon" : 139.7558611955078, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16343, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28005", + "shared_interaction" : "28005", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ千代田線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800512 (28005) 2800513", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800512 (28005) 2800513", + "lat" : 35.723011671551085, + "e_status_y" : 0, + "line_name_h" : "東京メトロ千代田線" + }, + "selected" : false + }, { + "data" : { + "id" : "16346", + "source" : "5998", + "target" : "5999", + "line_name_k" : "チヨダセン", + "is_bullet" : false, + "lon" : 139.7558611955078, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16346, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28005", + "shared_interaction" : "28005", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ千代田線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800515 (28005) 2800516", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800515 (28005) 2800516", + "lat" : 35.723011671551085, + "e_status_y" : 0, + "line_name_h" : "東京メトロ千代田線" + }, + "selected" : false + }, { + "data" : { + "id" : "16345", + "source" : "5997", + "target" : "5998", + "line_name_k" : "チヨダセン", + "is_bullet" : false, + "lon" : 139.7558611955078, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16345, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28005", + "shared_interaction" : "28005", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ千代田線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800514 (28005) 2800515", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800514 (28005) 2800515", + "lat" : 35.723011671551085, + "e_status_y" : 0, + "line_name_h" : "東京メトロ千代田線" + }, + "selected" : false + }, { + "data" : { + "id" : "16348", + "source" : "6000", + "target" : "6001", + "line_name_k" : "チヨダセン", + "is_bullet" : false, + "lon" : 139.7558611955078, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16348, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28005", + "shared_interaction" : "28005", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ千代田線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800517 (28005) 2800518", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800517 (28005) 2800518", + "lat" : 35.723011671551085, + "e_status_y" : 0, + "line_name_h" : "東京メトロ千代田線" + }, + "selected" : false + }, { + "data" : { + "id" : "16347", + "source" : "5999", + "target" : "6000", + "line_name_k" : "チヨダセン", + "is_bullet" : false, + "lon" : 139.7558611955078, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16347, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28005", + "shared_interaction" : "28005", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ千代田線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800516 (28005) 2800517", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800516 (28005) 2800517", + "lat" : 35.723011671551085, + "e_status_y" : 0, + "line_name_h" : "東京メトロ千代田線" + }, + "selected" : false + }, { + "data" : { + "id" : "16350", + "source" : "6002", + "target" : "6003", + "line_name_k" : "チヨダセン", + "is_bullet" : false, + "lon" : 139.7558611955078, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16350, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28005", + "shared_interaction" : "28005", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ千代田線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800519 (28005) 2800520", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800519 (28005) 2800520", + "lat" : 35.723011671551085, + "e_status_y" : 0, + "line_name_h" : "東京メトロ千代田線" + }, + "selected" : false + }, { + "data" : { + "id" : "16349", + "source" : "6001", + "target" : "6002", + "line_name_k" : "チヨダセン", + "is_bullet" : false, + "lon" : 139.7558611955078, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16349, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28005", + "shared_interaction" : "28005", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ千代田線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800518 (28005) 2800519", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800518 (28005) 2800519", + "lat" : 35.723011671551085, + "e_status_y" : 0, + "line_name_h" : "東京メトロ千代田線" + }, + "selected" : false + }, { + "data" : { + "id" : "16322", + "source" : "5973", + "target" : "5974", + "line_name_k" : "トウザイセン", + "is_bullet" : false, + "lon" : 139.8154913497142, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16322, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28004", + "shared_interaction" : "28004", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ東西線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800413 (28004) 2800414", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800413 (28004) 2800414", + "lat" : 35.683265329761525, + "e_status_y" : 0, + "line_name_h" : "東京メトロ東西線" + }, + "selected" : false + }, { + "data" : { + "id" : "16323", + "source" : "5974", + "target" : "5975", + "line_name_k" : "トウザイセン", + "is_bullet" : false, + "lon" : 139.8154913497142, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16323, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28004", + "shared_interaction" : "28004", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ東西線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800414 (28004) 2800415", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800414 (28004) 2800415", + "lat" : 35.683265329761525, + "e_status_y" : 0, + "line_name_h" : "東京メトロ東西線" + }, + "selected" : false + }, { + "data" : { + "id" : "16324", + "source" : "5975", + "target" : "5976", + "line_name_k" : "トウザイセン", + "is_bullet" : false, + "lon" : 139.8154913497142, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16324, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28004", + "shared_interaction" : "28004", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ東西線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800415 (28004) 2800416", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800415 (28004) 2800416", + "lat" : 35.683265329761525, + "e_status_y" : 0, + "line_name_h" : "東京メトロ東西線" + }, + "selected" : false + }, { + "data" : { + "id" : "16325", + "source" : "5976", + "target" : "5977", + "line_name_k" : "トウザイセン", + "is_bullet" : false, + "lon" : 139.8154913497142, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16325, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28004", + "shared_interaction" : "28004", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ東西線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800416 (28004) 2800417", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800416 (28004) 2800417", + "lat" : 35.683265329761525, + "e_status_y" : 0, + "line_name_h" : "東京メトロ東西線" + }, + "selected" : false + }, { + "data" : { + "id" : "16332", + "source" : "5984", + "target" : "5985", + "line_name_k" : "チヨダセン", + "is_bullet" : false, + "lon" : 139.7558611955078, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16332, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28005", + "shared_interaction" : "28005", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ千代田線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800501 (28005) 2800502", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800501 (28005) 2800502", + "lat" : 35.723011671551085, + "e_status_y" : 0, + "line_name_h" : "東京メトロ千代田線" + }, + "selected" : false + }, { + "data" : { + "id" : "16333", + "source" : "5985", + "target" : "5986", + "line_name_k" : "チヨダセン", + "is_bullet" : false, + "lon" : 139.7558611955078, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16333, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28005", + "shared_interaction" : "28005", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ千代田線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800502 (28005) 2800503", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800502 (28005) 2800503", + "lat" : 35.723011671551085, + "e_status_y" : 0, + "line_name_h" : "東京メトロ千代田線" + }, + "selected" : false + }, { + "data" : { + "id" : "16334", + "source" : "5986", + "target" : "5987", + "line_name_k" : "チヨダセン", + "is_bullet" : false, + "lon" : 139.7558611955078, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16334, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28005", + "shared_interaction" : "28005", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ千代田線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800503 (28005) 2800504", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800503 (28005) 2800504", + "lat" : 35.723011671551085, + "e_status_y" : 0, + "line_name_h" : "東京メトロ千代田線" + }, + "selected" : false + }, { + "data" : { + "id" : "16335", + "source" : "5987", + "target" : "5988", + "line_name_k" : "チヨダセン", + "is_bullet" : false, + "lon" : 139.7558611955078, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16335, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28005", + "shared_interaction" : "28005", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ千代田線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800504 (28005) 2800505", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800504 (28005) 2800505", + "lat" : 35.723011671551085, + "e_status_y" : 0, + "line_name_h" : "東京メトロ千代田線" + }, + "selected" : false + }, { + "data" : { + "id" : "16336", + "source" : "5988", + "target" : "5989", + "line_name_k" : "チヨダセン", + "is_bullet" : false, + "lon" : 139.7558611955078, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16336, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28005", + "shared_interaction" : "28005", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ千代田線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800505 (28005) 2800506", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800505 (28005) 2800506", + "lat" : 35.723011671551085, + "e_status_y" : 0, + "line_name_h" : "東京メトロ千代田線" + }, + "selected" : false + }, { + "data" : { + "id" : "16313", + "source" : "5964", + "target" : "5965", + "line_name_k" : "トウザイセン", + "is_bullet" : false, + "lon" : 139.8154913497142, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16313, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28004", + "shared_interaction" : "28004", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ東西線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800404 (28004) 2800405", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800404 (28004) 2800405", + "lat" : 35.683265329761525, + "e_status_y" : 0, + "line_name_h" : "東京メトロ東西線" + }, + "selected" : false + }, { + "data" : { + "id" : "16312", + "source" : "5963", + "target" : "5964", + "line_name_k" : "トウザイセン", + "is_bullet" : false, + "lon" : 139.8154913497142, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16312, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28004", + "shared_interaction" : "28004", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ東西線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800403 (28004) 2800404", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800403 (28004) 2800404", + "lat" : 35.683265329761525, + "e_status_y" : 0, + "line_name_h" : "東京メトロ東西線" + }, + "selected" : false + }, { + "data" : { + "id" : "16311", + "source" : "5962", + "target" : "5963", + "line_name_k" : "トウザイセン", + "is_bullet" : false, + "lon" : 139.8154913497142, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16311, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28004", + "shared_interaction" : "28004", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ東西線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800402 (28004) 2800403", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800402 (28004) 2800403", + "lat" : 35.683265329761525, + "e_status_y" : 0, + "line_name_h" : "東京メトロ東西線" + }, + "selected" : false + }, { + "data" : { + "id" : "16310", + "source" : "5961", + "target" : "5962", + "line_name_k" : "トウザイセン", + "is_bullet" : false, + "lon" : 139.8154913497142, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16310, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28004", + "shared_interaction" : "28004", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ東西線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800401 (28004) 2800402", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800401 (28004) 2800402", + "lat" : 35.683265329761525, + "e_status_y" : 0, + "line_name_h" : "東京メトロ東西線" + }, + "selected" : false + }, { + "data" : { + "id" : "16309", + "source" : "5959", + "target" : "5960", + "line_name_k" : "ヒビヤセン", + "is_bullet" : false, + "lon" : 139.76790012172296, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16309, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28003", + "shared_interaction" : "28003", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ日比谷線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800320 (28003) 2800321", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800320 (28003) 2800321", + "lat" : 35.69469233873322, + "e_status_y" : 0, + "line_name_h" : "東京メトロ日比谷線" + }, + "selected" : false + }, { + "data" : { + "id" : "16308", + "source" : "5958", + "target" : "5959", + "line_name_k" : "ヒビヤセン", + "is_bullet" : false, + "lon" : 139.76790012172296, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16308, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28003", + "shared_interaction" : "28003", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ日比谷線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800319 (28003) 2800320", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800319 (28003) 2800320", + "lat" : 35.69469233873322, + "e_status_y" : 0, + "line_name_h" : "東京メトロ日比谷線" + }, + "selected" : false + }, { + "data" : { + "id" : "16307", + "source" : "5957", + "target" : "5958", + "line_name_k" : "ヒビヤセン", + "is_bullet" : false, + "lon" : 139.76790012172296, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16307, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28003", + "shared_interaction" : "28003", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ日比谷線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800318 (28003) 2800319", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800318 (28003) 2800319", + "lat" : 35.69469233873322, + "e_status_y" : 0, + "line_name_h" : "東京メトロ日比谷線" + }, + "selected" : false + }, { + "data" : { + "id" : "16321", + "source" : "5972", + "target" : "5973", + "line_name_k" : "トウザイセン", + "is_bullet" : false, + "lon" : 139.8154913497142, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16321, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28004", + "shared_interaction" : "28004", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ東西線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800412 (28004) 2800413", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800412 (28004) 2800413", + "lat" : 35.683265329761525, + "e_status_y" : 0, + "line_name_h" : "東京メトロ東西線" + }, + "selected" : false + }, { + "data" : { + "id" : "16320", + "source" : "5971", + "target" : "5972", + "line_name_k" : "トウザイセン", + "is_bullet" : false, + "lon" : 139.8154913497142, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16320, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28004", + "shared_interaction" : "28004", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ東西線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800411 (28004) 2800412", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800411 (28004) 2800412", + "lat" : 35.683265329761525, + "e_status_y" : 0, + "line_name_h" : "東京メトロ東西線" + }, + "selected" : false + }, { + "data" : { + "id" : "16319", + "source" : "5970", + "target" : "5971", + "line_name_k" : "トウザイセン", + "is_bullet" : false, + "lon" : 139.8154913497142, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16319, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28004", + "shared_interaction" : "28004", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ東西線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800410 (28004) 2800411", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800410 (28004) 2800411", + "lat" : 35.683265329761525, + "e_status_y" : 0, + "line_name_h" : "東京メトロ東西線" + }, + "selected" : false + }, { + "data" : { + "id" : "16318", + "source" : "5969", + "target" : "5970", + "line_name_k" : "トウザイセン", + "is_bullet" : false, + "lon" : 139.8154913497142, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16318, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28004", + "shared_interaction" : "28004", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ東西線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800409 (28004) 2800410", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800409 (28004) 2800410", + "lat" : 35.683265329761525, + "e_status_y" : 0, + "line_name_h" : "東京メトロ東西線" + }, + "selected" : false + }, { + "data" : { + "id" : "16317", + "source" : "5968", + "target" : "5969", + "line_name_k" : "トウザイセン", + "is_bullet" : false, + "lon" : 139.8154913497142, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16317, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28004", + "shared_interaction" : "28004", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ東西線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800408 (28004) 2800409", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800408 (28004) 2800409", + "lat" : 35.683265329761525, + "e_status_y" : 0, + "line_name_h" : "東京メトロ東西線" + }, + "selected" : false + }, { + "data" : { + "id" : "16316", + "source" : "5967", + "target" : "5968", + "line_name_k" : "トウザイセン", + "is_bullet" : false, + "lon" : 139.8154913497142, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16316, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28004", + "shared_interaction" : "28004", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ東西線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800407 (28004) 2800408", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800407 (28004) 2800408", + "lat" : 35.683265329761525, + "e_status_y" : 0, + "line_name_h" : "東京メトロ東西線" + }, + "selected" : false + }, { + "data" : { + "id" : "16315", + "source" : "5966", + "target" : "5967", + "line_name_k" : "トウザイセン", + "is_bullet" : false, + "lon" : 139.8154913497142, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16315, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28004", + "shared_interaction" : "28004", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ東西線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800406 (28004) 2800407", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800406 (28004) 2800407", + "lat" : 35.683265329761525, + "e_status_y" : 0, + "line_name_h" : "東京メトロ東西線" + }, + "selected" : false + }, { + "data" : { + "id" : "16314", + "source" : "5965", + "target" : "5966", + "line_name_k" : "トウザイセン", + "is_bullet" : false, + "lon" : 139.8154913497142, + "company_name_k" : "トウキョウメトロ", + "zoom" : 11, + "SUID" : 16314, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28004", + "shared_interaction" : "28004", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ東西線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800405 (28004) 2800406", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800405 (28004) 2800406", + "lat" : 35.683265329761525, + "e_status_y" : 0, + "line_name_h" : "東京メトロ東西線" + }, + "selected" : false + }, { + "data" : { + "id" : "16297", + "source" : "5947", + "target" : "5948", + "line_name_k" : "ヒビヤセン", + "is_bullet" : false, + "lon" : 139.76790012172296, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16297, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28003", + "shared_interaction" : "28003", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ日比谷線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800308 (28003) 2800309", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800308 (28003) 2800309", + "lat" : 35.69469233873322, + "e_status_y" : 0, + "line_name_h" : "東京メトロ日比谷線" + }, + "selected" : false + }, { + "data" : { + "id" : "16298", + "source" : "5948", + "target" : "5949", + "line_name_k" : "ヒビヤセン", + "is_bullet" : false, + "lon" : 139.76790012172296, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16298, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28003", + "shared_interaction" : "28003", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ日比谷線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800309 (28003) 2800310", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800309 (28003) 2800310", + "lat" : 35.69469233873322, + "e_status_y" : 0, + "line_name_h" : "東京メトロ日比谷線" + }, + "selected" : false + }, { + "data" : { + "id" : "16295", + "source" : "5945", + "target" : "5946", + "line_name_k" : "ヒビヤセン", + "is_bullet" : false, + "lon" : 139.76790012172296, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16295, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28003", + "shared_interaction" : "28003", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ日比谷線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800306 (28003) 2800307", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800306 (28003) 2800307", + "lat" : 35.69469233873322, + "e_status_y" : 0, + "line_name_h" : "東京メトロ日比谷線" + }, + "selected" : false + }, { + "data" : { + "id" : "16296", + "source" : "5946", + "target" : "5947", + "line_name_k" : "ヒビヤセン", + "is_bullet" : false, + "lon" : 139.76790012172296, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16296, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28003", + "shared_interaction" : "28003", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ日比谷線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800307 (28003) 2800308", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800307 (28003) 2800308", + "lat" : 35.69469233873322, + "e_status_y" : 0, + "line_name_h" : "東京メトロ日比谷線" + }, + "selected" : false + }, { + "data" : { + "id" : "16293", + "source" : "5943", + "target" : "5944", + "line_name_k" : "ヒビヤセン", + "is_bullet" : false, + "lon" : 139.76790012172296, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16293, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28003", + "shared_interaction" : "28003", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ日比谷線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800304 (28003) 2800305", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800304 (28003) 2800305", + "lat" : 35.69469233873322, + "e_status_y" : 0, + "line_name_h" : "東京メトロ日比谷線" + }, + "selected" : false + }, { + "data" : { + "id" : "16294", + "source" : "5944", + "target" : "5945", + "line_name_k" : "ヒビヤセン", + "is_bullet" : false, + "lon" : 139.76790012172296, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16294, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28003", + "shared_interaction" : "28003", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ日比谷線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800305 (28003) 2800306", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800305 (28003) 2800306", + "lat" : 35.69469233873322, + "e_status_y" : 0, + "line_name_h" : "東京メトロ日比谷線" + }, + "selected" : false + }, { + "data" : { + "id" : "16291", + "source" : "5941", + "target" : "5942", + "line_name_k" : "ヒビヤセン", + "is_bullet" : false, + "lon" : 139.76790012172296, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16291, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28003", + "shared_interaction" : "28003", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ日比谷線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800302 (28003) 2800303", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800302 (28003) 2800303", + "lat" : 35.69469233873322, + "e_status_y" : 0, + "line_name_h" : "東京メトロ日比谷線" + }, + "selected" : false + }, { + "data" : { + "id" : "16292", + "source" : "5942", + "target" : "5943", + "line_name_k" : "ヒビヤセン", + "is_bullet" : false, + "lon" : 139.76790012172296, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16292, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28003", + "shared_interaction" : "28003", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ日比谷線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800303 (28003) 2800304", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800303 (28003) 2800304", + "lat" : 35.69469233873322, + "e_status_y" : 0, + "line_name_h" : "東京メトロ日比谷線" + }, + "selected" : false + }, { + "data" : { + "id" : "16305", + "source" : "5955", + "target" : "5956", + "line_name_k" : "ヒビヤセン", + "is_bullet" : false, + "lon" : 139.76790012172296, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16305, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28003", + "shared_interaction" : "28003", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ日比谷線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800316 (28003) 2800317", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800316 (28003) 2800317", + "lat" : 35.69469233873322, + "e_status_y" : 0, + "line_name_h" : "東京メトロ日比谷線" + }, + "selected" : false + }, { + "data" : { + "id" : "16306", + "source" : "5956", + "target" : "5957", + "line_name_k" : "ヒビヤセン", + "is_bullet" : false, + "lon" : 139.76790012172296, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16306, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28003", + "shared_interaction" : "28003", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ日比谷線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800317 (28003) 2800318", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800317 (28003) 2800318", + "lat" : 35.69469233873322, + "e_status_y" : 0, + "line_name_h" : "東京メトロ日比谷線" + }, + "selected" : false + }, { + "data" : { + "id" : "16303", + "source" : "5953", + "target" : "5954", + "line_name_k" : "ヒビヤセン", + "is_bullet" : false, + "lon" : 139.76790012172296, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16303, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28003", + "shared_interaction" : "28003", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ日比谷線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800314 (28003) 2800315", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800314 (28003) 2800315", + "lat" : 35.69469233873322, + "e_status_y" : 0, + "line_name_h" : "東京メトロ日比谷線" + }, + "selected" : false + }, { + "data" : { + "id" : "16304", + "source" : "5954", + "target" : "5955", + "line_name_k" : "ヒビヤセン", + "is_bullet" : false, + "lon" : 139.76790012172296, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16304, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28003", + "shared_interaction" : "28003", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ日比谷線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800315 (28003) 2800316", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800315 (28003) 2800316", + "lat" : 35.69469233873322, + "e_status_y" : 0, + "line_name_h" : "東京メトロ日比谷線" + }, + "selected" : false + }, { + "data" : { + "id" : "16301", + "source" : "5951", + "target" : "5952", + "line_name_k" : "ヒビヤセン", + "is_bullet" : false, + "lon" : 139.76790012172296, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16301, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28003", + "shared_interaction" : "28003", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ日比谷線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800312 (28003) 2800313", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800312 (28003) 2800313", + "lat" : 35.69469233873322, + "e_status_y" : 0, + "line_name_h" : "東京メトロ日比谷線" + }, + "selected" : false + }, { + "data" : { + "id" : "16302", + "source" : "5952", + "target" : "5953", + "line_name_k" : "ヒビヤセン", + "is_bullet" : false, + "lon" : 139.76790012172296, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16302, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28003", + "shared_interaction" : "28003", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ日比谷線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800313 (28003) 2800314", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800313 (28003) 2800314", + "lat" : 35.69469233873322, + "e_status_y" : 0, + "line_name_h" : "東京メトロ日比谷線" + }, + "selected" : false + }, { + "data" : { + "id" : "16299", + "source" : "5949", + "target" : "5950", + "line_name_k" : "ヒビヤセン", + "is_bullet" : false, + "lon" : 139.76790012172296, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16299, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28003", + "shared_interaction" : "28003", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ日比谷線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800310 (28003) 2800311", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800310 (28003) 2800311", + "lat" : 35.69469233873322, + "e_status_y" : 0, + "line_name_h" : "東京メトロ日比谷線" + }, + "selected" : false + }, { + "data" : { + "id" : "16300", + "source" : "5950", + "target" : "5951", + "line_name_k" : "ヒビヤセン", + "is_bullet" : false, + "lon" : 139.76790012172296, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16300, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28003", + "shared_interaction" : "28003", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ日比谷線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800311 (28003) 2800312", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800311 (28003) 2800312", + "lat" : 35.69469233873322, + "e_status_y" : 0, + "line_name_h" : "東京メトロ日比谷線" + }, + "selected" : false + }, { + "data" : { + "id" : "16281", + "source" : "5930", + "target" : "5931", + "line_name_k" : "マルノウチセン", + "is_bullet" : false, + "lon" : 139.70043660044496, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16281, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28002", + "shared_interaction" : "28002", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ丸ノ内線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800219 (28002) 2800220", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800219 (28002) 2800220", + "lat" : 35.70518513577206, + "e_status_y" : 0, + "line_name_h" : "東京メトロ丸ノ内線" + }, + "selected" : false + }, { + "data" : { + "id" : "16280", + "source" : "5929", + "target" : "5930", + "line_name_k" : "マルノウチセン", + "is_bullet" : false, + "lon" : 139.70043660044496, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16280, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28002", + "shared_interaction" : "28002", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ丸ノ内線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800218 (28002) 2800219", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800218 (28002) 2800219", + "lat" : 35.70518513577206, + "e_status_y" : 0, + "line_name_h" : "東京メトロ丸ノ内線" + }, + "selected" : false + }, { + "data" : { + "id" : "16284", + "source" : "5932", + "target" : "5934", + "line_name_k" : "マルノウチセン", + "is_bullet" : false, + "lon" : 139.70043660044496, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16284, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28002", + "shared_interaction" : "28002", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ丸ノ内線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800221 (28002) 2800222", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800221 (28002) 2800222", + "lat" : 35.70518513577206, + "e_status_y" : 0, + "line_name_h" : "東京メトロ丸ノ内線" + }, + "selected" : false + }, { + "data" : { + "id" : "16282", + "source" : "5931", + "target" : "5932", + "line_name_k" : "マルノウチセン", + "is_bullet" : false, + "lon" : 139.70043660044496, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16282, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28002", + "shared_interaction" : "28002", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ丸ノ内線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800220 (28002) 2800221", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800220 (28002) 2800221", + "lat" : 35.70518513577206, + "e_status_y" : 0, + "line_name_h" : "東京メトロ丸ノ内線" + }, + "selected" : false + }, { + "data" : { + "id" : "16283", + "source" : "5931", + "target" : "5933", + "line_name_k" : "マルノウチセン", + "is_bullet" : false, + "lon" : 139.70043660044496, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16283, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28002", + "shared_interaction" : "28002", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ丸ノ内線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800220 (28002) 2800226", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800220 (28002) 2800226", + "lat" : 35.70518513577206, + "e_status_y" : 0, + "line_name_h" : "東京メトロ丸ノ内線" + }, + "selected" : false + }, { + "data" : { + "id" : "16277", + "source" : "5926", + "target" : "5927", + "line_name_k" : "マルノウチセン", + "is_bullet" : false, + "lon" : 139.70043660044496, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16277, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28002", + "shared_interaction" : "28002", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ丸ノ内線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800215 (28002) 2800216", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800215 (28002) 2800216", + "lat" : 35.70518513577206, + "e_status_y" : 0, + "line_name_h" : "東京メトロ丸ノ内線" + }, + "selected" : false + }, { + "data" : { + "id" : "16276", + "source" : "5925", + "target" : "5926", + "line_name_k" : "マルノウチセン", + "is_bullet" : false, + "lon" : 139.70043660044496, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16276, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28002", + "shared_interaction" : "28002", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ丸ノ内線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800214 (28002) 2800215", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800214 (28002) 2800215", + "lat" : 35.70518513577206, + "e_status_y" : 0, + "line_name_h" : "東京メトロ丸ノ内線" + }, + "selected" : false + }, { + "data" : { + "id" : "16279", + "source" : "5928", + "target" : "5929", + "line_name_k" : "マルノウチセン", + "is_bullet" : false, + "lon" : 139.70043660044496, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16279, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28002", + "shared_interaction" : "28002", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ丸ノ内線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800217 (28002) 2800218", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800217 (28002) 2800218", + "lat" : 35.70518513577206, + "e_status_y" : 0, + "line_name_h" : "東京メトロ丸ノ内線" + }, + "selected" : false + }, { + "data" : { + "id" : "16278", + "source" : "5927", + "target" : "5928", + "line_name_k" : "マルノウチセン", + "is_bullet" : false, + "lon" : 139.70043660044496, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16278, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28002", + "shared_interaction" : "28002", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ丸ノ内線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800216 (28002) 2800217", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800216 (28002) 2800217", + "lat" : 35.70518513577206, + "e_status_y" : 0, + "line_name_h" : "東京メトロ丸ノ内線" + }, + "selected" : false + }, { + "data" : { + "id" : "16289", + "source" : "5938", + "target" : "5939", + "line_name_k" : "マルノウチセン", + "is_bullet" : false, + "lon" : 139.70043660044496, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16289, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28002", + "shared_interaction" : "28002", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ丸ノ内線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800227 (28002) 2800228", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800227 (28002) 2800228", + "lat" : 35.70518513577206, + "e_status_y" : 0, + "line_name_h" : "東京メトロ丸ノ内線" + }, + "selected" : false + }, { + "data" : { + "id" : "16290", + "source" : "5940", + "target" : "5941", + "line_name_k" : "ヒビヤセン", + "is_bullet" : false, + "lon" : 139.76790012172296, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16290, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28003", + "shared_interaction" : "28003", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ日比谷線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800301 (28003) 2800302", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800301 (28003) 2800302", + "lat" : 35.69469233873322, + "e_status_y" : 0, + "line_name_h" : "東京メトロ日比谷線" + }, + "selected" : false + }, { + "data" : { + "id" : "16286", + "source" : "5934", + "target" : "5935", + "line_name_k" : "マルノウチセン", + "is_bullet" : false, + "lon" : 139.70043660044496, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16286, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28002", + "shared_interaction" : "28002", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ丸ノ内線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800222 (28002) 2800223", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800222 (28002) 2800223", + "lat" : 35.70518513577206, + "e_status_y" : 0, + "line_name_h" : "東京メトロ丸ノ内線" + }, + "selected" : false + }, { + "data" : { + "id" : "16285", + "source" : "5933", + "target" : "5938", + "line_name_k" : "マルノウチセン", + "is_bullet" : false, + "lon" : 139.70043660044496, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16285, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28002", + "shared_interaction" : "28002", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ丸ノ内線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800226 (28002) 2800227", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800226 (28002) 2800227", + "lat" : 35.70518513577206, + "e_status_y" : 0, + "line_name_h" : "東京メトロ丸ノ内線" + }, + "selected" : false + }, { + "data" : { + "id" : "16288", + "source" : "5936", + "target" : "5937", + "line_name_k" : "マルノウチセン", + "is_bullet" : false, + "lon" : 139.70043660044496, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16288, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28002", + "shared_interaction" : "28002", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ丸ノ内線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800224 (28002) 2800225", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800224 (28002) 2800225", + "lat" : 35.70518513577206, + "e_status_y" : 0, + "line_name_h" : "東京メトロ丸ノ内線" + }, + "selected" : false + }, { + "data" : { + "id" : "16287", + "source" : "5935", + "target" : "5936", + "line_name_k" : "マルノウチセン", + "is_bullet" : false, + "lon" : 139.70043660044496, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16287, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28002", + "shared_interaction" : "28002", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ丸ノ内線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800223 (28002) 2800224", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800223 (28002) 2800224", + "lat" : 35.70518513577206, + "e_status_y" : 0, + "line_name_h" : "東京メトロ丸ノ内線" + }, + "selected" : false + }, { + "data" : { + "id" : "16264", + "source" : "5913", + "target" : "5914", + "line_name_k" : "マルノウチセン", + "is_bullet" : false, + "lon" : 139.70043660044496, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16264, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28002", + "shared_interaction" : "28002", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ丸ノ内線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800202 (28002) 2800203", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800202 (28002) 2800203", + "lat" : 35.70518513577206, + "e_status_y" : 0, + "line_name_h" : "東京メトロ丸ノ内線" + }, + "selected" : false + }, { + "data" : { + "id" : "16265", + "source" : "5914", + "target" : "5915", + "line_name_k" : "マルノウチセン", + "is_bullet" : false, + "lon" : 139.70043660044496, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16265, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28002", + "shared_interaction" : "28002", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ丸ノ内線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800203 (28002) 2800204", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800203 (28002) 2800204", + "lat" : 35.70518513577206, + "e_status_y" : 0, + "line_name_h" : "東京メトロ丸ノ内線" + }, + "selected" : false + }, { + "data" : { + "id" : "16266", + "source" : "5915", + "target" : "5916", + "line_name_k" : "マルノウチセン", + "is_bullet" : false, + "lon" : 139.70043660044496, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16266, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28002", + "shared_interaction" : "28002", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ丸ノ内線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800204 (28002) 2800205", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800204 (28002) 2800205", + "lat" : 35.70518513577206, + "e_status_y" : 0, + "line_name_h" : "東京メトロ丸ノ内線" + }, + "selected" : false + }, { + "data" : { + "id" : "16267", + "source" : "5916", + "target" : "5917", + "line_name_k" : "マルノウチセン", + "is_bullet" : false, + "lon" : 139.70043660044496, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16267, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28002", + "shared_interaction" : "28002", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ丸ノ内線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800205 (28002) 2800206", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800205 (28002) 2800206", + "lat" : 35.70518513577206, + "e_status_y" : 0, + "line_name_h" : "東京メトロ丸ノ内線" + }, + "selected" : false + }, { + "data" : { + "id" : "16261", + "source" : "5909", + "target" : "5910", + "line_name_k" : "ギンザセン", + "is_bullet" : false, + "lon" : 139.75720810526002, + "company_name_k" : "トウキョウメトロ", + "zoom" : 13, + "SUID" : 16261, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28001", + "shared_interaction" : "28001", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ銀座線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800117 (28001) 2800118", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800117 (28001) 2800118", + "lat" : 35.68646095045909, + "e_status_y" : 0, + "line_name_h" : "東京メトロ銀座線" + }, + "selected" : false + }, { + "data" : { + "id" : "16262", + "source" : "5910", + "target" : "5911", + "line_name_k" : "ギンザセン", + "is_bullet" : false, + "lon" : 139.75720810526002, + "company_name_k" : "トウキョウメトロ", + "zoom" : 13, + "SUID" : 16262, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28001", + "shared_interaction" : "28001", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ銀座線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800118 (28001) 2800119", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800118 (28001) 2800119", + "lat" : 35.68646095045909, + "e_status_y" : 0, + "line_name_h" : "東京メトロ銀座線" + }, + "selected" : false + }, { + "data" : { + "id" : "16263", + "source" : "5912", + "target" : "5913", + "line_name_k" : "マルノウチセン", + "is_bullet" : false, + "lon" : 139.70043660044496, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16263, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28002", + "shared_interaction" : "28002", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ丸ノ内線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800201 (28002) 2800202", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800201 (28002) 2800202", + "lat" : 35.70518513577206, + "e_status_y" : 0, + "line_name_h" : "東京メトロ丸ノ内線" + }, + "selected" : false + }, { + "data" : { + "id" : "16272", + "source" : "5921", + "target" : "5922", + "line_name_k" : "マルノウチセン", + "is_bullet" : false, + "lon" : 139.70043660044496, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16272, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28002", + "shared_interaction" : "28002", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ丸ノ内線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800210 (28002) 2800211", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800210 (28002) 2800211", + "lat" : 35.70518513577206, + "e_status_y" : 0, + "line_name_h" : "東京メトロ丸ノ内線" + }, + "selected" : false + }, { + "data" : { + "id" : "16273", + "source" : "5922", + "target" : "5923", + "line_name_k" : "マルノウチセン", + "is_bullet" : false, + "lon" : 139.70043660044496, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16273, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28002", + "shared_interaction" : "28002", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ丸ノ内線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800211 (28002) 2800212", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800211 (28002) 2800212", + "lat" : 35.70518513577206, + "e_status_y" : 0, + "line_name_h" : "東京メトロ丸ノ内線" + }, + "selected" : false + }, { + "data" : { + "id" : "16274", + "source" : "5923", + "target" : "5924", + "line_name_k" : "マルノウチセン", + "is_bullet" : false, + "lon" : 139.70043660044496, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16274, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28002", + "shared_interaction" : "28002", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ丸ノ内線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800212 (28002) 2800213", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800212 (28002) 2800213", + "lat" : 35.70518513577206, + "e_status_y" : 0, + "line_name_h" : "東京メトロ丸ノ内線" + }, + "selected" : false + }, { + "data" : { + "id" : "16275", + "source" : "5924", + "target" : "5925", + "line_name_k" : "マルノウチセン", + "is_bullet" : false, + "lon" : 139.70043660044496, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16275, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28002", + "shared_interaction" : "28002", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ丸ノ内線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800213 (28002) 2800214", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800213 (28002) 2800214", + "lat" : 35.70518513577206, + "e_status_y" : 0, + "line_name_h" : "東京メトロ丸ノ内線" + }, + "selected" : false + }, { + "data" : { + "id" : "16268", + "source" : "5917", + "target" : "5918", + "line_name_k" : "マルノウチセン", + "is_bullet" : false, + "lon" : 139.70043660044496, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16268, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28002", + "shared_interaction" : "28002", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ丸ノ内線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800206 (28002) 2800207", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800206 (28002) 2800207", + "lat" : 35.70518513577206, + "e_status_y" : 0, + "line_name_h" : "東京メトロ丸ノ内線" + }, + "selected" : false + }, { + "data" : { + "id" : "16269", + "source" : "5918", + "target" : "5919", + "line_name_k" : "マルノウチセン", + "is_bullet" : false, + "lon" : 139.70043660044496, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16269, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28002", + "shared_interaction" : "28002", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ丸ノ内線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800207 (28002) 2800208", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800207 (28002) 2800208", + "lat" : 35.70518513577206, + "e_status_y" : 0, + "line_name_h" : "東京メトロ丸ノ内線" + }, + "selected" : false + }, { + "data" : { + "id" : "16270", + "source" : "5919", + "target" : "5920", + "line_name_k" : "マルノウチセン", + "is_bullet" : false, + "lon" : 139.70043660044496, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16270, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28002", + "shared_interaction" : "28002", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ丸ノ内線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800208 (28002) 2800209", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800208 (28002) 2800209", + "lat" : 35.70518513577206, + "e_status_y" : 0, + "line_name_h" : "東京メトロ丸ノ内線" + }, + "selected" : false + }, { + "data" : { + "id" : "16271", + "source" : "5920", + "target" : "5921", + "line_name_k" : "マルノウチセン", + "is_bullet" : false, + "lon" : 139.70043660044496, + "company_name_k" : "トウキョウメトロ", + "zoom" : 12, + "SUID" : 16271, + "company_type" : 2, + "company_name_h" : "東京地下鉄株式会社", + "interaction" : "28002", + "shared_interaction" : "28002", + "company_url" : "http://www.tokyometro.jp/", + "line_name" : "東京メトロ丸ノ内線", + "selected" : false, + "company_name" : "東京メトロ", + "company_cd" : 18, + "name" : "2800209 (28002) 2800210", + "rr_cd" : 28, + "company_name_r" : "東京メトロ", + "e_status_x" : 0, + "shared_name" : "2800209 (28002) 2800210", + "lat" : 35.70518513577206, + "e_status_y" : 0, + "line_name_h" : "東京メトロ丸ノ内線" + }, + "selected" : false + }, { + "data" : { + "id" : "13589", + "source" : "3103", + "target" : "3104", + "line_name_k" : "サイキョウセン", + "is_bullet" : false, + "lon" : 139.6182015405503, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13589, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11321", + "shared_interaction" : "11321", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR埼京線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1132108 (11321) 1132109", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1132108 (11321) 1132109", + "lat" : 35.80319581571332, + "e_status_y" : 0, + "line_name_h" : "JR埼京線" + }, + "selected" : false + }, { + "data" : { + "id" : "13590", + "source" : "3104", + "target" : "3105", + "line_name_k" : "サイキョウセン", + "is_bullet" : false, + "lon" : 139.6182015405503, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13590, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11321", + "shared_interaction" : "11321", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR埼京線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1132109 (11321) 1132110", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1132109 (11321) 1132110", + "lat" : 35.80319581571332, + "e_status_y" : 0, + "line_name_h" : "JR埼京線" + }, + "selected" : false + }, { + "data" : { + "id" : "13587", + "source" : "3101", + "target" : "3102", + "line_name_k" : "サイキョウセン", + "is_bullet" : false, + "lon" : 139.6182015405503, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13587, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11321", + "shared_interaction" : "11321", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR埼京線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1132106 (11321) 1132107", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1132106 (11321) 1132107", + "lat" : 35.80319581571332, + "e_status_y" : 0, + "line_name_h" : "JR埼京線" + }, + "selected" : false + }, { + "data" : { + "id" : "13588", + "source" : "3102", + "target" : "3103", + "line_name_k" : "サイキョウセン", + "is_bullet" : false, + "lon" : 139.6182015405503, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13588, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11321", + "shared_interaction" : "11321", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR埼京線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1132107 (11321) 1132108", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1132107 (11321) 1132108", + "lat" : 35.80319581571332, + "e_status_y" : 0, + "line_name_h" : "JR埼京線" + }, + "selected" : false + }, { + "data" : { + "id" : "13582", + "source" : "3096", + "target" : "3097", + "line_name_k" : "サイキョウセン", + "is_bullet" : false, + "lon" : 139.6182015405503, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13582, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11321", + "shared_interaction" : "11321", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR埼京線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1132101 (11321) 1132102", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1132101 (11321) 1132102", + "lat" : 35.80319581571332, + "e_status_y" : 0, + "line_name_h" : "JR埼京線" + }, + "selected" : false + }, { + "data" : { + "id" : "13585", + "source" : "3099", + "target" : "3100", + "line_name_k" : "サイキョウセン", + "is_bullet" : false, + "lon" : 139.6182015405503, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13585, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11321", + "shared_interaction" : "11321", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR埼京線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1132104 (11321) 1132105", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1132104 (11321) 1132105", + "lat" : 35.80319581571332, + "e_status_y" : 0, + "line_name_h" : "JR埼京線" + }, + "selected" : false + }, { + "data" : { + "id" : "15701", + "source" : "5300", + "target" : "5301", + "line_name_k" : "トウブカメイドセン", + "is_bullet" : false, + "lon" : 139.8243467565918, + "company_name_k" : "トウブテツドウ", + "zoom" : 14, + "SUID" : 15701, + "company_type" : 2, + "company_name_h" : "東武鉄道株式会社", + "interaction" : "21005", + "shared_interaction" : "21005", + "company_url" : "http://www.tobu.co.jp/", + "line_name" : "東武亀戸線", + "selected" : false, + "company_name" : "東武鉄道", + "company_cd" : 11, + "name" : "2100501 (21005) 2100502", + "rr_cd" : 21, + "company_name_r" : "東武", + "e_status_x" : 0, + "shared_name" : "2100501 (21005) 2100502", + "lat" : 35.707951515131064, + "e_status_y" : 0, + "line_name_h" : "東武亀戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "13586", + "source" : "3100", + "target" : "3101", + "line_name_k" : "サイキョウセン", + "is_bullet" : false, + "lon" : 139.6182015405503, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13586, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11321", + "shared_interaction" : "11321", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR埼京線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1132105 (11321) 1132106", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1132105 (11321) 1132106", + "lat" : 35.80319581571332, + "e_status_y" : 0, + "line_name_h" : "JR埼京線" + }, + "selected" : false + }, { + "data" : { + "id" : "13583", + "source" : "3097", + "target" : "3098", + "line_name_k" : "サイキョウセン", + "is_bullet" : false, + "lon" : 139.6182015405503, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13583, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11321", + "shared_interaction" : "11321", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR埼京線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1132102 (11321) 1132103", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1132102 (11321) 1132103", + "lat" : 35.80319581571332, + "e_status_y" : 0, + "line_name_h" : "JR埼京線" + }, + "selected" : false + }, { + "data" : { + "id" : "13584", + "source" : "3098", + "target" : "3099", + "line_name_k" : "サイキョウセン", + "is_bullet" : false, + "lon" : 139.6182015405503, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13584, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11321", + "shared_interaction" : "11321", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR埼京線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1132103 (11321) 1132104", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1132103 (11321) 1132104", + "lat" : 35.80319581571332, + "e_status_y" : 0, + "line_name_h" : "JR埼京線" + }, + "selected" : false + }, { + "data" : { + "id" : "15703", + "source" : "5302", + "target" : "5303", + "line_name_k" : "トウブカメイドセン", + "is_bullet" : false, + "lon" : 139.8243467565918, + "company_name_k" : "トウブテツドウ", + "zoom" : 14, + "SUID" : 15703, + "company_type" : 2, + "company_name_h" : "東武鉄道株式会社", + "interaction" : "21005", + "shared_interaction" : "21005", + "company_url" : "http://www.tobu.co.jp/", + "line_name" : "東武亀戸線", + "selected" : false, + "company_name" : "東武鉄道", + "company_cd" : 11, + "name" : "2100503 (21005) 2100504", + "rr_cd" : 21, + "company_name_r" : "東武", + "e_status_x" : 0, + "shared_name" : "2100503 (21005) 2100504", + "lat" : 35.707951515131064, + "e_status_y" : 0, + "line_name_h" : "東武亀戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "15702", + "source" : "5301", + "target" : "5302", + "line_name_k" : "トウブカメイドセン", + "is_bullet" : false, + "lon" : 139.8243467565918, + "company_name_k" : "トウブテツドウ", + "zoom" : 14, + "SUID" : 15702, + "company_type" : 2, + "company_name_h" : "東武鉄道株式会社", + "interaction" : "21005", + "shared_interaction" : "21005", + "company_url" : "http://www.tobu.co.jp/", + "line_name" : "東武亀戸線", + "selected" : false, + "company_name" : "東武鉄道", + "company_cd" : 11, + "name" : "2100502 (21005) 2100503", + "rr_cd" : 21, + "company_name_r" : "東武", + "e_status_x" : 0, + "shared_name" : "2100502 (21005) 2100503", + "lat" : 35.707951515131064, + "e_status_y" : 0, + "line_name_h" : "東武亀戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "15704", + "source" : "5303", + "target" : "5304", + "line_name_k" : "トウブカメイドセン", + "is_bullet" : false, + "lon" : 139.8243467565918, + "company_name_k" : "トウブテツドウ", + "zoom" : 14, + "SUID" : 15704, + "company_type" : 2, + "company_name_h" : "東武鉄道株式会社", + "interaction" : "21005", + "shared_interaction" : "21005", + "company_url" : "http://www.tobu.co.jp/", + "line_name" : "東武亀戸線", + "selected" : false, + "company_name" : "東武鉄道", + "company_cd" : 11, + "name" : "2100504 (21005) 2100505", + "rr_cd" : 21, + "company_name_r" : "東武", + "e_status_x" : 0, + "shared_name" : "2100504 (21005) 2100505", + "lat" : 35.707951515131064, + "e_status_y" : 0, + "line_name_h" : "東武亀戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "15705", + "source" : "5305", + "target" : "5306", + "line_name_k" : "トウブダイシセン", + "is_bullet" : false, + "lon" : 139.78532285449214, + "company_name_k" : "トウブテツドウ", + "zoom" : 15, + "SUID" : 15705, + "company_type" : 2, + "company_name_h" : "東武鉄道株式会社", + "interaction" : "21006", + "shared_interaction" : "21006", + "company_url" : "http://www.tobu.co.jp/", + "line_name" : "東武大師線", + "selected" : false, + "company_name" : "東武鉄道", + "company_cd" : 11, + "name" : "2100601 (21006) 2100602", + "rr_cd" : 21, + "company_name_r" : "東武", + "e_status_x" : 0, + "shared_name" : "2100601 (21006) 2100602", + "lat" : 35.77906122777853, + "e_status_y" : 0, + "line_name_h" : "東武大師線" + }, + "selected" : false + }, { + "data" : { + "id" : "13610", + "source" : "3126", + "target" : "3127", + "line_name_k" : "タカサキセン", + "is_bullet" : false, + "lon" : 139.45218074609377, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 9, + "SUID" : 13610, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11323", + "shared_interaction" : "11323", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR高崎線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1132301 (11323) 1132302", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1132301 (11323) 1132302", + "lat" : 36.09573564081418, + "e_status_y" : 0, + "line_name_h" : "JR高崎線" + }, + "selected" : false + }, { + "data" : { + "id" : "13611", + "source" : "3127", + "target" : "3128", + "line_name_k" : "タカサキセン", + "is_bullet" : false, + "lon" : 139.45218074609377, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 9, + "SUID" : 13611, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11323", + "shared_interaction" : "11323", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR高崎線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1132302 (11323) 1132303", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1132302 (11323) 1132303", + "lat" : 36.09573564081418, + "e_status_y" : 0, + "line_name_h" : "JR高崎線" + }, + "selected" : false + }, { + "data" : { + "id" : "15756", + "source" : "5363", + "target" : "5364", + "line_name_k" : "セイブイケブクロセン", + "is_bullet" : false, + "lon" : 139.46789285918442, + "company_name_k" : "セイブテツドウ", + "zoom" : 10, + "SUID" : 15756, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22001", + "shared_interaction" : "22001", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武池袋線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200102 (22001) 2200103", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200102 (22001) 2200103", + "lat" : 35.791261736068634, + "e_status_y" : 0, + "line_name_h" : "西武池袋線" + }, + "selected" : false + }, { + "data" : { + "id" : "15757", + "source" : "5364", + "target" : "5365", + "line_name_k" : "セイブイケブクロセン", + "is_bullet" : false, + "lon" : 139.46789285918442, + "company_name_k" : "セイブテツドウ", + "zoom" : 10, + "SUID" : 15757, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22001", + "shared_interaction" : "22001", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武池袋線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200103 (22001) 2200104", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200103 (22001) 2200104", + "lat" : 35.791261736068634, + "e_status_y" : 0, + "line_name_h" : "西武池袋線" + }, + "selected" : false + }, { + "data" : { + "id" : "15755", + "source" : "5362", + "target" : "5363", + "line_name_k" : "セイブイケブクロセン", + "is_bullet" : false, + "lon" : 139.46789285918442, + "company_name_k" : "セイブテツドウ", + "zoom" : 10, + "SUID" : 15755, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22001", + "shared_interaction" : "22001", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武池袋線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200101 (22001) 2200102", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200101 (22001) 2200102", + "lat" : 35.791261736068634, + "e_status_y" : 0, + "line_name_h" : "西武池袋線" + }, + "selected" : false + }, { + "data" : { + "id" : "15763", + "source" : "5370", + "target" : "5371", + "line_name_k" : "セイブイケブクロセン", + "is_bullet" : false, + "lon" : 139.46789285918442, + "company_name_k" : "セイブテツドウ", + "zoom" : 10, + "SUID" : 15763, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22001", + "shared_interaction" : "22001", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武池袋線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200109 (22001) 2200110", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200109 (22001) 2200110", + "lat" : 35.791261736068634, + "e_status_y" : 0, + "line_name_h" : "西武池袋線" + }, + "selected" : false + }, { + "data" : { + "id" : "15762", + "source" : "5369", + "target" : "5370", + "line_name_k" : "セイブイケブクロセン", + "is_bullet" : false, + "lon" : 139.46789285918442, + "company_name_k" : "セイブテツドウ", + "zoom" : 10, + "SUID" : 15762, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22001", + "shared_interaction" : "22001", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武池袋線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200108 (22001) 2200109", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200108 (22001) 2200109", + "lat" : 35.791261736068634, + "e_status_y" : 0, + "line_name_h" : "西武池袋線" + }, + "selected" : false + }, { + "data" : { + "id" : "15765", + "source" : "5372", + "target" : "5373", + "line_name_k" : "セイブイケブクロセン", + "is_bullet" : false, + "lon" : 139.46789285918442, + "company_name_k" : "セイブテツドウ", + "zoom" : 10, + "SUID" : 15765, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22001", + "shared_interaction" : "22001", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武池袋線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200111 (22001) 2200112", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200111 (22001) 2200112", + "lat" : 35.791261736068634, + "e_status_y" : 0, + "line_name_h" : "西武池袋線" + }, + "selected" : false + }, { + "data" : { + "id" : "15764", + "source" : "5371", + "target" : "5372", + "line_name_k" : "セイブイケブクロセン", + "is_bullet" : false, + "lon" : 139.46789285918442, + "company_name_k" : "セイブテツドウ", + "zoom" : 10, + "SUID" : 15764, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22001", + "shared_interaction" : "22001", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武池袋線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200110 (22001) 2200111", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200110 (22001) 2200111", + "lat" : 35.791261736068634, + "e_status_y" : 0, + "line_name_h" : "西武池袋線" + }, + "selected" : false + }, { + "data" : { + "id" : "15759", + "source" : "5366", + "target" : "5367", + "line_name_k" : "セイブイケブクロセン", + "is_bullet" : false, + "lon" : 139.46789285918442, + "company_name_k" : "セイブテツドウ", + "zoom" : 10, + "SUID" : 15759, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22001", + "shared_interaction" : "22001", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武池袋線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200105 (22001) 2200106", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200105 (22001) 2200106", + "lat" : 35.791261736068634, + "e_status_y" : 0, + "line_name_h" : "西武池袋線" + }, + "selected" : false + }, { + "data" : { + "id" : "13694", + "source" : "3213", + "target" : "3214", + "line_name_k" : "ケイヨウセン", + "is_bullet" : false, + "lon" : 139.93611002907872, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13694, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11326", + "shared_interaction" : "11326", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR京葉線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1132605 (11326) 1132606", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1132605 (11326) 1132606", + "lat" : 35.643649620088546, + "e_status_y" : 0, + "line_name_h" : "JR京葉線" + }, + "selected" : false + }, { + "data" : { + "id" : "15758", + "source" : "5365", + "target" : "5366", + "line_name_k" : "セイブイケブクロセン", + "is_bullet" : false, + "lon" : 139.46789285918442, + "company_name_k" : "セイブテツドウ", + "zoom" : 10, + "SUID" : 15758, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22001", + "shared_interaction" : "22001", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武池袋線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200104 (22001) 2200105", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200104 (22001) 2200105", + "lat" : 35.791261736068634, + "e_status_y" : 0, + "line_name_h" : "西武池袋線" + }, + "selected" : false + }, { + "data" : { + "id" : "15761", + "source" : "5368", + "target" : "5369", + "line_name_k" : "セイブイケブクロセン", + "is_bullet" : false, + "lon" : 139.46789285918442, + "company_name_k" : "セイブテツドウ", + "zoom" : 10, + "SUID" : 15761, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22001", + "shared_interaction" : "22001", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武池袋線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200107 (22001) 2200108", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200107 (22001) 2200108", + "lat" : 35.791261736068634, + "e_status_y" : 0, + "line_name_h" : "西武池袋線" + }, + "selected" : false + }, { + "data" : { + "id" : "15760", + "source" : "5367", + "target" : "5368", + "line_name_k" : "セイブイケブクロセン", + "is_bullet" : false, + "lon" : 139.46789285918442, + "company_name_k" : "セイブテツドウ", + "zoom" : 10, + "SUID" : 15760, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22001", + "shared_interaction" : "22001", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武池袋線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200106 (22001) 2200107", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200106 (22001) 2200107", + "lat" : 35.791261736068634, + "e_status_y" : 0, + "line_name_h" : "西武池袋線" + }, + "selected" : false + }, { + "data" : { + "id" : "13691", + "source" : "3210", + "target" : "3211", + "line_name_k" : "ケイヨウセン", + "is_bullet" : false, + "lon" : 139.93611002907872, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13691, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11326", + "shared_interaction" : "11326", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR京葉線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1132602 (11326) 1132603", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1132602 (11326) 1132603", + "lat" : 35.643649620088546, + "e_status_y" : 0, + "line_name_h" : "JR京葉線" + }, + "selected" : false + }, { + "data" : { + "id" : "13690", + "source" : "3209", + "target" : "3210", + "line_name_k" : "ケイヨウセン", + "is_bullet" : false, + "lon" : 139.93611002907872, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13690, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11326", + "shared_interaction" : "11326", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR京葉線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1132601 (11326) 1132602", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1132601 (11326) 1132602", + "lat" : 35.643649620088546, + "e_status_y" : 0, + "line_name_h" : "JR京葉線" + }, + "selected" : false + }, { + "data" : { + "id" : "13693", + "source" : "3212", + "target" : "3213", + "line_name_k" : "ケイヨウセン", + "is_bullet" : false, + "lon" : 139.93611002907872, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13693, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11326", + "shared_interaction" : "11326", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR京葉線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1132604 (11326) 1132605", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1132604 (11326) 1132605", + "lat" : 35.643649620088546, + "e_status_y" : 0, + "line_name_h" : "JR京葉線" + }, + "selected" : false + }, { + "data" : { + "id" : "13692", + "source" : "3211", + "target" : "3212", + "line_name_k" : "ケイヨウセン", + "is_bullet" : false, + "lon" : 139.93611002907872, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13692, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11326", + "shared_interaction" : "11326", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR京葉線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1132603 (11326) 1132604", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1132603 (11326) 1132604", + "lat" : 35.643649620088546, + "e_status_y" : 0, + "line_name_h" : "JR京葉線" + }, + "selected" : false + }, { + "data" : { + "id" : "15767", + "source" : "5374", + "target" : "5375", + "line_name_k" : "セイブイケブクロセン", + "is_bullet" : false, + "lon" : 139.46789285918442, + "company_name_k" : "セイブテツドウ", + "zoom" : 10, + "SUID" : 15767, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22001", + "shared_interaction" : "22001", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武池袋線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200113 (22001) 2200114", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200113 (22001) 2200114", + "lat" : 35.791261736068634, + "e_status_y" : 0, + "line_name_h" : "西武池袋線" + }, + "selected" : false + }, { + "data" : { + "id" : "15766", + "source" : "5373", + "target" : "5374", + "line_name_k" : "セイブイケブクロセン", + "is_bullet" : false, + "lon" : 139.46789285918442, + "company_name_k" : "セイブテツドウ", + "zoom" : 10, + "SUID" : 15766, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22001", + "shared_interaction" : "22001", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武池袋線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200112 (22001) 2200113", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200112 (22001) 2200113", + "lat" : 35.791261736068634, + "e_status_y" : 0, + "line_name_h" : "西武池袋線" + }, + "selected" : false + }, { + "data" : { + "id" : "15769", + "source" : "5376", + "target" : "5377", + "line_name_k" : "セイブイケブクロセン", + "is_bullet" : false, + "lon" : 139.46789285918442, + "company_name_k" : "セイブテツドウ", + "zoom" : 10, + "SUID" : 15769, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22001", + "shared_interaction" : "22001", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武池袋線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200115 (22001) 2200116", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200115 (22001) 2200116", + "lat" : 35.791261736068634, + "e_status_y" : 0, + "line_name_h" : "西武池袋線" + }, + "selected" : false + }, { + "data" : { + "id" : "15768", + "source" : "5375", + "target" : "5376", + "line_name_k" : "セイブイケブクロセン", + "is_bullet" : false, + "lon" : 139.46789285918442, + "company_name_k" : "セイブテツドウ", + "zoom" : 10, + "SUID" : 15768, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22001", + "shared_interaction" : "22001", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武池袋線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200114 (22001) 2200115", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200114 (22001) 2200115", + "lat" : 35.791261736068634, + "e_status_y" : 0, + "line_name_h" : "西武池袋線" + }, + "selected" : false + }, { + "data" : { + "id" : "17845", + "source" : "7607", + "target" : "7608", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17845, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930132 (99301) 9930133", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930132 (99301) 9930133", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "15556", + "source" : "5151", + "target" : "5152", + "line_name_k" : "トウブトウジョウセン", + "is_bullet" : false, + "lon" : 139.4596378608162, + "company_name_k" : "トウブテツドウ", + "zoom" : 10, + "SUID" : 15556, + "company_type" : 2, + "company_name_h" : "東武鉄道株式会社", + "interaction" : "21001", + "shared_interaction" : "21001", + "company_url" : "http://www.tobu.co.jp/", + "line_name" : "東武東上線", + "selected" : false, + "company_name" : "東武鉄道", + "company_cd" : 11, + "name" : "2100106 (21001) 2100107", + "rr_cd" : 21, + "company_name_r" : "東武", + "e_status_x" : 0, + "shared_name" : "2100106 (21001) 2100107", + "lat" : 35.921218671003345, + "e_status_y" : 0, + "line_name_h" : "東武東上線" + }, + "selected" : false + }, { + "data" : { + "id" : "17846", + "source" : "7608", + "target" : "7609", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17846, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930133 (99301) 9930134", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930133 (99301) 9930134", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "15557", + "source" : "5152", + "target" : "5153", + "line_name_k" : "トウブトウジョウセン", + "is_bullet" : false, + "lon" : 139.4596378608162, + "company_name_k" : "トウブテツドウ", + "zoom" : 10, + "SUID" : 15557, + "company_type" : 2, + "company_name_h" : "東武鉄道株式会社", + "interaction" : "21001", + "shared_interaction" : "21001", + "company_url" : "http://www.tobu.co.jp/", + "line_name" : "東武東上線", + "selected" : false, + "company_name" : "東武鉄道", + "company_cd" : 11, + "name" : "2100107 (21001) 2100108", + "rr_cd" : 21, + "company_name_r" : "東武", + "e_status_x" : 0, + "shared_name" : "2100107 (21001) 2100108", + "lat" : 35.921218671003345, + "e_status_y" : 0, + "line_name_h" : "東武東上線" + }, + "selected" : false + }, { + "data" : { + "id" : "17843", + "source" : "7605", + "target" : "7606", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17843, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930130 (99301) 9930131", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930130 (99301) 9930131", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "15554", + "source" : "5149", + "target" : "5150", + "line_name_k" : "トウブトウジョウセン", + "is_bullet" : false, + "lon" : 139.4596378608162, + "company_name_k" : "トウブテツドウ", + "zoom" : 10, + "SUID" : 15554, + "company_type" : 2, + "company_name_h" : "東武鉄道株式会社", + "interaction" : "21001", + "shared_interaction" : "21001", + "company_url" : "http://www.tobu.co.jp/", + "line_name" : "東武東上線", + "selected" : false, + "company_name" : "東武鉄道", + "company_cd" : 11, + "name" : "2100104 (21001) 2100105", + "rr_cd" : 21, + "company_name_r" : "東武", + "e_status_x" : 0, + "shared_name" : "2100104 (21001) 2100105", + "lat" : 35.921218671003345, + "e_status_y" : 0, + "line_name_h" : "東武東上線" + }, + "selected" : false + }, { + "data" : { + "id" : "17844", + "source" : "7606", + "target" : "7607", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17844, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930131 (99301) 9930132", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930131 (99301) 9930132", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "15555", + "source" : "5150", + "target" : "5151", + "line_name_k" : "トウブトウジョウセン", + "is_bullet" : false, + "lon" : 139.4596378608162, + "company_name_k" : "トウブテツドウ", + "zoom" : 10, + "SUID" : 15555, + "company_type" : 2, + "company_name_h" : "東武鉄道株式会社", + "interaction" : "21001", + "shared_interaction" : "21001", + "company_url" : "http://www.tobu.co.jp/", + "line_name" : "東武東上線", + "selected" : false, + "company_name" : "東武鉄道", + "company_cd" : 11, + "name" : "2100105 (21001) 2100106", + "rr_cd" : 21, + "company_name_r" : "東武", + "e_status_x" : 0, + "shared_name" : "2100105 (21001) 2100106", + "lat" : 35.921218671003345, + "e_status_y" : 0, + "line_name_h" : "東武東上線" + }, + "selected" : false + }, { + "data" : { + "id" : "17849", + "source" : "7611", + "target" : "7612", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17849, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930136 (99301) 9930137", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930136 (99301) 9930137", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "17850", + "source" : "7612", + "target" : "7613", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17850, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930137 (99301) 9930138", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930137 (99301) 9930138", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "17847", + "source" : "7609", + "target" : "7610", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17847, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930134 (99301) 9930135", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930134 (99301) 9930135", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "15558", + "source" : "5153", + "target" : "5154", + "line_name_k" : "トウブトウジョウセン", + "is_bullet" : false, + "lon" : 139.4596378608162, + "company_name_k" : "トウブテツドウ", + "zoom" : 10, + "SUID" : 15558, + "company_type" : 2, + "company_name_h" : "東武鉄道株式会社", + "interaction" : "21001", + "shared_interaction" : "21001", + "company_url" : "http://www.tobu.co.jp/", + "line_name" : "東武東上線", + "selected" : false, + "company_name" : "東武鉄道", + "company_cd" : 11, + "name" : "2100108 (21001) 2100109", + "rr_cd" : 21, + "company_name_r" : "東武", + "e_status_x" : 0, + "shared_name" : "2100108 (21001) 2100109", + "lat" : 35.921218671003345, + "e_status_y" : 0, + "line_name_h" : "東武東上線" + }, + "selected" : false + }, { + "data" : { + "id" : "17848", + "source" : "7610", + "target" : "7611", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17848, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930135 (99301) 9930136", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930135 (99301) 9930136", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "15559", + "source" : "5154", + "target" : "5155", + "line_name_k" : "トウブトウジョウセン", + "is_bullet" : false, + "lon" : 139.4596378608162, + "company_name_k" : "トウブテツドウ", + "zoom" : 10, + "SUID" : 15559, + "company_type" : 2, + "company_name_h" : "東武鉄道株式会社", + "interaction" : "21001", + "shared_interaction" : "21001", + "company_url" : "http://www.tobu.co.jp/", + "line_name" : "東武東上線", + "selected" : false, + "company_name" : "東武鉄道", + "company_cd" : 11, + "name" : "2100109 (21001) 2100110", + "rr_cd" : 21, + "company_name_r" : "東武", + "e_status_x" : 0, + "shared_name" : "2100109 (21001) 2100110", + "lat" : 35.921218671003345, + "e_status_y" : 0, + "line_name_h" : "東武東上線" + }, + "selected" : false + }, { + "data" : { + "id" : "17852", + "source" : "7615", + "target" : "7616", + "line_name_k" : "トエイアサクサセン", + "is_bullet" : false, + "lon" : 139.75860382724613, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17852, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99302", + "shared_interaction" : "99302", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営浅草線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930202 (99302) 9930203", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930202 (99302) 9930203", + "lat" : 35.66226194441651, + "e_status_y" : 0, + "line_name_h" : "都営浅草線" + }, + "selected" : false + }, { + "data" : { + "id" : "17853", + "source" : "7616", + "target" : "7617", + "line_name_k" : "トエイアサクサセン", + "is_bullet" : false, + "lon" : 139.75860382724613, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17853, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99302", + "shared_interaction" : "99302", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営浅草線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930203 (99302) 9930204", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930203 (99302) 9930204", + "lat" : 35.66226194441651, + "e_status_y" : 0, + "line_name_h" : "都営浅草線" + }, + "selected" : false + }, { + "data" : { + "id" : "17851", + "source" : "7614", + "target" : "7615", + "line_name_k" : "トエイアサクサセン", + "is_bullet" : false, + "lon" : 139.75860382724613, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17851, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99302", + "shared_interaction" : "99302", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営浅草線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930201 (99302) 9930202", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930201 (99302) 9930202", + "lat" : 35.66226194441651, + "e_status_y" : 0, + "line_name_h" : "都営浅草線" + }, + "selected" : false + }, { + "data" : { + "id" : "15552", + "source" : "5147", + "target" : "5148", + "line_name_k" : "トウブトウジョウセン", + "is_bullet" : false, + "lon" : 139.4596378608162, + "company_name_k" : "トウブテツドウ", + "zoom" : 10, + "SUID" : 15552, + "company_type" : 2, + "company_name_h" : "東武鉄道株式会社", + "interaction" : "21001", + "shared_interaction" : "21001", + "company_url" : "http://www.tobu.co.jp/", + "line_name" : "東武東上線", + "selected" : false, + "company_name" : "東武鉄道", + "company_cd" : 11, + "name" : "2100102 (21001) 2100103", + "rr_cd" : 21, + "company_name_r" : "東武", + "e_status_x" : 0, + "shared_name" : "2100102 (21001) 2100103", + "lat" : 35.921218671003345, + "e_status_y" : 0, + "line_name_h" : "東武東上線" + }, + "selected" : false + }, { + "data" : { + "id" : "17856", + "source" : "7619", + "target" : "7620", + "line_name_k" : "トエイアサクサセン", + "is_bullet" : false, + "lon" : 139.75860382724613, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17856, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99302", + "shared_interaction" : "99302", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営浅草線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930206 (99302) 9930207", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930206 (99302) 9930207", + "lat" : 35.66226194441651, + "e_status_y" : 0, + "line_name_h" : "都営浅草線" + }, + "selected" : false + }, { + "data" : { + "id" : "17857", + "source" : "7620", + "target" : "7621", + "line_name_k" : "トエイアサクサセン", + "is_bullet" : false, + "lon" : 139.75860382724613, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17857, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99302", + "shared_interaction" : "99302", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営浅草線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930207 (99302) 9930208", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930207 (99302) 9930208", + "lat" : 35.66226194441651, + "e_status_y" : 0, + "line_name_h" : "都営浅草線" + }, + "selected" : false + }, { + "data" : { + "id" : "15553", + "source" : "5148", + "target" : "5149", + "line_name_k" : "トウブトウジョウセン", + "is_bullet" : false, + "lon" : 139.4596378608162, + "company_name_k" : "トウブテツドウ", + "zoom" : 10, + "SUID" : 15553, + "company_type" : 2, + "company_name_h" : "東武鉄道株式会社", + "interaction" : "21001", + "shared_interaction" : "21001", + "company_url" : "http://www.tobu.co.jp/", + "line_name" : "東武東上線", + "selected" : false, + "company_name" : "東武鉄道", + "company_cd" : 11, + "name" : "2100103 (21001) 2100104", + "rr_cd" : 21, + "company_name_r" : "東武", + "e_status_x" : 0, + "shared_name" : "2100103 (21001) 2100104", + "lat" : 35.921218671003345, + "e_status_y" : 0, + "line_name_h" : "東武東上線" + }, + "selected" : false + }, { + "data" : { + "id" : "17854", + "source" : "7617", + "target" : "7618", + "line_name_k" : "トエイアサクサセン", + "is_bullet" : false, + "lon" : 139.75860382724613, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17854, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99302", + "shared_interaction" : "99302", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営浅草線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930204 (99302) 9930205", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930204 (99302) 9930205", + "lat" : 35.66226194441651, + "e_status_y" : 0, + "line_name_h" : "都営浅草線" + }, + "selected" : false + }, { + "data" : { + "id" : "15551", + "source" : "5146", + "target" : "5147", + "line_name_k" : "トウブトウジョウセン", + "is_bullet" : false, + "lon" : 139.4596378608162, + "company_name_k" : "トウブテツドウ", + "zoom" : 10, + "SUID" : 15551, + "company_type" : 2, + "company_name_h" : "東武鉄道株式会社", + "interaction" : "21001", + "shared_interaction" : "21001", + "company_url" : "http://www.tobu.co.jp/", + "line_name" : "東武東上線", + "selected" : false, + "company_name" : "東武鉄道", + "company_cd" : 11, + "name" : "2100101 (21001) 2100102", + "rr_cd" : 21, + "company_name_r" : "東武", + "e_status_x" : 0, + "shared_name" : "2100101 (21001) 2100102", + "lat" : 35.921218671003345, + "e_status_y" : 0, + "line_name_h" : "東武東上線" + }, + "selected" : false + }, { + "data" : { + "id" : "17855", + "source" : "7618", + "target" : "7619", + "line_name_k" : "トエイアサクサセン", + "is_bullet" : false, + "lon" : 139.75860382724613, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17855, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99302", + "shared_interaction" : "99302", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営浅草線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930205 (99302) 9930206", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930205 (99302) 9930206", + "lat" : 35.66226194441651, + "e_status_y" : 0, + "line_name_h" : "都営浅草線" + }, + "selected" : false + }, { + "data" : { + "id" : "17861", + "source" : "7624", + "target" : "7625", + "line_name_k" : "トエイアサクサセン", + "is_bullet" : false, + "lon" : 139.75860382724613, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17861, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99302", + "shared_interaction" : "99302", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営浅草線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930211 (99302) 9930212", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930211 (99302) 9930212", + "lat" : 35.66226194441651, + "e_status_y" : 0, + "line_name_h" : "都営浅草線" + }, + "selected" : false + }, { + "data" : { + "id" : "17860", + "source" : "7623", + "target" : "7624", + "line_name_k" : "トエイアサクサセン", + "is_bullet" : false, + "lon" : 139.75860382724613, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17860, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99302", + "shared_interaction" : "99302", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営浅草線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930210 (99302) 9930211", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930210 (99302) 9930211", + "lat" : 35.66226194441651, + "e_status_y" : 0, + "line_name_h" : "都営浅草線" + }, + "selected" : false + }, { + "data" : { + "id" : "17859", + "source" : "7622", + "target" : "7623", + "line_name_k" : "トエイアサクサセン", + "is_bullet" : false, + "lon" : 139.75860382724613, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17859, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99302", + "shared_interaction" : "99302", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営浅草線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930209 (99302) 9930210", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930209 (99302) 9930210", + "lat" : 35.66226194441651, + "e_status_y" : 0, + "line_name_h" : "都営浅草線" + }, + "selected" : false + }, { + "data" : { + "id" : "17858", + "source" : "7621", + "target" : "7622", + "line_name_k" : "トエイアサクサセン", + "is_bullet" : false, + "lon" : 139.75860382724613, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17858, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99302", + "shared_interaction" : "99302", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営浅草線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930208 (99302) 9930209", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930208 (99302) 9930209", + "lat" : 35.66226194441651, + "e_status_y" : 0, + "line_name_h" : "都営浅草線" + }, + "selected" : false + }, { + "data" : { + "id" : "17865", + "source" : "7628", + "target" : "7629", + "line_name_k" : "トエイアサクサセン", + "is_bullet" : false, + "lon" : 139.75860382724613, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17865, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99302", + "shared_interaction" : "99302", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営浅草線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930215 (99302) 9930216", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930215 (99302) 9930216", + "lat" : 35.66226194441651, + "e_status_y" : 0, + "line_name_h" : "都営浅草線" + }, + "selected" : false + }, { + "data" : { + "id" : "17864", + "source" : "7627", + "target" : "7628", + "line_name_k" : "トエイアサクサセン", + "is_bullet" : false, + "lon" : 139.75860382724613, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17864, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99302", + "shared_interaction" : "99302", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営浅草線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930214 (99302) 9930215", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930214 (99302) 9930215", + "lat" : 35.66226194441651, + "e_status_y" : 0, + "line_name_h" : "都営浅草線" + }, + "selected" : false + }, { + "data" : { + "id" : "17863", + "source" : "7626", + "target" : "7627", + "line_name_k" : "トエイアサクサセン", + "is_bullet" : false, + "lon" : 139.75860382724613, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17863, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99302", + "shared_interaction" : "99302", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営浅草線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930213 (99302) 9930214", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930213 (99302) 9930214", + "lat" : 35.66226194441651, + "e_status_y" : 0, + "line_name_h" : "都営浅草線" + }, + "selected" : false + }, { + "data" : { + "id" : "17862", + "source" : "7625", + "target" : "7626", + "line_name_k" : "トエイアサクサセン", + "is_bullet" : false, + "lon" : 139.75860382724613, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17862, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99302", + "shared_interaction" : "99302", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営浅草線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930212 (99302) 9930213", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930212 (99302) 9930213", + "lat" : 35.66226194441651, + "e_status_y" : 0, + "line_name_h" : "都営浅草線" + }, + "selected" : false + }, { + "data" : { + "id" : "17869", + "source" : "7632", + "target" : "7633", + "line_name_k" : "トエイアサクサセン", + "is_bullet" : false, + "lon" : 139.75860382724613, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17869, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99302", + "shared_interaction" : "99302", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営浅草線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930219 (99302) 9930220", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930219 (99302) 9930220", + "lat" : 35.66226194441651, + "e_status_y" : 0, + "line_name_h" : "都営浅草線" + }, + "selected" : false + }, { + "data" : { + "id" : "17868", + "source" : "7631", + "target" : "7632", + "line_name_k" : "トエイアサクサセン", + "is_bullet" : false, + "lon" : 139.75860382724613, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17868, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99302", + "shared_interaction" : "99302", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営浅草線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930218 (99302) 9930219", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930218 (99302) 9930219", + "lat" : 35.66226194441651, + "e_status_y" : 0, + "line_name_h" : "都営浅草線" + }, + "selected" : false + }, { + "data" : { + "id" : "17867", + "source" : "7630", + "target" : "7631", + "line_name_k" : "トエイアサクサセン", + "is_bullet" : false, + "lon" : 139.75860382724613, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17867, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99302", + "shared_interaction" : "99302", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営浅草線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930217 (99302) 9930218", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930217 (99302) 9930218", + "lat" : 35.66226194441651, + "e_status_y" : 0, + "line_name_h" : "都営浅草線" + }, + "selected" : false + }, { + "data" : { + "id" : "17866", + "source" : "7629", + "target" : "7630", + "line_name_k" : "トエイアサクサセン", + "is_bullet" : false, + "lon" : 139.75860382724613, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17866, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99302", + "shared_interaction" : "99302", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営浅草線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930216 (99302) 9930217", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930216 (99302) 9930217", + "lat" : 35.66226194441651, + "e_status_y" : 0, + "line_name_h" : "都営浅草線" + }, + "selected" : false + }, { + "data" : { + "id" : "17872", + "source" : "7636", + "target" : "7637", + "line_name_k" : "トエイミタセン", + "is_bullet" : false, + "lon" : 139.7032176242069, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17872, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99303", + "shared_interaction" : "99303", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営三田線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930303 (99303) 9930304", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930303 (99303) 9930304", + "lat" : 35.71883584494032, + "e_status_y" : 0, + "line_name_h" : "都営三田線" + }, + "selected" : false + }, { + "data" : { + "id" : "17871", + "source" : "7635", + "target" : "7636", + "line_name_k" : "トエイミタセン", + "is_bullet" : false, + "lon" : 139.7032176242069, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17871, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99303", + "shared_interaction" : "99303", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営三田線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930302 (99303) 9930303", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930302 (99303) 9930303", + "lat" : 35.71883584494032, + "e_status_y" : 0, + "line_name_h" : "都営三田線" + }, + "selected" : false + }, { + "data" : { + "id" : "17870", + "source" : "7634", + "target" : "7635", + "line_name_k" : "トエイミタセン", + "is_bullet" : false, + "lon" : 139.7032176242069, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17870, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99303", + "shared_interaction" : "99303", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営三田線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930301 (99303) 9930302", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930301 (99303) 9930302", + "lat" : 35.71883584494032, + "e_status_y" : 0, + "line_name_h" : "都営三田線" + }, + "selected" : false + }, { + "data" : { + "id" : "13749", + "source" : "3270", + "target" : "3271", + "line_name_k" : "ナリタエクスプレス", + "is_bullet" : false, + "lon" : 139.7571982434863, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 9, + "SUID" : 13749, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11328", + "shared_interaction" : "11328", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR成田エクスプレス", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1132815 (11328) 1132816", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1132815 (11328) 1132816", + "lat" : 35.69212091775545, + "e_status_y" : 0, + "line_name_h" : "JR成田エクスプレス" + }, + "selected" : false + }, { + "data" : { + "id" : "13750", + "source" : "3271", + "target" : "3272", + "line_name_k" : "ナリタエクスプレス", + "is_bullet" : false, + "lon" : 139.7571982434863, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 9, + "SUID" : 13750, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11328", + "shared_interaction" : "11328", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR成田エクスプレス", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1132816 (11328) 1132817", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1132816 (11328) 1132817", + "lat" : 35.69212091775545, + "e_status_y" : 0, + "line_name_h" : "JR成田エクスプレス" + }, + "selected" : false + }, { + "data" : { + "id" : "13751", + "source" : "3272", + "target" : "3273", + "line_name_k" : "ナリタエクスプレス", + "is_bullet" : false, + "lon" : 139.7571982434863, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 9, + "SUID" : 13751, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11328", + "shared_interaction" : "11328", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR成田エクスプレス", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1132817 (11328) 1132818", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1132817 (11328) 1132818", + "lat" : 35.69212091775545, + "e_status_y" : 0, + "line_name_h" : "JR成田エクスプレス" + }, + "selected" : false + }, { + "data" : { + "id" : "17813", + "source" : "7576", + "target" : "7577", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17813, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930101 (99301) 9930129", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930101 (99301) 9930129", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "17814", + "source" : "7576", + "target" : "7578", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17814, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930101 (99301) 9930102", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930101 (99301) 9930102", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "15588", + "source" : "5184", + "target" : "5185", + "line_name_k" : "トウブイセサキセン", + "is_bullet" : false, + "lon" : 139.49934131661746, + "company_name_k" : "トウブテツドウ", + "zoom" : 10, + "SUID" : 15588, + "company_type" : 2, + "company_name_h" : "東武鉄道株式会社", + "interaction" : "21002", + "shared_interaction" : "21002", + "company_url" : "http://www.tobu.co.jp/", + "line_name" : "東武伊勢崎線", + "selected" : false, + "company_name" : "東武鉄道", + "company_cd" : 11, + "name" : "2100201 (21002) 2100202", + "rr_cd" : 21, + "company_name_r" : "東武", + "e_status_x" : 0, + "shared_name" : "2100201 (21002) 2100202", + "lat" : 36.05676642458757, + "e_status_y" : 0, + "line_name_h" : "東武伊勢崎線" + }, + "selected" : false + }, { + "data" : { + "id" : "13752", + "source" : "3273", + "target" : "3274", + "line_name_k" : "ナリタエクスプレス", + "is_bullet" : false, + "lon" : 139.7571982434863, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 9, + "SUID" : 13752, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11328", + "shared_interaction" : "11328", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR成田エクスプレス", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1132818 (11328) 1132819", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1132818 (11328) 1132819", + "lat" : 35.69212091775545, + "e_status_y" : 0, + "line_name_h" : "JR成田エクスプレス" + }, + "selected" : false + }, { + "data" : { + "id" : "17815", + "source" : "7577", + "target" : "7605", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17815, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930129 (99301) 9930130", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930129 (99301) 9930130", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "15589", + "source" : "5185", + "target" : "5186", + "line_name_k" : "トウブイセサキセン", + "is_bullet" : false, + "lon" : 139.49934131661746, + "company_name_k" : "トウブテツドウ", + "zoom" : 10, + "SUID" : 15589, + "company_type" : 2, + "company_name_h" : "東武鉄道株式会社", + "interaction" : "21002", + "shared_interaction" : "21002", + "company_url" : "http://www.tobu.co.jp/", + "line_name" : "東武伊勢崎線", + "selected" : false, + "company_name" : "東武鉄道", + "company_cd" : 11, + "name" : "2100202 (21002) 2100203", + "rr_cd" : 21, + "company_name_r" : "東武", + "e_status_x" : 0, + "shared_name" : "2100202 (21002) 2100203", + "lat" : 36.05676642458757, + "e_status_y" : 0, + "line_name_h" : "東武伊勢崎線" + }, + "selected" : false + }, { + "data" : { + "id" : "13753", + "source" : "3274", + "target" : "3275", + "line_name_k" : "ナリタエクスプレス", + "is_bullet" : false, + "lon" : 139.7571982434863, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 9, + "SUID" : 13753, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11328", + "shared_interaction" : "11328", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR成田エクスプレス", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1132819 (11328) 1132820", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1132819 (11328) 1132820", + "lat" : 35.69212091775545, + "e_status_y" : 0, + "line_name_h" : "JR成田エクスプレス" + }, + "selected" : false + }, { + "data" : { + "id" : "17816", + "source" : "7578", + "target" : "7579", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17816, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930102 (99301) 9930103", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930102 (99301) 9930103", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "15590", + "source" : "5186", + "target" : "5187", + "line_name_k" : "トウブイセサキセン", + "is_bullet" : false, + "lon" : 139.49934131661746, + "company_name_k" : "トウブテツドウ", + "zoom" : 10, + "SUID" : 15590, + "company_type" : 2, + "company_name_h" : "東武鉄道株式会社", + "interaction" : "21002", + "shared_interaction" : "21002", + "company_url" : "http://www.tobu.co.jp/", + "line_name" : "東武伊勢崎線", + "selected" : false, + "company_name" : "東武鉄道", + "company_cd" : 11, + "name" : "2100203 (21002) 2100204", + "rr_cd" : 21, + "company_name_r" : "東武", + "e_status_x" : 0, + "shared_name" : "2100203 (21002) 2100204", + "lat" : 36.05676642458757, + "e_status_y" : 0, + "line_name_h" : "東武伊勢崎線" + }, + "selected" : false + }, { + "data" : { + "id" : "13754", + "source" : "3275", + "target" : "3261", + "line_name_k" : "ナリタエクスプレス", + "is_bullet" : false, + "lon" : 139.7571982434863, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 9, + "SUID" : 13754, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11328", + "shared_interaction" : "11328", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR成田エクスプレス", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1132820 (11328) 1132806", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1132820 (11328) 1132806", + "lat" : 35.69212091775545, + "e_status_y" : 0, + "line_name_h" : "JR成田エクスプレス" + }, + "selected" : false + }, { + "data" : { + "id" : "17817", + "source" : "7579", + "target" : "7580", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17817, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930103 (99301) 9930104", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930103 (99301) 9930104", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "15591", + "source" : "5187", + "target" : "5188", + "line_name_k" : "トウブイセサキセン", + "is_bullet" : false, + "lon" : 139.49934131661746, + "company_name_k" : "トウブテツドウ", + "zoom" : 10, + "SUID" : 15591, + "company_type" : 2, + "company_name_h" : "東武鉄道株式会社", + "interaction" : "21002", + "shared_interaction" : "21002", + "company_url" : "http://www.tobu.co.jp/", + "line_name" : "東武伊勢崎線", + "selected" : false, + "company_name" : "東武鉄道", + "company_cd" : 11, + "name" : "2100204 (21002) 2100205", + "rr_cd" : 21, + "company_name_r" : "東武", + "e_status_x" : 0, + "shared_name" : "2100204 (21002) 2100205", + "lat" : 36.05676642458757, + "e_status_y" : 0, + "line_name_h" : "東武伊勢崎線" + }, + "selected" : false + }, { + "data" : { + "id" : "15592", + "source" : "5188", + "target" : "5189", + "line_name_k" : "トウブイセサキセン", + "is_bullet" : false, + "lon" : 139.49934131661746, + "company_name_k" : "トウブテツドウ", + "zoom" : 10, + "SUID" : 15592, + "company_type" : 2, + "company_name_h" : "東武鉄道株式会社", + "interaction" : "21002", + "shared_interaction" : "21002", + "company_url" : "http://www.tobu.co.jp/", + "line_name" : "東武伊勢崎線", + "selected" : false, + "company_name" : "東武鉄道", + "company_cd" : 11, + "name" : "2100205 (21002) 2100206", + "rr_cd" : 21, + "company_name_r" : "東武", + "e_status_x" : 0, + "shared_name" : "2100205 (21002) 2100206", + "lat" : 36.05676642458757, + "e_status_y" : 0, + "line_name_h" : "東武伊勢崎線" + }, + "selected" : false + }, { + "data" : { + "id" : "17818", + "source" : "7580", + "target" : "7581", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17818, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930104 (99301) 9930105", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930104 (99301) 9930105", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "17819", + "source" : "7581", + "target" : "7582", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17819, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930105 (99301) 9930106", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930105 (99301) 9930106", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "17820", + "source" : "7582", + "target" : "7583", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17820, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930106 (99301) 9930107", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930106 (99301) 9930107", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "17821", + "source" : "7583", + "target" : "7584", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17821, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930107 (99301) 9930108", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930107 (99301) 9930108", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "17822", + "source" : "7584", + "target" : "7585", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17822, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930108 (99301) 9930109", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930108 (99301) 9930109", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "17823", + "source" : "7585", + "target" : "7586", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17823, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930109 (99301) 9930110", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930109 (99301) 9930110", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "17824", + "source" : "7586", + "target" : "7587", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17824, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930110 (99301) 9930111", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930110 (99301) 9930111", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "17825", + "source" : "7587", + "target" : "7588", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17825, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930111 (99301) 9930112", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930111 (99301) 9930112", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "17826", + "source" : "7588", + "target" : "7589", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17826, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930112 (99301) 9930113", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930112 (99301) 9930113", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "17828", + "source" : "7590", + "target" : "7591", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17828, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930114 (99301) 9930115", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930114 (99301) 9930115", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "17827", + "source" : "7589", + "target" : "7590", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17827, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930113 (99301) 9930114", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930113 (99301) 9930114", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "17830", + "source" : "7592", + "target" : "7593", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17830, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930116 (99301) 9930117", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930116 (99301) 9930117", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "17829", + "source" : "7591", + "target" : "7592", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17829, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930115 (99301) 9930116", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930115 (99301) 9930116", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "17832", + "source" : "7594", + "target" : "7595", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17832, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930118 (99301) 9930119", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930118 (99301) 9930119", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "17831", + "source" : "7593", + "target" : "7594", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17831, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930117 (99301) 9930118", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930117 (99301) 9930118", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "13740", + "source" : "3260", + "target" : "3261", + "line_name_k" : "ナリタエクスプレス", + "is_bullet" : false, + "lon" : 139.7571982434863, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 9, + "SUID" : 13740, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11328", + "shared_interaction" : "11328", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR成田エクスプレス", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1132805 (11328) 1132806", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1132805 (11328) 1132806", + "lat" : 35.69212091775545, + "e_status_y" : 0, + "line_name_h" : "JR成田エクスプレス" + }, + "selected" : false + }, { + "data" : { + "id" : "17834", + "source" : "7596", + "target" : "7597", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17834, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930120 (99301) 9930121", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930120 (99301) 9930121", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "17833", + "source" : "7595", + "target" : "7596", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17833, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930119 (99301) 9930120", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930119 (99301) 9930120", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "15594", + "source" : "5190", + "target" : "5191", + "line_name_k" : "トウブイセサキセン", + "is_bullet" : false, + "lon" : 139.49934131661746, + "company_name_k" : "トウブテツドウ", + "zoom" : 10, + "SUID" : 15594, + "company_type" : 2, + "company_name_h" : "東武鉄道株式会社", + "interaction" : "21002", + "shared_interaction" : "21002", + "company_url" : "http://www.tobu.co.jp/", + "line_name" : "東武伊勢崎線", + "selected" : false, + "company_name" : "東武鉄道", + "company_cd" : 11, + "name" : "2100207 (21002) 2100208", + "rr_cd" : 21, + "company_name_r" : "東武", + "e_status_x" : 0, + "shared_name" : "2100207 (21002) 2100208", + "lat" : 36.05676642458757, + "e_status_y" : 0, + "line_name_h" : "東武伊勢崎線" + }, + "selected" : false + }, { + "data" : { + "id" : "13742", + "source" : "3262", + "target" : "3263", + "line_name_k" : "ナリタエクスプレス", + "is_bullet" : false, + "lon" : 139.7571982434863, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 9, + "SUID" : 13742, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11328", + "shared_interaction" : "11328", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR成田エクスプレス", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1132807 (11328) 1132808", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1132807 (11328) 1132808", + "lat" : 35.69212091775545, + "e_status_y" : 0, + "line_name_h" : "JR成田エクスプレス" + }, + "selected" : false + }, { + "data" : { + "id" : "17836", + "source" : "7598", + "target" : "7599", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17836, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930122 (99301) 9930123", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930122 (99301) 9930123", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "15593", + "source" : "5189", + "target" : "5190", + "line_name_k" : "トウブイセサキセン", + "is_bullet" : false, + "lon" : 139.49934131661746, + "company_name_k" : "トウブテツドウ", + "zoom" : 10, + "SUID" : 15593, + "company_type" : 2, + "company_name_h" : "東武鉄道株式会社", + "interaction" : "21002", + "shared_interaction" : "21002", + "company_url" : "http://www.tobu.co.jp/", + "line_name" : "東武伊勢崎線", + "selected" : false, + "company_name" : "東武鉄道", + "company_cd" : 11, + "name" : "2100206 (21002) 2100207", + "rr_cd" : 21, + "company_name_r" : "東武", + "e_status_x" : 0, + "shared_name" : "2100206 (21002) 2100207", + "lat" : 36.05676642458757, + "e_status_y" : 0, + "line_name_h" : "東武伊勢崎線" + }, + "selected" : false + }, { + "data" : { + "id" : "13741", + "source" : "3261", + "target" : "3262", + "line_name_k" : "ナリタエクスプレス", + "is_bullet" : false, + "lon" : 139.7571982434863, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 9, + "SUID" : 13741, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11328", + "shared_interaction" : "11328", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR成田エクスプレス", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1132806 (11328) 1132807", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1132806 (11328) 1132807", + "lat" : 35.69212091775545, + "e_status_y" : 0, + "line_name_h" : "JR成田エクスプレス" + }, + "selected" : false + }, { + "data" : { + "id" : "17835", + "source" : "7597", + "target" : "7598", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17835, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930121 (99301) 9930122", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930121 (99301) 9930122", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "15596", + "source" : "5192", + "target" : "5193", + "line_name_k" : "トウブイセサキセン", + "is_bullet" : false, + "lon" : 139.49934131661746, + "company_name_k" : "トウブテツドウ", + "zoom" : 10, + "SUID" : 15596, + "company_type" : 2, + "company_name_h" : "東武鉄道株式会社", + "interaction" : "21002", + "shared_interaction" : "21002", + "company_url" : "http://www.tobu.co.jp/", + "line_name" : "東武伊勢崎線", + "selected" : false, + "company_name" : "東武鉄道", + "company_cd" : 11, + "name" : "2100209 (21002) 2100210", + "rr_cd" : 21, + "company_name_r" : "東武", + "e_status_x" : 0, + "shared_name" : "2100209 (21002) 2100210", + "lat" : 36.05676642458757, + "e_status_y" : 0, + "line_name_h" : "東武伊勢崎線" + }, + "selected" : false + }, { + "data" : { + "id" : "17838", + "source" : "7600", + "target" : "7601", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17838, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930124 (99301) 9930125", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930124 (99301) 9930125", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "15595", + "source" : "5191", + "target" : "5192", + "line_name_k" : "トウブイセサキセン", + "is_bullet" : false, + "lon" : 139.49934131661746, + "company_name_k" : "トウブテツドウ", + "zoom" : 10, + "SUID" : 15595, + "company_type" : 2, + "company_name_h" : "東武鉄道株式会社", + "interaction" : "21002", + "shared_interaction" : "21002", + "company_url" : "http://www.tobu.co.jp/", + "line_name" : "東武伊勢崎線", + "selected" : false, + "company_name" : "東武鉄道", + "company_cd" : 11, + "name" : "2100208 (21002) 2100209", + "rr_cd" : 21, + "company_name_r" : "東武", + "e_status_x" : 0, + "shared_name" : "2100208 (21002) 2100209", + "lat" : 36.05676642458757, + "e_status_y" : 0, + "line_name_h" : "東武伊勢崎線" + }, + "selected" : false + }, { + "data" : { + "id" : "13743", + "source" : "3263", + "target" : "3264", + "line_name_k" : "ナリタエクスプレス", + "is_bullet" : false, + "lon" : 139.7571982434863, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 9, + "SUID" : 13743, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11328", + "shared_interaction" : "11328", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR成田エクスプレス", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1132808 (11328) 1132809", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1132808 (11328) 1132809", + "lat" : 35.69212091775545, + "e_status_y" : 0, + "line_name_h" : "JR成田エクスプレス" + }, + "selected" : false + }, { + "data" : { + "id" : "17837", + "source" : "7599", + "target" : "7600", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17837, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930123 (99301) 9930124", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930123 (99301) 9930124", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "15598", + "source" : "5194", + "target" : "5195", + "line_name_k" : "トウブイセサキセン", + "is_bullet" : false, + "lon" : 139.49934131661746, + "company_name_k" : "トウブテツドウ", + "zoom" : 10, + "SUID" : 15598, + "company_type" : 2, + "company_name_h" : "東武鉄道株式会社", + "interaction" : "21002", + "shared_interaction" : "21002", + "company_url" : "http://www.tobu.co.jp/", + "line_name" : "東武伊勢崎線", + "selected" : false, + "company_name" : "東武鉄道", + "company_cd" : 11, + "name" : "2100211 (21002) 2100212", + "rr_cd" : 21, + "company_name_r" : "東武", + "e_status_x" : 0, + "shared_name" : "2100211 (21002) 2100212", + "lat" : 36.05676642458757, + "e_status_y" : 0, + "line_name_h" : "東武伊勢崎線" + }, + "selected" : false + }, { + "data" : { + "id" : "17840", + "source" : "7602", + "target" : "7603", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17840, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930126 (99301) 9930127", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930126 (99301) 9930127", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "15597", + "source" : "5193", + "target" : "5194", + "line_name_k" : "トウブイセサキセン", + "is_bullet" : false, + "lon" : 139.49934131661746, + "company_name_k" : "トウブテツドウ", + "zoom" : 10, + "SUID" : 15597, + "company_type" : 2, + "company_name_h" : "東武鉄道株式会社", + "interaction" : "21002", + "shared_interaction" : "21002", + "company_url" : "http://www.tobu.co.jp/", + "line_name" : "東武伊勢崎線", + "selected" : false, + "company_name" : "東武鉄道", + "company_cd" : 11, + "name" : "2100210 (21002) 2100211", + "rr_cd" : 21, + "company_name_r" : "東武", + "e_status_x" : 0, + "shared_name" : "2100210 (21002) 2100211", + "lat" : 36.05676642458757, + "e_status_y" : 0, + "line_name_h" : "東武伊勢崎線" + }, + "selected" : false + }, { + "data" : { + "id" : "17839", + "source" : "7601", + "target" : "7602", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17839, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930125 (99301) 9930126", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930125 (99301) 9930126", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "15600", + "source" : "5196", + "target" : "5197", + "line_name_k" : "トウブイセサキセン", + "is_bullet" : false, + "lon" : 139.49934131661746, + "company_name_k" : "トウブテツドウ", + "zoom" : 10, + "SUID" : 15600, + "company_type" : 2, + "company_name_h" : "東武鉄道株式会社", + "interaction" : "21002", + "shared_interaction" : "21002", + "company_url" : "http://www.tobu.co.jp/", + "line_name" : "東武伊勢崎線", + "selected" : false, + "company_name" : "東武鉄道", + "company_cd" : 11, + "name" : "2100213 (21002) 2100214", + "rr_cd" : 21, + "company_name_r" : "東武", + "e_status_x" : 0, + "shared_name" : "2100213 (21002) 2100214", + "lat" : 36.05676642458757, + "e_status_y" : 0, + "line_name_h" : "東武伊勢崎線" + }, + "selected" : false + }, { + "data" : { + "id" : "17842", + "source" : "7604", + "target" : "7576", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17842, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930128 (99301) 9930101", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930128 (99301) 9930101", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "15599", + "source" : "5195", + "target" : "5196", + "line_name_k" : "トウブイセサキセン", + "is_bullet" : false, + "lon" : 139.49934131661746, + "company_name_k" : "トウブテツドウ", + "zoom" : 10, + "SUID" : 15599, + "company_type" : 2, + "company_name_h" : "東武鉄道株式会社", + "interaction" : "21002", + "shared_interaction" : "21002", + "company_url" : "http://www.tobu.co.jp/", + "line_name" : "東武伊勢崎線", + "selected" : false, + "company_name" : "東武鉄道", + "company_cd" : 11, + "name" : "2100212 (21002) 2100213", + "rr_cd" : 21, + "company_name_r" : "東武", + "e_status_x" : 0, + "shared_name" : "2100212 (21002) 2100213", + "lat" : 36.05676642458757, + "e_status_y" : 0, + "line_name_h" : "東武伊勢崎線" + }, + "selected" : false + }, { + "data" : { + "id" : "17841", + "source" : "7603", + "target" : "7604", + "line_name_k" : "トエイオオエドセン", + "is_bullet" : false, + "lon" : 139.7137041757577, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17841, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99301", + "shared_interaction" : "99301", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営大江戸線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930127 (99301) 9930128", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930127 (99301) 9930128", + "lat" : 35.70754622711237, + "e_status_y" : 0, + "line_name_h" : "都営大江戸線" + }, + "selected" : false + }, { + "data" : { + "id" : "17910", + "source" : "7675", + "target" : "7676", + "line_name_k" : "トエイシンジュクセン", + "is_bullet" : false, + "lon" : 139.80940398416865, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 11, + "SUID" : 17910, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99304", + "shared_interaction" : "99304", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営新宿線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930415 (99304) 9930416", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930415 (99304) 9930416", + "lat" : 35.68917479494153, + "e_status_y" : 0, + "line_name_h" : "都営新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "17911", + "source" : "7676", + "target" : "7677", + "line_name_k" : "トエイシンジュクセン", + "is_bullet" : false, + "lon" : 139.80940398416865, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 11, + "SUID" : 17911, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99304", + "shared_interaction" : "99304", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営新宿線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930416 (99304) 9930417", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930416 (99304) 9930417", + "lat" : 35.68917479494153, + "e_status_y" : 0, + "line_name_h" : "都営新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "17908", + "source" : "7673", + "target" : "7674", + "line_name_k" : "トエイシンジュクセン", + "is_bullet" : false, + "lon" : 139.80940398416865, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 11, + "SUID" : 17908, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99304", + "shared_interaction" : "99304", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営新宿線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930413 (99304) 9930414", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930413 (99304) 9930414", + "lat" : 35.68917479494153, + "e_status_y" : 0, + "line_name_h" : "都営新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "17909", + "source" : "7674", + "target" : "7675", + "line_name_k" : "トエイシンジュクセン", + "is_bullet" : false, + "lon" : 139.80940398416865, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 11, + "SUID" : 17909, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99304", + "shared_interaction" : "99304", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営新宿線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930414 (99304) 9930415", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930414 (99304) 9930415", + "lat" : 35.68917479494153, + "e_status_y" : 0, + "line_name_h" : "都営新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "17906", + "source" : "7671", + "target" : "7672", + "line_name_k" : "トエイシンジュクセン", + "is_bullet" : false, + "lon" : 139.80940398416865, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 11, + "SUID" : 17906, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99304", + "shared_interaction" : "99304", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営新宿線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930411 (99304) 9930412", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930411 (99304) 9930412", + "lat" : 35.68917479494153, + "e_status_y" : 0, + "line_name_h" : "都営新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "17907", + "source" : "7672", + "target" : "7673", + "line_name_k" : "トエイシンジュクセン", + "is_bullet" : false, + "lon" : 139.80940398416865, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 11, + "SUID" : 17907, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99304", + "shared_interaction" : "99304", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営新宿線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930412 (99304) 9930413", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930412 (99304) 9930413", + "lat" : 35.68917479494153, + "e_status_y" : 0, + "line_name_h" : "都営新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "17904", + "source" : "7669", + "target" : "7670", + "line_name_k" : "トエイシンジュクセン", + "is_bullet" : false, + "lon" : 139.80940398416865, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 11, + "SUID" : 17904, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99304", + "shared_interaction" : "99304", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営新宿線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930409 (99304) 9930410", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930409 (99304) 9930410", + "lat" : 35.68917479494153, + "e_status_y" : 0, + "line_name_h" : "都営新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "17905", + "source" : "7670", + "target" : "7671", + "line_name_k" : "トエイシンジュクセン", + "is_bullet" : false, + "lon" : 139.80940398416865, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 11, + "SUID" : 17905, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99304", + "shared_interaction" : "99304", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営新宿線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930410 (99304) 9930411", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930410 (99304) 9930411", + "lat" : 35.68917479494153, + "e_status_y" : 0, + "line_name_h" : "都営新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "13791", + "source" : "3315", + "target" : "3316", + "line_name_k" : "ケイヒントウホクセン", + "is_bullet" : false, + "lon" : 139.6425120970631, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13791, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11332", + "shared_interaction" : "11332", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR京浜東北線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1133214 (11332) 1133215", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1133214 (11332) 1133215", + "lat" : 35.63929555924292, + "e_status_y" : 0, + "line_name_h" : "JR京浜東北線" + }, + "selected" : false + }, { + "data" : { + "id" : "17917", + "source" : "7683", + "target" : "7684", + "line_name_k" : "トデンアラカワセン", + "is_bullet" : false, + "lon" : 139.74861502275394, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 13, + "SUID" : 17917, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99305", + "shared_interaction" : "99305", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都電荒川線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930502 (99305) 9930503", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930502 (99305) 9930503", + "lat" : 35.735016925780094, + "e_status_y" : 0, + "line_name_h" : "都営都電荒川線" + }, + "selected" : false + }, { + "data" : { + "id" : "13792", + "source" : "3316", + "target" : "3317", + "line_name_k" : "ケイヒントウホクセン", + "is_bullet" : false, + "lon" : 139.6425120970631, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13792, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11332", + "shared_interaction" : "11332", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR京浜東北線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1133215 (11332) 1133216", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1133215 (11332) 1133216", + "lat" : 35.63929555924292, + "e_status_y" : 0, + "line_name_h" : "JR京浜東北線" + }, + "selected" : false + }, { + "data" : { + "id" : "17918", + "source" : "7684", + "target" : "7685", + "line_name_k" : "トデンアラカワセン", + "is_bullet" : false, + "lon" : 139.74861502275394, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 13, + "SUID" : 17918, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99305", + "shared_interaction" : "99305", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都電荒川線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930503 (99305) 9930504", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930503 (99305) 9930504", + "lat" : 35.735016925780094, + "e_status_y" : 0, + "line_name_h" : "都営都電荒川線" + }, + "selected" : false + }, { + "data" : { + "id" : "13789", + "source" : "3313", + "target" : "3314", + "line_name_k" : "ケイヒントウホクセン", + "is_bullet" : false, + "lon" : 139.6425120970631, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13789, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11332", + "shared_interaction" : "11332", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR京浜東北線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1133212 (11332) 1133213", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1133212 (11332) 1133213", + "lat" : 35.63929555924292, + "e_status_y" : 0, + "line_name_h" : "JR京浜東北線" + }, + "selected" : false + }, { + "data" : { + "id" : "13790", + "source" : "3314", + "target" : "3315", + "line_name_k" : "ケイヒントウホクセン", + "is_bullet" : false, + "lon" : 139.6425120970631, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13790, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11332", + "shared_interaction" : "11332", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR京浜東北線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1133213 (11332) 1133214", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1133213 (11332) 1133214", + "lat" : 35.63929555924292, + "e_status_y" : 0, + "line_name_h" : "JR京浜東北線" + }, + "selected" : false + }, { + "data" : { + "id" : "17916", + "source" : "7682", + "target" : "7683", + "line_name_k" : "トデンアラカワセン", + "is_bullet" : false, + "lon" : 139.74861502275394, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 13, + "SUID" : 17916, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99305", + "shared_interaction" : "99305", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都電荒川線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930501 (99305) 9930502", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930501 (99305) 9930502", + "lat" : 35.735016925780094, + "e_status_y" : 0, + "line_name_h" : "都営都電荒川線" + }, + "selected" : false + }, { + "data" : { + "id" : "13787", + "source" : "3311", + "target" : "3312", + "line_name_k" : "ケイヒントウホクセン", + "is_bullet" : false, + "lon" : 139.6425120970631, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13787, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11332", + "shared_interaction" : "11332", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR京浜東北線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1133210 (11332) 1133211", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1133210 (11332) 1133211", + "lat" : 35.63929555924292, + "e_status_y" : 0, + "line_name_h" : "JR京浜東北線" + }, + "selected" : false + }, { + "data" : { + "id" : "17914", + "source" : "7679", + "target" : "7680", + "line_name_k" : "トエイシンジュクセン", + "is_bullet" : false, + "lon" : 139.80940398416865, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 11, + "SUID" : 17914, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99304", + "shared_interaction" : "99304", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営新宿線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930419 (99304) 9930420", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930419 (99304) 9930420", + "lat" : 35.68917479494153, + "e_status_y" : 0, + "line_name_h" : "都営新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "13788", + "source" : "3312", + "target" : "3313", + "line_name_k" : "ケイヒントウホクセン", + "is_bullet" : false, + "lon" : 139.6425120970631, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13788, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11332", + "shared_interaction" : "11332", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR京浜東北線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1133211 (11332) 1133212", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1133211 (11332) 1133212", + "lat" : 35.63929555924292, + "e_status_y" : 0, + "line_name_h" : "JR京浜東北線" + }, + "selected" : false + }, { + "data" : { + "id" : "17912", + "source" : "7677", + "target" : "7678", + "line_name_k" : "トエイシンジュクセン", + "is_bullet" : false, + "lon" : 139.80940398416865, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 11, + "SUID" : 17912, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99304", + "shared_interaction" : "99304", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営新宿線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930417 (99304) 9930418", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930417 (99304) 9930418", + "lat" : 35.68917479494153, + "e_status_y" : 0, + "line_name_h" : "都営新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "17913", + "source" : "7678", + "target" : "7679", + "line_name_k" : "トエイシンジュクセン", + "is_bullet" : false, + "lon" : 139.80940398416865, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 11, + "SUID" : 17913, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99304", + "shared_interaction" : "99304", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営新宿線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930418 (99304) 9930419", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930418 (99304) 9930419", + "lat" : 35.68917479494153, + "e_status_y" : 0, + "line_name_h" : "都営新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "17926", + "source" : "7692", + "target" : "7693", + "line_name_k" : "トデンアラカワセン", + "is_bullet" : false, + "lon" : 139.74861502275394, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 13, + "SUID" : 17926, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99305", + "shared_interaction" : "99305", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都電荒川線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930511 (99305) 9930512", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930511 (99305) 9930512", + "lat" : 35.735016925780094, + "e_status_y" : 0, + "line_name_h" : "都営都電荒川線" + }, + "selected" : false + }, { + "data" : { + "id" : "17925", + "source" : "7691", + "target" : "7692", + "line_name_k" : "トデンアラカワセン", + "is_bullet" : false, + "lon" : 139.74861502275394, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 13, + "SUID" : 17925, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99305", + "shared_interaction" : "99305", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都電荒川線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930510 (99305) 9930511", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930510 (99305) 9930511", + "lat" : 35.735016925780094, + "e_status_y" : 0, + "line_name_h" : "都営都電荒川線" + }, + "selected" : false + }, { + "data" : { + "id" : "17924", + "source" : "7690", + "target" : "7691", + "line_name_k" : "トデンアラカワセン", + "is_bullet" : false, + "lon" : 139.74861502275394, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 13, + "SUID" : 17924, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99305", + "shared_interaction" : "99305", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都電荒川線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930509 (99305) 9930510", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930509 (99305) 9930510", + "lat" : 35.735016925780094, + "e_status_y" : 0, + "line_name_h" : "都営都電荒川線" + }, + "selected" : false + }, { + "data" : { + "id" : "17923", + "source" : "7689", + "target" : "7690", + "line_name_k" : "トデンアラカワセン", + "is_bullet" : false, + "lon" : 139.74861502275394, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 13, + "SUID" : 17923, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99305", + "shared_interaction" : "99305", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都電荒川線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930508 (99305) 9930509", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930508 (99305) 9930509", + "lat" : 35.735016925780094, + "e_status_y" : 0, + "line_name_h" : "都営都電荒川線" + }, + "selected" : false + }, { + "data" : { + "id" : "17922", + "source" : "7688", + "target" : "7689", + "line_name_k" : "トデンアラカワセン", + "is_bullet" : false, + "lon" : 139.74861502275394, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 13, + "SUID" : 17922, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99305", + "shared_interaction" : "99305", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都電荒川線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930507 (99305) 9930508", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930507 (99305) 9930508", + "lat" : 35.735016925780094, + "e_status_y" : 0, + "line_name_h" : "都営都電荒川線" + }, + "selected" : false + }, { + "data" : { + "id" : "17921", + "source" : "7687", + "target" : "7688", + "line_name_k" : "トデンアラカワセン", + "is_bullet" : false, + "lon" : 139.74861502275394, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 13, + "SUID" : 17921, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99305", + "shared_interaction" : "99305", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都電荒川線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930506 (99305) 9930507", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930506 (99305) 9930507", + "lat" : 35.735016925780094, + "e_status_y" : 0, + "line_name_h" : "都営都電荒川線" + }, + "selected" : false + }, { + "data" : { + "id" : "17920", + "source" : "7686", + "target" : "7687", + "line_name_k" : "トデンアラカワセン", + "is_bullet" : false, + "lon" : 139.74861502275394, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 13, + "SUID" : 17920, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99305", + "shared_interaction" : "99305", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都電荒川線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930505 (99305) 9930506", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930505 (99305) 9930506", + "lat" : 35.735016925780094, + "e_status_y" : 0, + "line_name_h" : "都営都電荒川線" + }, + "selected" : false + }, { + "data" : { + "id" : "17919", + "source" : "7685", + "target" : "7686", + "line_name_k" : "トデンアラカワセン", + "is_bullet" : false, + "lon" : 139.74861502275394, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 13, + "SUID" : 17919, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99305", + "shared_interaction" : "99305", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都電荒川線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930504 (99305) 9930505", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930504 (99305) 9930505", + "lat" : 35.735016925780094, + "e_status_y" : 0, + "line_name_h" : "都営都電荒川線" + }, + "selected" : false + }, { + "data" : { + "id" : "17934", + "source" : "7700", + "target" : "7701", + "line_name_k" : "トデンアラカワセン", + "is_bullet" : false, + "lon" : 139.74861502275394, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 13, + "SUID" : 17934, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99305", + "shared_interaction" : "99305", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都電荒川線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930519 (99305) 9930520", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930519 (99305) 9930520", + "lat" : 35.735016925780094, + "e_status_y" : 0, + "line_name_h" : "都営都電荒川線" + }, + "selected" : false + }, { + "data" : { + "id" : "17933", + "source" : "7699", + "target" : "7700", + "line_name_k" : "トデンアラカワセン", + "is_bullet" : false, + "lon" : 139.74861502275394, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 13, + "SUID" : 17933, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99305", + "shared_interaction" : "99305", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都電荒川線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930518 (99305) 9930519", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930518 (99305) 9930519", + "lat" : 35.735016925780094, + "e_status_y" : 0, + "line_name_h" : "都営都電荒川線" + }, + "selected" : false + }, { + "data" : { + "id" : "17932", + "source" : "7698", + "target" : "7699", + "line_name_k" : "トデンアラカワセン", + "is_bullet" : false, + "lon" : 139.74861502275394, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 13, + "SUID" : 17932, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99305", + "shared_interaction" : "99305", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都電荒川線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930517 (99305) 9930518", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930517 (99305) 9930518", + "lat" : 35.735016925780094, + "e_status_y" : 0, + "line_name_h" : "都営都電荒川線" + }, + "selected" : false + }, { + "data" : { + "id" : "17931", + "source" : "7697", + "target" : "7698", + "line_name_k" : "トデンアラカワセン", + "is_bullet" : false, + "lon" : 139.74861502275394, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 13, + "SUID" : 17931, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99305", + "shared_interaction" : "99305", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都電荒川線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930516 (99305) 9930517", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930516 (99305) 9930517", + "lat" : 35.735016925780094, + "e_status_y" : 0, + "line_name_h" : "都営都電荒川線" + }, + "selected" : false + }, { + "data" : { + "id" : "17930", + "source" : "7696", + "target" : "7697", + "line_name_k" : "トデンアラカワセン", + "is_bullet" : false, + "lon" : 139.74861502275394, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 13, + "SUID" : 17930, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99305", + "shared_interaction" : "99305", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都電荒川線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930515 (99305) 9930516", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930515 (99305) 9930516", + "lat" : 35.735016925780094, + "e_status_y" : 0, + "line_name_h" : "都営都電荒川線" + }, + "selected" : false + }, { + "data" : { + "id" : "17929", + "source" : "7695", + "target" : "7696", + "line_name_k" : "トデンアラカワセン", + "is_bullet" : false, + "lon" : 139.74861502275394, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 13, + "SUID" : 17929, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99305", + "shared_interaction" : "99305", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都電荒川線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930514 (99305) 9930515", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930514 (99305) 9930515", + "lat" : 35.735016925780094, + "e_status_y" : 0, + "line_name_h" : "都営都電荒川線" + }, + "selected" : false + }, { + "data" : { + "id" : "17928", + "source" : "7694", + "target" : "7695", + "line_name_k" : "トデンアラカワセン", + "is_bullet" : false, + "lon" : 139.74861502275394, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 13, + "SUID" : 17928, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99305", + "shared_interaction" : "99305", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都電荒川線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930513 (99305) 9930514", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930513 (99305) 9930514", + "lat" : 35.735016925780094, + "e_status_y" : 0, + "line_name_h" : "都営都電荒川線" + }, + "selected" : false + }, { + "data" : { + "id" : "17927", + "source" : "7693", + "target" : "7694", + "line_name_k" : "トデンアラカワセン", + "is_bullet" : false, + "lon" : 139.74861502275394, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 13, + "SUID" : 17927, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99305", + "shared_interaction" : "99305", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都電荒川線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930512 (99305) 9930513", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930512 (99305) 9930513", + "lat" : 35.735016925780094, + "e_status_y" : 0, + "line_name_h" : "都営都電荒川線" + }, + "selected" : false + }, { + "data" : { + "id" : "17877", + "source" : "7641", + "target" : "7642", + "line_name_k" : "トエイミタセン", + "is_bullet" : false, + "lon" : 139.7032176242069, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17877, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99303", + "shared_interaction" : "99303", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営三田線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930308 (99303) 9930309", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930308 (99303) 9930309", + "lat" : 35.71883584494032, + "e_status_y" : 0, + "line_name_h" : "都営三田線" + }, + "selected" : false + }, { + "data" : { + "id" : "17878", + "source" : "7642", + "target" : "7643", + "line_name_k" : "トエイミタセン", + "is_bullet" : false, + "lon" : 139.7032176242069, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17878, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99303", + "shared_interaction" : "99303", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営三田線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930309 (99303) 9930310", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930309 (99303) 9930310", + "lat" : 35.71883584494032, + "e_status_y" : 0, + "line_name_h" : "都営三田線" + }, + "selected" : false + }, { + "data" : { + "id" : "13814", + "source" : "3339", + "target" : "3340", + "line_name_k" : "ショウナンシンジュクライン", + "is_bullet" : false, + "lon" : 139.6229436643263, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13814, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11333", + "shared_interaction" : "11333", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR湘南新宿ライン", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1133302 (11333) 1133303", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1133302 (11333) 1133303", + "lat" : 35.65739974071942, + "e_status_y" : 0, + "line_name_h" : "JR湘南新宿ライン" + }, + "selected" : false + }, { + "data" : { + "id" : "17879", + "source" : "7643", + "target" : "7644", + "line_name_k" : "トエイミタセン", + "is_bullet" : false, + "lon" : 139.7032176242069, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17879, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99303", + "shared_interaction" : "99303", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営三田線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930310 (99303) 9930311", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930310 (99303) 9930311", + "lat" : 35.71883584494032, + "e_status_y" : 0, + "line_name_h" : "都営三田線" + }, + "selected" : false + }, { + "data" : { + "id" : "13815", + "source" : "3340", + "target" : "3341", + "line_name_k" : "ショウナンシンジュクライン", + "is_bullet" : false, + "lon" : 139.6229436643263, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13815, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11333", + "shared_interaction" : "11333", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR湘南新宿ライン", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1133303 (11333) 1133304", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1133303 (11333) 1133304", + "lat" : 35.65739974071942, + "e_status_y" : 0, + "line_name_h" : "JR湘南新宿ライン" + }, + "selected" : false + }, { + "data" : { + "id" : "17880", + "source" : "7644", + "target" : "7645", + "line_name_k" : "トエイミタセン", + "is_bullet" : false, + "lon" : 139.7032176242069, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17880, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99303", + "shared_interaction" : "99303", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営三田線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930311 (99303) 9930312", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930311 (99303) 9930312", + "lat" : 35.71883584494032, + "e_status_y" : 0, + "line_name_h" : "都営三田線" + }, + "selected" : false + }, { + "data" : { + "id" : "17873", + "source" : "7637", + "target" : "7638", + "line_name_k" : "トエイミタセン", + "is_bullet" : false, + "lon" : 139.7032176242069, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17873, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99303", + "shared_interaction" : "99303", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営三田線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930304 (99303) 9930305", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930304 (99303) 9930305", + "lat" : 35.71883584494032, + "e_status_y" : 0, + "line_name_h" : "都営三田線" + }, + "selected" : false + }, { + "data" : { + "id" : "17874", + "source" : "7638", + "target" : "7639", + "line_name_k" : "トエイミタセン", + "is_bullet" : false, + "lon" : 139.7032176242069, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17874, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99303", + "shared_interaction" : "99303", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営三田線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930305 (99303) 9930306", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930305 (99303) 9930306", + "lat" : 35.71883584494032, + "e_status_y" : 0, + "line_name_h" : "都営三田線" + }, + "selected" : false + }, { + "data" : { + "id" : "17875", + "source" : "7639", + "target" : "7640", + "line_name_k" : "トエイミタセン", + "is_bullet" : false, + "lon" : 139.7032176242069, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17875, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99303", + "shared_interaction" : "99303", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営三田線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930306 (99303) 9930307", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930306 (99303) 9930307", + "lat" : 35.71883584494032, + "e_status_y" : 0, + "line_name_h" : "都営三田線" + }, + "selected" : false + }, { + "data" : { + "id" : "17876", + "source" : "7640", + "target" : "7641", + "line_name_k" : "トエイミタセン", + "is_bullet" : false, + "lon" : 139.7032176242069, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17876, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99303", + "shared_interaction" : "99303", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営三田線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930307 (99303) 9930308", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930307 (99303) 9930308", + "lat" : 35.71883584494032, + "e_status_y" : 0, + "line_name_h" : "都営三田線" + }, + "selected" : false + }, { + "data" : { + "id" : "17885", + "source" : "7649", + "target" : "7650", + "line_name_k" : "トエイミタセン", + "is_bullet" : false, + "lon" : 139.7032176242069, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17885, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99303", + "shared_interaction" : "99303", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営三田線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930316 (99303) 9930317", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930316 (99303) 9930317", + "lat" : 35.71883584494032, + "e_status_y" : 0, + "line_name_h" : "都営三田線" + }, + "selected" : false + }, { + "data" : { + "id" : "17886", + "source" : "7650", + "target" : "7651", + "line_name_k" : "トエイミタセン", + "is_bullet" : false, + "lon" : 139.7032176242069, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17886, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99303", + "shared_interaction" : "99303", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営三田線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930317 (99303) 9930318", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930317 (99303) 9930318", + "lat" : 35.71883584494032, + "e_status_y" : 0, + "line_name_h" : "都営三田線" + }, + "selected" : false + }, { + "data" : { + "id" : "17887", + "source" : "7651", + "target" : "7652", + "line_name_k" : "トエイミタセン", + "is_bullet" : false, + "lon" : 139.7032176242069, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17887, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99303", + "shared_interaction" : "99303", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営三田線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930318 (99303) 9930319", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930318 (99303) 9930319", + "lat" : 35.71883584494032, + "e_status_y" : 0, + "line_name_h" : "都営三田線" + }, + "selected" : false + }, { + "data" : { + "id" : "17888", + "source" : "7652", + "target" : "7653", + "line_name_k" : "トエイミタセン", + "is_bullet" : false, + "lon" : 139.7032176242069, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17888, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99303", + "shared_interaction" : "99303", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営三田線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930319 (99303) 9930320", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930319 (99303) 9930320", + "lat" : 35.71883584494032, + "e_status_y" : 0, + "line_name_h" : "都営三田線" + }, + "selected" : false + }, { + "data" : { + "id" : "13816", + "source" : "3341", + "target" : "3342", + "line_name_k" : "ショウナンシンジュクライン", + "is_bullet" : false, + "lon" : 139.6229436643263, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13816, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11333", + "shared_interaction" : "11333", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR湘南新宿ライン", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1133304 (11333) 1133305", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1133304 (11333) 1133305", + "lat" : 35.65739974071942, + "e_status_y" : 0, + "line_name_h" : "JR湘南新宿ライン" + }, + "selected" : false + }, { + "data" : { + "id" : "17881", + "source" : "7645", + "target" : "7646", + "line_name_k" : "トエイミタセン", + "is_bullet" : false, + "lon" : 139.7032176242069, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17881, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99303", + "shared_interaction" : "99303", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営三田線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930312 (99303) 9930313", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930312 (99303) 9930313", + "lat" : 35.71883584494032, + "e_status_y" : 0, + "line_name_h" : "都営三田線" + }, + "selected" : false + }, { + "data" : { + "id" : "13817", + "source" : "3342", + "target" : "3343", + "line_name_k" : "ショウナンシンジュクライン", + "is_bullet" : false, + "lon" : 139.6229436643263, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13817, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11333", + "shared_interaction" : "11333", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR湘南新宿ライン", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1133305 (11333) 1133306", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1133305 (11333) 1133306", + "lat" : 35.65739974071942, + "e_status_y" : 0, + "line_name_h" : "JR湘南新宿ライン" + }, + "selected" : false + }, { + "data" : { + "id" : "17882", + "source" : "7646", + "target" : "7647", + "line_name_k" : "トエイミタセン", + "is_bullet" : false, + "lon" : 139.7032176242069, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17882, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99303", + "shared_interaction" : "99303", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営三田線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930313 (99303) 9930314", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930313 (99303) 9930314", + "lat" : 35.71883584494032, + "e_status_y" : 0, + "line_name_h" : "都営三田線" + }, + "selected" : false + }, { + "data" : { + "id" : "13818", + "source" : "3343", + "target" : "3344", + "line_name_k" : "ショウナンシンジュクライン", + "is_bullet" : false, + "lon" : 139.6229436643263, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13818, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11333", + "shared_interaction" : "11333", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR湘南新宿ライン", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1133306 (11333) 1133307", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1133306 (11333) 1133307", + "lat" : 35.65739974071942, + "e_status_y" : 0, + "line_name_h" : "JR湘南新宿ライン" + }, + "selected" : false + }, { + "data" : { + "id" : "17883", + "source" : "7647", + "target" : "7648", + "line_name_k" : "トエイミタセン", + "is_bullet" : false, + "lon" : 139.7032176242069, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17883, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99303", + "shared_interaction" : "99303", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営三田線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930314 (99303) 9930315", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930314 (99303) 9930315", + "lat" : 35.71883584494032, + "e_status_y" : 0, + "line_name_h" : "都営三田線" + }, + "selected" : false + }, { + "data" : { + "id" : "13819", + "source" : "3344", + "target" : "3345", + "line_name_k" : "ショウナンシンジュクライン", + "is_bullet" : false, + "lon" : 139.6229436643263, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13819, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11333", + "shared_interaction" : "11333", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR湘南新宿ライン", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1133307 (11333) 1133308", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1133307 (11333) 1133308", + "lat" : 35.65739974071942, + "e_status_y" : 0, + "line_name_h" : "JR湘南新宿ライン" + }, + "selected" : false + }, { + "data" : { + "id" : "17884", + "source" : "7648", + "target" : "7649", + "line_name_k" : "トエイミタセン", + "is_bullet" : false, + "lon" : 139.7032176242069, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17884, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99303", + "shared_interaction" : "99303", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営三田線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930315 (99303) 9930316", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930315 (99303) 9930316", + "lat" : 35.71883584494032, + "e_status_y" : 0, + "line_name_h" : "都営三田線" + }, + "selected" : false + }, { + "data" : { + "id" : "13798", + "source" : "3322", + "target" : "3323", + "line_name_k" : "ケイヒントウホクセン", + "is_bullet" : false, + "lon" : 139.6425120970631, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13798, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11332", + "shared_interaction" : "11332", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR京浜東北線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1133221 (11332) 1133222", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1133221 (11332) 1133222", + "lat" : 35.63929555924292, + "e_status_y" : 0, + "line_name_h" : "JR京浜東北線" + }, + "selected" : false + }, { + "data" : { + "id" : "17894", + "source" : "7658", + "target" : "7659", + "line_name_k" : "トエイミタセン", + "is_bullet" : false, + "lon" : 139.7032176242069, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17894, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99303", + "shared_interaction" : "99303", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営三田線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930325 (99303) 9930326", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930325 (99303) 9930326", + "lat" : 35.71883584494032, + "e_status_y" : 0, + "line_name_h" : "都営三田線" + }, + "selected" : false + }, { + "data" : { + "id" : "13797", + "source" : "3321", + "target" : "3322", + "line_name_k" : "ケイヒントウホクセン", + "is_bullet" : false, + "lon" : 139.6425120970631, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13797, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11332", + "shared_interaction" : "11332", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR京浜東北線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1133220 (11332) 1133221", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1133220 (11332) 1133221", + "lat" : 35.63929555924292, + "e_status_y" : 0, + "line_name_h" : "JR京浜東北線" + }, + "selected" : false + }, { + "data" : { + "id" : "17893", + "source" : "7657", + "target" : "7658", + "line_name_k" : "トエイミタセン", + "is_bullet" : false, + "lon" : 139.7032176242069, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17893, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99303", + "shared_interaction" : "99303", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営三田線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930324 (99303) 9930325", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930324 (99303) 9930325", + "lat" : 35.71883584494032, + "e_status_y" : 0, + "line_name_h" : "都営三田線" + }, + "selected" : false + }, { + "data" : { + "id" : "13800", + "source" : "3324", + "target" : "3325", + "line_name_k" : "ケイヒントウホクセン", + "is_bullet" : false, + "lon" : 139.6425120970631, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13800, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11332", + "shared_interaction" : "11332", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR京浜東北線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1133223 (11332) 1133224", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1133223 (11332) 1133224", + "lat" : 35.63929555924292, + "e_status_y" : 0, + "line_name_h" : "JR京浜東北線" + }, + "selected" : false + }, { + "data" : { + "id" : "13799", + "source" : "3323", + "target" : "3324", + "line_name_k" : "ケイヒントウホクセン", + "is_bullet" : false, + "lon" : 139.6425120970631, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13799, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11332", + "shared_interaction" : "11332", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR京浜東北線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1133222 (11332) 1133223", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1133222 (11332) 1133223", + "lat" : 35.63929555924292, + "e_status_y" : 0, + "line_name_h" : "JR京浜東北線" + }, + "selected" : false + }, { + "data" : { + "id" : "17895", + "source" : "7659", + "target" : "7660", + "line_name_k" : "トエイミタセン", + "is_bullet" : false, + "lon" : 139.7032176242069, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17895, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99303", + "shared_interaction" : "99303", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営三田線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930326 (99303) 9930327", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930326 (99303) 9930327", + "lat" : 35.71883584494032, + "e_status_y" : 0, + "line_name_h" : "都営三田線" + }, + "selected" : false + }, { + "data" : { + "id" : "13794", + "source" : "3318", + "target" : "3319", + "line_name_k" : "ケイヒントウホクセン", + "is_bullet" : false, + "lon" : 139.6425120970631, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13794, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11332", + "shared_interaction" : "11332", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR京浜東北線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1133217 (11332) 1133218", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1133217 (11332) 1133218", + "lat" : 35.63929555924292, + "e_status_y" : 0, + "line_name_h" : "JR京浜東北線" + }, + "selected" : false + }, { + "data" : { + "id" : "17890", + "source" : "7654", + "target" : "7655", + "line_name_k" : "トエイミタセン", + "is_bullet" : false, + "lon" : 139.7032176242069, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17890, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99303", + "shared_interaction" : "99303", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営三田線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930321 (99303) 9930322", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930321 (99303) 9930322", + "lat" : 35.71883584494032, + "e_status_y" : 0, + "line_name_h" : "都営三田線" + }, + "selected" : false + }, { + "data" : { + "id" : "13793", + "source" : "3317", + "target" : "3318", + "line_name_k" : "ケイヒントウホクセン", + "is_bullet" : false, + "lon" : 139.6425120970631, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13793, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11332", + "shared_interaction" : "11332", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR京浜東北線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1133216 (11332) 1133217", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1133216 (11332) 1133217", + "lat" : 35.63929555924292, + "e_status_y" : 0, + "line_name_h" : "JR京浜東北線" + }, + "selected" : false + }, { + "data" : { + "id" : "17889", + "source" : "7653", + "target" : "7654", + "line_name_k" : "トエイミタセン", + "is_bullet" : false, + "lon" : 139.7032176242069, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17889, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99303", + "shared_interaction" : "99303", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営三田線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930320 (99303) 9930321", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930320 (99303) 9930321", + "lat" : 35.71883584494032, + "e_status_y" : 0, + "line_name_h" : "都営三田線" + }, + "selected" : false + }, { + "data" : { + "id" : "13796", + "source" : "3320", + "target" : "3321", + "line_name_k" : "ケイヒントウホクセン", + "is_bullet" : false, + "lon" : 139.6425120970631, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13796, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11332", + "shared_interaction" : "11332", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR京浜東北線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1133219 (11332) 1133220", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1133219 (11332) 1133220", + "lat" : 35.63929555924292, + "e_status_y" : 0, + "line_name_h" : "JR京浜東北線" + }, + "selected" : false + }, { + "data" : { + "id" : "17892", + "source" : "7656", + "target" : "7657", + "line_name_k" : "トエイミタセン", + "is_bullet" : false, + "lon" : 139.7032176242069, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17892, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99303", + "shared_interaction" : "99303", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営三田線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930323 (99303) 9930324", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930323 (99303) 9930324", + "lat" : 35.71883584494032, + "e_status_y" : 0, + "line_name_h" : "都営三田線" + }, + "selected" : false + }, { + "data" : { + "id" : "13795", + "source" : "3319", + "target" : "3320", + "line_name_k" : "ケイヒントウホクセン", + "is_bullet" : false, + "lon" : 139.6425120970631, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13795, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11332", + "shared_interaction" : "11332", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR京浜東北線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1133218 (11332) 1133219", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1133218 (11332) 1133219", + "lat" : 35.63929555924292, + "e_status_y" : 0, + "line_name_h" : "JR京浜東北線" + }, + "selected" : false + }, { + "data" : { + "id" : "17891", + "source" : "7655", + "target" : "7656", + "line_name_k" : "トエイミタセン", + "is_bullet" : false, + "lon" : 139.7032176242069, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 12, + "SUID" : 17891, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99303", + "shared_interaction" : "99303", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営三田線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930322 (99303) 9930323", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930322 (99303) 9930323", + "lat" : 35.71883584494032, + "e_status_y" : 0, + "line_name_h" : "都営三田線" + }, + "selected" : false + }, { + "data" : { + "id" : "13806", + "source" : "3330", + "target" : "3331", + "line_name_k" : "ケイヒントウホクセン", + "is_bullet" : false, + "lon" : 139.6425120970631, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13806, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11332", + "shared_interaction" : "11332", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR京浜東北線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1133229 (11332) 1133230", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1133229 (11332) 1133230", + "lat" : 35.63929555924292, + "e_status_y" : 0, + "line_name_h" : "JR京浜東北線" + }, + "selected" : false + }, { + "data" : { + "id" : "17901", + "source" : "7666", + "target" : "7667", + "line_name_k" : "トエイシンジュクセン", + "is_bullet" : false, + "lon" : 139.80940398416865, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 11, + "SUID" : 17901, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99304", + "shared_interaction" : "99304", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営新宿線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930406 (99304) 9930407", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930406 (99304) 9930407", + "lat" : 35.68917479494153, + "e_status_y" : 0, + "line_name_h" : "都営新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "13805", + "source" : "3329", + "target" : "3330", + "line_name_k" : "ケイヒントウホクセン", + "is_bullet" : false, + "lon" : 139.6425120970631, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13805, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11332", + "shared_interaction" : "11332", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR京浜東北線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1133228 (11332) 1133229", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1133228 (11332) 1133229", + "lat" : 35.63929555924292, + "e_status_y" : 0, + "line_name_h" : "JR京浜東北線" + }, + "selected" : false + }, { + "data" : { + "id" : "17900", + "source" : "7665", + "target" : "7666", + "line_name_k" : "トエイシンジュクセン", + "is_bullet" : false, + "lon" : 139.80940398416865, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 11, + "SUID" : 17900, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99304", + "shared_interaction" : "99304", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営新宿線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930405 (99304) 9930406", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930405 (99304) 9930406", + "lat" : 35.68917479494153, + "e_status_y" : 0, + "line_name_h" : "都営新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "17903", + "source" : "7668", + "target" : "7669", + "line_name_k" : "トエイシンジュクセン", + "is_bullet" : false, + "lon" : 139.80940398416865, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 11, + "SUID" : 17903, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99304", + "shared_interaction" : "99304", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営新宿線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930408 (99304) 9930409", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930408 (99304) 9930409", + "lat" : 35.68917479494153, + "e_status_y" : 0, + "line_name_h" : "都営新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "17902", + "source" : "7667", + "target" : "7668", + "line_name_k" : "トエイシンジュクセン", + "is_bullet" : false, + "lon" : 139.80940398416865, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 11, + "SUID" : 17902, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99304", + "shared_interaction" : "99304", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営新宿線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930407 (99304) 9930408", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930407 (99304) 9930408", + "lat" : 35.68917479494153, + "e_status_y" : 0, + "line_name_h" : "都営新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "13802", + "source" : "3326", + "target" : "3327", + "line_name_k" : "ケイヒントウホクセン", + "is_bullet" : false, + "lon" : 139.6425120970631, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13802, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11332", + "shared_interaction" : "11332", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR京浜東北線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1133225 (11332) 1133226", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1133225 (11332) 1133226", + "lat" : 35.63929555924292, + "e_status_y" : 0, + "line_name_h" : "JR京浜東北線" + }, + "selected" : false + }, { + "data" : { + "id" : "17897", + "source" : "7662", + "target" : "7663", + "line_name_k" : "トエイシンジュクセン", + "is_bullet" : false, + "lon" : 139.80940398416865, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 11, + "SUID" : 17897, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99304", + "shared_interaction" : "99304", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営新宿線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930402 (99304) 9930403", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930402 (99304) 9930403", + "lat" : 35.68917479494153, + "e_status_y" : 0, + "line_name_h" : "都営新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "13801", + "source" : "3325", + "target" : "3326", + "line_name_k" : "ケイヒントウホクセン", + "is_bullet" : false, + "lon" : 139.6425120970631, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13801, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11332", + "shared_interaction" : "11332", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR京浜東北線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1133224 (11332) 1133225", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1133224 (11332) 1133225", + "lat" : 35.63929555924292, + "e_status_y" : 0, + "line_name_h" : "JR京浜東北線" + }, + "selected" : false + }, { + "data" : { + "id" : "17896", + "source" : "7661", + "target" : "7662", + "line_name_k" : "トエイシンジュクセン", + "is_bullet" : false, + "lon" : 139.80940398416865, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 11, + "SUID" : 17896, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99304", + "shared_interaction" : "99304", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営新宿線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930401 (99304) 9930402", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930401 (99304) 9930402", + "lat" : 35.68917479494153, + "e_status_y" : 0, + "line_name_h" : "都営新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "13804", + "source" : "3328", + "target" : "3329", + "line_name_k" : "ケイヒントウホクセン", + "is_bullet" : false, + "lon" : 139.6425120970631, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13804, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11332", + "shared_interaction" : "11332", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR京浜東北線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1133227 (11332) 1133228", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1133227 (11332) 1133228", + "lat" : 35.63929555924292, + "e_status_y" : 0, + "line_name_h" : "JR京浜東北線" + }, + "selected" : false + }, { + "data" : { + "id" : "17899", + "source" : "7664", + "target" : "7665", + "line_name_k" : "トエイシンジュクセン", + "is_bullet" : false, + "lon" : 139.80940398416865, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 11, + "SUID" : 17899, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99304", + "shared_interaction" : "99304", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営新宿線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930404 (99304) 9930405", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930404 (99304) 9930405", + "lat" : 35.68917479494153, + "e_status_y" : 0, + "line_name_h" : "都営新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "13803", + "source" : "3327", + "target" : "3328", + "line_name_k" : "ケイヒントウホクセン", + "is_bullet" : false, + "lon" : 139.6425120970631, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13803, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11332", + "shared_interaction" : "11332", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR京浜東北線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1133226 (11332) 1133227", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1133226 (11332) 1133227", + "lat" : 35.63929555924292, + "e_status_y" : 0, + "line_name_h" : "JR京浜東北線" + }, + "selected" : false + }, { + "data" : { + "id" : "17898", + "source" : "7663", + "target" : "7664", + "line_name_k" : "トエイシンジュクセン", + "is_bullet" : false, + "lon" : 139.80940398416865, + "company_name_k" : "トウキョウトコウツウキョク", + "zoom" : 11, + "SUID" : 17898, + "company_type" : 0, + "company_name_h" : "東京都交通局", + "interaction" : "99304", + "shared_interaction" : "99304", + "company_url" : "http://www.kotsu.metro.tokyo.jp/", + "line_name" : "都営新宿線", + "selected" : false, + "company_name" : "東京都交通局", + "company_cd" : 119, + "name" : "9930403 (99304) 9930404", + "rr_cd" : 99, + "company_name_r" : "東京都交通局", + "e_status_x" : 0, + "shared_name" : "9930403 (99304) 9930404", + "lat" : 35.68917479494153, + "e_status_y" : 0, + "line_name_h" : "都営新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "15917", + "source" : "5541", + "target" : "5542", + "line_name_k" : "ナリタスカイアクセス", + "is_bullet" : false, + "lon" : 140.04557998117627, + "company_name_k" : "ケイセイデンテツ", + "zoom" : 10, + "SUID" : 15917, + "company_type" : 2, + "company_name_h" : "京成電鉄株式会社", + "interaction" : "23006", + "shared_interaction" : "23006", + "company_url" : "http://www.keisei.co.jp/", + "line_name" : "成田スカイアクセス", + "selected" : false, + "company_name" : "京成電鉄", + "company_cd" : 13, + "name" : "2300601 (23006) 2300602", + "rr_cd" : 23, + "company_name_r" : "京成", + "e_status_x" : 0, + "shared_name" : "2300601 (23006) 2300602", + "lat" : 35.783474701668865, + "e_status_y" : 0, + "line_name_h" : "京成成田空港線" + }, + "selected" : false + }, { + "data" : { + "id" : "15918", + "source" : "5542", + "target" : "5543", + "line_name_k" : "ナリタスカイアクセス", + "is_bullet" : false, + "lon" : 140.04557998117627, + "company_name_k" : "ケイセイデンテツ", + "zoom" : 10, + "SUID" : 15918, + "company_type" : 2, + "company_name_h" : "京成電鉄株式会社", + "interaction" : "23006", + "shared_interaction" : "23006", + "company_url" : "http://www.keisei.co.jp/", + "line_name" : "成田スカイアクセス", + "selected" : false, + "company_name" : "京成電鉄", + "company_cd" : 13, + "name" : "2300602 (23006) 2300603", + "rr_cd" : 23, + "company_name_r" : "京成", + "e_status_x" : 0, + "shared_name" : "2300602 (23006) 2300603", + "lat" : 35.783474701668865, + "e_status_y" : 0, + "line_name_h" : "京成成田空港線" + }, + "selected" : false + }, { + "data" : { + "id" : "15919", + "source" : "5543", + "target" : "5544", + "line_name_k" : "ナリタスカイアクセス", + "is_bullet" : false, + "lon" : 140.04557998117627, + "company_name_k" : "ケイセイデンテツ", + "zoom" : 10, + "SUID" : 15919, + "company_type" : 2, + "company_name_h" : "京成電鉄株式会社", + "interaction" : "23006", + "shared_interaction" : "23006", + "company_url" : "http://www.keisei.co.jp/", + "line_name" : "成田スカイアクセス", + "selected" : false, + "company_name" : "京成電鉄", + "company_cd" : 13, + "name" : "2300603 (23006) 2300604", + "rr_cd" : 23, + "company_name_r" : "京成", + "e_status_x" : 0, + "shared_name" : "2300603 (23006) 2300604", + "lat" : 35.783474701668865, + "e_status_y" : 0, + "line_name_h" : "京成成田空港線" + }, + "selected" : false + }, { + "data" : { + "id" : "15927", + "source" : "5552", + "target" : "5553", + "line_name_k" : "ケイオウセン", + "is_bullet" : false, + "lon" : 139.53357685914878, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 11, + "SUID" : 15927, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24001", + "shared_interaction" : "24001", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400101 (24001) 2400102", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400101 (24001) 2400102", + "lat" : 35.67836429466227, + "e_status_y" : 0, + "line_name_h" : "京王線" + }, + "selected" : false + }, { + "data" : { + "id" : "15928", + "source" : "5553", + "target" : "5554", + "line_name_k" : "ケイオウセン", + "is_bullet" : false, + "lon" : 139.53357685914878, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 11, + "SUID" : 15928, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24001", + "shared_interaction" : "24001", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400102 (24001) 2400103", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400102 (24001) 2400103", + "lat" : 35.67836429466227, + "e_status_y" : 0, + "line_name_h" : "京王線" + }, + "selected" : false + }, { + "data" : { + "id" : "15929", + "source" : "5554", + "target" : "5555", + "line_name_k" : "ケイオウセン", + "is_bullet" : false, + "lon" : 139.53357685914878, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 11, + "SUID" : 15929, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24001", + "shared_interaction" : "24001", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400103 (24001) 2400104", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400103 (24001) 2400104", + "lat" : 35.67836429466227, + "e_status_y" : 0, + "line_name_h" : "京王線" + }, + "selected" : false + }, { + "data" : { + "id" : "15930", + "source" : "5555", + "target" : "5556", + "line_name_k" : "ケイオウセン", + "is_bullet" : false, + "lon" : 139.53357685914878, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 11, + "SUID" : 15930, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24001", + "shared_interaction" : "24001", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400104 (24001) 2400105", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400104 (24001) 2400105", + "lat" : 35.67836429466227, + "e_status_y" : 0, + "line_name_h" : "京王線" + }, + "selected" : false + }, { + "data" : { + "id" : "15931", + "source" : "5556", + "target" : "5557", + "line_name_k" : "ケイオウセン", + "is_bullet" : false, + "lon" : 139.53357685914878, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 11, + "SUID" : 15931, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24001", + "shared_interaction" : "24001", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400105 (24001) 2400106", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400105 (24001) 2400106", + "lat" : 35.67836429466227, + "e_status_y" : 0, + "line_name_h" : "京王線" + }, + "selected" : false + }, { + "data" : { + "id" : "15950", + "source" : "5575", + "target" : "5576", + "line_name_k" : "ケイオウセン", + "is_bullet" : false, + "lon" : 139.53357685914878, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 11, + "SUID" : 15950, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24001", + "shared_interaction" : "24001", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400124 (24001) 2400125", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400124 (24001) 2400125", + "lat" : 35.67836429466227, + "e_status_y" : 0, + "line_name_h" : "京王線" + }, + "selected" : false + }, { + "data" : { + "id" : "15951", + "source" : "5576", + "target" : "5577", + "line_name_k" : "ケイオウセン", + "is_bullet" : false, + "lon" : 139.53357685914878, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 11, + "SUID" : 15951, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24001", + "shared_interaction" : "24001", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400125 (24001) 2400126", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400125 (24001) 2400126", + "lat" : 35.67836429466227, + "e_status_y" : 0, + "line_name_h" : "京王線" + }, + "selected" : false + }, { + "data" : { + "id" : "15948", + "source" : "5573", + "target" : "5574", + "line_name_k" : "ケイオウセン", + "is_bullet" : false, + "lon" : 139.53357685914878, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 11, + "SUID" : 15948, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24001", + "shared_interaction" : "24001", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400122 (24001) 2400123", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400122 (24001) 2400123", + "lat" : 35.67836429466227, + "e_status_y" : 0, + "line_name_h" : "京王線" + }, + "selected" : false + }, { + "data" : { + "id" : "15949", + "source" : "5574", + "target" : "5575", + "line_name_k" : "ケイオウセン", + "is_bullet" : false, + "lon" : 139.53357685914878, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 11, + "SUID" : 15949, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24001", + "shared_interaction" : "24001", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400123 (24001) 2400124", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400123 (24001) 2400124", + "lat" : 35.67836429466227, + "e_status_y" : 0, + "line_name_h" : "京王線" + }, + "selected" : false + }, { + "data" : { + "id" : "15954", + "source" : "5579", + "target" : "5580", + "line_name_k" : "ケイオウセン", + "is_bullet" : false, + "lon" : 139.53357685914878, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 11, + "SUID" : 15954, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24001", + "shared_interaction" : "24001", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400128 (24001) 2400129", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400128 (24001) 2400129", + "lat" : 35.67836429466227, + "e_status_y" : 0, + "line_name_h" : "京王線" + }, + "selected" : false + }, { + "data" : { + "id" : "15955", + "source" : "5580", + "target" : "5581", + "line_name_k" : "ケイオウセン", + "is_bullet" : false, + "lon" : 139.53357685914878, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 11, + "SUID" : 15955, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24001", + "shared_interaction" : "24001", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400129 (24001) 2400130", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400129 (24001) 2400130", + "lat" : 35.67836429466227, + "e_status_y" : 0, + "line_name_h" : "京王線" + }, + "selected" : false + }, { + "data" : { + "id" : "15952", + "source" : "5577", + "target" : "5578", + "line_name_k" : "ケイオウセン", + "is_bullet" : false, + "lon" : 139.53357685914878, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 11, + "SUID" : 15952, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24001", + "shared_interaction" : "24001", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400126 (24001) 2400127", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400126 (24001) 2400127", + "lat" : 35.67836429466227, + "e_status_y" : 0, + "line_name_h" : "京王線" + }, + "selected" : false + }, { + "data" : { + "id" : "15953", + "source" : "5578", + "target" : "5579", + "line_name_k" : "ケイオウセン", + "is_bullet" : false, + "lon" : 139.53357685914878, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 11, + "SUID" : 15953, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24001", + "shared_interaction" : "24001", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400127 (24001) 2400128", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400127 (24001) 2400128", + "lat" : 35.67836429466227, + "e_status_y" : 0, + "line_name_h" : "京王線" + }, + "selected" : false + }, { + "data" : { + "id" : "15958", + "source" : "5583", + "target" : "5584", + "line_name_k" : "ケイオウセン", + "is_bullet" : false, + "lon" : 139.53357685914878, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 11, + "SUID" : 15958, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24001", + "shared_interaction" : "24001", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400132 (24001) 2400133", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400132 (24001) 2400133", + "lat" : 35.67836429466227, + "e_status_y" : 0, + "line_name_h" : "京王線" + }, + "selected" : false + }, { + "data" : { + "id" : "15959", + "source" : "5584", + "target" : "5585", + "line_name_k" : "ケイオウセン", + "is_bullet" : false, + "lon" : 139.53357685914878, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 11, + "SUID" : 15959, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24001", + "shared_interaction" : "24001", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400133 (24001) 2400134", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400133 (24001) 2400134", + "lat" : 35.67836429466227, + "e_status_y" : 0, + "line_name_h" : "京王線" + }, + "selected" : false + }, { + "data" : { + "id" : "15956", + "source" : "5581", + "target" : "5582", + "line_name_k" : "ケイオウセン", + "is_bullet" : false, + "lon" : 139.53357685914878, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 11, + "SUID" : 15956, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24001", + "shared_interaction" : "24001", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400130 (24001) 2400131", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400130 (24001) 2400131", + "lat" : 35.67836429466227, + "e_status_y" : 0, + "line_name_h" : "京王線" + }, + "selected" : false + }, { + "data" : { + "id" : "15957", + "source" : "5582", + "target" : "5583", + "line_name_k" : "ケイオウセン", + "is_bullet" : false, + "lon" : 139.53357685914878, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 11, + "SUID" : 15957, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24001", + "shared_interaction" : "24001", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400131 (24001) 2400132", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400131 (24001) 2400132", + "lat" : 35.67836429466227, + "e_status_y" : 0, + "line_name_h" : "京王線" + }, + "selected" : false + }, { + "data" : { + "id" : "15960", + "source" : "5586", + "target" : "5587", + "line_name_k" : "ケイオウサガミハラセン", + "is_bullet" : false, + "lon" : 139.43751621679692, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 12, + "SUID" : 15960, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24002", + "shared_interaction" : "24002", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王相模原線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400201 (24002) 2400202", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400201 (24002) 2400202", + "lat" : 35.625846999999986, + "e_status_y" : 0, + "line_name_h" : "京王相模原線" + }, + "selected" : false + }, { + "data" : { + "id" : "15935", + "source" : "5560", + "target" : "5561", + "line_name_k" : "ケイオウセン", + "is_bullet" : false, + "lon" : 139.53357685914878, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 11, + "SUID" : 15935, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24001", + "shared_interaction" : "24001", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400109 (24001) 2400110", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400109 (24001) 2400110", + "lat" : 35.67836429466227, + "e_status_y" : 0, + "line_name_h" : "京王線" + }, + "selected" : false + }, { + "data" : { + "id" : "15934", + "source" : "5559", + "target" : "5560", + "line_name_k" : "ケイオウセン", + "is_bullet" : false, + "lon" : 139.53357685914878, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 11, + "SUID" : 15934, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24001", + "shared_interaction" : "24001", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400108 (24001) 2400109", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400108 (24001) 2400109", + "lat" : 35.67836429466227, + "e_status_y" : 0, + "line_name_h" : "京王線" + }, + "selected" : false + }, { + "data" : { + "id" : "15933", + "source" : "5558", + "target" : "5559", + "line_name_k" : "ケイオウセン", + "is_bullet" : false, + "lon" : 139.53357685914878, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 11, + "SUID" : 15933, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24001", + "shared_interaction" : "24001", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400107 (24001) 2400108", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400107 (24001) 2400108", + "lat" : 35.67836429466227, + "e_status_y" : 0, + "line_name_h" : "京王線" + }, + "selected" : false + }, { + "data" : { + "id" : "15932", + "source" : "5557", + "target" : "5558", + "line_name_k" : "ケイオウセン", + "is_bullet" : false, + "lon" : 139.53357685914878, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 11, + "SUID" : 15932, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24001", + "shared_interaction" : "24001", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400106 (24001) 2400107", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400106 (24001) 2400107", + "lat" : 35.67836429466227, + "e_status_y" : 0, + "line_name_h" : "京王線" + }, + "selected" : false + }, { + "data" : { + "id" : "15939", + "source" : "5564", + "target" : "5565", + "line_name_k" : "ケイオウセン", + "is_bullet" : false, + "lon" : 139.53357685914878, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 11, + "SUID" : 15939, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24001", + "shared_interaction" : "24001", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400113 (24001) 2400114", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400113 (24001) 2400114", + "lat" : 35.67836429466227, + "e_status_y" : 0, + "line_name_h" : "京王線" + }, + "selected" : false + }, { + "data" : { + "id" : "15938", + "source" : "5563", + "target" : "5564", + "line_name_k" : "ケイオウセン", + "is_bullet" : false, + "lon" : 139.53357685914878, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 11, + "SUID" : 15938, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24001", + "shared_interaction" : "24001", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400112 (24001) 2400113", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400112 (24001) 2400113", + "lat" : 35.67836429466227, + "e_status_y" : 0, + "line_name_h" : "京王線" + }, + "selected" : false + }, { + "data" : { + "id" : "15937", + "source" : "5562", + "target" : "5563", + "line_name_k" : "ケイオウセン", + "is_bullet" : false, + "lon" : 139.53357685914878, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 11, + "SUID" : 15937, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24001", + "shared_interaction" : "24001", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400111 (24001) 2400112", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400111 (24001) 2400112", + "lat" : 35.67836429466227, + "e_status_y" : 0, + "line_name_h" : "京王線" + }, + "selected" : false + }, { + "data" : { + "id" : "15936", + "source" : "5561", + "target" : "5562", + "line_name_k" : "ケイオウセン", + "is_bullet" : false, + "lon" : 139.53357685914878, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 11, + "SUID" : 15936, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24001", + "shared_interaction" : "24001", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400110 (24001) 2400111", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400110 (24001) 2400111", + "lat" : 35.67836429466227, + "e_status_y" : 0, + "line_name_h" : "京王線" + }, + "selected" : false + }, { + "data" : { + "id" : "15943", + "source" : "5568", + "target" : "5569", + "line_name_k" : "ケイオウセン", + "is_bullet" : false, + "lon" : 139.53357685914878, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 11, + "SUID" : 15943, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24001", + "shared_interaction" : "24001", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400117 (24001) 2400118", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400117 (24001) 2400118", + "lat" : 35.67836429466227, + "e_status_y" : 0, + "line_name_h" : "京王線" + }, + "selected" : false + }, { + "data" : { + "id" : "15942", + "source" : "5567", + "target" : "5568", + "line_name_k" : "ケイオウセン", + "is_bullet" : false, + "lon" : 139.53357685914878, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 11, + "SUID" : 15942, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24001", + "shared_interaction" : "24001", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400116 (24001) 2400117", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400116 (24001) 2400117", + "lat" : 35.67836429466227, + "e_status_y" : 0, + "line_name_h" : "京王線" + }, + "selected" : false + }, { + "data" : { + "id" : "15941", + "source" : "5566", + "target" : "5567", + "line_name_k" : "ケイオウセン", + "is_bullet" : false, + "lon" : 139.53357685914878, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 11, + "SUID" : 15941, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24001", + "shared_interaction" : "24001", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400115 (24001) 2400116", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400115 (24001) 2400116", + "lat" : 35.67836429466227, + "e_status_y" : 0, + "line_name_h" : "京王線" + }, + "selected" : false + }, { + "data" : { + "id" : "15940", + "source" : "5565", + "target" : "5566", + "line_name_k" : "ケイオウセン", + "is_bullet" : false, + "lon" : 139.53357685914878, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 11, + "SUID" : 15940, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24001", + "shared_interaction" : "24001", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400114 (24001) 2400115", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400114 (24001) 2400115", + "lat" : 35.67836429466227, + "e_status_y" : 0, + "line_name_h" : "京王線" + }, + "selected" : false + }, { + "data" : { + "id" : "15947", + "source" : "5572", + "target" : "5573", + "line_name_k" : "ケイオウセン", + "is_bullet" : false, + "lon" : 139.53357685914878, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 11, + "SUID" : 15947, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24001", + "shared_interaction" : "24001", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400121 (24001) 2400122", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400121 (24001) 2400122", + "lat" : 35.67836429466227, + "e_status_y" : 0, + "line_name_h" : "京王線" + }, + "selected" : false + }, { + "data" : { + "id" : "15946", + "source" : "5571", + "target" : "5572", + "line_name_k" : "ケイオウセン", + "is_bullet" : false, + "lon" : 139.53357685914878, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 11, + "SUID" : 15946, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24001", + "shared_interaction" : "24001", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400120 (24001) 2400121", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400120 (24001) 2400121", + "lat" : 35.67836429466227, + "e_status_y" : 0, + "line_name_h" : "京王線" + }, + "selected" : false + }, { + "data" : { + "id" : "15945", + "source" : "5570", + "target" : "5571", + "line_name_k" : "ケイオウセン", + "is_bullet" : false, + "lon" : 139.53357685914878, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 11, + "SUID" : 15945, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24001", + "shared_interaction" : "24001", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400119 (24001) 2400120", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400119 (24001) 2400120", + "lat" : 35.67836429466227, + "e_status_y" : 0, + "line_name_h" : "京王線" + }, + "selected" : false + }, { + "data" : { + "id" : "15944", + "source" : "5569", + "target" : "5570", + "line_name_k" : "ケイオウセン", + "is_bullet" : false, + "lon" : 139.53357685914878, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 11, + "SUID" : 15944, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24001", + "shared_interaction" : "24001", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400118 (24001) 2400119", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400118 (24001) 2400119", + "lat" : 35.67836429466227, + "e_status_y" : 0, + "line_name_h" : "京王線" + }, + "selected" : false + }, { + "data" : { + "id" : "15979", + "source" : "5609", + "target" : "5610", + "line_name_k" : "ケイオウイノガシラセン", + "is_bullet" : false, + "lon" : 139.63498783283308, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 12, + "SUID" : 15979, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24006", + "shared_interaction" : "24006", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王井の頭線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400601 (24006) 2400602", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400601 (24006) 2400602", + "lat" : 35.67668499412642, + "e_status_y" : 0, + "line_name_h" : "京王井の頭線" + }, + "selected" : false + }, { + "data" : { + "id" : "15980", + "source" : "5610", + "target" : "5611", + "line_name_k" : "ケイオウイノガシラセン", + "is_bullet" : false, + "lon" : 139.63498783283308, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 12, + "SUID" : 15980, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24006", + "shared_interaction" : "24006", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王井の頭線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400602 (24006) 2400603", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400602 (24006) 2400603", + "lat" : 35.67668499412642, + "e_status_y" : 0, + "line_name_h" : "京王井の頭線" + }, + "selected" : false + }, { + "data" : { + "id" : "15981", + "source" : "5611", + "target" : "5612", + "line_name_k" : "ケイオウイノガシラセン", + "is_bullet" : false, + "lon" : 139.63498783283308, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 12, + "SUID" : 15981, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24006", + "shared_interaction" : "24006", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王井の頭線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400603 (24006) 2400604", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400603 (24006) 2400604", + "lat" : 35.67668499412642, + "e_status_y" : 0, + "line_name_h" : "京王井の頭線" + }, + "selected" : false + }, { + "data" : { + "id" : "15982", + "source" : "5612", + "target" : "5613", + "line_name_k" : "ケイオウイノガシラセン", + "is_bullet" : false, + "lon" : 139.63498783283308, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 12, + "SUID" : 15982, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24006", + "shared_interaction" : "24006", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王井の頭線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400604 (24006) 2400605", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400604 (24006) 2400605", + "lat" : 35.67668499412642, + "e_status_y" : 0, + "line_name_h" : "京王井の頭線" + }, + "selected" : false + }, { + "data" : { + "id" : "15977", + "source" : "5605", + "target" : "5606", + "line_name_k" : "ケイオウケイバジョウセン", + "is_bullet" : false, + "lon" : 139.48962301586914, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 14, + "SUID" : 15977, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24004", + "shared_interaction" : "24004", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王競馬場線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400401 (24004) 2400402", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400401 (24004) 2400402", + "lat" : 35.66894537404467, + "e_status_y" : 0, + "line_name_h" : "京王競馬場線" + }, + "selected" : false + }, { + "data" : { + "id" : "15978", + "source" : "5607", + "target" : "5608", + "line_name_k" : "ケイオウドウブツエンセン", + "is_bullet" : false, + "lon" : 139.40999162963863, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 14, + "SUID" : 15978, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24005", + "shared_interaction" : "24005", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王動物園線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400501 (24005) 2400502", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400501 (24005) 2400502", + "lat" : 35.657461750041946, + "e_status_y" : 0, + "line_name_h" : "京王動物園線" + }, + "selected" : false + }, { + "data" : { + "id" : "15987", + "source" : "5617", + "target" : "5618", + "line_name_k" : "ケイオウイノガシラセン", + "is_bullet" : false, + "lon" : 139.63498783283308, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 12, + "SUID" : 15987, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24006", + "shared_interaction" : "24006", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王井の頭線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400609 (24006) 2400610", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400609 (24006) 2400610", + "lat" : 35.67668499412642, + "e_status_y" : 0, + "line_name_h" : "京王井の頭線" + }, + "selected" : false + }, { + "data" : { + "id" : "15988", + "source" : "5618", + "target" : "5619", + "line_name_k" : "ケイオウイノガシラセン", + "is_bullet" : false, + "lon" : 139.63498783283308, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 12, + "SUID" : 15988, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24006", + "shared_interaction" : "24006", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王井の頭線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400610 (24006) 2400611", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400610 (24006) 2400611", + "lat" : 35.67668499412642, + "e_status_y" : 0, + "line_name_h" : "京王井の頭線" + }, + "selected" : false + }, { + "data" : { + "id" : "15989", + "source" : "5619", + "target" : "5620", + "line_name_k" : "ケイオウイノガシラセン", + "is_bullet" : false, + "lon" : 139.63498783283308, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 12, + "SUID" : 15989, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24006", + "shared_interaction" : "24006", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王井の頭線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400611 (24006) 2400612", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400611 (24006) 2400612", + "lat" : 35.67668499412642, + "e_status_y" : 0, + "line_name_h" : "京王井の頭線" + }, + "selected" : false + }, { + "data" : { + "id" : "15990", + "source" : "5620", + "target" : "5621", + "line_name_k" : "ケイオウイノガシラセン", + "is_bullet" : false, + "lon" : 139.63498783283308, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 12, + "SUID" : 15990, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24006", + "shared_interaction" : "24006", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王井の頭線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400612 (24006) 2400613", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400612 (24006) 2400613", + "lat" : 35.67668499412642, + "e_status_y" : 0, + "line_name_h" : "京王井の頭線" + }, + "selected" : false + }, { + "data" : { + "id" : "15983", + "source" : "5613", + "target" : "5614", + "line_name_k" : "ケイオウイノガシラセン", + "is_bullet" : false, + "lon" : 139.63498783283308, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 12, + "SUID" : 15983, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24006", + "shared_interaction" : "24006", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王井の頭線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400605 (24006) 2400606", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400605 (24006) 2400606", + "lat" : 35.67668499412642, + "e_status_y" : 0, + "line_name_h" : "京王井の頭線" + }, + "selected" : false + }, { + "data" : { + "id" : "15984", + "source" : "5614", + "target" : "5615", + "line_name_k" : "ケイオウイノガシラセン", + "is_bullet" : false, + "lon" : 139.63498783283308, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 12, + "SUID" : 15984, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24006", + "shared_interaction" : "24006", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王井の頭線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400606 (24006) 2400607", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400606 (24006) 2400607", + "lat" : 35.67668499412642, + "e_status_y" : 0, + "line_name_h" : "京王井の頭線" + }, + "selected" : false + }, { + "data" : { + "id" : "15985", + "source" : "5615", + "target" : "5616", + "line_name_k" : "ケイオウイノガシラセン", + "is_bullet" : false, + "lon" : 139.63498783283308, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 12, + "SUID" : 15985, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24006", + "shared_interaction" : "24006", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王井の頭線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400607 (24006) 2400608", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400607 (24006) 2400608", + "lat" : 35.67668499412642, + "e_status_y" : 0, + "line_name_h" : "京王井の頭線" + }, + "selected" : false + }, { + "data" : { + "id" : "15986", + "source" : "5616", + "target" : "5617", + "line_name_k" : "ケイオウイノガシラセン", + "is_bullet" : false, + "lon" : 139.63498783283308, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 12, + "SUID" : 15986, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24006", + "shared_interaction" : "24006", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王井の頭線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400608 (24006) 2400609", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400608 (24006) 2400609", + "lat" : 35.67668499412642, + "e_status_y" : 0, + "line_name_h" : "京王井の頭線" + }, + "selected" : false + }, { + "data" : { + "id" : "15968", + "source" : "5594", + "target" : "5595", + "line_name_k" : "ケイオウサガミハラセン", + "is_bullet" : false, + "lon" : 139.43751621679692, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 12, + "SUID" : 15968, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24002", + "shared_interaction" : "24002", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王相模原線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400209 (24002) 2400210", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400209 (24002) 2400210", + "lat" : 35.625846999999986, + "e_status_y" : 0, + "line_name_h" : "京王相模原線" + }, + "selected" : false + }, { + "data" : { + "id" : "15967", + "source" : "5593", + "target" : "5594", + "line_name_k" : "ケイオウサガミハラセン", + "is_bullet" : false, + "lon" : 139.43751621679692, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 12, + "SUID" : 15967, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24002", + "shared_interaction" : "24002", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王相模原線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400208 (24002) 2400209", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400208 (24002) 2400209", + "lat" : 35.625846999999986, + "e_status_y" : 0, + "line_name_h" : "京王相模原線" + }, + "selected" : false + }, { + "data" : { + "id" : "15969", + "source" : "5595", + "target" : "5596", + "line_name_k" : "ケイオウサガミハラセン", + "is_bullet" : false, + "lon" : 139.43751621679692, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 12, + "SUID" : 15969, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24002", + "shared_interaction" : "24002", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王相模原線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400210 (24002) 2400211", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400210 (24002) 2400211", + "lat" : 35.625846999999986, + "e_status_y" : 0, + "line_name_h" : "京王相模原線" + }, + "selected" : false + }, { + "data" : { + "id" : "15963", + "source" : "5589", + "target" : "5590", + "line_name_k" : "ケイオウサガミハラセン", + "is_bullet" : false, + "lon" : 139.43751621679692, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 12, + "SUID" : 15963, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24002", + "shared_interaction" : "24002", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王相模原線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400204 (24002) 2400205", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400204 (24002) 2400205", + "lat" : 35.625846999999986, + "e_status_y" : 0, + "line_name_h" : "京王相模原線" + }, + "selected" : false + }, { + "data" : { + "id" : "15966", + "source" : "5592", + "target" : "5593", + "line_name_k" : "ケイオウサガミハラセン", + "is_bullet" : false, + "lon" : 139.43751621679692, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 12, + "SUID" : 15966, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24002", + "shared_interaction" : "24002", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王相模原線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400207 (24002) 2400208", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400207 (24002) 2400208", + "lat" : 35.625846999999986, + "e_status_y" : 0, + "line_name_h" : "京王相模原線" + }, + "selected" : false + }, { + "data" : { + "id" : "15975", + "source" : "5602", + "target" : "5603", + "line_name_k" : "ケイオウタカオセン", + "is_bullet" : false, + "lon" : 139.3084367460283, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 13, + "SUID" : 15975, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24003", + "shared_interaction" : "24003", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王高尾線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400305 (24003) 2400306", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400305 (24003) 2400306", + "lat" : 35.64331590360225, + "e_status_y" : 0, + "line_name_h" : "京王高尾線" + }, + "selected" : false + }, { + "data" : { + "id" : "15974", + "source" : "5601", + "target" : "5602", + "line_name_k" : "ケイオウタカオセン", + "is_bullet" : false, + "lon" : 139.3084367460283, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 13, + "SUID" : 15974, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24003", + "shared_interaction" : "24003", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王高尾線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400304 (24003) 2400305", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400304 (24003) 2400305", + "lat" : 35.64331590360225, + "e_status_y" : 0, + "line_name_h" : "京王高尾線" + }, + "selected" : false + }, { + "data" : { + "id" : "15976", + "source" : "5603", + "target" : "5604", + "line_name_k" : "ケイオウタカオセン", + "is_bullet" : false, + "lon" : 139.3084367460283, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 13, + "SUID" : 15976, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24003", + "shared_interaction" : "24003", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王高尾線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400306 (24003) 2400307", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400306 (24003) 2400307", + "lat" : 35.64331590360225, + "e_status_y" : 0, + "line_name_h" : "京王高尾線" + }, + "selected" : false + }, { + "data" : { + "id" : "15971", + "source" : "5598", + "target" : "5599", + "line_name_k" : "ケイオウタカオセン", + "is_bullet" : false, + "lon" : 139.3084367460283, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 13, + "SUID" : 15971, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24003", + "shared_interaction" : "24003", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王高尾線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400301 (24003) 2400302", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400301 (24003) 2400302", + "lat" : 35.64331590360225, + "e_status_y" : 0, + "line_name_h" : "京王高尾線" + }, + "selected" : false + }, { + "data" : { + "id" : "15973", + "source" : "5600", + "target" : "5601", + "line_name_k" : "ケイオウタカオセン", + "is_bullet" : false, + "lon" : 139.3084367460283, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 13, + "SUID" : 15973, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24003", + "shared_interaction" : "24003", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王高尾線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400303 (24003) 2400304", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400303 (24003) 2400304", + "lat" : 35.64331590360225, + "e_status_y" : 0, + "line_name_h" : "京王高尾線" + }, + "selected" : false + }, { + "data" : { + "id" : "15972", + "source" : "5599", + "target" : "5600", + "line_name_k" : "ケイオウタカオセン", + "is_bullet" : false, + "lon" : 139.3084367460283, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 13, + "SUID" : 15972, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24003", + "shared_interaction" : "24003", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王高尾線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400302 (24003) 2400303", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400302 (24003) 2400303", + "lat" : 35.64331590360225, + "e_status_y" : 0, + "line_name_h" : "京王高尾線" + }, + "selected" : false + }, { + "data" : { + "id" : "16011", + "source" : "5643", + "target" : "5644", + "line_name_k" : "オダキュウセン", + "is_bullet" : false, + "lon" : 139.43477539316441, + "company_name_k" : "オダキュウデンテツ", + "zoom" : 11, + "SUID" : 16011, + "company_type" : 2, + "company_name_h" : "小田急電鉄株式会社", + "interaction" : "25001", + "shared_interaction" : "25001", + "company_url" : "http://www.odakyu.jp/", + "line_name" : "小田急線", + "selected" : false, + "company_name" : "小田急電鉄", + "company_cd" : 15, + "name" : "2500114 (25001) 2500115", + "rr_cd" : 25, + "company_name_r" : "小田急", + "e_status_x" : 0, + "shared_name" : "2500114 (25001) 2500115", + "lat" : 35.528535238628024, + "e_status_y" : 0, + "line_name_h" : "小田急小田原線" + }, + "selected" : false + }, { + "data" : { + "id" : "16012", + "source" : "5644", + "target" : "5645", + "line_name_k" : "オダキュウセン", + "is_bullet" : false, + "lon" : 139.43477539316441, + "company_name_k" : "オダキュウデンテツ", + "zoom" : 11, + "SUID" : 16012, + "company_type" : 2, + "company_name_h" : "小田急電鉄株式会社", + "interaction" : "25001", + "shared_interaction" : "25001", + "company_url" : "http://www.odakyu.jp/", + "line_name" : "小田急線", + "selected" : false, + "company_name" : "小田急電鉄", + "company_cd" : 15, + "name" : "2500115 (25001) 2500116", + "rr_cd" : 25, + "company_name_r" : "小田急", + "e_status_x" : 0, + "shared_name" : "2500115 (25001) 2500116", + "lat" : 35.528535238628024, + "e_status_y" : 0, + "line_name_h" : "小田急小田原線" + }, + "selected" : false + }, { + "data" : { + "id" : "16009", + "source" : "5641", + "target" : "5642", + "line_name_k" : "オダキュウセン", + "is_bullet" : false, + "lon" : 139.43477539316441, + "company_name_k" : "オダキュウデンテツ", + "zoom" : 11, + "SUID" : 16009, + "company_type" : 2, + "company_name_h" : "小田急電鉄株式会社", + "interaction" : "25001", + "shared_interaction" : "25001", + "company_url" : "http://www.odakyu.jp/", + "line_name" : "小田急線", + "selected" : false, + "company_name" : "小田急電鉄", + "company_cd" : 15, + "name" : "2500112 (25001) 2500113", + "rr_cd" : 25, + "company_name_r" : "小田急", + "e_status_x" : 0, + "shared_name" : "2500112 (25001) 2500113", + "lat" : 35.528535238628024, + "e_status_y" : 0, + "line_name_h" : "小田急小田原線" + }, + "selected" : false + }, { + "data" : { + "id" : "16010", + "source" : "5642", + "target" : "5643", + "line_name_k" : "オダキュウセン", + "is_bullet" : false, + "lon" : 139.43477539316441, + "company_name_k" : "オダキュウデンテツ", + "zoom" : 11, + "SUID" : 16010, + "company_type" : 2, + "company_name_h" : "小田急電鉄株式会社", + "interaction" : "25001", + "shared_interaction" : "25001", + "company_url" : "http://www.odakyu.jp/", + "line_name" : "小田急線", + "selected" : false, + "company_name" : "小田急電鉄", + "company_cd" : 15, + "name" : "2500113 (25001) 2500114", + "rr_cd" : 25, + "company_name_r" : "小田急", + "e_status_x" : 0, + "shared_name" : "2500113 (25001) 2500114", + "lat" : 35.528535238628024, + "e_status_y" : 0, + "line_name_h" : "小田急小田原線" + }, + "selected" : false + }, { + "data" : { + "id" : "16007", + "source" : "5639", + "target" : "5640", + "line_name_k" : "オダキュウセン", + "is_bullet" : false, + "lon" : 139.43477539316441, + "company_name_k" : "オダキュウデンテツ", + "zoom" : 11, + "SUID" : 16007, + "company_type" : 2, + "company_name_h" : "小田急電鉄株式会社", + "interaction" : "25001", + "shared_interaction" : "25001", + "company_url" : "http://www.odakyu.jp/", + "line_name" : "小田急線", + "selected" : false, + "company_name" : "小田急電鉄", + "company_cd" : 15, + "name" : "2500110 (25001) 2500111", + "rr_cd" : 25, + "company_name_r" : "小田急", + "e_status_x" : 0, + "shared_name" : "2500110 (25001) 2500111", + "lat" : 35.528535238628024, + "e_status_y" : 0, + "line_name_h" : "小田急小田原線" + }, + "selected" : false + }, { + "data" : { + "id" : "16008", + "source" : "5640", + "target" : "5641", + "line_name_k" : "オダキュウセン", + "is_bullet" : false, + "lon" : 139.43477539316441, + "company_name_k" : "オダキュウデンテツ", + "zoom" : 11, + "SUID" : 16008, + "company_type" : 2, + "company_name_h" : "小田急電鉄株式会社", + "interaction" : "25001", + "shared_interaction" : "25001", + "company_url" : "http://www.odakyu.jp/", + "line_name" : "小田急線", + "selected" : false, + "company_name" : "小田急電鉄", + "company_cd" : 15, + "name" : "2500111 (25001) 2500112", + "rr_cd" : 25, + "company_name_r" : "小田急", + "e_status_x" : 0, + "shared_name" : "2500111 (25001) 2500112", + "lat" : 35.528535238628024, + "e_status_y" : 0, + "line_name_h" : "小田急小田原線" + }, + "selected" : false + }, { + "data" : { + "id" : "16005", + "source" : "5637", + "target" : "5638", + "line_name_k" : "オダキュウセン", + "is_bullet" : false, + "lon" : 139.43477539316441, + "company_name_k" : "オダキュウデンテツ", + "zoom" : 11, + "SUID" : 16005, + "company_type" : 2, + "company_name_h" : "小田急電鉄株式会社", + "interaction" : "25001", + "shared_interaction" : "25001", + "company_url" : "http://www.odakyu.jp/", + "line_name" : "小田急線", + "selected" : false, + "company_name" : "小田急電鉄", + "company_cd" : 15, + "name" : "2500108 (25001) 2500109", + "rr_cd" : 25, + "company_name_r" : "小田急", + "e_status_x" : 0, + "shared_name" : "2500108 (25001) 2500109", + "lat" : 35.528535238628024, + "e_status_y" : 0, + "line_name_h" : "小田急小田原線" + }, + "selected" : false + }, { + "data" : { + "id" : "16006", + "source" : "5638", + "target" : "5639", + "line_name_k" : "オダキュウセン", + "is_bullet" : false, + "lon" : 139.43477539316441, + "company_name_k" : "オダキュウデンテツ", + "zoom" : 11, + "SUID" : 16006, + "company_type" : 2, + "company_name_h" : "小田急電鉄株式会社", + "interaction" : "25001", + "shared_interaction" : "25001", + "company_url" : "http://www.odakyu.jp/", + "line_name" : "小田急線", + "selected" : false, + "company_name" : "小田急電鉄", + "company_cd" : 15, + "name" : "2500109 (25001) 2500110", + "rr_cd" : 25, + "company_name_r" : "小田急", + "e_status_x" : 0, + "shared_name" : "2500109 (25001) 2500110", + "lat" : 35.528535238628024, + "e_status_y" : 0, + "line_name_h" : "小田急小田原線" + }, + "selected" : false + }, { + "data" : { + "id" : "16013", + "source" : "5645", + "target" : "5646", + "line_name_k" : "オダキュウセン", + "is_bullet" : false, + "lon" : 139.43477539316441, + "company_name_k" : "オダキュウデンテツ", + "zoom" : 11, + "SUID" : 16013, + "company_type" : 2, + "company_name_h" : "小田急電鉄株式会社", + "interaction" : "25001", + "shared_interaction" : "25001", + "company_url" : "http://www.odakyu.jp/", + "line_name" : "小田急線", + "selected" : false, + "company_name" : "小田急電鉄", + "company_cd" : 15, + "name" : "2500116 (25001) 2500117", + "rr_cd" : 25, + "company_name_r" : "小田急", + "e_status_x" : 0, + "shared_name" : "2500116 (25001) 2500117", + "lat" : 35.528535238628024, + "e_status_y" : 0, + "line_name_h" : "小田急小田原線" + }, + "selected" : false + }, { + "data" : { + "id" : "15997", + "source" : "5628", + "target" : "5629", + "line_name_k" : "ケイオウシンセン", + "is_bullet" : false, + "lon" : 139.6852505207062, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 14, + "SUID" : 15997, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24007", + "shared_interaction" : "24007", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王新線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400703 (24007) 2400704", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400703 (24007) 2400704", + "lat" : 35.6804985281479, + "e_status_y" : 0, + "line_name_h" : "京王新線" + }, + "selected" : false + }, { + "data" : { + "id" : "15996", + "source" : "5627", + "target" : "5628", + "line_name_k" : "ケイオウシンセン", + "is_bullet" : false, + "lon" : 139.6852505207062, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 14, + "SUID" : 15996, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24007", + "shared_interaction" : "24007", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王新線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400702 (24007) 2400703", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400702 (24007) 2400703", + "lat" : 35.6804985281479, + "e_status_y" : 0, + "line_name_h" : "京王新線" + }, + "selected" : false + }, { + "data" : { + "id" : "15995", + "source" : "5626", + "target" : "5627", + "line_name_k" : "ケイオウシンセン", + "is_bullet" : false, + "lon" : 139.6852505207062, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 14, + "SUID" : 15995, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24007", + "shared_interaction" : "24007", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王新線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400701 (24007) 2400702", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400701 (24007) 2400702", + "lat" : 35.6804985281479, + "e_status_y" : 0, + "line_name_h" : "京王新線" + }, + "selected" : false + }, { + "data" : { + "id" : "15994", + "source" : "5624", + "target" : "5625", + "line_name_k" : "ケイオウイノガシラセン", + "is_bullet" : false, + "lon" : 139.63498783283308, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 12, + "SUID" : 15994, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24006", + "shared_interaction" : "24006", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王井の頭線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400616 (24006) 2400617", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400616 (24006) 2400617", + "lat" : 35.67668499412642, + "e_status_y" : 0, + "line_name_h" : "京王井の頭線" + }, + "selected" : false + }, { + "data" : { + "id" : "15993", + "source" : "5623", + "target" : "5624", + "line_name_k" : "ケイオウイノガシラセン", + "is_bullet" : false, + "lon" : 139.63498783283308, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 12, + "SUID" : 15993, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24006", + "shared_interaction" : "24006", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王井の頭線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400615 (24006) 2400616", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400615 (24006) 2400616", + "lat" : 35.67668499412642, + "e_status_y" : 0, + "line_name_h" : "京王井の頭線" + }, + "selected" : false + }, { + "data" : { + "id" : "15992", + "source" : "5622", + "target" : "5623", + "line_name_k" : "ケイオウイノガシラセン", + "is_bullet" : false, + "lon" : 139.63498783283308, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 12, + "SUID" : 15992, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24006", + "shared_interaction" : "24006", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王井の頭線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400614 (24006) 2400615", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400614 (24006) 2400615", + "lat" : 35.67668499412642, + "e_status_y" : 0, + "line_name_h" : "京王井の頭線" + }, + "selected" : false + }, { + "data" : { + "id" : "15991", + "source" : "5621", + "target" : "5622", + "line_name_k" : "ケイオウイノガシラセン", + "is_bullet" : false, + "lon" : 139.63498783283308, + "company_name_k" : "ケイオウデンテツ", + "zoom" : 12, + "SUID" : 15991, + "company_type" : 2, + "company_name_h" : "京王電鉄株式会社", + "interaction" : "24006", + "shared_interaction" : "24006", + "company_url" : "http://www.keio.co.jp/", + "line_name" : "京王井の頭線", + "selected" : false, + "company_name" : "京王電鉄", + "company_cd" : 14, + "name" : "2400613 (24006) 2400614", + "rr_cd" : 24, + "company_name_r" : "京王", + "e_status_x" : 0, + "shared_name" : "2400613 (24006) 2400614", + "lat" : 35.67668499412642, + "e_status_y" : 0, + "line_name_h" : "京王井の頭線" + }, + "selected" : false + }, { + "data" : { + "id" : "16004", + "source" : "5636", + "target" : "5637", + "line_name_k" : "オダキュウセン", + "is_bullet" : false, + "lon" : 139.43477539316441, + "company_name_k" : "オダキュウデンテツ", + "zoom" : 11, + "SUID" : 16004, + "company_type" : 2, + "company_name_h" : "小田急電鉄株式会社", + "interaction" : "25001", + "shared_interaction" : "25001", + "company_url" : "http://www.odakyu.jp/", + "line_name" : "小田急線", + "selected" : false, + "company_name" : "小田急電鉄", + "company_cd" : 15, + "name" : "2500107 (25001) 2500108", + "rr_cd" : 25, + "company_name_r" : "小田急", + "e_status_x" : 0, + "shared_name" : "2500107 (25001) 2500108", + "lat" : 35.528535238628024, + "e_status_y" : 0, + "line_name_h" : "小田急小田原線" + }, + "selected" : false + }, { + "data" : { + "id" : "16003", + "source" : "5635", + "target" : "5636", + "line_name_k" : "オダキュウセン", + "is_bullet" : false, + "lon" : 139.43477539316441, + "company_name_k" : "オダキュウデンテツ", + "zoom" : 11, + "SUID" : 16003, + "company_type" : 2, + "company_name_h" : "小田急電鉄株式会社", + "interaction" : "25001", + "shared_interaction" : "25001", + "company_url" : "http://www.odakyu.jp/", + "line_name" : "小田急線", + "selected" : false, + "company_name" : "小田急電鉄", + "company_cd" : 15, + "name" : "2500106 (25001) 2500107", + "rr_cd" : 25, + "company_name_r" : "小田急", + "e_status_x" : 0, + "shared_name" : "2500106 (25001) 2500107", + "lat" : 35.528535238628024, + "e_status_y" : 0, + "line_name_h" : "小田急小田原線" + }, + "selected" : false + }, { + "data" : { + "id" : "16002", + "source" : "5634", + "target" : "5635", + "line_name_k" : "オダキュウセン", + "is_bullet" : false, + "lon" : 139.43477539316441, + "company_name_k" : "オダキュウデンテツ", + "zoom" : 11, + "SUID" : 16002, + "company_type" : 2, + "company_name_h" : "小田急電鉄株式会社", + "interaction" : "25001", + "shared_interaction" : "25001", + "company_url" : "http://www.odakyu.jp/", + "line_name" : "小田急線", + "selected" : false, + "company_name" : "小田急電鉄", + "company_cd" : 15, + "name" : "2500105 (25001) 2500106", + "rr_cd" : 25, + "company_name_r" : "小田急", + "e_status_x" : 0, + "shared_name" : "2500105 (25001) 2500106", + "lat" : 35.528535238628024, + "e_status_y" : 0, + "line_name_h" : "小田急小田原線" + }, + "selected" : false + }, { + "data" : { + "id" : "16001", + "source" : "5633", + "target" : "5634", + "line_name_k" : "オダキュウセン", + "is_bullet" : false, + "lon" : 139.43477539316441, + "company_name_k" : "オダキュウデンテツ", + "zoom" : 11, + "SUID" : 16001, + "company_type" : 2, + "company_name_h" : "小田急電鉄株式会社", + "interaction" : "25001", + "shared_interaction" : "25001", + "company_url" : "http://www.odakyu.jp/", + "line_name" : "小田急線", + "selected" : false, + "company_name" : "小田急電鉄", + "company_cd" : 15, + "name" : "2500104 (25001) 2500105", + "rr_cd" : 25, + "company_name_r" : "小田急", + "e_status_x" : 0, + "shared_name" : "2500104 (25001) 2500105", + "lat" : 35.528535238628024, + "e_status_y" : 0, + "line_name_h" : "小田急小田原線" + }, + "selected" : false + }, { + "data" : { + "id" : "16000", + "source" : "5632", + "target" : "5633", + "line_name_k" : "オダキュウセン", + "is_bullet" : false, + "lon" : 139.43477539316441, + "company_name_k" : "オダキュウデンテツ", + "zoom" : 11, + "SUID" : 16000, + "company_type" : 2, + "company_name_h" : "小田急電鉄株式会社", + "interaction" : "25001", + "shared_interaction" : "25001", + "company_url" : "http://www.odakyu.jp/", + "line_name" : "小田急線", + "selected" : false, + "company_name" : "小田急電鉄", + "company_cd" : 15, + "name" : "2500103 (25001) 2500104", + "rr_cd" : 25, + "company_name_r" : "小田急", + "e_status_x" : 0, + "shared_name" : "2500103 (25001) 2500104", + "lat" : 35.528535238628024, + "e_status_y" : 0, + "line_name_h" : "小田急小田原線" + }, + "selected" : false + }, { + "data" : { + "id" : "15999", + "source" : "5631", + "target" : "5632", + "line_name_k" : "オダキュウセン", + "is_bullet" : false, + "lon" : 139.43477539316441, + "company_name_k" : "オダキュウデンテツ", + "zoom" : 11, + "SUID" : 15999, + "company_type" : 2, + "company_name_h" : "小田急電鉄株式会社", + "interaction" : "25001", + "shared_interaction" : "25001", + "company_url" : "http://www.odakyu.jp/", + "line_name" : "小田急線", + "selected" : false, + "company_name" : "小田急電鉄", + "company_cd" : 15, + "name" : "2500102 (25001) 2500103", + "rr_cd" : 25, + "company_name_r" : "小田急", + "e_status_x" : 0, + "shared_name" : "2500102 (25001) 2500103", + "lat" : 35.528535238628024, + "e_status_y" : 0, + "line_name_h" : "小田急小田原線" + }, + "selected" : false + }, { + "data" : { + "id" : "15998", + "source" : "5630", + "target" : "5631", + "line_name_k" : "オダキュウセン", + "is_bullet" : false, + "lon" : 139.43477539316441, + "company_name_k" : "オダキュウデンテツ", + "zoom" : 11, + "SUID" : 15998, + "company_type" : 2, + "company_name_h" : "小田急電鉄株式会社", + "interaction" : "25001", + "shared_interaction" : "25001", + "company_url" : "http://www.odakyu.jp/", + "line_name" : "小田急線", + "selected" : false, + "company_name" : "小田急電鉄", + "company_cd" : 15, + "name" : "2500101 (25001) 2500102", + "rr_cd" : 25, + "company_name_r" : "小田急", + "e_status_x" : 0, + "shared_name" : "2500101 (25001) 2500102", + "lat" : 35.528535238628024, + "e_status_y" : 0, + "line_name_h" : "小田急小田原線" + }, + "selected" : false + }, { + "data" : { + "id" : "15809", + "source" : "5422", + "target" : "5423", + "line_name_k" : "セイブシンジュクセン", + "is_bullet" : false, + "lon" : 139.5308648735163, + "company_name_k" : "セイブテツドウ", + "zoom" : 11, + "SUID" : 15809, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22007", + "shared_interaction" : "22007", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武新宿線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200708 (22007) 2200709", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200708 (22007) 2200709", + "lat" : 35.776946871074955, + "e_status_y" : 0, + "line_name_h" : "西武新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "15808", + "source" : "5421", + "target" : "5422", + "line_name_k" : "セイブシンジュクセン", + "is_bullet" : false, + "lon" : 139.5308648735163, + "company_name_k" : "セイブテツドウ", + "zoom" : 11, + "SUID" : 15808, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22007", + "shared_interaction" : "22007", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武新宿線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200707 (22007) 2200708", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200707 (22007) 2200708", + "lat" : 35.776946871074955, + "e_status_y" : 0, + "line_name_h" : "西武新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "15811", + "source" : "5424", + "target" : "5425", + "line_name_k" : "セイブシンジュクセン", + "is_bullet" : false, + "lon" : 139.5308648735163, + "company_name_k" : "セイブテツドウ", + "zoom" : 11, + "SUID" : 15811, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22007", + "shared_interaction" : "22007", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武新宿線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200710 (22007) 2200711", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200710 (22007) 2200711", + "lat" : 35.776946871074955, + "e_status_y" : 0, + "line_name_h" : "西武新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "15810", + "source" : "5423", + "target" : "5424", + "line_name_k" : "セイブシンジュクセン", + "is_bullet" : false, + "lon" : 139.5308648735163, + "company_name_k" : "セイブテツドウ", + "zoom" : 11, + "SUID" : 15810, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22007", + "shared_interaction" : "22007", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武新宿線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200709 (22007) 2200710", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200709 (22007) 2200710", + "lat" : 35.776946871074955, + "e_status_y" : 0, + "line_name_h" : "西武新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "15813", + "source" : "5426", + "target" : "5427", + "line_name_k" : "セイブシンジュクセン", + "is_bullet" : false, + "lon" : 139.5308648735163, + "company_name_k" : "セイブテツドウ", + "zoom" : 11, + "SUID" : 15813, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22007", + "shared_interaction" : "22007", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武新宿線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200712 (22007) 2200713", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200712 (22007) 2200713", + "lat" : 35.776946871074955, + "e_status_y" : 0, + "line_name_h" : "西武新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "15812", + "source" : "5425", + "target" : "5426", + "line_name_k" : "セイブシンジュクセン", + "is_bullet" : false, + "lon" : 139.5308648735163, + "company_name_k" : "セイブテツドウ", + "zoom" : 11, + "SUID" : 15812, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22007", + "shared_interaction" : "22007", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武新宿線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200711 (22007) 2200712", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200711 (22007) 2200712", + "lat" : 35.776946871074955, + "e_status_y" : 0, + "line_name_h" : "西武新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "15815", + "source" : "5428", + "target" : "5429", + "line_name_k" : "セイブシンジュクセン", + "is_bullet" : false, + "lon" : 139.5308648735163, + "company_name_k" : "セイブテツドウ", + "zoom" : 11, + "SUID" : 15815, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22007", + "shared_interaction" : "22007", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武新宿線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200714 (22007) 2200715", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200714 (22007) 2200715", + "lat" : 35.776946871074955, + "e_status_y" : 0, + "line_name_h" : "西武新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "15814", + "source" : "5427", + "target" : "5428", + "line_name_k" : "セイブシンジュクセン", + "is_bullet" : false, + "lon" : 139.5308648735163, + "company_name_k" : "セイブテツドウ", + "zoom" : 11, + "SUID" : 15814, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22007", + "shared_interaction" : "22007", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武新宿線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200713 (22007) 2200714", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200713 (22007) 2200714", + "lat" : 35.776946871074955, + "e_status_y" : 0, + "line_name_h" : "西武新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "15803", + "source" : "5416", + "target" : "5417", + "line_name_k" : "セイブシンジュクセン", + "is_bullet" : false, + "lon" : 139.5308648735163, + "company_name_k" : "セイブテツドウ", + "zoom" : 11, + "SUID" : 15803, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22007", + "shared_interaction" : "22007", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武新宿線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200702 (22007) 2200703", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200702 (22007) 2200703", + "lat" : 35.776946871074955, + "e_status_y" : 0, + "line_name_h" : "西武新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "15802", + "source" : "5415", + "target" : "5416", + "line_name_k" : "セイブシンジュクセン", + "is_bullet" : false, + "lon" : 139.5308648735163, + "company_name_k" : "セイブテツドウ", + "zoom" : 11, + "SUID" : 15802, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22007", + "shared_interaction" : "22007", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武新宿線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200701 (22007) 2200702", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200701 (22007) 2200702", + "lat" : 35.776946871074955, + "e_status_y" : 0, + "line_name_h" : "西武新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "15805", + "source" : "5418", + "target" : "5419", + "line_name_k" : "セイブシンジュクセン", + "is_bullet" : false, + "lon" : 139.5308648735163, + "company_name_k" : "セイブテツドウ", + "zoom" : 11, + "SUID" : 15805, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22007", + "shared_interaction" : "22007", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武新宿線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200704 (22007) 2200705", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200704 (22007) 2200705", + "lat" : 35.776946871074955, + "e_status_y" : 0, + "line_name_h" : "西武新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "15804", + "source" : "5417", + "target" : "5418", + "line_name_k" : "セイブシンジュクセン", + "is_bullet" : false, + "lon" : 139.5308648735163, + "company_name_k" : "セイブテツドウ", + "zoom" : 11, + "SUID" : 15804, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22007", + "shared_interaction" : "22007", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武新宿線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200703 (22007) 2200704", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200703 (22007) 2200704", + "lat" : 35.776946871074955, + "e_status_y" : 0, + "line_name_h" : "西武新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "15807", + "source" : "5420", + "target" : "5421", + "line_name_k" : "セイブシンジュクセン", + "is_bullet" : false, + "lon" : 139.5308648735163, + "company_name_k" : "セイブテツドウ", + "zoom" : 11, + "SUID" : 15807, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22007", + "shared_interaction" : "22007", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武新宿線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200706 (22007) 2200707", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200706 (22007) 2200707", + "lat" : 35.776946871074955, + "e_status_y" : 0, + "line_name_h" : "西武新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "15806", + "source" : "5419", + "target" : "5420", + "line_name_k" : "セイブシンジュクセン", + "is_bullet" : false, + "lon" : 139.5308648735163, + "company_name_k" : "セイブテツドウ", + "zoom" : 11, + "SUID" : 15806, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22007", + "shared_interaction" : "22007", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武新宿線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200705 (22007) 2200706", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200705 (22007) 2200706", + "lat" : 35.776946871074955, + "e_status_y" : 0, + "line_name_h" : "西武新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "15796", + "source" : "5405", + "target" : "5406", + "line_name_k" : "セイブユウラクチョウセン", + "is_bullet" : false, + "lon" : 139.6675949841308, + "company_name_k" : "セイブテツドウ", + "zoom" : 14, + "SUID" : 15796, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22003", + "shared_interaction" : "22003", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武有楽町線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200302 (22003) 2200303", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200302 (22003) 2200303", + "lat" : 35.74040400298963, + "e_status_y" : 0, + "line_name_h" : "西武有楽町線" + }, + "selected" : false + }, { + "data" : { + "id" : "15797", + "source" : "5407", + "target" : "5408", + "line_name_k" : "セイブトシマセン", + "is_bullet" : false, + "lon" : 139.65151682275393, + "company_name_k" : "セイブテツドウ", + "zoom" : 15, + "SUID" : 15797, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22004", + "shared_interaction" : "22004", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武豊島線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200401 (22004) 2200402", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200401 (22004) 2200402", + "lat" : 35.740043166697504, + "e_status_y" : 0, + "line_name_h" : "西武豊島線" + }, + "selected" : false + }, { + "data" : { + "id" : "15795", + "source" : "5404", + "target" : "5405", + "line_name_k" : "セイブユウラクチョウセン", + "is_bullet" : false, + "lon" : 139.6675949841308, + "company_name_k" : "セイブテツドウ", + "zoom" : 14, + "SUID" : 15795, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22003", + "shared_interaction" : "22003", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武有楽町線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200301 (22003) 2200302", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200301 (22003) 2200302", + "lat" : 35.74040400298963, + "e_status_y" : 0, + "line_name_h" : "西武有楽町線" + }, + "selected" : false + }, { + "data" : { + "id" : "15840", + "source" : "5456", + "target" : "5457", + "line_name_k" : "セイブコクブンジセン", + "is_bullet" : false, + "lon" : 139.46774104550786, + "company_name_k" : "セイブテツドウ", + "zoom" : 13, + "SUID" : 15840, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22010", + "shared_interaction" : "22010", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武国分寺線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2201003 (22010) 2201004", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2201003 (22010) 2201004", + "lat" : 35.73062820396875, + "e_status_y" : 0, + "line_name_h" : "西武国分寺線" + }, + "selected" : false + }, { + "data" : { + "id" : "15839", + "source" : "5455", + "target" : "5456", + "line_name_k" : "セイブコクブンジセン", + "is_bullet" : false, + "lon" : 139.46774104550786, + "company_name_k" : "セイブテツドウ", + "zoom" : 13, + "SUID" : 15839, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22010", + "shared_interaction" : "22010", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武国分寺線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2201002 (22010) 2201003", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2201002 (22010) 2201003", + "lat" : 35.73062820396875, + "e_status_y" : 0, + "line_name_h" : "西武国分寺線" + }, + "selected" : false + }, { + "data" : { + "id" : "15838", + "source" : "5454", + "target" : "5455", + "line_name_k" : "セイブコクブンジセン", + "is_bullet" : false, + "lon" : 139.46774104550786, + "company_name_k" : "セイブテツドウ", + "zoom" : 13, + "SUID" : 15838, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22010", + "shared_interaction" : "22010", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武国分寺線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2201001 (22010) 2201002", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2201001 (22010) 2201002", + "lat" : 35.73062820396875, + "e_status_y" : 0, + "line_name_h" : "西武国分寺線" + }, + "selected" : false + }, { + "data" : { + "id" : "15843", + "source" : "5460", + "target" : "5461", + "line_name_k" : "セイブタマコセン", + "is_bullet" : false, + "lon" : 139.46850918519954, + "company_name_k" : "セイブテツドウ", + "zoom" : 13, + "SUID" : 15843, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22011", + "shared_interaction" : "22011", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武多摩湖線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2201102 (22011) 2201103", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2201102 (22011) 2201103", + "lat" : 35.741048131945206, + "e_status_y" : 0, + "line_name_h" : "西武多摩湖線" + }, + "selected" : false + }, { + "data" : { + "id" : "15842", + "source" : "5459", + "target" : "5460", + "line_name_k" : "セイブタマコセン", + "is_bullet" : false, + "lon" : 139.46850918519954, + "company_name_k" : "セイブテツドウ", + "zoom" : 13, + "SUID" : 15842, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22011", + "shared_interaction" : "22011", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武多摩湖線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2201101 (22011) 2201102", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2201101 (22011) 2201102", + "lat" : 35.741048131945206, + "e_status_y" : 0, + "line_name_h" : "西武多摩湖線" + }, + "selected" : false + }, { + "data" : { + "id" : "15841", + "source" : "5457", + "target" : "5458", + "line_name_k" : "セイブコクブンジセン", + "is_bullet" : false, + "lon" : 139.46774104550786, + "company_name_k" : "セイブテツドウ", + "zoom" : 13, + "SUID" : 15841, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22010", + "shared_interaction" : "22010", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武国分寺線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2201004 (22010) 2201005", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2201004 (22010) 2201005", + "lat" : 35.73062820396875, + "e_status_y" : 0, + "line_name_h" : "西武国分寺線" + }, + "selected" : false + }, { + "data" : { + "id" : "15834", + "source" : "5448", + "target" : "5449", + "line_name_k" : "セイブハイジマセン", + "is_bullet" : false, + "lon" : 139.41313556738282, + "company_name_k" : "セイブテツドウ", + "zoom" : 12, + "SUID" : 15834, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22008", + "shared_interaction" : "22008", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武拝島線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200805 (22008) 2200806", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200805 (22008) 2200806", + "lat" : 35.73286470476111, + "e_status_y" : 0, + "line_name_h" : "西武拝島線" + }, + "selected" : false + }, { + "data" : { + "id" : "15833", + "source" : "5447", + "target" : "5448", + "line_name_k" : "セイブハイジマセン", + "is_bullet" : false, + "lon" : 139.41313556738282, + "company_name_k" : "セイブテツドウ", + "zoom" : 12, + "SUID" : 15833, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22008", + "shared_interaction" : "22008", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武拝島線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200804 (22008) 2200805", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200804 (22008) 2200805", + "lat" : 35.73286470476111, + "e_status_y" : 0, + "line_name_h" : "西武拝島線" + }, + "selected" : false + }, { + "data" : { + "id" : "15832", + "source" : "5446", + "target" : "5447", + "line_name_k" : "セイブハイジマセン", + "is_bullet" : false, + "lon" : 139.41313556738282, + "company_name_k" : "セイブテツドウ", + "zoom" : 12, + "SUID" : 15832, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22008", + "shared_interaction" : "22008", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武拝島線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200803 (22008) 2200804", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200803 (22008) 2200804", + "lat" : 35.73286470476111, + "e_status_y" : 0, + "line_name_h" : "西武拝島線" + }, + "selected" : false + }, { + "data" : { + "id" : "15831", + "source" : "5445", + "target" : "5446", + "line_name_k" : "セイブハイジマセン", + "is_bullet" : false, + "lon" : 139.41313556738282, + "company_name_k" : "セイブテツドウ", + "zoom" : 12, + "SUID" : 15831, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22008", + "shared_interaction" : "22008", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武拝島線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200802 (22008) 2200803", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200802 (22008) 2200803", + "lat" : 35.73286470476111, + "e_status_y" : 0, + "line_name_h" : "西武拝島線" + }, + "selected" : false + }, { + "data" : { + "id" : "15837", + "source" : "5452", + "target" : "5453", + "line_name_k" : "セイブセイブエンセン", + "is_bullet" : false, + "lon" : 139.45737150000002, + "company_name_k" : "セイブテツドウ", + "zoom" : 14, + "SUID" : 15837, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22009", + "shared_interaction" : "22009", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武西武園線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200901 (22009) 2200902", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200901 (22009) 2200902", + "lat" : 35.764150582754176, + "e_status_y" : 0, + "line_name_h" : "西武西武園線" + }, + "selected" : false + }, { + "data" : { + "id" : "15836", + "source" : "5450", + "target" : "5451", + "line_name_k" : "セイブハイジマセン", + "is_bullet" : false, + "lon" : 139.41313556738282, + "company_name_k" : "セイブテツドウ", + "zoom" : 12, + "SUID" : 15836, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22008", + "shared_interaction" : "22008", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武拝島線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200807 (22008) 2200808", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200807 (22008) 2200808", + "lat" : 35.73286470476111, + "e_status_y" : 0, + "line_name_h" : "西武拝島線" + }, + "selected" : false + }, { + "data" : { + "id" : "15835", + "source" : "5449", + "target" : "5450", + "line_name_k" : "セイブハイジマセン", + "is_bullet" : false, + "lon" : 139.41313556738282, + "company_name_k" : "セイブテツドウ", + "zoom" : 12, + "SUID" : 15835, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22008", + "shared_interaction" : "22008", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武拝島線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200806 (22008) 2200807", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200806 (22008) 2200807", + "lat" : 35.73286470476111, + "e_status_y" : 0, + "line_name_h" : "西武拝島線" + }, + "selected" : false + }, { + "data" : { + "id" : "15830", + "source" : "5444", + "target" : "5445", + "line_name_k" : "セイブハイジマセン", + "is_bullet" : false, + "lon" : 139.41313556738282, + "company_name_k" : "セイブテツドウ", + "zoom" : 12, + "SUID" : 15830, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22008", + "shared_interaction" : "22008", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武拝島線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200801 (22008) 2200802", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200801 (22008) 2200802", + "lat" : 35.73286470476111, + "e_status_y" : 0, + "line_name_h" : "西武拝島線" + }, + "selected" : false + }, { + "data" : { + "id" : "15818", + "source" : "5431", + "target" : "5432", + "line_name_k" : "セイブシンジュクセン", + "is_bullet" : false, + "lon" : 139.5308648735163, + "company_name_k" : "セイブテツドウ", + "zoom" : 11, + "SUID" : 15818, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22007", + "shared_interaction" : "22007", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武新宿線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200717 (22007) 2200718", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200717 (22007) 2200718", + "lat" : 35.776946871074955, + "e_status_y" : 0, + "line_name_h" : "西武新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "15819", + "source" : "5432", + "target" : "5433", + "line_name_k" : "セイブシンジュクセン", + "is_bullet" : false, + "lon" : 139.5308648735163, + "company_name_k" : "セイブテツドウ", + "zoom" : 11, + "SUID" : 15819, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22007", + "shared_interaction" : "22007", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武新宿線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200718 (22007) 2200719", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200718 (22007) 2200719", + "lat" : 35.776946871074955, + "e_status_y" : 0, + "line_name_h" : "西武新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "15816", + "source" : "5429", + "target" : "5430", + "line_name_k" : "セイブシンジュクセン", + "is_bullet" : false, + "lon" : 139.5308648735163, + "company_name_k" : "セイブテツドウ", + "zoom" : 11, + "SUID" : 15816, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22007", + "shared_interaction" : "22007", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武新宿線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200715 (22007) 2200716", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200715 (22007) 2200716", + "lat" : 35.776946871074955, + "e_status_y" : 0, + "line_name_h" : "西武新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "15817", + "source" : "5430", + "target" : "5431", + "line_name_k" : "セイブシンジュクセン", + "is_bullet" : false, + "lon" : 139.5308648735163, + "company_name_k" : "セイブテツドウ", + "zoom" : 11, + "SUID" : 15817, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22007", + "shared_interaction" : "22007", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武新宿線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200716 (22007) 2200717", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200716 (22007) 2200717", + "lat" : 35.776946871074955, + "e_status_y" : 0, + "line_name_h" : "西武新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "15820", + "source" : "5433", + "target" : "5434", + "line_name_k" : "セイブシンジュクセン", + "is_bullet" : false, + "lon" : 139.5308648735163, + "company_name_k" : "セイブテツドウ", + "zoom" : 11, + "SUID" : 15820, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22007", + "shared_interaction" : "22007", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武新宿線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200719 (22007) 2200720", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200719 (22007) 2200720", + "lat" : 35.776946871074955, + "e_status_y" : 0, + "line_name_h" : "西武新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "15821", + "source" : "5434", + "target" : "5435", + "line_name_k" : "セイブシンジュクセン", + "is_bullet" : false, + "lon" : 139.5308648735163, + "company_name_k" : "セイブテツドウ", + "zoom" : 11, + "SUID" : 15821, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22007", + "shared_interaction" : "22007", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武新宿線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2200720 (22007) 2200721", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2200720 (22007) 2200721", + "lat" : 35.776946871074955, + "e_status_y" : 0, + "line_name_h" : "西武新宿線" + }, + "selected" : false + }, { + "data" : { + "id" : "15863", + "source" : "5482", + "target" : "5483", + "line_name_k" : "ケイセイホンセン", + "is_bullet" : false, + "lon" : 140.07226251112684, + "company_name_k" : "ケイセイデンテツ", + "zoom" : 10, + "SUID" : 15863, + "company_type" : 2, + "company_name_h" : "京成電鉄株式会社", + "interaction" : "23001", + "shared_interaction" : "23001", + "company_url" : "http://www.keisei.co.jp/", + "line_name" : "京成本線", + "selected" : false, + "company_name" : "京成電鉄", + "company_cd" : 13, + "name" : "2300111 (23001) 2300112", + "rr_cd" : 23, + "company_name_r" : "京成", + "e_status_x" : 0, + "shared_name" : "2300111 (23001) 2300112", + "lat" : 35.726288869528844, + "e_status_y" : 0, + "line_name_h" : "京成本線" + }, + "selected" : false + }, { + "data" : { + "id" : "15862", + "source" : "5481", + "target" : "5482", + "line_name_k" : "ケイセイホンセン", + "is_bullet" : false, + "lon" : 140.07226251112684, + "company_name_k" : "ケイセイデンテツ", + "zoom" : 10, + "SUID" : 15862, + "company_type" : 2, + "company_name_h" : "京成電鉄株式会社", + "interaction" : "23001", + "shared_interaction" : "23001", + "company_url" : "http://www.keisei.co.jp/", + "line_name" : "京成本線", + "selected" : false, + "company_name" : "京成電鉄", + "company_cd" : 13, + "name" : "2300110 (23001) 2300111", + "rr_cd" : 23, + "company_name_r" : "京成", + "e_status_x" : 0, + "shared_name" : "2300110 (23001) 2300111", + "lat" : 35.726288869528844, + "e_status_y" : 0, + "line_name_h" : "京成本線" + }, + "selected" : false + }, { + "data" : { + "id" : "15859", + "source" : "5478", + "target" : "5479", + "line_name_k" : "ケイセイホンセン", + "is_bullet" : false, + "lon" : 140.07226251112684, + "company_name_k" : "ケイセイデンテツ", + "zoom" : 10, + "SUID" : 15859, + "company_type" : 2, + "company_name_h" : "京成電鉄株式会社", + "interaction" : "23001", + "shared_interaction" : "23001", + "company_url" : "http://www.keisei.co.jp/", + "line_name" : "京成本線", + "selected" : false, + "company_name" : "京成電鉄", + "company_cd" : 13, + "name" : "2300107 (23001) 2300108", + "rr_cd" : 23, + "company_name_r" : "京成", + "e_status_x" : 0, + "shared_name" : "2300107 (23001) 2300108", + "lat" : 35.726288869528844, + "e_status_y" : 0, + "line_name_h" : "京成本線" + }, + "selected" : false + }, { + "data" : { + "id" : "15858", + "source" : "5477", + "target" : "5478", + "line_name_k" : "ケイセイホンセン", + "is_bullet" : false, + "lon" : 140.07226251112684, + "company_name_k" : "ケイセイデンテツ", + "zoom" : 10, + "SUID" : 15858, + "company_type" : 2, + "company_name_h" : "京成電鉄株式会社", + "interaction" : "23001", + "shared_interaction" : "23001", + "company_url" : "http://www.keisei.co.jp/", + "line_name" : "京成本線", + "selected" : false, + "company_name" : "京成電鉄", + "company_cd" : 13, + "name" : "2300106 (23001) 2300107", + "rr_cd" : 23, + "company_name_r" : "京成", + "e_status_x" : 0, + "shared_name" : "2300106 (23001) 2300107", + "lat" : 35.726288869528844, + "e_status_y" : 0, + "line_name_h" : "京成本線" + }, + "selected" : false + }, { + "data" : { + "id" : "15861", + "source" : "5480", + "target" : "5481", + "line_name_k" : "ケイセイホンセン", + "is_bullet" : false, + "lon" : 140.07226251112684, + "company_name_k" : "ケイセイデンテツ", + "zoom" : 10, + "SUID" : 15861, + "company_type" : 2, + "company_name_h" : "京成電鉄株式会社", + "interaction" : "23001", + "shared_interaction" : "23001", + "company_url" : "http://www.keisei.co.jp/", + "line_name" : "京成本線", + "selected" : false, + "company_name" : "京成電鉄", + "company_cd" : 13, + "name" : "2300109 (23001) 2300110", + "rr_cd" : 23, + "company_name_r" : "京成", + "e_status_x" : 0, + "shared_name" : "2300109 (23001) 2300110", + "lat" : 35.726288869528844, + "e_status_y" : 0, + "line_name_h" : "京成本線" + }, + "selected" : false + }, { + "data" : { + "id" : "15860", + "source" : "5479", + "target" : "5480", + "line_name_k" : "ケイセイホンセン", + "is_bullet" : false, + "lon" : 140.07226251112684, + "company_name_k" : "ケイセイデンテツ", + "zoom" : 10, + "SUID" : 15860, + "company_type" : 2, + "company_name_h" : "京成電鉄株式会社", + "interaction" : "23001", + "shared_interaction" : "23001", + "company_url" : "http://www.keisei.co.jp/", + "line_name" : "京成本線", + "selected" : false, + "company_name" : "京成電鉄", + "company_cd" : 13, + "name" : "2300108 (23001) 2300109", + "rr_cd" : 23, + "company_name_r" : "京成", + "e_status_x" : 0, + "shared_name" : "2300108 (23001) 2300109", + "lat" : 35.726288869528844, + "e_status_y" : 0, + "line_name_h" : "京成本線" + }, + "selected" : false + }, { + "data" : { + "id" : "15854", + "source" : "5473", + "target" : "5474", + "line_name_k" : "ケイセイホンセン", + "is_bullet" : false, + "lon" : 140.07226251112684, + "company_name_k" : "ケイセイデンテツ", + "zoom" : 10, + "SUID" : 15854, + "company_type" : 2, + "company_name_h" : "京成電鉄株式会社", + "interaction" : "23001", + "shared_interaction" : "23001", + "company_url" : "http://www.keisei.co.jp/", + "line_name" : "京成本線", + "selected" : false, + "company_name" : "京成電鉄", + "company_cd" : 13, + "name" : "2300102 (23001) 2300103", + "rr_cd" : 23, + "company_name_r" : "京成", + "e_status_x" : 0, + "shared_name" : "2300102 (23001) 2300103", + "lat" : 35.726288869528844, + "e_status_y" : 0, + "line_name_h" : "京成本線" + }, + "selected" : false + }, { + "data" : { + "id" : "15855", + "source" : "5474", + "target" : "5475", + "line_name_k" : "ケイセイホンセン", + "is_bullet" : false, + "lon" : 140.07226251112684, + "company_name_k" : "ケイセイデンテツ", + "zoom" : 10, + "SUID" : 15855, + "company_type" : 2, + "company_name_h" : "京成電鉄株式会社", + "interaction" : "23001", + "shared_interaction" : "23001", + "company_url" : "http://www.keisei.co.jp/", + "line_name" : "京成本線", + "selected" : false, + "company_name" : "京成電鉄", + "company_cd" : 13, + "name" : "2300103 (23001) 2300104", + "rr_cd" : 23, + "company_name_r" : "京成", + "e_status_x" : 0, + "shared_name" : "2300103 (23001) 2300104", + "lat" : 35.726288869528844, + "e_status_y" : 0, + "line_name_h" : "京成本線" + }, + "selected" : false + }, { + "data" : { + "id" : "15856", + "source" : "5475", + "target" : "5476", + "line_name_k" : "ケイセイホンセン", + "is_bullet" : false, + "lon" : 140.07226251112684, + "company_name_k" : "ケイセイデンテツ", + "zoom" : 10, + "SUID" : 15856, + "company_type" : 2, + "company_name_h" : "京成電鉄株式会社", + "interaction" : "23001", + "shared_interaction" : "23001", + "company_url" : "http://www.keisei.co.jp/", + "line_name" : "京成本線", + "selected" : false, + "company_name" : "京成電鉄", + "company_cd" : 13, + "name" : "2300104 (23001) 2300105", + "rr_cd" : 23, + "company_name_r" : "京成", + "e_status_x" : 0, + "shared_name" : "2300104 (23001) 2300105", + "lat" : 35.726288869528844, + "e_status_y" : 0, + "line_name_h" : "京成本線" + }, + "selected" : false + }, { + "data" : { + "id" : "15857", + "source" : "5476", + "target" : "5477", + "line_name_k" : "ケイセイホンセン", + "is_bullet" : false, + "lon" : 140.07226251112684, + "company_name_k" : "ケイセイデンテツ", + "zoom" : 10, + "SUID" : 15857, + "company_type" : 2, + "company_name_h" : "京成電鉄株式会社", + "interaction" : "23001", + "shared_interaction" : "23001", + "company_url" : "http://www.keisei.co.jp/", + "line_name" : "京成本線", + "selected" : false, + "company_name" : "京成電鉄", + "company_cd" : 13, + "name" : "2300105 (23001) 2300106", + "rr_cd" : 23, + "company_name_r" : "京成", + "e_status_x" : 0, + "shared_name" : "2300105 (23001) 2300106", + "lat" : 35.726288869528844, + "e_status_y" : 0, + "line_name_h" : "京成本線" + }, + "selected" : false + }, { + "data" : { + "id" : "15851", + "source" : "5469", + "target" : "5470", + "line_name_k" : "セイブタマガワセン", + "is_bullet" : false, + "lon" : 139.51353168782222, + "company_name_k" : "セイブテツドウ", + "zoom" : 13, + "SUID" : 15851, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22012", + "shared_interaction" : "22012", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武多摩川線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2201204 (22012) 2201205", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2201204 (22012) 2201205", + "lat" : 35.67702828078765, + "e_status_y" : 0, + "line_name_h" : "西武多摩川線" + }, + "selected" : false + }, { + "data" : { + "id" : "15852", + "source" : "5470", + "target" : "5471", + "line_name_k" : "セイブタマガワセン", + "is_bullet" : false, + "lon" : 139.51353168782222, + "company_name_k" : "セイブテツドウ", + "zoom" : 13, + "SUID" : 15852, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22012", + "shared_interaction" : "22012", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武多摩川線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2201205 (22012) 2201206", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2201205 (22012) 2201206", + "lat" : 35.67702828078765, + "e_status_y" : 0, + "line_name_h" : "西武多摩川線" + }, + "selected" : false + }, { + "data" : { + "id" : "15853", + "source" : "5472", + "target" : "5473", + "line_name_k" : "ケイセイホンセン", + "is_bullet" : false, + "lon" : 140.07226251112684, + "company_name_k" : "ケイセイデンテツ", + "zoom" : 10, + "SUID" : 15853, + "company_type" : 2, + "company_name_h" : "京成電鉄株式会社", + "interaction" : "23001", + "shared_interaction" : "23001", + "company_url" : "http://www.keisei.co.jp/", + "line_name" : "京成本線", + "selected" : false, + "company_name" : "京成電鉄", + "company_cd" : 13, + "name" : "2300101 (23001) 2300102", + "rr_cd" : 23, + "company_name_r" : "京成", + "e_status_x" : 0, + "shared_name" : "2300101 (23001) 2300102", + "lat" : 35.726288869528844, + "e_status_y" : 0, + "line_name_h" : "京成本線" + }, + "selected" : false + }, { + "data" : { + "id" : "15848", + "source" : "5466", + "target" : "5467", + "line_name_k" : "セイブタマガワセン", + "is_bullet" : false, + "lon" : 139.51353168782222, + "company_name_k" : "セイブテツドウ", + "zoom" : 13, + "SUID" : 15848, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22012", + "shared_interaction" : "22012", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武多摩川線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2201201 (22012) 2201202", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2201201 (22012) 2201202", + "lat" : 35.67702828078765, + "e_status_y" : 0, + "line_name_h" : "西武多摩川線" + }, + "selected" : false + }, { + "data" : { + "id" : "15849", + "source" : "5467", + "target" : "5468", + "line_name_k" : "セイブタマガワセン", + "is_bullet" : false, + "lon" : 139.51353168782222, + "company_name_k" : "セイブテツドウ", + "zoom" : 13, + "SUID" : 15849, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22012", + "shared_interaction" : "22012", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武多摩川線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2201202 (22012) 2201203", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2201202 (22012) 2201203", + "lat" : 35.67702828078765, + "e_status_y" : 0, + "line_name_h" : "西武多摩川線" + }, + "selected" : false + }, { + "data" : { + "id" : "15850", + "source" : "5468", + "target" : "5469", + "line_name_k" : "セイブタマガワセン", + "is_bullet" : false, + "lon" : 139.51353168782222, + "company_name_k" : "セイブテツドウ", + "zoom" : 13, + "SUID" : 15850, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22012", + "shared_interaction" : "22012", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武多摩川線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2201203 (22012) 2201204", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2201203 (22012) 2201204", + "lat" : 35.67702828078765, + "e_status_y" : 0, + "line_name_h" : "西武多摩川線" + }, + "selected" : false + }, { + "data" : { + "id" : "15844", + "source" : "5461", + "target" : "5462", + "line_name_k" : "セイブタマコセン", + "is_bullet" : false, + "lon" : 139.46850918519954, + "company_name_k" : "セイブテツドウ", + "zoom" : 13, + "SUID" : 15844, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22011", + "shared_interaction" : "22011", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武多摩湖線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2201103 (22011) 2201105", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2201103 (22011) 2201105", + "lat" : 35.741048131945206, + "e_status_y" : 0, + "line_name_h" : "西武多摩湖線" + }, + "selected" : false + }, { + "data" : { + "id" : "15845", + "source" : "5462", + "target" : "5463", + "line_name_k" : "セイブタマコセン", + "is_bullet" : false, + "lon" : 139.46850918519954, + "company_name_k" : "セイブテツドウ", + "zoom" : 13, + "SUID" : 15845, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22011", + "shared_interaction" : "22011", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武多摩湖線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2201105 (22011) 2201106", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2201105 (22011) 2201106", + "lat" : 35.741048131945206, + "e_status_y" : 0, + "line_name_h" : "西武多摩湖線" + }, + "selected" : false + }, { + "data" : { + "id" : "15846", + "source" : "5463", + "target" : "5464", + "line_name_k" : "セイブタマコセン", + "is_bullet" : false, + "lon" : 139.46850918519954, + "company_name_k" : "セイブテツドウ", + "zoom" : 13, + "SUID" : 15846, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22011", + "shared_interaction" : "22011", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武多摩湖線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2201106 (22011) 2201107", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2201106 (22011) 2201107", + "lat" : 35.741048131945206, + "e_status_y" : 0, + "line_name_h" : "西武多摩湖線" + }, + "selected" : false + }, { + "data" : { + "id" : "15847", + "source" : "5464", + "target" : "5465", + "line_name_k" : "セイブタマコセン", + "is_bullet" : false, + "lon" : 139.46850918519954, + "company_name_k" : "セイブテツドウ", + "zoom" : 13, + "SUID" : 15847, + "company_type" : 2, + "company_name_h" : "西武鉄道株式会社", + "interaction" : "22011", + "shared_interaction" : "22011", + "company_url" : "http://www.seibu-group.co.jp/railways/", + "line_name" : "西武多摩湖線", + "selected" : false, + "company_name" : "西武鉄道", + "company_cd" : 12, + "name" : "2201107 (22011) 2201108", + "rr_cd" : 22, + "company_name_r" : "西武", + "e_status_x" : 0, + "shared_name" : "2201107 (22011) 2201108", + "lat" : 35.741048131945206, + "e_status_y" : 0, + "line_name_h" : "西武多摩湖線" + }, + "selected" : false + }, { + "data" : { + "id" : "15902", + "source" : "5523", + "target" : "5524", + "line_name_k" : "ケイセイカナマチセン", + "is_bullet" : false, + "lon" : 139.86858506876956, + "company_name_k" : "ケイセイデンテツ", + "zoom" : 14, + "SUID" : 15902, + "company_type" : 2, + "company_name_h" : "京成電鉄株式会社", + "interaction" : "23003", + "shared_interaction" : "23003", + "company_url" : "http://www.keisei.co.jp/", + "line_name" : "京成金町線", + "selected" : false, + "company_name" : "京成電鉄", + "company_cd" : 13, + "name" : "2300302 (23003) 2300303", + "rr_cd" : 23, + "company_name_r" : "京成", + "e_status_x" : 0, + "shared_name" : "2300302 (23003) 2300303", + "lat" : 35.76122200631621, + "e_status_y" : 0, + "line_name_h" : "京成金町線" + }, + "selected" : false + }, { + "data" : { + "id" : "15901", + "source" : "5522", + "target" : "5523", + "line_name_k" : "ケイセイカナマチセン", + "is_bullet" : false, + "lon" : 139.86858506876956, + "company_name_k" : "ケイセイデンテツ", + "zoom" : 14, + "SUID" : 15901, + "company_type" : 2, + "company_name_h" : "京成電鉄株式会社", + "interaction" : "23003", + "shared_interaction" : "23003", + "company_url" : "http://www.keisei.co.jp/", + "line_name" : "京成金町線", + "selected" : false, + "company_name" : "京成電鉄", + "company_cd" : 13, + "name" : "2300301 (23003) 2300302", + "rr_cd" : 23, + "company_name_r" : "京成", + "e_status_x" : 0, + "shared_name" : "2300301 (23003) 2300302", + "lat" : 35.76122200631621, + "e_status_y" : 0, + "line_name_h" : "京成金町線" + }, + "selected" : false + }, { + "data" : { + "id" : "15900", + "source" : "5520", + "target" : "5521", + "line_name_k" : "ケイセイオシアゲセン", + "is_bullet" : false, + "lon" : 139.84176579896905, + "company_name_k" : "ケイセイデンテツ", + "zoom" : 13, + "SUID" : 15900, + "company_type" : 2, + "company_name_h" : "京成電鉄株式会社", + "interaction" : "23002", + "shared_interaction" : "23002", + "company_url" : "http://www.keisei.co.jp/", + "line_name" : "京成押上線", + "selected" : false, + "company_name" : "京成電鉄", + "company_cd" : 13, + "name" : "2300206 (23002) 2300207", + "rr_cd" : 23, + "company_name_r" : "京成", + "e_status_x" : 0, + "shared_name" : "2300206 (23002) 2300207", + "lat" : 35.737000349715125, + "e_status_y" : 0, + "line_name_h" : "京成押上線" + }, + "selected" : false + }, { + "data" : { + "id" : "15899", + "source" : "5519", + "target" : "5520", + "line_name_k" : "ケイセイオシアゲセン", + "is_bullet" : false, + "lon" : 139.84176579896905, + "company_name_k" : "ケイセイデンテツ", + "zoom" : 13, + "SUID" : 15899, + "company_type" : 2, + "company_name_h" : "京成電鉄株式会社", + "interaction" : "23002", + "shared_interaction" : "23002", + "company_url" : "http://www.keisei.co.jp/", + "line_name" : "京成押上線", + "selected" : false, + "company_name" : "京成電鉄", + "company_cd" : 13, + "name" : "2300205 (23002) 2300206", + "rr_cd" : 23, + "company_name_r" : "京成", + "e_status_x" : 0, + "shared_name" : "2300205 (23002) 2300206", + "lat" : 35.737000349715125, + "e_status_y" : 0, + "line_name_h" : "京成押上線" + }, + "selected" : false + }, { + "data" : { + "id" : "15898", + "source" : "5518", + "target" : "5519", + "line_name_k" : "ケイセイオシアゲセン", + "is_bullet" : false, + "lon" : 139.84176579896905, + "company_name_k" : "ケイセイデンテツ", + "zoom" : 13, + "SUID" : 15898, + "company_type" : 2, + "company_name_h" : "京成電鉄株式会社", + "interaction" : "23002", + "shared_interaction" : "23002", + "company_url" : "http://www.keisei.co.jp/", + "line_name" : "京成押上線", + "selected" : false, + "company_name" : "京成電鉄", + "company_cd" : 13, + "name" : "2300204 (23002) 2300205", + "rr_cd" : 23, + "company_name_r" : "京成", + "e_status_x" : 0, + "shared_name" : "2300204 (23002) 2300205", + "lat" : 35.737000349715125, + "e_status_y" : 0, + "line_name_h" : "京成押上線" + }, + "selected" : false + }, { + "data" : { + "id" : "15897", + "source" : "5517", + "target" : "5518", + "line_name_k" : "ケイセイオシアゲセン", + "is_bullet" : false, + "lon" : 139.84176579896905, + "company_name_k" : "ケイセイデンテツ", + "zoom" : 13, + "SUID" : 15897, + "company_type" : 2, + "company_name_h" : "京成電鉄株式会社", + "interaction" : "23002", + "shared_interaction" : "23002", + "company_url" : "http://www.keisei.co.jp/", + "line_name" : "京成押上線", + "selected" : false, + "company_name" : "京成電鉄", + "company_cd" : 13, + "name" : "2300203 (23002) 2300204", + "rr_cd" : 23, + "company_name_r" : "京成", + "e_status_x" : 0, + "shared_name" : "2300203 (23002) 2300204", + "lat" : 35.737000349715125, + "e_status_y" : 0, + "line_name_h" : "京成押上線" + }, + "selected" : false + }, { + "data" : { + "id" : "15896", + "source" : "5516", + "target" : "5517", + "line_name_k" : "ケイセイオシアゲセン", + "is_bullet" : false, + "lon" : 139.84176579896905, + "company_name_k" : "ケイセイデンテツ", + "zoom" : 13, + "SUID" : 15896, + "company_type" : 2, + "company_name_h" : "京成電鉄株式会社", + "interaction" : "23002", + "shared_interaction" : "23002", + "company_url" : "http://www.keisei.co.jp/", + "line_name" : "京成押上線", + "selected" : false, + "company_name" : "京成電鉄", + "company_cd" : 13, + "name" : "2300202 (23002) 2300203", + "rr_cd" : 23, + "company_name_r" : "京成", + "e_status_x" : 0, + "shared_name" : "2300202 (23002) 2300203", + "lat" : 35.737000349715125, + "e_status_y" : 0, + "line_name_h" : "京成押上線" + }, + "selected" : false + }, { + "data" : { + "id" : "15895", + "source" : "5515", + "target" : "5516", + "line_name_k" : "ケイセイオシアゲセン", + "is_bullet" : false, + "lon" : 139.84176579896905, + "company_name_k" : "ケイセイデンテツ", + "zoom" : 13, + "SUID" : 15895, + "company_type" : 2, + "company_name_h" : "京成電鉄株式会社", + "interaction" : "23002", + "shared_interaction" : "23002", + "company_url" : "http://www.keisei.co.jp/", + "line_name" : "京成押上線", + "selected" : false, + "company_name" : "京成電鉄", + "company_cd" : 13, + "name" : "2300201 (23002) 2300202", + "rr_cd" : 23, + "company_name_r" : "京成", + "e_status_x" : 0, + "shared_name" : "2300201 (23002) 2300202", + "lat" : 35.737000349715125, + "e_status_y" : 0, + "line_name_h" : "京成押上線" + }, + "selected" : false + }, { + "data" : { + "id" : "13204", + "source" : "2702", + "target" : "2674", + "line_name_k" : "ヤマノテセン", + "is_bullet" : false, + "lon" : 139.73522275686264, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 12, + "SUID" : 13204, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11302", + "shared_interaction" : "11302", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR山手線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130229 (11302) 1130201", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130229 (11302) 1130201", + "lat" : 35.693027307629926, + "e_status_y" : 0, + "line_name_h" : "JR山手線" + }, + "selected" : false + }, { + "data" : { + "id" : "13203", + "source" : "2701", + "target" : "2702", + "line_name_k" : "ヤマノテセン", + "is_bullet" : false, + "lon" : 139.73522275686264, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 12, + "SUID" : 13203, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11302", + "shared_interaction" : "11302", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR山手線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130228 (11302) 1130229", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130228 (11302) 1130229", + "lat" : 35.693027307629926, + "e_status_y" : 0, + "line_name_h" : "JR山手線" + }, + "selected" : false + }, { + "data" : { + "id" : "13196", + "source" : "2694", + "target" : "2695", + "line_name_k" : "ヤマノテセン", + "is_bullet" : false, + "lon" : 139.73522275686264, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 12, + "SUID" : 13196, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11302", + "shared_interaction" : "11302", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR山手線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130221 (11302) 1130222", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130221 (11302) 1130222", + "lat" : 35.693027307629926, + "e_status_y" : 0, + "line_name_h" : "JR山手線" + }, + "selected" : false + }, { + "data" : { + "id" : "13195", + "source" : "2693", + "target" : "2694", + "line_name_k" : "ヤマノテセン", + "is_bullet" : false, + "lon" : 139.73522275686264, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 12, + "SUID" : 13195, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11302", + "shared_interaction" : "11302", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR山手線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130220 (11302) 1130221", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130220 (11302) 1130221", + "lat" : 35.693027307629926, + "e_status_y" : 0, + "line_name_h" : "JR山手線" + }, + "selected" : false + }, { + "data" : { + "id" : "13198", + "source" : "2696", + "target" : "2697", + "line_name_k" : "ヤマノテセン", + "is_bullet" : false, + "lon" : 139.73522275686264, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 12, + "SUID" : 13198, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11302", + "shared_interaction" : "11302", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR山手線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130223 (11302) 1130224", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130223 (11302) 1130224", + "lat" : 35.693027307629926, + "e_status_y" : 0, + "line_name_h" : "JR山手線" + }, + "selected" : false + }, { + "data" : { + "id" : "13197", + "source" : "2695", + "target" : "2696", + "line_name_k" : "ヤマノテセン", + "is_bullet" : false, + "lon" : 139.73522275686264, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 12, + "SUID" : 13197, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11302", + "shared_interaction" : "11302", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR山手線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130222 (11302) 1130223", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130222 (11302) 1130223", + "lat" : 35.693027307629926, + "e_status_y" : 0, + "line_name_h" : "JR山手線" + }, + "selected" : false + }, { + "data" : { + "id" : "13200", + "source" : "2698", + "target" : "2699", + "line_name_k" : "ヤマノテセン", + "is_bullet" : false, + "lon" : 139.73522275686264, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 12, + "SUID" : 13200, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11302", + "shared_interaction" : "11302", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR山手線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130225 (11302) 1130226", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130225 (11302) 1130226", + "lat" : 35.693027307629926, + "e_status_y" : 0, + "line_name_h" : "JR山手線" + }, + "selected" : false + }, { + "data" : { + "id" : "13199", + "source" : "2697", + "target" : "2698", + "line_name_k" : "ヤマノテセン", + "is_bullet" : false, + "lon" : 139.73522275686264, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 12, + "SUID" : 13199, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11302", + "shared_interaction" : "11302", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR山手線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130224 (11302) 1130225", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130224 (11302) 1130225", + "lat" : 35.693027307629926, + "e_status_y" : 0, + "line_name_h" : "JR山手線" + }, + "selected" : false + }, { + "data" : { + "id" : "13202", + "source" : "2700", + "target" : "2701", + "line_name_k" : "ヤマノテセン", + "is_bullet" : false, + "lon" : 139.73522275686264, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 12, + "SUID" : 13202, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11302", + "shared_interaction" : "11302", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR山手線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130227 (11302) 1130228", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130227 (11302) 1130228", + "lat" : 35.693027307629926, + "e_status_y" : 0, + "line_name_h" : "JR山手線" + }, + "selected" : false + }, { + "data" : { + "id" : "13201", + "source" : "2699", + "target" : "2700", + "line_name_k" : "ヤマノテセン", + "is_bullet" : false, + "lon" : 139.73522275686264, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 12, + "SUID" : 13201, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11302", + "shared_interaction" : "11302", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR山手線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130226 (11302) 1130227", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130226 (11302) 1130227", + "lat" : 35.693027307629926, + "e_status_y" : 0, + "line_name_h" : "JR山手線" + }, + "selected" : false + }, { + "data" : { + "id" : "13187", + "source" : "2685", + "target" : "2686", + "line_name_k" : "ヤマノテセン", + "is_bullet" : false, + "lon" : 139.73522275686264, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 12, + "SUID" : 13187, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11302", + "shared_interaction" : "11302", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR山手線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130212 (11302) 1130213", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130212 (11302) 1130213", + "lat" : 35.693027307629926, + "e_status_y" : 0, + "line_name_h" : "JR山手線" + }, + "selected" : false + }, { + "data" : { + "id" : "13188", + "source" : "2686", + "target" : "2687", + "line_name_k" : "ヤマノテセン", + "is_bullet" : false, + "lon" : 139.73522275686264, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 12, + "SUID" : 13188, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11302", + "shared_interaction" : "11302", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR山手線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130213 (11302) 1130214", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130213 (11302) 1130214", + "lat" : 35.693027307629926, + "e_status_y" : 0, + "line_name_h" : "JR山手線" + }, + "selected" : false + }, { + "data" : { + "id" : "13189", + "source" : "2687", + "target" : "2688", + "line_name_k" : "ヤマノテセン", + "is_bullet" : false, + "lon" : 139.73522275686264, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 12, + "SUID" : 13189, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11302", + "shared_interaction" : "11302", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR山手線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130214 (11302) 1130215", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130214 (11302) 1130215", + "lat" : 35.693027307629926, + "e_status_y" : 0, + "line_name_h" : "JR山手線" + }, + "selected" : false + }, { + "data" : { + "id" : "13190", + "source" : "2688", + "target" : "2689", + "line_name_k" : "ヤマノテセン", + "is_bullet" : false, + "lon" : 139.73522275686264, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 12, + "SUID" : 13190, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11302", + "shared_interaction" : "11302", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR山手線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130215 (11302) 1130216", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130215 (11302) 1130216", + "lat" : 35.693027307629926, + "e_status_y" : 0, + "line_name_h" : "JR山手線" + }, + "selected" : false + }, { + "data" : { + "id" : "13191", + "source" : "2689", + "target" : "2690", + "line_name_k" : "ヤマノテセン", + "is_bullet" : false, + "lon" : 139.73522275686264, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 12, + "SUID" : 13191, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11302", + "shared_interaction" : "11302", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR山手線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130216 (11302) 1130217", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130216 (11302) 1130217", + "lat" : 35.693027307629926, + "e_status_y" : 0, + "line_name_h" : "JR山手線" + }, + "selected" : false + }, { + "data" : { + "id" : "13192", + "source" : "2690", + "target" : "2691", + "line_name_k" : "ヤマノテセン", + "is_bullet" : false, + "lon" : 139.73522275686264, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 12, + "SUID" : 13192, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11302", + "shared_interaction" : "11302", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR山手線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130217 (11302) 1130218", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130217 (11302) 1130218", + "lat" : 35.693027307629926, + "e_status_y" : 0, + "line_name_h" : "JR山手線" + }, + "selected" : false + }, { + "data" : { + "id" : "13193", + "source" : "2691", + "target" : "2692", + "line_name_k" : "ヤマノテセン", + "is_bullet" : false, + "lon" : 139.73522275686264, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 12, + "SUID" : 13193, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11302", + "shared_interaction" : "11302", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR山手線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130218 (11302) 1130219", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130218 (11302) 1130219", + "lat" : 35.693027307629926, + "e_status_y" : 0, + "line_name_h" : "JR山手線" + }, + "selected" : false + }, { + "data" : { + "id" : "13194", + "source" : "2692", + "target" : "2693", + "line_name_k" : "ヤマノテセン", + "is_bullet" : false, + "lon" : 139.73522275686264, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 12, + "SUID" : 13194, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11302", + "shared_interaction" : "11302", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR山手線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130219 (11302) 1130220", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130219 (11302) 1130220", + "lat" : 35.693027307629926, + "e_status_y" : 0, + "line_name_h" : "JR山手線" + }, + "selected" : false + }, { + "data" : { + "id" : "13179", + "source" : "2677", + "target" : "2678", + "line_name_k" : "ヤマノテセン", + "is_bullet" : false, + "lon" : 139.73522275686264, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 12, + "SUID" : 13179, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11302", + "shared_interaction" : "11302", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR山手線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130204 (11302) 1130205", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130204 (11302) 1130205", + "lat" : 35.693027307629926, + "e_status_y" : 0, + "line_name_h" : "JR山手線" + }, + "selected" : false + }, { + "data" : { + "id" : "13180", + "source" : "2678", + "target" : "2679", + "line_name_k" : "ヤマノテセン", + "is_bullet" : false, + "lon" : 139.73522275686264, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 12, + "SUID" : 13180, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11302", + "shared_interaction" : "11302", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR山手線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130205 (11302) 1130206", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130205 (11302) 1130206", + "lat" : 35.693027307629926, + "e_status_y" : 0, + "line_name_h" : "JR山手線" + }, + "selected" : false + }, { + "data" : { + "id" : "13181", + "source" : "2679", + "target" : "2680", + "line_name_k" : "ヤマノテセン", + "is_bullet" : false, + "lon" : 139.73522275686264, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 12, + "SUID" : 13181, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11302", + "shared_interaction" : "11302", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR山手線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130206 (11302) 1130207", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130206 (11302) 1130207", + "lat" : 35.693027307629926, + "e_status_y" : 0, + "line_name_h" : "JR山手線" + }, + "selected" : false + }, { + "data" : { + "id" : "13182", + "source" : "2680", + "target" : "2681", + "line_name_k" : "ヤマノテセン", + "is_bullet" : false, + "lon" : 139.73522275686264, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 12, + "SUID" : 13182, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11302", + "shared_interaction" : "11302", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR山手線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130207 (11302) 1130208", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130207 (11302) 1130208", + "lat" : 35.693027307629926, + "e_status_y" : 0, + "line_name_h" : "JR山手線" + }, + "selected" : false + }, { + "data" : { + "id" : "13183", + "source" : "2681", + "target" : "2682", + "line_name_k" : "ヤマノテセン", + "is_bullet" : false, + "lon" : 139.73522275686264, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 12, + "SUID" : 13183, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11302", + "shared_interaction" : "11302", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR山手線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130208 (11302) 1130209", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130208 (11302) 1130209", + "lat" : 35.693027307629926, + "e_status_y" : 0, + "line_name_h" : "JR山手線" + }, + "selected" : false + }, { + "data" : { + "id" : "13184", + "source" : "2682", + "target" : "2683", + "line_name_k" : "ヤマノテセン", + "is_bullet" : false, + "lon" : 139.73522275686264, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 12, + "SUID" : 13184, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11302", + "shared_interaction" : "11302", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR山手線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130209 (11302) 1130210", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130209 (11302) 1130210", + "lat" : 35.693027307629926, + "e_status_y" : 0, + "line_name_h" : "JR山手線" + }, + "selected" : false + }, { + "data" : { + "id" : "13185", + "source" : "2683", + "target" : "2684", + "line_name_k" : "ヤマノテセン", + "is_bullet" : false, + "lon" : 139.73522275686264, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 12, + "SUID" : 13185, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11302", + "shared_interaction" : "11302", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR山手線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130210 (11302) 1130211", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130210 (11302) 1130211", + "lat" : 35.693027307629926, + "e_status_y" : 0, + "line_name_h" : "JR山手線" + }, + "selected" : false + }, { + "data" : { + "id" : "13186", + "source" : "2684", + "target" : "2685", + "line_name_k" : "ヤマノテセン", + "is_bullet" : false, + "lon" : 139.73522275686264, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 12, + "SUID" : 13186, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11302", + "shared_interaction" : "11302", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR山手線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130211 (11302) 1130212", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130211 (11302) 1130212", + "lat" : 35.693027307629926, + "e_status_y" : 0, + "line_name_h" : "JR山手線" + }, + "selected" : false + }, { + "data" : { + "id" : "13178", + "source" : "2676", + "target" : "2677", + "line_name_k" : "ヤマノテセン", + "is_bullet" : false, + "lon" : 139.73522275686264, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 12, + "SUID" : 13178, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11302", + "shared_interaction" : "11302", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR山手線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130203 (11302) 1130204", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130203 (11302) 1130204", + "lat" : 35.693027307629926, + "e_status_y" : 0, + "line_name_h" : "JR山手線" + }, + "selected" : false + }, { + "data" : { + "id" : "13177", + "source" : "2675", + "target" : "2676", + "line_name_k" : "ヤマノテセン", + "is_bullet" : false, + "lon" : 139.73522275686264, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 12, + "SUID" : 13177, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11302", + "shared_interaction" : "11302", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR山手線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130202 (11302) 1130203", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130202 (11302) 1130203", + "lat" : 35.693027307629926, + "e_status_y" : 0, + "line_name_h" : "JR山手線" + }, + "selected" : false + }, { + "data" : { + "id" : "13176", + "source" : "2674", + "target" : "2675", + "line_name_k" : "ヤマノテセン", + "is_bullet" : false, + "lon" : 139.73522275686264, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 12, + "SUID" : 13176, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11302", + "shared_interaction" : "11302", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR山手線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130201 (11302) 1130202", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130201 (11302) 1130202", + "lat" : 35.693027307629926, + "e_status_y" : 0, + "line_name_h" : "JR山手線" + }, + "selected" : false + }, { + "data" : { + "id" : "13156", + "source" : "2653", + "target" : "2654", + "line_name_k" : "トウカイドウホンセン", + "is_bullet" : false, + "lon" : 139.43024413263132, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13156, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11301", + "shared_interaction" : "11301", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR東海道本線(東京~熱海)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130101 (11301) 1130102", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130101 (11301) 1130102", + "lat" : 35.39507962341528, + "e_status_y" : 0, + "line_name_h" : "JR東海道本線(東京~熱海)" + }, + "selected" : false + }, { + "data" : { + "id" : "13157", + "source" : "2654", + "target" : "2655", + "line_name_k" : "トウカイドウホンセン", + "is_bullet" : false, + "lon" : 139.43024413263132, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13157, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11301", + "shared_interaction" : "11301", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR東海道本線(東京~熱海)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130102 (11301) 1130103", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130102 (11301) 1130103", + "lat" : 35.39507962341528, + "e_status_y" : 0, + "line_name_h" : "JR東海道本線(東京~熱海)" + }, + "selected" : false + }, { + "data" : { + "id" : "13246", + "source" : "2746", + "target" : "2747", + "line_name_k" : "ムサシノセン", + "is_bullet" : false, + "lon" : 139.70511311944188, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13246, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11305", + "shared_interaction" : "11305", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR武蔵野線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130502 (11305) 1130503", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130502 (11305) 1130503", + "lat" : 35.802577076922994, + "e_status_y" : 0, + "line_name_h" : "JR武蔵野線" + }, + "selected" : false + }, { + "data" : { + "id" : "13245", + "source" : "2745", + "target" : "2746", + "line_name_k" : "ムサシノセン", + "is_bullet" : false, + "lon" : 139.70511311944188, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13245, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11305", + "shared_interaction" : "11305", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR武蔵野線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130501 (11305) 1130502", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130501 (11305) 1130502", + "lat" : 35.802577076922994, + "e_status_y" : 0, + "line_name_h" : "JR武蔵野線" + }, + "selected" : false + }, { + "data" : { + "id" : "13248", + "source" : "2748", + "target" : "2749", + "line_name_k" : "ムサシノセン", + "is_bullet" : false, + "lon" : 139.70511311944188, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13248, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11305", + "shared_interaction" : "11305", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR武蔵野線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130504 (11305) 1130505", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130504 (11305) 1130505", + "lat" : 35.802577076922994, + "e_status_y" : 0, + "line_name_h" : "JR武蔵野線" + }, + "selected" : false + }, { + "data" : { + "id" : "13247", + "source" : "2747", + "target" : "2748", + "line_name_k" : "ムサシノセン", + "is_bullet" : false, + "lon" : 139.70511311944188, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13247, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11305", + "shared_interaction" : "11305", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR武蔵野線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130503 (11305) 1130504", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130503 (11305) 1130504", + "lat" : 35.802577076922994, + "e_status_y" : 0, + "line_name_h" : "JR武蔵野線" + }, + "selected" : false + }, { + "data" : { + "id" : "13230", + "source" : "2727", + "target" : "2728", + "line_name_k" : "ナンブセン", + "is_bullet" : false, + "lon" : 139.5621831285025, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13230, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11303", + "shared_interaction" : "11303", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR南武線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130323 (11303) 1130324", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130323 (11303) 1130324", + "lat" : 35.62126801796464, + "e_status_y" : 0, + "line_name_h" : "JR南武線" + }, + "selected" : false + }, { + "data" : { + "id" : "13231", + "source" : "2728", + "target" : "2729", + "line_name_k" : "ナンブセン", + "is_bullet" : false, + "lon" : 139.5621831285025, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13231, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11303", + "shared_interaction" : "11303", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR南武線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130324 (11303) 1130325", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130324 (11303) 1130325", + "lat" : 35.62126801796464, + "e_status_y" : 0, + "line_name_h" : "JR南武線" + }, + "selected" : false + }, { + "data" : { + "id" : "13228", + "source" : "2725", + "target" : "2726", + "line_name_k" : "ナンブセン", + "is_bullet" : false, + "lon" : 139.5621831285025, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13228, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11303", + "shared_interaction" : "11303", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR南武線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130329 (11303) 1130322", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130329 (11303) 1130322", + "lat" : 35.62126801796464, + "e_status_y" : 0, + "line_name_h" : "JR南武線" + }, + "selected" : false + }, { + "data" : { + "id" : "13229", + "source" : "2726", + "target" : "2727", + "line_name_k" : "ナンブセン", + "is_bullet" : false, + "lon" : 139.5621831285025, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13229, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11303", + "shared_interaction" : "11303", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR南武線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130322 (11303) 1130323", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130322 (11303) 1130323", + "lat" : 35.62126801796464, + "e_status_y" : 0, + "line_name_h" : "JR南武線" + }, + "selected" : false + }, { + "data" : { + "id" : "13227", + "source" : "2724", + "target" : "2725", + "line_name_k" : "ナンブセン", + "is_bullet" : false, + "lon" : 139.5621831285025, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13227, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11303", + "shared_interaction" : "11303", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR南武線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130321 (11303) 1130329", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130321 (11303) 1130329", + "lat" : 35.62126801796464, + "e_status_y" : 0, + "line_name_h" : "JR南武線" + }, + "selected" : false + }, { + "data" : { + "id" : "13226", + "source" : "2723", + "target" : "2724", + "line_name_k" : "ナンブセン", + "is_bullet" : false, + "lon" : 139.5621831285025, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13226, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11303", + "shared_interaction" : "11303", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR南武線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130320 (11303) 1130321", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130320 (11303) 1130321", + "lat" : 35.62126801796464, + "e_status_y" : 0, + "line_name_h" : "JR南武線" + }, + "selected" : false + }, { + "data" : { + "id" : "13225", + "source" : "2722", + "target" : "2723", + "line_name_k" : "ナンブセン", + "is_bullet" : false, + "lon" : 139.5621831285025, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13225, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11303", + "shared_interaction" : "11303", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR南武線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130319 (11303) 1130320", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130319 (11303) 1130320", + "lat" : 35.62126801796464, + "e_status_y" : 0, + "line_name_h" : "JR南武線" + }, + "selected" : false + }, { + "data" : { + "id" : "13224", + "source" : "2721", + "target" : "2722", + "line_name_k" : "ナンブセン", + "is_bullet" : false, + "lon" : 139.5621831285025, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13224, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11303", + "shared_interaction" : "11303", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR南武線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130318 (11303) 1130319", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130318 (11303) 1130319", + "lat" : 35.62126801796464, + "e_status_y" : 0, + "line_name_h" : "JR南武線" + }, + "selected" : false + }, { + "data" : { + "id" : "13223", + "source" : "2720", + "target" : "2721", + "line_name_k" : "ナンブセン", + "is_bullet" : false, + "lon" : 139.5621831285025, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13223, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11303", + "shared_interaction" : "11303", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR南武線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130317 (11303) 1130318", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130317 (11303) 1130318", + "lat" : 35.62126801796464, + "e_status_y" : 0, + "line_name_h" : "JR南武線" + }, + "selected" : false + }, { + "data" : { + "id" : "13302", + "source" : "2805", + "target" : "2806", + "line_name_k" : "ヨコスカセン", + "is_bullet" : false, + "lon" : 139.64761859128498, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13302, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11308", + "shared_interaction" : "11308", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR横須賀線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130803 (11308) 1130804", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130803 (11308) 1130804", + "lat" : 35.48340539219034, + "e_status_y" : 0, + "line_name_h" : "JR横須賀線" + }, + "selected" : false + }, { + "data" : { + "id" : "13288", + "source" : "2789", + "target" : "2790", + "line_name_k" : "ヨコハマセン", + "is_bullet" : false, + "lon" : 139.47111850000002, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13288, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11306", + "shared_interaction" : "11306", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR横浜線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130619 (11306) 1130620", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130619 (11306) 1130620", + "lat" : 35.56100410614944, + "e_status_y" : 0, + "line_name_h" : "JR横浜線" + }, + "selected" : false + }, { + "data" : { + "id" : "13300", + "source" : "2803", + "target" : "2804", + "line_name_k" : "ヨコスカセン", + "is_bullet" : false, + "lon" : 139.64761859128498, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13300, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11308", + "shared_interaction" : "11308", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR横須賀線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130801 (11308) 1130802", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130801 (11308) 1130802", + "lat" : 35.48340539219034, + "e_status_y" : 0, + "line_name_h" : "JR横須賀線" + }, + "selected" : false + }, { + "data" : { + "id" : "13301", + "source" : "2804", + "target" : "2805", + "line_name_k" : "ヨコスカセン", + "is_bullet" : false, + "lon" : 139.64761859128498, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13301, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11308", + "shared_interaction" : "11308", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR横須賀線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130802 (11308) 1130803", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130802 (11308) 1130803", + "lat" : 35.48340539219034, + "e_status_y" : 0, + "line_name_h" : "JR横須賀線" + }, + "selected" : false + }, { + "data" : { + "id" : "13279", + "source" : "2780", + "target" : "2781", + "line_name_k" : "ヨコハマセン", + "is_bullet" : false, + "lon" : 139.47111850000002, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13279, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11306", + "shared_interaction" : "11306", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR横浜線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130610 (11306) 1130611", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130610 (11306) 1130611", + "lat" : 35.56100410614944, + "e_status_y" : 0, + "line_name_h" : "JR横浜線" + }, + "selected" : false + }, { + "data" : { + "id" : "13287", + "source" : "2788", + "target" : "2789", + "line_name_k" : "ヨコハマセン", + "is_bullet" : false, + "lon" : 139.47111850000002, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13287, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11306", + "shared_interaction" : "11306", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR横浜線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130618 (11306) 1130619", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130618 (11306) 1130619", + "lat" : 35.56100410614944, + "e_status_y" : 0, + "line_name_h" : "JR横浜線" + }, + "selected" : false + }, { + "data" : { + "id" : "13286", + "source" : "2787", + "target" : "2788", + "line_name_k" : "ヨコハマセン", + "is_bullet" : false, + "lon" : 139.47111850000002, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13286, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11306", + "shared_interaction" : "11306", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR横浜線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1130617 (11306) 1130618", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1130617 (11306) 1130618", + "lat" : 35.56100410614944, + "e_status_y" : 0, + "line_name_h" : "JR横浜線" + }, + "selected" : false + }, { + "data" : { + "id" : "13395", + "source" : "2900", + "target" : "2901", + "line_name_k" : "チュウオウセン", + "is_bullet" : false, + "lon" : 139.53798847265622, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13395, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11312", + "shared_interaction" : "11312", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央線(快速)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131216 (11312) 1131217", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131216 (11312) 1131217", + "lat" : 35.700170421148705, + "e_status_y" : 0, + "line_name_h" : "JR中央線(快速)" + }, + "selected" : false + }, { + "data" : { + "id" : "13394", + "source" : "2899", + "target" : "2900", + "line_name_k" : "チュウオウセン", + "is_bullet" : false, + "lon" : 139.53798847265622, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13394, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11312", + "shared_interaction" : "11312", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央線(快速)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131215 (11312) 1131216", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131215 (11312) 1131216", + "lat" : 35.700170421148705, + "e_status_y" : 0, + "line_name_h" : "JR中央線(快速)" + }, + "selected" : false + }, { + "data" : { + "id" : "13393", + "source" : "2898", + "target" : "2899", + "line_name_k" : "チュウオウセン", + "is_bullet" : false, + "lon" : 139.53798847265622, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13393, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11312", + "shared_interaction" : "11312", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央線(快速)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131214 (11312) 1131215", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131214 (11312) 1131215", + "lat" : 35.700170421148705, + "e_status_y" : 0, + "line_name_h" : "JR中央線(快速)" + }, + "selected" : false + }, { + "data" : { + "id" : "13392", + "source" : "2897", + "target" : "2898", + "line_name_k" : "チュウオウセン", + "is_bullet" : false, + "lon" : 139.53798847265622, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13392, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11312", + "shared_interaction" : "11312", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央線(快速)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131211 (11312) 1131214", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131211 (11312) 1131214", + "lat" : 35.700170421148705, + "e_status_y" : 0, + "line_name_h" : "JR中央線(快速)" + }, + "selected" : false + }, { + "data" : { + "id" : "13391", + "source" : "2896", + "target" : "2897", + "line_name_k" : "チュウオウセン", + "is_bullet" : false, + "lon" : 139.53798847265622, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13391, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11312", + "shared_interaction" : "11312", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央線(快速)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131207 (11312) 1131211", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131207 (11312) 1131211", + "lat" : 35.700170421148705, + "e_status_y" : 0, + "line_name_h" : "JR中央線(快速)" + }, + "selected" : false + }, { + "data" : { + "id" : "13390", + "source" : "2895", + "target" : "2896", + "line_name_k" : "チュウオウセン", + "is_bullet" : false, + "lon" : 139.53798847265622, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13390, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11312", + "shared_interaction" : "11312", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央線(快速)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131203 (11312) 1131207", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131203 (11312) 1131207", + "lat" : 35.700170421148705, + "e_status_y" : 0, + "line_name_h" : "JR中央線(快速)" + }, + "selected" : false + }, { + "data" : { + "id" : "13389", + "source" : "2894", + "target" : "2895", + "line_name_k" : "チュウオウセン", + "is_bullet" : false, + "lon" : 139.53798847265622, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13389, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11312", + "shared_interaction" : "11312", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央線(快速)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131202 (11312) 1131203", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131202 (11312) 1131203", + "lat" : 35.700170421148705, + "e_status_y" : 0, + "line_name_h" : "JR中央線(快速)" + }, + "selected" : false + }, { + "data" : { + "id" : "13388", + "source" : "2893", + "target" : "2894", + "line_name_k" : "チュウオウセン", + "is_bullet" : false, + "lon" : 139.53798847265622, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13388, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11312", + "shared_interaction" : "11312", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央線(快速)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131201 (11312) 1131202", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131201 (11312) 1131202", + "lat" : 35.700170421148705, + "e_status_y" : 0, + "line_name_h" : "JR中央線(快速)" + }, + "selected" : false + }, { + "data" : { + "id" : "13344", + "source" : "2849", + "target" : "2850", + "line_name_k" : "チュウオウホンセン", + "is_bullet" : false, + "lon" : 138.61735796977746, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 9, + "SUID" : 13344, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11311", + "shared_interaction" : "11311", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央本線(東京~塩尻)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131110 (11311) 1131111", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131110 (11311) 1131111", + "lat" : 35.770367336599776, + "e_status_y" : 0, + "line_name_h" : "JR中央本線(東京~塩尻)" + }, + "selected" : false + }, { + "data" : { + "id" : "13345", + "source" : "2850", + "target" : "2851", + "line_name_k" : "チュウオウホンセン", + "is_bullet" : false, + "lon" : 138.61735796977746, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 9, + "SUID" : 13345, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11311", + "shared_interaction" : "11311", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央本線(東京~塩尻)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131111 (11311) 1131112", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131111 (11311) 1131112", + "lat" : 35.770367336599776, + "e_status_y" : 0, + "line_name_h" : "JR中央本線(東京~塩尻)" + }, + "selected" : false + }, { + "data" : { + "id" : "13340", + "source" : "2845", + "target" : "2846", + "line_name_k" : "チュウオウホンセン", + "is_bullet" : false, + "lon" : 138.61735796977746, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 9, + "SUID" : 13340, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11311", + "shared_interaction" : "11311", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央本線(東京~塩尻)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131106 (11311) 1131107", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131106 (11311) 1131107", + "lat" : 35.770367336599776, + "e_status_y" : 0, + "line_name_h" : "JR中央本線(東京~塩尻)" + }, + "selected" : false + }, { + "data" : { + "id" : "13341", + "source" : "2846", + "target" : "2847", + "line_name_k" : "チュウオウホンセン", + "is_bullet" : false, + "lon" : 138.61735796977746, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 9, + "SUID" : 13341, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11311", + "shared_interaction" : "11311", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央本線(東京~塩尻)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131107 (11311) 1131108", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131107 (11311) 1131108", + "lat" : 35.770367336599776, + "e_status_y" : 0, + "line_name_h" : "JR中央本線(東京~塩尻)" + }, + "selected" : false + }, { + "data" : { + "id" : "13342", + "source" : "2847", + "target" : "2848", + "line_name_k" : "チュウオウホンセン", + "is_bullet" : false, + "lon" : 138.61735796977746, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 9, + "SUID" : 13342, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11311", + "shared_interaction" : "11311", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央本線(東京~塩尻)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131108 (11311) 1131109", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131108 (11311) 1131109", + "lat" : 35.770367336599776, + "e_status_y" : 0, + "line_name_h" : "JR中央本線(東京~塩尻)" + }, + "selected" : false + }, { + "data" : { + "id" : "13343", + "source" : "2848", + "target" : "2849", + "line_name_k" : "チュウオウホンセン", + "is_bullet" : false, + "lon" : 138.61735796977746, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 9, + "SUID" : 13343, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11311", + "shared_interaction" : "11311", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央本線(東京~塩尻)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131109 (11311) 1131110", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131109 (11311) 1131110", + "lat" : 35.770367336599776, + "e_status_y" : 0, + "line_name_h" : "JR中央本線(東京~塩尻)" + }, + "selected" : false + }, { + "data" : { + "id" : "13336", + "source" : "2841", + "target" : "2842", + "line_name_k" : "チュウオウホンセン", + "is_bullet" : false, + "lon" : 138.61735796977746, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 9, + "SUID" : 13336, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11311", + "shared_interaction" : "11311", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央本線(東京~塩尻)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131102 (11311) 1131103", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131102 (11311) 1131103", + "lat" : 35.770367336599776, + "e_status_y" : 0, + "line_name_h" : "JR中央本線(東京~塩尻)" + }, + "selected" : false + }, { + "data" : { + "id" : "13337", + "source" : "2842", + "target" : "2843", + "line_name_k" : "チュウオウホンセン", + "is_bullet" : false, + "lon" : 138.61735796977746, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 9, + "SUID" : 13337, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11311", + "shared_interaction" : "11311", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央本線(東京~塩尻)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131103 (11311) 1131104", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131103 (11311) 1131104", + "lat" : 35.770367336599776, + "e_status_y" : 0, + "line_name_h" : "JR中央本線(東京~塩尻)" + }, + "selected" : false + }, { + "data" : { + "id" : "13338", + "source" : "2843", + "target" : "2844", + "line_name_k" : "チュウオウホンセン", + "is_bullet" : false, + "lon" : 138.61735796977746, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 9, + "SUID" : 13338, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11311", + "shared_interaction" : "11311", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央本線(東京~塩尻)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131104 (11311) 1131105", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131104 (11311) 1131105", + "lat" : 35.770367336599776, + "e_status_y" : 0, + "line_name_h" : "JR中央本線(東京~塩尻)" + }, + "selected" : false + }, { + "data" : { + "id" : "13339", + "source" : "2844", + "target" : "2845", + "line_name_k" : "チュウオウホンセン", + "is_bullet" : false, + "lon" : 138.61735796977746, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 9, + "SUID" : 13339, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11311", + "shared_interaction" : "11311", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央本線(東京~塩尻)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131105 (11311) 1131106", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131105 (11311) 1131106", + "lat" : 35.770367336599776, + "e_status_y" : 0, + "line_name_h" : "JR中央本線(東京~塩尻)" + }, + "selected" : false + }, { + "data" : { + "id" : "13335", + "source" : "2840", + "target" : "2841", + "line_name_k" : "チュウオウホンセン", + "is_bullet" : false, + "lon" : 138.61735796977746, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 9, + "SUID" : 13335, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11311", + "shared_interaction" : "11311", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央本線(東京~塩尻)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131101 (11311) 1131102", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131101 (11311) 1131102", + "lat" : 35.770367336599776, + "e_status_y" : 0, + "line_name_h" : "JR中央本線(東京~塩尻)" + }, + "selected" : false + }, { + "data" : { + "id" : "13435", + "source" : "2941", + "target" : "2942", + "line_name_k" : "チュウオウ・ソウブセン", + "is_bullet" : false, + "lon" : 139.83715522681192, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13435, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11313", + "shared_interaction" : "11313", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央・総武線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131325 (11313) 1131326", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131325 (11313) 1131326", + "lat" : 35.701641362335245, + "e_status_y" : 0, + "line_name_h" : "JR中央・総武緩行線" + }, + "selected" : false + }, { + "data" : { + "id" : "13429", + "source" : "2935", + "target" : "2936", + "line_name_k" : "チュウオウ・ソウブセン", + "is_bullet" : false, + "lon" : 139.83715522681192, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13429, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11313", + "shared_interaction" : "11313", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央・総武線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131319 (11313) 1131320", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131319 (11313) 1131320", + "lat" : 35.701641362335245, + "e_status_y" : 0, + "line_name_h" : "JR中央・総武緩行線" + }, + "selected" : false + }, { + "data" : { + "id" : "13430", + "source" : "2936", + "target" : "2937", + "line_name_k" : "チュウオウ・ソウブセン", + "is_bullet" : false, + "lon" : 139.83715522681192, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13430, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11313", + "shared_interaction" : "11313", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央・総武線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131320 (11313) 1131321", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131320 (11313) 1131321", + "lat" : 35.701641362335245, + "e_status_y" : 0, + "line_name_h" : "JR中央・総武緩行線" + }, + "selected" : false + }, { + "data" : { + "id" : "13427", + "source" : "2933", + "target" : "2934", + "line_name_k" : "チュウオウ・ソウブセン", + "is_bullet" : false, + "lon" : 139.83715522681192, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13427, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11313", + "shared_interaction" : "11313", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央・総武線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131317 (11313) 1131318", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131317 (11313) 1131318", + "lat" : 35.701641362335245, + "e_status_y" : 0, + "line_name_h" : "JR中央・総武緩行線" + }, + "selected" : false + }, { + "data" : { + "id" : "13428", + "source" : "2934", + "target" : "2935", + "line_name_k" : "チュウオウ・ソウブセン", + "is_bullet" : false, + "lon" : 139.83715522681192, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13428, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11313", + "shared_interaction" : "11313", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央・総武線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131318 (11313) 1131319", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131318 (11313) 1131319", + "lat" : 35.701641362335245, + "e_status_y" : 0, + "line_name_h" : "JR中央・総武緩行線" + }, + "selected" : false + }, { + "data" : { + "id" : "13433", + "source" : "2939", + "target" : "2940", + "line_name_k" : "チュウオウ・ソウブセン", + "is_bullet" : false, + "lon" : 139.83715522681192, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13433, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11313", + "shared_interaction" : "11313", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央・総武線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131323 (11313) 1131324", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131323 (11313) 1131324", + "lat" : 35.701641362335245, + "e_status_y" : 0, + "line_name_h" : "JR中央・総武緩行線" + }, + "selected" : false + }, { + "data" : { + "id" : "13434", + "source" : "2940", + "target" : "2941", + "line_name_k" : "チュウオウ・ソウブセン", + "is_bullet" : false, + "lon" : 139.83715522681192, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13434, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11313", + "shared_interaction" : "11313", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央・総武線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131324 (11313) 1131325", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131324 (11313) 1131325", + "lat" : 35.701641362335245, + "e_status_y" : 0, + "line_name_h" : "JR中央・総武緩行線" + }, + "selected" : false + }, { + "data" : { + "id" : "13431", + "source" : "2937", + "target" : "2938", + "line_name_k" : "チュウオウ・ソウブセン", + "is_bullet" : false, + "lon" : 139.83715522681192, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13431, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11313", + "shared_interaction" : "11313", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央・総武線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131321 (11313) 1131322", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131321 (11313) 1131322", + "lat" : 35.701641362335245, + "e_status_y" : 0, + "line_name_h" : "JR中央・総武緩行線" + }, + "selected" : false + }, { + "data" : { + "id" : "13432", + "source" : "2938", + "target" : "2939", + "line_name_k" : "チュウオウ・ソウブセン", + "is_bullet" : false, + "lon" : 139.83715522681192, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13432, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11313", + "shared_interaction" : "11313", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央・総武線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131322 (11313) 1131323", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131322 (11313) 1131323", + "lat" : 35.701641362335245, + "e_status_y" : 0, + "line_name_h" : "JR中央・総武緩行線" + }, + "selected" : false + }, { + "data" : { + "id" : "13452", + "source" : "2959", + "target" : "2960", + "line_name_k" : "ソウブホンセン", + "is_bullet" : false, + "lon" : 140.25466124558875, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 9, + "SUID" : 13452, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11314", + "shared_interaction" : "11314", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR総武本線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131404 (11314) 1131405", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131404 (11314) 1131405", + "lat" : 35.68790263001846, + "e_status_y" : 0, + "line_name_h" : "JR総武本線" + }, + "selected" : false + }, { + "data" : { + "id" : "13451", + "source" : "2958", + "target" : "2959", + "line_name_k" : "ソウブホンセン", + "is_bullet" : false, + "lon" : 140.25466124558875, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 9, + "SUID" : 13451, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11314", + "shared_interaction" : "11314", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR総武本線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131403 (11314) 1131404", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131403 (11314) 1131404", + "lat" : 35.68790263001846, + "e_status_y" : 0, + "line_name_h" : "JR総武本線" + }, + "selected" : false + }, { + "data" : { + "id" : "13450", + "source" : "2957", + "target" : "2958", + "line_name_k" : "ソウブホンセン", + "is_bullet" : false, + "lon" : 140.25466124558875, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 9, + "SUID" : 13450, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11314", + "shared_interaction" : "11314", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR総武本線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131402 (11314) 1131403", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131402 (11314) 1131403", + "lat" : 35.68790263001846, + "e_status_y" : 0, + "line_name_h" : "JR総武本線" + }, + "selected" : false + }, { + "data" : { + "id" : "13449", + "source" : "2956", + "target" : "2957", + "line_name_k" : "ソウブホンセン", + "is_bullet" : false, + "lon" : 140.25466124558875, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 9, + "SUID" : 13449, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11314", + "shared_interaction" : "11314", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR総武本線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131401 (11314) 1131402", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131401 (11314) 1131402", + "lat" : 35.68790263001846, + "e_status_y" : 0, + "line_name_h" : "JR総武本線" + }, + "selected" : false + }, { + "data" : { + "id" : "13404", + "source" : "2909", + "target" : "2910", + "line_name_k" : "チュウオウセン", + "is_bullet" : false, + "lon" : 139.53798847265622, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13404, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11312", + "shared_interaction" : "11312", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央線(快速)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131225 (11312) 1131226", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131225 (11312) 1131226", + "lat" : 35.700170421148705, + "e_status_y" : 0, + "line_name_h" : "JR中央線(快速)" + }, + "selected" : false + }, { + "data" : { + "id" : "13405", + "source" : "2910", + "target" : "2911", + "line_name_k" : "チュウオウセン", + "is_bullet" : false, + "lon" : 139.53798847265622, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13405, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11312", + "shared_interaction" : "11312", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央線(快速)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131226 (11312) 1131227", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131226 (11312) 1131227", + "lat" : 35.700170421148705, + "e_status_y" : 0, + "line_name_h" : "JR中央線(快速)" + }, + "selected" : false + }, { + "data" : { + "id" : "13406", + "source" : "2911", + "target" : "2912", + "line_name_k" : "チュウオウセン", + "is_bullet" : false, + "lon" : 139.53798847265622, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13406, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11312", + "shared_interaction" : "11312", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央線(快速)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131227 (11312) 1131228", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131227 (11312) 1131228", + "lat" : 35.700170421148705, + "e_status_y" : 0, + "line_name_h" : "JR中央線(快速)" + }, + "selected" : false + }, { + "data" : { + "id" : "13407", + "source" : "2912", + "target" : "2913", + "line_name_k" : "チュウオウセン", + "is_bullet" : false, + "lon" : 139.53798847265622, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13407, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11312", + "shared_interaction" : "11312", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央線(快速)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131228 (11312) 1131229", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131228 (11312) 1131229", + "lat" : 35.700170421148705, + "e_status_y" : 0, + "line_name_h" : "JR中央線(快速)" + }, + "selected" : false + }, { + "data" : { + "id" : "13408", + "source" : "2913", + "target" : "2914", + "line_name_k" : "チュウオウセン", + "is_bullet" : false, + "lon" : 139.53798847265622, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13408, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11312", + "shared_interaction" : "11312", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央線(快速)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131229 (11312) 1131230", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131229 (11312) 1131230", + "lat" : 35.700170421148705, + "e_status_y" : 0, + "line_name_h" : "JR中央線(快速)" + }, + "selected" : false + }, { + "data" : { + "id" : "13409", + "source" : "2914", + "target" : "2915", + "line_name_k" : "チュウオウセン", + "is_bullet" : false, + "lon" : 139.53798847265622, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13409, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11312", + "shared_interaction" : "11312", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央線(快速)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131230 (11312) 1131231", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131230 (11312) 1131231", + "lat" : 35.700170421148705, + "e_status_y" : 0, + "line_name_h" : "JR中央線(快速)" + }, + "selected" : false + }, { + "data" : { + "id" : "13410", + "source" : "2915", + "target" : "2916", + "line_name_k" : "チュウオウセン", + "is_bullet" : false, + "lon" : 139.53798847265622, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13410, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11312", + "shared_interaction" : "11312", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央線(快速)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131231 (11312) 1131232", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131231 (11312) 1131232", + "lat" : 35.700170421148705, + "e_status_y" : 0, + "line_name_h" : "JR中央線(快速)" + }, + "selected" : false + }, { + "data" : { + "id" : "13396", + "source" : "2901", + "target" : "2902", + "line_name_k" : "チュウオウセン", + "is_bullet" : false, + "lon" : 139.53798847265622, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13396, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11312", + "shared_interaction" : "11312", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央線(快速)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131217 (11312) 1131218", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131217 (11312) 1131218", + "lat" : 35.700170421148705, + "e_status_y" : 0, + "line_name_h" : "JR中央線(快速)" + }, + "selected" : false + }, { + "data" : { + "id" : "13397", + "source" : "2902", + "target" : "2903", + "line_name_k" : "チュウオウセン", + "is_bullet" : false, + "lon" : 139.53798847265622, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13397, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11312", + "shared_interaction" : "11312", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央線(快速)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131218 (11312) 1131219", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131218 (11312) 1131219", + "lat" : 35.700170421148705, + "e_status_y" : 0, + "line_name_h" : "JR中央線(快速)" + }, + "selected" : false + }, { + "data" : { + "id" : "13398", + "source" : "2903", + "target" : "2904", + "line_name_k" : "チュウオウセン", + "is_bullet" : false, + "lon" : 139.53798847265622, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13398, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11312", + "shared_interaction" : "11312", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央線(快速)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131219 (11312) 1131220", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131219 (11312) 1131220", + "lat" : 35.700170421148705, + "e_status_y" : 0, + "line_name_h" : "JR中央線(快速)" + }, + "selected" : false + }, { + "data" : { + "id" : "13399", + "source" : "2904", + "target" : "2905", + "line_name_k" : "チュウオウセン", + "is_bullet" : false, + "lon" : 139.53798847265622, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13399, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11312", + "shared_interaction" : "11312", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央線(快速)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131220 (11312) 1131221", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131220 (11312) 1131221", + "lat" : 35.700170421148705, + "e_status_y" : 0, + "line_name_h" : "JR中央線(快速)" + }, + "selected" : false + }, { + "data" : { + "id" : "13400", + "source" : "2905", + "target" : "2906", + "line_name_k" : "チュウオウセン", + "is_bullet" : false, + "lon" : 139.53798847265622, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13400, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11312", + "shared_interaction" : "11312", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央線(快速)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131221 (11312) 1131222", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131221 (11312) 1131222", + "lat" : 35.700170421148705, + "e_status_y" : 0, + "line_name_h" : "JR中央線(快速)" + }, + "selected" : false + }, { + "data" : { + "id" : "13401", + "source" : "2906", + "target" : "2907", + "line_name_k" : "チュウオウセン", + "is_bullet" : false, + "lon" : 139.53798847265622, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13401, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11312", + "shared_interaction" : "11312", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央線(快速)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131222 (11312) 1131223", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131222 (11312) 1131223", + "lat" : 35.700170421148705, + "e_status_y" : 0, + "line_name_h" : "JR中央線(快速)" + }, + "selected" : false + }, { + "data" : { + "id" : "13402", + "source" : "2907", + "target" : "2908", + "line_name_k" : "チュウオウセン", + "is_bullet" : false, + "lon" : 139.53798847265622, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13402, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11312", + "shared_interaction" : "11312", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央線(快速)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131223 (11312) 1131224", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131223 (11312) 1131224", + "lat" : 35.700170421148705, + "e_status_y" : 0, + "line_name_h" : "JR中央線(快速)" + }, + "selected" : false + }, { + "data" : { + "id" : "13403", + "source" : "2908", + "target" : "2909", + "line_name_k" : "チュウオウセン", + "is_bullet" : false, + "lon" : 139.53798847265622, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13403, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11312", + "shared_interaction" : "11312", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央線(快速)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131224 (11312) 1131225", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131224 (11312) 1131225", + "lat" : 35.700170421148705, + "e_status_y" : 0, + "line_name_h" : "JR中央線(快速)" + }, + "selected" : false + }, { + "data" : { + "id" : "13420", + "source" : "2926", + "target" : "2927", + "line_name_k" : "チュウオウ・ソウブセン", + "is_bullet" : false, + "lon" : 139.83715522681192, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13420, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11313", + "shared_interaction" : "11313", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央・総武線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131310 (11313) 1131311", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131310 (11313) 1131311", + "lat" : 35.701641362335245, + "e_status_y" : 0, + "line_name_h" : "JR中央・総武緩行線" + }, + "selected" : false + }, { + "data" : { + "id" : "13419", + "source" : "2925", + "target" : "2926", + "line_name_k" : "チュウオウ・ソウブセン", + "is_bullet" : false, + "lon" : 139.83715522681192, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13419, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11313", + "shared_interaction" : "11313", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央・総武線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131309 (11313) 1131310", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131309 (11313) 1131310", + "lat" : 35.701641362335245, + "e_status_y" : 0, + "line_name_h" : "JR中央・総武緩行線" + }, + "selected" : false + }, { + "data" : { + "id" : "13422", + "source" : "2928", + "target" : "2929", + "line_name_k" : "チュウオウ・ソウブセン", + "is_bullet" : false, + "lon" : 139.83715522681192, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13422, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11313", + "shared_interaction" : "11313", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央・総武線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131312 (11313) 1131313", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131312 (11313) 1131313", + "lat" : 35.701641362335245, + "e_status_y" : 0, + "line_name_h" : "JR中央・総武緩行線" + }, + "selected" : false + }, { + "data" : { + "id" : "13421", + "source" : "2927", + "target" : "2928", + "line_name_k" : "チュウオウ・ソウブセン", + "is_bullet" : false, + "lon" : 139.83715522681192, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13421, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11313", + "shared_interaction" : "11313", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央・総武線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131311 (11313) 1131312", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131311 (11313) 1131312", + "lat" : 35.701641362335245, + "e_status_y" : 0, + "line_name_h" : "JR中央・総武緩行線" + }, + "selected" : false + }, { + "data" : { + "id" : "13424", + "source" : "2930", + "target" : "2931", + "line_name_k" : "チュウオウ・ソウブセン", + "is_bullet" : false, + "lon" : 139.83715522681192, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13424, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11313", + "shared_interaction" : "11313", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央・総武線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131314 (11313) 1131315", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131314 (11313) 1131315", + "lat" : 35.701641362335245, + "e_status_y" : 0, + "line_name_h" : "JR中央・総武緩行線" + }, + "selected" : false + }, { + "data" : { + "id" : "13423", + "source" : "2929", + "target" : "2930", + "line_name_k" : "チュウオウ・ソウブセン", + "is_bullet" : false, + "lon" : 139.83715522681192, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13423, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11313", + "shared_interaction" : "11313", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央・総武線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131313 (11313) 1131314", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131313 (11313) 1131314", + "lat" : 35.701641362335245, + "e_status_y" : 0, + "line_name_h" : "JR中央・総武緩行線" + }, + "selected" : false + }, { + "data" : { + "id" : "13426", + "source" : "2932", + "target" : "2933", + "line_name_k" : "チュウオウ・ソウブセン", + "is_bullet" : false, + "lon" : 139.83715522681192, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13426, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11313", + "shared_interaction" : "11313", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央・総武線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131316 (11313) 1131317", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131316 (11313) 1131317", + "lat" : 35.701641362335245, + "e_status_y" : 0, + "line_name_h" : "JR中央・総武緩行線" + }, + "selected" : false + }, { + "data" : { + "id" : "13425", + "source" : "2931", + "target" : "2932", + "line_name_k" : "チュウオウ・ソウブセン", + "is_bullet" : false, + "lon" : 139.83715522681192, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13425, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11313", + "shared_interaction" : "11313", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央・総武線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131315 (11313) 1131316", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131315 (11313) 1131316", + "lat" : 35.701641362335245, + "e_status_y" : 0, + "line_name_h" : "JR中央・総武緩行線" + }, + "selected" : false + }, { + "data" : { + "id" : "13412", + "source" : "2918", + "target" : "2919", + "line_name_k" : "チュウオウ・ソウブセン", + "is_bullet" : false, + "lon" : 139.83715522681192, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13412, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11313", + "shared_interaction" : "11313", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央・総武線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131302 (11313) 1131303", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131302 (11313) 1131303", + "lat" : 35.701641362335245, + "e_status_y" : 0, + "line_name_h" : "JR中央・総武緩行線" + }, + "selected" : false + }, { + "data" : { + "id" : "13411", + "source" : "2917", + "target" : "2918", + "line_name_k" : "チュウオウ・ソウブセン", + "is_bullet" : false, + "lon" : 139.83715522681192, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13411, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11313", + "shared_interaction" : "11313", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央・総武線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131301 (11313) 1131302", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131301 (11313) 1131302", + "lat" : 35.701641362335245, + "e_status_y" : 0, + "line_name_h" : "JR中央・総武緩行線" + }, + "selected" : false + }, { + "data" : { + "id" : "13414", + "source" : "2920", + "target" : "2921", + "line_name_k" : "チュウオウ・ソウブセン", + "is_bullet" : false, + "lon" : 139.83715522681192, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13414, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11313", + "shared_interaction" : "11313", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央・総武線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131304 (11313) 1131305", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131304 (11313) 1131305", + "lat" : 35.701641362335245, + "e_status_y" : 0, + "line_name_h" : "JR中央・総武緩行線" + }, + "selected" : false + }, { + "data" : { + "id" : "13413", + "source" : "2919", + "target" : "2920", + "line_name_k" : "チュウオウ・ソウブセン", + "is_bullet" : false, + "lon" : 139.83715522681192, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13413, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11313", + "shared_interaction" : "11313", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央・総武線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131303 (11313) 1131304", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131303 (11313) 1131304", + "lat" : 35.701641362335245, + "e_status_y" : 0, + "line_name_h" : "JR中央・総武緩行線" + }, + "selected" : false + }, { + "data" : { + "id" : "13416", + "source" : "2922", + "target" : "2923", + "line_name_k" : "チュウオウ・ソウブセン", + "is_bullet" : false, + "lon" : 139.83715522681192, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13416, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11313", + "shared_interaction" : "11313", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央・総武線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131306 (11313) 1131307", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131306 (11313) 1131307", + "lat" : 35.701641362335245, + "e_status_y" : 0, + "line_name_h" : "JR中央・総武緩行線" + }, + "selected" : false + }, { + "data" : { + "id" : "13415", + "source" : "2921", + "target" : "2922", + "line_name_k" : "チュウオウ・ソウブセン", + "is_bullet" : false, + "lon" : 139.83715522681192, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13415, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11313", + "shared_interaction" : "11313", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央・総武線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131305 (11313) 1131306", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131305 (11313) 1131306", + "lat" : 35.701641362335245, + "e_status_y" : 0, + "line_name_h" : "JR中央・総武緩行線" + }, + "selected" : false + }, { + "data" : { + "id" : "13418", + "source" : "2924", + "target" : "2925", + "line_name_k" : "チュウオウ・ソウブセン", + "is_bullet" : false, + "lon" : 139.83715522681192, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13418, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11313", + "shared_interaction" : "11313", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央・総武線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131308 (11313) 1131309", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131308 (11313) 1131309", + "lat" : 35.701641362335245, + "e_status_y" : 0, + "line_name_h" : "JR中央・総武緩行線" + }, + "selected" : false + }, { + "data" : { + "id" : "13417", + "source" : "2923", + "target" : "2924", + "line_name_k" : "チュウオウ・ソウブセン", + "is_bullet" : false, + "lon" : 139.83715522681192, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 10, + "SUID" : 13417, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11313", + "shared_interaction" : "11313", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR中央・総武線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131307 (11313) 1131308", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131307 (11313) 1131308", + "lat" : 35.701641362335245, + "e_status_y" : 0, + "line_name_h" : "JR中央・総武緩行線" + }, + "selected" : false + }, { + "data" : { + "id" : "13496", + "source" : "3004", + "target" : "3005", + "line_name_k" : "オウメセン", + "is_bullet" : false, + "lon" : 139.2400413547656, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13496, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11315", + "shared_interaction" : "11315", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR青梅線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131518 (11315) 1131519", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131518 (11315) 1131519", + "lat" : 35.782572650078514, + "e_status_y" : 0, + "line_name_h" : "JR青梅線" + }, + "selected" : false + }, { + "data" : { + "id" : "13495", + "source" : "3003", + "target" : "3004", + "line_name_k" : "オウメセン", + "is_bullet" : false, + "lon" : 139.2400413547656, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13495, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11315", + "shared_interaction" : "11315", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR青梅線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131517 (11315) 1131518", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131517 (11315) 1131518", + "lat" : 35.782572650078514, + "e_status_y" : 0, + "line_name_h" : "JR青梅線" + }, + "selected" : false + }, { + "data" : { + "id" : "13494", + "source" : "3002", + "target" : "3003", + "line_name_k" : "オウメセン", + "is_bullet" : false, + "lon" : 139.2400413547656, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13494, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11315", + "shared_interaction" : "11315", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR青梅線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131516 (11315) 1131517", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131516 (11315) 1131517", + "lat" : 35.782572650078514, + "e_status_y" : 0, + "line_name_h" : "JR青梅線" + }, + "selected" : false + }, { + "data" : { + "id" : "13493", + "source" : "3001", + "target" : "3002", + "line_name_k" : "オウメセン", + "is_bullet" : false, + "lon" : 139.2400413547656, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13493, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11315", + "shared_interaction" : "11315", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR青梅線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131515 (11315) 1131516", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131515 (11315) 1131516", + "lat" : 35.782572650078514, + "e_status_y" : 0, + "line_name_h" : "JR青梅線" + }, + "selected" : false + }, { + "data" : { + "id" : "13492", + "source" : "3000", + "target" : "3001", + "line_name_k" : "オウメセン", + "is_bullet" : false, + "lon" : 139.2400413547656, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13492, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11315", + "shared_interaction" : "11315", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR青梅線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131514 (11315) 1131515", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131514 (11315) 1131515", + "lat" : 35.782572650078514, + "e_status_y" : 0, + "line_name_h" : "JR青梅線" + }, + "selected" : false + }, { + "data" : { + "id" : "13491", + "source" : "2999", + "target" : "3000", + "line_name_k" : "オウメセン", + "is_bullet" : false, + "lon" : 139.2400413547656, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13491, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11315", + "shared_interaction" : "11315", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR青梅線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131513 (11315) 1131514", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131513 (11315) 1131514", + "lat" : 35.782572650078514, + "e_status_y" : 0, + "line_name_h" : "JR青梅線" + }, + "selected" : false + }, { + "data" : { + "id" : "13490", + "source" : "2998", + "target" : "2999", + "line_name_k" : "オウメセン", + "is_bullet" : false, + "lon" : 139.2400413547656, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13490, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11315", + "shared_interaction" : "11315", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR青梅線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131512 (11315) 1131513", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131512 (11315) 1131513", + "lat" : 35.782572650078514, + "e_status_y" : 0, + "line_name_h" : "JR青梅線" + }, + "selected" : false + }, { + "data" : { + "id" : "13489", + "source" : "2997", + "target" : "2998", + "line_name_k" : "オウメセン", + "is_bullet" : false, + "lon" : 139.2400413547656, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13489, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11315", + "shared_interaction" : "11315", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR青梅線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131511 (11315) 1131512", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131511 (11315) 1131512", + "lat" : 35.782572650078514, + "e_status_y" : 0, + "line_name_h" : "JR青梅線" + }, + "selected" : false + }, { + "data" : { + "id" : "13503", + "source" : "3012", + "target" : "3013", + "line_name_k" : "イツカイチセン", + "is_bullet" : false, + "lon" : 139.29165743387557, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 12, + "SUID" : 13503, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11316", + "shared_interaction" : "11316", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR五日市線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131601 (11316) 1131602", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131601 (11316) 1131602", + "lat" : 35.725830442825945, + "e_status_y" : 0, + "line_name_h" : "JR五日市線" + }, + "selected" : false + }, { + "data" : { + "id" : "13502", + "source" : "3010", + "target" : "3011", + "line_name_k" : "オウメセン", + "is_bullet" : false, + "lon" : 139.2400413547656, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13502, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11315", + "shared_interaction" : "11315", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR青梅線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131524 (11315) 1131525", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131524 (11315) 1131525", + "lat" : 35.782572650078514, + "e_status_y" : 0, + "line_name_h" : "JR青梅線" + }, + "selected" : false + }, { + "data" : { + "id" : "13501", + "source" : "3009", + "target" : "3010", + "line_name_k" : "オウメセン", + "is_bullet" : false, + "lon" : 139.2400413547656, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13501, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11315", + "shared_interaction" : "11315", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR青梅線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131523 (11315) 1131524", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131523 (11315) 1131524", + "lat" : 35.782572650078514, + "e_status_y" : 0, + "line_name_h" : "JR青梅線" + }, + "selected" : false + }, { + "data" : { + "id" : "13500", + "source" : "3008", + "target" : "3009", + "line_name_k" : "オウメセン", + "is_bullet" : false, + "lon" : 139.2400413547656, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13500, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11315", + "shared_interaction" : "11315", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR青梅線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131522 (11315) 1131523", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131522 (11315) 1131523", + "lat" : 35.782572650078514, + "e_status_y" : 0, + "line_name_h" : "JR青梅線" + }, + "selected" : false + }, { + "data" : { + "id" : "13499", + "source" : "3007", + "target" : "3008", + "line_name_k" : "オウメセン", + "is_bullet" : false, + "lon" : 139.2400413547656, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13499, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11315", + "shared_interaction" : "11315", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR青梅線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131521 (11315) 1131522", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131521 (11315) 1131522", + "lat" : 35.782572650078514, + "e_status_y" : 0, + "line_name_h" : "JR青梅線" + }, + "selected" : false + }, { + "data" : { + "id" : "13498", + "source" : "3006", + "target" : "3007", + "line_name_k" : "オウメセン", + "is_bullet" : false, + "lon" : 139.2400413547656, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13498, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11315", + "shared_interaction" : "11315", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR青梅線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131520 (11315) 1131521", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131520 (11315) 1131521", + "lat" : 35.782572650078514, + "e_status_y" : 0, + "line_name_h" : "JR青梅線" + }, + "selected" : false + }, { + "data" : { + "id" : "13497", + "source" : "3005", + "target" : "3006", + "line_name_k" : "オウメセン", + "is_bullet" : false, + "lon" : 139.2400413547656, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13497, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11315", + "shared_interaction" : "11315", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR青梅線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131519 (11315) 1131520", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131519 (11315) 1131520", + "lat" : 35.782572650078514, + "e_status_y" : 0, + "line_name_h" : "JR青梅線" + }, + "selected" : false + }, { + "data" : { + "id" : "13509", + "source" : "3019", + "target" : "3020", + "line_name_k" : "ハチコウセン", + "is_bullet" : false, + "lon" : 139.33299376182276, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13509, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11317", + "shared_interaction" : "11317", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR八高線(八王子~高麗川)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131701 (11317) 1131702", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131701 (11317) 1131702", + "lat" : 35.78050242395001, + "e_status_y" : 0, + "line_name_h" : "JR八高線(八王子~高麗川)" + }, + "selected" : false + }, { + "data" : { + "id" : "13510", + "source" : "3020", + "target" : "3021", + "line_name_k" : "ハチコウセン", + "is_bullet" : false, + "lon" : 139.33299376182276, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13510, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11317", + "shared_interaction" : "11317", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR八高線(八王子~高麗川)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131702 (11317) 1131703", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131702 (11317) 1131703", + "lat" : 35.78050242395001, + "e_status_y" : 0, + "line_name_h" : "JR八高線(八王子~高麗川)" + }, + "selected" : false + }, { + "data" : { + "id" : "13508", + "source" : "3017", + "target" : "3018", + "line_name_k" : "イツカイチセン", + "is_bullet" : false, + "lon" : 139.29165743387557, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 12, + "SUID" : 13508, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11316", + "shared_interaction" : "11316", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR五日市線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131606 (11316) 1131607", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131606 (11316) 1131607", + "lat" : 35.725830442825945, + "e_status_y" : 0, + "line_name_h" : "JR五日市線" + }, + "selected" : false + }, { + "data" : { + "id" : "13506", + "source" : "3015", + "target" : "3016", + "line_name_k" : "イツカイチセン", + "is_bullet" : false, + "lon" : 139.29165743387557, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 12, + "SUID" : 13506, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11316", + "shared_interaction" : "11316", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR五日市線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131604 (11316) 1131605", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131604 (11316) 1131605", + "lat" : 35.725830442825945, + "e_status_y" : 0, + "line_name_h" : "JR五日市線" + }, + "selected" : false + }, { + "data" : { + "id" : "13507", + "source" : "3016", + "target" : "3017", + "line_name_k" : "イツカイチセン", + "is_bullet" : false, + "lon" : 139.29165743387557, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 12, + "SUID" : 13507, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11316", + "shared_interaction" : "11316", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR五日市線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131605 (11316) 1131606", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131605 (11316) 1131606", + "lat" : 35.725830442825945, + "e_status_y" : 0, + "line_name_h" : "JR五日市線" + }, + "selected" : false + }, { + "data" : { + "id" : "13504", + "source" : "3013", + "target" : "3014", + "line_name_k" : "イツカイチセン", + "is_bullet" : false, + "lon" : 139.29165743387557, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 12, + "SUID" : 13504, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11316", + "shared_interaction" : "11316", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR五日市線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131602 (11316) 1131603", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131602 (11316) 1131603", + "lat" : 35.725830442825945, + "e_status_y" : 0, + "line_name_h" : "JR五日市線" + }, + "selected" : false + }, { + "data" : { + "id" : "13505", + "source" : "3014", + "target" : "3015", + "line_name_k" : "イツカイチセン", + "is_bullet" : false, + "lon" : 139.29165743387557, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 12, + "SUID" : 13505, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11316", + "shared_interaction" : "11316", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR五日市線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131603 (11316) 1131604", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131603 (11316) 1131604", + "lat" : 35.725830442825945, + "e_status_y" : 0, + "line_name_h" : "JR五日市線" + }, + "selected" : false + }, { + "data" : { + "id" : "13513", + "source" : "3023", + "target" : "3024", + "line_name_k" : "ハチコウセン", + "is_bullet" : false, + "lon" : 139.33299376182276, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13513, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11317", + "shared_interaction" : "11317", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR八高線(八王子~高麗川)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131705 (11317) 1131706", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131705 (11317) 1131706", + "lat" : 35.78050242395001, + "e_status_y" : 0, + "line_name_h" : "JR八高線(八王子~高麗川)" + }, + "selected" : false + }, { + "data" : { + "id" : "13511", + "source" : "3021", + "target" : "3022", + "line_name_k" : "ハチコウセン", + "is_bullet" : false, + "lon" : 139.33299376182276, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13511, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11317", + "shared_interaction" : "11317", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR八高線(八王子~高麗川)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131703 (11317) 1131704", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131703 (11317) 1131704", + "lat" : 35.78050242395001, + "e_status_y" : 0, + "line_name_h" : "JR八高線(八王子~高麗川)" + }, + "selected" : false + }, { + "data" : { + "id" : "13512", + "source" : "3022", + "target" : "3023", + "line_name_k" : "ハチコウセン", + "is_bullet" : false, + "lon" : 139.33299376182276, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13512, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11317", + "shared_interaction" : "11317", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR八高線(八王子~高麗川)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131704 (11317) 1131705", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131704 (11317) 1131705", + "lat" : 35.78050242395001, + "e_status_y" : 0, + "line_name_h" : "JR八高線(八王子~高麗川)" + }, + "selected" : false + }, { + "data" : { + "id" : "13479", + "source" : "2987", + "target" : "2988", + "line_name_k" : "オウメセン", + "is_bullet" : false, + "lon" : 139.2400413547656, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13479, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11315", + "shared_interaction" : "11315", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR青梅線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131501 (11315) 1131502", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131501 (11315) 1131502", + "lat" : 35.782572650078514, + "e_status_y" : 0, + "line_name_h" : "JR青梅線" + }, + "selected" : false + }, { + "data" : { + "id" : "13480", + "source" : "2988", + "target" : "2989", + "line_name_k" : "オウメセン", + "is_bullet" : false, + "lon" : 139.2400413547656, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13480, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11315", + "shared_interaction" : "11315", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR青梅線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131502 (11315) 1131503", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131502 (11315) 1131503", + "lat" : 35.782572650078514, + "e_status_y" : 0, + "line_name_h" : "JR青梅線" + }, + "selected" : false + }, { + "data" : { + "id" : "13485", + "source" : "2993", + "target" : "2994", + "line_name_k" : "オウメセン", + "is_bullet" : false, + "lon" : 139.2400413547656, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13485, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11315", + "shared_interaction" : "11315", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR青梅線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131507 (11315) 1131508", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131507 (11315) 1131508", + "lat" : 35.782572650078514, + "e_status_y" : 0, + "line_name_h" : "JR青梅線" + }, + "selected" : false + }, { + "data" : { + "id" : "13486", + "source" : "2994", + "target" : "2995", + "line_name_k" : "オウメセン", + "is_bullet" : false, + "lon" : 139.2400413547656, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13486, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11315", + "shared_interaction" : "11315", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR青梅線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131508 (11315) 1131509", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131508 (11315) 1131509", + "lat" : 35.782572650078514, + "e_status_y" : 0, + "line_name_h" : "JR青梅線" + }, + "selected" : false + }, { + "data" : { + "id" : "13487", + "source" : "2995", + "target" : "2996", + "line_name_k" : "オウメセン", + "is_bullet" : false, + "lon" : 139.2400413547656, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13487, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11315", + "shared_interaction" : "11315", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR青梅線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131509 (11315) 1131510", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131509 (11315) 1131510", + "lat" : 35.782572650078514, + "e_status_y" : 0, + "line_name_h" : "JR青梅線" + }, + "selected" : false + }, { + "data" : { + "id" : "13488", + "source" : "2996", + "target" : "2997", + "line_name_k" : "オウメセン", + "is_bullet" : false, + "lon" : 139.2400413547656, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13488, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11315", + "shared_interaction" : "11315", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR青梅線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131510 (11315) 1131511", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131510 (11315) 1131511", + "lat" : 35.782572650078514, + "e_status_y" : 0, + "line_name_h" : "JR青梅線" + }, + "selected" : false + }, { + "data" : { + "id" : "13481", + "source" : "2989", + "target" : "2990", + "line_name_k" : "オウメセン", + "is_bullet" : false, + "lon" : 139.2400413547656, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13481, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11315", + "shared_interaction" : "11315", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR青梅線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131503 (11315) 1131504", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131503 (11315) 1131504", + "lat" : 35.782572650078514, + "e_status_y" : 0, + "line_name_h" : "JR青梅線" + }, + "selected" : false + }, { + "data" : { + "id" : "13482", + "source" : "2990", + "target" : "2991", + "line_name_k" : "オウメセン", + "is_bullet" : false, + "lon" : 139.2400413547656, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13482, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11315", + "shared_interaction" : "11315", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR青梅線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131504 (11315) 1131505", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131504 (11315) 1131505", + "lat" : 35.782572650078514, + "e_status_y" : 0, + "line_name_h" : "JR青梅線" + }, + "selected" : false + }, { + "data" : { + "id" : "13483", + "source" : "2991", + "target" : "2992", + "line_name_k" : "オウメセン", + "is_bullet" : false, + "lon" : 139.2400413547656, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13483, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11315", + "shared_interaction" : "11315", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR青梅線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131505 (11315) 1131506", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131505 (11315) 1131506", + "lat" : 35.782572650078514, + "e_status_y" : 0, + "line_name_h" : "JR青梅線" + }, + "selected" : false + }, { + "data" : { + "id" : "13484", + "source" : "2992", + "target" : "2993", + "line_name_k" : "オウメセン", + "is_bullet" : false, + "lon" : 139.2400413547656, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13484, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11315", + "shared_interaction" : "11315", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR青梅線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131506 (11315) 1131507", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131506 (11315) 1131507", + "lat" : 35.782572650078514, + "e_status_y" : 0, + "line_name_h" : "JR青梅線" + }, + "selected" : false + }, { + "data" : { + "id" : "13566", + "source" : "3079", + "target" : "3080", + "line_name_k" : "ジョウバンセン", + "is_bullet" : false, + "lon" : 139.92381250144126, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13566, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11320", + "shared_interaction" : "11320", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR常磐線(上野~取手)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1132003 (11320) 1132004", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1132003 (11320) 1132004", + "lat" : 35.8197193273695, + "e_status_y" : 0, + "line_name_h" : "JR常磐線(上野~取手)" + }, + "selected" : false + }, { + "data" : { + "id" : "13567", + "source" : "3080", + "target" : "3081", + "line_name_k" : "ジョウバンセン", + "is_bullet" : false, + "lon" : 139.92381250144126, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13567, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11320", + "shared_interaction" : "11320", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR常磐線(上野~取手)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1132004 (11320) 1132005", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1132004 (11320) 1132005", + "lat" : 35.8197193273695, + "e_status_y" : 0, + "line_name_h" : "JR常磐線(上野~取手)" + }, + "selected" : false + }, { + "data" : { + "id" : "13564", + "source" : "3077", + "target" : "3078", + "line_name_k" : "ジョウバンセン", + "is_bullet" : false, + "lon" : 139.92381250144126, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13564, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11320", + "shared_interaction" : "11320", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR常磐線(上野~取手)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1132001 (11320) 1132002", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1132001 (11320) 1132002", + "lat" : 35.8197193273695, + "e_status_y" : 0, + "line_name_h" : "JR常磐線(上野~取手)" + }, + "selected" : false + }, { + "data" : { + "id" : "13565", + "source" : "3078", + "target" : "3079", + "line_name_k" : "ジョウバンセン", + "is_bullet" : false, + "lon" : 139.92381250144126, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13565, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11320", + "shared_interaction" : "11320", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR常磐線(上野~取手)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1132002 (11320) 1132003", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1132002 (11320) 1132003", + "lat" : 35.8197193273695, + "e_status_y" : 0, + "line_name_h" : "JR常磐線(上野~取手)" + }, + "selected" : false + }, { + "data" : { + "id" : "13570", + "source" : "3083", + "target" : "3084", + "line_name_k" : "ジョウバンセン", + "is_bullet" : false, + "lon" : 139.92381250144126, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13570, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11320", + "shared_interaction" : "11320", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR常磐線(上野~取手)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1132007 (11320) 1132008", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1132007 (11320) 1132008", + "lat" : 35.8197193273695, + "e_status_y" : 0, + "line_name_h" : "JR常磐線(上野~取手)" + }, + "selected" : false + }, { + "data" : { + "id" : "13568", + "source" : "3081", + "target" : "3082", + "line_name_k" : "ジョウバンセン", + "is_bullet" : false, + "lon" : 139.92381250144126, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13568, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11320", + "shared_interaction" : "11320", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR常磐線(上野~取手)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1132005 (11320) 1132006", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1132005 (11320) 1132006", + "lat" : 35.8197193273695, + "e_status_y" : 0, + "line_name_h" : "JR常磐線(上野~取手)" + }, + "selected" : false + }, { + "data" : { + "id" : "13569", + "source" : "3082", + "target" : "3083", + "line_name_k" : "ジョウバンセン", + "is_bullet" : false, + "lon" : 139.92381250144126, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 11, + "SUID" : 13569, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11320", + "shared_interaction" : "11320", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "JR常磐線(上野~取手)", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1132006 (11320) 1132007", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1132006 (11320) 1132007", + "lat" : 35.8197193273695, + "e_status_y" : 0, + "line_name_h" : "JR常磐線(上野~取手)" + }, + "selected" : false + }, { + "data" : { + "id" : "13532", + "source" : "3044", + "target" : "3045", + "line_name_k" : "ウツノミヤセン", + "is_bullet" : false, + "lon" : 139.8464030031987, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 9, + "SUID" : 13532, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11319", + "shared_interaction" : "11319", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "宇都宮線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131901 (11319) 1131902", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131901 (11319) 1131902", + "lat" : 36.37943924080079, + "e_status_y" : 0, + "line_name_h" : "JR東北本線" + }, + "selected" : false + }, { + "data" : { + "id" : "13533", + "source" : "3045", + "target" : "3046", + "line_name_k" : "ウツノミヤセン", + "is_bullet" : false, + "lon" : 139.8464030031987, + "company_name_k" : "ジェイアールヒガシニホン", + "zoom" : 9, + "SUID" : 13533, + "company_type" : 1, + "company_name_h" : "東日本旅客鉄道株式会社", + "interaction" : "11319", + "shared_interaction" : "11319", + "company_url" : "http://www.jreast.co.jp/", + "line_name" : "宇都宮線", + "selected" : false, + "company_name" : "JR東日本", + "company_cd" : 2, + "name" : "1131902 (11319) 1131903", + "rr_cd" : 11, + "company_name_r" : "JR東日本", + "e_status_x" : 0, + "shared_name" : "1131902 (11319) 1131903", + "lat" : 36.37943924080079, + "e_status_y" : 0, + "line_name_h" : "JR東北本線" + }, + "selected" : false + } ] +} \ No newline at end of file diff --git a/graph/formats/sigmajs/sigmajs.go b/graph/formats/sigmajs/sigmajs.go new file mode 100644 index 00000000..09500035 --- /dev/null +++ b/graph/formats/sigmajs/sigmajs.go @@ -0,0 +1,128 @@ +// Copyright ©2018 The Gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package sigmajs implements marshaling and unmarshaling of Sigma.js JSON documents. +// +// See http://sigmajs.org/ for Sigma.js documentation. +package sigmajs // import "gonum.org/v1/gonum/graph/formats/sigmajs" + +import ( + "encoding/json" + "errors" + "fmt" +) + +// Graph is a Sigma.js graph. +type Graph struct { + Nodes []Node `json:"nodes"` + Edges []Edge `json:"edges"` +} + +// Node is a Sigma.js node. +type Node struct { + ID string + Attributes map[string]interface{} +} + +var ( + _ json.Marshaler = (*Node)(nil) + _ json.Unmarshaler = (*Node)(nil) +) + +// MarshalJSON implements the json.Marshaler interface. +func (n *Node) MarshalJSON() ([]byte, error) { + if n.Attributes == nil { + type node struct { + ID string `json:"id"` + } + return json.Marshal(node{ID: n.ID}) + } + n.Attributes["id"] = n.ID + b, err := json.Marshal(n.Attributes) + delete(n.Attributes, "id") + return b, err +} + +// UnmarshalJSON implements the json.Unmarshaler interface. +func (n *Node) UnmarshalJSON(data []byte) error { + var attrs map[string]interface{} + err := json.Unmarshal(data, &attrs) + if err != nil { + return err + } + id, ok := attrs["id"] + if !ok { + return errors.New("sigmajs: no ID") + } + n.ID = fmt.Sprint(id) + delete(attrs, "id") + if len(attrs) != 0 { + n.Attributes = attrs + } + return nil +} + +// Edge is a Sigma.js edge. +type Edge struct { + ID string + Source string + Target string + Attributes map[string]interface{} +} + +var ( + _ json.Marshaler = (*Edge)(nil) + _ json.Unmarshaler = (*Edge)(nil) +) + +// MarshalJSON implements the json.Marshaler interface. +func (e *Edge) MarshalJSON() ([]byte, error) { + if e.Attributes == nil { + type edge struct { + ID string `json:"id"` + Source string `json:"source"` + Target string `json:"target"` + } + return json.Marshal(edge{ID: e.ID, Source: e.Source, Target: e.Target}) + } + e.Attributes["id"] = e.ID + e.Attributes["source"] = e.Source + e.Attributes["target"] = e.Target + b, err := json.Marshal(e.Attributes) + delete(e.Attributes, "id") + delete(e.Attributes, "source") + delete(e.Attributes, "target") + return b, err +} + +// UnmarshalJSON implements the json.Unmarshaler interface. +func (e *Edge) UnmarshalJSON(data []byte) error { + var attrs map[string]interface{} + err := json.Unmarshal(data, &attrs) + if err != nil { + return err + } + id, ok := attrs["id"] + if !ok { + return errors.New("sigmajs: no ID") + } + source, ok := attrs["source"] + if !ok { + return errors.New("sigmajs: no source") + } + target, ok := attrs["target"] + if !ok { + return errors.New("sigmajs: no target") + } + e.ID = fmt.Sprint(id) + e.Source = fmt.Sprint(source) + e.Target = fmt.Sprint(target) + delete(attrs, "id") + delete(attrs, "source") + delete(attrs, "target") + if len(attrs) != 0 { + e.Attributes = attrs + } + return nil +} diff --git a/graph/formats/sigmajs/sigmajs_test.go b/graph/formats/sigmajs/sigmajs_test.go new file mode 100644 index 00000000..ed67d607 --- /dev/null +++ b/graph/formats/sigmajs/sigmajs_test.go @@ -0,0 +1,334 @@ +// Copyright ©2018 The Gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package sigmajs + +import ( + "encoding/json" + "io/ioutil" + "path/filepath" + "reflect" + "testing" +) + +var sigmajsExampleTests = []struct { + path string + wantNodes int + wantEdges int + wantGraph *Graph + wantAttributes map[string]bool +}{ + { + path: "geolocalized.json", + wantNodes: 17, + wantEdges: 35, + wantGraph: &Graph{ + Nodes: []Node{ + { + ID: "n1", + Attributes: map[string]interface{}{ + "label": "n1", + "longitude": 2.48, + "latitude": 50.93, + "size": "5.5", + "color": "rgb(1,179,255)", + }, + }, + { + ID: "n2", + Attributes: map[string]interface{}{ + "label": "n2", + "latitude": 50.88, + "longitude": 2.0, + "size": "5.0", + "color": "rgb(1,179,255)", + }, + }, + { + ID: "n4", + Attributes: map[string]interface{}{ + "label": "n4", + "latitude": 49.4, + "longitude": 0.19, + "size": "6.0", + "color": "rgb(1,179,255)", + }, + }, + { + ID: "n5", + Attributes: map[string]interface{}{ + "label": "n5", + "latitude": 48.49, + "longitude": -1.92, + "size": "6.0", + "color": "rgb(1,179,255)", + }, + }, + { + ID: "n6", + Attributes: map[string]interface{}{ + "label": "n6", + "latitude": 48.26, + "longitude": -4.38, + "size": "4.5", + "color": "rgb(1,179,255)", + }, + }, + { + ID: "n7", + Attributes: map[string]interface{}{ + "label": "n7", + "latitude": 47.15, + "longitude": -2.09, + "size": "6.5", + "color": "rgb(1,179,255)", + }, + }, + { + ID: "n8", + Attributes: map[string]interface{}{ + "label": "n8", + "latitude": 46.02, + "longitude": -1.04, + "size": "6.5", + "color": "rgb(1,179,255)", + }, + }, + { + ID: "n9", + Attributes: map[string]interface{}{ + "label": "n9", + "latitude": 43.22, + "longitude": -1.85, + "size": "5.0", + "color": "rgb(1,179,255)", + }, + }, + { + ID: "n10", + Attributes: map[string]interface{}{ + "label": "n10", + "latitude": 42.38, + "longitude": 3.18, + "color": "rgb(1,179,255)", + "size": "4.0", + }, + }, + { + ID: "n11", + Attributes: map[string]interface{}{ + "label": "n11", + "latitude": 43.47, + "longitude": 4.04, + "size": "5.5", + "color": "rgb(1,179,255)", + }, + }, + { + ID: "n12", + Attributes: map[string]interface{}{ + "label": "n12", + "latitude": 42.9, + "longitude": 6.59, + "size": "5.0", + "color": "rgb(1,179,255)", + }, + }, + { + ID: "n13", + Attributes: map[string]interface{}{ + "label": "n13", + "latitude": 43.62, + "longitude": 7.66, + "size": "6.0", + "color": "rgb(1,179,255)", + }, + }, + { + ID: "n14", + Attributes: map[string]interface{}{ + "label": "n14", + "latitude": 46.05, + "longitude": 6.19, + "size": "6.5", + "color": "rgb(1,179,255)", + }, + }, + { + ID: "n15", + Attributes: map[string]interface{}{ + "label": "n15", + "latitude": 47.43, + "longitude": 7.65, + "size": "6.0", + "color": "rgb(1,179,255)", + }, + }, + { + ID: "n16", + Attributes: map[string]interface{}{ + "label": "n16", + "latitude": 48.9, + "longitude": 8.32, + "size": "5.5", + "color": "rgb(1,179,255)", + }, + }, + { + ID: "n17", + Attributes: map[string]interface{}{ + "label": "n17", + "latitude": 49.83, + "longitude": 4.94, + "size": "6.5", + "color": "rgb(1,179,255)", + }, + }, + { + ID: "Paris", + Attributes: map[string]interface{}{ + "label": "Paris", + "latitude": 48.72, + "longitude": 2.46, + "size": "9.0", + "color": "rgb(1,179,255)", + }, + }, + }, + Edges: []Edge{ + {ID: "8", Source: "n1", Target: "Paris"}, + {ID: "7", Source: "n2", Target: "n4"}, + {ID: "28", Source: "n4", Target: "n1"}, + {ID: "30", Source: "n4", Target: "n7"}, + {ID: "26", Source: "n5", Target: "n1"}, + {ID: "27", Source: "n5", Target: "n2"}, + {ID: "0", Source: "n6", Target: "n5"}, + {ID: "29", Source: "n7", Target: "n5"}, + {ID: "1", Source: "n7", Target: "n8"}, + {ID: "17", Source: "n7", Target: "Paris"}, + {ID: "10", Source: "n8", Target: "n13"}, + {ID: "18", Source: "n8", Target: "Paris"}, + {ID: "15", Source: "n9", Target: "n8"}, + {ID: "34", Source: "n10", Target: "n9"}, + {ID: "31", Source: "n10", Target: "n11"}, + {ID: "11", Source: "n11", Target: "n13"}, + {ID: "13", Source: "n11", Target: "n14"}, + {ID: "32", Source: "n12", Target: "n10"}, + {ID: "12", Source: "n12", Target: "n11"}, + {ID: "23", Source: "n12", Target: "n13"}, + {ID: "33", Source: "n13", Target: "n10"}, + {ID: "25", Source: "n13", Target: "n14"}, + {ID: "14", Source: "n14", Target: "n9"}, + {ID: "5", Source: "n14", Target: "n17"}, + {ID: "19", Source: "n14", Target: "Paris"}, + {ID: "6", Source: "n15", Target: "n8"}, + {ID: "22", Source: "n15", Target: "n16"}, + {ID: "20", Source: "n15", Target: "Paris"}, + {ID: "4", Source: "n16", Target: "n15"}, + {ID: "24", Source: "n16", Target: "Paris"}, + {ID: "9", Source: "n17", Target: "n7"}, + {ID: "21", Source: "n17", Target: "n17"}, + {ID: "2", Source: "Paris", Target: "n4"}, + {ID: "3", Source: "Paris", Target: "n17"}, + {ID: "16", Source: "Paris", Target: "Paris"}, + }, + }, + }, + { + path: "arctic.json", + wantNodes: 1715, + wantEdges: 6676, + wantAttributes: map[string]bool{ + "label": true, + "x": true, + "y": true, + "color": true, + "size": true, + "attributes": true, + "attributes.nodedef": true, + }, + }, +} + +func TestUnmarshal(t *testing.T) { + for _, test := range sigmajsExampleTests { + data, err := ioutil.ReadFile(filepath.Join("testdata", test.path)) + if err != nil { + t.Errorf("failed to read %q: %v", test.path, err) + continue + } + var got Graph + err = json.Unmarshal(data, &got) + if err != nil { + t.Errorf("failed to unmarshal %q: %v", test.path, err) + continue + } + if len(got.Nodes) != test.wantNodes { + t.Errorf("unexpected result for order of %q: got:%d want:%d", test.path, len(got.Nodes), test.wantNodes) + } + if len(got.Edges) != test.wantEdges { + t.Errorf("unexpected result for size of %q: got:%d want:%d", test.path, len(got.Edges), test.wantEdges) + } + if test.wantGraph != nil && !reflect.DeepEqual(&got, test.wantGraph) { + t.Errorf("unexpected result for %q:\ngot:\n%#v\nwant:\n%#v", test.path, got, test.wantGraph) + } + if test.wantAttributes != nil { + var paths []string + for _, n := range got.Nodes { + paths = attrPaths(paths, "", n.Attributes) + } + gotAttrs := make(map[string]bool) + for _, p := range paths { + gotAttrs[p] = true + } + if !reflect.DeepEqual(gotAttrs, test.wantAttributes) { + t.Errorf("unexpected result for %q:\ngot:\n%#v\nwant:\n%#v", test.path, gotAttrs, test.wantAttributes) + } + } + } +} + +func attrPaths(dst []string, prefix string, m map[string]interface{}) []string { + for k, v := range m { + path := prefix + if path != "" { + path += "." + } + if v, ok := v.(map[string]interface{}); ok { + dst = attrPaths(dst, path+k, v) + } + dst = append(dst, path+k) + } + return dst +} + +func TestMarshal(t *testing.T) { + for _, test := range sigmajsExampleTests { + data, err := ioutil.ReadFile(filepath.Join("testdata", test.path)) + if err != nil { + t.Errorf("failed to read %q: %v", test.path, err) + continue + } + var want Graph + err = json.Unmarshal(data, &want) + if err != nil { + t.Errorf("failed to unmarshal %q: %v", test.path, err) + continue + } + marshaled, err := json.Marshal(want) + if err != nil { + t.Errorf("failed to unmarshal %q: %v", test.path, err) + continue + } + var got Graph + err = json.Unmarshal(marshaled, &got) + if err != nil { + t.Errorf("failed to unmarshal %q: %v", test.path, err) + continue + } + if !reflect.DeepEqual(got, want) { + t.Errorf("unexpected result for %q:\ngot:\n%#v\nwant:\n%#v", test.path, got, want) + } + } +} diff --git a/graph/formats/sigmajs/testdata/LICENSE.txt b/graph/formats/sigmajs/testdata/LICENSE.txt new file mode 100644 index 00000000..81739df1 --- /dev/null +++ b/graph/formats/sigmajs/testdata/LICENSE.txt @@ -0,0 +1,12 @@ +Copyright (C) 2013-2014, Alexis Jacomy, http://sigmajs.org + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +IN THE SOFTWARE. diff --git a/graph/formats/sigmajs/testdata/arctic.json b/graph/formats/sigmajs/testdata/arctic.json new file mode 100644 index 00000000..51154118 --- /dev/null +++ b/graph/formats/sigmajs/testdata/arctic.json @@ -0,0 +1 @@ +{"edges":[{"source":"473","target":"313","id":"6432"},{"source":"285","target":"50","id":"357"},{"source":"441","target":"1394","id":"4376"},{"source":"51","target":"50","id":"5581"},{"source":"1051","target":"428","id":"2763"},{"source":"1712","target":"377","id":"6595"},{"source":"1197","target":"79","id":"3431"},{"source":"515","target":"608","id":"1171"},{"source":"397","target":"396","id":"3911"},{"source":"499","target":"49","id":"829"},{"source":"362","target":"177","id":"6459"},{"source":"634","target":"281","id":"1234"},{"source":"1070","target":"436","id":"2819"},{"source":"1672","target":"816","id":"6296"},{"source":"279","target":"335","id":"504"},{"source":"424","target":"130","id":"4942"},{"source":"744","target":"65","id":"1559"},{"source":"1176","target":"1177","id":"3296"},{"source":"957","target":"958","id":"2426"},{"source":"1631","target":"206","id":"6038"},{"source":"631","target":"53","id":"1216"},{"source":"1594","target":"76","id":"5762"},{"source":"832","target":"237","id":"1880"},{"source":"494","target":"128","id":"4201"},{"source":"1034","target":"209","id":"2675"},{"source":"451","target":"452","id":"739"},{"source":"573","target":"279","id":"1044"},{"source":"1540","target":"335","id":"5303"},{"source":"631","target":"632","id":"1218"},{"source":"1563","target":"1564","id":"5497"},{"source":"778","target":"645","id":"1682"},{"source":"765","target":"747","id":"4823"},{"source":"1249","target":"1409","id":"5912"},{"source":"1650","target":"484","id":"6159"},{"source":"630","target":"240","id":"1211"},{"source":"1524","target":"1138","id":"5262"},{"source":"308","target":"368","id":"566"},{"source":"1718","target":"1717","id":"6626"},{"source":"730","target":"51","id":"1522"},{"source":"1513","target":"68","id":"5214"},{"source":"42","target":"281","id":"344"},{"source":"1453","target":"1","id":"4761"},{"source":"64","target":"67","id":"1828"},{"source":"868","target":"82","id":"2021"},{"source":"408","target":"50","id":"875"},{"source":"982","target":"250","id":"2513"},{"source":"115","target":"364","id":"2320"},{"source":"271","target":"38","id":"4327"},{"source":"117","target":"120","id":"124"},{"source":"1052","target":"208","id":"2769"},{"source":"1378","target":"293","id":"4282"},{"source":"496","target":"403","id":"822"},{"source":"1696","target":"53","id":"6426"},{"source":"761","target":"82","id":"1615"},{"source":"252","target":"250","id":"758"},{"source":"1353","target":"281","id":"4174"},{"source":"186","target":"188","id":"208"},{"source":"1179","target":"284","id":"3309"},{"source":"453","target":"76","id":"1617"},{"source":"451","target":"53","id":"740"},{"source":"1177","target":"427","id":"5363"},{"source":"1000","target":"567","id":"3291"},{"source":"1590","target":"567","id":"5716"},{"source":"716","target":"711","id":"1449"},{"source":"199","target":"201","id":"3322"},{"source":"1273","target":"1229","id":"3764"},{"source":"1372","target":"216","id":"4258"},{"source":"434","target":"433","id":"940"},{"source":"660","target":"662","id":"4041"},{"source":"1575","target":"281","id":"5603"},{"source":"1629","target":"177","id":"6026"},{"source":"611","target":"53","id":"1176"},{"source":"794","target":"102","id":"1736"},{"source":"687","target":"53","id":"1381"},{"source":"1054","target":"1","id":"2777"},{"source":"1214","target":"82","id":"3488"},{"source":"61","target":"408","id":"862"},{"source":"42","target":"282","id":"345"},{"source":"452","target":"50","id":"2279"},{"source":"225","target":"211","id":"6087"},{"source":"1715","target":"182","id":"6613"},{"source":"1253","target":"377","id":"6559"},{"source":"385","target":"303","id":"3685"},{"source":"1480","target":"919","id":"4981"},{"source":"1253","target":"182","id":"6561"},{"source":"1709","target":"1062","id":"6547"},{"source":"1583","target":"241","id":"5667"},{"source":"1604","target":"1126","id":"5852"},{"source":"456","target":"30","id":"5812"},{"source":"333","target":"50","id":"493"},{"source":"574","target":"573","id":"1062"},{"source":"1420","target":"344","id":"4557"},{"source":"878","target":"645","id":"2076"},{"source":"1109","target":"177","id":"3001"},{"source":"1349","target":"628","id":"4140"},{"source":"504","target":"568","id":"1638"},{"source":"138","target":"133","id":"6170"},{"source":"971","target":"311","id":"2472"},{"source":"245","target":"53","id":"1735"},{"source":"1536","target":"104","id":"5287"},{"source":"1558","target":"79","id":"5446"},{"source":"1091","target":"119","id":"2914"},{"source":"714","target":"870","id":"6655"},{"source":"1601","target":"965","id":"5798"},{"source":"450","target":"272","id":"4689"},{"source":"535","target":"537","id":"2466"},{"source":"1253","target":"185","id":"6562"},{"source":"1457","target":"166","id":"4781"},{"source":"1162","target":"379","id":"3222"},{"source":"1179","target":"282","id":"3307"},{"source":"570","target":"571","id":"1039"},{"source":"1571","target":"1572","id":"5541"},{"source":"49","target":"182","id":"5183"},{"source":"865","target":"511","id":"2290"},{"source":"1082","target":"1083","id":"6574"},{"source":"484","target":"411","id":"5588"},{"source":"755","target":"211","id":"1591"},{"source":"988","target":"316","id":"2523"},{"source":"0","target":"1","id":"1"},{"source":"1261","target":"298","id":"3690"},{"source":"256","target":"296","id":"5165"},{"source":"787","target":"322","id":"6469"},{"source":"1164","target":"424","id":"3989"},{"source":"1222","target":"185","id":"3537"},{"source":"1263","target":"570","id":"3708"},{"source":"1560","target":"1561","id":"5481"},{"source":"462","target":"79","id":"772"},{"source":"578","target":"580","id":"5679"},{"source":"987","target":"335","id":"3049"},{"source":"311","target":"79","id":"468"},{"source":"758","target":"403","id":"5833"},{"source":"95","target":"82","id":"103"},{"source":"895","target":"64","id":"2138"},{"source":"944","target":"53","id":"2362"},{"source":"1660","target":"48","id":"6226"},{"source":"45","target":"46","id":"3235"},{"source":"808","target":"280","id":"1788"},{"source":"969","target":"970","id":"2470"},{"source":"1628","target":"405","id":"6019"},{"source":"1685","target":"1","id":"6395"},{"source":"100","target":"68","id":"1842"},{"source":"1219","target":"685","id":"3518"},{"source":"717","target":"713","id":"1459"},{"source":"901","target":"872","id":"2166"},{"source":"1050","target":"1402","id":"4443"},{"source":"1290","target":"325","id":"3835"},{"source":"492","target":"121","id":"814"},{"source":"754","target":"312","id":"5439"},{"source":"1411","target":"537","id":"4513"},{"source":"779","target":"84","id":"1687"},{"source":"180","target":"79","id":"201"},{"source":"1355","target":"296","id":"4176"},{"source":"469","target":"974","id":"3191"},{"source":"1001","target":"460","id":"2547"},{"source":"1454","target":"1","id":"5916"},{"source":"119","target":"114","id":"3176"},{"source":"910","target":"177","id":"2224"},{"source":"53","target":"68","id":"1110"},{"source":"1374","target":"406","id":"4269"},{"source":"1483","target":"648","id":"4992"},{"source":"1349","target":"177","id":"4141"},{"source":"998","target":"993","id":"2545"},{"source":"44","target":"46","id":"42"},{"source":"36","target":"40","id":"441"},{"source":"279","target":"61","id":"503"},{"source":"833","target":"715","id":"1888"},{"source":"752","target":"847","id":"1941"},{"source":"1604","target":"495","id":"5849"},{"source":"1191","target":"1025","id":"3399"},{"source":"1427","target":"1155","id":"4611"},{"source":"510","target":"262","id":"6333"},{"source":"1152","target":"996","id":"4495"},{"source":"1337","target":"48","id":"4072"},{"source":"730","target":"731","id":"1520"},{"source":"410","target":"280","id":"671"},{"source":"577","target":"581","id":"4393"},{"source":"1293","target":"113","id":"3843"},{"source":"681","target":"53","id":"1368"},{"source":"1346","target":"872","id":"4122"},{"source":"750","target":"312","id":"1585"},{"source":"871","target":"68","id":"2040"},{"source":"1405","target":"638","id":"4454"},{"source":"1426","target":"323","id":"4595"},{"source":"1713","target":"37","id":"6603"},{"source":"45","target":"852","id":"3234"},{"source":"1606","target":"1579","id":"5860"},{"source":"482","target":"334","id":"3839"},{"source":"587","target":"590","id":"1108"},{"source":"49","target":"281","id":"5190"},{"source":"65","target":"118","id":"2130"},{"source":"1362","target":"105","id":"4226"},{"source":"1512","target":"1","id":"5213"},{"source":"1269","target":"49","id":"3750"},{"source":"305","target":"309","id":"400"},{"source":"677","target":"53","id":"1361"},{"source":"1545","target":"772","id":"5353"},{"source":"73","target":"70","id":"1709"},{"source":"1146","target":"613","id":"3658"},{"source":"1168","target":"185","id":"3261"},{"source":"1178","target":"170","id":"3298"},{"source":"1571","target":"329","id":"5537"},{"source":"1230","target":"230","id":"3581"},{"source":"1577","target":"712","id":"5619"},{"source":"1397","target":"378","id":"4411"},{"source":"1344","target":"498","id":"4115"},{"source":"590","target":"267","id":"5169"},{"source":"1291","target":"1292","id":"5644"},{"source":"568","target":"708","id":"1644"},{"source":"1188","target":"76","id":"3382"},{"source":"853","target":"313","id":"1969"},{"source":"716","target":"109","id":"1454"},{"source":"1025","target":"65","id":"4625"},{"source":"1290","target":"826","id":"3836"},{"source":"1046","target":"1138","id":"6339"},{"source":"1632","target":"806","id":"6051"},{"source":"930","target":"150","id":"6080"},{"source":"1361","target":"217","id":"4203"},{"source":"639","target":"53","id":"1257"},{"source":"862","target":"772","id":"2628"},{"source":"1150","target":"976","id":"3134"},{"source":"1333","target":"623","id":"4047"},{"source":"273","target":"37","id":"5565"},{"source":"1457","target":"49","id":"4789"},{"source":"243","target":"247","id":"282"},{"source":"330","target":"294","id":"482"},{"source":"1657","target":"65","id":"6208"},{"source":"75","target":"76","id":"69"},{"source":"1223","target":"292","id":"3563"},{"source":"310","target":"45","id":"405"},{"source":"687","target":"96","id":"1383"},{"source":"187","target":"190","id":"218"},{"source":"109","target":"150","id":"5723"},{"source":"644","target":"743","id":"1554"},{"source":"374","target":"119","id":"5177"},{"source":"1248","target":"1607","id":"5899"},{"source":"1388","target":"974","id":"4358"},{"source":"1163","target":"422","id":"3217"},{"source":"1017","target":"277","id":"3978"},{"source":"1292","target":"1582","id":"5659"},{"source":"871","target":"61","id":"2041"},{"source":"1359","target":"1360","id":"4198"},{"source":"660","target":"888","id":"4043"},{"source":"424","target":"654","id":"4945"},{"source":"86","target":"87","id":"79"},{"source":"274","target":"40","id":"323"},{"source":"363","target":"364","id":"555"},{"source":"693","target":"97","id":"1399"},{"source":"1074","target":"262","id":"2845"},{"source":"597","target":"598","id":"1143"},{"source":"538","target":"51","id":"4661"},{"source":"408","target":"49","id":"873"},{"source":"114","target":"598","id":"2214"},{"source":"538","target":"50","id":"4660"},{"source":"1707","target":"1049","id":"6536"},{"source":"1606","target":"1282","id":"5861"},{"source":"1080","target":"301","id":"2849"},{"source":"1485","target":"498","id":"5003"},{"source":"169","target":"171","id":"191"},{"source":"1684","target":"281","id":"6389"},{"source":"1131","target":"1132","id":"3067"},{"source":"547","target":"463","id":"949"},{"source":"799","target":"405","id":"1758"},{"source":"931","target":"147","id":"2315"},{"source":"982","target":"439","id":"2512"},{"source":"266","target":"444","id":"3992"},{"source":"1401","target":"53","id":"4418"},{"source":"807","target":"198","id":"6517"},{"source":"634","target":"335","id":"1233"},{"source":"47","target":"48","id":"4429"},{"source":"949","target":"1","id":"2397"},{"source":"939","target":"53","id":"2348"},{"source":"833","target":"281","id":"1890"},{"source":"725","target":"65","id":"1498"},{"source":"1421","target":"723","id":"4569"},{"source":"761","target":"175","id":"1614"},{"source":"1464","target":"883","id":"4827"},{"source":"430","target":"37","id":"4834"},{"source":"1386","target":"974","id":"4343"},{"source":"118","target":"65","id":"1297"},{"source":"1315","target":"296","id":"4483"},{"source":"778","target":"96","id":"1675"},{"source":"1670","target":"561","id":"6288"},{"source":"1341","target":"1015","id":"4089"},{"source":"171","target":"567","id":"5259"},{"source":"631","target":"49","id":"1213"},{"source":"778","target":"53","id":"1680"},{"source":"983","target":"216","id":"4693"},{"source":"1408","target":"224","id":"6201"},{"source":"1230","target":"170","id":"3583"},{"source":"1246","target":"99","id":"6104"},{"source":"526","target":"524","id":"3544"},{"source":"833","target":"280","id":"1886"},{"source":"538","target":"200","id":"4658"},{"source":"328","target":"46","id":"476"},{"source":"1647","target":"85","id":"6136"},{"source":"1523","target":"1123","id":"5254"},{"source":"272","target":"209","id":"4682"},{"source":"754","target":"137","id":"5441"},{"source":"1324","target":"79","id":"4646"},{"source":"199","target":"200","id":"3321"},{"source":"786","target":"323","id":"3949"},{"source":"1151","target":"1152","id":"3139"},{"source":"723","target":"724","id":"1482"},{"source":"481","target":"281","id":"800"},{"source":"1209","target":"431","id":"3473"},{"source":"96","target":"95","id":"1808"},{"source":"370","target":"334","id":"4583"},{"source":"351","target":"1","id":"4447"},{"source":"47","target":"281","id":"4426"},{"source":"876","target":"1150","id":"3129"},{"source":"1278","target":"1279","id":"3798"},{"source":"1365","target":"494","id":"4244"},{"source":"1705","target":"68","id":"6504"},{"source":"1661","target":"76","id":"6235"},{"source":"1436","target":"1","id":"4706"},{"source":"1631","target":"1033","id":"6044"},{"source":"335","target":"533","id":"1057"},{"source":"1103","target":"79","id":"2967"},{"source":"119","target":"289","id":"3172"},{"source":"1468","target":"67","id":"4863"},{"source":"837","target":"444","id":"1905"},{"source":"541","target":"540","id":"2742"},{"source":"370","target":"533","id":"4585"},{"source":"1190","target":"96","id":"5058"},{"source":"1646","target":"313","id":"6133"},{"source":"336","target":"281","id":"3146"},{"source":"1197","target":"852","id":"3429"},{"source":"1434","target":"429","id":"4950"},{"source":"356","target":"508","id":"851"},{"source":"1608","target":"79","id":"5879"},{"source":"1408","target":"79","id":"6200"},{"source":"1558","target":"82","id":"5448"},{"source":"1631","target":"1403","id":"6039"},{"source":"134","target":"139","id":"150"},{"source":"1296","target":"484","id":"3858"},{"source":"587","target":"513","id":"1103"},{"source":"891","target":"325","id":"2112"},{"source":"1285","target":"49","id":"3816"},{"source":"1249","target":"1607","id":"5909"},{"source":"740","target":"50","id":"1538"},{"source":"708","target":"568","id":"2874"},{"source":"716","target":"713","id":"1455"},{"source":"1140","target":"426","id":"3088"},{"source":"993","target":"292","id":"4526"},{"source":"1360","target":"513","id":"6660"},{"source":"1589","target":"53","id":"5707"},{"source":"1324","target":"318","id":"4645"},{"source":"992","target":"313","id":"2533"},{"source":"569","target":"65","id":"2200"},{"source":"472","target":"177","id":"786"},{"source":"410","target":"48","id":"677"},{"source":"829","target":"556","id":"1867"},{"source":"927","target":"150","id":"2297"},{"source":"1108","target":"74","id":"2994"},{"source":"811","target":"175","id":"1803"},{"source":"629","target":"628","id":"2682"},{"source":"315","target":"296","id":"3508"},{"source":"1144","target":"296","id":"3101"},{"source":"1663","target":"287","id":"6242"},{"source":"1552","target":"128","id":"5395"},{"source":"120","target":"582","id":"4022"},{"source":"725","target":"610","id":"1503"},{"source":"801","target":"51","id":"4218"},{"source":"1231","target":"230","id":"5530"},{"source":"1554","target":"53","id":"5418"},{"source":"595","target":"65","id":"1132"},{"source":"1683","target":"20","id":"6380"},{"source":"1661","target":"1662","id":"6234"},{"source":"759","target":"695","id":"5775"},{"source":"264","target":"403","id":"1569"},{"source":"789","target":"798","id":"3028"},{"source":"124","target":"125","id":"132"},{"source":"1374","target":"983","id":"4268"},{"source":"66","target":"53","id":"2607"},{"source":"301","target":"182","id":"387"},{"source":"859","target":"817","id":"1998"},{"source":"714","target":"502","id":"6648"},{"source":"1144","target":"381","id":"3103"},{"source":"730","target":"48","id":"1519"},{"source":"412","target":"1","id":"2645"},{"source":"1242","target":"569","id":"3607"},{"source":"1431","target":"607","id":"4666"},{"source":"901","target":"111","id":"2171"},{"source":"1575","target":"801","id":"5604"},{"source":"1365","target":"757","id":"4239"},{"source":"11","target":"12","id":"13"},{"source":"896","target":"128","id":"4819"},{"source":"30","target":"24","id":"5045"},{"source":"466","target":"1","id":"777"},{"source":"1341","target":"65","id":"4094"},{"source":"1594","target":"172","id":"5759"},{"source":"198","target":"203","id":"232"},{"source":"252","target":"53","id":"761"},{"source":"633","target":"50","id":"1229"},{"source":"463","target":"177","id":"2634"},{"source":"1008","target":"344","id":"5692"},{"source":"684","target":"1","id":"1375"},{"source":"904","target":"567","id":"2206"},{"source":"1404","target":"272","id":"4536"},{"source":"366","target":"65","id":"5457"},{"source":"1015","target":"1","id":"3680"},{"source":"535","target":"533","id":"2467"},{"source":"249","target":"252","id":"290"},{"source":"393","target":"201","id":"643"},{"source":"1597","target":"409","id":"5784"},{"source":"268","target":"271","id":"315"},{"source":"722","target":"96","id":"1477"},{"source":"50","target":"105","id":"5477"},{"source":"53","target":"79","id":"1112"},{"source":"918","target":"919","id":"2261"},{"source":"195","target":"272","id":"5389"},{"source":"691","target":"692","id":"1394"},{"source":"1082","target":"367","id":"6572"},{"source":"484","target":"119","id":"5590"},{"source":"317","target":"325","id":"4545"},{"source":"146","target":"161","id":"1540"},{"source":"978","target":"979","id":"2504"},{"source":"1626","target":"79","id":"6010"},{"source":"1536","target":"708","id":"5288"},{"source":"421","target":"191","id":"3689"},{"source":"279","target":"49","id":"500"},{"source":"720","target":"79","id":"3511"},{"source":"359","target":"79","id":"554"},{"source":"1228","target":"1229","id":"3579"},{"source":"1661","target":"453","id":"6230"},{"source":"66","target":"61","id":"2606"},{"source":"943","target":"498","id":"2359"},{"source":"349","target":"133","id":"6279"},{"source":"370","target":"281","id":"4582"},{"source":"665","target":"666","id":"1329"},{"source":"1503","target":"1","id":"5105"},{"source":"459","target":"53","id":"764"},{"source":"1485","target":"120","id":"5004"},{"source":"980","target":"365","id":"2507"},{"source":"631","target":"50","id":"1214"},{"source":"438","target":"264","id":"1564"},{"source":"1620","target":"76","id":"5966"},{"source":"1500","target":"705","id":"5098"},{"source":"26","target":"253","id":"2881"},{"source":"707","target":"769","id":"1630"},{"source":"319","target":"182","id":"3897"},{"source":"944","target":"607","id":"2364"},{"source":"640","target":"1140","id":"5319"},{"source":"355","target":"712","id":"4008"},{"source":"902","target":"65","id":"3166"},{"source":"643","target":"68","id":"1267"},{"source":"1051","target":"96","id":"2759"},{"source":"1136","target":"600","id":"4389"},{"source":"744","target":"67","id":"1562"},{"source":"1677","target":"374","id":"6358"},{"source":"1296","target":"48","id":"3863"},{"source":"1509","target":"374","id":"5198"},{"source":"433","target":"434","id":"711"},{"source":"460","target":"515","id":"1162"},{"source":"542","target":"1","id":"933"},{"source":"357","target":"356","id":"918"},{"source":"625","target":"177","id":"1207"},{"source":"121","target":"122","id":"128"},{"source":"50","target":"66","id":"5474"},{"source":"1443","target":"68","id":"4720"},{"source":"1415","target":"979","id":"4535"},{"source":"517","target":"323","id":"3056"},{"source":"1084","target":"259","id":"2869"},{"source":"1142","target":"1718","id":"6621"},{"source":"1703","target":"1103","id":"6494"},{"source":"275","target":"270","id":"4322"},{"source":"178","target":"549","id":"1243"},{"source":"716","target":"502","id":"1453"},{"source":"264","target":"266","id":"1572"},{"source":"1264","target":"647","id":"3713"},{"source":"1435","target":"344","id":"4698"},{"source":"881","target":"498","id":"2090"},{"source":"1048","target":"539","id":"2744"},{"source":"1717","target":"203","id":"6622"},{"source":"773","target":"708","id":"1649"},{"source":"809","target":"61","id":"1800"},{"source":"1469","target":"510","id":"4870"},{"source":"1374","target":"53","id":"4265"},{"source":"492","target":"217","id":"817"},{"source":"543","target":"537","id":"939"},{"source":"165","target":"167","id":"187"},{"source":"1011","target":"1013","id":"2586"},{"source":"1320","target":"1322","id":"3996"},{"source":"495","target":"82","id":"6521"},{"source":"797","target":"397","id":"1749"},{"source":"281","target":"335","id":"3079"},{"source":"35","target":"273","id":"418"},{"source":"1298","target":"411","id":"3871"},{"source":"724","target":"79","id":"2831"},{"source":"852","target":"185","id":"3254"},{"source":"775","target":"1","id":"1674"},{"source":"914","target":"104","id":"2247"},{"source":"957","target":"961","id":"2429"},{"source":"1650","target":"532","id":"6162"},{"source":"779","target":"120","id":"1689"},{"source":"501","target":"50","id":"833"},{"source":"888","target":"889","id":"4032"},{"source":"54","target":"57","id":"52"},{"source":"277","target":"185","id":"339"},{"source":"912","target":"367","id":"2861"},{"source":"45","target":"311","id":"3231"},{"source":"1336","target":"53","id":"4062"},{"source":"1245","target":"690","id":"3625"},{"source":"193","target":"37","id":"222"},{"source":"1656","target":"1160","id":"6199"},{"source":"65","target":"67","id":"2125"},{"source":"53","target":"592","id":"1117"},{"source":"799","target":"370","id":"1761"},{"source":"750","target":"753","id":"1586"},{"source":"105","target":"64","id":"5381"},{"source":"1368","target":"1096","id":"4252"},{"source":"319","target":"79","id":"3895"},{"source":"1702","target":"1704","id":"6486"},{"source":"482","target":"600","id":"3842"},{"source":"1362","target":"591","id":"4222"},{"source":"779","target":"175","id":"1685"},{"source":"1119","target":"53","id":"6252"},{"source":"1332","target":"53","id":"4046"},{"source":"1352","target":"76","id":"4163"},{"source":"634","target":"636","id":"1235"},{"source":"181","target":"325","id":"3524"},{"source":"1280","target":"494","id":"3801"},{"source":"397","target":"51","id":"3910"},{"source":"837","target":"781","id":"1906"},{"source":"1285","target":"51","id":"3818"},{"source":"465","target":"368","id":"953"},{"source":"1353","target":"749","id":"4169"},{"source":"1694","target":"966","id":"6422"},{"source":"532","target":"49","id":"927"},{"source":"348","target":"1429","id":"4623"},{"source":"327","target":"306","id":"459"},{"source":"183","target":"79","id":"5118"},{"source":"1561","target":"119","id":"6509"},{"source":"1107","target":"62","id":"2983"},{"source":"487","target":"198","id":"812"},{"source":"1670","target":"74","id":"6282"},{"source":"153","target":"379","id":"2229"},{"source":"1279","target":"1249","id":"5631"},{"source":"68","target":"109","id":"108"},{"source":"135","target":"572","id":"1040"},{"source":"1481","target":"440","id":"4983"},{"source":"1701","target":"68","id":"6477"},{"source":"330","target":"181","id":"485"},{"source":"266","target":"403","id":"3994"},{"source":"483","target":"1308","id":"3923"},{"source":"622","target":"182","id":"4460"},{"source":"1706","target":"33","id":"6524"},{"source":"156","target":"82","id":"178"},{"source":"872","target":"150","id":"2052"},{"source":"263","target":"264","id":"307"},{"source":"383","target":"259","id":"634"},{"source":"664","target":"663","id":"3704"},{"source":"1091","target":"408","id":"2909"},{"source":"626","target":"177","id":"3225"},{"source":"1145","target":"20","id":"3111"},{"source":"795","target":"796","id":"1746"},{"source":"481","target":"484","id":"804"},{"source":"885","target":"79","id":"4004"},{"source":"1550","target":"915","id":"5373"},{"source":"689","target":"53","id":"6108"},{"source":"551","target":"167","id":"969"},{"source":"1570","target":"97","id":"5528"},{"source":"1082","target":"911","id":"6568"},{"source":"1339","target":"975","id":"4077"},{"source":"1294","target":"61","id":"3847"},{"source":"409","target":"200","id":"4651"},{"source":"716","target":"128","id":"1457"},{"source":"319","target":"296","id":"3893"},{"source":"1468","target":"65","id":"4862"},{"source":"199","target":"411","id":"3319"},{"source":"492","target":"128","id":"815"},{"source":"296","target":"319","id":"430"},{"source":"937","target":"698","id":"2341"},{"source":"976","target":"876","id":"3131"},{"source":"1594","target":"109","id":"5758"},{"source":"544","target":"1233","id":"6112"},{"source":"594","target":"53","id":"4875"},{"source":"927","target":"650","id":"2296"},{"source":"1452","target":"412","id":"4752"},{"source":"335","target":"574","id":"1053"},{"source":"1212","target":"82","id":"3481"},{"source":"1041","target":"598","id":"2706"},{"source":"26","target":"25","id":"2882"},{"source":"747","target":"20","id":"3776"},{"source":"869","target":"232","id":"2023"},{"source":"1656","target":"65","id":"6196"},{"source":"145","target":"82","id":"1000"},{"source":"1383","target":"185","id":"4317"},{"source":"1401","target":"695","id":"4420"},{"source":"294","target":"377","id":"903"},{"source":"69","target":"74","id":"68"},{"source":"44","target":"52","id":"48"},{"source":"643","target":"53","id":"1268"},{"source":"369","target":"47","id":"574"},{"source":"901","target":"68","id":"2173"},{"source":"322","target":"1311","id":"3942"},{"source":"725","target":"608","id":"1504"},{"source":"388","target":"537","id":"2392"},{"source":"1636","target":"1036","id":"6067"},{"source":"1070","target":"732","id":"2821"},{"source":"58","target":"59","id":"53"},{"source":"808","target":"409","id":"1793"},{"source":"550","target":"65","id":"963"},{"source":"884","target":"468","id":"2095"},{"source":"778","target":"84","id":"1681"},{"source":"694","target":"695","id":"1406"},{"source":"1288","target":"219","id":"3826"},{"source":"214","target":"215","id":"242"},{"source":"288","target":"68","id":"364"},{"source":"658","target":"659","id":"1319"},{"source":"785","target":"322","id":"1713"},{"source":"1643","target":"863","id":"6115"},{"source":"533","target":"1122","id":"6085"},{"source":"567","target":"428","id":"2722"},{"source":"1334","target":"401","id":"4054"},{"source":"1327","target":"567","id":"5873"},{"source":"905","target":"907","id":"2217"},{"source":"245","target":"131","id":"1729"},{"source":"750","target":"79","id":"1581"},{"source":"1040","target":"1034","id":"2696"},{"source":"431","target":"50","id":"708"},{"source":"1540","target":"344","id":"5308"},{"source":"72","target":"73","id":"1021"},{"source":"1397","target":"68","id":"4407"},{"source":"860","target":"348","id":"6118"},{"source":"1519","target":"607","id":"5243"},{"source":"387","target":"48","id":"637"},{"source":"676","target":"567","id":"1359"},{"source":"415","target":"416","id":"3642"},{"source":"295","target":"79","id":"3181"},{"source":"1616","target":"1130","id":"5947"},{"source":"262","target":"25","id":"5977"},{"source":"928","target":"150","id":"6079"},{"source":"1643","target":"861","id":"6116"},{"source":"830","target":"556","id":"1877"},{"source":"753","target":"185","id":"5133"},{"source":"688","target":"25","id":"1655"},{"source":"1432","target":"444","id":"4679"},{"source":"1198","target":"498","id":"3436"},{"source":"912","target":"307","id":"2858"},{"source":"290","target":"50","id":"1856"},{"source":"1456","target":"607","id":"4775"},{"source":"1632","target":"168","id":"6052"},{"source":"603","target":"166","id":"1427"},{"source":"1558","target":"1","id":"5447"},{"source":"1318","target":"1133","id":"3970"},{"source":"183","target":"325","id":"5121"},{"source":"1222","target":"79","id":"3533"},{"source":"577","target":"519","id":"4397"},{"source":"993","target":"995","id":"4527"},{"source":"294","target":"185","id":"904"},{"source":"1122","target":"335","id":"3043"},{"source":"182","target":"79","id":"4469"},{"source":"1161","target":"65","id":"3196"},{"source":"939","target":"167","id":"2350"},{"source":"569","target":"427","id":"2197"},{"source":"333","target":"279","id":"494"},{"source":"381","target":"185","id":"614"},{"source":"944","target":"49","id":"2368"},{"source":"965","target":"109","id":"2444"},{"source":"891","target":"51","id":"2114"},{"source":"843","target":"85","id":"1925"},{"source":"1179","target":"336","id":"3306"},{"source":"1705","target":"624","id":"6501"},{"source":"425","target":"427","id":"698"},{"source":"437","target":"423","id":"1314"},{"source":"1123","target":"1137","id":"3084"},{"source":"1620","target":"1111","id":"5963"},{"source":"1250","target":"301","id":"3634"},{"source":"1405","target":"1098","id":"4453"},{"source":"1250","target":"1253","id":"3640"},{"source":"1091","target":"65","id":"2912"},{"source":"753","target":"852","id":"5132"},{"source":"1696","target":"924","id":"6430"},{"source":"611","target":"287","id":"1180"},{"source":"382","target":"282","id":"622"},{"source":"285","target":"63","id":"352"},{"source":"1250","target":"1252","id":"3639"},{"source":"1298","target":"280","id":"3868"},{"source":"395","target":"76","id":"647"},{"source":"510","target":"555","id":"6332"},{"source":"797","target":"49","id":"1753"},{"source":"1349","target":"79","id":"4142"},{"source":"719","target":"721","id":"1470"},{"source":"1644","target":"963","id":"6123"},{"source":"1114","target":"1115","id":"3059"},{"source":"868","target":"498","id":"2019"},{"source":"1402","target":"206","id":"5838"},{"source":"472","target":"474","id":"784"},{"source":"589","target":"267","id":"1662"},{"source":"869","target":"132","id":"2024"},{"source":"268","target":"40","id":"317"},{"source":"1327","target":"422","id":"5868"},{"source":"1330","target":"662","id":"4036"},{"source":"971","target":"185","id":"2475"},{"source":"375","target":"363","id":"596"},{"source":"902","target":"131","id":"3168"},{"source":"142","target":"147","id":"167"},{"source":"1170","target":"988","id":"3270"},{"source":"1592","target":"101","id":"5745"},{"source":"1159","target":"238","id":"3185"},{"source":"1479","target":"391","id":"4975"},{"source":"904","target":"104","id":"2205"},{"source":"838","target":"281","id":"2454"},{"source":"208","target":"204","id":"5842"},{"source":"363","target":"64","id":"558"},{"source":"1457","target":"370","id":"4787"},{"source":"1657","target":"667","id":"6203"},{"source":"1681","target":"1682","id":"6379"},{"source":"855","target":"296","id":"1973"},{"source":"1404","target":"37","id":"4539"},{"source":"1216","target":"1217","id":"3494"},{"source":"1620","target":"849","id":"5967"},{"source":"1712","target":"302","id":"6598"},{"source":"104","target":"597","id":"2210"},{"source":"1712","target":"303","id":"6591"},{"source":"702","target":"541","id":"3884"},{"source":"1052","target":"206","id":"2766"},{"source":"1543","target":"109","id":"5340"},{"source":"258","target":"570","id":"1306"},{"source":"118","target":"131","id":"1299"},{"source":"192","target":"188","id":"213"},{"source":"1567","target":"571","id":"5503"},{"source":"1608","target":"148","id":"5878"},{"source":"1172","target":"455","id":"3275"},{"source":"223","target":"225","id":"255"},{"source":"411","target":"48","id":"1785"},{"source":"301","target":"302","id":"388"},{"source":"1652","target":"497","id":"6181"},{"source":"886","target":"883","id":"2103"},{"source":"1500","target":"958","id":"5099"},{"source":"887","target":"889","id":"2108"},{"source":"23","target":"25","id":"5803"},{"source":"1184","target":"1185","id":"3347"},{"source":"366","target":"560","id":"5455"},{"source":"770","target":"707","id":"5552"},{"source":"438","target":"202","id":"1567"},{"source":"1629","target":"547","id":"6025"},{"source":"846","target":"883","id":"5689"},{"source":"1189","target":"76","id":"3392"},{"source":"364","target":"316","id":"583"},{"source":"1484","target":"663","id":"4993"},{"source":"1223","target":"617","id":"3556"},{"source":"843","target":"711","id":"1923"},{"source":"249","target":"104","id":"286"},{"source":"143","target":"378","id":"609"},{"source":"1016","target":"66","id":"2592"},{"source":"1577","target":"1135","id":"5620"},{"source":"1314","target":"297","id":"4448"},{"source":"864","target":"53","id":"2008"},{"source":"1411","target":"1124","id":"4509"},{"source":"1571","target":"310","id":"5532"},{"source":"1665","target":"1666","id":"6272"},{"source":"65","target":"64","id":"2131"},{"source":"439","target":"441","id":"718"},{"source":"1066","target":"1062","id":"2804"},{"source":"519","target":"577","id":"1071"},{"source":"1175","target":"284","id":"3325"},{"source":"479","target":"1066","id":"4297"},{"source":"105","target":"592","id":"5384"},{"source":"1098","target":"1094","id":"2944"},{"source":"1459","target":"352","id":"4801"},{"source":"789","target":"49","id":"3037"},{"source":"1495","target":"806","id":"5080"},{"source":"458","target":"697","id":"5372"},{"source":"1372","target":"579","id":"4261"},{"source":"852","target":"46","id":"3252"},{"source":"1610","target":"5","id":"5887"},{"source":"1120","target":"1121","id":"3038"},{"source":"130","target":"131","id":"141"},{"source":"1530","target":"236","id":"5276"},{"source":"1672","target":"434","id":"6294"},{"source":"1621","target":"1386","id":"5982"},{"source":"206","target":"272","id":"2688"},{"source":"1044","target":"1046","id":"2728"},{"source":"243","target":"244","id":"279"},{"source":"1277","target":"335","id":"3793"},{"source":"895","target":"242","id":"2141"},{"source":"585","target":"110","id":"5577"},{"source":"727","target":"50","id":"1513"},{"source":"1672","target":"897","id":"6292"},{"source":"333","target":"335","id":"497"},{"source":"1615","target":"1282","id":"5925"},{"source":"1506","target":"1","id":"5835"},{"source":"1426","target":"517","id":"4593"},{"source":"1250","target":"294","id":"3635"},{"source":"650","target":"443","id":"1283"},{"source":"1267","target":"532","id":"3739"},{"source":"1689","target":"380","id":"6403"},{"source":"1593","target":"437","id":"5750"},{"source":"260","target":"261","id":"303"},{"source":"1329","target":"128","id":"5601"},{"source":"268","target":"273","id":"318"},{"source":"486","target":"313","id":"2502"},{"source":"65","target":"93","id":"2132"},{"source":"333","target":"334","id":"491"},{"source":"640","target":"642","id":"5322"},{"source":"262","target":"211","id":"5978"},{"source":"873","target":"65","id":"2055"},{"source":"677","target":"582","id":"1364"},{"source":"500","target":"228","id":"5795"},{"source":"947","target":"155","id":"2402"},{"source":"375","target":"51","id":"602"},{"source":"651","target":"570","id":"1303"},{"source":"1341","target":"1340","id":"4087"},{"source":"523","target":"294","id":"909"},{"source":"1209","target":"667","id":"3470"},{"source":"1351","target":"1138","id":"4160"},{"source":"1214","target":"94","id":"3484"},{"source":"961","target":"962","id":"4578"},{"source":"60","target":"61","id":"54"},{"source":"1134","target":"166","id":"3072"},{"source":"1582","target":"1580","id":"5648"},{"source":"1509","target":"1293","id":"5193"},{"source":"970","target":"82","id":"3096"},{"source":"592","target":"105","id":"4817"},{"source":"535","target":"543","id":"2463"},{"source":"328","target":"182","id":"477"},{"source":"1663","target":"667","id":"6241"},{"source":"156","target":"109","id":"177"},{"source":"1376","target":"1377","id":"4278"},{"source":"1658","target":"979","id":"6217"},{"source":"1070","target":"262","id":"2822"},{"source":"1363","target":"53","id":"4236"},{"source":"267","target":"113","id":"4437"},{"source":"1011","target":"1014","id":"2587"},{"source":"1071","target":"262","id":"2838"},{"source":"1597","target":"634","id":"5780"},{"source":"375","target":"113","id":"598"},{"source":"509","target":"61","id":"853"},{"source":"535","target":"364","id":"2461"},{"source":"75","target":"77","id":"70"},{"source":"410","target":"53","id":"673"},{"source":"608","target":"50","id":"1496"},{"source":"1038","target":"1037","id":"5030"},{"source":"1156","target":"68","id":"3156"},{"source":"326","target":"306","id":"465"},{"source":"1201","target":"1003","id":"4996"},{"source":"1543","target":"65","id":"5336"},{"source":"1152","target":"1314","id":"4497"},{"source":"459","target":"366","id":"770"},{"source":"117","target":"119","id":"123"},{"source":"668","target":"378","id":"1334"},{"source":"463","target":"1","id":"2638"},{"source":"1595","target":"1394","id":"5772"},{"source":"497","target":"109","id":"2625"},{"source":"944","target":"339","id":"2365"},{"source":"268","target":"36","id":"313"},{"source":"1161","target":"50","id":"3201"},{"source":"320","target":"322","id":"437"},{"source":"1652","target":"53","id":"6188"},{"source":"1629","target":"549","id":"6029"},{"source":"815","target":"607","id":"1820"},{"source":"252","target":"131","id":"756"},{"source":"1372","target":"167","id":"4259"},{"source":"781","target":"50","id":"2787"},{"source":"1109","target":"463","id":"3003"},{"source":"1230","target":"1181","id":"3582"},{"source":"581","target":"883","id":"4183"},{"source":"93","target":"64","id":"2158"},{"source":"550","target":"93","id":"964"},{"source":"1258","target":"1259","id":"3669"},{"source":"1705","target":"53","id":"6506"},{"source":"172","target":"101","id":"5735"},{"source":"69","target":"71","id":"65"},{"source":"421","target":"292","id":"3686"},{"source":"760","target":"53","id":"1608"},{"source":"931","target":"170","id":"2313"},{"source":"592","target":"96","id":"4815"},{"source":"874","target":"104","id":"2065"},{"source":"1674","target":"53","id":"6309"},{"source":"300","target":"299","id":"3008"},{"source":"1326","target":"424","id":"4029"},{"source":"483","target":"801","id":"3926"},{"source":"1047","target":"463","id":"4330"},{"source":"1716","target":"1718","id":"6618"},{"source":"1327","target":"654","id":"5874"},{"source":"573","target":"335","id":"1045"},{"source":"1705","target":"1022","id":"6502"},{"source":"96","target":"812","id":"1809"},{"source":"1530","target":"1018","id":"5277"},{"source":"625","target":"463","id":"1209"},{"source":"402","target":"82","id":"653"},{"source":"88","target":"79","id":"80"},{"source":"925","target":"119","id":"2286"},{"source":"778","target":"175","id":"1678"},{"source":"860","target":"113","id":"6120"},{"source":"352","target":"353","id":"536"},{"source":"966","target":"256","id":"5823"},{"source":"1205","target":"571","id":"3457"},{"source":"224","target":"225","id":"2828"},{"source":"729","target":"229","id":"1514"},{"source":"859","target":"860","id":"1995"},{"source":"1421","target":"311","id":"4567"},{"source":"9","target":"1","id":"10"},{"source":"547","target":"177","id":"945"},{"source":"339","target":"53","id":"4209"},{"source":"1555","target":"644","id":"5425"},{"source":"328","target":"185","id":"478"},{"source":"1156","target":"65","id":"3162"},{"source":"694","target":"49","id":"1407"},{"source":"552","target":"287","id":"4895"},{"source":"502","target":"444","id":"5075"},{"source":"1302","target":"1300","id":"6400"},{"source":"1589","target":"118","id":"5708"},{"source":"1577","target":"715","id":"5617"},{"source":"1140","target":"82","id":"3090"},{"source":"675","target":"280","id":"6633"},{"source":"1401","target":"49","id":"4421"},{"source":"924","target":"1542","id":"5328"},{"source":"468","target":"159","id":"778"},{"source":"1169","target":"824","id":"3262"},{"source":"38","target":"275","id":"1287"},{"source":"1493","target":"262","id":"5056"},{"source":"1180","target":"411","id":"3315"},{"source":"1552","target":"217","id":"5397"},{"source":"1428","target":"196","id":"4617"},{"source":"1246","target":"53","id":"6105"},{"source":"1480","target":"1316","id":"4979"},{"source":"34","target":"38","id":"36"},{"source":"1012","target":"53","id":"5569"},{"source":"363","target":"67","id":"560"},{"source":"134","target":"140","id":"154"},{"source":"1652","target":"236","id":"6179"},{"source":"1294","target":"868","id":"3849"},{"source":"161","target":"435","id":"5310"},{"source":"375","target":"116","id":"603"},{"source":"1224","target":"215","id":"3565"},{"source":"903","target":"93","id":"2179"},{"source":"139","target":"135","id":"157"},{"source":"359","target":"177","id":"553"},{"source":"1532","target":"94","id":"5279"},{"source":"1135","target":"857","id":"3077"},{"source":"1683","target":"109","id":"6382"},{"source":"801","target":"48","id":"4215"},{"source":"857","target":"858","id":"2017"},{"source":"497","target":"166","id":"2626"},{"source":"1625","target":"934","id":"6006"},{"source":"1582","target":"1292","id":"5646"},{"source":"1343","target":"200","id":"4111"},{"source":"170","target":"915","id":"4792"},{"source":"1292","target":"1580","id":"5660"},{"source":"1469","target":"698","id":"4871"},{"source":"925","target":"552","id":"2288"},{"source":"1163","target":"424","id":"3215"},{"source":"747","target":"170","id":"3782"},{"source":"133","target":"138","id":"148"},{"source":"1455","target":"65","id":"4764"},{"source":"1397","target":"155","id":"4406"},{"source":"742","target":"989","id":"5147"},{"source":"532","target":"538","id":"926"},{"source":"935","target":"109","id":"4797"},{"source":"671","target":"131","id":"1348"},{"source":"1604","target":"82","id":"5848"},{"source":"125","target":"123","id":"133"},{"source":"1368","target":"1097","id":"4253"},{"source":"165","target":"168","id":"188"},{"source":"1525","target":"1526","id":"5263"},{"source":"1573","target":"48","id":"5543"},{"source":"703","target":"704","id":"3889"},{"source":"1688","target":"1","id":"6472"},{"source":"1713","target":"272","id":"6601"},{"source":"944","target":"715","id":"2363"},{"source":"1276","target":"281","id":"3773"},{"source":"595","target":"109","id":"1137"},{"source":"1182","target":"200","id":"3335"},{"source":"1086","target":"105","id":"2896"},{"source":"1472","target":"156","id":"4920"},{"source":"1625","target":"164","id":"6008"},{"source":"1004","target":"444","id":"2568"},{"source":"1624","target":"159","id":"5990"},{"source":"1588","target":"498","id":"5699"},{"source":"1608","target":"803","id":"5881"},{"source":"1650","target":"1292","id":"6160"},{"source":"93","target":"82","id":"2164"},{"source":"288","target":"51","id":"363"},{"source":"1083","target":"1082","id":"5931"},{"source":"1097","target":"312","id":"2954"},{"source":"1202","target":"648","id":"5000"},{"source":"52","target":"68","id":"5765"},{"source":"63","target":"65","id":"995"},{"source":"318","target":"296","id":"531"},{"source":"628","target":"629","id":"4153"},{"source":"1675","target":"68","id":"6323"},{"source":"1345","target":"182","id":"4119"},{"source":"1350","target":"906","id":"4147"},{"source":"1592","target":"567","id":"5744"},{"source":"1276","target":"335","id":"3771"},{"source":"393","target":"394","id":"644"},{"source":"24","target":"947","id":"5815"},{"source":"1652","target":"284","id":"6185"},{"source":"242","target":"153","id":"2226"},{"source":"273","target":"274","id":"5563"},{"source":"901","target":"451","id":"2165"},{"source":"1180","target":"406","id":"3312"},{"source":"1670","target":"72","id":"6287"},{"source":"788","target":"48","id":"1720"},{"source":"1051","target":"949","id":"2760"},{"source":"816","target":"498","id":"1992"},{"source":"299","target":"361","id":"1248"},{"source":"908","target":"907","id":"3514"},{"source":"1052","target":"209","id":"2772"},{"source":"472","target":"79","id":"787"},{"source":"334","target":"1451","id":"4742"},{"source":"1537","target":"458","id":"5298"},{"source":"741","target":"280","id":"1543"},{"source":"589","target":"513","id":"1666"},{"source":"39","target":"313","id":"4305"},{"source":"825","target":"490","id":"5853"},{"source":"1017","target":"457","id":"3979"},{"source":"369","target":"267","id":"575"},{"source":"1663","target":"455","id":"6239"},{"source":"1118","target":"166","id":"3023"},{"source":"295","target":"292","id":"3178"},{"source":"252","target":"104","id":"757"},{"source":"1167","target":"1157","id":"3255"},{"source":"1224","target":"495","id":"3567"},{"source":"1713","target":"209","id":"6604"},{"source":"1420","target":"280","id":"4558"},{"source":"1381","target":"1152","id":"4291"},{"source":"695","target":"731","id":"4955"},{"source":"1226","target":"1197","id":"3573"},{"source":"745","target":"746","id":"1575"},{"source":"250","target":"252","id":"3363"},{"source":"1499","target":"606","id":"5092"},{"source":"1618","target":"281","id":"5955"},{"source":"598","target":"597","id":"1982"},{"source":"182","target":"296","id":"4468"},{"source":"640","target":"174","id":"5317"},{"source":"407","target":"216","id":"664"},{"source":"637","target":"79","id":"1251"},{"source":"132","target":"1442","id":"5346"},{"source":"315","target":"298","id":"3507"},{"source":"778","target":"65","id":"1676"},{"source":"1477","target":"424","id":"4938"},{"source":"780","target":"174","id":"1691"},{"source":"201","target":"391","id":"4758"},{"source":"755","target":"368","id":"1592"},{"source":"1455","target":"62","id":"4769"},{"source":"904","target":"131","id":"2203"},{"source":"918","target":"65","id":"2257"},{"source":"361","target":"211","id":"1958"},{"source":"1487","target":"1488","id":"5016"},{"source":"6","target":"5","id":"8"},{"source":"1307","target":"167","id":"3919"},{"source":"461","target":"118","id":"2620"},{"source":"1312","target":"296","id":"3931"},{"source":"1334","target":"1126","id":"4052"},{"source":"609","target":"161","id":"3066"},{"source":"775","target":"777","id":"1673"},{"source":"528","target":"526","id":"3553"},{"source":"322","target":"785","id":"3941"},{"source":"283","target":"281","id":"6350"},{"source":"1056","target":"1057","id":"2778"},{"source":"118","target":"567","id":"1292"},{"source":"1478","target":"456","id":"4966"},{"source":"1556","target":"1557","id":"5433"},{"source":"1034","target":"272","id":"2677"},{"source":"1264","target":"1","id":"3714"},{"source":"633","target":"104","id":"1227"},{"source":"580","target":"577","id":"1075"},{"source":"303","target":"182","id":"391"},{"source":"950","target":"79","id":"2398"},{"source":"1347","target":"1208","id":"4131"},{"source":"92","target":"65","id":"86"},{"source":"893","target":"181","id":"2559"},{"source":"298","target":"300","id":"381"},{"source":"1588","target":"1379","id":"5701"},{"source":"1025","target":"258","id":"4629"},{"source":"1119","target":"49","id":"6258"},{"source":"793","target":"53","id":"2964"},{"source":"279","target":"336","id":"507"},{"source":"1060","target":"1114","id":"3016"},{"source":"866","target":"1018","id":"2612"},{"source":"583","target":"577","id":"1088"},{"source":"526","target":"528","id":"3543"},{"source":"67","target":"68","id":"2709"},{"source":"1102","target":"638","id":"3500"},{"source":"1363","target":"48","id":"4230"},{"source":"1633","target":"435","id":"6060"},{"source":"326","target":"315","id":"462"},{"source":"794","target":"50","id":"1741"},{"source":"745","target":"747","id":"1576"},{"source":"837","target":"839","id":"1907"},{"source":"681","target":"106","id":"1370"},{"source":"1585","target":"1","id":"5673"},{"source":"496","target":"166","id":"821"},{"source":"912","target":"653","id":"2859"},{"source":"176","target":"177","id":"196"},{"source":"1266","target":"806","id":"3730"},{"source":"1231","target":"354","id":"5531"},{"source":"510","target":"436","id":"6334"},{"source":"1434","target":"272","id":"4949"},{"source":"1471","target":"65","id":"4909"},{"source":"881","target":"883","id":"2085"},{"source":"463","target":"906","id":"2637"},{"source":"973","target":"1","id":"2479"},{"source":"267","target":"119","id":"4439"},{"source":"272","target":"1434","id":"4684"},{"source":"828","target":"65","id":"1862"},{"source":"1116","target":"1115","id":"5935"},{"source":"1323","target":"885","id":"5958"},{"source":"192","target":"191","id":"215"},{"source":"1478","target":"582","id":"4964"},{"source":"633","target":"635","id":"1228"},{"source":"1032","target":"82","id":"2665"},{"source":"745","target":"749","id":"1579"},{"source":"823","target":"82","id":"1845"},{"source":"1498","target":"781","id":"5083"},{"source":"727","target":"728","id":"1512"},{"source":"1065","target":"1063","id":"2801"},{"source":"728","target":"114","id":"5453"},{"source":"1226","target":"613","id":"3571"},{"source":"868","target":"109","id":"2020"},{"source":"1636","target":"1297","id":"6068"},{"source":"889","target":"888","id":"4403"},{"source":"884","target":"53","id":"2096"},{"source":"1244","target":"49","id":"3616"},{"source":"1483","target":"1003","id":"4989"},{"source":"641","target":"642","id":"5324"},{"source":"808","target":"48","id":"1792"},{"source":"1319","target":"68","id":"3980"},{"source":"216","target":"1","id":"543"},{"source":"1198","target":"281","id":"3437"},{"source":"1169","target":"238","id":"3263"},{"source":"269","target":"37","id":"333"},{"source":"990","target":"950","id":"2531"},{"source":"256","target":"182","id":"5161"},{"source":"1470","target":"65","id":"4902"},{"source":"809","target":"279","id":"1798"},{"source":"35","target":"38","id":"415"},{"source":"938","target":"975","id":"2483"},{"source":"955","target":"335","id":"2423"},{"source":"607","target":"65","id":"1485"},{"source":"1396","target":"211","id":"4384"},{"source":"1210","target":"290","id":"6444"},{"source":"1571","target":"367","id":"5539"},{"source":"299","target":"177","id":"1246"},{"source":"1710","target":"122","id":"6555"},{"source":"1692","target":"1693","id":"6420"},{"source":"547","target":"548","id":"946"},{"source":"248","target":"1","id":"5349"},{"source":"671","target":"105","id":"1351"},{"source":"1477","target":"422","id":"4931"},{"source":"553","target":"68","id":"982"},{"source":"1626","target":"50","id":"6015"},{"source":"580","target":"379","id":"1082"},{"source":"393","target":"216","id":"645"},{"source":"461","target":"65","id":"2622"},{"source":"652","target":"653","id":"1309"},{"source":"900","target":"652","id":"2153"},{"source":"460","target":"608","id":"1164"},{"source":"1472","target":"158","id":"4921"},{"source":"1066","target":"79","id":"2802"},{"source":"833","target":"48","id":"1892"},{"source":"951","target":"287","id":"2409"},{"source":"1664","target":"618","id":"6248"},{"source":"865","target":"926","id":"2292"},{"source":"1258","target":"524","id":"3670"},{"source":"576","target":"582","id":"2375"},{"source":"619","target":"298","id":"6032"},{"source":"1236","target":"622","id":"3594"},{"source":"687","target":"65","id":"1384"},{"source":"1418","target":"758","id":"4556"},{"source":"249","target":"250","id":"287"},{"source":"520","target":"521","id":"897"},{"source":"368","target":"177","id":"3004"},{"source":"1011","target":"408","id":"2583"},{"source":"1359","target":"696","id":"4193"},{"source":"534","target":"532","id":"6540"},{"source":"615","target":"1039","id":"4335"},{"source":"1427","target":"65","id":"4609"},{"source":"514","target":"498","id":"890"},{"source":"1611","target":"1614","id":"5920"},{"source":"873","target":"874","id":"2054"},{"source":"1210","target":"1077","id":"6445"},{"source":"442","target":"445","id":"721"},{"source":"1117","target":"177","id":"3020"},{"source":"1658","target":"295","id":"6218"},{"source":"60","target":"68","id":"63"},{"source":"1492","target":"53","id":"5049"},{"source":"625","target":"626","id":"1204"},{"source":"36","target":"122","id":"445"},{"source":"296","target":"292","id":"433"},{"source":"441","target":"129","id":"4374"},{"source":"1278","target":"227","id":"3796"},{"source":"675","target":"512","id":"6634"},{"source":"1708","target":"49","id":"6542"},{"source":"1110","target":"1111","id":"3012"},{"source":"1341","target":"444","id":"4096"},{"source":"1663","target":"262","id":"6243"},{"source":"830","target":"237","id":"1874"},{"source":"1174","target":"1126","id":"3290"},{"source":"1104","target":"177","id":"2975"},{"source":"802","target":"79","id":"1767"},{"source":"957","target":"502","id":"2431"},{"source":"717","target":"502","id":"1458"},{"source":"367","target":"309","id":"4319"},{"source":"1495","target":"1474","id":"5081"},{"source":"1401","target":"279","id":"4417"},{"source":"1047","target":"207","id":"4332"},{"source":"1016","target":"1017","id":"2594"},{"source":"321","target":"296","id":"731"},{"source":"754","target":"185","id":"5440"},{"source":"397","target":"49","id":"3908"},{"source":"750","target":"754","id":"1587"},{"source":"383","target":"385","id":"628"},{"source":"929","target":"53","id":"2303"},{"source":"939","target":"466","id":"2347"},{"source":"48","target":"405","id":"4639"},{"source":"676","target":"674","id":"1360"},{"source":"904","target":"427","id":"2207"},{"source":"1673","target":"597","id":"6299"},{"source":"1664","target":"485","id":"6246"},{"source":"1163","target":"428","id":"3214"},{"source":"607","target":"515","id":"1488"},{"source":"1257","target":"1","id":"3661"},{"source":"965","target":"964","id":"2443"},{"source":"590","target":"116","id":"5174"},{"source":"82","target":"128","id":"6438"},{"source":"1083","target":"367","id":"5929"},{"source":"1122","target":"388","id":"3044"},{"source":"851","target":"312","id":"1962"},{"source":"1460","target":"1461","id":"4807"},{"source":"79","target":"638","id":"1256"},{"source":"1432","target":"1395","id":"4680"},{"source":"1097","target":"324","id":"2952"},{"source":"593","target":"82","id":"1128"},{"source":"509","target":"365","id":"856"},{"source":"310","target":"46","id":"407"},{"source":"470","target":"471","id":"780"},{"source":"1705","target":"174","id":"6499"},{"source":"1498","target":"567","id":"5086"},{"source":"672","target":"118","id":"5403"},{"source":"1129","target":"323","id":"4598"},{"source":"167","target":"698","id":"2340"},{"source":"1574","target":"65","id":"5560"},{"source":"335","target":"532","id":"1058"},{"source":"1571","target":"46","id":"5538"},{"source":"495","target":"493","id":"6519"},{"source":"377","target":"295","id":"2151"},{"source":"920","target":"646","id":"2263"},{"source":"881","target":"53","id":"2088"},{"source":"801","target":"956","id":"4211"},{"source":"411","target":"807","id":"1779"},{"source":"1084","target":"397","id":"2870"},{"source":"1203","target":"238","id":"3453"},{"source":"409","target":"405","id":"4649"},{"source":"1184","target":"133","id":"3349"},{"source":"568","target":"504","id":"1642"},{"source":"1124","target":"896","id":"4846"},{"source":"1663","target":"457","id":"6244"},{"source":"550","target":"53","id":"967"},{"source":"714","target":"444","id":"6654"},{"source":"1706","target":"493","id":"6523"},{"source":"1458","target":"170","id":"4796"},{"source":"504","target":"708","id":"1640"},{"source":"716","target":"714","id":"1456"},{"source":"1115","target":"1116","id":"3062"},{"source":"1718","target":"1121","id":"6629"},{"source":"1026","target":"1","id":"2649"},{"source":"342","target":"310","id":"519"},{"source":"549","target":"463","id":"1277"},{"source":"829","target":"101","id":"1873"},{"source":"1650","target":"535","id":"6163"},{"source":"373","target":"364","id":"589"},{"source":"400","target":"136","id":"2389"},{"source":"1589","target":"104","id":"5712"},{"source":"1591","target":"109","id":"5733"},{"source":"841","target":"48","id":"2446"},{"source":"22","target":"25","id":"25"},{"source":"971","target":"972","id":"2474"},{"source":"768","target":"504","id":"6392"},{"source":"1605","target":"567","id":"5857"},{"source":"48","target":"49","id":"4633"},{"source":"129","target":"82","id":"139"},{"source":"142","target":"51","id":"166"},{"source":"1455","target":"50","id":"4765"},{"source":"760","target":"65","id":"1609"},{"source":"939","target":"68","id":"2346"},{"source":"1455","target":"53","id":"4771"},{"source":"545","target":"1","id":"943"},{"source":"537","target":"533","id":"3334"},{"source":"520","target":"1","id":"898"},{"source":"1212","target":"175","id":"3483"},{"source":"1721","target":"166","id":"6669"},{"source":"795","target":"50","id":"1745"},{"source":"437","target":"655","id":"1316"},{"source":"1054","target":"79","id":"2773"},{"source":"490","target":"491","id":"813"},{"source":"308","target":"162","id":"567"},{"source":"302","target":"301","id":"5113"},{"source":"1048","target":"702","id":"2747"},{"source":"224","target":"223","id":"2825"},{"source":"527","target":"525","id":"3547"},{"source":"1702","target":"1646","id":"6484"},{"source":"750","target":"752","id":"1583"},{"source":"1428","target":"752","id":"4619"},{"source":"1457","target":"267","id":"4785"},{"source":"310","target":"185","id":"408"},{"source":"388","target":"533","id":"2394"},{"source":"986","target":"985","id":"2521"},{"source":"994","target":"166","id":"2539"},{"source":"250","target":"451","id":"3370"},{"source":"553","target":"67","id":"989"},{"source":"906","target":"177","id":"2219"},{"source":"321","target":"194","id":"734"},{"source":"669","target":"65","id":"1335"},{"source":"314","target":"317","id":"426"},{"source":"699","target":"700","id":"1416"},{"source":"912","target":"1082","id":"2862"},{"source":"838","target":"49","id":"2456"},{"source":"222","target":"97","id":"249"},{"source":"1573","target":"51","id":"5547"},{"source":"342","target":"182","id":"521"},{"source":"1249","target":"618","id":"5910"},{"source":"30","target":"25","id":"5042"},{"source":"1540","target":"1466","id":"5306"},{"source":"257","target":"238","id":"299"},{"source":"1409","target":"1248","id":"4503"},{"source":"862","target":"118","id":"2629"},{"source":"274","target":"269","id":"325"},{"source":"673","target":"541","id":"1354"},{"source":"1317","target":"391","id":"6497"},{"source":"1011","target":"53","id":"2584"},{"source":"1105","target":"53","id":"2979"},{"source":"929","target":"25","id":"2302"},{"source":"1720","target":"144","id":"6665"},{"source":"1120","target":"5","id":"3040"},{"source":"1543","target":"99","id":"5334"},{"source":"1325","target":"1113","id":"4011"},{"source":"1428","target":"137","id":"4616"},{"source":"1312","target":"786","id":"3936"},{"source":"510","target":"554","id":"6336"},{"source":"1420","target":"568","id":"4560"},{"source":"413","target":"418","id":"684"},{"source":"85","target":"128","id":"1930"},{"source":"161","target":"641","id":"5311"},{"source":"735","target":"120","id":"1531"},{"source":"1191","target":"408","id":"3403"},{"source":"939","target":"467","id":"2352"},{"source":"68","target":"65","id":"110"},{"source":"1573","target":"484","id":"5548"},{"source":"273","target":"38","id":"5566"},{"source":"977","target":"82","id":"2496"},{"source":"461","target":"591","id":"2619"},{"source":"1673","target":"498","id":"6302"},{"source":"1226","target":"296","id":"3574"},{"source":"105","target":"50","id":"5385"},{"source":"1397","target":"379","id":"4412"},{"source":"1536","target":"1165","id":"5290"},{"source":"411","target":"409","id":"1777"},{"source":"864","target":"66","id":"2011"},{"source":"250","target":"65","id":"3366"},{"source":"1290","target":"626","id":"3834"},{"source":"220","target":"221","id":"247"},{"source":"682","target":"640","id":"6168"},{"source":"453","target":"249","id":"1616"},{"source":"1076","target":"1078","id":"3697"},{"source":"1360","target":"119","id":"6658"},{"source":"92","target":"53","id":"84"},{"source":"483","target":"397","id":"3925"},{"source":"719","target":"141","id":"1472"},{"source":"334","target":"50","id":"4743"},{"source":"1025","target":"120","id":"4626"},{"source":"1599","target":"1526","id":"5792"},{"source":"1201","target":"159","id":"4998"},{"source":"205","target":"900","id":"2678"},{"source":"882","target":"253","id":"2884"},{"source":"268","target":"34","id":"319"},{"source":"245","target":"50","id":"1732"},{"source":"1186","target":"53","id":"3354"},{"source":"235","target":"53","id":"269"},{"source":"1342","target":"50","id":"4097"},{"source":"499","target":"500","id":"830"},{"source":"1644","target":"502","id":"6129"},{"source":"1618","target":"896","id":"5951"},{"source":"141","target":"79","id":"6211"},{"source":"118","target":"93","id":"1298"},{"source":"429","target":"207","id":"4691"},{"source":"515","target":"607","id":"1170"},{"source":"957","target":"960","id":"2428"},{"source":"1145","target":"61","id":"3113"},{"source":"1152","target":"417","id":"4498"},{"source":"723","target":"309","id":"1483"},{"source":"714","target":"85","id":"6652"},{"source":"279","target":"282","id":"498"},{"source":"1674","target":"104","id":"6314"},{"source":"398","target":"50","id":"5160"},{"source":"1122","target":"82","id":"3041"},{"source":"1660","target":"959","id":"6222"},{"source":"957","target":"962","id":"2432"},{"source":"1167","target":"852","id":"3256"},{"source":"1629","target":"463","id":"6024"},{"source":"187","target":"192","id":"216"},{"source":"1638","target":"367","id":"6563"},{"source":"1658","target":"1659","id":"6219"},{"source":"1672","target":"598","id":"6295"},{"source":"311","target":"224","id":"469"},{"source":"1082","target":"309","id":"6571"},{"source":"1672","target":"87","id":"6293"},{"source":"1082","target":"913","id":"6573"},{"source":"1637","target":"1638","id":"6077"},{"source":"373","target":"116","id":"587"},{"source":"1537","target":"109","id":"5299"},{"source":"1156","target":"515","id":"3161"},{"source":"891","target":"181","id":"2118"},{"source":"1278","target":"313","id":"3797"},{"source":"1689","target":"113","id":"6406"},{"source":"815","target":"403","id":"1819"},{"source":"346","target":"646","id":"1272"},{"source":"1165","target":"65","id":"5230"},{"source":"1665","target":"239","id":"6270"},{"source":"1690","target":"314","id":"6415"},{"source":"793","target":"170","id":"2966"},{"source":"574","target":"281","id":"1064"},{"source":"285","target":"286","id":"355"},{"source":"1301","target":"531","id":"6399"},{"source":"1515","target":"163","id":"6565"},{"source":"1341","target":"806","id":"4091"},{"source":"1536","target":"96","id":"5285"},{"source":"1134","target":"281","id":"3074"},{"source":"1071","target":"1075","id":"2836"},{"source":"1280","target":"759","id":"3804"},{"source":"977","target":"48","id":"2495"},{"source":"1104","target":"626","id":"2971"},{"source":"892","target":"185","id":"5145"},{"source":"219","target":"324","id":"449"},{"source":"437","target":"654","id":"1315"},{"source":"773","target":"768","id":"1651"},{"source":"1049","target":"567","id":"2755"},{"source":"1397","target":"1165","id":"4405"},{"source":"153","target":"120","id":"2228"},{"source":"61","target":"133","id":"870"},{"source":"819","target":"79","id":"1835"},{"source":"173","target":"95","id":"194"},{"source":"1336","target":"279","id":"4060"},{"source":"1084","target":"51","id":"2867"},{"source":"64","target":"65","id":"1826"},{"source":"329","target":"79","id":"3241"},{"source":"1254","target":"42","id":"3646"},{"source":"578","target":"68","id":"5677"},{"source":"671","target":"672","id":"1352"},{"source":"143","target":"120","id":"610"},{"source":"845","target":"707","id":"1935"},{"source":"786","target":"322","id":"3948"},{"source":"42","target":"283","id":"348"},{"source":"1360","target":"51","id":"6661"},{"source":"598","target":"104","id":"1984"},{"source":"843","target":"502","id":"1921"},{"source":"1429","target":"693","id":"4967"},{"source":"68","target":"53","id":"109"},{"source":"1016","target":"53","id":"2590"},{"source":"1316","target":"391","id":"4969"},{"source":"291","target":"295","id":"372"},{"source":"716","target":"444","id":"1452"},{"source":"823","target":"824","id":"1847"},{"source":"756","target":"53","id":"1601"},{"source":"49","target":"280","id":"5187"},{"source":"1637","target":"313","id":"6075"},{"source":"1513","target":"65","id":"5216"},{"source":"1479","target":"68","id":"4972"},{"source":"1615","target":"421","id":"5923"},{"source":"1148","target":"351","id":"3123"},{"source":"792","target":"61","id":"1725"},{"source":"394","target":"391","id":"4930"},{"source":"502","target":"870","id":"5077"},{"source":"42","target":"280","id":"342"},{"source":"1459","target":"50","id":"4798"},{"source":"937","target":"469","id":"2344"},{"source":"1594","target":"68","id":"5761"},{"source":"1313","target":"292","id":"3955"},{"source":"732","target":"1386","id":"5970"},{"source":"1087","target":"79","id":"5443"},{"source":"603","target":"411","id":"1424"},{"source":"513","target":"335","id":"5207"},{"source":"797","target":"405","id":"1748"},{"source":"1162","target":"120","id":"3221"},{"source":"326","target":"79","id":"466"},{"source":"1286","target":"1287","id":"3825"},{"source":"1696","target":"179","id":"6429"},{"source":"472","target":"464","id":"781"},{"source":"639","target":"554","id":"1258"},{"source":"329","target":"45","id":"3243"},{"source":"1273","target":"1","id":"3765"},{"source":"654","target":"656","id":"3421"},{"source":"1438","target":"1440","id":"4709"},{"source":"1707","target":"656","id":"6538"},{"source":"690","target":"163","id":"1388"},{"source":"689","target":"104","id":"6110"},{"source":"837","target":"495","id":"1910"},{"source":"1247","target":"1152","id":"3630"},{"source":"92","target":"67","id":"88"},{"source":"836","target":"490","id":"1900"},{"source":"345","target":"349","id":"528"},{"source":"425","target":"104","id":"699"},{"source":"197","target":"198","id":"226"},{"source":"1304","target":"444","id":"3899"},{"source":"714","target":"713","id":"6649"},{"source":"219","target":"79","id":"448"},{"source":"554","target":"510","id":"2050"},{"source":"426","target":"104","id":"1031"},{"source":"644","target":"645","id":"1551"},{"source":"1616","target":"1617","id":"5948"},{"source":"877","target":"107","id":"2071"},{"source":"922","target":"91","id":"2273"},{"source":"311","target":"46","id":"471"},{"source":"869","target":"85","id":"2028"},{"source":"244","target":"645","id":"1667"},{"source":"1276","target":"20","id":"3768"},{"source":"1626","target":"1627","id":"6014"},{"source":"914","target":"251","id":"2249"},{"source":"2","target":"3","id":"3"},{"source":"763","target":"764","id":"3441"},{"source":"422","target":"1","id":"694"},{"source":"118","target":"82","id":"1293"},{"source":"352","target":"166","id":"535"},{"source":"1421","target":"1422","id":"4571"},{"source":"133","target":"137","id":"147"},{"source":"741","target":"535","id":"1544"},{"source":"1658","target":"302","id":"6212"},{"source":"725","target":"104","id":"1500"},{"source":"1506","target":"296","id":"5834"},{"source":"1194","target":"607","id":"3410"},{"source":"233","target":"447","id":"1007"},{"source":"781","target":"131","id":"2784"},{"source":"1086","target":"132","id":"2895"},{"source":"51","target":"281","id":"5585"},{"source":"1263","target":"65","id":"3709"},{"source":"281","target":"1125","id":"3083"},{"source":"1492","target":"1493","id":"5051"},{"source":"1345","target":"370","id":"4120"},{"source":"337","target":"182","id":"515"},{"source":"814","target":"97","id":"1816"},{"source":"574","target":"409","id":"1066"},{"source":"1540","target":"409","id":"5305"},{"source":"54","target":"56","id":"51"},{"source":"1432","target":"607","id":"4677"},{"source":"1574","target":"68","id":"5557"},{"source":"1456","target":"53","id":"4774"},{"source":"1327","target":"109","id":"5876"},{"source":"117","target":"65","id":"121"},{"source":"1188","target":"250","id":"3384"},{"source":"514","target":"65","id":"881"},{"source":"1478","target":"68","id":"4960"},{"source":"260","target":"262","id":"305"},{"source":"289","target":"62","id":"3723"},{"source":"1593","target":"567","id":"5751"},{"source":"213","target":"87","id":"240"},{"source":"1584","target":"1219","id":"5671"},{"source":"925","target":"65","id":"2285"},{"source":"1236","target":"852","id":"3592"},{"source":"319","target":"311","id":"3894"},{"source":"1050","target":"206","id":"4442"},{"source":"1285","target":"979","id":"3815"},{"source":"1283","target":"401","id":"5949"},{"source":"269","target":"276","id":"330"},{"source":"211","target":"225","id":"1947"},{"source":"834","target":"202","id":"5070"},{"source":"310","target":"312","id":"406"},{"source":"869","target":"82","id":"2026"},{"source":"1402","target":"401","id":"5841"},{"source":"954","target":"647","id":"3694"},{"source":"1645","target":"505","id":"6131"},{"source":"625","target":"629","id":"1210"},{"source":"397","target":"50","id":"3909"},{"source":"1303","target":"888","id":"4034"},{"source":"1419","target":"645","id":"5355"},{"source":"197","target":"199","id":"228"},{"source":"1035","target":"209","id":"2683"},{"source":"1014","target":"177","id":"3596"},{"source":"619","target":"526","id":"6036"},{"source":"1425","target":"524","id":"6436"},{"source":"1572","target":"1408","id":"6322"},{"source":"485","target":"79","id":"905"},{"source":"1001","target":"1002","id":"2551"},{"source":"1330","target":"262","id":"4038"},{"source":"1441","target":"1442","id":"4712"},{"source":"1432","target":"262","id":"4675"},{"source":"815","target":"817","id":"1818"},{"source":"898","target":"899","id":"2149"},{"source":"1359","target":"513","id":"4196"},{"source":"1590","target":"93","id":"5715"},{"source":"783","target":"1","id":"1699"},{"source":"192","target":"190","id":"214"},{"source":"822","target":"50","id":"6268"},{"source":"583","target":"585","id":"1090"},{"source":"1123","target":"1138","id":"3085"},{"source":"406","target":"53","id":"4736"},{"source":"811","target":"109","id":"1807"},{"source":"1189","target":"82","id":"3390"},{"source":"1433","target":"79","id":"4681"},{"source":"1591","target":"114","id":"5730"},{"source":"463","target":"79","id":"2635"},{"source":"936","target":"469","id":"2331"},{"source":"348","target":"76","id":"4621"},{"source":"1267","target":"405","id":"3733"},{"source":"697","target":"883","id":"5686"},{"source":"249","target":"76","id":"289"},{"source":"712","target":"868","id":"2036"},{"source":"779","target":"157","id":"1684"},{"source":"1574","target":"174","id":"5559"},{"source":"333","target":"53","id":"488"},{"source":"568","target":"427","id":"1641"},{"source":"1156","target":"408","id":"3159"},{"source":"1156","target":"364","id":"3158"},{"source":"1647","target":"175","id":"6135"},{"source":"771","target":"770","id":"6410"},{"source":"210","target":"211","id":"238"},{"source":"92","target":"93","id":"87"},{"source":"481","target":"482","id":"801"},{"source":"281","target":"600","id":"3080"},{"source":"499","target":"370","id":"828"},{"source":"223","target":"5","id":"254"},{"source":"606","target":"657","id":"3117"},{"source":"744","target":"241","id":"1560"},{"source":"94","target":"95","id":"90"},{"source":"1187","target":"65","id":"3371"},{"source":"327","target":"315","id":"461"},{"source":"756","target":"339","id":"1603"},{"source":"871","target":"65","id":"2046"},{"source":"48","target":"334","id":"4642"},{"source":"808","target":"50","id":"1786"},{"source":"866","target":"53","id":"2609"},{"source":"533","target":"956","id":"6084"},{"source":"274","target":"37","id":"328"},{"source":"657","target":"128","id":"5995"},{"source":"69","target":"73","id":"67"},{"source":"676","target":"646","id":"1358"},{"source":"15","target":"16","id":"18"},{"source":"411","target":"806","id":"1778"},{"source":"913","target":"1130","id":"5134"},{"source":"1361","target":"492","id":"4202"},{"source":"1457","target":"455","id":"4783"},{"source":"528","target":"617","id":"3552"},{"source":"1545","target":"1546","id":"5351"},{"source":"1081","target":"79","id":"2855"},{"source":"999","target":"1000","id":"2546"},{"source":"914","target":"915","id":"2248"},{"source":"677","target":"51","id":"1366"},{"source":"97","target":"94","id":"5266"},{"source":"1163","target":"567","id":"3210"},{"source":"89","target":"141","id":"2235"},{"source":"665","target":"431","id":"1325"},{"source":"93","target":"50","id":"2163"},{"source":"1144","target":"185","id":"3107"},{"source":"253","target":"76","id":"805"},{"source":"784","target":"65","id":"1706"},{"source":"1369","target":"1370","id":"4255"},{"source":"832","target":"65","id":"1884"},{"source":"1701","target":"53","id":"6479"},{"source":"98","target":"100","id":"94"},{"source":"664","target":"660","id":"3706"},{"source":"1480","target":"1317","id":"4982"},{"source":"896","target":"765","id":"4821"},{"source":"1203","target":"570","id":"3451"},{"source":"1554","target":"65","id":"5419"},{"source":"1327","target":"53","id":"5869"},{"source":"1104","target":"224","id":"2969"},{"source":"1267","target":"747","id":"3735"},{"source":"1148","target":"79","id":"3122"},{"source":"577","target":"585","id":"4394"},{"source":"1156","target":"53","id":"3160"},{"source":"1622","target":"1484","id":"5976"},{"source":"851","target":"79","id":"1961"},{"source":"760","target":"68","id":"1606"},{"source":"397","target":"801","id":"3914"},{"source":"1298","target":"335","id":"3869"},{"source":"271","target":"36","id":"4325"},{"source":"1568","target":"772","id":"5508"},{"source":"1045","target":"65","id":"2733"},{"source":"1315","target":"323","id":"4487"},{"source":"1074","target":"1076","id":"2844"},{"source":"1359","target":"335","id":"4200"},{"source":"1126","target":"33","id":"4813"},{"source":"366","target":"598","id":"5456"},{"source":"1001","target":"361","id":"2549"},{"source":"298","target":"219","id":"378"},{"source":"1701","target":"460","id":"6480"},{"source":"407","target":"146","id":"667"},{"source":"691","target":"217","id":"1392"},{"source":"1290","target":"79","id":"3832"},{"source":"477","target":"368","id":"3517"},{"source":"549","target":"79","id":"1276"},{"source":"570","target":"159","id":"1038"},{"source":"65","target":"50","id":"2127"},{"source":"728","target":"104","id":"5452"},{"source":"322","target":"296","id":"3945"},{"source":"1626","target":"513","id":"6013"},{"source":"955","target":"48","id":"2418"},{"source":"1363","target":"49","id":"4232"},{"source":"1592","target":"109","id":"5747"},{"source":"41","target":"43","id":"40"},{"source":"1607","target":"1409","id":"5903"},{"source":"1471","target":"53","id":"4907"},{"source":"813","target":"645","id":"1810"},{"source":"161","target":"1541","id":"5313"},{"source":"945","target":"1","id":"2371"},{"source":"901","target":"109","id":"2172"},{"source":"61","target":"66","id":"866"},{"source":"1295","target":"544","id":"3857"},{"source":"296","target":"79","id":"429"},{"source":"1709","target":"479","id":"6548"},{"source":"1489","target":"1038","id":"5021"},{"source":"1022","target":"250","id":"3359"},{"source":"1677","target":"370","id":"6357"},{"source":"958","target":"959","id":"2811"},{"source":"1539","target":"1","id":"5300"},{"source":"465","target":"462","id":"954"},{"source":"379","target":"68","id":"4126"},{"source":"713","target":"714","id":"6647"},{"source":"708","target":"769","id":"2872"},{"source":"18","target":"981","id":"2511"},{"source":"275","target":"36","id":"4323"},{"source":"1709","target":"183","id":"6551"},{"source":"1339","target":"724","id":"4079"},{"source":"1573","target":"66","id":"5542"},{"source":"884","target":"515","id":"2097"},{"source":"167","target":"53","id":"2336"},{"source":"1107","target":"513","id":"2988"},{"source":"1443","target":"53","id":"4721"},{"source":"1569","target":"772","id":"5515"},{"source":"333","target":"48","id":"490"},{"source":"705","target":"568","id":"1423"},{"source":"1294","target":"970","id":"3851"},{"source":"1589","target":"114","id":"5704"},{"source":"967","target":"1027","id":"2653"},{"source":"195","target":"194","id":"5388"},{"source":"1227","target":"294","id":"3576"},{"source":"1000","target":"1175","id":"3292"},{"source":"1471","target":"1015","id":"4911"},{"source":"1709","target":"303","id":"6544"},{"source":"659","target":"661","id":"3882"},{"source":"404","target":"48","id":"656"},{"source":"70","target":"73","id":"2492"},{"source":"1652","target":"48","id":"6182"},{"source":"1518","target":"163","id":"5234"},{"source":"1383","target":"79","id":"4313"},{"source":"1019","target":"1021","id":"2615"},{"source":"711","target":"712","id":"1436"},{"source":"1022","target":"65","id":"3356"},{"source":"714","target":"712","id":"6653"},{"source":"355","target":"505","id":"4010"},{"source":"1590","target":"430","id":"5718"},{"source":"275","target":"276","id":"4321"},{"source":"270","target":"38","id":"410"},{"source":"515","target":"216","id":"1172"},{"source":"509","target":"511","id":"859"},{"source":"1226","target":"79","id":"3569"},{"source":"365","target":"264","id":"1339"},{"source":"894","target":"177","id":"2119"},{"source":"1712","target":"1227","id":"6596"},{"source":"628","target":"177","id":"4149"},{"source":"532","target":"537","id":"925"},{"source":"30","target":"456","id":"5044"},{"source":"1070","target":"109","id":"2820"},{"source":"1472","target":"736","id":"4918"},{"source":"1041","target":"1043","id":"2705"},{"source":"1078","target":"1079","id":"3643"},{"source":"1591","target":"104","id":"5729"},{"source":"1639","target":"456","id":"6095"},{"source":"50","target":"64","id":"5471"},{"source":"528","target":"523","id":"3551"},{"source":"856","target":"321","id":"1977"},{"source":"414","target":"420","id":"690"},{"source":"657","target":"1593","id":"6001"},{"source":"249","target":"65","id":"285"},{"source":"779","target":"68","id":"1683"},{"source":"482","target":"483","id":"3838"},{"source":"1409","target":"1249","id":"4504"},{"source":"184","target":"325","id":"5125"},{"source":"1215","target":"238","id":"3492"},{"source":"471","target":"485","id":"807"},{"source":"1194","target":"732","id":"3408"},{"source":"741","target":"364","id":"1542"},{"source":"717","target":"441","id":"1465"},{"source":"1312","target":"321","id":"3932"},{"source":"1187","target":"68","id":"3374"},{"source":"391","target":"983","id":"3965"},{"source":"14","target":"5","id":"17"},{"source":"1519","target":"51","id":"5237"},{"source":"1160","target":"177","id":"3193"},{"source":"1081","target":"368","id":"2857"},{"source":"1395","target":"571","id":"4382"},{"source":"959","target":"163","id":"3163"},{"source":"579","target":"253","id":"6003"},{"source":"78","target":"79","id":"72"},{"source":"1188","target":"53","id":"3383"},{"source":"1639","target":"27","id":"6091"},{"source":"274","target":"38","id":"329"},{"source":"378","target":"120","id":"3207"},{"source":"1313","target":"1152","id":"3954"},{"source":"1165","target":"53","id":"5227"},{"source":"589","target":"113","id":"1660"},{"source":"171","target":"1046","id":"5261"},{"source":"864","target":"480","id":"2006"},{"source":"506","target":"50","id":"847"},{"source":"1269","target":"1268","id":"3749"},{"source":"1499","target":"424","id":"5093"},{"source":"292","target":"219","id":"374"},{"source":"1187","target":"82","id":"3373"},{"source":"625","target":"300","id":"1203"},{"source":"1509","target":"370","id":"5197"},{"source":"1637","target":"998","id":"6073"},{"source":"1063","target":"1069","id":"4301"},{"source":"363","target":"365","id":"557"},{"source":"1690","target":"1152","id":"6418"},{"source":"537","target":"335","id":"3331"},{"source":"152","target":"154","id":"172"},{"source":"292","target":"297","id":"375"},{"source":"1708","target":"508","id":"6541"},{"source":"1576","target":"68","id":"5608"},{"source":"784","target":"53","id":"1704"},{"source":"460","target":"119","id":"1167"},{"source":"1319","target":"53","id":"3981"},{"source":"1579","target":"79","id":"5635"},{"source":"1597","target":"66","id":"5781"},{"source":"873","target":"109","id":"2061"},{"source":"151","target":"150","id":"170"},{"source":"595","target":"591","id":"1130"},{"source":"257","target":"50","id":"297"},{"source":"354","target":"1","id":"1147"},{"source":"1510","target":"1236","id":"5201"},{"source":"1249","target":"1248","id":"5915"},{"source":"1490","target":"494","id":"5032"},{"source":"730","target":"702","id":"1518"},{"source":"179","target":"1117","id":"3398"},{"source":"330","target":"296","id":"479"},{"source":"1099","target":"1094","id":"2949"},{"source":"1271","target":"746","id":"3755"},{"source":"837","target":"280","id":"1904"},{"source":"73","target":"561","id":"1708"},{"source":"1188","target":"109","id":"3385"},{"source":"794","target":"65","id":"1739"},{"source":"206","target":"209","id":"2691"},{"source":"955","target":"279","id":"2421"},{"source":"1124","target":"543","id":"4848"},{"source":"561","target":"70","id":"1025"},{"source":"979","target":"488","id":"2657"},{"source":"1211","target":"159","id":"3474"},{"source":"1517","target":"1515","id":"5233"},{"source":"645","target":"95","id":"1555"},{"source":"67","target":"93","id":"2714"},{"source":"1006","target":"82","id":"2574"},{"source":"1091","target":"66","id":"2913"},{"source":"894","target":"79","id":"2120"},{"source":"1699","target":"159","id":"6453"},{"source":"856","target":"295","id":"1980"},{"source":"1281","target":"1200","id":"3809"},{"source":"362","target":"56","id":"6461"},{"source":"1108","target":"177","id":"2997"},{"source":"580","target":"582","id":"1076"},{"source":"382","target":"284","id":"625"},{"source":"26","target":"947","id":"2883"},{"source":"498","target":"80","id":"1987"},{"source":"108","target":"65","id":"5491"},{"source":"1455","target":"591","id":"4763"},{"source":"1678","target":"619","id":"6371"},{"source":"1432","target":"608","id":"4678"},{"source":"1720","target":"265","id":"6663"},{"source":"1259","target":"524","id":"3963"},{"source":"864","target":"498","id":"2009"},{"source":"1248","target":"618","id":"5894"},{"source":"1359","target":"53","id":"4192"},{"source":"264","target":"202","id":"1573"},{"source":"1679","target":"1196","id":"6377"},{"source":"630","target":"120","id":"1212"},{"source":"929","target":"154","id":"2305"},{"source":"336","target":"284","id":"3142"},{"source":"1687","target":"1688","id":"6398"},{"source":"591","target":"1","id":"1239"},{"source":"1050","target":"208","id":"4444"},{"source":"505","target":"232","id":"4001"},{"source":"180","target":"185","id":"206"},{"source":"553","target":"554","id":"987"},{"source":"1376","target":"525","id":"4280"},{"source":"1628","target":"535","id":"6018"},{"source":"1188","target":"239","id":"3386"},{"source":"312","target":"638","id":"3246"},{"source":"608","target":"216","id":"1490"},{"source":"64","target":"349","id":"1831"},{"source":"1129","target":"517","id":"4597"},{"source":"1720","target":"438","id":"6668"},{"source":"1651","target":"1404","id":"6174"},{"source":"451","target":"453","id":"742"},{"source":"48","target":"53","id":"4637"},{"source":"325","target":"79","id":"5138"},{"source":"703","target":"540","id":"3892"},{"source":"1440","target":"111","id":"6177"},{"source":"1572","target":"79","id":"6318"},{"source":"1086","target":"68","id":"2891"},{"source":"1427","target":"400","id":"4610"},{"source":"1134","target":"170","id":"3075"},{"source":"1510","target":"113","id":"5199"},{"source":"589","target":"49","id":"1665"},{"source":"505","target":"493","id":"4000"},{"source":"909","target":"906","id":"6081"},{"source":"1486","target":"79","id":"5011"},{"source":"1543","target":"82","id":"5333"},{"source":"695","target":"111","id":"4954"},{"source":"1711","target":"79","id":"6583"},{"source":"837","target":"48","id":"1908"},{"source":"133","target":"136","id":"146"},{"source":"322","target":"1312","id":"3943"},{"source":"1459","target":"279","id":"4800"},{"source":"1022","target":"93","id":"3357"},{"source":"1571","target":"79","id":"5534"},{"source":"1086","target":"65","id":"2893"},{"source":"730","target":"607","id":"1517"},{"source":"921","target":"498","id":"2269"},{"source":"108","target":"50","id":"5492"},{"source":"929","target":"68","id":"2301"},{"source":"1426","target":"1129","id":"4596"},{"source":"726","target":"607","id":"2190"},{"source":"722","target":"239","id":"1475"},{"source":"1513","target":"366","id":"5218"},{"source":"376","target":"294","id":"608"},{"source":"712","target":"869","id":"2037"},{"source":"1242","target":"568","id":"3606"},{"source":"26","target":"76","id":"2880"},{"source":"719","target":"720","id":"1469"},{"source":"1247","target":"1248","id":"3631"},{"source":"1470","target":"552","id":"4904"},{"source":"289","target":"286","id":"3722"},{"source":"1547","target":"159","id":"5522"},{"source":"877","target":"740","id":"2069"},{"source":"822","target":"397","id":"6263"},{"source":"528","target":"524","id":"3554"},{"source":"1363","target":"52","id":"4234"},{"source":"452","target":"53","id":"2281"},{"source":"1256","target":"65","id":"3651"},{"source":"1049","target":"1050","id":"2756"},{"source":"539","target":"541","id":"929"},{"source":"1577","target":"129","id":"5616"},{"source":"1466","target":"335","id":"4836"},{"source":"1024","target":"121","id":"2644"},{"source":"265","target":"834","id":"1895"},{"source":"977","target":"46","id":"2494"},{"source":"487","target":"489","id":"811"},{"source":"841","target":"51","id":"2449"},{"source":"153","target":"152","id":"2232"},{"source":"1053","target":"209","id":"4601"},{"source":"410","target":"49","id":"678"},{"source":"398","target":"1244","id":"5155"},{"source":"64","target":"53","id":"1824"},{"source":"197","target":"166","id":"227"},{"source":"1507","target":"79","id":"5148"},{"source":"1678","target":"185","id":"6370"},{"source":"191","target":"190","id":"5885"},{"source":"1183","target":"1","id":"3345"},{"source":"1303","target":"663","id":"4033"},{"source":"1548","target":"5","id":"5357"},{"source":"747","target":"600","id":"3779"},{"source":"1292","target":"1291","id":"5658"},{"source":"397","target":"1206","id":"3913"},{"source":"145","target":"436","id":"1002"},{"source":"371","target":"372","id":"578"},{"source":"1573","target":"53","id":"5550"},{"source":"938","target":"53","id":"2481"},{"source":"797","target":"370","id":"1750"},{"source":"250","target":"53","id":"3364"},{"source":"537","target":"532","id":"3329"},{"source":"1605","target":"175","id":"5856"},{"source":"1594","target":"53","id":"5763"},{"source":"64","target":"50","id":"1830"},{"source":"434","target":"161","id":"941"},{"source":"1362","target":"65","id":"4224"},{"source":"1716","target":"1120","id":"6615"},{"source":"1063","target":"1066","id":"4300"},{"source":"1689","target":"399","id":"6404"},{"source":"1489","target":"1037","id":"5020"},{"source":"760","target":"624","id":"1610"},{"source":"1432","target":"515","id":"4676"},{"source":"1452","target":"66","id":"4751"},{"source":"1721","target":"53","id":"6670"},{"source":"569","target":"568","id":"2199"},{"source":"943","target":"120","id":"2361"},{"source":"1362","target":"68","id":"4219"},{"source":"650","target":"324","id":"1284"},{"source":"81","target":"82","id":"74"},{"source":"1298","target":"397","id":"3873"},{"source":"285","target":"61","id":"350"},{"source":"1038","target":"206","id":"5028"},{"source":"53","target":"64","id":"1113"},{"source":"613","target":"313","id":"1966"},{"source":"1343","target":"393","id":"4107"},{"source":"925","target":"287","id":"2287"},{"source":"1268","target":"63","id":"3743"},{"source":"1667","target":"1668","id":"6274"},{"source":"613","target":"292","id":"1963"},{"source":"833","target":"109","id":"1894"},{"source":"1611","target":"600","id":"5918"},{"source":"459","target":"460","id":"765"},{"source":"1257","target":"5","id":"3662"},{"source":"261","target":"238","id":"5960"},{"source":"85","target":"82","id":"1932"},{"source":"1458","target":"497","id":"4794"},{"source":"832","target":"53","id":"1882"},{"source":"1639","target":"552","id":"6094"},{"source":"408","target":"61","id":"877"},{"source":"1373","target":"698","id":"6367"},{"source":"805","target":"166","id":"1771"},{"source":"39","target":"270","id":"4304"},{"source":"1427","target":"53","id":"4607"},{"source":"1286","target":"53","id":"3823"},{"source":"1624","target":"648","id":"5989"},{"source":"225","target":"224","id":"6089"},{"source":"740","target":"53","id":"1535"},{"source":"358","target":"360","id":"548"},{"source":"1092","target":"409","id":"2919"},{"source":"1606","target":"421","id":"5865"},{"source":"310","target":"79","id":"404"},{"source":"1245","target":"141","id":"3628"},{"source":"142","target":"145","id":"163"},{"source":"1345","target":"267","id":"4118"},{"source":"1548","target":"1","id":"5356"},{"source":"684","target":"5","id":"1376"},{"source":"304","target":"966","id":"4506"},{"source":"1242","target":"427","id":"3609"},{"source":"606","target":"437","id":"3115"},{"source":"269","target":"273","id":"338"},{"source":"849","target":"79","id":"1950"},{"source":"50","target":"111","id":"5476"},{"source":"398","target":"48","id":"5157"},{"source":"47","target":"49","id":"4431"},{"source":"730","target":"732","id":"1524"},{"source":"726","target":"53","id":"2195"},{"source":"642","target":"641","id":"6165"},{"source":"426","target":"427","id":"1030"},{"source":"1337","target":"200","id":"4073"},{"source":"274","target":"36","id":"327"},{"source":"1568","target":"1569","id":"5513"},{"source":"820","target":"167","id":"1836"},{"source":"1393","target":"233","id":"4371"},{"source":"1223","target":"528","id":"3561"},{"source":"574","target":"334","id":"1067"},{"source":"1341","target":"784","id":"4093"},{"source":"513","target":"50","id":"5209"},{"source":"216","target":"214","id":"545"},{"source":"1673","target":"512","id":"6300"},{"source":"330","target":"219","id":"480"},{"source":"1033","target":"177","id":"2671"},{"source":"363","target":"161","id":"561"},{"source":"204","target":"207","id":"235"},{"source":"703","target":"702","id":"3886"},{"source":"100","target":"248","id":"1844"},{"source":"385","target":"294","id":"3683"},{"source":"87","target":"380","id":"6289"},{"source":"1175","target":"33","id":"3326"},{"source":"726","target":"65","id":"2191"},{"source":"394","target":"390","id":"4928"},{"source":"759","target":"284","id":"5777"},{"source":"1099","target":"312","id":"2950"},{"source":"713","target":"715","id":"6641"},{"source":"951","target":"65","id":"2408"},{"source":"153","target":"242","id":"2233"},{"source":"375","target":"115","id":"599"},{"source":"1014","target":"463","id":"3598"},{"source":"63","target":"62","id":"993"},{"source":"729","target":"402","id":"1515"},{"source":"1674","target":"131","id":"6313"},{"source":"995","target":"993","id":"2541"},{"source":"654","target":"437","id":"3418"},{"source":"24","target":"23","id":"5817"},{"source":"1624","target":"1547","id":"5991"},{"source":"1046","target":"567","id":"6338"},{"source":"482","target":"1292","id":"3841"},{"source":"533","target":"532","id":"6082"},{"source":"1475","target":"900","id":"4925"},{"source":"831","target":"1085","id":"2876"},{"source":"296","target":"185","id":"432"},{"source":"298","target":"299","id":"379"},{"source":"1513","target":"897","id":"5219"},{"source":"378","target":"668","id":"3205"},{"source":"457","target":"1017","id":"6343"},{"source":"246","target":"915","id":"2641"},{"source":"1350","target":"79","id":"4146"},{"source":"374","target":"267","id":"5179"},{"source":"881","target":"68","id":"2087"},{"source":"808","target":"406","id":"1794"},{"source":"113","target":"267","id":"1097"},{"source":"1357","target":"367","id":"5314"},{"source":"405","target":"51","id":"2926"},{"source":"780","target":"175","id":"1698"},{"source":"239","target":"648","id":"6451"},{"source":"1318","target":"1316","id":"3973"},{"source":"1359","target":"49","id":"4195"},{"source":"1451","target":"185","id":"5109"},{"source":"321","target":"294","id":"732"},{"source":"1174","target":"388","id":"3289"},{"source":"1187","target":"103","id":"3375"},{"source":"1500","target":"961","id":"5096"},{"source":"946","target":"76","id":"2377"},{"source":"768","target":"708","id":"6393"},{"source":"788","target":"114","id":"1717"},{"source":"509","target":"408","id":"854"},{"source":"633","target":"634","id":"1223"},{"source":"696","target":"697","id":"1411"},{"source":"665","target":"287","id":"1331"},{"source":"1107","target":"1015","id":"2987"},{"source":"878","target":"68","id":"2074"},{"source":"68","target":"108","id":"107"},{"source":"743","target":"644","id":"1549"},{"source":"315","target":"306","id":"3504"},{"source":"611","target":"119","id":"1179"},{"source":"891","target":"893","id":"2117"},{"source":"1169","target":"82","id":"3264"},{"source":"1208","target":"211","id":"3462"},{"source":"1490","target":"833","id":"5038"},{"source":"777","target":"16","id":"3464"},{"source":"1387","target":"974","id":"4350"},{"source":"1712","target":"182","id":"6597"},{"source":"673","target":"675","id":"1356"},{"source":"980","target":"916","id":"2509"},{"source":"251","target":"453","id":"3974"},{"source":"1163","target":"656","id":"3216"},{"source":"804","target":"1","id":"1770"},{"source":"237","target":"238","id":"272"},{"source":"174","target":"423","id":"1525"},{"source":"402","target":"403","id":"652"},{"source":"1033","target":"209","id":"2672"},{"source":"769","target":"768","id":"1635"},{"source":"1146","target":"381","id":"3660"},{"source":"594","target":"510","id":"4879"},{"source":"211","target":"361","id":"1946"},{"source":"1636","target":"420","id":"6070"},{"source":"621","target":"372","id":"3958"},{"source":"1416","target":"296","id":"4547"},{"source":"1182","target":"411","id":"3338"},{"source":"580","target":"576","id":"1080"},{"source":"288","target":"289","id":"361"},{"source":"725","target":"726","id":"1499"},{"source":"404","target":"405","id":"654"},{"source":"1279","target":"79","id":"5626"},{"source":"459","target":"65","id":"767"},{"source":"750","target":"137","id":"1589"},{"source":"1071","target":"1074","id":"2835"},{"source":"1540","target":"427","id":"5302"},{"source":"1183","target":"1155","id":"3343"},{"source":"1720","target":"263","id":"6664"},{"source":"954","target":"436","id":"3692"},{"source":"1260","target":"1","id":"3677"},{"source":"509","target":"65","id":"857"},{"source":"1071","target":"1073","id":"2834"},{"source":"431","target":"53","id":"709"},{"source":"481","target":"334","id":"803"},{"source":"1250","target":"500","id":"3638"},{"source":"1421","target":"310","id":"4566"},{"source":"502","target":"85","id":"5073"},{"source":"1716","target":"1717","id":"6617"},{"source":"1273","target":"1274","id":"3761"},{"source":"552","target":"53","id":"4891"},{"source":"651","target":"53","id":"1304"},{"source":"883","target":"915","id":"4188"},{"source":"1652","target":"498","id":"6180"},{"source":"1035","target":"1034","id":"2684"},{"source":"1378","target":"291","id":"4283"},{"source":"188","target":"190","id":"224"},{"source":"828","target":"53","id":"1860"},{"source":"711","target":"714","id":"1441"},{"source":"312","target":"852","id":"3247"},{"source":"476","target":"473","id":"793"},{"source":"103","target":"234","id":"264"},{"source":"1211","target":"96","id":"3475"},{"source":"245","target":"68","id":"1734"},{"source":"304","target":"185","id":"4507"},{"source":"1222","target":"892","id":"3536"},{"source":"610","target":"53","id":"1183"},{"source":"1005","target":"885","id":"3269"},{"source":"1124","target":"82","id":"4847"},{"source":"1501","target":"48","id":"5102"},{"source":"750","target":"311","id":"1580"},{"source":"681","target":"682","id":"1367"},{"source":"369","target":"254","id":"572"},{"source":"1649","target":"85","id":"6147"},{"source":"979","target":"978","id":"2656"},{"source":"1101","target":"1100","id":"2958"},{"source":"288","target":"53","id":"366"},{"source":"824","target":"823","id":"3265"},{"source":"965","target":"82","id":"2445"},{"source":"267","target":"374","id":"4433"},{"source":"949","target":"204","id":"2396"},{"source":"1223","target":"523","id":"3555"},{"source":"604","target":"428","id":"1152"},{"source":"1254","target":"279","id":"3647"},{"source":"1576","target":"1117","id":"5610"},{"source":"133","target":"135","id":"145"},{"source":"1053","target":"208","id":"4599"},{"source":"806","target":"111","id":"6054"},{"source":"732","target":"238","id":"5973"},{"source":"202","target":"265","id":"6638"},{"source":"918","target":"781","id":"2260"},{"source":"1063","target":"1064","id":"4299"},{"source":"1119","target":"409","id":"6257"},{"source":"842","target":"85","id":"1919"},{"source":"1315","target":"79","id":"4485"},{"source":"404","target":"50","id":"660"},{"source":"874","target":"114","id":"2066"},{"source":"279","target":"42","id":"501"},{"source":"757","target":"344","id":"5830"},{"source":"547","target":"79","id":"947"},{"source":"683","target":"21","id":"1444"},{"source":"242","target":"241","id":"2225"},{"source":"914","target":"50","id":"2250"},{"source":"1227","target":"377","id":"3577"},{"source":"548","target":"463","id":"962"},{"source":"1092","target":"66","id":"2924"},{"source":"1674","target":"65","id":"6312"},{"source":"498","target":"857","id":"1986"},{"source":"1637","target":"57","id":"6074"},{"source":"1325","target":"408","id":"4015"},{"source":"276","target":"313","id":"6590"},{"source":"1700","target":"150","id":"6464"},{"source":"540","target":"541","id":"2189"},{"source":"1267","target":"364","id":"3738"},{"source":"1504","target":"50","id":"5106"},{"source":"1650","target":"334","id":"6157"},{"source":"383","target":"61","id":"632"},{"source":"1027","target":"967","id":"5435"},{"source":"1405","target":"312","id":"4456"},{"source":"1551","target":"439","id":"5387"},{"source":"937","target":"458","id":"2345"},{"source":"1625","target":"1324","id":"6007"},{"source":"131","target":"567","id":"2186"},{"source":"457","target":"259","id":"6342"},{"source":"276","target":"38","id":"6589"},{"source":"48","target":"409","id":"4641"},{"source":"336","target":"50","id":"3148"},{"source":"337","target":"53","id":"509"},{"source":"23","target":"28","id":"5805"},{"source":"975","target":"510","id":"2489"},{"source":"1042","target":"209","id":"2716"},{"source":"400","target":"133","id":"2387"},{"source":"799","target":"48","id":"1762"},{"source":"1049","target":"495","id":"2752"},{"source":"643","target":"645","id":"1270"},{"source":"1421","target":"79","id":"4568"},{"source":"1230","target":"1231","id":"3584"},{"source":"524","target":"1259","id":"4501"},{"source":"36","target":"275","id":"440"},{"source":"126","target":"127","id":"135"},{"source":"1595","target":"97","id":"5773"},{"source":"1104","target":"638","id":"2970"},{"source":"51","target":"408","id":"5583"},{"source":"1455","target":"262","id":"4766"},{"source":"145","target":"166","id":"1001"},{"source":"864","target":"50","id":"2005"},{"source":"1616","target":"1083","id":"5946"},{"source":"642","target":"161","id":"6164"},{"source":"1705","target":"120","id":"6503"},{"source":"587","target":"589","id":"1105"},{"source":"1066","target":"1065","id":"2803"},{"source":"474","target":"473","id":"6608"},{"source":"273","target":"40","id":"5568"},{"source":"918","target":"104","id":"2258"},{"source":"525","target":"293","id":"930"},{"source":"884","target":"216","id":"2094"},{"source":"918","target":"458","id":"2262"},{"source":"266","target":"264","id":"3991"},{"source":"841","target":"49","id":"2447"},{"source":"595","target":"592","id":"1134"},{"source":"556","target":"830","id":"3424"},{"source":"87","target":"544","id":"6291"},{"source":"1373","target":"82","id":"6366"},{"source":"748","target":"364","id":"3788"},{"source":"1339","target":"1015","id":"4081"},{"source":"1007","target":"1009","id":"2578"},{"source":"1638","target":"899","id":"6564"},{"source":"414","target":"219","id":"688"},{"source":"1570","target":"570","id":"5526"},{"source":"770","target":"769","id":"5553"},{"source":"285","target":"51","id":"358"},{"source":"829","target":"76","id":"1869"},{"source":"1339","target":"223","id":"4085"},{"source":"944","target":"484","id":"2369"},{"source":"1269","target":"61","id":"3754"},{"source":"1125","target":"533","id":"4522"},{"source":"347","target":"348","id":"4031"},{"source":"268","target":"38","id":"314"},{"source":"866","target":"66","id":"2611"},{"source":"769","target":"708","id":"1633"},{"source":"484","target":"166","id":"5587"},{"source":"216","target":"351","id":"544"},{"source":"1354","target":"479","id":"4175"},{"source":"644","target":"96","id":"1552"},{"source":"574","target":"49","id":"1059"},{"source":"461","target":"64","id":"2621"},{"source":"21","target":"20","id":"1310"},{"source":"321","target":"322","id":"733"},{"source":"610","target":"216","id":"1182"},{"source":"1486","target":"591","id":"5010"},{"source":"207","target":"1","id":"2695"},{"source":"524","target":"1258","id":"4500"},{"source":"1025","target":"53","id":"4628"},{"source":"1368","target":"312","id":"4254"},{"source":"856","target":"310","id":"1974"},{"source":"1125","target":"335","id":"4518"},{"source":"1214","target":"96","id":"3487"},{"source":"543","target":"532","id":"935"},{"source":"417","target":"1152","id":"4467"},{"source":"346","target":"647","id":"1273"},{"source":"263","target":"266","id":"309"},{"source":"1187","target":"53","id":"3378"},{"source":"687","target":"82","id":"1378"},{"source":"1501","target":"49","id":"5103"},{"source":"902","target":"93","id":"3167"},{"source":"97","target":"82","id":"5267"},{"source":"613","target":"296","id":"1964"},{"source":"363","target":"68","id":"563"},{"source":"1390","target":"365","id":"4362"},{"source":"381","target":"296","id":"613"},{"source":"115","target":"113","id":"2322"},{"source":"437","target":"657","id":"1318"},{"source":"336","target":"51","id":"3141"},{"source":"594","target":"61","id":"4874"},{"source":"1179","target":"516","id":"3305"},{"source":"1674","target":"118","id":"6310"},{"source":"1443","target":"82","id":"4719"},{"source":"1279","target":"1282","id":"5629"},{"source":"418","target":"219","id":"4564"},{"source":"53","target":"65","id":"1114"},{"source":"1201","target":"1077","id":"4995"},{"source":"443","target":"79","id":"1288"},{"source":"1606","target":"1249","id":"5863"},{"source":"183","target":"296","id":"5117"},{"source":"1226","target":"819","id":"3570"},{"source":"261","target":"732","id":"5961"},{"source":"361","target":"299","id":"1956"},{"source":"328","target":"45","id":"474"},{"source":"1636","target":"1152","id":"6069"},{"source":"538","target":"280","id":"4662"},{"source":"118","target":"64","id":"1295"},{"source":"991","target":"272","id":"4947"},{"source":"597","target":"65","id":"1144"},{"source":"786","target":"787","id":"3950"},{"source":"770","target":"771","id":"5556"},{"source":"463","target":"549","id":"2636"},{"source":"330","target":"79","id":"484"},{"source":"903","target":"901","id":"2180"},{"source":"1579","target":"1279","id":"5632"},{"source":"1483","target":"1202","id":"4991"},{"source":"488","target":"150","id":"2524"},{"source":"202","target":"403","id":"6635"},{"source":"1456","target":"759","id":"4779"},{"source":"51","target":"1015","id":"5578"},{"source":"67","target":"50","id":"2715"},{"source":"22","target":"24","id":"24"},{"source":"952","target":"348","id":"2410"},{"source":"1670","target":"71","id":"6284"},{"source":"1006","target":"834","id":"2573"},{"source":"1628","target":"537","id":"6020"},{"source":"1256","target":"170","id":"3653"},{"source":"929","target":"736","id":"2300"},{"source":"1414","target":"1200","id":"4534"},{"source":"1673","target":"598","id":"6301"},{"source":"658","target":"660","id":"1320"},{"source":"1268","target":"61","id":"3741"},{"source":"184","target":"892","id":"5126"},{"source":"1320","target":"1321","id":"3995"},{"source":"397","target":"956","id":"3912"},{"source":"535","target":"536","id":"2465"},{"source":"23","target":"24","id":"5807"},{"source":"267","target":"589","id":"4438"},{"source":"1198","target":"312","id":"3439"},{"source":"1486","target":"651","id":"5012"},{"source":"1553","target":"1384","id":"5410"},{"source":"383","target":"335","id":"633"},{"source":"1650","target":"49","id":"6158"},{"source":"852","target":"79","id":"3249"},{"source":"320","target":"292","id":"434"},{"source":"1313","target":"417","id":"3953"},{"source":"459","target":"68","id":"763"},{"source":"658","target":"663","id":"1323"},{"source":"1598","target":"354","id":"5786"},{"source":"244","target":"111","id":"1669"},{"source":"1585","target":"122","id":"5672"},{"source":"102","target":"50","id":"101"},{"source":"1650","target":"533","id":"6161"},{"source":"573","target":"66","id":"1047"},{"source":"1079","target":"1078","id":"6456"},{"source":"833","target":"444","id":"1889"},{"source":"1312","target":"1311","id":"3934"},{"source":"637","target":"299","id":"1250"},{"source":"119","target":"636","id":"3171"},{"source":"1412","target":"1199","id":"4524"},{"source":"1452","target":"50","id":"4747"},{"source":"857","target":"80","id":"2015"},{"source":"1048","target":"701","id":"2745"},{"source":"752","target":"137","id":"1942"},{"source":"1588","target":"68","id":"5703"},{"source":"1623","target":"1619","id":"5985"},{"source":"451","target":"104","id":"747"},{"source":"1601","target":"712","id":"5797"},{"source":"301","target":"296","id":"384"},{"source":"827","target":"1","id":"1857"},{"source":"1065","target":"1062","id":"2799"},{"source":"708","target":"768","id":"2875"},{"source":"65","target":"105","id":"2126"},{"source":"1262","target":"1078","id":"4631"},{"source":"1593","target":"118","id":"5749"},{"source":"243","target":"245","id":"280"},{"source":"1714","target":"79","id":"6609"},{"source":"639","target":"640","id":"1261"},{"source":"246","target":"1023","id":"2643"},{"source":"142","target":"143","id":"161"},{"source":"1044","target":"118","id":"2731"},{"source":"1343","target":"344","id":"4106"},{"source":"449","target":"5","id":"729"},{"source":"1093","target":"79","id":"2935"},{"source":"717","target":"128","id":"1461"},{"source":"1216","target":"128","id":"3493"},{"source":"1720","target":"264","id":"6662"},{"source":"592","target":"53","id":"4814"},{"source":"1560","target":"1001","id":"5484"},{"source":"577","target":"580","id":"4398"},{"source":"1105","target":"468","id":"2978"},{"source":"1459","target":"166","id":"4799"},{"source":"1026","target":"967","id":"2648"},{"source":"845","target":"379","id":"1936"},{"source":"1479","target":"167","id":"4974"},{"source":"891","target":"53","id":"2115"},{"source":"1035","target":"1036","id":"2686"},{"source":"1041","target":"104","id":"2701"},{"source":"1579","target":"1282","id":"5633"},{"source":"1611","target":"1612","id":"5917"},{"source":"472","target":"473","id":"783"},{"source":"789","target":"405","id":"3033"},{"source":"131","target":"104","id":"2184"},{"source":"298","target":"296","id":"377"},{"source":"1380","target":"1379","id":"4289"},{"source":"668","target":"669","id":"1333"},{"source":"937","target":"167","id":"2342"},{"source":"201","target":"519","id":"4756"},{"source":"569","target":"130","id":"2196"},{"source":"433","target":"435","id":"712"},{"source":"1330","target":"664","id":"4037"},{"source":"1173","target":"532","id":"3276"},{"source":"215","target":"1","id":"5993"},{"source":"640","target":"641","id":"5321"},{"source":"456","target":"28","id":"5811"},{"source":"869","target":"172","id":"2025"},{"source":"1597","target":"519","id":"5779"},{"source":"593","target":"61","id":"1120"},{"source":"1468","target":"53","id":"4859"},{"source":"42","target":"48","id":"346"},{"source":"1137","target":"1123","id":"5255"},{"source":"315","target":"219","id":"3503"},{"source":"741","target":"536","id":"1545"},{"source":"1554","target":"901","id":"5420"},{"source":"1712","target":"79","id":"6593"},{"source":"170","target":"109","id":"4791"},{"source":"560","target":"366","id":"1019"},{"source":"139","target":"138","id":"158"},{"source":"785","target":"787","id":"1716"},{"source":"391","target":"1317","id":"3967"},{"source":"893","target":"53","id":"2556"},{"source":"784","target":"50","id":"1702"},{"source":"236","target":"235","id":"1231"},{"source":"1517","target":"163","id":"5232"},{"source":"538","target":"49","id":"4659"},{"source":"1705","target":"157","id":"6505"},{"source":"457","target":"513","id":"6344"},{"source":"1360","target":"49","id":"6659"},{"source":"688","target":"53","id":"1656"},{"source":"1004","target":"519","id":"2567"},{"source":"656","target":"82","id":"5332"},{"source":"1051","target":"344","id":"2757"},{"source":"282","target":"293","id":"3284"},{"source":"1343","target":"201","id":"4112"},{"source":"768","target":"769","id":"6391"},{"source":"1276","target":"364","id":"3769"},{"source":"1616","target":"652","id":"5941"},{"source":"717","target":"710","id":"1462"},{"source":"6","target":"7","id":"7"},{"source":"1256","target":"53","id":"3649"},{"source":"656","target":"654","id":"5330"},{"source":"1014","target":"1013","id":"3599"},{"source":"1221","target":"183","id":"3528"},{"source":"1660","target":"961","id":"6225"},{"source":"28","target":"30","id":"5039"},{"source":"1052","target":"205","id":"2765"},{"source":"1583","target":"551","id":"5664"},{"source":"408","target":"119","id":"871"},{"source":"274","target":"270","id":"326"},{"source":"1334","target":"987","id":"4057"},{"source":"873","target":"458","id":"2059"},{"source":"848","target":"79","id":"1943"},{"source":"454","target":"455","id":"751"},{"source":"687","target":"98","id":"1379"},{"source":"312","target":"79","id":"3245"},{"source":"1237","target":"1238","id":"3601"},{"source":"102","target":"65","id":"98"},{"source":"789","target":"397","id":"3034"},{"source":"1342","target":"200","id":"4105"},{"source":"1302","target":"1301","id":"6401"},{"source":"1250","target":"182","id":"3636"},{"source":"67","target":"65","id":"2713"},{"source":"167","target":"50","id":"2339"},{"source":"1086","target":"635","id":"2894"},{"source":"779","target":"53","id":"1686"},{"source":"1559","target":"124","id":"5465"},{"source":"459","target":"461","id":"769"},{"source":"1456","target":"757","id":"4780"},{"source":"1353","target":"170","id":"4170"},{"source":"911","target":"309","id":"2241"},{"source":"635","target":"50","id":"4402"},{"source":"448","target":"195","id":"726"},{"source":"283","target":"282","id":"6351"},{"source":"1558","target":"128","id":"5445"},{"source":"371","target":"316","id":"579"},{"source":"933","target":"650","id":"2316"},{"source":"913","target":"900","id":"5136"},{"source":"871","target":"64","id":"2045"},{"source":"969","target":"85","id":"2468"},{"source":"589","target":"233","id":"1659"},{"source":"578","target":"577","id":"5683"},{"source":"172","target":"439","id":"5741"},{"source":"92","target":"68","id":"83"},{"source":"61","target":"48","id":"867"},{"source":"1277","target":"731","id":"3795"},{"source":"19","target":"20","id":"21"},{"source":"416","target":"418","id":"3666"},{"source":"131","target":"53","id":"2181"},{"source":"1337","target":"807","id":"4076"},{"source":"1306","target":"18","id":"3907"},{"source":"10","target":"1","id":"11"},{"source":"1547","target":"238","id":"5520"},{"source":"671","target":"67","id":"1349"},{"source":"929","target":"27","id":"2306"},{"source":"971","target":"224","id":"2473"},{"source":"1443","target":"67","id":"4716"},{"source":"1571","target":"185","id":"5540"},{"source":"446","target":"309","id":"907"},{"source":"377","target":"852","id":"2152"},{"source":"264","target":"438","id":"1570"},{"source":"48","target":"280","id":"4635"},{"source":"727","target":"390","id":"1507"},{"source":"52","target":"554","id":"5767"},{"source":"943","target":"857","id":"2360"},{"source":"1054","target":"1055","id":"2775"},{"source":"926","target":"76","id":"2386"},{"source":"945","target":"170","id":"2372"},{"source":"1107","target":"65","id":"2985"},{"source":"884","target":"885","id":"2100"},{"source":"1667","target":"579","id":"6277"},{"source":"532","target":"535","id":"923"},{"source":"1256","target":"215","id":"3654"},{"source":"805","target":"411","id":"1774"},{"source":"1012","target":"334","id":"5574"},{"source":"1077","target":"1201","id":"3448"},{"source":"1520","target":"560","id":"5246"},{"source":"921","target":"152","id":"2268"},{"source":"165","target":"68","id":"185"},{"source":"41","target":"42","id":"39"},{"source":"931","target":"287","id":"2314"},{"source":"504","target":"569","id":"1639"},{"source":"268","target":"274","id":"320"},{"source":"1095","target":"313","id":"2939"},{"source":"187","target":"188","id":"217"},{"source":"1081","target":"465","id":"2854"},{"source":"63","target":"53","id":"994"},{"source":"593","target":"591","id":"1121"},{"source":"1178","target":"42","id":"3300"},{"source":"944","target":"109","id":"2370"},{"source":"712","target":"870","id":"2038"},{"source":"717","target":"85","id":"1463"},{"source":"1389","target":"313","id":"4365"},{"source":"335","target":"281","id":"1054"},{"source":"857","target":"581","id":"2016"},{"source":"312","target":"185","id":"3248"},{"source":"244","target":"109","id":"1670"},{"source":"370","target":"364","id":"4579"},{"source":"47","target":"374","id":"4430"},{"source":"747","target":"281","id":"3780"},{"source":"595","target":"104","id":"1133"},{"source":"1201","target":"569","id":"4994"},{"source":"177","target":"79","id":"956"},{"source":"805","target":"48","id":"1776"},{"source":"1387","target":"1388","id":"4353"},{"source":"460","target":"53","id":"1161"},{"source":"1226","target":"381","id":"3568"},{"source":"878","target":"877","id":"2077"},{"source":"803","target":"148","id":"3757"},{"source":"1041","target":"1042","id":"2703"},{"source":"731","target":"234","id":"4959"},{"source":"259","target":"457","id":"2155"},{"source":"1673","target":"544","id":"6305"},{"source":"511","target":"68","id":"6474"},{"source":"422","target":"423","id":"693"},{"source":"1468","target":"1161","id":"4865"},{"source":"538","target":"66","id":"4655"},{"source":"811","target":"173","id":"1802"},{"source":"727","target":"200","id":"1511"},{"source":"314","target":"182","id":"424"},{"source":"701","target":"539","id":"1417"},{"source":"202","target":"835","id":"6640"},{"source":"1592","target":"964","id":"5743"},{"source":"1485","target":"519","id":"5001"},{"source":"621","target":"182","id":"3960"},{"source":"915","target":"935","id":"2326"},{"source":"697","target":"846","id":"5688"},{"source":"1569","target":"159","id":"5516"},{"source":"336","target":"279","id":"3143"},{"source":"368","target":"361","id":"3006"},{"source":"1220","target":"1","id":"3520"},{"source":"612","target":"615","id":"1192"},{"source":"1345","target":"181","id":"4117"},{"source":"1509","target":"113","id":"5192"},{"source":"1365","target":"51","id":"4246"},{"source":"1006","target":"1003","id":"2572"},{"source":"724","target":"224","id":"2829"},{"source":"1244","target":"398","id":"3615"},{"source":"590","target":"51","id":"5173"},{"source":"958","target":"961","id":"2813"},{"source":"1268","target":"62","id":"3742"},{"source":"1562","target":"159","id":"5494"},{"source":"1298","target":"48","id":"3874"},{"source":"364","target":"113","id":"581"},{"source":"346","target":"648","id":"1274"},{"source":"837","target":"49","id":"1909"},{"source":"711","target":"85","id":"1435"},{"source":"332","target":"521","id":"4386"},{"source":"322","target":"320","id":"3939"},{"source":"293","target":"292","id":"615"},{"source":"574","target":"48","id":"1065"},{"source":"833","target":"403","id":"1887"},{"source":"1087","target":"53","id":"5442"},{"source":"953","target":"661","id":"2416"},{"source":"1180","target":"983","id":"3311"},{"source":"1644","target":"833","id":"6122"},{"source":"36","target":"270","id":"444"},{"source":"1253","target":"296","id":"6557"},{"source":"216","target":"166","id":"546"},{"source":"257","target":"258","id":"301"},{"source":"1194","target":"634","id":"3409"},{"source":"1452","target":"53","id":"4750"},{"source":"499","target":"267","id":"826"},{"source":"103","target":"65","id":"265"},{"source":"144","target":"436","id":"713"},{"source":"45","target":"310","id":"3230"},{"source":"1364","target":"113","id":"6516"},{"source":"1702","target":"853","id":"6489"},{"source":"940","target":"1","id":"2355"},{"source":"1555","target":"53","id":"5424"},{"source":"274","target":"272","id":"322"},{"source":"840","target":"48","id":"1916"},{"source":"305","target":"185","id":"401"},{"source":"1105","target":"51","id":"2981"},{"source":"1280","target":"607","id":"3799"},{"source":"1369","target":"1","id":"4256"},{"source":"1715","target":"652","id":"6611"},{"source":"908","target":"79","id":"3513"},{"source":"172","target":"712","id":"5734"},{"source":"1334","target":"82","id":"4053"},{"source":"792","target":"793","id":"1727"},{"source":"283","target":"293","id":"6347"},{"source":"112","target":"113","id":"112"},{"source":"992","target":"994","id":"2535"},{"source":"181","target":"79","id":"3521"},{"source":"1573","target":"334","id":"5544"},{"source":"1104","target":"62","id":"2976"},{"source":"1410","target":"304","id":"6578"},{"source":"31","target":"33","id":"32"},{"source":"530","target":"529","id":"2506"},{"source":"50","target":"591","id":"5470"},{"source":"709","target":"85","id":"1434"},{"source":"797","target":"48","id":"1751"},{"source":"576","target":"120","id":"2374"},{"source":"498","target":"816","id":"1990"},{"source":"897","target":"90","id":"5461"},{"source":"435","target":"598","id":"3149"},{"source":"305","target":"79","id":"399"},{"source":"181","target":"892","id":"3525"},{"source":"1435","target":"567","id":"4702"},{"source":"177","target":"549","id":"957"},{"source":"134","target":"136","id":"153"},{"source":"62","target":"68","id":"975"},{"source":"303","target":"304","id":"392"},{"source":"1279","target":"1579","id":"5628"},{"source":"946","target":"883","id":"2382"},{"source":"308","target":"211","id":"565"},{"source":"1436","target":"1437","id":"4707"},{"source":"526","target":"79","id":"3542"},{"source":"1583","target":"744","id":"5665"},{"source":"695","target":"618","id":"4953"},{"source":"322","target":"323","id":"3944"},{"source":"1016","target":"65","id":"2591"},{"source":"451","target":"65","id":"744"},{"source":"883","target":"109","id":"4191"},{"source":"707","target":"708","id":"1626"},{"source":"1448","target":"377","id":"4733"},{"source":"1033","target":"37","id":"2670"},{"source":"1373","target":"84","id":"6364"},{"source":"101","target":"109","id":"2878"},{"source":"877","target":"65","id":"2070"},{"source":"506","target":"409","id":"845"},{"source":"987","target":"1122","id":"3051"},{"source":"543","target":"405","id":"938"},{"source":"1588","target":"53","id":"5697"},{"source":"916","target":"96","id":"2253"},{"source":"74","target":"70","id":"1712"},{"source":"134","target":"135","id":"151"},{"source":"966","target":"183","id":"5822"},{"source":"1472","target":"1474","id":"4919"},{"source":"217","target":"495","id":"3121"},{"source":"131","target":"118","id":"2182"},{"source":"445","target":"225","id":"2824"},{"source":"892","target":"306","id":"5140"},{"source":"611","target":"166","id":"1174"},{"source":"1663","target":"515","id":"6238"},{"source":"593","target":"68","id":"1119"},{"source":"1262","target":"262","id":"4632"},{"source":"344","target":"82","id":"523"},{"source":"723","target":"307","id":"1480"},{"source":"1500","target":"960","id":"5095"},{"source":"52","target":"1429","id":"5771"},{"source":"391","target":"883","id":"3964"},{"source":"1236","target":"621","id":"3593"},{"source":"1083","target":"899","id":"5932"},{"source":"187","target":"191","id":"219"},{"source":"821","target":"109","id":"1840"},{"source":"382","target":"281","id":"621"},{"source":"1536","target":"109","id":"5283"},{"source":"773","target":"769","id":"1646"},{"source":"708","target":"504","id":"2873"},{"source":"245","target":"65","id":"1728"},{"source":"895","target":"131","id":"2140"},{"source":"1575","target":"457","id":"5607"},{"source":"577","target":"120","id":"4400"},{"source":"929","target":"120","id":"2307"},{"source":"1347","target":"79","id":"4130"},{"source":"824","target":"82","id":"3268"},{"source":"408","target":"48","id":"872"},{"source":"696","target":"100","id":"1414"},{"source":"596","target":"76","id":"1139"},{"source":"61","target":"65","id":"865"},{"source":"47","target":"513","id":"4432"},{"source":"1709","target":"301","id":"6543"},{"source":"617","target":"219","id":"1194"},{"source":"622","target":"372","id":"4458"},{"source":"49","target":"513","id":"5185"},{"source":"1014","target":"79","id":"3597"},{"source":"667","target":"1","id":"3595"},{"source":"1468","target":"68","id":"4858"},{"source":"981","target":"18","id":"3906"},{"source":"755","target":"299","id":"1597"},{"source":"1097","target":"1094","id":"2953"},{"source":"25","target":"456","id":"1014"},{"source":"1061","target":"1062","id":"2793"},{"source":"511","target":"50","id":"6473"},{"source":"1709","target":"296","id":"6545"},{"source":"49","target":"66","id":"5189"},{"source":"1629","target":"548","id":"6027"},{"source":"710","target":"83","id":"1466"},{"source":"15","target":"1","id":"19"},{"source":"1651","target":"209","id":"6172"},{"source":"1162","target":"1165","id":"3223"},{"source":"1245","target":"99","id":"3624"},{"source":"1125","target":"535","id":"4519"},{"source":"1376","target":"293","id":"4277"},{"source":"1299","target":"1302","id":"3880"},{"source":"1362","target":"64","id":"4223"},{"source":"746","target":"20","id":"4856"},{"source":"287","target":"286","id":"4883"},{"source":"459","target":"64","id":"766"},{"source":"802","target":"637","id":"1766"},{"source":"592","target":"82","id":"4818"},{"source":"754","target":"136","id":"5437"},{"source":"1675","target":"119","id":"6329"},{"source":"606","target":"422","id":"3114"},{"source":"93","target":"105","id":"2162"},{"source":"1090","target":"292","id":"3237"},{"source":"958","target":"962","id":"2815"},{"source":"1365","target":"607","id":"4242"},{"source":"1035","target":"272","id":"2687"},{"source":"626","target":"638","id":"3228"},{"source":"173","target":"174","id":"193"},{"source":"1509","target":"267","id":"5195"},{"source":"808","target":"411","id":"1789"},{"source":"398","target":"396","id":"5153"},{"source":"1595","target":"759","id":"5774"},{"source":"479","target":"1064","id":"4296"},{"source":"345","target":"159","id":"524"},{"source":"1282","target":"618","id":"5892"},{"source":"1469","target":"926","id":"4872"},{"source":"1083","target":"653","id":"5928"},{"source":"1615","target":"988","id":"5921"},{"source":"1365","target":"339","id":"4245"},{"source":"836","target":"266","id":"1903"},{"source":"774","target":"82","id":"1653"},{"source":"1258","target":"1235","id":"3668"},{"source":"374","target":"49","id":"5181"},{"source":"1138","target":"1123","id":"5251"},{"source":"1012","target":"709","id":"5570"},{"source":"1116","target":"1060","id":"5933"},{"source":"1703","target":"313","id":"6495"},{"source":"1286","target":"48","id":"3820"},{"source":"389","target":"167","id":"639"},{"source":"964","target":"175","id":"2436"},{"source":"1051","target":"567","id":"2762"},{"source":"980","target":"65","id":"2508"},{"source":"1087","target":"635","id":"5444"},{"source":"10","target":"5","id":"12"},{"source":"301","target":"292","id":"383"},{"source":"1292","target":"218","id":"5654"},{"source":"633","target":"53","id":"1222"},{"source":"437","target":"422","id":"1312"},{"source":"848","target":"752","id":"1944"},{"source":"745","target":"170","id":"1574"},{"source":"474","target":"475","id":"6606"},{"source":"1446","target":"982","id":"4730"},{"source":"495","target":"825","id":"6520"},{"source":"362","target":"372","id":"6462"},{"source":"1190","target":"101","id":"5059"},{"source":"1675","target":"64","id":"6327"},{"source":"106","target":"53","id":"2252"},{"source":"239","target":"149","id":"6452"},{"source":"745","target":"748","id":"1577"},{"source":"1291","target":"1580","id":"5643"},{"source":"528","target":"293","id":"3549"},{"source":"1607","target":"1248","id":"5906"},{"source":"653","target":"1083","id":"2865"},{"source":"1051","target":"437","id":"2758"},{"source":"200","target":"607","id":"4664"},{"source":"854","target":"1","id":"1970"},{"source":"1397","target":"65","id":"4410"},{"source":"1086","target":"1087","id":"2889"},{"source":"1471","target":"66","id":"4910"},{"source":"1707","target":"270","id":"6532"},{"source":"815","target":"438","id":"1821"},{"source":"951","target":"457","id":"2403"},{"source":"1037","target":"1434","id":"5027"},{"source":"1636","target":"1035","id":"6066"},{"source":"532","target":"534","id":"921"},{"source":"1325","target":"66","id":"4019"},{"source":"1540","target":"747","id":"5304"},{"source":"1382","target":"463","id":"4292"},{"source":"687","target":"99","id":"1380"},{"source":"182","target":"621","id":"4470"},{"source":"287","target":"62","id":"4885"},{"source":"1363","target":"47","id":"4229"},{"source":"1319","target":"79","id":"3982"},{"source":"616","target":"177","id":"6581"},{"source":"987","target":"388","id":"3050"},{"source":"1091","target":"61","id":"2908"},{"source":"1339","target":"784","id":"4086"},{"source":"273","target":"36","id":"5564"},{"source":"463","target":"430","id":"2639"},{"source":"846","target":"935","id":"5690"},{"source":"1575","target":"49","id":"5605"},{"source":"871","target":"408","id":"2042"},{"source":"1043","target":"567","id":"5676"},{"source":"1044","target":"166","id":"2729"},{"source":"509","target":"68","id":"852"},{"source":"687","target":"109","id":"1385"},{"source":"1512","target":"128","id":"5212"},{"source":"1337","target":"201","id":"4074"},{"source":"337","target":"296","id":"508"},{"source":"882","target":"109","id":"2888"},{"source":"1650","target":"370","id":"6155"},{"source":"1707","target":"144","id":"6534"},{"source":"204","target":"205","id":"233"},{"source":"80","target":"109","id":"3097"},{"source":"893","target":"571","id":"2561"},{"source":"815","target":"816","id":"1817"},{"source":"1593","target":"422","id":"5748"},{"source":"578","target":"519","id":"5678"},{"source":"1086","target":"50","id":"2890"},{"source":"1204","target":"238","id":"3454"},{"source":"1677","target":"254","id":"6360"},{"source":"256","target":"302","id":"5162"},{"source":"1452","target":"48","id":"4755"},{"source":"501","target":"51","id":"834"},{"source":"1327","target":"497","id":"5872"},{"source":"724","target":"5","id":"2830"},{"source":"1145","target":"1146","id":"3109"},{"source":"1183","target":"133","id":"3341"},{"source":"704","target":"91","id":"6531"},{"source":"46","target":"185","id":"4308"},{"source":"1670","target":"1671","id":"6285"},{"source":"915","target":"458","id":"2327"},{"source":"454","target":"431","id":"748"},{"source":"1286","target":"279","id":"3822"},{"source":"1096","target":"148","id":"2940"},{"source":"266","target":"502","id":"3993"},{"source":"1016","target":"49","id":"2596"},{"source":"1362","target":"119","id":"4225"},{"source":"1468","target":"119","id":"4864"},{"source":"1255","target":"1231","id":"3648"},{"source":"1266","target":"498","id":"3727"},{"source":"1004","target":"76","id":"2565"},{"source":"1092","target":"50","id":"2921"},{"source":"1326","target":"1329","id":"4030"},{"source":"63","target":"67","id":"996"},{"source":"1037","target":"1","id":"5026"},{"source":"1359","target":"88","id":"4199"},{"source":"786","target":"1312","id":"3947"},{"source":"398","target":"409","id":"5158"},{"source":"320","target":"296","id":"435"},{"source":"1391","target":"1115","id":"4368"},{"source":"47","target":"113","id":"4424"},{"source":"1125","target":"364","id":"4515"},{"source":"1652","target":"166","id":"6186"},{"source":"1402","target":"208","id":"5840"},{"source":"404","target":"65","id":"662"},{"source":"356","target":"357","id":"850"},{"source":"760","target":"519","id":"1607"},{"source":"1248","target":"1409","id":"5896"},{"source":"702","target":"161","id":"3885"},{"source":"1091","target":"51","id":"2916"},{"source":"711","target":"444","id":"1437"},{"source":"1336","target":"166","id":"4059"},{"source":"1086","target":"53","id":"2892"},{"source":"247","target":"175","id":"4604"},{"source":"53","target":"82","id":"1109"},{"source":"180","target":"181","id":"202"},{"source":"694","target":"334","id":"1405"},{"source":"459","target":"114","id":"768"},{"source":"1597","target":"1396","id":"5783"},{"source":"511","target":"65","id":"6476"},{"source":"208","target":"207","id":"5846"},{"source":"873","target":"50","id":"2060"},{"source":"1455","target":"511","id":"4767"},{"source":"869","target":"53","id":"2027"},{"source":"1209","target":"408","id":"3466"},{"source":"1297","target":"1036","id":"3866"},{"source":"1172","target":"666","id":"3273"},{"source":"727","target":"307","id":"1506"},{"source":"1198","target":"61","id":"3432"},{"source":"752","target":"136","id":"1940"},{"source":"1077","target":"647","id":"3446"},{"source":"306","target":"325","id":"452"},{"source":"1342","target":"194","id":"4103"},{"source":"948","target":"24","id":"3444"},{"source":"4","target":"5","id":"5"},{"source":"84","target":"82","id":"1301"},{"source":"1590","target":"64","id":"5714"},{"source":"1462","target":"1463","id":"4808"},{"source":"514","target":"62","id":"887"},{"source":"525","target":"517","id":"931"},{"source":"1579","target":"1249","id":"5634"},{"source":"1462","target":"1260","id":"4809"},{"source":"822","target":"48","id":"6264"},{"source":"727","target":"65","id":"1509"},{"source":"639","target":"65","id":"1259"},{"source":"62","target":"67","id":"971"},{"source":"358","target":"79","id":"550"},{"source":"756","target":"758","id":"1599"},{"source":"334","target":"65","id":"4745"},{"source":"438","target":"265","id":"1565"},{"source":"1178","target":"284","id":"3299"},{"source":"1690","target":"297","id":"6416"},{"source":"1102","target":"626","id":"3501"},{"source":"1486","target":"53","id":"5009"},{"source":"1326","target":"606","id":"4027"},{"source":"768","target":"771","id":"6394"},{"source":"1282","target":"1248","id":"5889"},{"source":"1648","target":"50","id":"6138"},{"source":"291","target":"219","id":"369"},{"source":"670","target":"159","id":"1343"},{"source":"411","target":"805","id":"1783"},{"source":"1189","target":"109","id":"3389"},{"source":"1362","target":"53","id":"4220"},{"source":"33","target":"344","id":"6440"},{"source":"1222","target":"325","id":"3535"},{"source":"1654","target":"1261","id":"6191"},{"source":"263","target":"113","id":"306"},{"source":"455","target":"621","id":"1200"},{"source":"288","target":"290","id":"367"},{"source":"283","target":"334","id":"6352"},{"source":"113","target":"116","id":"1100"},{"source":"302","target":"256","id":"5116"},{"source":"94","target":"96","id":"91"},{"source":"1458","target":"976","id":"4795"},{"source":"1334","target":"1122","id":"4056"},{"source":"65","target":"104","id":"2124"},{"source":"964","target":"95","id":"2435"},{"source":"878","target":"53","id":"2075"},{"source":"417","target":"1314","id":"4466"},{"source":"1593","target":"109","id":"5755"},{"source":"778","target":"109","id":"1677"},{"source":"649","target":"547","id":"1278"},{"source":"829","target":"109","id":"1868"},{"source":"1407","target":"185","id":"4490"},{"source":"190","target":"187","id":"2526"},{"source":"1684","target":"1141","id":"6390"},{"source":"1493","target":"698","id":"5057"},{"source":"453","target":"65","id":"1618"},{"source":"526","target":"619","id":"3538"},{"source":"1038","target":"1039","id":"5029"},{"source":"1559","target":"123","id":"5464"},{"source":"461","target":"53","id":"2618"},{"source":"1629","target":"907","id":"6023"},{"source":"169","target":"68","id":"189"},{"source":"897","target":"91","id":"5463"},{"source":"1184","target":"1082","id":"3348"},{"source":"694","target":"111","id":"1403"},{"source":"1448","target":"979","id":"4734"},{"source":"800","target":"498","id":"2030"},{"source":"610","target":"515","id":"1184"},{"source":"528","target":"294","id":"3550"},{"source":"1336","target":"321","id":"4061"},{"source":"631","target":"397","id":"1220"},{"source":"773","target":"771","id":"1652"},{"source":"506","target":"133","id":"840"},{"source":"174","target":"1","id":"1526"},{"source":"484","target":"281","id":"5589"},{"source":"1470","target":"64","id":"4901"},{"source":"592","target":"65","id":"4816"},{"source":"417","target":"371","id":"4464"},{"source":"317","target":"79","id":"4543"},{"source":"1347","target":"1263","id":"4132"},{"source":"1713","target":"429","id":"6602"},{"source":"393","target":"391","id":"642"},{"source":"22","target":"23","id":"23"},{"source":"68","target":"50","id":"106"},{"source":"1329","target":"437","id":"5596"},{"source":"451","target":"118","id":"741"},{"source":"1209","target":"62","id":"3467"},{"source":"1712","target":"183","id":"6599"},{"source":"417","target":"292","id":"4462"},{"source":"240","target":"242","id":"276"},{"source":"593","target":"300","id":"1124"},{"source":"1022","target":"451","id":"3355"},{"source":"1039","target":"206","id":"2698"},{"source":"645","target":"96","id":"1556"},{"source":"1663","target":"408","id":"6237"},{"source":"194","target":"195","id":"4481"},{"source":"752","target":"211","id":"1939"},{"source":"131","target":"114","id":"2185"},{"source":"404","target":"66","id":"663"},{"source":"1586","target":"1","id":"6554"},{"source":"142","target":"146","id":"164"},{"source":"1326","target":"422","id":"4025"},{"source":"689","target":"99","id":"6107"},{"source":"631","target":"48","id":"1221"},{"source":"781","target":"109","id":"2788"},{"source":"905","target":"906","id":"2216"},{"source":"50","target":"53","id":"5469"},{"source":"1202","target":"647","id":"4999"},{"source":"538","target":"48","id":"4657"},{"source":"1537","target":"823","id":"5293"},{"source":"235","target":"160","id":"268"},{"source":"771","target":"769","id":"6413"},{"source":"397","target":"398","id":"3916"},{"source":"1170","target":"1090","id":"3271"},{"source":"1648","target":"280","id":"6142"},{"source":"1599","target":"659","id":"5791"},{"source":"206","target":"1","id":"2693"},{"source":"984","target":"985","id":"2516"},{"source":"1175","target":"598","id":"3328"},{"source":"856","target":"294","id":"1978"},{"source":"1218","target":"1","id":"3510"},{"source":"608","target":"515","id":"1492"},{"source":"79","target":"300","id":"1255"},{"source":"329","target":"311","id":"3240"},{"source":"1577","target":"441","id":"5621"},{"source":"1191","target":"52","id":"3400"},{"source":"792","target":"159","id":"1726"},{"source":"1405","target":"1197","id":"4457"},{"source":"835","target":"264","id":"5066"},{"source":"1621","target":"1547","id":"5983"},{"source":"1446","target":"1447","id":"4729"},{"source":"574","target":"292","id":"1061"},{"source":"797","target":"798","id":"1754"},{"source":"1221","target":"182","id":"3532"},{"source":"19","target":"21","id":"22"},{"source":"1519","target":"732","id":"5241"},{"source":"67","target":"118","id":"2711"},{"source":"244","target":"643","id":"1671"},{"source":"742","target":"203","id":"5146"},{"source":"864","target":"865","id":"2010"},{"source":"715","target":"1","id":"1448"},{"source":"52","target":"114","id":"5769"},{"source":"392","target":"1133","id":"4273"},{"source":"838","target":"51","id":"2458"},{"source":"1329","target":"422","id":"5595"},{"source":"994","target":"170","id":"2540"},{"source":"1501","target":"513","id":"5104"},{"source":"913","target":"137","id":"5135"},{"source":"1198","target":"408","id":"3433"},{"source":"1180","target":"334","id":"3313"},{"source":"1348","target":"433","id":"4137"},{"source":"1004","target":"439","id":"2566"},{"source":"992","target":"993","id":"2534"},{"source":"843","target":"444","id":"1920"},{"source":"1094","target":"312","id":"2937"},{"source":"656","target":"424","id":"5331"},{"source":"834","target":"403","id":"5071"},{"source":"1014","target":"1","id":"3600"},{"source":"1631","target":"420","id":"6042"},{"source":"904","target":"118","id":"2208"},{"source":"46","target":"723","id":"4309"},{"source":"1107","target":"50","id":"2989"},{"source":"1390","target":"90","id":"4360"},{"source":"1125","target":"532","id":"4516"},{"source":"1644","target":"48","id":"6128"},{"source":"1319","target":"50","id":"3984"},{"source":"327","target":"219","id":"458"},{"source":"597","target":"104","id":"1141"},{"source":"1597","target":"405","id":"5782"},{"source":"727","target":"229","id":"1505"},{"source":"1376","target":"516","id":"4279"},{"source":"658","target":"662","id":"1322"},{"source":"1091","target":"53","id":"2910"},{"source":"975","target":"167","id":"2487"},{"source":"703","target":"161","id":"3887"},{"source":"1631","target":"209","id":"6043"},{"source":"112","target":"114","id":"115"},{"source":"327","target":"298","id":"456"},{"source":"1304","target":"1305","id":"3901"},{"source":"67","target":"64","id":"2712"},{"source":"1080","target":"294","id":"2850"},{"source":"200","target":"444","id":"4665"},{"source":"321","target":"185","id":"730"},{"source":"82","target":"84","id":"6437"},{"source":"1689","target":"159","id":"6405"},{"source":"437","target":"656","id":"1317"},{"source":"1050","target":"401","id":"4441"},{"source":"1660","target":"502","id":"6227"},{"source":"35","target":"36","id":"414"},{"source":"607","target":"216","id":"1486"},{"source":"1471","target":"48","id":"4912"},{"source":"285","target":"65","id":"354"},{"source":"1334","target":"1123","id":"4049"},{"source":"616","target":"79","id":"6582"},{"source":"31","target":"32","id":"31"},{"source":"1404","target":"429","id":"4538"},{"source":"664","target":"646","id":"3702"},{"source":"1011","target":"1012","id":"2581"},{"source":"336","target":"335","id":"3144"},{"source":"876","target":"976","id":"3128"},{"source":"635","target":"53","id":"4401"},{"source":"1248","target":"1249","id":"5900"},{"source":"378","target":"68","id":"3204"},{"source":"991","target":"429","id":"4948"},{"source":"1325","target":"53","id":"4016"},{"source":"441","target":"82","id":"4378"},{"source":"1307","target":"1308","id":"3918"},{"source":"862","target":"554","id":"2632"},{"source":"1591","target":"118","id":"5725"},{"source":"279","target":"53","id":"505"},{"source":"931","target":"61","id":"2310"},{"source":"333","target":"61","id":"496"},{"source":"391","target":"1133","id":"3969"},{"source":"214","target":"217","id":"245"},{"source":"1707","target":"109","id":"6539"},{"source":"167","target":"334","id":"2338"},{"source":"651","target":"132","id":"1305"},{"source":"1423","target":"1424","id":"4586"},{"source":"208","target":"209","id":"5843"},{"source":"276","target":"1384","id":"6588"},{"source":"896","target":"388","id":"4820"},{"source":"1374","target":"334","id":"4270"},{"source":"499","target":"181","id":"825"},{"source":"621","target":"1315","id":"3961"},{"source":"647","target":"1003","id":"3711"},{"source":"144","target":"437","id":"715"},{"source":"953","target":"76","id":"2412"},{"source":"1423","target":"1258","id":"4589"},{"source":"375","target":"112","id":"595"},{"source":"409","target":"49","id":"4652"},{"source":"304","target":"1410","id":"4508"},{"source":"926","target":"436","id":"2383"},{"source":"532","target":"536","id":"924"},{"source":"425","target":"250","id":"700"},{"source":"1637","target":"993","id":"6076"},{"source":"1294","target":"833","id":"3848"},{"source":"204","target":"209","id":"237"},{"source":"24","target":"68","id":"5814"},{"source":"322","target":"321","id":"3940"},{"source":"748","target":"281","id":"3784"},{"source":"659","target":"1303","id":"3881"},{"source":"993","target":"998","id":"4530"},{"source":"894","target":"463","id":"2122"},{"source":"1654","target":"1","id":"6192"},{"source":"305","target":"308","id":"398"},{"source":"1107","target":"66","id":"2986"},{"source":"1483","target":"1077","id":"4986"},{"source":"1152","target":"316","id":"4499"},{"source":"285","target":"53","id":"353"},{"source":"1215","target":"159","id":"3490"},{"source":"462","target":"177","id":"771"},{"source":"1470","target":"62","id":"4898"},{"source":"619","target":"617","id":"6034"},{"source":"1468","target":"50","id":"4866"},{"source":"712","target":"713","id":"2033"},{"source":"1152","target":"292","id":"4493"},{"source":"1336","target":"839","id":"4064"},{"source":"436","target":"266","id":"1006"},{"source":"1256","target":"100","id":"3650"},{"source":"432","target":"1","id":"710"},{"source":"115","target":"112","id":"2324"},{"source":"1500","target":"959","id":"5100"},{"source":"413","target":"419","id":"685"},{"source":"645","target":"82","id":"1557"},{"source":"1188","target":"103","id":"3380"},{"source":"684","target":"685","id":"1374"},{"source":"1591","target":"53","id":"5724"},{"source":"364","target":"116","id":"585"},{"source":"1099","target":"313","id":"2951"},{"source":"978","target":"310","id":"2503"},{"source":"1543","target":"251","id":"5339"},{"source":"1707","target":"567","id":"6535"},{"source":"1522","target":"1","id":"5249"},{"source":"748","target":"335","id":"3789"},{"source":"1194","target":"833","id":"3411"},{"source":"1126","target":"896","id":"4811"},{"source":"1065","target":"751","id":"2797"},{"source":"1083","target":"913","id":"5930"},{"source":"1246","target":"688","id":"6106"},{"source":"541","target":"539","id":"2740"},{"source":"288","target":"65","id":"360"},{"source":"1214","target":"128","id":"3485"},{"source":"397","target":"48","id":"3915"},{"source":"756","target":"757","id":"1598"},{"source":"98","target":"99","id":"93"},{"source":"587","target":"267","id":"1107"},{"source":"443","target":"150","id":"1290"},{"source":"890","target":"790","id":"2109"},{"source":"253","target":"84","id":"806"},{"source":"183","target":"966","id":"5122"},{"source":"452","target":"451","id":"2280"},{"source":"502","target":"109","id":"5078"},{"source":"163","target":"162","id":"2236"},{"source":"1467","target":"444","id":"4852"},{"source":"1505","target":"500","id":"5110"},{"source":"1696","target":"50","id":"6431"},{"source":"943","target":"169","id":"2358"},{"source":"858","target":"584","id":"5063"},{"source":"357","target":"216","id":"917"},{"source":"1519","target":"757","id":"5240"},{"source":"1353","target":"335","id":"4173"},{"source":"182","target":"185","id":"4472"},{"source":"1368","target":"1095","id":"4251"},{"source":"713","target":"82","id":"6646"},{"source":"780","target":"782","id":"1695"},{"source":"1194","target":"484","id":"3416"},{"source":"1411","target":"230","id":"4511"},{"source":"48","target":"50","id":"4634"},{"source":"287","target":"53","id":"4886"},{"source":"707","target":"82","id":"1628"},{"source":"799","target":"280","id":"1765"},{"source":"1683","target":"814","id":"6381"},{"source":"1580","target":"1291","id":"5649"},{"source":"829","target":"453","id":"1870"},{"source":"681","target":"640","id":"1372"},{"source":"501","target":"504","id":"836"},{"source":"1182","target":"166","id":"3337"},{"source":"392","target":"585","id":"4275"},{"source":"109","target":"101","id":"5722"},{"source":"1333","target":"624","id":"4048"},{"source":"49","target":"50","id":"5186"},{"source":"1165","target":"64","id":"5229"},{"source":"1158","target":"122","id":"3182"},{"source":"583","target":"580","id":"1084"},{"source":"1004","target":"95","id":"2563"},{"source":"1120","target":"1","id":"3039"},{"source":"838","target":"513","id":"2457"},{"source":"612","target":"37","id":"1189"},{"source":"186","target":"189","id":"209"},{"source":"128","target":"85","id":"137"},{"source":"637","target":"300","id":"1252"},{"source":"698","target":"696","id":"6439"},{"source":"1383","target":"311","id":"4312"},{"source":"1554","target":"938","id":"5422"},{"source":"1435","target":"656","id":"4705"},{"source":"1607","target":"618","id":"5908"},{"source":"840","target":"502","id":"1917"},{"source":"741","target":"20","id":"1541"},{"source":"1633","target":"1513","id":"6061"},{"source":"859","target":"87","id":"1997"},{"source":"569","target":"504","id":"2198"},{"source":"462","target":"463","id":"773"},{"source":"1145","target":"381","id":"3112"},{"source":"104","target":"598","id":"2211"},{"source":"665","target":"455","id":"1328"},{"source":"293","target":"294","id":"617"},{"source":"1475","target":"1476","id":"4926"},{"source":"748","target":"600","id":"3790"},{"source":"1001","target":"433","id":"2552"},{"source":"701","target":"91","id":"1421"},{"source":"1173","target":"334","id":"3282"},{"source":"222","target":"166","id":"250"},{"source":"1719","target":"53","id":"6630"},{"source":"1702","target":"1703","id":"6485"},{"source":"373","target":"51","id":"594"},{"source":"1674","target":"61","id":"6308"},{"source":"1675","target":"53","id":"6325"},{"source":"186","target":"190","id":"210"},{"source":"983","target":"937","id":"4694"},{"source":"924","target":"1379","id":"5325"},{"source":"1178","target":"282","id":"3301"},{"source":"98","target":"101","id":"95"},{"source":"921","target":"120","id":"2271"},{"source":"135","target":"133","id":"1043"},{"source":"1141","target":"1136","id":"3093"},{"source":"298","target":"79","id":"380"},{"source":"492","target":"494","id":"818"},{"source":"552","target":"68","id":"4888"},{"source":"456","target":"24","id":"5808"},{"source":"24","target":"456","id":"5818"},{"source":"263","target":"265","id":"308"},{"source":"317","target":"181","id":"4544"},{"source":"1023","target":"581","id":"4356"},{"source":"1353","target":"748","id":"4167"},{"source":"1425","target":"1235","id":"6435"},{"source":"1296","target":"352","id":"3859"},{"source":"797","target":"50","id":"1755"},{"source":"60","target":"67","id":"61"},{"source":"454","target":"457","id":"755"},{"source":"34","target":"35","id":"33"},{"source":"1208","target":"16","id":"3463"},{"source":"1490","target":"758","id":"5035"},{"source":"385","target":"1","id":"3684"},{"source":"811","target":"65","id":"1805"},{"source":"296","target":"182","id":"431"},{"source":"750","target":"185","id":"1588"},{"source":"1519","target":"1015","id":"5244"},{"source":"117","target":"67","id":"122"},{"source":"209","target":"272","id":"2669"},{"source":"541","target":"703","id":"2738"},{"source":"670","target":"504","id":"1346"},{"source":"364","target":"371","id":"586"},{"source":"64","target":"68","id":"1823"},{"source":"583","target":"114","id":"1085"},{"source":"168","target":"165","id":"6368"},{"source":"1507","target":"325","id":"5151"},{"source":"117","target":"53","id":"118"},{"source":"1709","target":"1557","id":"6552"},{"source":"1194","target":"51","id":"3415"},{"source":"301","target":"295","id":"386"},{"source":"1721","target":"114","id":"6672"},{"source":"178","target":"1","id":"1240"},{"source":"824","target":"1159","id":"3266"},{"source":"398","target":"405","id":"5154"},{"source":"1088","target":"1090","id":"2906"},{"source":"1286","target":"339","id":"3824"},{"source":"1088","target":"146","id":"2905"},{"source":"124","target":"123","id":"131"},{"source":"604","target":"495","id":"1154"},{"source":"914","target":"79","id":"2245"},{"source":"99","target":"89","id":"159"},{"source":"1189","target":"159","id":"3393"},{"source":"660","target":"1330","id":"4040"},{"source":"1362","target":"108","id":"4228"},{"source":"1124","target":"335","id":"4843"},{"source":"251","target":"708","id":"3975"},{"source":"1665","target":"159","id":"6271"},{"source":"1402","target":"1050","id":"5839"},{"source":"1033","target":"1034","id":"2673"},{"source":"1259","target":"1235","id":"3962"},{"source":"1568","target":"97","id":"5511"},{"source":"695","target":"234","id":"4952"},{"source":"1353","target":"747","id":"4166"},{"source":"509","target":"62","id":"855"},{"source":"1608","target":"89","id":"5880"},{"source":"311","target":"45","id":"470"},{"source":"1483","target":"1201","id":"4990"},{"source":"257","target":"51","id":"298"},{"source":"465","target":"177","id":"950"},{"source":"464","target":"1","id":"3865"},{"source":"984","target":"127","id":"2515"},{"source":"1420","target":"49","id":"4562"},{"source":"266","target":"438","id":"3990"},{"source":"1164","target":"426","id":"3986"},{"source":"44","target":"50","id":"46"},{"source":"475","target":"473","id":"795"},{"source":"1673","target":"816","id":"6303"},{"source":"711","target":"715","id":"1442"},{"source":"1355","target":"1356","id":"4177"},{"source":"314","target":"292","id":"420"},{"source":"1161","target":"120","id":"3199"},{"source":"873","target":"131","id":"2056"},{"source":"249","target":"53","id":"284"},{"source":"413","target":"416","id":"682"},{"source":"1134","target":"284","id":"3076"},{"source":"1293","target":"49","id":"3844"},{"source":"1346","target":"903","id":"4123"},{"source":"1004","target":"216","id":"2564"},{"source":"258","target":"571","id":"1308"},{"source":"1580","target":"1581","id":"5652"},{"source":"988","target":"292","id":"2522"},{"source":"195","target":"450","id":"5390"},{"source":"1027","target":"966","id":"5436"},{"source":"1678","target":"50","id":"6375"},{"source":"628","target":"906","id":"4151"},{"source":"519","target":"120","id":"1070"},{"source":"1391","target":"1060","id":"4366"},{"source":"893","target":"65","id":"2557"},{"source":"1051","target":"82","id":"2764"},{"source":"270","target":"40","id":"412"},{"source":"1712","target":"894","id":"6594"},{"source":"1131","target":"512","id":"3068"},{"source":"1366","target":"82","id":"4250"},{"source":"1499","target":"437","id":"5090"},{"source":"1605","target":"109","id":"5859"},{"source":"131","target":"65","id":"2183"},{"source":"583","target":"584","id":"1089"},{"source":"131","target":"50","id":"2188"},{"source":"413","target":"420","id":"687"},{"source":"1096","target":"1097","id":"2943"},{"source":"373","target":"113","id":"590"},{"source":"548","target":"547","id":"959"},{"source":"617","target":"79","id":"1195"},{"source":"184","target":"79","id":"5123"},{"source":"201","target":"200","id":"4760"},{"source":"607","target":"608","id":"1489"},{"source":"1232","target":"1233","id":"3588"},{"source":"907","target":"906","id":"2221"},{"source":"134","target":"138","id":"155"},{"source":"245","target":"102","id":"1733"},{"source":"1011","target":"1015","id":"2588"},{"source":"606","target":"104","id":"3116"},{"source":"1357","target":"185","id":"5315"},{"source":"753","target":"79","id":"5128"},{"source":"1689","target":"1079","id":"6408"},{"source":"903","target":"53","id":"2177"},{"source":"1189","target":"1190","id":"3388"},{"source":"136","target":"752","id":"2400"},{"source":"1642","target":"1407","id":"6100"},{"source":"1325","target":"513","id":"4012"},{"source":"1060","target":"1116","id":"3018"},{"source":"1536","target":"65","id":"5286"},{"source":"1304","target":"311","id":"3904"},{"source":"1470","target":"63","id":"4899"},{"source":"410","target":"61","id":"672"},{"source":"334","target":"53","id":"4744"},{"source":"1578","target":"105","id":"5624"},{"source":"805","target":"281","id":"1775"},{"source":"1553","target":"167","id":"5411"},{"source":"1537","target":"68","id":"5291"},{"source":"1591","target":"50","id":"5732"},{"source":"1216","target":"214","id":"3495"},{"source":"514","target":"68","id":"885"},{"source":"483","target":"279","id":"3922"},{"source":"240","target":"152","id":"274"},{"source":"93","target":"53","id":"2156"},{"source":"868","target":"531","id":"2022"},{"source":"1342","target":"335","id":"4100"},{"source":"1658","target":"296","id":"6214"},{"source":"658","target":"664","id":"1324"},{"source":"1046","target":"1042","id":"6337"},{"source":"1675","target":"216","id":"6324"},{"source":"607","target":"53","id":"1487"},{"source":"873","target":"114","id":"2058"},{"source":"1714","target":"1711","id":"6610"},{"source":"339","target":"65","id":"4210"},{"source":"251","target":"97","id":"3977"},{"source":"1133","target":"391","id":"3071"},{"source":"102","target":"103","id":"96"},{"source":"1657","target":"666","id":"6210"},{"source":"573","target":"281","id":"1048"},{"source":"895","target":"67","id":"2142"},{"source":"569","target":"82","id":"2201"},{"source":"1107","target":"61","id":"2991"},{"source":"1499","target":"422","id":"5087"},{"source":"773","target":"568","id":"1648"},{"source":"283","target":"61","id":"6348"},{"source":"1702","target":"79","id":"6488"},{"source":"1520","target":"659","id":"5247"},{"source":"1480","target":"391","id":"4978"},{"source":"598","target":"816","id":"1983"},{"source":"47","target":"267","id":"4428"},{"source":"1601","target":"84","id":"5801"},{"source":"1177","target":"493","id":"5364"},{"source":"801","target":"397","id":"4213"},{"source":"593","target":"131","id":"1123"},{"source":"85","target":"709","id":"1931"},{"source":"1004","target":"1005","id":"2569"},{"source":"268","target":"270","id":"312"},{"source":"410","target":"45","id":"676"},{"source":"1405","target":"613","id":"4452"},{"source":"180","target":"184","id":"205"},{"source":"1296","target":"498","id":"3862"},{"source":"1230","target":"216","id":"3586"},{"source":"1189","target":"101","id":"3387"},{"source":"518","target":"519","id":"895"},{"source":"881","target":"109","id":"2086"},{"source":"1687","target":"1158","id":"6397"},{"source":"47","target":"589","id":"4425"},{"source":"1221","target":"255","id":"3531"},{"source":"1314","target":"292","id":"4449"},{"source":"1280","target":"732","id":"3807"},{"source":"789","target":"50","id":"3029"},{"source":"224","target":"724","id":"2827"},{"source":"176","target":"79","id":"198"},{"source":"1443","target":"248","id":"4717"},{"source":"1108","target":"73","id":"2999"},{"source":"373","target":"115","id":"591"},{"source":"682","target":"161","id":"6167"},{"source":"1292","target":"983","id":"5655"},{"source":"314","target":"315","id":"423"},{"source":"580","target":"578","id":"1077"},{"source":"895","target":"50","id":"2134"},{"source":"1125","target":"281","id":"4520"},{"source":"1122","target":"987","id":"3045"},{"source":"741","target":"742","id":"1547"},{"source":"1244","target":"50","id":"3617"},{"source":"39","target":"275","id":"4306"},{"source":"1694","target":"1695","id":"6423"},{"source":"1039","target":"1037","id":"2700"},{"source":"398","target":"397","id":"5156"},{"source":"720","target":"141","id":"3512"},{"source":"504","target":"427","id":"1637"},{"source":"1048","target":"703","id":"2748"},{"source":"808","target":"405","id":"1791"},{"source":"1466","target":"505","id":"4842"},{"source":"1510","target":"513","id":"5205"},{"source":"250","target":"109","id":"3368"},{"source":"749","target":"1449","id":"4739"},{"source":"1407","target":"1408","id":"4491"},{"source":"1037","target":"1039","id":"5025"},{"source":"561","target":"72","id":"1023"},{"source":"1537","target":"1538","id":"5294"},{"source":"1408","target":"185","id":"6202"},{"source":"108","target":"118","id":"5489"},{"source":"1156","target":"51","id":"3154"},{"source":"653","target":"1082","id":"2866"},{"source":"1319","target":"108","id":"3985"},{"source":"834","target":"835","id":"5072"},{"source":"1247","target":"1249","id":"3632"},{"source":"915","target":"697","id":"2328"},{"source":"629","target":"177","id":"2679"},{"source":"249","target":"251","id":"288"},{"source":"859","target":"863","id":"2000"},{"source":"871","target":"513","id":"2049"},{"source":"694","target":"53","id":"1401"},{"source":"290","target":"53","id":"1852"},{"source":"850","target":"718","id":"1954"},{"source":"881","target":"167","id":"2092"},{"source":"1490","target":"235","id":"5036"},{"source":"197","target":"202","id":"231"},{"source":"1651","target":"37","id":"6171"},{"source":"529","target":"353","id":"914"},{"source":"830","target":"831","id":"1876"},{"source":"1519","target":"759","id":"5239"},{"source":"93","target":"84","id":"2157"},{"source":"1590","target":"606","id":"5717"},{"source":"883","target":"68","id":"4185"},{"source":"926","target":"262","id":"2384"},{"source":"1401","target":"284","id":"4423"},{"source":"100","target":"53","id":"1843"},{"source":"703","target":"539","id":"3890"},{"source":"379","target":"118","id":"4127"},{"source":"1012","target":"50","id":"5575"},{"source":"1420","target":"335","id":"4559"},{"source":"348","target":"347","id":"4622"},{"source":"1109","target":"465","id":"3000"},{"source":"69","target":"70","id":"64"},{"source":"514","target":"515","id":"889"},{"source":"60","target":"63","id":"56"},{"source":"1657","target":"457","id":"6205"},{"source":"1201","target":"427","id":"4997"},{"source":"184","target":"181","id":"5124"},{"source":"127","target":"812","id":"2354"},{"source":"851","target":"852","id":"1960"},{"source":"1556","target":"182","id":"5432"},{"source":"954","target":"159","id":"3693"},{"source":"1041","target":"567","id":"2704"},{"source":"1413","target":"1200","id":"4531"},{"source":"329","target":"626","id":"3242"},{"source":"984","target":"987","id":"2518"},{"source":"382","target":"53","id":"620"},{"source":"1472","target":"241","id":"4923"},{"source":"605","target":"204","id":"2898"},{"source":"6","target":"1","id":"6"},{"source":"1334","target":"1174","id":"4050"},{"source":"413","target":"417","id":"683"},{"source":"196","target":"136","id":"225"},{"source":"1701","target":"515","id":"6481"},{"source":"722","target":"234","id":"1478"},{"source":"821","target":"822","id":"1841"},{"source":"822","target":"181","id":"6262"},{"source":"1130","target":"653","id":"5938"},{"source":"376","target":"377","id":"604"},{"source":"1012","target":"103","id":"5576"},{"source":"590","target":"113","id":"5166"},{"source":"1235","target":"524","id":"3591"},{"source":"738","target":"1289","id":"3830"},{"source":"857","target":"816","id":"2014"},{"source":"717","target":"712","id":"1464"},{"source":"250","target":"249","id":"3369"},{"source":"670","target":"53","id":"1344"},{"source":"514","target":"50","id":"884"},{"source":"1594","target":"498","id":"5764"},{"source":"436","target":"556","id":"1005"},{"source":"1146","target":"318","id":"3659"},{"source":"609","target":"433","id":"3064"},{"source":"627","target":"861","id":"3856"},{"source":"283","target":"279","id":"6353"},{"source":"681","target":"641","id":"1373"},{"source":"455","target":"301","id":"1199"},{"source":"553","target":"61","id":"983"},{"source":"713","target":"502","id":"6645"},{"source":"1456","target":"279","id":"4773"},{"source":"112","target":"65","id":"113"},{"source":"1588","target":"109","id":"5702"},{"source":"946","target":"95","id":"2376"},{"source":"1185","target":"1083","id":"5940"},{"source":"951","target":"455","id":"2407"},{"source":"72","target":"70","id":"1022"},{"source":"1618","target":"388","id":"5954"},{"source":"835","target":"265","id":"5067"},{"source":"405","target":"411","id":"2929"},{"source":"829","target":"830","id":"1871"},{"source":"292","target":"296","id":"373"},{"source":"622","target":"1315","id":"4461"},{"source":"142","target":"144","id":"162"},{"source":"51","target":"119","id":"5586"},{"source":"567","target":"1044","id":"2720"},{"source":"1037","target":"206","id":"5024"},{"source":"407","target":"61","id":"665"},{"source":"427","target":"504","id":"1034"},{"source":"1117","target":"79","id":"3021"},{"source":"1168","target":"1166","id":"3257"},{"source":"1337","target":"411","id":"4070"},{"source":"26","target":"23","id":"2879"},{"source":"1500","target":"962","id":"5097"},{"source":"951","target":"431","id":"2404"},{"source":"543","target":"335","id":"936"},{"source":"1513","target":"668","id":"5215"},{"source":"1305","target":"415","id":"4576"},{"source":"562","target":"559","id":"1026"},{"source":"1182","target":"201","id":"3336"},{"source":"199","target":"166","id":"3317"},{"source":"880","target":"53","id":"2081"},{"source":"624","target":"896","id":"2145"},{"source":"881","target":"882","id":"2084"},{"source":"565","target":"1430","id":"4644"},{"source":"1491","target":"1","id":"5046"},{"source":"472","target":"475","id":"785"},{"source":"1325","target":"50","id":"4013"},{"source":"1563","target":"1566","id":"5501"},{"source":"1337","target":"805","id":"4069"},{"source":"1168","target":"312","id":"3258"},{"source":"237","target":"239","id":"273"},{"source":"1606","target":"1409","id":"5866"},{"source":"1162","target":"519","id":"3219"},{"source":"1081","target":"361","id":"2856"},{"source":"1193","target":"1","id":"3407"},{"source":"583","target":"120","id":"1087"},{"source":"1583","target":"936","id":"5668"},{"source":"1660","target":"505","id":"6224"},{"source":"691","target":"128","id":"1390"},{"source":"628","target":"1324","id":"4148"},{"source":"45","target":"185","id":"3236"},{"source":"1254","target":"280","id":"3644"},{"source":"1568","target":"258","id":"5510"},{"source":"364","target":"115","id":"582"},{"source":"1101","target":"1102","id":"2960"},{"source":"1632","target":"335","id":"6047"},{"source":"1365","target":"147","id":"4241"},{"source":"1356","target":"57","id":"4284"},{"source":"977","target":"432","id":"2498"},{"source":"740","target":"65","id":"1537"},{"source":"691","target":"215","id":"1395"},{"source":"1056","target":"479","id":"2779"},{"source":"1280","target":"51","id":"3803"},{"source":"1316","target":"201","id":"4970"},{"source":"44","target":"49","id":"45"},{"source":"1525","target":"1527","id":"5264"},{"source":"967","target":"1026","id":"2654"},{"source":"1349","target":"463","id":"4144"},{"source":"732","target":"1621","id":"5974"},{"source":"1570","target":"96","id":"5527"},{"source":"1456","target":"758","id":"4772"},{"source":"1563","target":"1565","id":"5498"},{"source":"1501","target":"1502","id":"5101"},{"source":"1644","target":"444","id":"6124"},{"source":"291","target":"293","id":"370"},{"source":"786","target":"206","id":"3946"},{"source":"1530","target":"53","id":"5275"},{"source":"1296","target":"788","id":"3861"},{"source":"1048","target":"704","id":"2750"},{"source":"314","target":"296","id":"421"},{"source":"379","target":"155","id":"4129"},{"source":"1576","target":"1401","id":"5612"},{"source":"1599","target":"661","id":"5794"},{"source":"938","target":"976","id":"2484"},{"source":"1329","target":"1","id":"5599"},{"source":"260","target":"238","id":"304"},{"source":"334","target":"406","id":"4741"},{"source":"1553","target":"166","id":"5408"},{"source":"341","target":"1","id":"518"},{"source":"1309","target":"114","id":"3928"},{"source":"293","target":"381","id":"616"},{"source":"969","target":"48","id":"2471"},{"source":"1121","target":"313","id":"3682"},{"source":"1351","target":"104","id":"4157"},{"source":"1232","target":"86","id":"3587"},{"source":"1349","target":"1350","id":"4139"},{"source":"1418","target":"95","id":"4552"},{"source":"1276","target":"370","id":"3766"},{"source":"1281","target":"618","id":"3808"},{"source":"1383","target":"723","id":"4314"},{"source":"663","target":"888","id":"2791"},{"source":"565","target":"777","id":"4643"},{"source":"828","target":"76","id":"1859"},{"source":"649","target":"177","id":"1279"},{"source":"1244","target":"956","id":"3620"},{"source":"555","target":"510","id":"3190"},{"source":"405","target":"66","id":"2930"},{"source":"64","target":"93","id":"1827"},{"source":"1621","target":"261","id":"5984"},{"source":"670","target":"65","id":"1347"},{"source":"807","target":"411","id":"6518"},{"source":"362","target":"360","id":"6458"},{"source":"862","target":"504","id":"2630"},{"source":"376","target":"296","id":"606"},{"source":"1336","target":"281","id":"4063"},{"source":"595","target":"53","id":"1129"},{"source":"51","target":"49","id":"5579"},{"source":"1107","target":"53","id":"2984"},{"source":"1269","target":"62","id":"3747"},{"source":"342","target":"183","id":"522"},{"source":"665","target":"457","id":"1332"},{"source":"1209","target":"666","id":"3469"},{"source":"64","target":"118","id":"1825"},{"source":"787","target":"786","id":"6470"},{"source":"703","target":"91","id":"3888"},{"source":"936","target":"498","id":"2329"},{"source":"1471","target":"607","id":"4908"},{"source":"252","target":"95","id":"760"},{"source":"984","target":"986","id":"2517"},{"source":"841","target":"967","id":"2452"},{"source":"1152","target":"371","id":"4494"},{"source":"1567","target":"238","id":"5504"},{"source":"656","target":"423","id":"5329"},{"source":"1197","target":"626","id":"3427"},{"source":"1101","target":"1094","id":"2956"},{"source":"357","target":"1","id":"919"},{"source":"544","target":"87","id":"6114"},{"source":"696","target":"167","id":"1415"},{"source":"1512","target":"82","id":"5211"},{"source":"244","target":"104","id":"1668"},{"source":"903","target":"104","id":"2174"},{"source":"1320","target":"232","id":"3997"},{"source":"841","target":"259","id":"2451"},{"source":"1577","target":"172","id":"5622"},{"source":"555","target":"436","id":"3186"},{"source":"903","target":"65","id":"2178"},{"source":"938","target":"165","id":"2480"},{"source":"616","target":"296","id":"6580"},{"source":"686","target":"685","id":"6278"},{"source":"1623","target":"1547","id":"5986"},{"source":"512","target":"784","id":"1701"},{"source":"318","target":"1","id":"532"},{"source":"553","target":"287","id":"981"},{"source":"290","target":"826","id":"1855"},{"source":"351","target":"79","id":"4446"},{"source":"731","target":"111","id":"4956"},{"source":"1143","target":"1","id":"3098"},{"source":"605","target":"428","id":"2901"},{"source":"1694","target":"303","id":"6424"},{"source":"643","target":"109","id":"1266"},{"source":"105","target":"53","id":"5380"},{"source":"997","target":"313","id":"2543"},{"source":"1418","target":"1419","id":"4555"},{"source":"1684","target":"1136","id":"6385"},{"source":"917","target":"76","id":"2254"},{"source":"269","target":"275","id":"335"},{"source":"1358","target":"1379","id":"4288"},{"source":"163","target":"164","id":"2238"},{"source":"387","target":"388","id":"636"},{"source":"1054","target":"908","id":"2776"},{"source":"161","target":"434","id":"5309"},{"source":"1707","target":"423","id":"6537"},{"source":"1631","target":"204","id":"6041"},{"source":"478","target":"479","id":"796"},{"source":"541","target":"704","id":"2739"},{"source":"1628","target":"532","id":"6016"},{"source":"54","target":"55","id":"50"},{"source":"826","target":"626","id":"5360"},{"source":"1584","target":"1060","id":"5670"},{"source":"442","target":"443","id":"719"},{"source":"1076","target":"1262","id":"3698"},{"source":"425","target":"426","id":"697"},{"source":"1562","target":"596","id":"5495"},{"source":"181","target":"312","id":"3522"},{"source":"337","target":"48","id":"516"},{"source":"958","target":"48","id":"2814"},{"source":"821","target":"88","id":"1837"},{"source":"1653","target":"351","id":"6189"},{"source":"374","target":"113","id":"5175"},{"source":"979","target":"415","id":"2659"},{"source":"1230","target":"533","id":"3585"},{"source":"110","target":"111","id":"111"},{"source":"405","target":"48","id":"2932"},{"source":"882","target":"101","id":"2887"},{"source":"92","target":"64","id":"85"},{"source":"614","target":"324","id":"2816"},{"source":"186","target":"192","id":"212"},{"source":"113","target":"374","id":"1098"},{"source":"1104","target":"286","id":"2972"},{"source":"134","target":"82","id":"156"},{"source":"172","target":"441","id":"5737"},{"source":"1093","target":"312","id":"2936"},{"source":"137","target":"861","id":"6151"},{"source":"1376","target":"291","id":"4276"},{"source":"1441","target":"132","id":"4711"},{"source":"1180","target":"405","id":"3316"},{"source":"537","target":"543","id":"3330"},{"source":"787","target":"321","id":"6465"},{"source":"947","target":"26","id":"2401"},{"source":"987","target":"896","id":"3054"},{"source":"1269","target":"408","id":"3746"},{"source":"1276","target":"533","id":"3767"},{"source":"84","target":"53","id":"1300"},{"source":"375","target":"374","id":"601"},{"source":"113","target":"372","id":"1096"},{"source":"264","target":"265","id":"1571"},{"source":"66","target":"498","id":"2598"},{"source":"232","target":"353","id":"4372"},{"source":"856","target":"219","id":"1975"},{"source":"805","target":"344","id":"1772"},{"source":"481","target":"166","id":"798"},{"source":"582","target":"897","id":"4714"},{"source":"675","target":"69","id":"6632"},{"source":"964","target":"882","id":"2439"},{"source":"352","target":"128","id":"534"},{"source":"951","target":"53","id":"2406"},{"source":"1210","target":"1079","id":"6448"},{"source":"853","target":"292","id":"1968"},{"source":"1144","target":"318","id":"3102"},{"source":"1343","target":"505","id":"4110"},{"source":"1560","target":"636","id":"5480"},{"source":"1552","target":"970","id":"5396"},{"source":"977","target":"279","id":"2497"},{"source":"567","target":"424","id":"2723"},{"source":"161","target":"642","id":"5312"},{"source":"670","target":"591","id":"1345"},{"source":"558","target":"556","id":"1012"},{"source":"1675","target":"512","id":"6326"},{"source":"1194","target":"339","id":"3413"},{"source":"1554","target":"132","id":"5423"},{"source":"1451","target":"79","id":"5108"},{"source":"311","target":"296","id":"467"},{"source":"223","target":"79","id":"251"},{"source":"1144","target":"79","id":"3104"},{"source":"800","target":"581","id":"2031"},{"source":"970","target":"217","id":"3095"},{"source":"1109","target":"79","id":"3002"},{"source":"713","target":"712","id":"6644"},{"source":"660","target":"1303","id":"4039"},{"source":"975","target":"696","id":"2486"},{"source":"103","target":"82","id":"267"},{"source":"108","target":"68","id":"5485"},{"source":"1523","target":"96","id":"5253"},{"source":"1664","target":"471","id":"6245"},{"source":"1022","target":"109","id":"3362"},{"source":"1456","target":"494","id":"4776"},{"source":"498","target":"858","id":"1989"},{"source":"247","target":"215","id":"4605"},{"source":"689","target":"82","id":"6111"},{"source":"305","target":"219","id":"395"},{"source":"1315","target":"292","id":"4482"},{"source":"1125","target":"537","id":"4521"},{"source":"1606","target":"1279","id":"5867"},{"source":"1237","target":"1241","id":"3605"},{"source":"52","target":"67","id":"5770"},{"source":"1420","target":"48","id":"4561"},{"source":"1602","target":"1603","id":"5847"},{"source":"1358","target":"428","id":"4287"},{"source":"1272","target":"1181","id":"3760"},{"source":"984","target":"82","id":"2520"},{"source":"1292","target":"1581","id":"5653"},{"source":"424","target":"567","id":"4944"},{"source":"1543","target":"708","id":"5337"},{"source":"102","target":"104","id":"99"},{"source":"1581","target":"585","id":"5662"},{"source":"1498","target":"655","id":"5084"},{"source":"1397","target":"668","id":"4408"},{"source":"553","target":"460","id":"985"},{"source":"880","target":"68","id":"2079"},{"source":"1507","target":"212","id":"5150"},{"source":"224","target":"445","id":"2826"},{"source":"609","target":"119","id":"3065"},{"source":"1112","target":"136","id":"3013"},{"source":"352","target":"1","id":"540"},{"source":"830","target":"76","id":"1875"},{"source":"1582","target":"1581","id":"5647"},{"source":"622","target":"621","id":"4459"},{"source":"607","target":"598","id":"1484"},{"source":"501","target":"49","id":"832"},{"source":"461","target":"68","id":"2616"},{"source":"1054","target":"718","id":"2774"},{"source":"587","target":"374","id":"1101"},{"source":"904","target":"569","id":"2204"},{"source":"48","target":"61","id":"4636"},{"source":"555","target":"554","id":"3188"},{"source":"1568","target":"570","id":"5509"},{"source":"1678","target":"79","id":"6372"},{"source":"23","target":"26","id":"5804"},{"source":"1126","target":"82","id":"4812"},{"source":"1597","target":"1458","id":"5785"},{"source":"179","target":"300","id":"3397"},{"source":"554","target":"348","id":"2051"},{"source":"452","target":"79","id":"2282"},{"source":"171","target":"65","id":"5257"},{"source":"1513","target":"1165","id":"5217"},{"source":"519","target":"578","id":"1072"},{"source":"394","target":"167","id":"4929"},{"source":"612","target":"292","id":"1188"},{"source":"1387","target":"1385","id":"4352"},{"source":"1543","target":"453","id":"5335"},{"source":"1573","target":"61","id":"5549"},{"source":"324","target":"150","id":"2818"},{"source":"730","target":"49","id":"1521"},{"source":"327","target":"79","id":"460"},{"source":"1406","target":"181","id":"4473"},{"source":"1606","target":"1607","id":"5862"},{"source":"638","target":"626","id":"3100"},{"source":"1013","target":"1014","id":"3026"},{"source":"539","target":"540","id":"928"},{"source":"78","target":"80","id":"73"},{"source":"1696","target":"1057","id":"6428"},{"source":"1625","target":"324","id":"6005"},{"source":"1341","target":"223","id":"4092"},{"source":"231","target":"233","id":"262"},{"source":"1039","target":"1040","id":"2699"},{"source":"1211","target":"82","id":"3477"},{"source":"195","target":"429","id":"5391"},{"source":"1610","target":"1","id":"5886"},{"source":"818","target":"221","id":"1832"},{"source":"740","target":"174","id":"1536"},{"source":"22","target":"27","id":"27"},{"source":"771","target":"708","id":"6414"},{"source":"747","target":"748","id":"3781"},{"source":"438","target":"403","id":"1568"},{"source":"284","target":"323","id":"6355"},{"source":"207","target":"37","id":"2694"},{"source":"382","target":"42","id":"627"},{"source":"1499","target":"657","id":"5094"},{"source":"725","target":"216","id":"1501"},{"source":"42","target":"279","id":"341"},{"source":"408","target":"53","id":"878"},{"source":"1226","target":"1144","id":"3572"},{"source":"693","target":"258","id":"1398"},{"source":"1490","target":"607","id":"5037"},{"source":"1387","target":"150","id":"4351"},{"source":"1073","target":"1074","id":"2840"},{"source":"1294","target":"48","id":"3846"},{"source":"1044","target":"171","id":"2727"},{"source":"1519","target":"53","id":"5242"},{"source":"628","target":"463","id":"4152"},{"source":"295","target":"294","id":"3180"},{"source":"1313","target":"296","id":"3956"},{"source":"572","target":"135","id":"2668"},{"source":"1407","target":"79","id":"4488"},{"source":"152","target":"153","id":"171"},{"source":"39","target":"34","id":"4303"},{"source":"298","target":"185","id":"382"},{"source":"152","target":"155","id":"173"},{"source":"411","target":"166","id":"1780"},{"source":"1444","target":"351","id":"4726"},{"source":"1184","target":"1183","id":"3352"},{"source":"1383","target":"312","id":"4315"},{"source":"1626","target":"1255","id":"6012"},{"source":"1194","target":"731","id":"3414"},{"source":"410","target":"412","id":"675"},{"source":"1674","target":"50","id":"6315"},{"source":"194","target":"270","id":"4480"},{"source":"305","target":"306","id":"396"},{"source":"1173","target":"335","id":"3277"},{"source":"236","target":"403","id":"1232"},{"source":"741","target":"370","id":"1546"},{"source":"955","target":"502","id":"2419"},{"source":"1684","target":"1142","id":"6386"},{"source":"1660","target":"960","id":"6223"},{"source":"1357","target":"899","id":"5316"},{"source":"762","target":"765","id":"1622"},{"source":"858","target":"581","id":"5062"},{"source":"1010","target":"1","id":"2580"},{"source":"1485","target":"1","id":"5005"},{"source":"68","target":"106","id":"104"},{"source":"1421","target":"46","id":"4573"},{"source":"1182","target":"391","id":"3340"},{"source":"1242","target":"504","id":"3610"},{"source":"1047","target":"1036","id":"4333"},{"source":"1499","target":"515","id":"5089"},{"source":"563","target":"566","id":"1029"},{"source":"93","target":"104","id":"2160"},{"source":"1715","target":"415","id":"6612"},{"source":"1618","target":"765","id":"5952"},{"source":"416","target":"420","id":"3664"},{"source":"1499","target":"280","id":"5088"},{"source":"475","target":"313","id":"794"},{"source":"1294","target":"412","id":"3850"},{"source":"1336","target":"48","id":"4065"},{"source":"480","target":"170","id":"797"},{"source":"1052","target":"207","id":"2767"},{"source":"272","target":"429","id":"4683"},{"source":"815","target":"598","id":"1822"},{"source":"1279","target":"1248","id":"5630"},{"source":"294","target":"219","id":"900"},{"source":"1481","target":"1196","id":"4984"},{"source":"1137","target":"1138","id":"5256"},{"source":"1221","target":"181","id":"3530"},{"source":"303","target":"219","id":"390"},{"source":"1519","target":"484","id":"5238"},{"source":"197","target":"200","id":"229"},{"source":"1315","target":"294","id":"4484"},{"source":"71","target":"72","id":"3672"},{"source":"1139","target":"76","id":"3086"},{"source":"1715","target":"1279","id":"6614"},{"source":"795","target":"234","id":"1743"},{"source":"604","target":"82","id":"1153"},{"source":"243","target":"248","id":"283"},{"source":"413","target":"415","id":"681"},{"source":"181","target":"185","id":"3526"},{"source":"704","target":"541","id":"6530"},{"source":"461","target":"50","id":"2623"},{"source":"968","target":"272","id":"2459"},{"source":"1007","target":"1008","id":"2577"},{"source":"603","target":"200","id":"1426"},{"source":"71","target":"561","id":"3673"},{"source":"771","target":"768","id":"6412"},{"source":"416","target":"185","id":"3667"},{"source":"287","target":"119","id":"4882"},{"source":"64","target":"105","id":"1829"},{"source":"1466","target":"504","id":"4837"},{"source":"1647","target":"128","id":"6134"},{"source":"1367","target":"1328","id":"4829"},{"source":"1571","target":"723","id":"5535"},{"source":"666","target":"1003","id":"3465"},{"source":"1593","target":"175","id":"5756"},{"source":"563","target":"565","id":"1028"},{"source":"1470","target":"61","id":"4897"},{"source":"735","target":"154","id":"1530"},{"source":"375","target":"119","id":"600"},{"source":"199","target":"402","id":"3318"},{"source":"345","target":"348","id":"527"},{"source":"1362","target":"460","id":"4221"},{"source":"1213","target":"761","id":"5343"},{"source":"1246","target":"98","id":"6103"},{"source":"672","target":"93","id":"5406"},{"source":"1101","target":"79","id":"2961"},{"source":"1667","target":"1","id":"6275"},{"source":"493","target":"495","id":"1850"},{"source":"1176","target":"49","id":"3295"},{"source":"176","target":"1","id":"200"},{"source":"1457","target":"409","id":"4788"},{"source":"882","target":"708","id":"2886"},{"source":"454","target":"456","id":"754"},{"source":"95","target":"96","id":"102"},{"source":"850","target":"99","id":"1951"},{"source":"279","target":"280","id":"502"},{"source":"977","target":"937","id":"2501"},{"source":"1065","target":"479","id":"2800"},{"source":"439","target":"440","id":"717"},{"source":"195","target":"448","id":"5393"},{"source":"238","target":"261","id":"5968"},{"source":"1119","target":"48","id":"6256"},{"source":"90","target":"91","id":"82"},{"source":"382","target":"166","id":"626"},{"source":"1016","target":"45","id":"2593"},{"source":"1075","target":"211","id":"3460"},{"source":"1130","target":"652","id":"5936"},{"source":"1601","target":"439","id":"5800"},{"source":"703","target":"701","id":"3891"},{"source":"426","target":"114","id":"1032"},{"source":"365","target":"120","id":"1341"},{"source":"1372","target":"489","id":"4260"},{"source":"765","target":"388","id":"4822"},{"source":"892","target":"181","id":"5143"},{"source":"1098","target":"626","id":"2945"},{"source":"1380","target":"1358","id":"4290"},{"source":"525","target":"323","id":"932"},{"source":"1404","target":"209","id":"4540"},{"source":"1489","target":"206","id":"5022"},{"source":"1618","target":"533","id":"5953"},{"source":"734","target":"733","id":"1528"},{"source":"176","target":"179","id":"199"},{"source":"42","target":"49","id":"347"},{"source":"1537","target":"883","id":"5297"},{"source":"1374","target":"489","id":"4266"},{"source":"958","target":"960","id":"2812"},{"source":"1545","target":"1547","id":"5352"},{"source":"1510","target":"279","id":"5206"},{"source":"62","target":"552","id":"973"},{"source":"1675","target":"50","id":"6331"},{"source":"1607","target":"1279","id":"5904"},{"source":"727","target":"119","id":"1510"},{"source":"765","target":"82","id":"4826"},{"source":"93","target":"67","id":"2161"},{"source":"1317","target":"1316","id":"6498"},{"source":"835","target":"403","id":"5064"},{"source":"279","target":"48","id":"499"},{"source":"887","target":"608","id":"2105"},{"source":"1411","target":"536","id":"4512"},{"source":"901","target":"93","id":"2168"},{"source":"1574","target":"461","id":"5562"},{"source":"899","target":"367","id":"6575"},{"source":"835","target":"438","id":"5065"},{"source":"654","target":"567","id":"3419"},{"source":"308","target":"360","id":"569"},{"source":"1115","target":"1130","id":"3063"},{"source":"117","target":"50","id":"126"},{"source":"1018","target":"146","id":"4383"},{"source":"548","target":"177","id":"960"},{"source":"282","target":"525","id":"3285"},{"source":"833","target":"50","id":"1893"},{"source":"996","target":"993","id":"2542"},{"source":"158","target":"159","id":"180"},{"source":"1507","target":"1508","id":"5149"},{"source":"1296","target":"607","id":"3860"},{"source":"1576","target":"201","id":"5613"},{"source":"1339","target":"502","id":"4083"},{"source":"108","target":"61","id":"5486"},{"source":"1556","target":"1","id":"5431"},{"source":"281","target":"1136","id":"3082"},{"source":"1720","target":"146","id":"6667"},{"source":"578","target":"576","id":"5681"},{"source":"1472","target":"779","id":"4922"},{"source":"859","target":"862","id":"1999"},{"source":"1631","target":"1034","id":"6037"},{"source":"276","target":"275","id":"6585"},{"source":"1560","target":"1002","id":"5482"},{"source":"1426","target":"295","id":"4594"},{"source":"771","target":"109","id":"6411"},{"source":"118","target":"104","id":"1291"},{"source":"289","target":"65","id":"3720"},{"source":"444","target":"82","id":"2554"},{"source":"1263","target":"262","id":"3707"},{"source":"917","target":"453","id":"2255"},{"source":"1244","target":"801","id":"3622"},{"source":"24","target":"26","id":"5816"},{"source":"1198","target":"403","id":"3434"},{"source":"1540","target":"364","id":"5301"},{"source":"1498","target":"437","id":"5085"},{"source":"1645","target":"1177","id":"6132"},{"source":"1339","target":"1340","id":"4078"},{"source":"49","target":"48","id":"5184"},{"source":"809","target":"48","id":"1801"},{"source":"286","target":"238","id":"3717"},{"source":"501","target":"48","id":"839"},{"source":"255","target":"254","id":"3864"},{"source":"172","target":"579","id":"5739"},{"source":"1365","target":"759","id":"4247"},{"source":"1559","target":"125","id":"5466"},{"source":"237","target":"76","id":"271"},{"source":"1101","target":"1093","id":"2962"},{"source":"756","target":"51","id":"1604"},{"source":"1440","target":"1","id":"6178"},{"source":"125","target":"124","id":"134"},{"source":"427","target":"569","id":"1036"},{"source":"1469","target":"1218","id":"4868"},{"source":"340","target":"163","id":"4341"},{"source":"1184","target":"1112","id":"3350"},{"source":"1423","target":"1259","id":"4590"},{"source":"120","target":"930","id":"4023"},{"source":"360","target":"79","id":"571"},{"source":"644","target":"592","id":"1553"},{"source":"519","target":"114","id":"1068"},{"source":"845","target":"846","id":"1933"},{"source":"527","target":"528","id":"3548"},{"source":"507","target":"160","id":"848"},{"source":"1022","target":"50","id":"3361"},{"source":"1173","target":"53","id":"3278"},{"source":"479","target":"1062","id":"4293"},{"source":"1064","target":"1063","id":"2796"},{"source":"1162","target":"668","id":"3220"},{"source":"497","target":"53","id":"2627"},{"source":"1136","target":"1141","id":"4391"},{"source":"1064","target":"1062","id":"2795"},{"source":"1700","target":"324","id":"6463"},{"source":"1661","target":"1352","id":"6232"},{"source":"836","target":"837","id":"1901"},{"source":"2","target":"1","id":"2"},{"source":"1013","target":"79","id":"3025"},{"source":"803","target":"79","id":"3758"},{"source":"1362","target":"50","id":"4227"},{"source":"626","target":"300","id":"3227"},{"source":"951","target":"408","id":"2405"},{"source":"728","target":"597","id":"5451"},{"source":"605","target":"606","id":"2900"},{"source":"1184","target":"1155","id":"3351"},{"source":"927","target":"79","id":"2295"},{"source":"929","target":"930","id":"2299"},{"source":"173","target":"175","id":"195"},{"source":"256","target":"183","id":"5163"},{"source":"1292","target":"334","id":"5656"},{"source":"506","target":"48","id":"844"},{"source":"639","target":"642","id":"1264"},{"source":"202","target":"264","id":"6637"},{"source":"1490","target":"759","id":"5033"},{"source":"1607","target":"421","id":"5902"},{"source":"1543","target":"250","id":"5338"},{"source":"929","target":"109","id":"2308"},{"source":"1223","target":"619","id":"3562"},{"source":"1349","target":"906","id":"4143"},{"source":"784","target":"68","id":"1703"},{"source":"1053","target":"204","id":"4600"},{"source":"753","target":"312","id":"5131"},{"source":"697","target":"915","id":"5685"},{"source":"1639","target":"287","id":"6093"},{"source":"711","target":"502","id":"1438"},{"source":"955","target":"956","id":"2424"},{"source":"1247","target":"618","id":"3629"},{"source":"119","target":"511","id":"3174"},{"source":"753","target":"45","id":"5130"},{"source":"1575","target":"259","id":"5602"},{"source":"895","target":"567","id":"2133"},{"source":"799","target":"631","id":"1756"},{"source":"53","target":"93","id":"1115"},{"source":"1312","target":"1034","id":"3933"},{"source":"1263","target":"348","id":"3710"},{"source":"492","target":"495","id":"819"},{"source":"522","target":"471","id":"899"},{"source":"878","target":"781","id":"2073"},{"source":"1491","target":"79","id":"5047"},{"source":"408","target":"51","id":"876"},{"source":"1525","target":"1528","id":"5265"},{"source":"746","target":"281","id":"4857"},{"source":"665","target":"408","id":"1326"},{"source":"25","target":"27","id":"1013"},{"source":"552","target":"65","id":"4893"},{"source":"785","target":"323","id":"1715"},{"source":"657","target":"437","id":"5996"},{"source":"649","target":"79","id":"1281"},{"source":"739","target":"313","id":"1534"},{"source":"1191","target":"65","id":"3404"},{"source":"821","target":"53","id":"1838"},{"source":"1242","target":"1","id":"3608"},{"source":"1601","target":"697","id":"5799"},{"source":"367","target":"307","id":"4318"},{"source":"625","target":"628","id":"1206"},{"source":"493","target":"82","id":"1849"},{"source":"1095","target":"312","id":"2938"},{"source":"1639","target":"1640","id":"6097"},{"source":"1407","target":"182","id":"4489"},{"source":"383","target":"387","id":"631"},{"source":"875","target":"576","id":"2064"},{"source":"1515","target":"1518","id":"6566"},{"source":"518","target":"436","id":"894"},{"source":"405","target":"335","id":"2928"},{"source":"880","target":"167","id":"2082"},{"source":"587","target":"49","id":"1102"},{"source":"319","target":"185","id":"3898"},{"source":"1326","target":"1327","id":"4024"},{"source":"765","target":"896","id":"4824"},{"source":"1026","target":"182","id":"2650"},{"source":"34","target":"36","id":"34"},{"source":"1261","target":"401","id":"3691"},{"source":"975","target":"68","id":"2490"},{"source":"694","target":"484","id":"1409"},{"source":"1571","target":"311","id":"5533"},{"source":"334","target":"66","id":"4740"},{"source":"179","target":"178","id":"3395"},{"source":"570","target":"76","id":"1037"},{"source":"505","target":"495","id":"4003"},{"source":"1076","target":"1079","id":"3700"},{"source":"914","target":"65","id":"2246"},{"source":"946","target":"948","id":"2381"},{"source":"793","target":"863","id":"2965"},{"source":"519","target":"579","id":"1073"},{"source":"107","target":"50","id":"2334"},{"source":"1224","target":"33","id":"3566"},{"source":"62","target":"64","id":"979"},{"source":"1510","target":"590","id":"5203"},{"source":"1577","target":"1373","id":"5614"},{"source":"1650","target":"406","id":"6156"},{"source":"684","target":"686","id":"1377"},{"source":"1567","target":"174","id":"5506"},{"source":"462","target":"464","id":"774"},{"source":"441","target":"439","id":"4375"},{"source":"1279","target":"618","id":"5627"},{"source":"435","target":"816","id":"3150"},{"source":"1248","target":"1282","id":"5898"},{"source":"1176","target":"280","id":"3294"},{"source":"1102","target":"312","id":"3502"},{"source":"479","target":"1","id":"4295"},{"source":"1653","target":"1430","id":"6190"},{"source":"523","target":"526","id":"911"},{"source":"621","target":"622","id":"3959"},{"source":"445","target":"911","id":"2823"},{"source":"914","target":"53","id":"2244"},{"source":"672","target":"105","id":"5399"},{"source":"472","target":"361","id":"788"},{"source":"1453","target":"1454","id":"4762"},{"source":"787","target":"1037","id":"6471"},{"source":"1519","target":"339","id":"5236"},{"source":"1341","target":"502","id":"4090"},{"source":"379","target":"668","id":"4128"},{"source":"1701","target":"408","id":"6478"},{"source":"561","target":"73","id":"1024"},{"source":"61","target":"53","id":"863"},{"source":"1580","target":"1582","id":"5650"},{"source":"814","target":"95","id":"1814"},{"source":"348","target":"661","id":"4624"},{"source":"895","target":"118","id":"2137"},{"source":"365","target":"624","id":"1340"},{"source":"835","target":"202","id":"5069"},{"source":"1573","target":"65","id":"5551"},{"source":"714","target":"129","id":"6650"},{"source":"417","target":"314","id":"4463"},{"source":"79","target":"299","id":"1254"},{"source":"1505","target":"1506","id":"5111"},{"source":"1385","target":"1","id":"4346"},{"source":"701","target":"704","id":"1422"},{"source":"797","target":"53","id":"1747"},{"source":"1677","target":"47","id":"6363"},{"source":"430","target":"463","id":"4831"},{"source":"1591","target":"904","id":"5728"},{"source":"1684","target":"981","id":"6383"},{"source":"458","target":"167","id":"5370"},{"source":"1325","target":"498","id":"4017"},{"source":"1459","target":"280","id":"4802"},{"source":"430","target":"908","id":"4832"},{"source":"633","target":"511","id":"1230"},{"source":"1431","target":"262","id":"4673"},{"source":"711","target":"82","id":"1439"},{"source":"604","target":"606","id":"1158"},{"source":"1702","target":"313","id":"6491"},{"source":"1658","target":"377","id":"6216"},{"source":"664","target":"888","id":"3705"},{"source":"1282","target":"1200","id":"5893"},{"source":"610","target":"79","id":"1185"},{"source":"476","target":"477","id":"792"},{"source":"1375","target":"21","id":"4271"},{"source":"1343","target":"1000","id":"4108"},{"source":"1166","target":"351","id":"3238"},{"source":"368","target":"300","id":"3007"},{"source":"1457","target":"280","id":"4782"},{"source":"287","target":"552","id":"4884"},{"source":"911","target":"307","id":"2239"},{"source":"1012","target":"111","id":"5573"},{"source":"1406","target":"256","id":"4475"},{"source":"1577","target":"710","id":"5618"},{"source":"1107","target":"108","id":"2990"},{"source":"1443","target":"50","id":"4718"},{"source":"1326","target":"1328","id":"4026"},{"source":"68","target":"107","id":"105"},{"source":"166","target":"20","id":"259"},{"source":"809","target":"810","id":"1796"},{"source":"1455","target":"76","id":"4768"},{"source":"1140","target":"76","id":"3087"},{"source":"1567","target":"159","id":"5505"},{"source":"214","target":"82","id":"244"},{"source":"1077","target":"1003","id":"3447"},{"source":"1125","target":"543","id":"4517"},{"source":"836","target":"838","id":"1902"},{"source":"965","target":"96","id":"2442"},{"source":"1312","target":"323","id":"3937"},{"source":"502","target":"555","id":"5076"},{"source":"891","target":"892","id":"2113"},{"source":"1165","target":"668","id":"5228"},{"source":"92","target":"50","id":"89"},{"source":"907","target":"908","id":"2222"},{"source":"330","target":"185","id":"487"},{"source":"713","target":"85","id":"6643"},{"source":"506","target":"53","id":"841"},{"source":"940","target":"941","id":"2356"},{"source":"1514","target":"1516","id":"5223"},{"source":"413","target":"414","id":"680"},{"source":"1307","target":"166","id":"3917"},{"source":"483","target":"482","id":"3924"},{"source":"895","target":"93","id":"2139"},{"source":"1098","target":"312","id":"2946"},{"source":"370","target":"634","id":"4581"},{"source":"392","target":"391","id":"4274"},{"source":"817","target":"498","id":"2004"},{"source":"52","target":"65","id":"5768"},{"source":"1514","target":"164","id":"5226"},{"source":"977","target":"570","id":"2500"},{"source":"852","target":"312","id":"3251"},{"source":"1084","target":"53","id":"2868"},{"source":"1276","target":"747","id":"3774"},{"source":"1401","target":"281","id":"4419"},{"source":"1161","target":"444","id":"3197"},{"source":"94","target":"97","id":"92"},{"source":"62","target":"63","id":"977"},{"source":"1081","target":"476","id":"2853"},{"source":"1363","target":"334","id":"4231"},{"source":"169","target":"170","id":"190"},{"source":"1506","target":"182","id":"5836"},{"source":"162","target":"164","id":"184"},{"source":"1179","target":"42","id":"3303"},{"source":"1487","target":"626","id":"5017"},{"source":"294","target":"376","id":"901"},{"source":"532","target":"335","id":"922"},{"source":"1599","target":"888","id":"5793"},{"source":"923","target":"924","id":"2276"},{"source":"598","target":"114","id":"1985"},{"source":"1311","target":"322","id":"3930"},{"source":"1373","target":"167","id":"6365"},{"source":"1346","target":"1160","id":"4125"},{"source":"535","target":"335","id":"2464"},{"source":"911","target":"913","id":"2242"},{"source":"140","target":"136","id":"6152"},{"source":"658","target":"661","id":"1321"},{"source":"254","target":"183","id":"295"},{"source":"688","target":"99","id":"1654"},{"source":"1157","target":"1","id":"3164"},{"source":"1616","target":"912","id":"5943"},{"source":"1187","target":"550","id":"3377"},{"source":"567","target":"1042","id":"2719"},{"source":"1173","target":"49","id":"3283"},{"source":"821","target":"498","id":"1839"},{"source":"1008","target":"121","id":"5691"},{"source":"453","target":"250","id":"1619"},{"source":"904","target":"65","id":"2209"},{"source":"1383","target":"852","id":"4316"},{"source":"190","target":"188","id":"2527"},{"source":"792","target":"68","id":"1724"},{"source":"619","target":"523","id":"6033"},{"source":"780","target":"740","id":"1692"},{"source":"861","target":"137","id":"6153"},{"source":"895","target":"68","id":"2135"},{"source":"769","target":"707","id":"1632"},{"source":"653","target":"911","id":"2864"},{"source":"1486","target":"68","id":"5007"},{"source":"180","target":"182","id":"203"},{"source":"406","target":"334","id":"4737"},{"source":"127","target":"111","id":"2353"},{"source":"1405","target":"819","id":"4451"},{"source":"452","target":"65","id":"2277"},{"source":"964","target":"101","id":"2438"},{"source":"1483","target":"1484","id":"4988"},{"source":"825","target":"493","id":"5854"},{"source":"712","target":"128","id":"2034"},{"source":"1221","target":"302","id":"3527"},{"source":"375","target":"373","id":"597"},{"source":"481","target":"483","id":"802"},{"source":"1161","target":"502","id":"3200"},{"source":"713","target":"96","id":"6642"},{"source":"263","target":"267","id":"310"},{"source":"799","target":"397","id":"1759"},{"source":"1559","target":"1","id":"5467"},{"source":"1304","target":"328","id":"3905"},{"source":"514","target":"287","id":"883"},{"source":"1421","target":"185","id":"4574"},{"source":"1466","target":"1266","id":"4840"},{"source":"1467","target":"502","id":"4853"},{"source":"1365","target":"27","id":"4243"},{"source":"212","target":"885","id":"3999"},{"source":"1477","target":"437","id":"4932"},{"source":"170","target":"313","id":"4793"},{"source":"1337","target":"806","id":"4075"},{"source":"987","target":"1125","id":"3052"},{"source":"577","target":"576","id":"4399"},{"source":"270","target":"36","id":"409"},{"source":"1404","target":"450","id":"4537"},{"source":"1510","target":"589","id":"5200"},{"source":"208","target":"206","id":"5845"},{"source":"190","target":"192","id":"2525"},{"source":"1466","target":"281","id":"4839"},{"source":"1008","target":"437","id":"5694"},{"source":"410","target":"50","id":"679"},{"source":"63","target":"511","id":"999"},{"source":"1588","target":"96","id":"5698"},{"source":"306","target":"79","id":"455"},{"source":"270","target":"313","id":"411"},{"source":"1631","target":"208","id":"6040"},{"source":"529","target":"530","id":"915"},{"source":"1071","target":"1072","id":"2833"},{"source":"1155","target":"440","id":"3152"},{"source":"552","target":"512","id":"4892"},{"source":"1108","target":"300","id":"2996"},{"source":"481","target":"279","id":"799"},{"source":"881","target":"65","id":"2091"},{"source":"903","target":"109","id":"2175"},{"source":"631","target":"280","id":"1215"},{"source":"681","target":"683","id":"1369"},{"source":"1007","target":"502","id":"2575"},{"source":"600","target":"497","id":"1148"},{"source":"44","target":"45","id":"41"},{"source":"1427","target":"82","id":"4612"},{"source":"1560","target":"609","id":"5478"},{"source":"726","target":"426","id":"2194"},{"source":"186","target":"191","id":"211"},{"source":"963","target":"571","id":"2433"},{"source":"1332","target":"128","id":"4045"},{"source":"30","target":"23","id":"5043"},{"source":"1618","target":"537","id":"5950"},{"source":"103","target":"53","id":"263"},{"source":"178","target":"79","id":"1242"},{"source":"132","target":"53","id":"5345"},{"source":"828","target":"109","id":"1863"},{"source":"726","target":"104","id":"2192"},{"source":"577","target":"578","id":"4395"},{"source":"706","target":"82","id":"1432"},{"source":"217","target":"33","id":"3120"},{"source":"744","target":"120","id":"1563"},{"source":"519","target":"576","id":"1069"},{"source":"116","target":"115","id":"6513"},{"source":"53","target":"104","id":"1116"},{"source":"1281","target":"1283","id":"3811"},{"source":"1292","target":"585","id":"5657"},{"source":"1557","target":"183","id":"5828"},{"source":"34","target":"39","id":"37"},{"source":"356","target":"216","id":"849"},{"source":"1363","target":"51","id":"4233"},{"source":"893","target":"50","id":"2560"},{"source":"287","target":"460","id":"4880"},{"source":"35","target":"39","id":"416"},{"source":"890","target":"1","id":"2110"},{"source":"573","target":"48","id":"1049"},{"source":"34","target":"40","id":"38"},{"source":"1670","target":"69","id":"6286"},{"source":"377","target":"294","id":"2150"},{"source":"214","target":"216","id":"243"},{"source":"1218","target":"721","id":"3509"},{"source":"103","target":"97","id":"266"},{"source":"882","target":"96","id":"2885"},{"source":"1105","target":"511","id":"2982"},{"source":"1616","target":"911","id":"5942"},{"source":"286","target":"159","id":"3715"},{"source":"1269","target":"1222","id":"3748"},{"source":"1051","target":"1042","id":"2761"},{"source":"1237","target":"1240","id":"3604"},{"source":"1647","target":"82","id":"6137"},{"source":"181","target":"184","id":"3523"},{"source":"1674","target":"363","id":"6317"},{"source":"408","target":"66","id":"879"},{"source":"178","target":"177","id":"1241"},{"source":"328","target":"311","id":"473"},{"source":"383","target":"386","id":"629"},{"source":"653","target":"652","id":"2863"},{"source":"832","target":"571","id":"1885"},{"source":"953","target":"954","id":"2414"},{"source":"1036","target":"207","id":"3853"},{"source":"1260","target":"377","id":"3676"},{"source":"1644","target":"839","id":"6127"},{"source":"274","target":"275","id":"321"},{"source":"1015","target":"166","id":"3678"},{"source":"974","target":"313","id":"4337"},{"source":"1620","target":"1493","id":"5962"},{"source":"426","target":"567","id":"1033"},{"source":"946","target":"96","id":"2378"},{"source":"423","target":"656","id":"3140"},{"source":"1626","target":"1243","id":"6011"},{"source":"931","target":"480","id":"2309"},{"source":"477","target":"476","id":"3515"},{"source":"339","target":"280","id":"4208"},{"source":"541","target":"701","id":"2741"},{"source":"326","target":"298","id":"463"},{"source":"564","target":"446","id":"3224"},{"source":"1421","target":"312","id":"4572"},{"source":"809","target":"42","id":"1797"},{"source":"560","target":"104","id":"1017"},{"source":"1353","target":"1124","id":"4171"},{"source":"877","target":"111","id":"2072"},{"source":"251","target":"250","id":"3976"},{"source":"1170","target":"1171","id":"3272"},{"source":"1197","target":"638","id":"3426"},{"source":"1573","target":"50","id":"5546"},{"source":"694","target":"128","id":"1400"},{"source":"17","target":"18","id":"20"},{"source":"1545","target":"159","id":"5354"},{"source":"551","target":"497","id":"970"},{"source":"1345","target":"587","id":"4116"},{"source":"1134","target":"497","id":"3073"},{"source":"1276","target":"600","id":"3772"},{"source":"133","target":"134","id":"144"},{"source":"172","target":"82","id":"5740"},{"source":"1303","target":"660","id":"4035"},{"source":"191","target":"188","id":"5884"},{"source":"409","target":"335","id":"4648"},{"source":"1191","target":"114","id":"3406"},{"source":"983","target":"444","id":"4695"},{"source":"460","target":"607","id":"1163"},{"source":"183","target":"182","id":"5119"},{"source":"722","target":"82","id":"1474"},{"source":"921","target":"153","id":"2270"},{"source":"382","target":"48","id":"623"},{"source":"1622","target":"1106","id":"5975"},{"source":"46","target":"45","id":"4310"},{"source":"1398","target":"1400","id":"4415"},{"source":"1571","target":"45","id":"5536"},{"source":"960","target":"1284","id":"3813"},{"source":"883","target":"498","id":"4187"},{"source":"1435","target":"354","id":"4700"},{"source":"517","target":"1129","id":"3057"},{"source":"249","target":"253","id":"291"},{"source":"789","target":"1119","id":"3030"},{"source":"1554","target":"903","id":"5421"},{"source":"1347","target":"640","id":"4135"},{"source":"421","target":"486","id":"3688"},{"source":"413","target":"296","id":"686"},{"source":"1598","target":"76","id":"5787"},{"source":"1327","target":"65","id":"5871"},{"source":"696","target":"458","id":"1410"},{"source":"1678","target":"315","id":"6373"},{"source":"780","target":"109","id":"1696"},{"source":"781","target":"53","id":"2782"},{"source":"1235","target":"149","id":"3590"},{"source":"404","target":"53","id":"661"},{"source":"1428","target":"810","id":"4618"},{"source":"1260","target":"381","id":"3675"},{"source":"366","target":"728","id":"5460"},{"source":"812","target":"96","id":"5413"},{"source":"1227","target":"974","id":"3578"},{"source":"780","target":"234","id":"1693"},{"source":"553","target":"286","id":"990"},{"source":"760","target":"262","id":"1613"},{"source":"756","target":"279","id":"1600"},{"source":"401","target":"79","id":"651"},{"source":"1615","target":"1607","id":"5926"},{"source":"612","target":"616","id":"1193"},{"source":"40","target":"272","id":"4685"},{"source":"809","target":"382","id":"1799"},{"source":"130","target":"104","id":"142"},{"source":"550","target":"104","id":"966"},{"source":"1446","target":"391","id":"4728"},{"source":"1416","target":"79","id":"4548"},{"source":"826","target":"79","id":"5359"},{"source":"418","target":"961","id":"4563"},{"source":"252","target":"65","id":"762"},{"source":"1464","target":"935","id":"4828"},{"source":"388","target":"20","id":"2391"},{"source":"1669","target":"1","id":"6280"},{"source":"65","target":"68","id":"2128"},{"source":"706","target":"708","id":"1430"},{"source":"108","target":"53","id":"5487"},{"source":"4","target":"1","id":"4"},{"source":"744","target":"53","id":"1558"},{"source":"1607","target":"1249","id":"5907"},{"source":"281","target":"111","id":"3081"},{"source":"955","target":"324","id":"2417"},{"source":"936","target":"167","id":"2330"},{"source":"672","target":"50","id":"5400"},{"source":"265","target":"202","id":"1896"},{"source":"37","target":"430","id":"706"},{"source":"1006","target":"233","id":"2571"},{"source":"832","target":"76","id":"1881"},{"source":"1664","target":"1407","id":"6249"},{"source":"538","target":"335","id":"4653"},{"source":"1388","target":"1385","id":"4359"},{"source":"410","target":"42","id":"670"},{"source":"1282","target":"1283","id":"5891"},{"source":"627","target":"73","id":"3854"},{"source":"350","target":"318","id":"529"},{"source":"1611","target":"1613","id":"5919"},{"source":"657","target":"654","id":"5999"},{"source":"1679","target":"556","id":"6376"},{"source":"509","target":"510","id":"858"},{"source":"276","target":"36","id":"6587"},{"source":"1150","target":"101","id":"3137"},{"source":"736","target":"154","id":"6346"},{"source":"438","target":"266","id":"1566"},{"source":"543","target":"535","id":"937"},{"source":"1176","target":"759","id":"3297"},{"source":"799","target":"49","id":"1764"},{"source":"1191","target":"511","id":"3402"},{"source":"1060","target":"1115","id":"3017"},{"source":"1105","target":"68","id":"2977"},{"source":"673","target":"113","id":"1353"},{"source":"1560","target":"433","id":"5483"},{"source":"911","target":"912","id":"2240"},{"source":"991","target":"908","id":"4946"},{"source":"1418","target":"1","id":"4554"},{"source":"267","target":"513","id":"4435"},{"source":"587","target":"47","id":"1106"},{"source":"1363","target":"1364","id":"4235"},{"source":"63","target":"287","id":"997"},{"source":"1697","target":"85","id":"6441"},{"source":"755","target":"300","id":"1593"},{"source":"1183","target":"556","id":"3344"},{"source":"330","target":"332","id":"486"},{"source":"1577","target":"82","id":"5615"},{"source":"1048","target":"91","id":"2749"},{"source":"1575","target":"513","id":"5606"},{"source":"871","target":"53","id":"2044"},{"source":"1082","target":"912","id":"6569"},{"source":"300","target":"463","id":"3009"},{"source":"732","target":"261","id":"5972"},{"source":"1337","target":"1338","id":"4068"},{"source":"788","target":"632","id":"1718"},{"source":"1146","target":"79","id":"3657"},{"source":"1718","target":"1120","id":"6628"},{"source":"901","target":"65","id":"2167"},{"source":"1620","target":"260","id":"5965"},{"source":"342","target":"343","id":"520"},{"source":"1168","target":"852","id":"3259"},{"source":"1048","target":"540","id":"2746"},{"source":"1563","target":"1084","id":"5500"},{"source":"380","target":"87","id":"612"},{"source":"892","target":"312","id":"5142"},{"source":"1351","target":"65","id":"4156"},{"source":"1385","target":"150","id":"4345"},{"source":"1520","target":"213","id":"5245"},{"source":"762","target":"764","id":"1621"},{"source":"1345","target":"254","id":"4121"},{"source":"715","target":"85","id":"1447"},{"source":"158","target":"53","id":"181"},{"source":"526","target":"523","id":"3540"},{"source":"404","target":"406","id":"657"},{"source":"822","target":"53","id":"6260"},{"source":"672","target":"67","id":"5398"},{"source":"799","target":"800","id":"1757"},{"source":"382","target":"280","id":"619"},{"source":"649","target":"549","id":"1282"},{"source":"608","target":"498","id":"1494"},{"source":"743","target":"174","id":"1548"},{"source":"568","target":"569","id":"1643"},{"source":"856","target":"293","id":"1976"},{"source":"649","target":"548","id":"1280"},{"source":"822","target":"1119","id":"6269"},{"source":"913","target":"136","id":"5137"},{"source":"1203","target":"68","id":"3450"},{"source":"1472","target":"109","id":"4917"},{"source":"469","target":"732","id":"3192"},{"source":"116","target":"113","id":"6512"},{"source":"1053","target":"1034","id":"4602"},{"source":"1310","target":"522","id":"3929"},{"source":"876","target":"104","id":"3127"},{"source":"1016","target":"48","id":"2595"},{"source":"1325","target":"61","id":"4014"},{"source":"1365","target":"758","id":"4240"},{"source":"620","target":"170","id":"1198"},{"source":"723","target":"223","id":"1479"},{"source":"1599","target":"662","id":"5790"},{"source":"998","target":"996","id":"2544"},{"source":"248","target":"247","id":"5350"},{"source":"465","target":"463","id":"952"},{"source":"860","target":"116","id":"6119"},{"source":"1716","target":"1121","id":"6616"},{"source":"134","target":"84","id":"152"},{"source":"1590","target":"82","id":"5719"},{"source":"865","target":"262","id":"2294"},{"source":"966","target":"1410","id":"5824"},{"source":"1444","target":"82","id":"4727"},{"source":"1435","target":"424","id":"4704"},{"source":"329","target":"185","id":"3244"},{"source":"1011","target":"66","id":"2585"},{"source":"208","target":"205","id":"5844"},{"source":"332","target":"331","id":"4385"},{"source":"79","target":"177","id":"1253"},{"source":"1187","target":"453","id":"3379"},{"source":"1648","target":"49","id":"6145"},{"source":"574","target":"405","id":"1063"},{"source":"1431","target":"1206","id":"4669"},{"source":"1482","target":"211","id":"4985"},{"source":"1364","target":"1293","id":"6515"},{"source":"1312","target":"787","id":"3938"},{"source":"1576","target":"216","id":"5609"},{"source":"1537","target":"469","id":"5295"},{"source":"396","target":"398","id":"649"},{"source":"762","target":"763","id":"1620"},{"source":"11","target":"1","id":"14"},{"source":"676","target":"673","id":"1357"},{"source":"1562","target":"76","id":"5493"},{"source":"318","target":"351","id":"533"},{"source":"814","target":"96","id":"1815"},{"source":"921","target":"883","id":"2265"},{"source":"202","target":"438","id":"6636"},{"source":"1452","target":"1401","id":"4754"},{"source":"240","target":"241","id":"275"},{"source":"1467","target":"411","id":"4850"},{"source":"990","target":"991","id":"2532"},{"source":"177","target":"463","id":"958"},{"source":"724","target":"211","id":"2832"},{"source":"484","target":"1401","id":"5591"},{"source":"1478","target":"65","id":"4962"},{"source":"336","target":"53","id":"3145"},{"source":"891","target":"184","id":"2111"},{"source":"479","target":"1068","id":"4298"},{"source":"1722","target":"82","id":"6676"},{"source":"886","target":"170","id":"2104"},{"source":"692","target":"1","id":"5720"},{"source":"1211","target":"215","id":"3476"},{"source":"954","target":"262","id":"3695"},{"source":"589","target":"374","id":"1664"},{"source":"369","target":"181","id":"573"},{"source":"593","target":"105","id":"1126"},{"source":"278","target":"238","id":"340"},{"source":"745","target":"111","id":"1578"},{"source":"83","target":"84","id":"76"},{"source":"794","target":"25","id":"1737"},{"source":"1563","target":"513","id":"5502"},{"source":"1151","target":"417","id":"3138"},{"source":"234","target":"85","id":"1927"},{"source":"1456","target":"339","id":"4777"},{"source":"897","target":"64","id":"5462"},{"source":"1629","target":"79","id":"6028"},{"source":"91","target":"541","id":"5415"},{"source":"1616","target":"653","id":"5944"},{"source":"1421","target":"45","id":"4570"},{"source":"1657","target":"455","id":"6207"},{"source":"1601","target":"96","id":"5802"},{"source":"573","target":"49","id":"1050"},{"source":"1654","target":"1124","id":"6193"},{"source":"808","target":"65","id":"1790"},{"source":"1478","target":"120","id":"4963"},{"source":"980","target":"67","id":"2510"},{"source":"1677","target":"513","id":"6359"},{"source":"454","target":"62","id":"749"},{"source":"219","target":"182","id":"450"},{"source":"404","target":"397","id":"655"},{"source":"1280","target":"758","id":"3806"},{"source":"1135","target":"167","id":"3078"},{"source":"537","target":"405","id":"3333"},{"source":"1456","target":"484","id":"4778"},{"source":"1658","target":"376","id":"6215"},{"source":"862","target":"568","id":"2631"},{"source":"829","target":"831","id":"1872"},{"source":"1506","target":"302","id":"5837"},{"source":"849","target":"324","id":"1949"},{"source":"1237","target":"1239","id":"3603"},{"source":"1244","target":"1206","id":"3621"},{"source":"553","target":"53","id":"984"},{"source":"885","target":"1323","id":"4006"},{"source":"339","target":"50","id":"4207"},{"source":"657","target":"567","id":"5997"},{"source":"1477","target":"423","id":"4935"},{"source":"1140","target":"53","id":"3089"},{"source":"1704","target":"1238","id":"6527"},{"source":"1141","target":"1142","id":"3094"},{"source":"374","target":"589","id":"5176"},{"source":"571","target":"159","id":"5523"},{"source":"137","target":"136","id":"6150"},{"source":"850","target":"690","id":"1953"},{"source":"183","target":"302","id":"5120"},{"source":"71","target":"70","id":"3674"},{"source":"854","target":"429","id":"1972"},{"source":"1245","target":"1246","id":"3627"},{"source":"430","target":"79","id":"4830"},{"source":"628","target":"1350","id":"4155"},{"source":"1004","target":"392","id":"2570"},{"source":"1067","target":"1063","id":"2807"},{"source":"191","target":"192","id":"5883"},{"source":"669","target":"155","id":"1337"},{"source":"750","target":"136","id":"1584"},{"source":"1234","target":"277","id":"3589"},{"source":"297","target":"292","id":"4165"},{"source":"595","target":"50","id":"1136"},{"source":"325","target":"181","id":"5139"},{"source":"967","target":"182","id":"2652"},{"source":"1008","target":"1","id":"5695"},{"source":"1709","target":"1","id":"6549"},{"source":"1012","target":"104","id":"5572"},{"source":"1044","target":"424","id":"2726"},{"source":"1130","target":"913","id":"5939"},{"source":"1444","target":"1445","id":"4724"},{"source":"1347","target":"1348","id":"4133"},{"source":"1451","target":"310","id":"5107"},{"source":"435","target":"155","id":"3151"},{"source":"317","target":"296","id":"4542"},{"source":"964","target":"96","id":"2437"},{"source":"327","target":"296","id":"457"},{"source":"593","target":"65","id":"1122"},{"source":"589","target":"47","id":"1661"},{"source":"1341","target":"724","id":"4088"},{"source":"382","target":"381","id":"618"},{"source":"1632","target":"573","id":"6046"},{"source":"1150","target":"104","id":"3136"},{"source":"364","target":"373","id":"580"},{"source":"411","target":"1","id":"1784"},{"source":"1092","target":"224","id":"2917"},{"source":"623","target":"624","id":"1202"},{"source":"363","target":"366","id":"562"},{"source":"1673","target":"239","id":"6307"},{"source":"740","target":"109","id":"1539"},{"source":"1036","target":"209","id":"3852"},{"source":"287","target":"515","id":"4881"},{"source":"262","target":"1493","id":"5980"},{"source":"1269","target":"513","id":"3751"},{"source":"1557","target":"818","id":"5825"},{"source":"376","target":"306","id":"607"},{"source":"590","target":"513","id":"5172"},{"source":"156","target":"152","id":"174"},{"source":"1325","target":"65","id":"4018"},{"source":"626","target":"79","id":"3226"},{"source":"883","target":"1358","id":"4190"},{"source":"1656","target":"872","id":"6195"},{"source":"1174","target":"230","id":"3288"},{"source":"217","target":"128","id":"3118"},{"source":"725","target":"498","id":"1497"},{"source":"1487","target":"1315","id":"5018"},{"source":"639","target":"50","id":"1263"},{"source":"1648","target":"53","id":"6143"},{"source":"1660","target":"958","id":"6221"},{"source":"119","target":"61","id":"3175"},{"source":"201","target":"212","id":"4759"},{"source":"268","target":"272","id":"316"},{"source":"799","target":"801","id":"1760"},{"source":"1285","target":"841","id":"3814"},{"source":"780","target":"68","id":"1697"},{"source":"310","target":"311","id":"403"},{"source":"828","target":"237","id":"1858"},{"source":"1374","target":"519","id":"4264"},{"source":"116","target":"363","id":"6510"},{"source":"1243","target":"79","id":"3612"},{"source":"67","target":"53","id":"2710"},{"source":"203","target":"296","id":"736"},{"source":"1529","target":"1225","id":"5270"},{"source":"743","target":"645","id":"1550"},{"source":"254","target":"1","id":"293"},{"source":"1179","target":"279","id":"3304"},{"source":"391","target":"68","id":"3968"},{"source":"268","target":"269","id":"311"},{"source":"414","target":"421","id":"691"},{"source":"717","target":"714","id":"1460"},{"source":"1385","target":"79","id":"4347"},{"source":"1061","target":"1063","id":"2794"},{"source":"1210","target":"1078","id":"6446"},{"source":"1073","target":"662","id":"2839"},{"source":"330","target":"331","id":"483"},{"source":"1537","target":"156","id":"5292"},{"source":"1015","target":"127","id":"3679"},{"source":"747","target":"335","id":"3778"},{"source":"707","target":"706","id":"1629"},{"source":"974","target":"150","id":"4338"},{"source":"580","target":"498","id":"1079"},{"source":"1069","target":"1063","id":"2810"},{"source":"1329","target":"567","id":"5597"},{"source":"1266","target":"495","id":"3731"},{"source":"1268","target":"53","id":"3744"},{"source":"1452","target":"281","id":"4753"},{"source":"1267","target":"409","id":"3736"},{"source":"828","target":"511","id":"1865"},{"source":"664","target":"662","id":"3703"},{"source":"1674","target":"64","id":"6311"},{"source":"583","target":"578","id":"1091"},{"source":"758","target":"344","id":"5832"},{"source":"306","target":"315","id":"451"},{"source":"1209","target":"457","id":"3471"},{"source":"1676","target":"281","id":"6354"},{"source":"482","target":"1291","id":"3840"},{"source":"1111","target":"238","id":"5956"},{"source":"1241","target":"1238","id":"6526"},{"source":"672","target":"451","id":"5401"},{"source":"1067","target":"1062","id":"2806"},{"source":"1267","target":"600","id":"3732"},{"source":"1510","target":"47","id":"5202"},{"source":"838","target":"48","id":"2455"},{"source":"583","target":"576","id":"1086"},{"source":"803","target":"928","id":"3759"},{"source":"728","target":"113","id":"5450"},{"source":"661","target":"888","id":"6057"},{"source":"451","target":"64","id":"743"},{"source":"1342","target":"411","id":"4101"},{"source":"1675","target":"65","id":"6328"},{"source":"1033","target":"206","id":"2674"},{"source":"707","target":"768","id":"1627"},{"source":"302","target":"182","id":"5115"},{"source":"390","target":"391","id":"640"},{"source":"448","target":"192","id":"724"},{"source":"305","target":"307","id":"397"},{"source":"1586","target":"122","id":"6553"},{"source":"1008","target":"422","id":"5693"},{"source":"1632","target":"1266","id":"6050"},{"source":"795","target":"65","id":"1744"},{"source":"22","target":"26","id":"26"},{"source":"1673","target":"87","id":"6306"},{"source":"1607","target":"1282","id":"5905"},{"source":"294","target":"79","id":"902"},{"source":"199","target":"391","id":"3320"},{"source":"924","target":"53","id":"5327"},{"source":"186","target":"187","id":"207"},{"source":"165","target":"166","id":"186"},{"source":"1529","target":"1242","id":"5269"},{"source":"1630","target":"313","id":"6031"},{"source":"801","target":"49","id":"4216"},{"source":"1315","target":"486","id":"4486"},{"source":"613","target":"79","id":"1965"},{"source":"706","target":"707","id":"1428"},{"source":"671","target":"120","id":"1350"},{"source":"450","target":"908","id":"4688"},{"source":"53","target":"591","id":"1111"},{"source":"1459","target":"48","id":"4805"},{"source":"514","target":"53","id":"888"},{"source":"1417","target":"917","id":"4551"},{"source":"1082","target":"653","id":"6570"},{"source":"1555","target":"428","id":"5427"},{"source":"416","target":"855","id":"3665"},{"source":"1214","target":"84","id":"3486"},{"source":"267","target":"116","id":"4436"},{"source":"368","target":"79","id":"3005"},{"source":"414","target":"401","id":"689"},{"source":"533","target":"335","id":"6083"},{"source":"1224","target":"1225","id":"3564"},{"source":"1016","target":"277","id":"2589"},{"source":"990","target":"905","id":"2530"},{"source":"234","target":"82","id":"1929"},{"source":"880","target":"519","id":"2080"},{"source":"468","target":"469","id":"779"},{"source":"775","target":"776","id":"1672"},{"source":"599","target":"128","id":"1145"},{"source":"537","target":"535","id":"3332"},{"source":"1652","target":"496","id":"6187"},{"source":"1644","target":"49","id":"6130"},{"source":"1076","target":"1074","id":"3701"},{"source":"105","target":"82","id":"5386"},{"source":"1644","target":"280","id":"6121"},{"source":"1478","target":"50","id":"4965"},{"source":"1152","target":"297","id":"4496"},{"source":"1471","target":"50","id":"4913"},{"source":"1163","target":"437","id":"3218"},{"source":"1670","target":"70","id":"6283"},{"source":"1452","target":"280","id":"4748"},{"source":"1339","target":"48","id":"4082"},{"source":"1675","target":"592","id":"6330"},{"source":"933","target":"607","id":"2317"},{"source":"112","target":"116","id":"117"},{"source":"819","target":"292","id":"1834"},{"source":"333","target":"280","id":"495"},{"source":"1341","target":"975","id":"4095"},{"source":"604","target":"204","id":"1155"},{"source":"471","target":"79","id":"808"},{"source":"412","target":"429","id":"2647"},{"source":"411","target":"603","id":"1782"},{"source":"1267","target":"335","id":"3740"},{"source":"75","target":"1","id":"71"},{"source":"1177","target":"569","id":"5365"},{"source":"48","target":"66","id":"4638"},{"source":"1360","target":"600","id":"6657"},{"source":"826","target":"177","id":"5358"},{"source":"1625","target":"163","id":"6004"},{"source":"25","target":"53","id":"1015"},{"source":"1486","target":"130","id":"5008"},{"source":"404","target":"334","id":"658"},{"source":"1448","target":"294","id":"4732"},{"source":"1550","target":"883","id":"5374"},{"source":"828","target":"682","id":"1864"},{"source":"639","target":"641","id":"1262"},{"source":"176","target":"178","id":"197"},{"source":"47","target":"119","id":"4427"},{"source":"543","target":"409","id":"934"},{"source":"117","target":"64","id":"120"},{"source":"1428","target":"848","id":"4613"},{"source":"1560","target":"1131","id":"5479"},{"source":"964","target":"109","id":"2440"},{"source":"115","target":"373","id":"2321"},{"source":"1104","target":"408","id":"2974"},{"source":"1717","target":"1718","id":"6625"},{"source":"1461","target":"1","id":"5877"},{"source":"1569","target":"1567","id":"5517"},{"source":"1011","target":"459","id":"2582"},{"source":"405","target":"280","id":"2927"},{"source":"966","target":"304","id":"5819"},{"source":"691","target":"82","id":"1396"},{"source":"1225","target":"215","id":"3827"},{"source":"1163","target":"65","id":"3209"},{"source":"1188","target":"175","id":"3381"},{"source":"1476","target":"900","id":"5048"},{"source":"326","target":"219","id":"464"},{"source":"292","target":"182","id":"376"},{"source":"840","target":"715","id":"1913"},{"source":"350","target":"296","id":"530"},{"source":"1291","target":"334","id":"5641"},{"source":"581","target":"858","id":"4184"},{"source":"1077","target":"1202","id":"3449"},{"source":"62","target":"289","id":"972"},{"source":"102","target":"53","id":"97"},{"source":"36","target":"273","id":"442"},{"source":"1266","target":"857","id":"3728"},{"source":"866","target":"61","id":"2608"},{"source":"1639","target":"68","id":"6096"},{"source":"790","target":"791","id":"1723"},{"source":"732","target":"1547","id":"5971"},{"source":"1156","target":"636","id":"3153"},{"source":"1455","target":"159","id":"4770"},{"source":"314","target":"316","id":"425"},{"source":"801","target":"50","id":"4217"},{"source":"1198","target":"79","id":"3435"},{"source":"634","target":"51","id":"1236"},{"source":"1298","target":"502","id":"3875"},{"source":"627","target":"863","id":"3855"},{"source":"1670","target":"73","id":"6281"},{"source":"514","target":"66","id":"882"},{"source":"551","target":"166","id":"968"},{"source":"3","target":"1","id":"2663"},{"source":"1718","target":"149","id":"6627"},{"source":"63","target":"50","id":"998"},{"source":"544","target":"1295","id":"6113"},{"source":"1161","target":"53","id":"3202"},{"source":"590","target":"49","id":"5171"},{"source":"898","target":"367","id":"2147"},{"source":"1699","target":"155","id":"6455"},{"source":"1529","target":"215","id":"5271"},{"source":"1636","target":"209","id":"6071"},{"source":"955","target":"444","id":"2425"},{"source":"1052","target":"1053","id":"2768"},{"source":"552","target":"119","id":"4894"},{"source":"1049","target":"128","id":"2753"},{"source":"1716","target":"149","id":"6619"},{"source":"1112","target":"137","id":"3014"},{"source":"1651","target":"429","id":"6176"},{"source":"922","target":"90","id":"2272"},{"source":"752","target":"79","id":"1938"},{"source":"407","target":"370","id":"668"},{"source":"269","target":"274","id":"331"},{"source":"1044","target":"428","id":"2725"},{"source":"1553","target":"165","id":"5407"},{"source":"378","target":"1162","id":"3206"},{"source":"1344","target":"408","id":"4113"},{"source":"45","target":"79","id":"3232"},{"source":"611","target":"608","id":"1177"},{"source":"1180","target":"409","id":"3310"},{"source":"225","target":"361","id":"6088"},{"source":"833","target":"505","id":"1891"},{"source":"382","target":"49","id":"624"},{"source":"1469","target":"119","id":"4873"},{"source":"1034","target":"206","id":"2676"},{"source":"731","target":"695","id":"4957"},{"source":"1092","target":"61","id":"2922"},{"source":"718","target":"89","id":"1468"},{"source":"591","target":"300","id":"1238"},{"source":"1299","target":"1300","id":"3878"},{"source":"1104","target":"262","id":"2973"},{"source":"1703","target":"1646","id":"6496"},{"source":"373","target":"119","id":"592"},{"source":"1245","target":"850","id":"3626"},{"source":"1069","target":"1062","id":"2809"},{"source":"1633","target":"669","id":"6059"},{"source":"1142","target":"1120","id":"6620"},{"source":"1173","target":"281","id":"3279"},{"source":"674","target":"1265","id":"3726"},{"source":"1483","target":"647","id":"4987"},{"source":"887","target":"888","id":"2107"},{"source":"1615","target":"618","id":"5922"},{"source":"1164","target":"437","id":"3987"},{"source":"1203","target":"571","id":"3452"},{"source":"1390","target":"433","id":"4361"},{"source":"1651","target":"1034","id":"6173"},{"source":"764","target":"763","id":"3442"},{"source":"1479","target":"696","id":"4973"},{"source":"573","target":"484","id":"1052"},{"source":"524","target":"1235","id":"4502"},{"source":"822","target":"49","id":"6266"},{"source":"71","target":"69","id":"3671"},{"source":"823","target":"84","id":"1846"},{"source":"425","target":"175","id":"696"},{"source":"902","target":"109","id":"3170"},{"source":"1493","target":"53","id":"5054"},{"source":"1291","target":"166","id":"5638"},{"source":"1467","target":"82","id":"4854"},{"source":"709","target":"710","id":"1433"},{"source":"677","target":"680","id":"1365"},{"source":"1105","target":"1106","id":"2980"},{"source":"449","target":"195","id":"728"},{"source":"37","target":"207","id":"702"},{"source":"691","target":"85","id":"1391"},{"source":"1628","target":"335","id":"6017"},{"source":"315","target":"326","id":"3505"},{"source":"1431","target":"885","id":"4670"},{"source":"256","target":"966","id":"5164"},{"source":"1529","target":"1224","id":"5268"},{"source":"50","target":"68","id":"5468"},{"source":"118","target":"598","id":"1296"},{"source":"265","target":"438","id":"1897"},{"source":"983","target":"391","id":"4696"},{"source":"1657","target":"431","id":"6206"},{"source":"319","target":"150","id":"3896"},{"source":"195","target":"193","id":"5392"},{"source":"1677","target":"181","id":"6361"},{"source":"1663","target":"431","id":"6236"},{"source":"341","target":"121","id":"517"},{"source":"1570","target":"159","id":"5525"},{"source":"884","target":"68","id":"2093"},{"source":"939","target":"937","id":"2351"},{"source":"957","target":"48","id":"2430"},{"source":"493","target":"825","id":"1848"},{"source":"334","target":"167","id":"4746"},{"source":"755","target":"185","id":"1596"},{"source":"1249","target":"1279","id":"5913"},{"source":"1267","target":"533","id":"3737"},{"source":"1721","target":"1289","id":"6674"},{"source":"538","target":"397","id":"4656"},{"source":"362","target":"224","id":"6460"},{"source":"852","target":"45","id":"3250"},{"source":"1290","target":"210","id":"3831"},{"source":"1092","target":"48","id":"2918"},{"source":"1589","target":"569","id":"5710"},{"source":"862","target":"708","id":"2633"},{"source":"267","target":"49","id":"4434"},{"source":"261","target":"68","id":"5959"},{"source":"1398","target":"1399","id":"4414"},{"source":"1115","target":"1060","id":"3060"},{"source":"1342","target":"48","id":"4104"},{"source":"617","target":"619","id":"1197"},{"source":"444","target":"1003","id":"2553"},{"source":"1523","target":"95","id":"5252"},{"source":"1065","target":"1064","id":"2798"},{"source":"150","target":"163","id":"4340"},{"source":"339","target":"334","id":"4206"},{"source":"144","target":"403","id":"714"},{"source":"337","target":"319","id":"512"},{"source":"22","target":"30","id":"30"},{"source":"1136","target":"281","id":"4390"},{"source":"275","target":"313","id":"4320"},{"source":"610","target":"498","id":"1187"},{"source":"660","target":"664","id":"4042"},{"source":"337","target":"339","id":"513"},{"source":"501","target":"281","id":"837"},{"source":"396","target":"397","id":"648"},{"source":"320","target":"323","id":"438"},{"source":"871","target":"62","id":"2043"},{"source":"893","target":"51","id":"2562"},{"source":"715","target":"710","id":"1446"},{"source":"813","target":"132","id":"1813"},{"source":"840","target":"713","id":"1918"},{"source":"941","target":"1","id":"6576"},{"source":"66","target":"119","id":"2600"},{"source":"246","target":"1022","id":"2642"},{"source":"683","target":"82","id":"1445"},{"source":"866","target":"50","id":"2613"},{"source":"904","target":"93","id":"2202"},{"source":"716","target":"85","id":"1451"},{"source":"1355","target":"1357","id":"4179"},{"source":"727","target":"53","id":"1508"},{"source":"1353","target":"746","id":"4172"},{"source":"657","target":"656","id":"6000"},{"source":"753","target":"310","id":"5127"},{"source":"757","target":"238","id":"5831"},{"source":"1136","target":"1142","id":"4392"},{"source":"750","target":"751","id":"1582"},{"source":"442","target":"444","id":"720"},{"source":"302","target":"296","id":"5114"},{"source":"1213","target":"82","id":"5344"},{"source":"257","target":"259","id":"302"},{"source":"46","target":"309","id":"4307"},{"source":"70","target":"74","id":"2493"},{"source":"1126","target":"128","id":"4810"},{"source":"121","target":"1","id":"129"},{"source":"1130","target":"900","id":"5937"},{"source":"1637","target":"996","id":"6072"},{"source":"1076","target":"262","id":"3699"},{"source":"1477","target":"131","id":"4933"},{"source":"42","target":"53","id":"343"},{"source":"345","target":"346","id":"525"},{"source":"466","target":"467","id":"776"},{"source":"1495","target":"1496","id":"5079"},{"source":"506","target":"397","id":"843"},{"source":"376","target":"295","id":"605"},{"source":"398","target":"49","id":"5159"},{"source":"1117","target":"300","id":"3019"},{"source":"931","target":"403","id":"2311"},{"source":"1131","target":"609","id":"3070"},{"source":"1486","target":"92","id":"5014"},{"source":"460","target":"609","id":"1166"},{"source":"1319","target":"65","id":"3983"},{"source":"556","target":"76","id":"3423"},{"source":"1459","target":"66","id":"4803"},{"source":"386","target":"239","id":"6457"},{"source":"1282","target":"1249","id":"5890"},{"source":"924","target":"82","id":"5326"},{"source":"711","target":"710","id":"1443"},{"source":"1327","target":"437","id":"5870"},{"source":"1507","target":"210","id":"5152"},{"source":"1176","target":"279","id":"3293"},{"source":"1237","target":"1144","id":"3602"},{"source":"1696","target":"65","id":"6427"},{"source":"987","target":"1126","id":"3053"},{"source":"242","target":"120","id":"2227"},{"source":"506","target":"49","id":"846"},{"source":"1246","target":"689","id":"6102"},{"source":"1435","target":"1","id":"4703"},{"source":"374","target":"590","id":"5180"},{"source":"840","target":"280","id":"1911"},{"source":"854","target":"272","id":"1971"},{"source":"66","target":"49","id":"2602"},{"source":"1363","target":"45","id":"4237"},{"source":"817","target":"598","id":"2003"},{"source":"1243","target":"53","id":"3611"},{"source":"1219","target":"1","id":"3519"},{"source":"883","target":"976","id":"4189"},{"source":"1082","target":"307","id":"6567"},{"source":"722","target":"128","id":"1476"},{"source":"38","target":"270","id":"1286"},{"source":"1583","target":"875","id":"5666"},{"source":"1673","target":"817","id":"6304"},{"source":"113","target":"587","id":"1094"},{"source":"1080","target":"1","id":"2851"},{"source":"133","target":"82","id":"149"},{"source":"1031","target":"104","id":"2662"},{"source":"162","target":"163","id":"183"},{"source":"1045","target":"1042","id":"2736"},{"source":"1200","target":"1413","id":"4532"},{"source":"474","target":"313","id":"6607"},{"source":"770","target":"768","id":"5555"},{"source":"1091","target":"68","id":"2907"},{"source":"1353","target":"111","id":"4168"},{"source":"61","target":"279","id":"861"},{"source":"366","target":"114","id":"5459"},{"source":"164","target":"162","id":"5367"},{"source":"1148","target":"350","id":"3124"},{"source":"299","target":"79","id":"1247"},{"source":"734","target":"592","id":"1529"},{"source":"1344","target":"562","id":"4114"},{"source":"785","target":"786","id":"1714"},{"source":"879","target":"648","id":"2078"},{"source":"450","target":"37","id":"4687"},{"source":"66","target":"132","id":"2603"},{"source":"328","target":"329","id":"475"},{"source":"1390","target":"897","id":"4364"},{"source":"123","target":"124","id":"130"},{"source":"1243","target":"513","id":"3613"},{"source":"864","target":"866","id":"2012"},{"source":"650","target":"79","id":"1285"},{"source":"1655","target":"1015","id":"6194"},{"source":"828","target":"591","id":"1861"},{"source":"283","target":"525","id":"6349"},{"source":"369","target":"182","id":"576"},{"source":"594","target":"287","id":"4877"},{"source":"548","target":"79","id":"961"},{"source":"477","target":"79","id":"3516"},{"source":"816","target":"858","id":"1994"},{"source":"875","target":"760","id":"2063"},{"source":"373","target":"374","id":"593"},{"source":"171","target":"1138","id":"5260"},{"source":"87","target":"512","id":"6290"},{"source":"1282","target":"1279","id":"5888"},{"source":"1200","target":"1414","id":"4533"},{"source":"61","target":"49","id":"868"},{"source":"1042","target":"567","id":"2717"},{"source":"1537","target":"1256","id":"5296"},{"source":"250","target":"453","id":"3365"},{"source":"580","target":"120","id":"1081"},{"source":"1304","target":"319","id":"3900"},{"source":"689","target":"65","id":"6109"},{"source":"104","target":"114","id":"2212"},{"source":"455","target":"622","id":"1201"},{"source":"640","target":"106","id":"5318"},{"source":"576","target":"107","id":"2373"},{"source":"1557","target":"303","id":"5829"},{"source":"738","target":"440","id":"3829"},{"source":"1119","target":"66","id":"6253"},{"source":"1722","target":"166","id":"6675"},{"source":"866","target":"65","id":"2610"},{"source":"1031","target":"76","id":"2661"},{"source":"1342","target":"166","id":"4099"},{"source":"1459","target":"281","id":"4804"},{"source":"1570","target":"82","id":"5529"},{"source":"88","target":"89","id":"81"},{"source":"850","target":"79","id":"1952"},{"source":"1663","target":"666","id":"6240"},{"source":"789","target":"53","id":"3031"},{"source":"1052","target":"204","id":"2771"},{"source":"1398","target":"281","id":"4413"},{"source":"1685","target":"1686","id":"6396"},{"source":"1323","target":"1619","id":"5957"},{"source":"756","target":"759","id":"1605"},{"source":"1266","target":"48","id":"3729"},{"source":"1514","target":"1517","id":"5224"},{"source":"1395","target":"444","id":"4380"},{"source":"471","target":"486","id":"809"},{"source":"1435","target":"82","id":"4697"},{"source":"460","target":"160","id":"1159"},{"source":"657","target":"606","id":"5998"},{"source":"1113","target":"79","id":"3015"},{"source":"704","target":"64","id":"6529"},{"source":"171","target":"1042","id":"5258"},{"source":"639","target":"112","id":"1265"},{"source":"907","target":"909","id":"2223"},{"source":"168","target":"167","id":"6369"},{"source":"779","target":"174","id":"1688"},{"source":"513","target":"49","id":"5208"},{"source":"492","target":"493","id":"816"},{"source":"118","target":"53","id":"1294"},{"source":"1374","target":"487","id":"4263"},{"source":"1707","target":"1002","id":"6533"},{"source":"291","target":"294","id":"371"},{"source":"1092","target":"53","id":"2923"},{"source":"590","target":"374","id":"5170"},{"source":"578","target":"120","id":"5682"},{"source":"893","target":"104","id":"2558"},{"source":"1557","target":"182","id":"5827"},{"source":"518","target":"444","id":"896"},{"source":"1401","target":"109","id":"4422"},{"source":"142","target":"27","id":"165"},{"source":"393","target":"390","id":"646"},{"source":"1587","target":"18","id":"5675"},{"source":"1395","target":"839","id":"4381"},{"source":"712","target":"82","id":"2032"},{"source":"783","target":"50","id":"1700"},{"source":"66","target":"65","id":"2599"},{"source":"1074","target":"1079","id":"2846"},{"source":"843","target":"715","id":"1924"},{"source":"1547","target":"571","id":"5519"},{"source":"1594","target":"101","id":"5757"},{"source":"172","target":"109","id":"5738"},{"source":"816","target":"435","id":"1993"},{"source":"1108","target":"79","id":"2998"},{"source":"1195","target":"618","id":"3417"},{"source":"282","target":"283","id":"3286"},{"source":"1246","target":"100","id":"6101"},{"source":"117","target":"105","id":"125"},{"source":"262","target":"1262","id":"5979"},{"source":"993","target":"997","id":"4529"},{"source":"197","target":"201","id":"230"},{"source":"526","target":"617","id":"3541"},{"source":"832","target":"82","id":"1878"},{"source":"212","target":"79","id":"3998"},{"source":"83","target":"53","id":"75"},{"source":"1149","target":"170","id":"3126"},{"source":"290","target":"65","id":"1853"},{"source":"1150","target":"876","id":"3133"},{"source":"269","target":"38","id":"334"},{"source":"787","target":"785","id":"6466"},{"source":"219","target":"296","id":"447"},{"source":"1572","target":"1108","id":"6319"},{"source":"1145","target":"638","id":"3108"},{"source":"1628","target":"533","id":"6022"},{"source":"966","target":"317","id":"5821"},{"source":"1644","target":"324","id":"6125"},{"source":"944","target":"502","id":"2367"},{"source":"194","target":"193","id":"4479"},{"source":"363","target":"113","id":"556"},{"source":"1276","target":"230","id":"3770"},{"source":"532","target":"533","id":"920"},{"source":"202","target":"266","id":"6639"},{"source":"903","target":"451","id":"2176"},{"source":"1001","target":"160","id":"2550"},{"source":"1013","target":"1","id":"3027"},{"source":"612","target":"613","id":"1190"},{"source":"235","target":"236","id":"270"},{"source":"1589","target":"567","id":"5705"},{"source":"1290","target":"851","id":"3833"},{"source":"484","target":"51","id":"5594"},{"source":"1183","target":"82","id":"3346"},{"source":"1698","target":"646","id":"6449"},{"source":"1467","target":"925","id":"4851"},{"source":"669","target":"378","id":"1336"},{"source":"1253","target":"852","id":"6560"},{"source":"805","target":"603","id":"1773"},{"source":"920","target":"777","id":"2264"},{"source":"483","target":"166","id":"3921"},{"source":"65","target":"131","id":"2123"},{"source":"710","target":"85","id":"1467"},{"source":"1032","target":"215","id":"2664"},{"source":"808","target":"216","id":"1787"},{"source":"1660","target":"962","id":"6229"},{"source":"1406","target":"294","id":"4478"},{"source":"60","target":"66","id":"60"},{"source":"1372","target":"1373","id":"4262"},{"source":"203","target":"198","id":"735"},{"source":"1629","target":"649","id":"6030"},{"source":"626","target":"312","id":"3229"},{"source":"1108","target":"463","id":"2995"},{"source":"172","target":"84","id":"5742"},{"source":"303","target":"185","id":"393"},{"source":"1022","target":"901","id":"3358"},{"source":"1641","target":"920","id":"6099"},{"source":"1648","target":"1009","id":"6139"},{"source":"458","target":"883","id":"5371"},{"source":"1639","target":"862","id":"6090"},{"source":"361","target":"79","id":"1957"},{"source":"1492","target":"1494","id":"5052"},{"source":"840","target":"335","id":"1912"},{"source":"901","target":"902","id":"2169"},{"source":"1041","target":"67","id":"2702"},{"source":"69","target":"72","id":"66"},{"source":"1556","target":"219","id":"5429"},{"source":"677","target":"678","id":"1362"},{"source":"893","target":"180","id":"2555"},{"source":"701","target":"540","id":"1418"},{"source":"1248","target":"421","id":"5895"},{"source":"631","target":"66","id":"1219"},{"source":"773","target":"504","id":"1647"},{"source":"1215","target":"648","id":"3489"},{"source":"1651","target":"272","id":"6175"},{"source":"1574","target":"114","id":"5561"},{"source":"523","target":"524","id":"908"},{"source":"1390","target":"155","id":"4363"},{"source":"651","target":"216","id":"1302"},{"source":"773","target":"770","id":"1650"},{"source":"422","target":"130","id":"692"},{"source":"610","target":"608","id":"1186"},{"source":"1620","target":"262","id":"5964"},{"source":"1406","target":"302","id":"4474"},{"source":"1267","target":"281","id":"3734"},{"source":"405","target":"397","id":"2931"},{"source":"1141","target":"600","id":"3091"},{"source":"1713","target":"207","id":"6605"},{"source":"514","target":"408","id":"886"},{"source":"884","target":"498","id":"2098"},{"source":"1045","target":"1047","id":"2737"},{"source":"390","target":"392","id":"641"},{"source":"849","target":"361","id":"1948"},{"source":"34","target":"37","id":"35"},{"source":"288","target":"50","id":"362"},{"source":"595","target":"68","id":"1138"},{"source":"28","target":"24","id":"5041"},{"source":"1096","target":"324","id":"2941"},{"source":"748","target":"170","id":"3786"},{"source":"556","target":"1196","id":"3425"},{"source":"63","target":"68","id":"991"},{"source":"1429","target":"1","id":"4968"},{"source":"852","target":"1083","id":"3253"},{"source":"587","target":"116","id":"1104"},{"source":"1624","target":"238","id":"5988"},{"source":"258","target":"53","id":"1307"},{"source":"257","target":"53","id":"300"},{"source":"505","target":"1177","id":"4002"},{"source":"389","target":"166","id":"638"},{"source":"873","target":"53","id":"2053"},{"source":"918","target":"53","id":"2256"},{"source":"591","target":"177","id":"1237"},{"source":"1518","target":"959","id":"5235"},{"source":"1530","target":"235","id":"5274"},{"source":"372","target":"621","id":"3957"},{"source":"1514","target":"162","id":"5221"},{"source":"1092","target":"49","id":"2920"},{"source":"801","target":"1244","id":"4212"},{"source":"72","target":"561","id":"1020"},{"source":"787","target":"1312","id":"6468"},{"source":"179","target":"177","id":"3394"},{"source":"160","target":"161","id":"182"},{"source":"289","target":"53","id":"3724"},{"source":"555","target":"403","id":"3187"},{"source":"458","target":"915","id":"5369"},{"source":"1045","target":"104","id":"2735"},{"source":"784","target":"512","id":"1705"},{"source":"456","target":"25","id":"5809"},{"source":"1205","target":"16","id":"3456"},{"source":"340","target":"150","id":"4342"},{"source":"179","target":"79","id":"3396"},{"source":"1719","target":"50","id":"6631"},{"source":"1425","target":"293","id":"6434"},{"source":"1314","target":"296","id":"4450"},{"source":"1254","target":"838","id":"3645"},{"source":"1276","target":"748","id":"3775"},{"source":"53","target":"50","id":"1118"},{"source":"452","target":"549","id":"2283"},{"source":"383","target":"20","id":"630"},{"source":"992","target":"995","id":"2536"},{"source":"1567","target":"97","id":"5507"},{"source":"358","target":"361","id":"551"},{"source":"1452","target":"61","id":"4749"},{"source":"1690","target":"316","id":"6417"},{"source":"1223","target":"486","id":"3558"},{"source":"74","target":"72","id":"1710"},{"source":"499","target":"182","id":"827"},{"source":"979","target":"1029","id":"2658"},{"source":"1189","target":"344","id":"3391"},{"source":"1581","target":"166","id":"5661"},{"source":"1490","target":"757","id":"5034"},{"source":"563","target":"564","id":"1027"},{"source":"1298","target":"66","id":"3872"},{"source":"8","target":"1","id":"9"},{"source":"1550","target":"707","id":"5376"},{"source":"113","target":"588","id":"1095"},{"source":"1280","target":"757","id":"3805"},{"source":"1632","target":"344","id":"6045"},{"source":"66","target":"48","id":"2601"},{"source":"496","target":"497","id":"820"},{"source":"1490","target":"27","id":"5031"},{"source":"765","target":"1124","id":"4825"},{"source":"114","target":"597","id":"2213"},{"source":"240","target":"120","id":"277"},{"source":"1248","target":"1279","id":"5897"},{"source":"1469","target":"594","id":"4869"},{"source":"1008","target":"424","id":"5696"},{"source":"902","target":"68","id":"3165"},{"source":"977","target":"61","id":"2499"},{"source":"333","target":"66","id":"489"},{"source":"1633","target":"1634","id":"6058"},{"source":"588","target":"116","id":"2144"},{"source":"113","target":"49","id":"1099"},{"source":"547","target":"549","id":"948"},{"source":"167","target":"65","id":"2337"},{"source":"83","target":"85","id":"77"},{"source":"44","target":"51","id":"47"},{"source":"1438","target":"1439","id":"4708"},{"source":"1342","target":"806","id":"4098"},{"source":"285","target":"62","id":"351"},{"source":"370","target":"335","id":"4580"},{"source":"163","target":"79","id":"2237"},{"source":"1553","target":"389","id":"5409"},{"source":"1144","target":"613","id":"3105"},{"source":"131","target":"111","id":"2187"},{"source":"1544","target":"76","id":"5341"},{"source":"1692","target":"791","id":"6421"},{"source":"502","target":"1284","id":"5074"},{"source":"1364","target":"631","id":"6514"},{"source":"523","target":"528","id":"913"},{"source":"832","target":"68","id":"1879"},{"source":"1049","target":"82","id":"2751"},{"source":"50","target":"65","id":"5472"},{"source":"693","target":"571","id":"1397"},{"source":"769","target":"770","id":"1634"},{"source":"330","target":"306","id":"481"},{"source":"682","target":"642","id":"6166"},{"source":"825","target":"495","id":"5855"},{"source":"35","target":"34","id":"419"},{"source":"1336","target":"50","id":"4066"},{"source":"1418","target":"602","id":"4553"},{"source":"770","target":"708","id":"5554"},{"source":"925","target":"50","id":"2289"},{"source":"1684","target":"111","id":"6384"},{"source":"789","target":"48","id":"3035"},{"source":"747","target":"364","id":"3777"},{"source":"1342","target":"1180","id":"4102"},{"source":"427","target":"568","id":"1035"},{"source":"922","target":"897","id":"2274"},{"source":"1423","target":"524","id":"4591"},{"source":"1366","target":"166","id":"4248"},{"source":"40","target":"429","id":"4686"},{"source":"1066","target":"479","id":"2805"},{"source":"286","target":"262","id":"3718"},{"source":"44","target":"47","id":"43"},{"source":"728","target":"116","id":"5454"},{"source":"797","target":"409","id":"1752"},{"source":"1334","target":"817","id":"4055"},{"source":"1359","target":"51","id":"4197"},{"source":"1487","target":"79","id":"5015"},{"source":"462","target":"465","id":"775"},{"source":"794","target":"109","id":"1742"},{"source":"841","target":"966","id":"2450"},{"source":"1144","target":"351","id":"3106"},{"source":"1709","target":"182","id":"6550"},{"source":"906","target":"463","id":"2220"},{"source":"1598","target":"1132","id":"5788"},{"source":"271","target":"1384","id":"4326"},{"source":"732","target":"469","id":"5969"},{"source":"1585","target":"1586","id":"5674"},{"source":"1717","target":"1120","id":"6623"},{"source":"755","target":"79","id":"1590"},{"source":"706","target":"132","id":"1431"},{"source":"1212","target":"761","id":"3478"},{"source":"411","target":"532","id":"1781"},{"source":"1145","target":"1147","id":"3110"},{"source":"1599","target":"890","id":"5789"},{"source":"1444","target":"216","id":"4725"},{"source":"182","target":"256","id":"4471"},{"source":"802","target":"150","id":"1769"},{"source":"681","target":"161","id":"1371"},{"source":"83","target":"82","id":"78"},{"source":"1119","target":"51","id":"6251"},{"source":"560","target":"114","id":"1018"},{"source":"780","target":"781","id":"1694"},{"source":"515","target":"610","id":"1169"},{"source":"1441","target":"1","id":"4710"},{"source":"120","target":"668","id":"4020"},{"source":"1045","target":"93","id":"2734"},{"source":"1509","target":"47","id":"5194"},{"source":"794","target":"53","id":"1738"},{"source":"1347","target":"1265","id":"4134"},{"source":"1209","target":"1210","id":"3472"},{"source":"1336","target":"284","id":"4058"},{"source":"1316","target":"216","id":"4971"},{"source":"605","target":"1046","id":"2903"},{"source":"1331","target":"1","id":"4044"},{"source":"1044","target":"426","id":"2730"},{"source":"328","target":"296","id":"472"},{"source":"926","target":"698","id":"2385"},{"source":"1684","target":"600","id":"6387"},{"source":"1351","target":"567","id":"4159"},{"source":"934","target":"1324","id":"4007"},{"source":"555","target":"469","id":"3189"},{"source":"553","target":"65","id":"988"},{"source":"767","target":"1","id":"1625"},{"source":"1291","target":"218","id":"5637"},{"source":"641","target":"640","id":"5323"},{"source":"568","target":"772","id":"1645"},{"source":"1022","target":"924","id":"3360"},{"source":"89","target":"79","id":"2234"},{"source":"694","target":"48","id":"1404"},{"source":"408","target":"67","id":"880"},{"source":"295","target":"293","id":"3179"},{"source":"835","target":"559","id":"5068"},{"source":"1661","target":"68","id":"6233"},{"source":"1227","target":"293","id":"3575"},{"source":"874","target":"876","id":"2067"},{"source":"957","target":"959","id":"2427"},{"source":"1472","target":"120","id":"4924"},{"source":"662","target":"663","id":"2789"},{"source":"400","target":"570","id":"2388"},{"source":"374","target":"513","id":"5182"},{"source":"1187","target":"76","id":"3376"},{"source":"1573","target":"49","id":"5545"},{"source":"1562","target":"571","id":"5496"},{"source":"404","target":"49","id":"659"},{"source":"1510","target":"374","id":"5204"},{"source":"1479","target":"983","id":"4976"},{"source":"437","target":"606","id":"1313"},{"source":"938","target":"167","id":"2482"},{"source":"156","target":"154","id":"176"},{"source":"593","target":"50","id":"1127"},{"source":"215","target":"128","id":"5992"},{"source":"1536","target":"250","id":"5289"},{"source":"588","target":"113","id":"2143"},{"source":"1369","target":"1371","id":"4257"},{"source":"611","target":"216","id":"1175"},{"source":"860","target":"347","id":"6117"},{"source":"1457","target":"405","id":"4784"},{"source":"1163","target":"1162","id":"3212"},{"source":"338","target":"1284","id":"3812"},{"source":"1391","target":"1392","id":"4369"},{"source":"115","target":"116","id":"2323"},{"source":"722","target":"720","id":"1473"},{"source":"1249","target":"421","id":"5911"},{"source":"157","target":"152","id":"179"},{"source":"1298","target":"53","id":"3870"},{"source":"527","target":"294","id":"3545"},{"source":"358","target":"359","id":"547"},{"source":"545","target":"546","id":"944"},{"source":"799","target":"409","id":"1763"},{"source":"1633","target":"366","id":"6063"},{"source":"245","target":"104","id":"1730"},{"source":"928","target":"148","id":"6078"},{"source":"454","target":"53","id":"750"},{"source":"1101","target":"312","id":"2959"},{"source":"1443","target":"591","id":"4722"},{"source":"285","target":"68","id":"359"},{"source":"1428","target":"136","id":"4614"},{"source":"454","target":"170","id":"752"},{"source":"448","target":"313","id":"725"},{"source":"1163","target":"1164","id":"3213"},{"source":"615","target":"206","id":"4334"},{"source":"291","target":"292","id":"368"},{"source":"1677","target":"1293","id":"6362"},{"source":"864","target":"61","id":"2007"},{"source":"1210","target":"1262","id":"6447"},{"source":"1471","target":"279","id":"4914"},{"source":"1544","target":"82","id":"5342"},{"source":"458","target":"696","id":"5368"},{"source":"1632","target":"999","id":"6048"},{"source":"1589","target":"427","id":"5706"},{"source":"832","target":"693","id":"1883"},{"source":"929","target":"779","id":"2304"},{"source":"1305","target":"296","id":"4575"},{"source":"333","target":"49","id":"492"},{"source":"307","target":"367","id":"564"},{"source":"979","target":"1030","id":"2660"},{"source":"1273","target":"1228","id":"3763"},{"source":"974","target":"1385","id":"4339"},{"source":"1550","target":"106","id":"5378"},{"source":"421","target":"420","id":"3687"},{"source":"901","target":"250","id":"2170"},{"source":"27","target":"428","id":"2993"},{"source":"1547","target":"258","id":"5518"},{"source":"1679","target":"1680","id":"6378"},{"source":"976","target":"1150","id":"3132"},{"source":"1046","target":"1524","id":"6341"},{"source":"580","target":"519","id":"1078"},{"source":"51","target":"61","id":"5582"},{"source":"912","target":"309","id":"2860"},{"source":"259","target":"841","id":"2154"},{"source":"1448","target":"416","id":"4735"},{"source":"308","target":"79","id":"570"},{"source":"1376","target":"295","id":"4281"},{"source":"1650","target":"281","id":"6154"},{"source":"1110","target":"500","id":"3011"},{"source":"1555","target":"498","id":"5426"},{"source":"1114","target":"1060","id":"3058"},{"source":"1248","target":"1283","id":"5901"},{"source":"949","target":"208","id":"2395"},{"source":"944","target":"48","id":"2366"},{"source":"1098","target":"79","id":"2947"},{"source":"1431","target":"608","id":"4667"},{"source":"271","target":"275","id":"4328"},{"source":"1071","target":"1076","id":"2837"},{"source":"690","target":"685","id":"1389"},{"source":"1183","target":"76","id":"3342"},{"source":"1514","target":"163","id":"5222"},{"source":"601","target":"600","id":"1150"},{"source":"755","target":"45","id":"1594"},{"source":"619","target":"79","id":"6035"},{"source":"352","target":"232","id":"539"},{"source":"1472","target":"1473","id":"4916"},{"source":"1720","target":"62","id":"6666"},{"source":"1431","target":"515","id":"4674"},{"source":"227","target":"1","id":"257"},{"source":"746","target":"170","id":"4855"},{"source":"744","target":"131","id":"1561"},{"source":"845","target":"706","id":"1934"},{"source":"143","target":"379","id":"611"},{"source":"1486","target":"1109","id":"5013"},{"source":"60","target":"65","id":"59"},{"source":"1204","target":"239","id":"3455"},{"source":"608","target":"65","id":"1495"},{"source":"1291","target":"279","id":"5639"},{"source":"1387","target":"1","id":"4355"},{"source":"1658","target":"303","id":"6213"},{"source":"572","target":"196","id":"2667"},{"source":"711","target":"713","id":"1440"},{"source":"1023","target":"858","id":"4357"},{"source":"942","target":"76","id":"2357"},{"source":"1101","target":"1098","id":"2957"},{"source":"567","target":"131","id":"2718"},{"source":"339","target":"1243","id":"4205"},{"source":"883","target":"693","id":"4186"},{"source":"424","target":"422","id":"4943"},{"source":"1044","target":"1042","id":"2732"},{"source":"429","target":"1","id":"4692"},{"source":"989","target":"192","id":"2529"},{"source":"1477","target":"130","id":"4939"},{"source":"1550","target":"68","id":"5375"},{"source":"1046","target":"171","id":"6340"},{"source":"1702","target":"1103","id":"6490"},{"source":"1678","target":"334","id":"6374"},{"source":"460","target":"433","id":"1160"},{"source":"992","target":"996","id":"2537"},{"source":"117","target":"118","id":"119"},{"source":"1221","target":"254","id":"3529"},{"source":"1626","target":"53","id":"6009"},{"source":"978","target":"182","id":"2505"},{"source":"483","target":"51","id":"3920"},{"source":"42","target":"284","id":"349"},{"source":"604","target":"605","id":"1157"},{"source":"1470","target":"511","id":"4905"},{"source":"578","target":"241","id":"5680"},{"source":"430","target":"429","id":"4833"},{"source":"374","target":"47","id":"5178"},{"source":"443","target":"309","id":"1289"},{"source":"1187","target":"708","id":"3372"},{"source":"1556","target":"1410","id":"5434"},{"source":"887","target":"598","id":"2106"},{"source":"788","target":"789","id":"1719"},{"source":"1457","target":"182","id":"4786"},{"source":"28","target":"456","id":"5040"},{"source":"93","target":"65","id":"2159"},{"source":"1337","target":"199","id":"4071"},{"source":"612","target":"614","id":"1191"},{"source":"45","target":"626","id":"3233"},{"source":"788","target":"498","id":"1722"},{"source":"726","target":"114","id":"2193"},{"source":"643","target":"644","id":"1269"},{"source":"407","target":"409","id":"669"},{"source":"968","target":"37","id":"2460"},{"source":"558","target":"76","id":"1011"},{"source":"216","target":"357","id":"542"},{"source":"1068","target":"1064","id":"2808"},{"source":"1534","target":"82","id":"5281"},{"source":"447","target":"233","id":"1009"},{"source":"868","target":"84","id":"2018"},{"source":"885","target":"212","id":"4005"},{"source":"611","target":"66","id":"1178"},{"source":"234","target":"215","id":"1928"},{"source":"373","target":"112","id":"588"},{"source":"529","target":"531","id":"916"},{"source":"654","target":"657","id":"3422"},{"source":"1122","target":"1015","id":"3047"},{"source":"108","target":"64","id":"5490"},{"source":"728","target":"363","id":"5449"},{"source":"581","target":"519","id":"4181"},{"source":"429","target":"37","id":"4690"},{"source":"894","target":"74","id":"2121"},{"source":"1493","target":"166","id":"5053"},{"source":"754","target":"638","id":"5438"},{"source":"1250","target":"1251","id":"3633"},{"source":"696","target":"698","id":"1413"},{"source":"589","target":"590","id":"1663"},{"source":"969","target":"444","id":"2469"},{"source":"245","target":"105","id":"1731"},{"source":"1379","target":"1358","id":"4286"},{"source":"952","target":"349","id":"2411"},{"source":"580","target":"581","id":"1074"},{"source":"691","target":"248","id":"1393"},{"source":"801","target":"483","id":"4214"},{"source":"436","target":"555","id":"1004"},{"source":"1583","target":"409","id":"5669"},{"source":"37","target":"272","id":"704"},{"source":"573","target":"50","id":"1051"},{"source":"1198","target":"119","id":"3438"},{"source":"1374","target":"391","id":"4267"},{"source":"766","target":"163","id":"1623"},{"source":"352","target":"354","id":"537"},{"source":"538","target":"53","id":"4654"},{"source":"992","target":"997","id":"2538"},{"source":"1479","target":"170","id":"4977"},{"source":"21","target":"1","id":"1311"},{"source":"61","target":"512","id":"864"},{"source":"1664","target":"855","id":"6247"},{"source":"889","target":"661","id":"4404"},{"source":"476","target":"79","id":"790"},{"source":"1658","target":"1448","id":"6220"},{"source":"405","target":"200","id":"2933"},{"source":"794","target":"104","id":"1740"},{"source":"57","target":"313","id":"3184"},{"source":"223","target":"224","id":"253"},{"source":"1209","target":"455","id":"3468"},{"source":"479","target":"1063","id":"4294"},{"source":"178","target":"463","id":"1244"},{"source":"567","target":"82","id":"2724"},{"source":"1514","target":"1518","id":"5225"},{"source":"625","target":"627","id":"1205"},{"source":"1148","target":"318","id":"3125"},{"source":"1179","target":"170","id":"3308"},{"source":"1286","target":"166","id":"3821"},{"source":"1468","target":"484","id":"4867"},{"source":"254","target":"255","id":"292"},{"source":"1160","target":"1","id":"3195"},{"source":"781","target":"104","id":"2785"},{"source":"1427","target":"128","id":"4606"},{"source":"781","target":"68","id":"2781"},{"source":"457","target":"51","id":"6345"},{"source":"66","target":"50","id":"2604"},{"source":"822","target":"405","id":"6261"},{"source":"613","target":"351","id":"1967"},{"source":"365","target":"155","id":"1342"},{"source":"1156","target":"239","id":"3155"},{"source":"1457","target":"513","id":"4790"},{"source":"363","target":"65","id":"559"},{"source":"282","target":"284","id":"3287"},{"source":"766","target":"1","id":"1624"},{"source":"921","target":"155","id":"2267"},{"source":"628","target":"934","id":"4154"},{"source":"193","target":"194","id":"220"},{"source":"73","target":"72","id":"1707"},{"source":"1016","target":"50","id":"2597"},{"source":"1164","target":"606","id":"3988"},{"source":"1411","target":"532","id":"4510"},{"source":"441","target":"172","id":"4377"},{"source":"62","target":"53","id":"978"},{"source":"449","target":"450","id":"727"},{"source":"1291","target":"983","id":"5640"},{"source":"1412","target":"996","id":"4523"},{"source":"1074","target":"1073","id":"2848"},{"source":"66","target":"88","id":"2605"},{"source":"1007","target":"50","id":"2576"},{"source":"1318","target":"111","id":"3971"},{"source":"608","target":"607","id":"1493"},{"source":"1672","target":"702","id":"6298"},{"source":"476","target":"475","id":"789"},{"source":"409","target":"48","id":"4650"},{"source":"1431","target":"1432","id":"4672"},{"source":"1387","target":"79","id":"4349"},{"source":"714","target":"715","id":"6651"},{"source":"701","target":"702","id":"1419"},{"source":"633","target":"65","id":"1225"},{"source":"1268","target":"513","id":"3745"},{"source":"267","target":"47","id":"4440"},{"source":"180","target":"183","id":"204"},{"source":"600","target":"281","id":"1149"},{"source":"946","target":"250","id":"2380"},{"source":"1466","target":"747","id":"4841"},{"source":"378","target":"424","id":"3208"},{"source":"818","target":"313","id":"1833"},{"source":"1702","target":"1238","id":"6487"},{"source":"248","target":"175","id":"5347"},{"source":"1604","target":"128","id":"5850"},{"source":"1096","target":"1094","id":"2942"},{"source":"933","target":"934","id":"2318"},{"source":"608","target":"53","id":"1491"},{"source":"881","target":"100","id":"2089"},{"source":"254","target":"182","id":"294"},{"source":"120","target":"576","id":"4021"},{"source":"787","target":"206","id":"6467"},{"source":"1181","target":"216","id":"3323"},{"source":"672","target":"53","id":"5402"},{"source":"508","target":"137","id":"3656"},{"source":"496","target":"498","id":"823"},{"source":"1492","target":"104","id":"5050"},{"source":"436","target":"264","id":"1003"},{"source":"1489","target":"1434","id":"5019"},{"source":"172","target":"882","id":"5736"},{"source":"1223","target":"526","id":"3559"},{"source":"148","target":"150","id":"169"},{"source":"44","target":"48","id":"44"},{"source":"231","target":"232","id":"261"},{"source":"65","target":"53","id":"2129"},{"source":"1621","target":"469","id":"5981"},{"source":"169","target":"172","id":"192"},{"source":"52","target":"53","id":"5766"},{"source":"1102","target":"1098","id":"3499"},{"source":"1689","target":"133","id":"6402"},{"source":"1363","target":"46","id":"4238"},{"source":"702","target":"160","id":"3883"},{"source":"931","target":"932","id":"2312"},{"source":"1158","target":"1","id":"3183"},{"source":"228","target":"1","id":"258"},{"source":"1180","target":"166","id":"3314"},{"source":"643","target":"65","id":"1271"},{"source":"67","target":"92","id":"2708"},{"source":"1104","target":"79","id":"2968"},{"source":"1256","target":"469","id":"3652"},{"source":"1161","target":"567","id":"3198"},{"source":"1593","target":"654","id":"5753"},{"source":"1383","target":"310","id":"4311"},{"source":"1636","target":"1034","id":"6065"},{"source":"1568","target":"571","id":"5514"},{"source":"206","target":"1037","id":"2689"},{"source":"482","target":"281","id":"3837"},{"source":"806","target":"1266","id":"6053"},{"source":"1703","target":"853","id":"6493"},{"source":"636","target":"119","id":"3177"},{"source":"232","target":"128","id":"4373"},{"source":"1184","target":"1083","id":"3353"},{"source":"148","target":"149","id":"168"},{"source":"1583","target":"166","id":"5663"},{"source":"1212","target":"81","id":"3482"},{"source":"1269","target":"1270","id":"3753"},{"source":"1633","target":"1165","id":"6062"},{"source":"1592","target":"150","id":"5746"},{"source":"984","target":"765","id":"2519"},{"source":"265","target":"835","id":"1899"},{"source":"1007","target":"833","id":"2579"},{"source":"1250","target":"302","id":"3637"},{"source":"1119","target":"405","id":"6254"},{"source":"1073","target":"262","id":"2841"},{"source":"1339","target":"806","id":"4084"},{"source":"687","target":"689","id":"1386"},{"source":"473","target":"474","id":"6433"},{"source":"405","target":"50","id":"2925"},{"source":"1471","target":"61","id":"4915"},{"source":"778","target":"25","id":"1679"},{"source":"1355","target":"182","id":"4178"},{"source":"976","target":"104","id":"3130"},{"source":"126","target":"82","id":"136"},{"source":"1404","target":"1403","id":"4541"},{"source":"628","target":"79","id":"4150"},{"source":"1150","target":"65","id":"3135"},{"source":"590","target":"589","id":"5167"},{"source":"1053","target":"206","id":"4603"},{"source":"1326","target":"423","id":"4028"},{"source":"1652","target":"695","id":"6183"},{"source":"1194","target":"1182","id":"3412"},{"source":"604","target":"567","id":"1156"},{"source":"286","target":"647","id":"3716"},{"source":"523","target":"525","id":"910"},{"source":"1615","target":"1279","id":"5924"},{"source":"923","target":"110","id":"2275"},{"source":"690","target":"79","id":"1387"},{"source":"573","target":"53","id":"1046"},{"source":"1480","target":"1479","id":"4980"},{"source":"1091","target":"50","id":"2915"},{"source":"1641","target":"630","id":"6098"},{"source":"1591","target":"65","id":"5726"},{"source":"725","target":"515","id":"1502"},{"source":"1074","target":"224","id":"2847"},{"source":"595","target":"79","id":"1131"},{"source":"22","target":"28","id":"28"},{"source":"285","target":"287","id":"356"},{"source":"1197","target":"312","id":"3428"},{"source":"1635","target":"1","id":"6064"},{"source":"788","target":"411","id":"1721"},{"source":"1124","target":"388","id":"4844"},{"source":"279","target":"281","id":"506"},{"source":"20","target":"21","id":"140"},{"source":"694","target":"50","id":"1408"},{"source":"36","target":"276","id":"443"},{"source":"1574","target":"53","id":"5558"},{"source":"1244","target":"48","id":"3623"},{"source":"1604","target":"344","id":"5851"},{"source":"1485","target":"50","id":"5006"},{"source":"751","target":"479","id":"1937"},{"source":"484","target":"49","id":"5593"},{"source":"1285","target":"966","id":"3819"},{"source":"605","target":"495","id":"2904"},{"source":"1401","target":"166","id":"4416"},{"source":"1649","target":"217","id":"6148"},{"source":"950","target":"208","id":"2399"},{"source":"410","target":"411","id":"674"},{"source":"215","target":"82","id":"5994"},{"source":"1249","target":"1282","id":"5914"},{"source":"688","target":"83","id":"1658"},{"source":"982","target":"983","id":"2514"},{"source":"336","target":"334","id":"3147"},{"source":"1411","target":"765","id":"4514"},{"source":"511","target":"53","id":"6475"},{"source":"483","target":"334","id":"3927"},{"source":"461","target":"459","id":"2617"},{"source":"1699","target":"1","id":"6454"},{"source":"1281","target":"1282","id":"3810"},{"source":"1091","target":"498","id":"2911"},{"source":"1032","target":"128","id":"2666"},{"source":"811","target":"592","id":"1806"},{"source":"1572","target":"626","id":"6320"},{"source":"217","target":"82","id":"3119"},{"source":"886","target":"600","id":"2102"},{"source":"602","target":"603","id":"1151"},{"source":"594","target":"262","id":"4878"},{"source":"1578","target":"82","id":"5625"},{"source":"51","target":"53","id":"5584"},{"source":"760","target":"120","id":"1612"},{"source":"1721","target":"119","id":"6673"},{"source":"320","target":"321","id":"436"},{"source":"813","target":"127","id":"1812"},{"source":"335","target":"575","id":"1055"},{"source":"948","target":"668","id":"3443"},{"source":"1517","target":"162","id":"5231"},{"source":"1660","target":"49","id":"6228"},{"source":"1280","target":"339","id":"3802"},{"source":"871","target":"289","id":"2047"},{"source":"1656","target":"903","id":"6197"},{"source":"665","target":"515","id":"1327"},{"source":"49","target":"61","id":"5188"},{"source":"1175","target":"200","id":"3324"},{"source":"22","target":"29","id":"29"},{"source":"156","target":"53","id":"175"},{"source":"526","target":"219","id":"3539"},{"source":"1327","target":"424","id":"5875"},{"source":"388","target":"896","id":"2393"},{"source":"1555","target":"1379","id":"5428"},{"source":"1593","target":"101","id":"5752"},{"source":"902","target":"111","id":"3169"},{"source":"60","target":"53","id":"57"},{"source":"1223","target":"527","id":"3560"},{"source":"1554","target":"68","id":"5417"},{"source":"1244","target":"396","id":"3619"},{"source":"135","target":"137","id":"1042"},{"source":"1291","target":"1581","id":"5645"},{"source":"60","target":"64","id":"58"},{"source":"226","target":"79","id":"256"},{"source":"1243","target":"239","id":"3614"},{"source":"476","target":"368","id":"791"},{"source":"105","target":"65","id":"5382"},{"source":"603","target":"1","id":"1425"},{"source":"535","target":"532","id":"2462"},{"source":"697","target":"170","id":"5687"},{"source":"25","target":"559","id":"1016"},{"source":"1117","target":"894","id":"3022"},{"source":"425","target":"428","id":"701"},{"source":"1705","target":"779","id":"6500"},{"source":"590","target":"47","id":"5168"},{"source":"748","target":"1122","id":"3783"},{"source":"1713","target":"1","id":"6600"},{"source":"962","target":"961","id":"6356"},{"source":"296","target":"219","id":"427"},{"source":"1385","target":"974","id":"4348"},{"source":"61","target":"50","id":"869"},{"source":"1138","target":"1137","id":"5250"},{"source":"1648","target":"281","id":"6144"},{"source":"595","target":"105","id":"1135"},{"source":"1594","target":"95","id":"5760"},{"source":"633","target":"93","id":"1226"},{"source":"925","target":"53","id":"2284"},{"source":"1304","target":"325","id":"3902"},{"source":"583","target":"68","id":"1083"},{"source":"250","target":"50","id":"3367"},{"source":"48","target":"281","id":"4640"},{"source":"1509","target":"254","id":"5191"},{"source":"14","target":"1","id":"16"},{"source":"1563","target":"258","id":"5499"},{"source":"37","target":"429","id":"705"},{"source":"1379","target":"428","id":"4285"},{"source":"1177","target":"505","id":"5362"},{"source":"1579","target":"618","id":"5636"},{"source":"1049","target":"599","id":"2754"},{"source":"1313","target":"297","id":"3951"},{"source":"915","target":"883","id":"2325"},{"source":"1530","target":"641","id":"5273"},{"source":"631","target":"65","id":"1217"},{"source":"200","target":"229","id":"4663"},{"source":"1025","target":"76","id":"4627"},{"source":"1721","target":"816","id":"6671"},{"source":"673","target":"674","id":"1355"},{"source":"1298","target":"50","id":"3867"},{"source":"1467","target":"166","id":"4849"},{"source":"74","target":"73","id":"1711"},{"source":"1649","target":"128","id":"6146"},{"source":"1710","target":"1","id":"6556"},{"source":"1648","target":"279","id":"6141"},{"source":"633","target":"79","id":"1224"},{"source":"516","target":"517","id":"891"},{"source":"806","target":"48","id":"6055"},{"source":"1572","target":"1407","id":"6321"},{"source":"1329","target":"424","id":"5600"},{"source":"1557","target":"967","id":"5826"},{"source":"115","target":"363","id":"2319"},{"source":"206","target":"1038","id":"2690"},{"source":"594","target":"865","id":"4876"},{"source":"677","target":"679","id":"1363"},{"source":"1318","target":"983","id":"3972"},{"source":"206","target":"1039","id":"2692"},{"source":"177","target":"465","id":"955"},{"source":"243","target":"118","id":"278"},{"source":"1608","target":"1609","id":"5882"},{"source":"828","target":"68","id":"1866"},{"source":"850","target":"141","id":"1955"},{"source":"552","target":"61","id":"4889"},{"source":"808","target":"49","id":"1795"},{"source":"201","target":"607","id":"4757"},{"source":"712","target":"232","id":"2039"},{"source":"1471","target":"408","id":"4906"},{"source":"840","target":"444","id":"1915"},{"source":"1197","target":"298","id":"3430"},{"source":"361","target":"368","id":"1959"},{"source":"27","target":"25","id":"2992"},{"source":"456","target":"27","id":"5810"},{"source":"1561","target":"609","id":"6508"},{"source":"1074","target":"1077","id":"2842"},{"source":"1122","target":"1124","id":"3048"},{"source":"1161","target":"64","id":"3203"},{"source":"1549","target":"1073","id":"5366"},{"source":"869","target":"712","id":"2029"},{"source":"1160","target":"79","id":"3194"},{"source":"1694","target":"182","id":"6425"},{"source":"1329","target":"654","id":"5598"},{"source":"1689","target":"647","id":"6407"},{"source":"301","target":"294","id":"385"},{"source":"948","target":"768","id":"3445"},{"source":"859","target":"161","id":"2002"},{"source":"1511","target":"82","id":"5210"},{"source":"1628","target":"409","id":"6021"},{"source":"446","target":"149","id":"906"},{"source":"605","target":"1050","id":"2902"},{"source":"1175","target":"128","id":"3327"},{"source":"252","target":"458","id":"759"},{"source":"973","target":"79","id":"2477"},{"source":"114","target":"104","id":"2215"},{"source":"898","target":"1","id":"2148"},{"source":"701","target":"703","id":"1420"},{"source":"62","target":"50","id":"974"},{"source":"1339","target":"1161","id":"4080"},{"source":"1443","target":"65","id":"4715"},{"source":"1717","target":"1121","id":"6624"},{"source":"306","target":"326","id":"454"},{"source":"552","target":"63","id":"4890"},{"source":"23","target":"456","id":"5806"},{"source":"431","target":"1","id":"707"},{"source":"324","target":"211","id":"2817"},{"source":"1588","target":"65","id":"5700"},{"source":"62","target":"61","id":"976"},{"source":"782","target":"175","id":"2897"},{"source":"392","target":"498","id":"4272"},{"source":"1351","target":"1042","id":"4158"},{"source":"1596","target":"759","id":"5778"},{"source":"1470","target":"68","id":"4896"},{"source":"779","target":"736","id":"1690"},{"source":"663","target":"662","id":"2790"},{"source":"1324","target":"628","id":"4647"},{"source":"408","target":"513","id":"874"},{"source":"1536","target":"97","id":"5282"},{"source":"501","target":"503","id":"835"},{"source":"498","target":"581","id":"1988"},{"source":"335","target":"51","id":"1056"},{"source":"1489","target":"1039","id":"5023"},{"source":"733","target":"174","id":"1527"},{"source":"290","target":"67","id":"1854"},{"source":"696","target":"109","id":"1412"},{"source":"37","target":"1","id":"703"},{"source":"299","target":"300","id":"1249"},{"source":"975","target":"53","id":"2485"},{"source":"1244","target":"51","id":"3618"},{"source":"856","target":"185","id":"1981"},{"source":"731","target":"109","id":"4958"},{"source":"501","target":"502","id":"831"},{"source":"109","target":"964","id":"5721"},{"source":"387","target":"216","id":"635"},{"source":"1277","target":"1275","id":"3792"},{"source":"1661","target":"901","id":"6231"},{"source":"1426","target":"293","id":"4592"},{"source":"1337","target":"166","id":"4067"},{"source":"719","target":"1","id":"1471"},{"source":"629","target":"79","id":"2680"},{"source":"1355","target":"500","id":"4180"},{"source":"1477","target":"430","id":"4937"},{"source":"523","target":"527","id":"912"},{"source":"195","target":"449","id":"5394"},{"source":"135","target":"494","id":"1041"},{"source":"1047","target":"209","id":"4331"},{"source":"1547","target":"648","id":"5521"},{"source":"1657","target":"559","id":"6209"},{"source":"596","target":"159","id":"1140"},{"source":"695","target":"166","id":"4951"},{"source":"113","target":"112","id":"1093"},{"source":"843","target":"714","id":"1922"},{"source":"1709","target":"967","id":"6546"},{"source":"1477","target":"567","id":"4934"},{"source":"501","target":"505","id":"838"},{"source":"50","target":"67","id":"5475"},{"source":"749","target":"166","id":"4738"},{"source":"816","target":"598","id":"1991"},{"source":"987","target":"82","id":"3055"},{"source":"1025","target":"760","id":"4630"},{"source":"611","target":"552","id":"1181"},{"source":"274","target":"276","id":"324"},{"source":"223","target":"211","id":"252"},{"source":"1102","target":"177","id":"3497"},{"source":"1416","target":"317","id":"4549"},{"source":"927","target":"928","id":"2298"},{"source":"472","target":"313","id":"782"},{"source":"1615","target":"1249","id":"5927"},{"source":"856","target":"79","id":"1979"},{"source":"518","target":"166","id":"893"},{"source":"316","target":"1","id":"4492"},{"source":"921","target":"858","id":"2266"},{"source":"204","target":"206","id":"234"},{"source":"1568","target":"1567","id":"5512"},{"source":"310","target":"296","id":"402"},{"source":"730","target":"484","id":"1523"},{"source":"1216","target":"82","id":"3496"},{"source":"153","target":"584","id":"2230"},{"source":"243","target":"246","id":"281"},{"source":"117","target":"95","id":"127"},{"source":"1593","target":"1329","id":"5754"},{"source":"288","target":"62","id":"365"},{"source":"210","target":"212","id":"239"},{"source":"418","target":"416","id":"4565"},{"source":"1701","target":"287","id":"6483"},{"source":"1191","target":"259","id":"3405"},{"source":"1431","target":"760","id":"4668"},{"source":"1350","target":"177","id":"4145"},{"source":"1334","target":"1335","id":"4051"},{"source":"647","target":"1202","id":"3712"},{"source":"289","target":"79","id":"3725"},{"source":"892","target":"325","id":"5144"},{"source":"936","target":"883","id":"2332"},{"source":"355","target":"217","id":"4009"},{"source":"638","target":"79","id":"3099"},{"source":"451","target":"131","id":"746"},{"source":"593","target":"594","id":"1125"},{"source":"605","target":"567","id":"2899"},{"source":"370","target":"51","id":"4584"},{"source":"1253","target":"79","id":"6558"},{"source":"1590","target":"422","id":"5713"},{"source":"461","target":"108","id":"2624"},{"source":"102","target":"105","id":"100"},{"source":"315","target":"79","id":"3506"},{"source":"617","target":"618","id":"1196"},{"source":"776","target":"1060","id":"2792"},{"source":"1173","target":"406","id":"3281"},{"source":"317","target":"185","id":"4546"},{"source":"859","target":"861","id":"1996"},{"source":"1605","target":"1","id":"5858"},{"source":"1485","target":"64","id":"5002"},{"source":"144","target":"438","id":"716"},{"source":"567","target":"1045","id":"2721"},{"source":"874","target":"50","id":"2068"},{"source":"1163","target":"378","id":"3211"},{"source":"112","target":"104","id":"114"},{"source":"918","target":"915","id":"2259"},{"source":"577","target":"68","id":"4396"},{"source":"108","target":"591","id":"5488"},{"source":"1701","target":"65","id":"6482"},{"source":"1343","target":"1175","id":"4109"},{"source":"953","target":"1","id":"2415"},{"source":"687","target":"688","id":"1382"},{"source":"44","target":"53","id":"49"},{"source":"337","target":"340","id":"514"},{"source":"1299","target":"76","id":"3877"},{"source":"499","target":"254","id":"824"},{"source":"1347","target":"641","id":"4136"},{"source":"1212","target":"1213","id":"3480"},{"source":"578","target":"585","id":"5684"},{"source":"203","target":"79","id":"737"},{"source":"967","target":"1","id":"2651"},{"source":"1606","target":"618","id":"5864"},{"source":"304","target":"294","id":"4505"},{"source":"107","target":"53","id":"2333"},{"source":"1444","target":"214","id":"4723"},{"source":"939","target":"107","id":"2349"},{"source":"391","target":"1316","id":"3966"},{"source":"122","target":"1","id":"860"},{"source":"500","target":"1600","id":"5796"},{"source":"188","target":"192","id":"223"},{"source":"1173","target":"48","id":"3280"},{"source":"615","target":"209","id":"4336"},{"source":"1616","target":"913","id":"5945"},{"source":"1589","target":"904","id":"5711"},{"source":"859","target":"513","id":"2001"},{"source":"571","target":"570","id":"5524"},{"source":"487","target":"488","id":"810"},{"source":"735","target":"736","id":"1532"},{"source":"730","target":"634","id":"1516"},{"source":"1040","target":"1039","id":"2697"},{"source":"1468","target":"79","id":"4860"},{"source":"154","target":"152","id":"2434"},{"source":"1442","target":"79","id":"6442"},{"source":"91","target":"704","id":"5416"},{"source":"303","target":"301","id":"394"},{"source":"442","target":"446","id":"722"},{"source":"456","target":"23","id":"5813"},{"source":"1386","target":"1323","id":"4344"},{"source":"1119","target":"397","id":"6255"},{"source":"1223","target":"79","id":"3557"},{"source":"167","target":"68","id":"2335"},{"source":"239","target":"1698","id":"6450"},{"source":"1076","target":"1077","id":"3696"},{"source":"1298","target":"49","id":"3876"},{"source":"1273","target":"1275","id":"3762"},{"source":"1711","target":"150","id":"6584"},{"source":"1531","target":"662","id":"5278"},{"source":"841","target":"513","id":"2448"},{"source":"216","target":"356","id":"541"},{"source":"1206","target":"397","id":"3458"},{"source":"871","target":"287","id":"2048"},{"source":"884","target":"82","id":"2101"},{"source":"1115","target":"1114","id":"3061"},{"source":"130","target":"132","id":"143"},{"source":"1116","target":"1114","id":"5934"},{"source":"1712","target":"293","id":"6592"},{"source":"153","target":"155","id":"2231"},{"source":"1012","target":"65","id":"5571"},{"source":"434","target":"544","id":"942"},{"source":"1561","target":"433","id":"6507"},{"source":"793","target":"61","id":"2963"},{"source":"707","target":"568","id":"1631"},{"source":"1387","target":"1389","id":"4354"},{"source":"506","target":"405","id":"842"},{"source":"1406","target":"301","id":"4477"},{"source":"1001","target":"607","id":"2548"},{"source":"781","target":"65","id":"2783"},{"source":"422","target":"424","id":"695"},{"source":"254","target":"256","id":"296"},{"source":"193","target":"195","id":"221"},{"source":"276","target":"270","id":"6586"},{"source":"665","target":"667","id":"1330"},{"source":"515","target":"53","id":"1168"},{"source":"1081","target":"477","id":"2852"},{"source":"574","target":"51","id":"1060"},{"source":"271","target":"276","id":"4329"},{"source":"366","target":"104","id":"5458"},{"source":"891","target":"79","id":"2116"},{"source":"858","target":"76","id":"5060"},{"source":"1466","target":"568","id":"4838"},{"source":"748","target":"533","id":"3787"},{"source":"789","target":"632","id":"3032"},{"source":"1225","target":"33","id":"3828"},{"source":"1299","target":"1301","id":"3879"},{"source":"557","target":"76","id":"1008"},{"source":"1099","target":"79","id":"2948"},{"source":"1652","target":"109","id":"6184"},{"source":"864","target":"867","id":"2013"},{"source":"611","target":"222","id":"1173"},{"source":"219","target":"292","id":"446"},{"source":"811","target":"53","id":"1804"},{"source":"858","target":"498","id":"5061"},{"source":"1442","target":"1","id":"6443"},{"source":"270","target":"273","id":"413"},{"source":"1459","target":"49","id":"4806"},{"source":"412","target":"1025","id":"2646"},{"source":"1351","target":"171","id":"4161"},{"source":"941","target":"12","id":"6577"},{"source":"1478","target":"25","id":"4961"},{"source":"337","target":"119","id":"510"},{"source":"286","target":"648","id":"3719"},{"source":"1656","target":"246","id":"6198"},{"source":"1644","target":"1266","id":"6126"},{"source":"639","target":"106","id":"1260"},{"source":"1215","target":"596","id":"3491"},{"source":"812","target":"110","id":"5412"},{"source":"112","target":"115","id":"116"},{"source":"271","target":"270","id":"4324"},{"source":"128","target":"82","id":"138"},{"source":"873","target":"104","id":"2057"},{"source":"1019","target":"1020","id":"2614"},{"source":"1269","target":"1079","id":"3752"},{"source":"533","target":"537","id":"6086"},{"source":"723","target":"361","id":"1481"},{"source":"1182","target":"199","id":"3339"},{"source":"1540","target":"1124","id":"5307"},{"source":"1589","target":"65","id":"5709"},{"source":"1351","target":"1046","id":"4162"},{"source":"451","target":"93","id":"745"},{"source":"1131","target":"541","id":"3069"},{"source":"708","target":"707","id":"2871"},{"source":"1423","target":"1235","id":"4588"},{"source":"1623","target":"238","id":"5987"},{"source":"552","target":"50","id":"4887"},{"source":"119","target":"50","id":"3173"},{"source":"966","target":"1415","id":"5820"},{"source":"1063","target":"1","id":"4302"},{"source":"204","target":"208","id":"236"},{"source":"265","target":"264","id":"1898"},{"source":"222","target":"1","id":"248"},{"source":"802","target":"803","id":"1768"},{"source":"1013","target":"177","id":"3024"},{"source":"510","target":"53","id":"6335"},{"source":"1578","target":"53","id":"5623"},{"source":"550","target":"131","id":"965"},{"source":"60","target":"62","id":"55"},{"source":"1428","target":"847","id":"4615"},{"source":"586","target":"1","id":"1092"},{"source":"706","target":"85","id":"1429"},{"source":"246","target":"68","id":"2640"},{"source":"399","target":"400","id":"650"},{"source":"1532","target":"1533","id":"5280"},{"source":"769","target":"771","id":"1636"},{"source":"824","target":"1169","id":"3267"},{"source":"296","target":"318","id":"428"},{"source":"1391","target":"1116","id":"4370"},{"source":"1465","target":"498","id":"4835"},{"source":"549","target":"177","id":"1275"},{"source":"955","target":"49","id":"2420"},{"source":"1122","target":"1123","id":"3046"},{"source":"1468","target":"784","id":"4861"},{"source":"442","target":"447","id":"723"},{"source":"60","target":"50","id":"62"},{"source":"1122","target":"280","id":"3042"},{"source":"1313","target":"1314","id":"3952"},{"source":"105","target":"93","id":"5383"},{"source":"454","target":"287","id":"753"},{"source":"1410","target":"1556","id":"6579"},{"source":"831","target":"76","id":"2877"},{"source":"748","target":"747","id":"3785"},{"source":"1178","target":"1179","id":"3302"},{"source":"51","target":"513","id":"5580"},{"source":"1403","target":"1404","id":"4445"},{"source":"289","target":"119","id":"3721"},{"source":"1212","target":"774","id":"3479"},{"source":"62","target":"65","id":"980"},{"source":"865","target":"436","id":"2291"},{"source":"1550","target":"65","id":"5377"},{"source":"1550","target":"918","id":"5379"},{"source":"1427","target":"752","id":"4608"},{"source":"116","target":"373","id":"6511"},{"source":"214","target":"128","id":"241"},{"source":"269","target":"194","id":"336"},{"source":"306","target":"219","id":"453"},{"source":"1228","target":"5","id":"3580"},{"source":"229","target":"230","id":"260"},{"source":"337","target":"338","id":"511"},{"source":"203","target":"185","id":"738"},{"source":"884","target":"444","id":"2099"},{"source":"415","target":"979","id":"3641"},{"source":"36","target":"38","id":"439"},{"source":"1100","target":"1093","id":"2955"},{"source":"1406","target":"1357","id":"4476"},{"source":"971","target":"296","id":"2476"},{"source":"1580","target":"1292","id":"5651"},{"source":"1690","target":"1691","id":"6419"},{"source":"625","target":"79","id":"1208"},{"source":"358","target":"177","id":"549"},{"source":"1287","target":"348","id":"4620"},{"source":"1493","target":"50","id":"5055"},{"source":"1505","target":"254","id":"5112"},{"source":"1277","target":"748","id":"3794"},{"source":"314","target":"295","id":"422"},{"source":"937","target":"938","id":"2343"},{"source":"748","target":"536","id":"3791"},{"source":"1304","target":"310","id":"3903"},{"source":"407","target":"408","id":"666"},{"source":"822","target":"409","id":"6265"},{"source":"1648","target":"166","id":"6140"},{"source":"1222","target":"312","id":"3534"},{"source":"759","target":"109","id":"5776"},{"source":"840","target":"841","id":"1914"},{"source":"813","target":"96","id":"1811"},{"source":"1674","target":"68","id":"6316"},{"source":"447","target":"498","id":"1010"},{"source":"1312","target":"322","id":"3935"},{"source":"1207","target":"732","id":"3459"},{"source":"1168","target":"351","id":"3260"},{"source":"1075","target":"724","id":"3461"},{"source":"1556","target":"967","id":"5430"},{"source":"1591","target":"567","id":"5731"},{"source":"416","target":"296","id":"3663"},{"source":"308","target":"359","id":"568"},{"source":"844","target":"154","id":"1926"},{"source":"541","target":"702","id":"2743"},{"source":"737","target":"738","id":"1533"},{"source":"789","target":"409","id":"3036"},{"source":"460","target":"65","id":"1165"},{"source":"273","target":"271","id":"5567"},{"source":"597","target":"114","id":"1142"},{"source":"682","target":"641","id":"6169"},{"source":"290","target":"62","id":"1851"},{"source":"1423","target":"1425","id":"4587"},{"source":"716","target":"710","id":"1450"},{"source":"1509","target":"182","id":"5196"},{"source":"1041","target":"65","id":"2707"},{"source":"218","target":"219","id":"246"},{"source":"1141","target":"281","id":"3092"},{"source":"452","target":"93","id":"2278"},{"source":"1689","target":"675","id":"6409"},{"source":"1667","target":"215","id":"6276"},{"source":"1514","target":"1515","id":"5220"},{"source":"760","target":"576","id":"1611"},{"source":"1470","target":"53","id":"4900"},{"source":"905","target":"79","id":"2218"},{"source":"332","target":"149","id":"4387"},{"source":"527","target":"523","id":"3546"},{"source":"838","target":"259","id":"2453"},{"source":"1285","target":"513","id":"3817"},{"source":"63","target":"61","id":"992"},{"source":"848","target":"211","id":"1945"},{"source":"1191","target":"1192","id":"3401"},{"source":"822","target":"798","id":"6267"},{"source":"880","target":"576","id":"2083"},{"source":"672","target":"64","id":"5404"},{"source":"812","target":"111","id":"5414"},{"source":"993","target":"996","id":"4528"},{"source":"781","target":"924","id":"2786"},{"source":"1359","target":"259","id":"4194"},{"source":"1470","target":"287","id":"4903"},{"source":"300","target":"177","id":"3010"},{"source":"1405","target":"626","id":"4455"},{"source":"629","target":"324","id":"2681"},{"source":"1346","target":"246","id":"4124"},{"source":"1706","target":"495","id":"6525"},{"source":"1657","target":"287","id":"6204"},{"source":"1435","target":"175","id":"4699"},{"source":"417","target":"297","id":"4465"},{"source":"1172","target":"431","id":"3274"},{"source":"756","target":"607","id":"1602"},{"source":"1256","target":"82","id":"3655"},{"source":"1280","target":"833","id":"3800"},{"source":"973","target":"974","id":"2478"},{"source":"1477","target":"1","id":"4936"},{"source":"875","target":"858","id":"2062"},{"source":"1672","target":"1295","id":"6297"},{"source":"694","target":"281","id":"1402"},{"source":"190","target":"191","id":"2528"},{"source":"495","target":"1706","id":"6522"},{"source":"345","target":"347","id":"526"},{"source":"1293","target":"513","id":"3845"},{"source":"582","target":"576","id":"4713"},{"source":"365","target":"438","id":"1338"},{"source":"1124","target":"1272","id":"4845"},{"source":"1416","target":"325","id":"4550"},{"source":"1052","target":"491","id":"2770"},{"source":"339","target":"1056","id":"4204"},{"source":"1348","target":"161","id":"4138"},{"source":"13","target":"1","id":"15"},{"source":"352","target":"355","id":"538"},{"source":"70","target":"72","id":"2491"},{"source":"826","target":"312","id":"5361"},{"source":"1499","target":"174","id":"5091"},{"source":"806","target":"600","id":"6056"},{"source":"1156","target":"216","id":"3157"},{"source":"753","target":"638","id":"5129"},{"source":"394","target":"216","id":"4927"},{"source":"1366","target":"1367","id":"4249"},{"source":"1352","target":"453","id":"4164"},{"source":"1632","target":"281","id":"6049"},{"source":"424","target":"656","id":"4941"},{"source":"1649","target":"82","id":"6149"},{"source":"303","target":"296","id":"389"},{"source":"624","target":"897","id":"2146"},{"source":"581","target":"498","id":"4182"},{"source":"755","target":"312","id":"1595"},{"source":"1412","target":"1404","id":"4525"},{"source":"553","target":"64","id":"986"},{"source":"50","target":"104","id":"5473"},{"source":"12","target":"1","id":"4388"},{"source":"400","target":"137","id":"2390"},{"source":"1102","target":"79","id":"3498"},{"source":"1199","target":"1200","id":"3440"},{"source":"640","target":"161","id":"5320"},{"source":"1446","target":"976","id":"4731"},{"source":"269","target":"270","id":"332"},{"source":"35","target":"40","id":"417"},{"source":"654","target":"606","id":"3420"},{"source":"579","target":"82","id":"6002"},{"source":"269","target":"40","id":"337"},{"source":"672","target":"65","id":"5405"},{"source":"895","target":"53","id":"2136"},{"source":"1667","target":"76","id":"6273"},{"source":"865","target":"287","id":"2293"},{"source":"329","target":"310","id":"3239"},{"source":"1015","target":"736","id":"3681"},{"source":"1497","target":"76","id":"5082"},{"source":"712","target":"85","id":"2035"},{"source":"1058","target":"1059","id":"2780"},{"source":"914","target":"109","id":"2251"},{"source":"1435","target":"437","id":"4701"},{"source":"441","target":"713","id":"4379"},{"source":"405","target":"49","id":"2934"},{"source":"946","target":"947","id":"2379"},{"source":"516","target":"323","id":"892"},{"source":"892","target":"79","id":"5141"},{"source":"1684","target":"886","id":"6388"},{"source":"1035","target":"206","id":"2685"},{"source":"1520","target":"1521","id":"5248"},{"source":"1397","target":"710","id":"4409"},{"source":"965","target":"95","id":"2441"},{"source":"369","target":"370","id":"577"},{"source":"1591","target":"131","id":"5727"},{"source":"955","target":"280","id":"2422"},{"source":"979","target":"1028","id":"2655"},{"source":"1704","target":"313","id":"6528"},{"source":"1305","target":"182","id":"4577"},{"source":"1360","target":"408","id":"6656"},{"source":"99","target":"141","id":"160"},{"source":"178","target":"300","id":"1245"},{"source":"424","target":"1","id":"4940"},{"source":"465","target":"79","id":"951"},{"source":"914","target":"253","id":"2243"},{"source":"1271","target":"484","id":"3756"},{"source":"248","target":"53","id":"5348"},{"source":"1119","target":"50","id":"6259"},{"source":"975","target":"938","id":"2488"},{"source":"1391","target":"1114","id":"4367"},{"source":"953","target":"952","id":"2413"},{"source":"364","target":"49","id":"584"},{"source":"1431","target":"1395","id":"4671"},{"source":"1529","target":"33","id":"5272"},{"source":"1536","target":"53","id":"5284"},{"source":"1664","target":"470","id":"6250"},{"source":"1703","target":"79","id":"6492"},{"source":"354","target":"166","id":"1146"},{"source":"688","target":"693","id":"1657"},{"source":"1291","target":"585","id":"5642"},{"source":"484","target":"334","id":"5592"},{"source":"358","target":"362","id":"552"},{"source":"1639","target":"1379","id":"6092"},{"source":"1074","target":"1078","id":"2843"},{"source":"1576","target":"1319","id":"5611"}],"nodes":[{"label":"Sciences De La Terre","x":1412.2230224609375,"y":-2.055976390838623,"id":"262","color":"rgb(255,204,102)","size":8.540210723876953},{"label":"Champ","x":-933.5524291992188,"y":239.07545471191406,"id":"586","color":"rgb(255,51,51)","size":4.0},{"label":"Chaîne Trophique","x":1256.1710205078125,"y":-1671.3907470703125,"id":"580","color":"rgb(153,255,0)","size":4.936610698699951},{"label":"Kilometre Carre","x":173.3579559326172,"y":-567.8416137695312,"id":"1015","color":"rgb(102,255,102)","size":5.103478908538818},{"label":"Catastrophe Naturelle","x":1467.9786376953125,"y":-1406.437744140625,"id":"25","color":"rgb(102,102,0)","size":5.6738481521606445},{"label":"Planet In Peril","x":-675.910400390625,"y":744.3154296875,"id":"1491","color":"rgb(102,255,102)","size":4.0086140632629395},{"label":"Glacial Period","x":-271.1141662597656,"y":1832.915283203125,"id":"1098","color":"rgb(153,255,255)","size":4.293514728546143},{"label":"Gaz Parfait","x":2628.283447265625,"y":-645.1771240234375,"id":"541","color":"rgb(255,255,51)","size":5.103478908538818},{"label":"Sable Bitumineux","x":-52.610496520996094,"y":-1401.718994140625,"id":"1327","color":"rgb(0,153,0)","size":4.6399359703063965},{"label":"Anwr Drilling","x":-2627.632080078125,"y":915.7081298828125,"id":"274","color":"rgb(102,0,102)","size":4.936610698699951},{"label":"Science Center","x":785.2101440429688,"y":399.9143371582031,"id":"1323","color":"rgb(255,255,51)","size":4.075808525085449},{"label":"Polycristal","x":2375.138671875,"y":-291.7706298828125,"id":"1520","color":"rgb(255,255,51)","size":4.075808525085449},{"label":"Droit","x":-345.1713562011719,"y":-1826.0067138671875,"id":"842","color":"rgb(153,0,0)","size":4.0},{"label":"Mammifères Marins","x":-273.3992614746094,"y":-1182.143798828125,"id":"1318","color":"rgb(153,255,0)","size":4.075808525085449},{"label":"Energie Marine","x":761.4014892578125,"y":-970.1514892578125,"id":"726","color":"rgb(0,153,0)","size":4.293514728546143},{"label":"Vent Geostrophique","x":1671.5755615234375,"y":-254.51400756835938,"id":"1561","color":"rgb(255,255,51)","size":4.075808525085449},{"label":"Organisme Vivant","x":1507.45263671875,"y":-1434.38671875,"id":"582","color":"rgb(255,255,51)","size":4.293514728546143},{"label":"Polluant Secondaire","x":1457.781982421875,"y":-1268.886474609375,"id":"1513","color":"rgb(102,102,0)","size":4.293514728546143},{"label":"Limite Des 200 Miles Marins","x":-33.31745529174805,"y":-699.0526123046875,"id":"1294","color":"rgb(255,51,51)","size":4.206028938293457},{"label":"Pollution Prevention","x":-1377.6392822265625,"y":713.9226684570312,"id":"1518","color":"rgb(102,102,0)","size":4.075808525085449},{"label":"Satellite Orbit","x":231.1543426513672,"y":2578.50390625,"id":"1130","color":"rgb(255,153,153)","size":4.293514728546143},{"label":"Oil Field","x":-2092.7724609375,"y":969.78466796875,"id":"450","color":"rgb(102,0,102)","size":4.206028938293457},{"label":"Océan Arctique","x":28.159622192382812,"y":-147.4086151123047,"id":"48","color":"rgb(0,204,204)","size":32.935298919677734},{"label":"Mesures Conservatoires Et Compensatoires","x":201.2974395751953,"y":-654.922607421875,"id":"1346","color":"rgb(102,255,102)","size":4.075808525085449},{"label":"Oiseau Marin","x":-78.5789566040039,"y":-1023.541015625,"id":"983","color":"rgb(153,255,0)","size":4.936610698699951},{"label":"Banquise Permanente","x":46.569725036621094,"y":10.34594440460205,"id":"410","color":"rgb(153,255,255)","size":4.6399359703063965},{"label":"Installations Classées","x":1222.58544921875,"y":-2058.860107421875,"id":"948","color":"rgb(153,0,0)","size":4.075808525085449},{"label":"Acide Éthanoïque","x":2378.265625,"y":-1083.8045654296875,"id":"90","color":"rgb(255,204,102)","size":4.075808525085449},{"label":"Situation Anticyclonique","x":1643.440185546875,"y":-1384.404052734375,"id":"1633","color":"rgb(255,255,51)","size":4.206028938293457},{"label":"Judd Gregg","x":-1378.9903564453125,"y":1433.5750732421875,"id":"1463","color":"rgb(0,204,204)","size":4.0},{"label":"Pole Airship","x":213.51223754882812,"y":28.755355834960938,"id":"398","color":"rgb(153,255,255)","size":4.781970500946045},{"label":"Estuaires","x":917.8259887695312,"y":-1474.0455322265625,"id":"943","color":"rgb(153,255,0)","size":4.075808525085449},{"label":"Norwegian Oil","x":-2236.421142578125,"y":960.3920288085938,"id":"1404","color":"rgb(102,0,102)","size":4.510906219482422},{"label":"Yukon River","x":-1329.87548828125,"y":869.7622680664062,"id":"1717","color":"rgb(153,0,0)","size":4.206028938293457},{"label":"Technologie Gmbh","x":1799.05419921875,"y":-276.313232421875,"id":"1666","color":"rgb(255,255,51)","size":4.0},{"label":"Air Quality","x":-1209.4488525390625,"y":1061.2088623046875,"id":"162","color":"rgb(102,255,102)","size":4.293514728546143},{"label":"Nord Géographique","x":456.9866027832031,"y":508.9895935058594,"id":"47","color":"rgb(153,255,255)","size":6.584775924682617},{"label":"Gaz Parfaits","x":2766.4443359375,"y":-772.1646728515625,"id":"1048","color":"rgb(255,255,51)","size":4.293514728546143},{"label":"Glaciers Of Iceland","x":-1106.13330078125,"y":1600.585693359375,"id":"1103","color":"rgb(0,204,204)","size":4.0340681076049805},{"label":"Equivalent Co2","x":350.8734436035156,"y":-349.5634765625,"id":"452","color":"rgb(153,255,255)","size":4.39528751373291},{"label":"Fonds Côtiers","x":408.5318603515625,"y":-1242.9537353515625,"id":"1004","color":"rgb(0,153,0)","size":4.39528751373291},{"label":"Groupe Pétrolier","x":-405.83056640625,"y":-1606.5108642578125,"id":"606","color":"rgb(102,0,102)","size":5.103478908538818},{"label":"Arctic National Wildlife Refuge","x":-2764.014404296875,"y":976.0181884765625,"id":"35","color":"rgb(153,255,0)","size":4.293514728546143},{"label":"Port Ouest","x":-511.3980407714844,"y":-1958.8724365234375,"id":"1524","color":"rgb(153,0,0)","size":4.0086140632629395},{"label":"Gaz Carbonique","x":1104.385498046875,"y":-792.3753051757812,"id":"67","color":"rgb(102,255,102)","size":9.501245498657227},{"label":"Ice Records","x":-147.54861450195312,"y":1719.7235107421875,"id":"329","color":"rgb(153,255,255)","size":4.39528751373291},{"label":"Chauffage Solaire","x":1274.2322998046875,"y":-937.2332763671875,"id":"597","color":"rgb(255,255,51)","size":4.510906219482422},{"label":"Bouclier Canadien","x":309.83795166015625,"y":-842.7721557617188,"id":"496","color":"rgb(102,255,102)","size":4.133297443389893},{"label":"Aperture Radar","x":411.4226379394531,"y":864.9448852539062,"id":"810","color":"rgb(153,255,255)","size":4.0086140632629395},{"label":"Hydrate De Méthane","x":503.4374694824219,"y":-844.715576171875,"id":"1161","color":"rgb(0,153,0)","size":4.6399359703063965},{"label":"Sibérie","x":-367.50750732421875,"y":-766.07080078125,"id":"1632","color":"rgb(255,51,51)","size":4.39528751373291},{"label":"Refuge To Oil","x":-2698.738037109375,"y":874.7493286132812,"id":"273","color":"rgb(102,0,102)","size":4.781970500946045},{"label":"Ressources Vivantes","x":774.3036499023438,"y":-1410.3544921875,"id":"1594","color":"rgb(153,255,0)","size":4.39528751373291},{"label":"Unique Plateau Continental","x":-320.9755859375,"y":-1846.307861328125,"id":"1697","color":"rgb(153,0,0)","size":4.0},{"label":"Oil Companies","x":-2245.361328125,"y":813.8052978515625,"id":"272","color":"rgb(102,0,102)","size":6.584775924682617},{"label":"Crépuscule Nautique","x":1977.38623046875,"y":-1353.287353515625,"id":"737","color":"rgb(255,255,51)","size":4.0},{"label":"Ice News","x":42.22573471069336,"y":1851.931884765625,"id":"1422","color":"rgb(153,255,255)","size":4.0},{"label":"Admiral Scheer","x":-1439.79736328125,"y":2020.9342041015625,"id":"419","color":"rgb(0,204,204)","size":4.0},{"label":"Ligne De Champ","x":446.68719482421875,"y":556.0613403320312,"id":"1293","color":"rgb(153,255,255)","size":4.206028938293457},{"label":"Systeme Meteo","x":2142.0986328125,"y":-530.1538696289062,"id":"1541","color":"rgb(255,204,102)","size":4.0},{"label":"Identité Collective","x":957.6539306640625,"y":-1371.41162109375,"id":"1169","color":"rgb(255,255,51)","size":4.075808525085449},{"label":"Highest Mountain","x":-1436.0623779296875,"y":2075.27001953125,"id":"57","color":"rgb(0,204,204)","size":4.075808525085449},{"label":"Acidification Des Océans","x":949.3548583984375,"y":-771.9315185546875,"id":"92","color":"rgb(255,204,102)","size":4.510906219482422},{"label":"Cape Dorset","x":-1116.916748046875,"y":1553.179931640625,"id":"525","color":"rgb(0,204,204)","size":4.39528751373291},{"label":"Quantités D\u0027Eau,1","x":561.6199951171875,"y":-1561.1962890625,"id":"1555","attributes":{"nodedef":"n1555"},"color":"rgb(153,255,0)","size":4.133297443389893},{"label":"Wally Herbert","x":-971.27978515625,"y":1483.9224853515625,"id":"1709","color":"rgb(0,204,204)","size":4.6399359703063965},{"label":"Aleutian Island","x":-599.6304931640625,"y":307.56365966796875,"id":"198","color":"rgb(0,204,204)","size":4.133297443389893},{"label":"Science De La Nature","x":1429.4813232421875,"y":-375.6391906738281,"id":"261","color":"rgb(255,255,51)","size":4.293514728546143},{"label":"King Haakon","x":-664.6025390625,"y":2235.445556640625,"id":"1030","color":"rgb(0,204,204)","size":4.0},{"label":"Oao Gazprom","x":-2060.773681640625,"y":549.4484252929688,"id":"1053","color":"rgb(102,0,102)","size":4.206028938293457},{"label":"Calotte Glaciaire","x":591.7031860351562,"y":-123.89764404296875,"id":"61","color":"rgb(153,255,255)","size":19.1311092376709},{"label":"Rétroaction Positive","x":987.7084350585938,"y":-480.2536315917969,"id":"52","color":"rgb(255,255,51)","size":4.6399359703063965},{"label":"Parc National","x":-282.4018249511719,"y":-606.8483276367188,"id":"170","color":"rgb(153,255,0)","size":8.235326766967773},{"label":"Lynx","x":-1016.044921875,"y":2644.493896484375,"id":"1310","color":"rgb(0,204,204)","size":4.0},{"label":"Nanisivik Mine","x":-1148.0731201171875,"y":1985.365234375,"id":"1378","color":"rgb(0,204,204)","size":4.0086140632629395},{"label":"Courants Marins Chauds","x":341.8601379394531,"y":-261.7185974121094,"id":"727","color":"rgb(153,255,255)","size":4.510906219482422},{"label":"Discover North","x":-1485.690673828125,"y":1784.274658203125,"id":"818","color":"rgb(0,204,204)","size":4.0340681076049805},{"label":"Sous-Marins","x":-590.5049438476562,"y":-1314.688720703125,"id":"1645","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Science \u0026 Vie","x":1182.782958984375,"y":280.2792053222656,"id":"1111","color":"rgb(255,255,51)","size":4.0340681076049805},{"label":"Genetic Resources","x":783.1207885742188,"y":-1739.42529296875,"id":"1538","color":"rgb(153,255,0)","size":4.0},{"label":"Fjords Tours","x":-1812.889892578125,"y":1720.9605712890625,"id":"997","color":"rgb(0,204,204)","size":4.0340681076049805},{"label":"Satellite Image","x":301.9154357910156,"y":2138.177978515625,"id":"1083","color":"rgb(255,153,153)","size":4.781970500946045},{"label":"Grand Nord","x":-362.91522216796875,"y":-256.2770080566406,"id":"281","color":"rgb(0,204,204)","size":18.676555633544922},{"label":"Yves Delorme","x":-3590.7666015625,"y":-1715.421875,"id":"1682","color":"rgb(51,153,255)","size":4.0},{"label":"Russie Unie","x":-901.9271850585938,"y":-1313.946533203125,"id":"825","color":"rgb(255,51,51)","size":4.133297443389893},{"label":"Gaz Naturel","x":29.68891716003418,"y":-1422.890625,"id":"567","color":"rgb(0,153,0)","size":13.54262924194336},{"label":"Intérêts Économiques","x":136.60568237304688,"y":-1761.73779296875,"id":"1214","color":"rgb(153,0,0)","size":4.133297443389893},{"label":"Île Aux Ours","x":-216.5255584716797,"y":-281.82208251953125,"id":"1173","color":"rgb(153,255,0)","size":4.39528751373291},{"label":"Russian Mig","x":-3845.65625,"y":-1035.047607421875,"id":"1602","color":"rgb(255,51,51)","size":4.0},{"label":"Physique Des Particules","x":1444.818359375,"y":-100.17031860351562,"id":"1003","color":"rgb(255,255,51)","size":4.293514728546143},{"label":"Loup Arctique","x":-200.24407958984375,"y":-220.78904724121094,"id":"483","color":"rgb(153,255,0)","size":4.781970500946045},{"label":"1831","x":-1042.585693359375,"y":278.2547302246094,"id":"0","color":"rgb(255,51,51)","size":4.0},{"label":"Carbon Dioxide","x":-509.6867370605469,"y":1153.4713134765625,"id":"177","color":"rgb(102,255,102)","size":14.764718055725098},{"label":"Sheila Watt","x":-922.7695922851562,"y":1962.31884765625,"id":"619","color":"rgb(0,204,204)","size":4.510906219482422},{"label":"Agriculture Durable","x":891.6155395507812,"y":-1680.5008544921875,"id":"156","color":"rgb(153,255,0)","size":4.293514728546143},{"label":"Agence Spatiale","x":938.8359985351562,"y":420.05511474609375,"id":"133","color":"rgb(255,153,153)","size":5.472443103790283},{"label":"Wildlife Fund","x":-428.5501403808594,"y":976.4503173828125,"id":"1711","color":"rgb(153,255,0)","size":4.0340681076049805},{"label":"Bilan Carbone","x":755.95556640625,"y":-1098.6580810546875,"id":"451","color":"rgb(102,255,102)","size":5.472443103790283},{"label":"Planetary Orbit","x":-131.3832550048828,"y":2532.2919921875,"id":"1476","color":"rgb(255,153,153)","size":4.0086140632629395},{"label":"Reserve Petroliere","x":-578.7444458007812,"y":-1032.4029541015625,"id":"1008","color":"rgb(102,0,102)","size":4.293514728546143},{"label":"Commission Européenne","x":401.4253845214844,"y":-1512.4029541015625,"id":"84","color":"rgb(255,51,51)","size":5.472443103790283},{"label":"Institut Camille Jordan","x":1339.658447265625,"y":381.1823425292969,"id":"1566","color":"rgb(255,255,51)","size":4.0},{"label":"Passage International","x":-1377.7752685546875,"y":155.49526977539062,"id":"1460","color":"rgb(255,51,51)","size":4.0},{"label":"Institutes Of Technology","x":1001.623779296875,"y":1100.98046875,"id":"777","color":"rgb(255,153,153)","size":4.075808525085449},{"label":"Générations Futures","x":451.8046875,"y":-1203.6495361328125,"id":"781","color":"rgb(102,255,102)","size":5.103478908538818},{"label":"Nunavik","x":-1306.2196044921875,"y":2811.482666015625,"id":"1423","color":"rgb(0,204,204)","size":4.206028938293457},{"label":"Coopération Internationale","x":115.85001373291016,"y":-1025.172119140625,"id":"722","color":"rgb(102,255,102)","size":4.206028938293457},{"label":"Bulles De Gaz Emprisonnées","x":1125.7774658203125,"y":-525.71630859375,"id":"509","color":"rgb(255,204,102)","size":4.39528751373291},{"label":"Universite De Montreal","x":1673.3009033203125,"y":47.932456970214844,"id":"1698","color":"rgb(255,255,51)","size":4.0086140632629395},{"label":"Cambridge Bay","x":-1225.4501953125,"y":1317.5401611328125,"id":"516","color":"rgb(0,204,204)","size":4.075808525085449},{"label":"Circumpolar Conference","x":-1056.1627197265625,"y":2054.598388671875,"id":"617","color":"rgb(0,204,204)","size":4.39528751373291},{"label":"Lacs Sous-Glaciaires","x":758.4376220703125,"y":347.21270751953125,"id":"1269","color":"rgb(153,255,255)","size":4.510906219482422},{"label":"Bilan Environnemental","x":824.1160888671875,"y":-1392.2030029296875,"id":"252","color":"rgb(102,255,102)","size":4.510906219482422},{"label":"Durablement Pollué","x":748.7852783203125,"y":-2095.647216796875,"id":"845","color":"rgb(102,102,0)","size":4.075808525085449},{"label":"Écosystèmes","x":600.8551635742188,"y":-1271.76513671875,"id":"881","color":"rgb(153,255,0)","size":4.510906219482422},{"label":"Metre Cube","x":177.89779663085938,"y":-1657.566162109375,"id":"428","color":"rgb(102,0,102)","size":4.781970500946045},{"label":"Global Surveyor","x":1119.8714599609375,"y":647.7386474609375,"id":"863","color":"rgb(255,153,153)","size":4.075808525085449},{"label":"Archives Du Climat","x":939.9533081054688,"y":-416.38031005859375,"id":"288","color":"rgb(255,255,51)","size":4.39528751373291},{"label":"Protection De La Nature","x":646.8939819335938,"y":-1496.78466796875,"id":"458","color":"rgb(153,255,0)","size":4.936610698699951},{"label":"Europe Du Nord","x":-820.3291015625,"y":-818.375732421875,"id":"388","color":"rgb(255,51,51)","size":4.936610698699951},{"label":"Plan De Prévention Des Risques","x":1789.16943359375,"y":-1745.5433349609375,"id":"30","color":"rgb(102,102,0)","size":4.293514728546143},{"label":"Détroit De Nares","x":69.19367980957031,"y":211.30694580078125,"id":"809","color":"rgb(0,204,204)","size":4.206028938293457},{"label":"Bateau De Pêche","x":410.1282653808594,"y":-1891.766845703125,"id":"439","color":"rgb(153,0,0)","size":4.39528751373291},{"label":"Developpement Humain","x":235.37948608398438,"y":-1622.2196044921875,"id":"813","color":"rgb(255,51,51)","size":4.075808525085449},{"label":"Perte De Glace","x":430.07354736328125,"y":-328.2873229980469,"id":"1471","color":"rgb(153,255,255)","size":4.6399359703063965},{"label":"Magnetic Field","x":-23.518125534057617,"y":1376.1861572265625,"id":"372","color":"rgb(255,255,51)","size":4.206028938293457},{"label":"Coûts Supplémentaires","x":713.3629150390625,"y":-1702.53173828125,"id":"734","color":"rgb(153,0,0)","size":4.0086140632629395},{"label":"Régions Polaires","x":291.6045227050781,"y":183.0286865234375,"id":"1575","color":"rgb(153,255,255)","size":4.206028938293457},{"label":"Condensat De Bose-Einstein","x":1717.8370361328125,"y":83.28048706054688,"id":"673","color":"rgb(255,255,51)","size":4.133297443389893},{"label":"Commission Océanographique Intergouvernementale","x":443.1557922363281,"y":-590.3914184570312,"id":"651","color":"rgb(102,255,102)","size":4.133297443389893},{"label":"American Geophysical","x":13.97448444366455,"y":896.5333862304688,"id":"223","color":"rgb(153,255,255)","size":4.510906219482422},{"label":"Richard Weber","x":-271.6991882324219,"y":1477.3450927734375,"id":"500","color":"rgb(153,255,255)","size":4.293514728546143},{"label":"Degree Fahrenheit","x":792.5369262695312,"y":2364.6083984375,"id":"74","color":"rgb(255,255,51)","size":4.39528751373291},{"label":"Earth System","x":-33.12626266479492,"y":1281.72265625,"id":"361","color":"rgb(255,255,51)","size":5.282204627990723},{"label":"Arctique Canadien","x":-34.037384033203125,"y":-42.725345611572266,"id":"279","color":"rgb(0,204,204)","size":10.882965087890625},{"label":"Déchets","x":591.4802856445312,"y":-2255.109375,"id":"773","color":"rgb(102,102,0)","size":4.293514728546143},{"label":"Yukon Quest","x":-1212.327392578125,"y":21.756004333496094,"id":"1142","color":"rgb(153,0,0)","size":4.133297443389893},{"label":"Constante Des Gaz Parfaits","x":2765.376220703125,"y":-746.6752319335938,"id":"701","color":"rgb(255,255,51)","size":4.510906219482422},{"label":"Absolute Zero","x":1101.5811767578125,"y":2339.88916015625,"id":"69","color":"rgb(255,255,51)","size":4.39528751373291},{"label":"Grand Port","x":-558.8419799804688,"y":-1775.0401611328125,"id":"1123","color":"rgb(153,0,0)","size":4.293514728546143},{"label":"Voyages Et Aventures Du Capitaine Hatteras","x":223.48948669433594,"y":467.0993347167969,"id":"1708","color":"rgb(0,204,204)","size":4.0086140632629395},{"label":"Midnight Sun","x":-1395.9552001953125,"y":2051.304931640625,"id":"297","color":"rgb(0,204,204)","size":4.293514728546143},{"label":"Mer D\u0027Okhotsk,1","x":-401.33245849609375,"y":-1031.172607421875,"id":"1343","attributes":{"nodedef":"n1343"},"color":"rgb(255,51,51)","size":4.293514728546143},{"label":"Lost Planet","x":1539.6019287109375,"y":-854.0687866210938,"id":"678","color":"rgb(255,204,102)","size":4.0},{"label":"Dérèglements Climatiques","x":1019.9054565429688,"y":-1099.6612548828125,"id":"794","color":"rgb(102,255,102)","size":4.293514728546143},{"label":"Reseau Trophique","x":1108.49365234375,"y":-1649.361083984375,"id":"578","color":"rgb(153,255,0)","size":4.936610698699951},{"label":"Communaute Scientifique","x":1391.388427734375,"y":-517.110595703125,"id":"258","color":"rgb(255,204,102)","size":4.510906219482422},{"label":"Longue Distance","x":-1891.9310302734375,"y":-955.7990112304688,"id":"981","color":"rgb(204,204,255)","size":4.0340681076049805},{"label":"Igloos","x":-1043.2408447265625,"y":2237.484130859375,"id":"1170","color":"rgb(204,204,255)","size":4.0340681076049805},{"label":"Navigation Company","x":245.43983459472656,"y":3486.531005859375,"id":"1392","color":"rgb(255,255,51)","size":4.0},{"label":"Helge Sander","x":-371.4839172363281,"y":2118.072265625,"id":"343","color":"rgb(0,204,204)","size":4.0},{"label":"Station Météorologique","x":1818.5457763671875,"y":-736.021240234375,"id":"682","color":"rgb(255,204,102)","size":4.206028938293457},{"label":"Croisiere Arctique","x":-612.6448364257812,"y":42.875667572021484,"id":"741","color":"rgb(0,204,204)","size":4.293514728546143},{"label":"Territoire Arctique Canadien","x":-549.2730712890625,"y":-191.093994140625,"id":"1676","color":"rgb(0,204,204)","size":4.0},{"label":"Geophysique Appliquee","x":1942.337890625,"y":539.9500732421875,"id":"1073","color":"rgb(255,255,51)","size":4.206028938293457},{"label":"Richesses Maritimes","x":291.574951171875,"y":-1910.2333984375,"id":"1601","color":"rgb(153,0,0)","size":4.206028938293457},{"label":"Plante Aquatique","x":1285.7686767578125,"y":-1453.8092041015625,"id":"858","color":"rgb(153,255,0)","size":4.781970500946045},{"label":"Network Of Centres Of Excellence","x":-875.6000366210938,"y":1464.3062744140625,"id":"332","color":"rgb(0,204,204)","size":4.075808525085449},{"label":"International Arctic","x":-707.1710205078125,"y":1718.787353515625,"id":"315","color":"rgb(153,255,255)","size":4.781970500946045},{"label":"Bay Alaska","x":-2304.918701171875,"y":1538.0584716796875,"id":"448","color":"rgb(0,204,204)","size":4.075808525085449},{"label":"Combustible Fossile","x":815.3712768554688,"y":-1225.1680908203125,"id":"118","color":"rgb(0,153,0)","size":8.852968215942383},{"label":"Ferdinand De Lesseps","x":-239.18646240234375,"y":-2538.10498046875,"id":"530","color":"rgb(204,0,0)","size":4.0086140632629395},{"label":"Pingos","x":-436.329345703125,"y":1763.2047119140625,"id":"1487","color":"rgb(153,255,255)","size":4.075808525085449},{"label":"South Iceland","x":-1511.5205078125,"y":1666.0196533203125,"id":"1646","color":"rgb(0,204,204)","size":4.0340681076049805},{"label":"Fisheries Research","x":-505.2409362792969,"y":896.1464233398438,"id":"488","color":"rgb(102,255,102)","size":4.0340681076049805},{"label":"Gaz De France","x":-273.7169189453125,"y":-1318.034423828125,"id":"1042","color":"rgb(102,0,102)","size":4.6399359703063965},{"label":"European Energy","x":-1345.869384765625,"y":931.9912719726562,"id":"950","color":"rgb(0,153,0)","size":4.0340681076049805},{"label":"Energie Nucléaire","x":263.9258117675781,"y":-1404.858154296875,"id":"569","color":"rgb(0,153,0)","size":5.282204627990723},{"label":"Navire De Pêche","x":111.64442443847656,"y":-1903.831787109375,"id":"441","color":"rgb(153,0,0)","size":4.6399359703063965},{"label":"Union Internationale","x":569.4212036132812,"y":-953.427490234375,"id":"698","color":"rgb(102,255,102)","size":4.39528751373291},{"label":"Air Humide","x":1812.0146484375,"y":-450.9634094238281,"id":"160","color":"rgb(255,204,102)","size":4.206028938293457},{"label":"Space Agency","x":827.9591064453125,"y":867.1500854492188,"id":"140","color":"rgb(255,153,153)","size":4.0086140632629395},{"label":"Recherche","x":1645.1668701171875,"y":-853.490478515625,"id":"1562","color":"rgb(255,204,102)","size":4.075808525085449},{"label":"Circum-Arctic Resource Appraisal","x":-1417.8199462890625,"y":1346.6717529296875,"id":"612","color":"rgb(0,204,204)","size":4.206028938293457},{"label":"Voyage Au Cap","x":-850.92626953125,"y":-287.2585144042969,"id":"534","color":"rgb(153,0,0)","size":4.0086140632629395},{"label":"National Weather","x":49.27556228637695,"y":2100.6494140625,"id":"367","color":"rgb(255,255,51)","size":4.781970500946045},{"label":"National Oceanic","x":155.75376892089844,"y":1900.197998046875,"id":"309","color":"rgb(255,255,51)","size":4.510906219482422},{"label":"Fonte Annuelle","x":364.8657531738281,"y":-123.84783935546875,"id":"1011","color":"rgb(153,255,255)","size":4.39528751373291},{"label":"Indigènes Inuit","x":225.49862670898438,"y":-419.7015686035156,"id":"1194","color":"rgb(204,204,255)","size":4.510906219482422},{"label":"Fusee Ariane","x":944.4932861328125,"y":925.226318359375,"id":"572","color":"rgb(255,153,153)","size":4.0340681076049805},{"label":"Commission For Refugees","x":-626.1370239257812,"y":2209.29736328125,"id":"1028","color":"rgb(0,204,204)","size":4.0},{"label":"Mayen Islands","x":-1624.634521484375,"y":2166.725830078125,"id":"1239","color":"rgb(0,204,204)","size":4.0},{"label":"Maree Noire","x":-99.39531707763672,"y":-1763.42578125,"id":"1164","color":"rgb(102,0,102)","size":4.133297443389893},{"label":"Condensats","x":1507.54150390625,"y":-204.82220458984375,"id":"676","color":"rgb(255,255,51)","size":4.075808525085449},{"label":"Physical Oceanography","x":402.76641845703125,"y":1244.8629150390625,"id":"1482","color":"rgb(255,204,102)","size":4.0},{"label":"Nunavut","x":-1353.854248046875,"y":1785.6558837890625,"id":"1426","color":"rgb(0,204,204)","size":4.133297443389893},{"label":"Intérêt Stratégique","x":364.9102783203125,"y":-1361.624755859375,"id":"1211","color":"rgb(255,51,51)","size":4.075808525085449},{"label":"Solstices","x":-400.19305419921875,"y":2067.84814453125,"id":"1642","color":"rgb(0,204,204)","size":4.0},{"label":"Environnement Canada","x":1323.092041015625,"y":-917.3856201171875,"id":"106","color":"rgb(102,255,102)","size":4.206028938293457},{"label":"Convention Des Nations","x":-272.1719970703125,"y":-1238.3597412109375,"id":"715","color":"rgb(255,51,51)","size":4.781970500946045},{"label":"Securite Alimentaire","x":379.0228576660156,"y":-1565.291259765625,"id":"579","color":"rgb(153,255,0)","size":4.206028938293457},{"label":"Filet De Pêche","x":292.838623046875,"y":-1705.7376708984375,"id":"982","color":"rgb(153,0,0)","size":4.075808525085449},{"label":"Sami Language","x":-1942.499267578125,"y":2512.8349609375,"id":"1248","color":"rgb(204,204,255)","size":5.282204627990723},{"label":"Une Vérité Qui Dérange","x":269.528076171875,"y":-395.56805419921875,"id":"1696","color":"rgb(102,255,102)","size":4.206028938293457},{"label":"Niveau Trophique","x":1112.0208740234375,"y":-1626.6505126953125,"id":"577","color":"rgb(153,255,0)","size":4.936610698699951},{"label":"August Peterman","x":47.598548889160156,"y":969.8030395507812,"id":"369","color":"rgb(153,255,255)","size":4.206028938293457},{"label":"Recherche Fondamentale","x":1382.326416015625,"y":-1028.606689453125,"id":"1567","color":"rgb(255,204,102)","size":4.293514728546143},{"label":"Samoyèdes","x":-1532.1046142578125,"y":-832.3033447265625,"id":"1611","color":"rgb(204,204,255)","size":4.075808525085449},{"label":"Cryosphère","x":-141.69094848632812,"y":1432.79052734375,"id":"755","color":"rgb(255,255,51)","size":4.39528751373291},{"label":"Arctic Explorer","x":-793.9893188476562,"y":1843.285400390625,"id":"303","color":"rgb(0,204,204)","size":4.936610698699951},{"label":"Satellite Navigation","x":234.13194274902344,"y":3367.627197265625,"id":"1116","color":"rgb(255,255,51)","size":4.206028938293457},{"label":"Instrument Scientifique","x":1140.2447509765625,"y":245.36618041992188,"id":"666","color":"rgb(255,255,51)","size":4.206028938293457},{"label":"Océan Glacial Arctique","x":75.3579330444336,"y":-222.08584594726562,"id":"538","color":"rgb(0,204,204)","size":4.781970500946045},{"label":"Recherche Française","x":1463.2591552734375,"y":-942.5368041992188,"id":"1568","color":"rgb(255,204,102)","size":4.293514728546143},{"label":"Plan De Prevention","x":1853.248291015625,"y":-1832.4892578125,"id":"28","color":"rgb(102,102,0)","size":4.206028938293457},{"label":"Institut Des Sciences","x":1449.68994140625,"y":-269.876708984375,"id":"1204","color":"rgb(255,255,51)","size":4.0086140632629395},{"label":"Submersible Mir","x":51.21259307861328,"y":1336.3157958984375,"id":"1653","color":"rgb(255,255,51)","size":4.0086140632629395},{"label":"Lemming","x":-974.2824096679688,"y":1868.3739013671875,"id":"1288","color":"rgb(0,204,204)","size":4.0},{"label":"Lumière Solaire","x":1415.5977783203125,"y":-1074.5252685546875,"id":"1309","color":"rgb(255,255,51)","size":4.0},{"label":"Baleine Bleue","x":30.028717041015625,"y":-1047.228759765625,"id":"390","color":"rgb(153,255,0)","size":4.133297443389893},{"label":"Aire Marine Protégée","x":291.7319641113281,"y":-1383.3349609375,"id":"169","color":"rgb(153,255,0)","size":4.133297443389893},{"label":"Sommet De La Terre","x":279.6936950683594,"y":-981.5819702148438,"id":"689","color":"rgb(102,255,102)","size":4.293514728546143},{"label":"Archipel Arctique","x":-255.59234619140625,"y":73.05978393554688,"id":"42","color":"rgb(0,204,204)","size":5.886096477508545},{"label":"Global Average Temperature","x":49.35322189331055,"y":1719.8236083984375,"id":"1108","color":"rgb(255,255,51)","size":4.293514728546143},{"label":"High Altitude","x":-772.4302978515625,"y":2072.1865234375,"id":"56","color":"rgb(0,204,204)","size":4.0086140632629395},{"label":"Érosion Des Sols","x":1110.46728515625,"y":-1435.0150146484375,"id":"929","color":"rgb(153,255,0)","size":4.6399359703063965},{"label":"Lappland","x":-1614.2547607421875,"y":1686.1014404296875,"id":"1278","color":"rgb(0,204,204)","size":4.0340681076049805},{"label":"Capelan","x":-967.8992309570312,"y":324.8018798828125,"id":"542","color":"rgb(255,51,51)","size":4.0},{"label":"National Institute","x":885.5368041992188,"y":763.1171264648438,"id":"16","color":"rgb(255,255,51)","size":4.075808525085449},{"label":"Fibre Optique","x":-2214.43505859375,"y":-1087.89404296875,"id":"18","color":"rgb(204,204,255)","size":4.133297443389893},{"label":"Institut De Recherche Agronomique","x":1479.1070556640625,"y":-675.8849487304688,"id":"1203","color":"rgb(255,204,102)","size":4.075808525085449},{"label":"Polar Bear","x":-248.04136657714844,"y":1112.631103515625,"id":"1451","color":"rgb(0,204,204)","size":4.075808525085449},{"label":"Esperance De Vie","x":-203.37042236328125,"y":-1382.83740234375,"id":"127","color":"rgb(255,51,51)","size":4.206028938293457},{"label":"Glace Pérenne","x":331.8544921875,"y":6.469234466552734,"id":"1092","color":"rgb(0,204,204)","size":4.39528751373291},{"label":"Préoccupations Environnementales","x":913.7150268554688,"y":-1516.5771484375,"id":"1536","color":"rgb(153,255,0)","size":4.510906219482422},{"label":"Théorie Erronée De La Mer Polaire Libre De Glace","x":265.0186767578125,"y":744.8469848632812,"id":"1677","color":"rgb(153,255,255)","size":4.293514728546143},{"label":"1927","x":-1194.3721923828125,"y":423.0043029785156,"id":"6","color":"rgb(255,51,51)","size":4.0340681076049805},{"label":"Organisation Nations Unies","x":-482.8285217285156,"y":-142.87576293945312,"id":"1441","color":"rgb(0,204,204)","size":4.0340681076049805},{"label":"Geostationary Operational","x":284.5367126464844,"y":2251.43701171875,"id":"912","color":"rgb(255,153,153)","size":4.39528751373291},{"label":"Très Basses Températures","x":1497.54736328125,"y":285.4104309082031,"id":"1689","color":"rgb(255,255,51)","size":4.39528751373291},{"label":"Arctic Region","x":-918.8540649414062,"y":1732.8306884765625,"id":"219","color":"rgb(0,204,204)","size":7.9385457038879395},{"label":"Gas Condensate","x":-1892.72509765625,"y":856.7564086914062,"id":"1033","color":"rgb(102,0,102)","size":4.206028938293457},{"label":"Courant Marin","x":597.963623046875,"y":-437.8042297363281,"id":"607","color":"rgb(255,204,102)","size":8.852968215942383},{"label":"North Cape","x":-1306.5689697265625,"y":2003.2337646484375,"id":"1314","color":"rgb(0,204,204)","size":4.206028938293457},{"label":"Sciences Santé","x":1610.7698974609375,"y":-138.92054748535156,"id":"1623","color":"rgb(255,255,51)","size":4.0340681076049805},{"label":"Tonje Folkestad","x":-297.1965026855469,"y":995.9053344726562,"id":"1678","color":"rgb(102,255,102)","size":4.206028938293457},{"label":"Coastal Zone","x":-57.49678421020508,"y":1147.275634765625,"id":"443","color":"rgb(153,255,255)","size":4.133297443389893},{"label":"Interactions Air-Neige","x":1003.8515014648438,"y":267.47943115234375,"id":"1209","color":"rgb(153,255,255)","size":4.39528751373291},{"label":"Eaux Intérieures","x":254.67762756347656,"y":-1601.257568359375,"id":"868","color":"rgb(255,51,51)","size":4.293514728546143},{"label":"Earth Observation","x":476.53277587890625,"y":1206.121337890625,"id":"752","color":"rgb(255,204,102)","size":4.6399359703063965},{"label":"Activité Solaire","x":1019.194091796875,"y":-65.51429748535156,"id":"112","color":"rgb(255,255,51)","size":4.781970500946045},{"label":"Arctic Ocean","x":-858.7642211914062,"y":1760.1708984375,"id":"296","color":"rgb(0,204,204)","size":18.676555633544922},{"label":"1958","x":-923.1117553710938,"y":300.51910400390625,"id":"9","color":"rgb(255,51,51)","size":4.0},{"label":"Energy Technology","x":-1174.175537109375,"y":1211.6539306640625,"id":"907","color":"rgb(0,153,0)","size":4.206028938293457},{"label":"Mare Island","x":-1608.9420166015625,"y":172.58163452148438,"id":"1229","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Pergélisol","x":611.0936279296875,"y":-347.7278747558594,"id":"1468","color":"rgb(255,204,102)","size":4.6399359703063965},{"label":"Prévision Météorologique","x":1674.5135498046875,"y":-759.5797119140625,"id":"640","color":"rgb(255,204,102)","size":4.781970500946045},{"label":"Volume Molaire","x":2573.265625,"y":-778.6514282226562,"id":"704","color":"rgb(255,255,51)","size":4.39528751373291},{"label":"Canadian Hydrographic","x":185.7216339111328,"y":1505.6448974609375,"id":"446","color":"rgb(255,204,102)","size":4.075808525085449},{"label":"Dépôts Rocheux","x":1134.8359375,"y":-416.6546325683594,"id":"792","color":"rgb(255,255,51)","size":4.075808525085449},{"label":"Nature Bassin","x":1054.341552734375,"y":-1553.7513427734375,"id":"1023","color":"rgb(153,255,0)","size":4.0340681076049805},{"label":"Ressource Naturelle","x":372.7302551269531,"y":-1337.694580078125,"id":"109","color":"rgb(0,153,0)","size":23.853513717651367},{"label":"Affaires Étrangères","x":-416.64178466796875,"y":-1388.5225830078125,"id":"128","color":"rgb(255,51,51)","size":11.244990348815918},{"label":"Test Ban","x":-1156.66259765625,"y":-132.11866760253906,"id":"962","color":"rgb(255,51,51)","size":4.206028938293457},{"label":"Pêche Lac","x":1041.0244140625,"y":-1170.6361083984375,"id":"1465","color":"rgb(153,255,0)","size":4.0},{"label":"Genie Mecanique","x":2703.232666015625,"y":428.4504699707031,"id":"663","color":"rgb(255,255,51)","size":4.293514728546143},{"label":"Observatoire De Greenwich","x":1127.2589111328125,"y":-137.82998657226562,"id":"1287","color":"rgb(255,255,51)","size":4.0086140632629395},{"label":"Boreogadus Saida","x":-415.00299072265625,"y":0.7784530520439148,"id":"487","color":"rgb(0,204,204)","size":4.075808525085449},{"label":"Perte De Sol","x":990.3416748046875,"y":-1785.65185546875,"id":"1472","color":"rgb(102,102,0)","size":4.510906219482422},{"label":"Engrais Chimique","x":1442.54638671875,"y":-1840.012939453125,"id":"153","color":"rgb(102,102,0)","size":4.510906219482422},{"label":"Creation De Valeur","x":-144.18275451660156,"y":-1219.799072265625,"id":"1668","color":"rgb(153,255,0)","size":4.0},{"label":"Prise De Conscience","x":391.77239990234375,"y":-1272.17529296875,"id":"924","color":"rgb(0,153,0)","size":4.39528751373291},{"label":"Urss","x":-1082.490478515625,"y":-1814.544189453125,"id":"31","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Eaux De Fonte","x":775.5789794921875,"y":-394.23291015625,"id":"864","color":"rgb(255,255,51)","size":4.510906219482422},{"label":"Reaction Chimique","x":1998.379638671875,"y":-1139.310546875,"id":"897","color":"rgb(255,204,102)","size":4.510906219482422},{"label":"Brent Boddy","x":-57.53631591796875,"y":991.5533447265625,"id":"499","color":"rgb(153,255,255)","size":4.293514728546143},{"label":"Bruno Peyron","x":-96.83160400390625,"y":-66.97936248779297,"id":"356","color":"rgb(0,204,204)","size":4.133297443389893},{"label":"Bris De Glace","x":-51.48553466796875,"y":-200.6317138671875,"id":"280","color":"rgb(0,204,204)","size":9.501245498657227},{"label":"Gestion Des Risques","x":1580.8740234375,"y":-1767.4342041015625,"id":"26","color":"rgb(102,102,0)","size":4.510906219482422},{"label":"Frappes Nucléaires","x":-1311.4027099609375,"y":-464.2800598144531,"id":"1024","color":"rgb(255,51,51)","size":4.0},{"label":"Northern Norway","x":-1513.88427734375,"y":1940.5718994140625,"id":"1152","color":"rgb(0,204,204)","size":5.282204627990723},{"label":"Ocean Engineering","x":863.1543579101562,"y":1605.9718017578125,"id":"565","color":"rgb(255,255,51)","size":4.0340681076049805},{"label":"Bas Niveau","x":-377.101806640625,"y":94.28236389160156,"id":"432","color":"rgb(0,204,204)","size":4.0086140632629395},{"label":"Fjord Du Saguenay","x":-808.0360717773438,"y":63.18717575073242,"id":"994","color":"rgb(255,51,51)","size":4.0340681076049805},{"label":"Natural Sciences","x":785.9993286132812,"y":268.3930358886719,"id":"1386","color":"rgb(255,204,102)","size":4.075808525085449},{"label":"Laboratoire De Géologie","x":1599.014892578125,"y":-225.34234619140625,"id":"954","color":"rgb(255,255,51)","size":4.133297443389893},{"label":"Souveraineté Limitée","x":-436.36474609375,"y":-1584.6697998046875,"id":"1649","color":"rgb(255,51,51)","size":4.075808525085449},{"label":"Eau Salée","x":1287.019775390625,"y":-803.0387573242188,"id":"817","color":"rgb(255,204,102)","size":4.206028938293457},{"label":"1978","x":-1086.7376708984375,"y":282.59967041015625,"id":"11","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Cercle Polaire Arctique","x":-257.4226989746094,"y":114.5979995727539,"id":"574","color":"rgb(0,204,204)","size":4.6399359703063965},{"label":"Hazardous Waste","x":-1165.3197021484375,"y":117.11734771728516,"id":"959","color":"rgb(102,102,0)","size":4.206028938293457},{"label":"Dechet Dangereux","x":573.1505126953125,"y":-2150.138916015625,"id":"707","color":"rgb(102,102,0)","size":4.936610698699951},{"label":"Nature Photography","x":-1234.7947998046875,"y":1187.2357177734375,"id":"1389","color":"rgb(102,255,102)","size":4.0086140632629395},{"label":"Effect Of Global Warming","x":-253.63299560546875,"y":1540.568359375,"id":"894","color":"rgb(153,255,255)","size":4.206028938293457},{"label":"United Nations","x":-440.61810302734375,"y":156.68453979492188,"id":"1442","color":"rgb(0,204,204)","size":4.075808525085449},{"label":"Ecole Polytechnique","x":2021.11474609375,"y":174.77450561523438,"id":"646","color":"rgb(255,255,51)","size":4.133297443389893},{"label":"Regime Alimentaire","x":198.74391174316406,"y":-1272.209228515625,"id":"585","color":"rgb(153,255,0)","size":4.39528751373291},{"label":"Biosphere Programme","x":-750.0748291015625,"y":1525.2879638671875,"id":"476","color":"rgb(153,255,255)","size":4.293514728546143},{"label":"Prévisions Météo","x":1819.6859130859375,"y":-586.1161499023438,"id":"641","color":"rgb(255,204,102)","size":4.6399359703063965},{"label":"Aléoutiennes","x":-82.33863067626953,"y":-485.130859375,"id":"197","color":"rgb(255,51,51)","size":4.206028938293457},{"label":"Chien De Traineau","x":-721.9819946289062,"y":-527.147216796875,"id":"600","color":"rgb(204,204,255)","size":5.6738481521606445},{"label":"Norvège Du Nord","x":-686.24169921875,"y":-355.7278747558594,"id":"1125","color":"rgb(153,0,0)","size":4.6399359703063965},{"label":"Intérêts Stratégiques","x":-436.1466369628906,"y":-1513.074462890625,"id":"1216","color":"rgb(255,51,51)","size":4.075808525085449},{"label":"Wood Mackenzie","x":-1887.30224609375,"y":604.39013671875,"id":"1713","color":"rgb(102,0,102)","size":4.206028938293457},{"label":"Alexei Miller","x":-1747.8853759765625,"y":243.88377380371094,"id":"204","color":"rgb(255,51,51)","size":4.936610698699951},{"label":"Environmental Protection","x":-1113.230712890625,"y":872.4547119140625,"id":"163","color":"rgb(102,255,102)","size":5.282204627990723},{"label":"National Maladies Rares","x":1955.45361328125,"y":-838.8698120117188,"id":"1546","color":"rgb(255,204,102)","size":4.0},{"label":"Solar Energy","x":-1137.634521484375,"y":1279.6405029296875,"id":"909","color":"rgb(0,153,0)","size":4.0086140632629395},{"label":"Pollution","x":-1426.6656494140625,"y":951.9179077148438,"id":"1514","color":"rgb(102,102,0)","size":4.293514728546143},{"label":"Plate-Formes Offshore","x":-85.44915008544922,"y":-1274.136962890625,"id":"1499","color":"rgb(102,0,102)","size":4.39528751373291},{"label":"Atmosphere Composition","x":-530.412841796875,"y":1407.7283935546875,"id":"359","color":"rgb(153,255,255)","size":4.075808525085449},{"label":"Missile Balistique","x":71.72400665283203,"y":-676.071533203125,"id":"494","color":"rgb(255,51,51)","size":4.293514728546143},{"label":"Union Européenne","x":77.16728973388672,"y":-1303.923583984375,"id":"82","color":"rgb(255,51,51)","size":44.51482391357422},{"label":"Glacial Outwash","x":-459.3403015136719,"y":1557.467529296875,"id":"1096","color":"rgb(153,255,255)","size":4.133297443389893},{"label":"Flux Zonal","x":1283.772705078125,"y":-80.11326599121094,"id":"1001","color":"rgb(255,255,51)","size":4.293514728546143},{"label":"Boreal Forest","x":-945.212158203125,"y":2200.774169921875,"id":"471","color":"rgb(0,204,204)","size":4.206028938293457},{"label":"Nouvelle-Zemble","x":-201.8921661376953,"y":-571.7731323242188,"id":"1420","color":"rgb(255,51,51)","size":4.206028938293457},{"label":"Plantes Vertes","x":1396.9930419921875,"y":-1724.7591552734375,"id":"584","color":"rgb(102,102,0)","size":4.0340681076049805},{"label":"Pays Balte","x":-659.1566772460938,"y":-1289.7989501953125,"id":"1126","color":"rgb(255,51,51)","size":4.39528751373291},{"label":"Soil Salinity","x":-605.7926025390625,"y":1008.748291015625,"id":"1609","color":"rgb(255,204,102)","size":4.0},{"label":"Mammifere Marin","x":-95.50175476074219,"y":-1201.1683349609375,"id":"391","color":"rgb(153,255,0)","size":6.837328910827637},{"label":"Masse Glaciaire","x":649.7149658203125,"y":-186.74403381347656,"id":"1325","color":"rgb(153,255,255)","size":4.510906219482422},{"label":"Global Concern Expedition","x":519.5447998046875,"y":990.1395263671875,"id":"1110","color":"rgb(255,204,102)","size":4.0086140632629395},{"label":"Global Exploration","x":797.335205078125,"y":1284.910400390625,"id":"1112","color":"rgb(255,153,153)","size":4.0340681076049805},{"label":"Geographic Traveler","x":-1745.7501220703125,"y":1280.5291748046875,"id":"1067","color":"rgb(153,255,0)","size":4.0086140632629395},{"label":"Living Organism","x":-918.6689453125,"y":959.650390625,"id":"464","color":"rgb(102,255,102)","size":4.0340681076049805},{"label":"Anomalie Magnétique","x":1387.6629638671875,"y":-146.3898162841797,"id":"263","color":"rgb(255,255,51)","size":4.206028938293457},{"label":"-4200 M","x":-1213.0836181640625,"y":2295.2705078125,"id":"54","color":"rgb(0,204,204)","size":4.0340681076049805},{"label":"Anwr Oil","x":-2581.248291015625,"y":955.8977661132812,"id":"269","color":"rgb(102,0,102)","size":4.781970500946045},{"label":"Ours Polaire","x":-157.55242919921875,"y":-308.56231689453125,"id":"334","color":"rgb(153,255,0)","size":10.178449630737305},{"label":"Pole Magnetique","x":679.227294921875,"y":556.8468627929688,"id":"374","color":"rgb(153,255,255)","size":6.341859817504883},{"label":"Gabriel Wackermann","x":-87.75955963134766,"y":-1859.6141357421875,"id":"1496","color":"rgb(153,0,0)","size":4.0},{"label":"Aptenodytes Forsteri","x":289.0431823730469,"y":919.851318359375,"id":"277","color":"rgb(153,255,255)","size":4.075808525085449},{"label":"Periode Interglaciaire","x":1033.8819580078125,"y":-503.2251281738281,"id":"552","color":"rgb(255,255,51)","size":5.472443103790283},{"label":"Nature Chimique","x":2002.038818359375,"y":-1090.4591064453125,"id":"1390","color":"rgb(255,204,102)","size":4.133297443389893},{"label":"Températures Globales","x":1006.1412963867188,"y":-671.974365234375,"id":"1675","color":"rgb(255,204,102)","size":4.510906219482422},{"label":"Diversite Culturelle","x":605.7864379882812,"y":-1663.8399658203125,"id":"823","color":"rgb(153,255,0)","size":4.133297443389893},{"label":"Giec","x":722.7131958007812,"y":-586.2316284179688,"id":"1086","color":"rgb(255,255,51)","size":4.39528751373291},{"label":"Vatnajokull Glacier","x":-1299.3758544921875,"y":1628.77099609375,"id":"1703","color":"rgb(0,204,204)","size":4.206028938293457},{"label":"Transformations","x":-1208.724853515625,"y":282.80255126953125,"id":"1685","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Recit De Voyage","x":-683.7840576171875,"y":-572.9569091796875,"id":"1231","color":"rgb(204,204,255)","size":4.075808525085449},{"label":"Carte Marine","x":812.1536865234375,"y":13.741379737854004,"id":"233","color":"rgb(255,204,102)","size":4.206028938293457},{"label":"Composition Chimique","x":1572.0687255859375,"y":-1048.61572265625,"id":"365","color":"rgb(255,204,102)","size":4.510906219482422},{"label":"Degre Celsius","x":1432.5145263671875,"y":-311.01776123046875,"id":"512","color":"rgb(255,255,51)","size":4.510906219482422},{"label":"Grand Dauphin","x":-79.85520935058594,"y":-1255.1279296875,"id":"1133","color":"rgb(153,255,0)","size":4.075808525085449},{"label":"Degree Celsius","x":960.0056762695312,"y":2435.82666015625,"id":"73","color":"rgb(255,255,51)","size":4.781970500946045},{"label":"Courants Marins Froids","x":-207.296875,"y":-879.0455932617188,"id":"729","color":"rgb(153,255,0)","size":4.0086140632629395},{"label":"Convention De Varsovie","x":180.90830993652344,"y":-913.2974853515625,"id":"683","color":"rgb(102,255,102)","size":4.0340681076049805},{"label":"Fjord Horse","x":-1878.0020751953125,"y":1849.91552734375,"id":"995","color":"rgb(0,204,204)","size":4.0340681076049805},{"label":"Glaciation","x":-235.29949951171875,"y":1871.2613525390625,"id":"1101","color":"rgb(153,255,255)","size":4.293514728546143},{"label":"National Wildlife Refuge","x":-2618.724853515625,"y":814.0955200195312,"id":"271","color":"rgb(153,255,0)","size":4.39528751373291},{"label":"Chiens","x":-889.0441284179688,"y":-568.3861694335938,"id":"601","color":"rgb(204,204,255)","size":4.0},{"label":"Liquide De Refroidissement","x":2370.32861328125,"y":-649.3900756835938,"id":"1295","color":"rgb(255,255,51)","size":4.0340681076049805},{"label":"Bœuf Musqué","x":-256.10687255859375,"y":-330.9064636230469,"id":"481","color":"rgb(153,255,0)","size":4.293514728546143},{"label":"Television Show","x":-941.4266967773438,"y":282.9108581542969,"id":"1669","color":"rgb(255,51,51)","size":4.0},{"label":"Adverse Event","x":-2619.889404296875,"y":-152.8070068359375,"id":"124","color":"rgb(255,51,51)","size":4.133297443389893},{"label":"Objectifs Du Millénaire","x":117.25886535644531,"y":-1529.2181396484375,"id":"247","color":"rgb(255,51,51)","size":4.075808525085449},{"label":"Alliage Métallique","x":2378.687744140625,"y":-330.806884765625,"id":"213","color":"rgb(255,255,51)","size":4.0086140632629395},{"label":"Active Volcano","x":-1640.16650390625,"y":2000.4835205078125,"id":"1238","color":"rgb(0,204,204)","size":4.075808525085449},{"label":"Grandes Rousses","x":885.4703369140625,"y":-186.6187744140625,"id":"932","color":"rgb(255,204,102)","size":4.0},{"label":"Golfe De Finlande","x":-689.8905029296875,"y":-991.0733642578125,"id":"987","color":"rgb(255,51,51)","size":4.6399359703063965},{"label":"Geographic Video","x":-1619.5887451171875,"y":1215.6246337890625,"id":"1068","color":"rgb(153,255,0)","size":4.0086140632629395},{"label":"Secteur Pétrolier","x":-364.1715393066406,"y":-1760.04833984375,"id":"657","color":"rgb(102,0,102)","size":4.781970500946045},{"label":"Ratification","x":-507.1439514160156,"y":-315.71282958984375,"id":"1558","color":"rgb(0,204,204)","size":4.075808525085449},{"label":"Péninsule Scandinave","x":-769.4072875976562,"y":-756.4035034179688,"id":"1124","color":"rgb(255,51,51)","size":4.936610698699951},{"label":"Gazprom","x":-1937.9300537109375,"y":468.28424072265625,"id":"1052","color":"rgb(102,0,102)","size":4.39528751373291},{"label":"Écologisme","x":721.4150390625,"y":-1248.9193115234375,"id":"878","color":"rgb(153,255,0)","size":4.133297443389893},{"label":"Periode Geologique","x":1184.9498291015625,"y":-223.36912536621094,"id":"594","color":"rgb(255,204,102)","size":4.39528751373291},{"label":"Ocean Pacifique","x":-188.73233032226562,"y":-531.0193481445312,"id":"200","color":"rgb(255,51,51)","size":5.6738481521606445},{"label":"Weather Services","x":-132.76998901367188,"y":2149.054443359375,"id":"899","color":"rgb(255,255,51)","size":4.133297443389893},{"label":"Plateau Continental En Arctique","x":-45.741153717041016,"y":-1658.357666015625,"id":"1495","color":"rgb(102,0,102)","size":4.0340681076049805},{"label":"Symboliquement Planté","x":-807.3521728515625,"y":-263.1263732910156,"id":"1660","color":"rgb(0,204,204)","size":4.510906219482422},{"label":"Insel Seeland","x":-1842.103271484375,"y":-1701.308349609375,"id":"764","color":"rgb(255,51,51)","size":4.0340681076049805},{"label":"Souveraineté","x":-172.32069396972656,"y":-1680.070556640625,"id":"1647","color":"rgb(255,51,51)","size":4.075808525085449},{"label":"Base De Donnée","x":1301.830322265625,"y":-1226.973876953125,"id":"76","color":"rgb(255,255,51)","size":14.764718055725098},{"label":"Kalaallit Nunaat","x":-749.01806640625,"y":1343.0867919921875,"id":"1146","color":"rgb(102,255,102)","size":4.133297443389893},{"label":"Subarctique","x":184.04832458496094,"y":-753.6328125,"id":"1652","color":"rgb(102,255,102)","size":4.6399359703063965},{"label":"Hydrocarbure Aromatique","x":1017.660400390625,"y":-1741.5787353515625,"id":"378","color":"rgb(102,102,0)","size":4.6399359703063965},{"label":"Planification Strategique","x":613.8388061523438,"y":-1836.17822265625,"id":"1190","color":"rgb(153,0,0)","size":4.0340681076049805},{"label":"Mbep/J","x":-463.3499450683594,"y":-1650.888427734375,"id":"1326","color":"rgb(255,51,51)","size":4.293514728546143},{"label":"Pack","x":-1091.357666015625,"y":216.81724548339844,"id":"1453","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Classification Périodique","x":1661.9716796875,"y":-1525.0955810546875,"id":"623","color":"rgb(255,255,51)","size":4.0086140632629395},{"label":"Mission Arctique","x":307.9113464355469,"y":-306.6958923339844,"id":"339","color":"rgb(153,255,255)","size":5.6738481521606445},{"label":"Temperature Record","x":-120.6404037475586,"y":1793.9925537109375,"id":"1572","color":"rgb(153,255,255)","size":4.206028938293457},{"label":"Courant Océanique","x":835.2644653320312,"y":-451.4788513183594,"id":"608","color":"rgb(255,204,102)","size":5.6738481521606445},{"label":"Yamal","x":-776.9039916992188,"y":2286.57568359375,"id":"1715","color":"rgb(0,204,204)","size":4.075808525085449},{"label":"Russian Jet","x":-3853.128662109375,"y":-1009.4136352539062,"id":"1603","color":"rgb(255,51,51)","size":4.0},{"label":"Conflits","x":-460.0719299316406,"y":-1356.5899658203125,"id":"691","color":"rgb(255,51,51)","size":4.293514728546143},{"label":"Bilan De Masse Glaciaire","x":794.037841796875,"y":-204.70335388183594,"id":"454","color":"rgb(153,255,255)","size":4.39528751373291},{"label":"Aire De Répartition","x":88.43418884277344,"y":-981.20361328125,"id":"165","color":"rgb(102,255,102)","size":4.293514728546143},{"label":"Engrais Azoté","x":1342.5379638671875,"y":-1752.6905517578125,"id":"242","color":"rgb(102,102,0)","size":4.206028938293457},{"label":"Natural Resources Commission","x":-1613.603515625,"y":98.33975982666016,"id":"1370","color":"rgb(0,153,0)","size":4.0},{"label":"Déformations","x":194.17935180664062,"y":1320.2796630859375,"id":"775","color":"rgb(255,255,51)","size":4.0340681076049805},{"label":"Climat Polaire","x":235.52413940429688,"y":-184.31378173828125,"id":"634","color":"rgb(153,255,255)","size":4.510906219482422},{"label":"Dechet Radioactif","x":325.6799011230469,"y":-1643.284912109375,"id":"568","color":"rgb(102,102,0)","size":5.6738481521606445},{"label":"Programme Des Nations Unies","x":85.97142028808594,"y":-1140.53759765625,"id":"248","color":"rgb(153,255,0)","size":4.39528751373291},{"label":"Érosion Glaciaire","x":742.3344116210938,"y":-350.19073486328125,"id":"931","color":"rgb(255,255,51)","size":4.293514728546143},{"label":"Évolution Des Galaxies","x":1633.125244140625,"y":-54.933509826660156,"id":"952","color":"rgb(255,153,153)","size":4.0340681076049805},{"label":"Drapeau De La Russie","x":-15.412890434265137,"y":-559.6062622070312,"id":"837","color":"rgb(255,51,51)","size":4.39528751373291},{"label":"Analyse De Sol","x":1482.62353515625,"y":-1745.756591796875,"id":"240","color":"rgb(102,102,0)","size":4.133297443389893},{"label":"Rayon Solaire","x":1197.6590576171875,"y":-457.2544860839844,"id":"728","color":"rgb(255,255,51)","size":4.39528751373291},{"label":"Law Of The Sea","x":-1015.6412353515625,"y":-235.204833984375,"id":"960","color":"rgb(255,51,51)","size":4.133297443389893},{"label":"Indices","x":-935.016845703125,"y":261.6860046386719,"id":"1193","color":"rgb(255,51,51)","size":4.0},{"label":"Climate Change","x":574.4462280273438,"y":-244.7993621826172,"id":"591","color":"rgb(102,255,102)","size":5.472443103790283},{"label":"Dioxyde De Carbone","x":1076.9239501953125,"y":-838.5778198242188,"id":"64","color":"rgb(102,255,102)","size":12.75397777557373},{"label":"Carottes De Glace","x":1182.79248046875,"y":-605.17724609375,"id":"553","color":"rgb(255,204,102)","size":4.6399359703063965},{"label":"Wentworth Higginson","x":-1183.2293701171875,"y":240.41905212402344,"id":"941","color":"rgb(255,51,51)","size":4.0340681076049805},{"label":"Produit Chimique","x":1520.8070068359375,"y":-1546.7008056640625,"id":"155","color":"rgb(102,102,0)","size":4.781970500946045},{"label":"Iles Pribilof","x":-198.6033172607422,"y":-740.008056640625,"id":"1182","color":"rgb(255,51,51)","size":4.293514728546143},{"label":"Photographies","x":1839.8797607421875,"y":-1381.5904541015625,"id":"1481","color":"rgb(255,255,51)","size":4.0086140632629395},{"label":"Planète","x":1200.0296630859375,"y":-768.0518798828125,"id":"1492","color":"rgb(255,204,102)","size":4.075808525085449},{"label":"Cooperative Institute For Research","x":97.84896850585938,"y":1591.988037109375,"id":"723","color":"rgb(255,255,51)","size":4.510906219482422},{"label":"Natural Histories","x":-456.4294738769531,"y":770.5518798828125,"id":"974","color":"rgb(102,255,102)","size":4.6399359703063965},{"label":"Compréhension Du Système Climatique","x":801.6995849609375,"y":-861.987060546875,"id":"670","color":"rgb(255,204,102)","size":4.133297443389893},{"label":"Alaska Halibut","x":-3062.091064453125,"y":2551.033447265625,"id":"187","color":"rgb(0,204,204)","size":4.206028938293457},{"label":"Température Ambiante","x":2132.640380859375,"y":-386.3600158691406,"id":"87","color":"rgb(255,255,51)","size":4.6399359703063965},{"label":"International Airports","x":-1742.007568359375,"y":1980.4854736328125,"id":"221","color":"rgb(0,204,204)","size":4.0086140632629395},{"label":"Polar Foundation","x":-108.2223892211914,"y":1356.49560546875,"id":"184","color":"rgb(153,255,255)","size":4.293514728546143},{"label":"New York","x":-752.0060424804688,"y":236.44363403320312,"id":"1","color":"rgb(255,51,51)","size":64.35166931152344},{"label":"Empreinte Génétique","x":476.001220703125,"y":-2566.525634765625,"id":"1533","color":"rgb(102,102,0)","size":4.0},{"label":"Norwegian Ministry","x":-2301.88037109375,"y":2535.718017578125,"id":"1200","color":"rgb(0,204,204)","size":4.293514728546143},{"label":"Tara Arctic","x":236.50755310058594,"y":-119.65736389160156,"id":"1119","color":"rgb(153,255,255)","size":4.781970500946045},{"label":"Action Climat","x":754.18310546875,"y":-991.233154296875,"id":"102","color":"rgb(102,255,102)","size":4.39528751373291},{"label":"Basse Pression","x":1899.7237548828125,"y":-507.6459655761719,"id":"433","color":"rgb(255,204,102)","size":4.6399359703063965},{"label":"Changement Climatique Global","x":604.3817138671875,"y":-524.1521606445312,"id":"593","color":"rgb(255,204,102)","size":4.6399359703063965},{"label":"Recherche Sciences","x":1627.426025390625,"y":-399.2071838378906,"id":"1547","color":"rgb(255,255,51)","size":4.6399359703063965},{"label":"Gps Navigation","x":194.82525634765625,"y":3389.077392578125,"id":"1114","color":"rgb(255,255,51)","size":4.206028938293457},{"label":"Port Maritime","x":-610.5924072265625,"y":-1976.65283203125,"id":"1137","color":"rgb(153,0,0)","size":4.075808525085449},{"label":"1002 Area","x":-2678.666748046875,"y":995.836181640625,"id":"34","color":"rgb(153,255,0)","size":4.510906219482422},{"label":"Exploration Well","x":-2312.6064453125,"y":836.2626953125,"id":"968","color":"rgb(102,0,102)","size":4.0086140632629395},{"label":"Pression Atmosphérique","x":1988.022705078125,"y":-564.9814453125,"id":"161","color":"rgb(255,204,102)","size":6.108868598937988},{"label":"Mendeleïev","x":1611.185546875,"y":-1567.342529296875,"id":"1333","color":"rgb(255,255,51)","size":4.0086140632629395},{"label":"Safe Passage","x":-1208.8505859375,"y":156.23768615722656,"id":"1461","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Fjords Of Norway","x":-1889.8212890625,"y":1917.4227294921875,"id":"996","color":"rgb(0,204,204)","size":4.293514728546143},{"label":"Leonid Brejnev","x":-732.2546997070312,"y":-1650.6351318359375,"id":"1225","color":"rgb(255,51,51)","size":4.075808525085449},{"label":"James Forbes","x":636.195068359375,"y":258.57037353515625,"id":"667","color":"rgb(255,255,51)","size":4.133297443389893},{"label":"Recherche Aux Pôles","x":1176.76513671875,"y":222.73812866210938,"id":"1563","color":"rgb(153,255,255)","size":4.206028938293457},{"label":"Iles Lofoten","x":-813.2720947265625,"y":-402.7174377441406,"id":"537","color":"rgb(0,204,204)","size":5.472443103790283},{"label":"Glouton","x":-295.9211730957031,"y":-747.9576416015625,"id":"1118","color":"rgb(153,255,0)","size":4.0},{"label":"Geographic World","x":-1738.5836181640625,"y":1237.1822509765625,"id":"1069","color":"rgb(153,255,0)","size":4.0340681076049805},{"label":"Magnetic Pole","x":-61.151405334472656,"y":1537.1751708984375,"id":"621","color":"rgb(255,255,51)","size":4.510906219482422},{"label":"1937","x":-922.0673828125,"y":217.56393432617188,"id":"8","color":"rgb(255,51,51)","size":4.0},{"label":"Polar Research","x":-226.88523864746094,"y":1496.3126220703125,"id":"325","color":"rgb(153,255,255)","size":5.282204627990723},{"label":"Record Minimum","x":-48.43122100830078,"y":1773.6942138671875,"id":"1571","color":"rgb(153,255,255)","size":4.6399359703063965},{"label":"Information Géographique","x":1652.8824462890625,"y":-1207.1824951171875,"id":"556","color":"rgb(255,204,102)","size":4.510906219482422},{"label":"East Siberian","x":-1020.4994506835938,"y":2079.242431640625,"id":"855","color":"rgb(0,204,204)","size":4.0340681076049805},{"label":"Carotte De Glace","x":1005.4568481445312,"y":-244.7089080810547,"id":"62","color":"rgb(153,255,255)","size":9.173389434814453},{"label":"Migrations","x":-1498.015380859375,"y":1193.9449462890625,"id":"1354","color":"rgb(153,255,0)","size":4.0},{"label":"Upper Atmosphere","x":-290.42523193359375,"y":1562.1124267578125,"id":"362","color":"rgb(153,255,255)","size":4.206028938293457},{"label":"Agence Internationale","x":101.9319076538086,"y":-1183.8203125,"id":"130","color":"rgb(255,51,51)","size":4.39528751373291},{"label":"Transport Logistique","x":1128.3056640625,"y":-2616.636474609375,"id":"1302","color":"rgb(153,0,0)","size":4.0340681076049805},{"label":"Océanographie","x":928.886474609375,"y":-164.4426727294922,"id":"1431","color":"rgb(255,204,102)","size":4.510906219482422},{"label":"Will Steger","x":-630.0276489257812,"y":1798.4930419921875,"id":"1712","color":"rgb(0,204,204)","size":4.510906219482422},{"label":"Bleriot Xi","x":-598.3441772460938,"y":282.5133361816406,"id":"43","color":"rgb(0,204,204)","size":4.0},{"label":"Geodetic Surveying","x":212.71829223632812,"y":2365.78125,"id":"776","color":"rgb(255,153,153)","size":4.0086140632629395},{"label":"Décennie","x":-988.4039916992188,"y":118.36727142333984,"id":"767","color":"rgb(255,51,51)","size":4.0},{"label":"American Scientist","x":-1284.3760986328125,"y":988.1171264648438,"id":"227","color":"rgb(102,255,102)","size":4.0086140632629395},{"label":"Champ Magnetique Terrestre","x":617.023681640625,"y":604.7554321289062,"id":"587","color":"rgb(153,255,255)","size":4.6399359703063965},{"label":"Cambrien Moyen","x":503.5157775878906,"y":-911.0304565429688,"id":"518","color":"rgb(102,255,102)","size":4.075808525085449},{"label":"Systèmes Glaciaires","x":985.3449096679688,"y":154.50323486328125,"id":"1663","color":"rgb(153,255,255)","size":4.510906219482422},{"label":"Iceberg","x":-545.5053100585938,"y":1385.1671142578125,"id":"1167","color":"rgb(153,255,255)","size":4.0086140632629395},{"label":"Intérêts Défensifs","x":-12.911566734313965,"y":-1922.81103515625,"id":"1212","color":"rgb(255,51,51)","size":4.206028938293457},{"label":"Mode De Vie","x":-115.59657287597656,"y":-940.325927734375,"id":"111","color":"rgb(153,255,0)","size":6.584775924682617},{"label":"Zone Économique Exclusive","x":-199.3349609375,"y":-1561.9595947265625,"id":"714","color":"rgb(153,0,0)","size":5.103478908538818},{"label":"Dmitri Medvedev","x":-749.7711791992188,"y":-1404.799560546875,"id":"493","color":"rgb(255,51,51)","size":4.510906219482422},{"label":"Océans","x":-448.6255798339844,"y":1364.870849609375,"id":"1433","color":"rgb(102,255,102)","size":4.0},{"label":"Périodes Interglaciaires","x":978.1617431640625,"y":-603.2879638671875,"id":"1470","color":"rgb(255,204,102)","size":4.6399359703063965},{"label":"Observation Satellite","x":633.9613647460938,"y":1304.4700927734375,"id":"1428","color":"rgb(255,153,153)","size":4.293514728546143},{"label":"Cellule Photovoltaïque","x":1573.73876953125,"y":-920.066650390625,"id":"560","color":"rgb(255,204,102)","size":4.133297443389893},{"label":"Glacial Moraine","x":-745.0570068359375,"y":1737.6048583984375,"id":"1095","color":"rgb(153,255,255)","size":4.0340681076049805},{"label":"Natural World","x":-595.7034912109375,"y":788.1918334960938,"id":"1385","color":"rgb(153,255,0)","size":4.293514728546143},{"label":"Hemisphere Nord","x":822.0599975585938,"y":-116.0876235961914,"id":"119","color":"rgb(255,204,102)","size":11.244990348815918},{"label":"Droit Humain","x":59.45440673828125,"y":-1219.3333740234375,"id":"234","color":"rgb(255,51,51)","size":4.510906219482422},{"label":"American University","x":-607.4078979492188,"y":865.6720581054688,"id":"228","color":"rgb(102,255,102)","size":4.0086140632629395},{"label":"Exploitation Des Richesses","x":311.64801025390625,"y":-1837.4033203125,"id":"965","color":"rgb(153,255,0)","size":4.206028938293457},{"label":"Gisement De Chtokman","x":-769.5961303710938,"y":-1157.606689453125,"id":"605","color":"rgb(102,0,102)","size":4.39528751373291},{"label":"Innovation Norway","x":-2335.32470703125,"y":2176.70068359375,"id":"1199","color":"rgb(0,204,204)","size":4.0086140632629395},{"label":"Deh Cho","x":-1856.7294921875,"y":1537.44580078125,"id":"785","color":"rgb(0,204,204)","size":4.206028938293457},{"label":"Environnement","x":453.2809753417969,"y":-992.4443969726562,"id":"914","color":"rgb(102,255,102)","size":4.510906219482422},{"label":"Mecanique Des Roches","x":2446.5673828125,"y":373.1225280761719,"id":"1330","color":"rgb(255,255,51)","size":4.075808525085449},{"label":"Arctic Refuge","x":-2631.31884765625,"y":850.3453979492188,"id":"36","color":"rgb(153,255,0)","size":5.6738481521606445},{"label":"Grande Odyssée","x":-984.5294189453125,"y":-365.6311340332031,"id":"1141","color":"rgb(0,204,204)","size":4.206028938293457},{"label":"Polar Ice","x":-110.7434310913086,"y":1699.8232421875,"id":"753","color":"rgb(153,255,255)","size":4.39528751373291},{"label":"Bathymétrie","x":324.61383056640625,"y":767.0276489257812,"id":"442","color":"rgb(153,255,255)","size":4.133297443389893},{"label":"Fondation Polaire Internationale","x":551.2457275390625,"y":51.95774841308594,"id":"893","color":"rgb(153,255,255)","size":4.510906219482422},{"label":"Recherche Scientifique","x":1442.5101318359375,"y":-540.7030029296875,"id":"571","color":"rgb(255,204,102)","size":5.472443103790283},{"label":"Géophysique","x":1632.0228271484375,"y":628.3880615234375,"id":"1071","color":"rgb(255,204,51)","size":4.206028938293457},{"label":"Gravures","x":-1026.744873046875,"y":137.02943420410156,"id":"1143","color":"rgb(255,51,51)","size":4.0},{"label":"Déchet Industriel","x":657.5604248046875,"y":-2385.392578125,"id":"769","color":"rgb(102,102,0)","size":4.781970500946045},{"label":"Ice Hotel","x":-593.0064697265625,"y":1885.76708984375,"id":"1090","color":"rgb(0,204,204)","size":4.0340681076049805},{"label":"Île De Gotland","x":-846.1076049804688,"y":-999.18359375,"id":"1174","color":"rgb(255,51,51)","size":4.075808525085449},{"label":"Geologic Province","x":-994.019775390625,"y":1189.9840087890625,"id":"614","color":"rgb(102,255,102)","size":4.0086140632629395},{"label":"Séracs","x":-1662.7349853515625,"y":1545.182373046875,"id":"1630","color":"rgb(0,204,204)","size":4.0},{"label":"1969","x":-1062.8043212890625,"y":419.4639892578125,"id":"10","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Propulsion Nucléaire","x":-385.1502380371094,"y":-1260.037353515625,"id":"1177","color":"rgb(255,51,51)","size":4.293514728546143},{"label":"Norwegian Navy","x":-569.5661010742188,"y":2063.767822265625,"id":"1415","color":"rgb(0,204,204)","size":4.0086140632629395},{"label":"Sammy Davis","x":-1078.1158447265625,"y":156.47669982910156,"id":"1454","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Institut Océanographique","x":463.5839538574219,"y":81.99915313720703,"id":"1206","color":"rgb(153,255,255)","size":4.075808525085449},{"label":"Hausse Des Prix","x":-333.2700500488281,"y":-1539.107666015625,"id":"423","color":"rgb(153,0,0)","size":4.39528751373291},{"label":"Technologies Modernes","x":-32.22397232055664,"y":-1066.8753662109375,"id":"1667","color":"rgb(102,255,102)","size":4.133297443389893},{"label":"Haute Pression","x":1766.5191650390625,"y":-1061.0745849609375,"id":"435","color":"rgb(255,204,102)","size":4.293514728546143},{"label":"Film Documentaire","x":-155.1978302001953,"y":52.95424270629883,"id":"1057","color":"rgb(0,204,204)","size":4.0086140632629395},{"label":"Onu","x":-1233.36279296875,"y":135.1965789794922,"id":"1436","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Polar Star","x":-1302.835205078125,"y":952.3133544921875,"id":"742","color":"rgb(102,255,102)","size":4.0340681076049805},{"label":"Superficie","x":49.51503372192383,"y":-587.6513061523438,"id":"1655","color":"rgb(255,51,51)","size":4.0},{"label":"Reserve Naturelle","x":434.63714599609375,"y":-1621.7032470703125,"id":"697","color":"rgb(153,255,0)","size":4.39528751373291},{"label":"Eau Froide","x":1541.7825927734375,"y":-1092.912109375,"id":"816","color":"rgb(255,204,102)","size":4.936610698699951},{"label":"Delta De La Léna","x":289.7749938964844,"y":-542.6483154296875,"id":"788","color":"rgb(102,255,102)","size":4.293514728546143},{"label":"Netherlands Institute","x":278.0394592285156,"y":488.0981140136719,"id":"1396","color":"rgb(0,204,204)","size":4.0086140632629395},{"label":"Pcgr Du Canada","x":-597.6290893554688,"y":-1740.4219970703125,"id":"1367","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Lomonosov Ridge","x":-466.1482849121094,"y":1429.583984375,"id":"319","color":"rgb(153,255,255)","size":4.510906219482422},{"label":"Expédition Arctique","x":-198.63258361816406,"y":-88.86698913574219,"id":"955","color":"rgb(0,204,204)","size":4.510906219482422},{"label":"Renne Caribou","x":458.2775573730469,"y":-1139.828125,"id":"1583","color":"rgb(153,255,0)","size":4.293514728546143},{"label":"Polar Bridge","x":-403.4349670410156,"y":1495.7833251953125,"id":"1505","color":"rgb(153,255,255)","size":4.0340681076049805},{"label":"Arcticnet","x":-643.3875122070312,"y":1682.5628662109375,"id":"330","color":"rgb(153,255,255)","size":4.510906219482422},{"label":"Alaska","x":-3098.02685546875,"y":2507.338134765625,"id":"186","color":"rgb(0,204,204)","size":4.206028938293457},{"label":"Climate Variation","x":-198.80438232421875,"y":1270.0087890625,"id":"637","color":"rgb(102,255,102)","size":4.075808525085449},{"label":"Aurora Borealis","x":-896.8470458984375,"y":1434.7862548828125,"id":"371","color":"rgb(153,255,255)","size":4.133297443389893},{"label":"Puits De Carbone","x":949.2518310546875,"y":-967.28125,"id":"672","color":"rgb(0,153,0)","size":4.6399359703063965},{"label":"Gas Pipeline","x":-2079.5126953125,"y":693.8248291015625,"id":"206","color":"rgb(102,0,102)","size":7.370260715484619},{"label":"Gel","x":-3475.97705078125,"y":-1943.2325439453125,"id":"1058","color":"rgb(51,153,255)","size":4.0},{"label":"Sciences Naturelles","x":1289.0399169921875,"y":-203.2497100830078,"id":"1621","color":"rgb(255,255,51)","size":4.133297443389893},{"label":"Aurore Boréale","x":-38.54255294799805,"y":154.39012145996094,"id":"364","color":"rgb(0,204,204)","size":6.584775924682617},{"label":"Marine Canadienne","x":-901.2643432617188,"y":-2052.479248046875,"id":"1320","color":"rgb(255,51,51)","size":4.0340681076049805},{"label":"Inconvenient Truth","x":-316.84161376953125,"y":893.7084350585938,"id":"179","color":"rgb(0,204,204)","size":4.293514728546143},{"label":"Croissance Démographique","x":656.6221313476562,"y":-1804.153076171875,"id":"644","color":"rgb(255,51,51)","size":4.293514728546143},{"label":"Écosystème","x":971.4881591796875,"y":-1275.459716796875,"id":"880","color":"rgb(255,255,51)","size":4.133297443389893},{"label":"Geographic Adventure","x":-1713.5594482421875,"y":1303.010986328125,"id":"1061","color":"rgb(153,255,0)","size":4.0086140632629395},{"label":"Achim Steiner","x":75.6333999633789,"y":264.43115234375,"id":"88","color":"rgb(0,204,204)","size":4.133297443389893},{"label":"Erosion Marine","x":-82.82237243652344,"y":629.181884765625,"id":"933","color":"rgb(153,255,255)","size":4.0340681076049805},{"label":"1893","x":-1061.2469482421875,"y":260.2148132324219,"id":"2","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Élément Nutritif","x":1147.1973876953125,"y":-1708.31396484375,"id":"241","color":"rgb(153,255,0)","size":4.206028938293457},{"label":"Ice Sheet","x":-148.8400115966797,"y":1680.135009765625,"id":"312","color":"rgb(153,255,255)","size":9.836332321166992},{"label":"Cryosat 2","x":55.193878173828125,"y":1549.1031494140625,"id":"750","color":"rgb(255,255,51)","size":4.6399359703063965},{"label":"Natural Gas Liquids","x":-2024.284423828125,"y":879.7984008789062,"id":"615","color":"rgb(102,0,102)","size":4.075808525085449},{"label":"Iouri Andropov","x":-750.6943359375,"y":-1591.2652587890625,"id":"1224","color":"rgb(255,51,51)","size":4.133297443389893},{"label":"Risques Naturels","x":1759.55419921875,"y":-1789.48095703125,"id":"22","color":"rgb(102,102,0)","size":4.39528751373291},{"label":"Séquestration Co2","x":-801.0259399414062,"y":1199.588134765625,"id":"1629","color":"rgb(102,255,102)","size":4.39528751373291},{"label":"North Slope","x":-2024.936767578125,"y":924.9051513671875,"id":"194","color":"rgb(102,0,102)","size":4.39528751373291},{"label":"Polar Science","x":-132.6469268798828,"y":1475.8482666015625,"id":"892","color":"rgb(153,255,255)","size":4.6399359703063965},{"label":"Fonte Des Glaces","x":459.58941650390625,"y":-200.27076721191406,"id":"66","color":"rgb(102,255,102)","size":13.145594596862793},{"label":"Global Warning","x":-243.81764221191406,"y":967.8666381835938,"id":"1117","color":"rgb(102,255,102)","size":4.206028938293457},{"label":"Ile Victoria","x":-490.3682861328125,"y":177.11434936523438,"id":"1179","color":"rgb(0,204,204)","size":4.39528751373291},{"label":"Centre Spatial","x":876.1445922851562,"y":616.9332275390625,"id":"135","color":"rgb(255,153,153)","size":4.39528751373291},{"label":"Physique Theorique","x":1881.3311767578125,"y":108.39909362792969,"id":"1202","color":"rgb(255,255,51)","size":4.133297443389893},{"label":"Politique","x":-5.994494438171387,"y":-1563.6400146484375,"id":"1511","color":"rgb(255,51,51)","size":4.0},{"label":"Essai Historique","x":-1157.0037841796875,"y":177.75860595703125,"id":"940","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Groenland","x":-331.8370056152344,"y":792.9080200195312,"id":"1145","color":"rgb(0,204,204)","size":4.206028938293457},{"label":"Droit International","x":-258.4610595703125,"y":-1630.45166015625,"id":"85","color":"rgb(255,51,51)","size":7.9385457038879395},{"label":"Science Physique","x":2234.972412109375,"y":52.56838607788086,"id":"1622","color":"rgb(255,255,51)","size":4.0086140632629395},{"label":"Institute Of Meteorology","x":954.8125610351562,"y":784.3052368164062,"id":"1208","color":"rgb(255,204,102)","size":4.0340681076049805},{"label":"Faible Superficie","x":261.7717590332031,"y":-143.9561309814453,"id":"977","color":"rgb(153,255,255)","size":4.39528751373291},{"label":"Glacial Erosion","x":-193.4502410888672,"y":1852.1458740234375,"id":"1093","color":"rgb(153,255,255)","size":4.075808525085449},{"label":"Milieu Aquatique","x":1167.759765625,"y":-1534.117919921875,"id":"581","color":"rgb(153,255,0)","size":4.781970500946045},{"label":"Degre Centigrade","x":849.8101806640625,"y":-506.2597961425781,"id":"784","color":"rgb(255,204,102)","size":4.510906219482422},{"label":"International Energy","x":-1331.1221923828125,"y":1015.0953979492188,"id":"908","color":"rgb(0,153,0)","size":4.293514728546143},{"label":"East Oil","x":-1742.295654296875,"y":576.974609375,"id":"854","color":"rgb(102,0,102)","size":4.0340681076049805},{"label":"Chaîne Logistique","x":1199.179931640625,"y":-2594.193359375,"id":"1300","color":"rgb(153,0,0)","size":4.0086140632629395},{"label":"Conseil De L\u0027Arctique,1","x":-84.26390075683594,"y":-507.35498046875,"id":"694","attributes":{"nodedef":"n694"},"color":"rgb(255,51,51)","size":4.6399359703063965},{"label":"Scandinavian Peninsula","x":-1889.73388671875,"y":2102.25634765625,"id":"1283","color":"rgb(0,204,204)","size":4.075808525085449},{"label":"Alaska Salmon","x":-3059.961669921875,"y":2481.27099609375,"id":"188","color":"rgb(0,204,204)","size":4.293514728546143},{"label":"Universités Canadiennes","x":526.4083251953125,"y":102.38640594482422,"id":"386","color":"rgb(153,255,255)","size":4.0086140632629395},{"label":"National Geographic Society","x":-1637.8243408203125,"y":1171.7003173828125,"id":"1063","color":"rgb(153,255,0)","size":4.6399359703063965},{"label":"Center For Coastal And Ocean Mapping","x":852.3263549804688,"y":1872.09228515625,"id":"563","color":"rgb(255,153,153)","size":4.0340681076049805},{"label":"Transport De Marchandises","x":900.6026000976562,"y":-2553.81201171875,"id":"1301","color":"rgb(153,0,0)","size":4.0340681076049805},{"label":"Terminal Méthanier","x":-392.3746643066406,"y":-1739.4954833984375,"id":"1046","color":"rgb(102,0,102)","size":4.510906219482422},{"label":"Glace Continentale","x":770.9066162109375,"y":-432.2124328613281,"id":"1091","color":"rgb(255,255,51)","size":4.6399359703063965},{"label":"Gas Giants","x":-1531.8878173828125,"y":905.6224365234375,"id":"205","color":"rgb(102,0,102)","size":4.075808525085449},{"label":"Dégradation De L\u0027Environnement,1","x":722.3955078125,"y":-1539.0269775390625,"id":"778","attributes":{"nodedef":"n778"},"color":"rgb(102,102,0)","size":4.39528751373291},{"label":"Convention De Genève","x":-24.439672470092773,"y":-1609.70947265625,"id":"709","color":"rgb(255,51,51)","size":4.075808525085449},{"label":"Revendications","x":85.95450592041016,"y":-849.3680419921875,"id":"1596","color":"rgb(255,51,51)","size":4.0},{"label":"Chaînes Alimentaires","x":1151.4473876953125,"y":-1582.9261474609375,"id":"583","color":"rgb(153,255,0)","size":4.510906219482422},{"label":"Health Science","x":1327.412109375,"y":241.00694274902344,"id":"1619","color":"rgb(255,255,51)","size":4.0086140632629395},{"label":"Mer Des Tchouktches","x":-448.9115295410156,"y":-286.3415832519531,"id":"1342","color":"rgb(0,204,204)","size":4.510906219482422},{"label":"Cartes Shom","x":774.489501953125,"y":44.53413391113281,"id":"447","color":"rgb(153,255,255)","size":4.075808525085449},{"label":"Technology Conference","x":-1174.6954345703125,"y":758.0120849609375,"id":"686","color":"rgb(102,255,102)","size":4.0086140632629395},{"label":"Pmrc","x":-971.127197265625,"y":301.84942626953125,"id":"1503","color":"rgb(255,51,51)","size":4.0},{"label":"North Atlantic","x":-592.1644897460938,"y":960.2535400390625,"id":"351","color":"rgb(0,204,204)","size":4.781970500946045},{"label":"Conservation De La Nature","x":341.7538757324219,"y":-1182.1884765625,"id":"696","color":"rgb(153,255,0)","size":4.781970500946045},{"label":"Institut De Physique","x":1748.0091552734375,"y":133.39999389648438,"id":"1077","color":"rgb(255,255,51)","size":4.510906219482422},{"label":"International Polar Expedition","x":-403.2984619140625,"y":1634.9942626953125,"id":"1221","color":"rgb(153,255,255)","size":4.206028938293457},{"label":"High Arctic","x":-997.6122436523438,"y":1941.9306640625,"id":"295","color":"rgb(0,204,204)","size":5.103478908538818},{"label":"Valley Winter","x":-1254.2745361328125,"y":201.01535034179688,"id":"1688","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Mer De Béring","x":-416.0766906738281,"y":-581.99462890625,"id":"1337","color":"rgb(255,51,51)","size":4.6399359703063965},{"label":"Advanced Science","x":862.8711547851562,"y":533.5106201171875,"id":"1270","color":"rgb(255,153,153)","size":4.0},{"label":"Developpement Local","x":327.0224914550781,"y":-1726.369384765625,"id":"814","color":"rgb(153,0,0)","size":4.075808525085449},{"label":"Yukon","x":-1277.1168212890625,"y":912.0397338867188,"id":"1716","color":"rgb(153,0,0)","size":4.133297443389893},{"label":"Jacques Nougier","x":369.62542724609375,"y":1031.9442138671875,"id":"1234","color":"rgb(255,255,51)","size":4.0},{"label":"Adrian Flanagan","x":-598.8163452148438,"y":2167.505859375,"id":"1251","color":"rgb(0,204,204)","size":4.0},{"label":"Zones Géographiques","x":-218.76654052734375,"y":-1089.88232421875,"id":"1722","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Etude D\u0027Impact,2","x":989.4458618164062,"y":-1832.7940673828125,"id":"946","attributes":{"nodedef":"n946"},"color":"rgb(102,102,0)","size":4.293514728546143},{"label":"Nomadic Tribe","x":-1678.7099609375,"y":-860.518310546875,"id":"1613","color":"rgb(204,204,255)","size":4.0},{"label":"25% Inférieure","x":378.7664489746094,"y":256.8262939453125,"id":"44","color":"rgb(153,255,255)","size":4.510906219482422},{"label":"Experience Scientifique","x":780.1193237304688,"y":-305.1599426269531,"id":"963","color":"rgb(255,204,102)","size":4.0086140632629395},{"label":"Lgge","x":-72.10955810546875,"y":1455.18896484375,"id":"1290","color":"rgb(255,255,51)","size":4.206028938293457},{"label":"Hemisphere Sud","x":1008.4192504882812,"y":-105.01465606689453,"id":"636","color":"rgb(255,255,51)","size":4.133297443389893},{"label":"Analyse Qualitative Globale Simplifiée Des Impacts","x":344.9957275390625,"y":-1426.785400390625,"id":"243","color":"rgb(255,51,51)","size":4.206028938293457},{"label":"Adverse Effect","x":-2590.093017578125,"y":-133.97509765625,"id":"123","color":"rgb(255,51,51)","size":4.075808525085449},{"label":"Rayonnement Ultraviolet","x":1545.1719970703125,"y":-874.0010375976562,"id":"680","color":"rgb(255,204,102)","size":4.0},{"label":"Biologie Marine","x":1135.73681640625,"y":-625.051513671875,"id":"468","color":"rgb(255,204,102)","size":4.075808525085449},{"label":"Eau Douce","x":905.9652709960938,"y":-1031.2620849609375,"id":"498","color":"rgb(102,255,102)","size":13.944929122924805},{"label":"Reserve Naturelle Regionale","x":694.9480590820312,"y":-1956.704833984375,"id":"846","color":"rgb(153,255,0)","size":4.075808525085449},{"label":"Otan","x":-403.6894836425781,"y":-605.4341430664062,"id":"1444","color":"rgb(255,51,51)","size":4.133297443389893},{"label":"Norwegian Polar","x":-518.056396484375,"y":1673.6336669921875,"id":"317","color":"rgb(153,255,255)","size":4.39528751373291},{"label":"Canis Lupus","x":-332.4640197753906,"y":-551.8473510742188,"id":"1308","color":"rgb(153,255,0)","size":4.0086140632629395},{"label":"Water Pollution","x":-1417.96337890625,"y":887.7281494140625,"id":"1515","color":"rgb(102,102,0)","size":4.075808525085449},{"label":"Cycle De Doha","x":84.66776275634766,"y":-1861.4490966796875,"id":"761","color":"rgb(153,0,0)","size":4.075808525085449},{"label":"Explorateur Polaire","x":49.932064056396484,"y":445.4388122558594,"id":"841","color":"rgb(153,255,255)","size":4.6399359703063965},{"label":"Ressources Naturelles","x":231.35784912109375,"y":-1204.1434326171875,"id":"1592","color":"rgb(0,153,0)","size":4.133297443389893},{"label":"Kara","x":-1029.7344970703125,"y":437.6309814453125,"id":"1257","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Template Matching","x":-1361.560302734375,"y":302.0841369628906,"id":"1686","color":"rgb(255,51,51)","size":4.0},{"label":"Ifremer Brest","x":511.7898864746094,"y":-372.69976806640625,"id":"1005","color":"rgb(153,255,255)","size":4.0086140632629395},{"label":"Risque Majeur","x":1767.0731201171875,"y":-1811.623779296875,"id":"23","color":"rgb(102,102,0)","size":4.6399359703063965},{"label":"Canadian Inuit","x":-1131.8297119140625,"y":2217.159423828125,"id":"523","color":"rgb(204,204,255)","size":4.781970500946045},{"label":"Board Of Trustees","x":-919.033935546875,"y":897.6107177734375,"id":"1693","color":"rgb(102,255,102)","size":4.0},{"label":"Agenda 21","x":79.4177017211914,"y":-499.4136047363281,"id":"99","color":"rgb(102,255,102)","size":4.6399359703063965},{"label":"Nature","x":-706.6260375976562,"y":836.9927978515625,"id":"1387","color":"rgb(153,255,0)","size":4.293514728546143},{"label":"Cape Cross","x":212.16981506347656,"y":-2052.8818359375,"id":"1447","color":"rgb(153,0,0)","size":4.0},{"label":"Science Des Materiaux","x":2504.886474609375,"y":-260.5295104980469,"id":"1521","color":"rgb(255,255,51)","size":4.0},{"label":"Canada","x":-1005.2640380859375,"y":680.813232421875,"id":"520","color":"rgb(102,255,102)","size":4.0086140632629395},{"label":"Convention On Climate","x":-614.9793701171875,"y":647.582275390625,"id":"718","color":"rgb(102,255,102)","size":4.0340681076049805},{"label":"Astronomie De Lyon","x":1325.966552734375,"y":337.0829772949219,"id":"1564","color":"rgb(255,153,153)","size":4.0},{"label":"Accessibles","x":150.030517578125,"y":-543.5947875976562,"id":"75","color":"rgb(102,255,102)","size":4.0340681076049805},{"label":"Carbon Cycle","x":-557.7491455078125,"y":1300.622802734375,"id":"465","color":"rgb(102,255,102)","size":4.510906219482422},{"label":"Accumulateur De Froid","x":2515.8671875,"y":-386.56671142578125,"id":"86","color":"rgb(255,255,51)","size":4.0086140632629395},{"label":"Universite De Reading","x":733.7023315429688,"y":-634.2902221679688,"id":"1699","color":"rgb(255,204,102)","size":4.0340681076049805},{"label":"Otto Neumann Sverdrup","x":-899.0653686523438,"y":2098.9833984375,"id":"1448","color":"rgb(0,204,204)","size":4.133297443389893},{"label":"Azote Liquide","x":2053.978515625,"y":-126.75948333740234,"id":"380","color":"rgb(255,255,51)","size":4.0340681076049805},{"label":"Variation Climatique","x":1092.8575439453125,"y":-579.475341796875,"id":"511","color":"rgb(255,204,102)","size":5.282204627990723},{"label":"Ligne De Base","x":-266.4502258300781,"y":-1518.729248046875,"id":"870","color":"rgb(153,0,0)","size":4.0340681076049805},{"label":"Snohvit","x":-2041.626220703125,"y":1151.53125,"id":"1636","color":"rgb(102,0,102)","size":4.293514728546143},{"label":"Earth Summit","x":-434.10894775390625,"y":501.4352722167969,"id":"850","color":"rgb(0,204,204)","size":4.206028938293457},{"label":"Nord Stream","x":-1559.5074462890625,"y":35.28211212158203,"id":"1050","color":"rgb(255,51,51)","size":4.293514728546143},{"label":"Plusieurs Expéditions","x":224.90196228027344,"y":299.7099304199219,"id":"1501","color":"rgb(153,255,255)","size":4.075808525085449},{"label":"Sami Parliament","x":-1931.7279052734375,"y":2559.63525390625,"id":"1607","color":"rgb(204,204,255)","size":4.781970500946045},{"label":"Régions Subpolaires","x":113.39276885986328,"y":-350.522705078125,"id":"1576","color":"rgb(0,204,204)","size":4.206028938293457},{"label":"Makivik Corporation","x":-1267.5469970703125,"y":2790.955810546875,"id":"1259","color":"rgb(0,204,204)","size":4.133297443389893},{"label":"Toundra","x":-3601.925048828125,"y":-1691.172119140625,"id":"1681","color":"rgb(51,153,255)","size":4.0},{"label":"Express Côtier","x":-753.6414794921875,"y":-218.7122802734375,"id":"535","color":"rgb(0,204,204)","size":5.282204627990723},{"label":"Danemark","x":-1614.99658203125,"y":-1534.9354248046875,"id":"762","color":"rgb(255,51,51)","size":4.0340681076049805},{"label":"Zero Absolu","x":1220.9068603515625,"y":520.4005737304688,"id":"675","color":"rgb(255,255,51)","size":4.133297443389893},{"label":"Geographie De La Russie","x":-1012.9732666015625,"y":-152.01487731933594,"id":"958","color":"rgb(255,51,51)","size":4.39528751373291},{"label":"Habitat Sain","x":816.5289916992188,"y":-1637.7469482421875,"id":"1150","color":"rgb(153,255,0)","size":4.293514728546143},{"label":"Nobel De La Paix","x":657.8598022460938,"y":-373.2637939453125,"id":"635","color":"rgb(255,255,51)","size":4.133297443389893},{"label":"Pressure Ridge","x":-300.82281494140625,"y":2095.478759765625,"id":"1357","color":"rgb(153,255,255)","size":4.133297443389893},{"label":"Période Du Quaternaire","x":1016.2114868164062,"y":-305.43133544921875,"id":"1469","color":"rgb(255,255,51)","size":4.206028938293457},{"label":"Science Naturelle","x":1218.244140625,"y":-309.01025390625,"id":"732","color":"rgb(255,204,102)","size":5.282204627990723},{"label":"Carbon Capture","x":-691.7048950195312,"y":1221.33251953125,"id":"547","color":"rgb(102,255,102)","size":4.39528751373291},{"label":"Asie Centrale","x":-319.7685546875,"y":-1110.31103515625,"id":"344","color":"rgb(255,51,51)","size":5.282204627990723},{"label":"Glacial Valley","x":-181.54881286621094,"y":2009.858154296875,"id":"1100","color":"rgb(0,204,204)","size":4.0086140632629395},{"label":"Lomrog","x":-209.9856719970703,"y":1389.962646484375,"id":"1304","color":"rgb(255,255,51)","size":4.293514728546143},{"label":"Fonte Des Neiges","x":762.1256103515625,"y":-414.39501953125,"id":"866","color":"rgb(153,255,255)","size":4.293514728546143},{"label":"1er Juillet 1909","x":-499.7980651855469,"y":233.0601806640625,"id":"41","color":"rgb(0,204,204)","size":4.0086140632629395},{"label":"Geophysical Research","x":233.82315063476562,"y":1178.865966796875,"id":"224","color":"rgb(255,204,102)","size":5.282204627990723},{"label":"East Antarctica","x":-88.15560150146484,"y":1613.804931640625,"id":"851","color":"rgb(153,255,255)","size":4.075808525085449},{"label":"Espèce Humaine","x":758.9379272460938,"y":-1053.2381591796875,"id":"107","color":"rgb(102,255,102)","size":4.206028938293457},{"label":"Laboratoire De Physique","x":1664.2449951171875,"y":111.04265594482422,"id":"647","color":"rgb(255,255,51)","size":4.6399359703063965},{"label":"Sápmi","x":-1812.7078857421875,"y":2444.205078125,"id":"1615","color":"rgb(204,204,255)","size":4.293514728546143},{"label":"Banquise Continentale","x":494.56414794921875,"y":-35.85556411743164,"id":"407","color":"rgb(153,255,255)","size":4.206028938293457},{"label":"Ressources Pétrolières","x":5.557656764984131,"y":-1679.0411376953125,"id":"1593","color":"rgb(102,0,102)","size":4.6399359703063965},{"label":"Calotte Polaire","x":716.3751831054688,"y":-65.0952377319336,"id":"408","color":"rgb(153,255,255)","size":10.178449630737305},{"label":"Club De Rome","x":633.6453857421875,"y":-1392.46533203125,"id":"643","color":"rgb(255,51,51)","size":4.293514728546143},{"label":"Action 21","x":300.5744934082031,"y":-1140.8724365234375,"id":"98","color":"rgb(102,255,102)","size":4.133297443389893},{"label":"Pacifique Nord","x":-69.47128295898438,"y":-741.9420166015625,"id":"201","color":"rgb(255,51,51)","size":5.103478908538818},{"label":"Lac Inari","x":-517.269287109375,"y":-265.3852233886719,"id":"1267","color":"rgb(0,204,204)","size":4.510906219482422},{"label":"Gazoduc Nord Stream","x":-615.8136596679688,"y":-1195.086669921875,"id":"1049","color":"rgb(102,0,102)","size":4.293514728546143},{"label":"Compose Organique Volatil","x":1425.1248779296875,"y":-1582.4134521484375,"id":"669","color":"rgb(102,102,0)","size":4.133297443389893},{"label":"Tromsø","x":-1374.7109375,"y":1913.8165283203125,"id":"1690","color":"rgb(0,204,204)","size":4.133297443389893},{"label":"Peninsule De Kola","x":-309.8347473144531,"y":-942.0747680664062,"id":"1466","color":"rgb(255,51,51)","size":4.39528751373291},{"label":"Équilibre Physique","x":124.99056243896484,"y":-1557.06103515625,"id":"923","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Conférence De Rio","x":390.2206115722656,"y":-1159.0963134765625,"id":"687","color":"rgb(102,255,102)","size":4.510906219482422},{"label":"Cristal De Glace","x":1232.4102783203125,"y":-102.79730987548828,"id":"146","color":"rgb(255,255,51)","size":4.206028938293457},{"label":"Colin Ware","x":926.259033203125,"y":1965.2078857421875,"id":"566","color":"rgb(255,255,51)","size":4.0},{"label":"Technologie","x":1581.9178466796875,"y":-336.73651123046875,"id":"1665","color":"rgb(255,255,51)","size":4.0340681076049805},{"label":"Affaiblissement","x":-122.19145202636719,"y":-1517.307861328125,"id":"126","color":"rgb(153,0,0)","size":4.0086140632629395},{"label":"Echelle De Temps","x":1488.7841796875,"y":-631.0740356445312,"id":"554","color":"rgb(255,204,102)","size":4.39528751373291},{"label":"Nuit Polaire","x":-99.41971588134766,"y":227.19300842285156,"id":"370","color":"rgb(0,204,204)","size":6.341859817504883},{"label":"Système Opérant","x":1278.6395263671875,"y":-1429.378662109375,"id":"1661","color":"rgb(153,255,0)","size":4.206028938293457},{"label":"Bilan Radiatif","x":1147.6866455078125,"y":-749.841552734375,"id":"459","color":"rgb(255,204,102)","size":4.6399359703063965},{"label":"Accord International","x":200.89614868164062,"y":-1449.5303955078125,"id":"83","color":"rgb(255,51,51)","size":4.206028938293457},{"label":"Global Carbon","x":-402.25408935546875,"y":928.3751831054688,"id":"1109","color":"rgb(102,255,102)","size":4.133297443389893},{"label":"Pays Scandinave","x":-880.7955932617188,"y":-1050.10595703125,"id":"765","color":"rgb(255,51,51)","size":4.6399359703063965},{"label":"Same","x":-1110.919921875,"y":401.4477233886719,"id":"1610","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Gas Field","x":-2166.35986328125,"y":897.1481323242188,"id":"1034","color":"rgb(102,0,102)","size":4.781970500946045},{"label":"Reindeer Herding","x":-1707.0650634765625,"y":2392.613037109375,"id":"1279","color":"rgb(204,204,255)","size":5.472443103790283},{"label":"Agricultural Science","x":-384.6358947753906,"y":662.8099365234375,"id":"151","color":"rgb(102,255,102)","size":4.0},{"label":"Glissement De Terrain","x":1159.54150390625,"y":-1336.1181640625,"id":"27","color":"rgb(255,204,102)","size":4.6399359703063965},{"label":"Dérive Arctique","x":141.0907745361328,"y":-99.68477630615234,"id":"797","color":"rgb(0,204,204)","size":4.510906219482422},{"label":"Law Of Sea","x":-454.2995910644531,"y":200.2239227294922,"id":"338","color":"rgb(0,204,204)","size":4.0086140632629395},{"label":"Vitesse De Derive","x":543.1426391601562,"y":392.12109375,"id":"1364","color":"rgb(153,255,255)","size":4.075808525085449},{"label":"Far North","x":-1296.9681396484375,"y":2076.255126953125,"id":"486","color":"rgb(0,204,204)","size":4.133297443389893},{"label":"Importance Stratégique","x":666.7877197265625,"y":-1432.8302001953125,"id":"1189","color":"rgb(255,51,51)","size":4.293514728546143},{"label":"Global Climate","x":-197.5624237060547,"y":1134.3074951171875,"id":"300","color":"rgb(102,255,102)","size":5.886096477508545},{"label":"Rayon De Soleil","x":1629.82470703125,"y":-1112.863037109375,"id":"1289","color":"rgb(255,204,102)","size":4.0086140632629395},{"label":"Pétrole","x":-376.43804931640625,"y":-1084.022705078125,"id":"1477","color":"rgb(102,0,102)","size":4.510906219482422},{"label":"Observation Satellitaire","x":506.5022277832031,"y":-307.2046813964844,"id":"1427","color":"rgb(255,204,102)","size":4.293514728546143},{"label":"Diversité Biologique","x":386.11077880859375,"y":-1118.481689453125,"id":"100","color":"rgb(153,255,0)","size":4.39528751373291},{"label":"Genie Civil","x":2628.016357421875,"y":490.0144348144531,"id":"662","color":"rgb(255,255,51)","size":4.510906219482422},{"label":"Territoires Du Nord","x":-403.6544494628906,"y":-31.657672882080078,"id":"284","color":"rgb(0,204,204)","size":5.103478908538818},{"label":"Dorsale Océanique","x":1771.7816162109375,"y":-541.5540161132812,"id":"265","color":"rgb(255,204,102)","size":4.781970500946045},{"label":"Cercle Arctique","x":-114.37723541259766,"y":-244.14686584472656,"id":"573","color":"rgb(0,204,204)","size":4.781970500946045},{"label":"Mackenzie Valley","x":-1897.8876953125,"y":1437.210693359375,"id":"786","color":"rgb(0,204,204)","size":4.39528751373291},{"label":"Barrel Of Oil","x":-2069.470703125,"y":796.83154296875,"id":"37","color":"rgb(102,0,102)","size":6.584775924682617},{"label":"Température","x":1094.9617919921875,"y":2582.613525390625,"id":"1670","color":"rgb(255,255,51)","size":4.39528751373291},{"label":"Alfred Wegener","x":140.85134887695312,"y":1208.193115234375,"id":"210","color":"rgb(255,255,51)","size":4.075808525085449},{"label":"Danger","x":-1045.3048095703125,"y":560.9677734375,"id":"766","color":"rgb(102,255,102)","size":4.0086140632629395},{"label":"Gaz Naturel Pour Véhicules","x":34.037445068359375,"y":-960.7977905273438,"id":"1045","color":"rgb(0,153,0)","size":4.206028938293457},{"label":"International Commission","x":-170.1094207763672,"y":173.10662841796875,"id":"1218","color":"rgb(0,204,204)","size":4.0340681076049805},{"label":"Archéologie","x":1697.4716796875,"y":-422.6084289550781,"id":"278","color":"rgb(255,255,51)","size":4.0},{"label":"Pygargue","x":-530.29248046875,"y":-718.80859375,"id":"1553","color":"rgb(204,204,255)","size":4.133297443389893},{"label":"Glaciologues","x":603.4629516601562,"y":-287.44390869140625,"id":"1107","color":"rgb(255,204,102)","size":4.510906219482422},{"label":"Nombre De Reynolds","x":2456.903076171875,"y":178.03688049316406,"id":"889","color":"rgb(255,255,0)","size":4.075808525085449},{"label":"Petit Rorqual","x":-97.76100158691406,"y":-1044.327392578125,"id":"394","color":"rgb(153,255,0)","size":4.133297443389893},{"label":"Parc National Wapusk","x":110.16836547851562,"y":-938.0703735351562,"id":"1458","color":"rgb(153,255,0)","size":4.075808525085449},{"label":"Impact Environnemental","x":900.10498046875,"y":-1452.6837158203125,"id":"250","color":"rgb(153,255,0)","size":6.584775924682617},{"label":"University Of Northern British","x":-1309.81298828125,"y":-512.9873046875,"id":"1400","color":"rgb(153,255,255)","size":4.0},{"label":"Etude Du Quaternaire","x":1390.19189453125,"y":-603.2861938476562,"id":"926","color":"rgb(255,204,102)","size":4.206028938293457},{"label":"Forêt Boréale","x":-7.181797981262207,"y":-917.6866455078125,"id":"497","color":"rgb(0,153,0)","size":4.6399359703063965},{"label":"Skaller","x":-1005.0679931640625,"y":254.76441955566406,"id":"1635","color":"rgb(255,51,51)","size":4.0},{"label":"Brise-Glace Russe","x":314.2594909667969,"y":-57.35684585571289,"id":"506","color":"rgb(153,255,255)","size":4.39528751373291},{"label":"Unesco Biosphere","x":-1305.965576171875,"y":1596.37890625,"id":"473","color":"rgb(0,204,204)","size":4.206028938293457},{"label":"Approche Systémique","x":1452.9090576171875,"y":-1503.2738037109375,"id":"1662","color":"rgb(255,255,51)","size":4.0},{"label":"62.809 Km²","x":-3687.156982421875,"y":-1498.2891845703125,"id":"58","color":"rgb(255,255,51)","size":4.0},{"label":"Pole Nord","x":142.79425048828125,"y":98.24790954589844,"id":"49","color":"rgb(0,204,204)","size":31.900625228881836},{"label":"Surfaces Englacées","x":1017.113037109375,"y":48.020137786865234,"id":"1657","color":"rgb(153,255,255)","size":4.39528751373291},{"label":"Observatoire Des Sciences","x":1681.810302734375,"y":327.4986267089844,"id":"1262","color":"rgb(255,255,51)","size":4.133297443389893},{"label":"Satellite Service","x":357.4742126464844,"y":2558.146728515625,"id":"1617","color":"rgb(255,153,153)","size":4.0},{"label":"Ours Brun","x":-546.7056274414062,"y":-570.5150756835938,"id":"749","color":"rgb(153,255,0)","size":4.075808525085449},{"label":"Baker Lake","x":-1292.3116455078125,"y":1876.362548828125,"id":"1377","color":"rgb(0,204,204)","size":4.0},{"label":"Cargo Ship","x":-1623.7650146484375,"y":56.645198822021484,"id":"1274","color":"rgb(255,51,51)","size":4.0},{"label":"Northern Hemisphere","x":-425.2862548828125,"y":1888.925537109375,"id":"1407","color":"rgb(0,204,204)","size":4.293514728546143},{"label":"Circulation Thermohaline","x":585.6029052734375,"y":-267.0980529785156,"id":"610","color":"rgb(255,204,102)","size":4.39528751373291},{"label":"Satellite Photo","x":591.8084106445312,"y":1738.074462890625,"id":"1185","color":"rgb(255,153,153)","size":4.0086140632629395},{"label":"Institut Royal","x":1343.8946533203125,"y":-224.90185546875,"id":"1207","color":"rgb(255,255,51)","size":4.0},{"label":"Glacial Retreat","x":-633.63037109375,"y":1639.9283447265625,"id":"1099","color":"rgb(153,255,255)","size":4.075808525085449},{"label":"Institute Of Geophysics","x":746.8310546875,"y":968.5191040039062,"id":"1075","color":"rgb(255,204,102)","size":4.0340681076049805},{"label":"Réserves D\u0027Énergies Fossiles,1","x":568.9767456054688,"y":-1300.394287109375,"id":"1589","attributes":{"nodedef":"n1589"},"color":"rgb(0,153,0)","size":4.510906219482422},{"label":"Petroleum Congress","x":-1832.741943359375,"y":921.537109375,"id":"991","color":"rgb(102,0,102)","size":4.075808525085449},{"label":"International Polar","x":-80.96073913574219,"y":1307.7596435546875,"id":"181","color":"rgb(153,255,255)","size":6.837328910827637},{"label":"Amplitude Thermique","x":1254.463134765625,"y":-699.683837890625,"id":"235","color":"rgb(255,204,102)","size":4.206028938293457},{"label":"Lapons","x":-759.9954223632812,"y":-489.00518798828125,"id":"1277","color":"rgb(204,204,255)","size":4.075808525085449},{"label":"Inuit People","x":-1119.61962890625,"y":2266.22998046875,"id":"528","color":"rgb(204,204,255)","size":4.6399359703063965},{"label":"Spitzberg","x":-408.04937744140625,"y":-213.5766143798828,"id":"1650","color":"rgb(0,204,204)","size":4.6399359703063965},{"label":"Carottes Glaciaires","x":969.6451416015625,"y":-432.83563232421875,"id":"63","color":"rgb(255,255,51)","size":5.472443103790283},{"label":"Robert Peary","x":-922.84228515625,"y":1658.168212890625,"id":"1557","color":"rgb(0,204,204)","size":4.293514728546143},{"label":"Hectares Globaux","x":562.0274658203125,"y":-1184.515869140625,"id":"902","color":"rgb(153,255,0)","size":4.293514728546143},{"label":"Element Chimique","x":1355.92431640625,"y":-1334.5970458984375,"id":"624","color":"rgb(102,102,0)","size":4.293514728546143},{"label":"Norwegian National","x":-2346.080322265625,"y":2597.039794921875,"id":"1414","color":"rgb(0,204,204)","size":4.0086140632629395},{"label":"Geographic Explorer","x":-1533.6759033203125,"y":1280.688232421875,"id":"1065","color":"rgb(153,255,0)","size":4.206028938293457},{"label":"Jean Lemire","x":411.0581359863281,"y":203.411865234375,"id":"1243","color":"rgb(153,255,255)","size":4.206028938293457},{"label":"Protection Animale","x":194.66322326660156,"y":-1489.9267578125,"id":"919","color":"rgb(153,255,0)","size":4.0086140632629395},{"label":"Gazoducs","x":-246.90235900878906,"y":-1405.90234375,"id":"1051","color":"rgb(102,0,102)","size":4.39528751373291},{"label":"Loi De Newton","x":2768.0830078125,"y":739.8944702148438,"id":"1526","color":"rgb(255,255,0)","size":4.0086140632629395},{"label":"Terre Agricole","x":1055.7603759765625,"y":-1679.8907470703125,"id":"736","color":"rgb(153,255,0)","size":4.206028938293457},{"label":"Arctic Research","x":-595.9910888671875,"y":1777.158447265625,"id":"306","color":"rgb(153,255,255)","size":4.936610698699951},{"label":"Papanine","x":67.4764404296875,"y":321.97711181640625,"id":"1457","color":"rgb(0,204,204)","size":4.6399359703063965},{"label":"Planck Institute","x":1722.83447265625,"y":184.09603881835938,"id":"1265","color":"rgb(255,255,51)","size":4.0086140632629395},{"label":"Sedna Iv","x":240.6781768798828,"y":225.52828979492188,"id":"1626","color":"rgb(0,204,204)","size":4.293514728546143},{"label":"1986","x":-967.396728515625,"y":216.6686248779297,"id":"13","color":"rgb(255,51,51)","size":4.0},{"label":"Resolution De Conflit","x":-802.1610107421875,"y":-614.1929321289062,"id":"692","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Nappe Phréatique","x":686.59765625,"y":-1779.1011962890625,"id":"1379","color":"rgb(153,255,0)","size":4.39528751373291},{"label":"Gérard Jugie","x":649.3414306640625,"y":24.25006103515625,"id":"1084","color":"rgb(153,255,255)","size":4.133297443389893},{"label":"Rayonnement Solaire","x":1429.1036376953125,"y":-987.4943237304688,"id":"366","color":"rgb(255,204,102)","size":4.781970500946045},{"label":"Chtokman","x":-587.8933715820312,"y":-1263.6697998046875,"id":"604","color":"rgb(255,51,51)","size":4.293514728546143},{"label":"Banque Mondiale","x":207.86805725097656,"y":-1685.1241455078125,"id":"175","color":"rgb(153,0,0)","size":5.886096477508545},{"label":"Habitat Écologique","x":879.9754638671875,"y":-1601.36962890625,"id":"876","color":"rgb(153,255,0)","size":4.206028938293457},{"label":"Aker Yards","x":-590.3784790039062,"y":-1667.7393798828125,"id":"1217","color":"rgb(255,51,51)","size":4.0},{"label":"Norwegian Fjords","x":-1819.7435302734375,"y":1941.7181396484375,"id":"993","color":"rgb(0,204,204)","size":4.6399359703063965},{"label":"Courants Marins","x":740.0386352539062,"y":-772.4693603515625,"id":"725","color":"rgb(255,204,102)","size":4.39528751373291},{"label":"World Biosphere","x":-1380.392822265625,"y":1572.7969970703125,"id":"474","color":"rgb(0,204,204)","size":4.133297443389893},{"label":"Glacial Arctique","x":-98.87494659423828,"y":-112.53652954101562,"id":"405","color":"rgb(0,204,204)","size":9.173389434814453},{"label":"Le Fram","x":1.6208196878433228,"y":820.0587768554688,"id":"1285","color":"rgb(153,255,255)","size":4.206028938293457},{"label":"Balises","x":1477.4683837890625,"y":-1345.0499267578125,"id":"395","color":"rgb(255,255,51)","size":4.0},{"label":"Méthane","x":-722.9597778320312,"y":1301.656005859375,"id":"1349","color":"rgb(0,153,0)","size":4.206028938293457},{"label":"Bénéfice Net","x":-632.4590454101562,"y":-1823.570068359375,"id":"1328","color":"rgb(153,0,0)","size":4.0086140632629395},{"label":"National Geographic","x":-1397.74169921875,"y":1131.574951171875,"id":"479","color":"rgb(153,255,0)","size":5.103478908538818},{"label":"Régions Arctiques","x":57.04184341430664,"y":-398.7633972167969,"id":"484","color":"rgb(0,204,204)","size":6.837328910827637},{"label":"Light Pollution","x":-1550.57373046875,"y":963.8270263671875,"id":"1516","color":"rgb(102,102,0)","size":4.0},{"label":"Recyclage Des Déchets","x":654.7275390625,"y":-2429.897705078125,"id":"770","color":"rgb(102,102,0)","size":4.39528751373291},{"label":"Igloo Building","x":-1083.1083984375,"y":2375.260009765625,"id":"1171","color":"rgb(204,204,255)","size":4.0},{"label":"Ile Wrangel","x":-254.5749969482422,"y":-439.13525390625,"id":"1180","color":"rgb(0,204,204)","size":4.39528751373291},{"label":"Pôle Nord Magnétique","x":492.461669921875,"y":627.1895141601562,"id":"1510","color":"rgb(153,255,255)","size":4.39528751373291},{"label":"Agence Nationale","x":1428.78466796875,"y":-1177.7340087890625,"id":"772","color":"rgb(255,255,51)","size":4.133297443389893},{"label":"Précipitations Faibles","x":1415.2930908203125,"y":-583.3818969726562,"id":"1530","color":"rgb(255,204,102)","size":4.133297443389893},{"label":"Dégradations Écologiques","x":431.67926025390625,"y":-1474.4056396484375,"id":"780","color":"rgb(255,51,51)","size":4.39528751373291},{"label":"Finnish Economy","x":-941.7028198242188,"y":-1652.6466064453125,"id":"986","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Norwegian Government","x":-2365.86767578125,"y":2572.55810546875,"id":"1413","color":"rgb(0,204,204)","size":4.0086140632629395},{"label":"Analyses De Cycle De Vie","x":1009.1702880859375,"y":-1412.4342041015625,"id":"249","color":"rgb(153,255,0)","size":4.6399359703063965},{"label":"International Polar Year","x":-58.65946960449219,"y":1398.2398681640625,"id":"1222","color":"rgb(153,255,255)","size":4.206028938293457},{"label":"Nombreux Polluants","x":1069.2344970703125,"y":-1600.981201171875,"id":"1397","color":"rgb(102,102,0)","size":4.39528751373291},{"label":"Évolution De La Glace","x":855.4246826171875,"y":-23.298423767089844,"id":"951","color":"rgb(153,255,255)","size":4.293514728546143},{"label":"Ice Patrol","x":-550.0018310546875,"y":1364.3714599609375,"id":"1166","color":"rgb(102,255,102)","size":4.0086140632629395},{"label":"Radio Association","x":-1379.472900390625,"y":268.6378479003906,"id":"546","color":"rgb(255,51,51)","size":4.0},{"label":"Fridtjof Nansen","x":-640.83935546875,"y":2040.8262939453125,"id":"979","color":"rgb(0,204,204)","size":4.936610698699951},{"label":"Risque Naturel","x":1649.328125,"y":-1627.618896484375,"id":"456","color":"rgb(102,102,0)","size":5.282204627990723},{"label":"Déclinaison Magnétique","x":626.72119140625,"y":533.5086669921875,"id":"589","color":"rgb(153,255,255)","size":5.282204627990723},{"label":"Eaux Territoriales","x":-189.23031616210938,"y":-1744.7435302734375,"id":"712","color":"rgb(153,0,0)","size":5.886096477508545},{"label":"Règlementer La Protection De L\u0027Environnement,1","x":319.12982177734375,"y":-1075.597900390625,"id":"1578","attributes":{"nodedef":"n1578"},"color":"rgb(102,255,102)","size":4.0340681076049805},{"label":"Variations Glaciaires","x":1004.5759887695312,"y":-546.2811279296875,"id":"1701","color":"rgb(255,204,102)","size":4.293514728546143},{"label":"Wildlife Refuge","x":-2488.70947265625,"y":935.2979125976562,"id":"276","color":"rgb(153,255,0)","size":4.781970500946045},{"label":"Gold Rush","x":-1305.9024658203125,"y":640.7337036132812,"id":"1120","color":"rgb(153,0,0)","size":4.293514728546143},{"label":"Telescope Spatial","x":1484.6490478515625,"y":-77.53192901611328,"id":"349","color":"rgb(255,153,153)","size":4.075808525085449},{"label":"Human Impact","x":-242.1216278076172,"y":320.5730285644531,"id":"1160","color":"rgb(0,204,204)","size":4.133297443389893},{"label":"Amis De La Terre","x":401.504150390625,"y":-1223.7393798828125,"id":"103","color":"rgb(0,153,0)","size":4.510906219482422},{"label":"Sonde Voyager","x":1429.6922607421875,"y":181.77130126953125,"id":"860","color":"rgb(255,153,153)","size":4.133297443389893},{"label":"Polar Orbit","x":390.5345153808594,"y":2202.097412109375,"id":"913","color":"rgb(255,153,153)","size":4.510906219482422},{"label":"Carnivorous Animals","x":-1647.055419921875,"y":-880.9697265625,"id":"1612","color":"rgb(204,204,255)","size":4.0},{"label":"Fjell","x":-1517.3455810546875,"y":1056.70654296875,"id":"990","color":"rgb(102,255,102)","size":4.0340681076049805},{"label":"Mikhail Malakhov","x":-609.2708129882812,"y":1933.433349609375,"id":"1355","color":"rgb(0,204,204)","size":4.133297443389893},{"label":"Données Environnementales","x":1346.6571044921875,"y":-1474.193359375,"id":"829","color":"rgb(153,255,0)","size":4.293514728546143},{"label":"Baffin Bay","x":-730.2673950195312,"y":1399.5347900390625,"id":"381","color":"rgb(102,255,102)","size":4.510906219482422},{"label":"Point De Non-Retour","x":602.4612426757812,"y":-325.70556640625,"id":"1504","color":"rgb(255,204,102)","size":4.0},{"label":"Hydrostatic Pressure","x":-407.7259216308594,"y":1971.3367919921875,"id":"1488","color":"rgb(153,255,255)","size":4.0},{"label":"Vladimir Vladimirovitch","x":-858.2808227539062,"y":-1503.6971435546875,"id":"1706","color":"rgb(255,51,51)","size":4.075808525085449},{"label":"Transhumance","x":-1474.1590576171875,"y":181.26686096191406,"id":"1687","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Laponie Finlandaise","x":-628.8026733398438,"y":-549.0878295898438,"id":"747","color":"rgb(204,204,255)","size":5.472443103790283},{"label":"Salmon Fishing","x":-2913.92822265625,"y":2500.835205078125,"id":"191","color":"rgb(0,204,204)","size":4.39528751373291},{"label":"Ice Shelf","x":-190.6495361328125,"y":1773.7933349609375,"id":"852","color":"rgb(153,255,255)","size":5.886096477508545},{"label":"Physique Nucléaire","x":1447.166748046875,"y":-458.37335205078125,"id":"1201","color":"rgb(255,255,51)","size":4.293514728546143},{"label":"Eaux Libres","x":625.849853515625,"y":-937.6300048828125,"id":"800","color":"rgb(102,255,102)","size":4.0340681076049805},{"label":"Tourisme De Masse","x":35.64778518676758,"y":-1237.3614501953125,"id":"1683","color":"rgb(153,0,0)","size":4.0340681076049805},{"label":"Comportement Mécanique Du Matériau Glace","x":890.2638549804688,"y":178.80201721191406,"id":"665","color":"rgb(153,255,255)","size":4.39528751373291},{"label":"1993","x":36.647705078125,"y":579.983154296875,"id":"15","color":"rgb(0,204,204)","size":4.0086140632629395},{"label":"Température Moyenne Du Globe","x":850.3651123046875,"y":-792.5848999023438,"id":"1674","color":"rgb(255,204,102)","size":4.6399359703063965},{"label":"Différence De Densité","x":1439.3902587890625,"y":-803.2998046875,"id":"815","color":"rgb(255,204,102)","size":4.206028938293457},{"label":"Cara","x":-1237.788330078125,"y":260.89483642578125,"id":"545","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Mackenzie River","x":-1691.715087890625,"y":1612.4267578125,"id":"322","color":"rgb(0,204,204)","size":5.282204627990723},{"label":"Claude Bourguignon","x":1691.6942138671875,"y":-1333.328369140625,"id":"630","color":"rgb(255,255,51)","size":4.0340681076049805},{"label":"Nageoire Caudale","x":215.7217254638672,"y":-1250.8089599609375,"id":"392","color":"rgb(153,255,0)","size":4.206028938293457},{"label":"Droit De La Mer","x":-210.29884338378906,"y":-1344.11865234375,"id":"843","color":"rgb(255,51,51)","size":4.206028938293457},{"label":"Réserves Hydrocarbures","x":-132.05116271972656,"y":-1118.11962890625,"id":"1590","color":"rgb(102,0,102)","size":4.293514728546143},{"label":"Geophysical Union","x":77.1497802734375,"y":873.7490844726562,"id":"724","color":"rgb(153,255,255)","size":4.510906219482422},{"label":"Astrophysique","x":1783.648681640625,"y":-140.97059631347656,"id":"345","color":"rgb(255,153,153)","size":4.133297443389893},{"label":"Détroit De Behring","x":-438.4812927246094,"y":-528.7012329101562,"id":"805","color":"rgb(255,51,51)","size":4.39528751373291},{"label":"Norway","x":-2236.260009765625,"y":1732.703369140625,"id":"1412","color":"rgb(0,204,204)","size":4.0340681076049805},{"label":"Geophysical Data","x":353.0085754394531,"y":1442.74609375,"id":"445","color":"rgb(255,204,102)","size":4.075808525085449},{"label":"Cyberdocumentaire","x":194.38003540039062,"y":-440.8644104003906,"id":"756","color":"rgb(102,255,102)","size":4.39528751373291},{"label":"Glaciologie Océanographie","x":1223.7781982421875,"y":-480.4251403808594,"id":"1105","color":"rgb(255,255,51)","size":4.206028938293457},{"label":"Geostationary Satellite","x":282.42694091796875,"y":2399.638916015625,"id":"653","color":"rgb(255,153,153)","size":4.6399359703063965},{"label":"Co2 Sequestration","x":-693.1399536132812,"y":1256.73974609375,"id":"649","color":"rgb(102,255,102)","size":4.206028938293457},{"label":"6-Avr-09","x":-851.099365234375,"y":-454.1927795410156,"id":"19","color":"rgb(0,204,204)","size":4.0086140632629395},{"label":"Zones De Fractures","x":1544.406494140625,"y":-418.4399719238281,"id":"1720","color":"rgb(255,255,51)","size":4.293514728546143},{"label":"Dégradations Sanitaires","x":-281.1681213378906,"y":-53.5842170715332,"id":"783","color":"rgb(0,204,204)","size":4.0086140632629395},{"label":"Bonne Pratique","x":949.76171875,"y":-1626.8707275390625,"id":"253","color":"rgb(153,255,0)","size":4.293514728546143},{"label":"National Wildlife","x":-2570.702392578125,"y":1014.2642211914062,"id":"275","color":"rgb(153,255,0)","size":4.781970500946045},{"label":"Pole Sud","x":526.24462890625,"y":302.62603759765625,"id":"513","color":"rgb(153,255,255)","size":10.527388572692871},{"label":"Croûte Océanique","x":1651.7996826171875,"y":-607.842041015625,"id":"264","color":"rgb(255,204,102)","size":5.282204627990723},{"label":"Arctic Climate","x":-653.6159057617188,"y":1591.3482666015625,"id":"298","color":"rgb(153,255,255)","size":4.936610698699951},{"label":"Milieu Naturel","x":685.8338012695312,"y":-1621.4942626953125,"id":"883","color":"rgb(153,255,0)","size":6.837328910827637},{"label":"Institut National De Recherche","x":1252.3394775390625,"y":204.79171752929688,"id":"1205","color":"rgb(255,255,51)","size":4.0086140632629395},{"label":"Goddard Institute","x":-430.7890930175781,"y":684.432373046875,"id":"1013","color":"rgb(0,204,204)","size":4.206028938293457},{"label":"Liquefied Natural Gas","x":-1997.0789794921875,"y":776.1526489257812,"id":"1036","color":"rgb(102,0,102)","size":4.206028938293457},{"label":"Comportement Mécanique","x":2692.309814453125,"y":363.16912841796875,"id":"658","color":"rgb(255,255,51)","size":4.206028938293457},{"label":"War Of Terror","x":-1307.4576416015625,"y":220.9207763671875,"id":"1710","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Pipkrakes","x":434.6990661621094,"y":-822.610107421875,"id":"1490","color":"rgb(102,255,102)","size":4.39528751373291},{"label":"Sustainable Development","x":-362.5677795410156,"y":419.285888671875,"id":"141","color":"rgb(0,204,204)","size":4.293514728546143},{"label":"Cycle De Vie","x":1149.1319580078125,"y":-1494.5059814453125,"id":"453","color":"rgb(153,255,0)","size":5.103478908538818},{"label":"Ouverture Du Passage Du Nord-Ouest","x":31.295948028564453,"y":-284.809814453125,"id":"1452","color":"rgb(153,0,0)","size":4.510906219482422},{"label":"Joseph-Elzéar Bernier (1852-1934)","x":-176.7270965576172,"y":32.511817932128906,"id":"1254","color":"rgb(0,204,204)","size":4.075808525085449},{"label":"Courbe Isotherme","x":586.0437622070312,"y":-222.40838623046875,"id":"730","color":"rgb(153,255,255)","size":4.510906219482422},{"label":"Extinction Des Espèces","x":399.3851623535156,"y":-1030.6234130859375,"id":"938","color":"rgb(153,255,0)","size":4.39528751373291},{"label":"Ice Cores","x":-151.26065063476562,"y":1561.3101806640625,"id":"626","color":"rgb(153,255,255)","size":6.108868598937988},{"label":"Université De Québec","x":1112.0452880859375,"y":-184.35299682617188,"id":"239","color":"rgb(255,255,51)","size":4.936610698699951},{"label":"Marine Sediment","x":-667.27099609375,"y":1089.9775390625,"id":"934","color":"rgb(0,153,0)","size":4.075808525085449},{"label":"Analyse De Données","x":1425.0694580078125,"y":-895.9777221679688,"id":"237","color":"rgb(255,204,102)","size":4.206028938293457},{"label":"Geophysique Interne","x":1671.1990966796875,"y":568.9614868164062,"id":"1074","color":"rgb(255,204,51)","size":4.6399359703063965},{"label":"Atlantic Drift","x":-915.51123046875,"y":1545.07080078125,"id":"350","color":"rgb(0,204,204)","size":4.0340681076049805},{"label":"Navire Océanographique","x":822.8958740234375,"y":-327.39044189453125,"id":"1395","color":"rgb(153,255,255)","size":4.133297443389893},{"label":"Carte Géographie","x":603.58984375,"y":-973.70751953125,"id":"145","color":"rgb(102,255,102)","size":4.075808525085449},{"label":"Zone Économique","x":-231.34207153320312,"y":-1606.3955078125,"id":"713","color":"rgb(153,0,0)","size":5.282204627990723},{"label":"Amérique Du Sud","x":-356.3387451171875,"y":-652.8462524414062,"id":"229","color":"rgb(255,51,51)","size":4.075808525085449},{"label":"Océan Glacial","x":-159.73886108398438,"y":-180.17025756835938,"id":"409","color":"rgb(0,204,204)","size":8.235326766967773},{"label":"Eruption Volcanique","x":1564.9263916015625,"y":-654.048583984375,"id":"559","color":"rgb(255,204,102)","size":4.075808525085449},{"label":"650 000 Ans","x":932.0712890625,"y":-565.0851440429688,"id":"60","color":"rgb(255,204,102)","size":4.6399359703063965},{"label":"Plateforme Pétrolière","x":-260.26751708984375,"y":-1877.6268310546875,"id":"655","color":"rgb(102,0,102)","size":4.0086140632629395},{"label":"Histoire Géologique","x":1214.1163330078125,"y":-670.208251953125,"id":"555","color":"rgb(255,204,102)","size":4.39528751373291},{"label":"Northern Quebec","x":-1248.2911376953125,"y":2663.8232421875,"id":"524","color":"rgb(0,204,204)","size":4.781970500946045},{"label":"Region Polaire","x":472.4181823730469,"y":-83.093505859375,"id":"51","color":"rgb(0,204,204)","size":18.676555633544922},{"label":"Canal De Suez","x":-197.74679565429688,"y":-2417.987060546875,"id":"529","color":"rgb(204,0,0)","size":4.075808525085449},{"label":"Iles Feroe","x":-635.4229736328125,"y":-723.7227172851562,"id":"1181","color":"rgb(255,51,51)","size":4.0340681076049805},{"label":"Najwa Nimri","x":-548.2072143554688,"y":-378.23529052734375,"id":"575","color":"rgb(0,204,204)","size":4.0},{"label":"Chef De Gouvernement","x":-647.8400268554688,"y":-1379.173095703125,"id":"599","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Réfugié Climatique","x":316.4598693847656,"y":-868.939697265625,"id":"1012","color":"rgb(102,255,102)","size":4.510906219482422},{"label":"Gilles Labarthe","x":317.49761962890625,"y":-1768.2515869140625,"id":"782","color":"rgb(153,0,0)","size":4.0086140632629395},{"label":"Earth Science","x":306.0815734863281,"y":1127.4530029296875,"id":"211","color":"rgb(255,204,102)","size":5.886096477508545},{"label":"Circulation Océanique Mondiale","x":548.7537841796875,"y":-394.6384582519531,"id":"611","color":"rgb(255,204,102)","size":4.510906219482422},{"label":"Volcanic Islands","x":-1667.2989501953125,"y":2117.06884765625,"id":"1241","color":"rgb(0,204,204)","size":4.0086140632629395},{"label":"Goélette Tara","x":248.9503936767578,"y":-164.35665893554688,"id":"789","color":"rgb(0,204,204)","size":4.781970500946045},{"label":"Gas Storage","x":-2368.42236328125,"y":790.8409423828125,"id":"1040","color":"rgb(102,0,102)","size":4.0340681076049805},{"label":"Annuaire Sciences","x":1520.93896484375,"y":-166.29861450195312,"id":"260","color":"rgb(255,255,51)","size":4.075808525085449},{"label":"Global Change","x":-328.3797912597656,"y":1407.6304931640625,"id":"368","color":"rgb(153,255,255)","size":4.781970500946045},{"label":"East Iceland","x":-1432.9488525390625,"y":1744.767822265625,"id":"853","color":"rgb(0,204,204)","size":4.075808525085449},{"label":"Quantité De Ressources Nécessaires","x":655.5470581054688,"y":-1010.1531982421875,"id":"1554","color":"rgb(0,153,0)","size":4.293514728546143},{"label":"Boris Gryzlov","x":-968.377197265625,"y":-695.67138671875,"id":"490","color":"rgb(255,51,51)","size":4.0340681076049805},{"label":"Adverse Reaction","x":-2583.47412109375,"y":-171.4156494140625,"id":"125","color":"rgb(255,51,51)","size":4.075808525085449},{"label":"Radio Commission","x":-1329.051513671875,"y":440.54400634765625,"id":"7","color":"rgb(255,51,51)","size":4.0},{"label":"Changements Climatiques","x":562.6347045898438,"y":-799.8172607421875,"id":"595","color":"rgb(102,255,102)","size":4.6399359703063965},{"label":"Marine Research","x":112.32674407958984,"y":687.9962158203125,"id":"212","color":"rgb(153,255,255)","size":4.206028938293457},{"label":"Fonds Marins Du Pôle","x":-206.661865234375,"y":-829.8015747070312,"id":"1007","color":"rgb(255,51,51)","size":4.133297443389893},{"label":"Météorologie","x":1402.136474609375,"y":119.9842300415039,"id":"1347","color":"rgb(255,204,102)","size":4.293514728546143},{"label":"Observatoire De Paris","x":1645.601806640625,"y":-187.08619689941406,"id":"348","color":"rgb(255,255,51)","size":4.781970500946045},{"label":"Lac Vostok","x":835.7393188476562,"y":-45.74352264404297,"id":"1268","color":"rgb(255,255,51)","size":4.206028938293457},{"label":"Sonde Viking","x":1175.79736328125,"y":944.133056640625,"id":"1643","color":"rgb(255,153,153)","size":4.0086140632629395},{"label":"Nappes","x":681.9324951171875,"y":-2016.6527099609375,"id":"1380","color":"rgb(102,102,0)","size":4.0086140632629395},{"label":"Bouclier Antimissile","x":-738.5277099609375,"y":-1235.395263671875,"id":"492","color":"rgb(255,51,51)","size":4.293514728546143},{"label":"Ocean Floor","x":-825.3276977539062,"y":1300.9876708984375,"id":"1324","color":"rgb(102,255,102)","size":4.206028938293457},{"label":"Détroit De Fram","x":-55.04530334472656,"y":-329.93707275390625,"id":"808","color":"rgb(0,204,204)","size":4.6399359703063965},{"label":"Frontier In American History","x":-1133.305419921875,"y":303.24676513671875,"id":"3","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Epfl Lausanne","x":1752.3311767578125,"y":349.822998046875,"id":"920","color":"rgb(255,255,51)","size":4.0340681076049805},{"label":"Science De La Terre","x":1194.40625,"y":-6.191011428833008,"id":"1620","color":"rgb(255,255,51)","size":4.206028938293457},{"label":"Crevasses","x":-1673.8072509765625,"y":1519.3421630859375,"id":"739","color":"rgb(0,204,204)","size":4.0},{"label":"Plan De Prévention De Risque Naturel","x":1859.6912841796875,"y":-1892.7198486328125,"id":"29","color":"rgb(102,102,0)","size":4.0},{"label":"Galveston Bay","x":-994.8403930664062,"y":810.9219360351562,"id":"1055","color":"rgb(102,255,102)","size":4.0},{"label":"Logistique","x":1180.882568359375,"y":-2362.267578125,"id":"1299","color":"rgb(153,0,0)","size":4.075808525085449},{"label":"Septentrional De L\u0027Europe,1","x":-599.4520263671875,"y":-240.5999298095703,"id":"1628","attributes":{"nodedef":"n1628"},"color":"rgb(0,204,204)","size":4.293514728546143},{"label":"Classe Dominante","x":330.9660949707031,"y":-1010.1752319335938,"id":"796","color":"rgb(153,255,0)","size":4.0},{"label":"Centrale Nucléaire","x":211.94808959960938,"y":-1468.9288330078125,"id":"427","color":"rgb(0,153,0)","size":5.282204627990723},{"label":"Elliptic Orbit","x":-174.8773956298828,"y":2327.053955078125,"id":"900","color":"rgb(255,153,153)","size":4.206028938293457},{"label":"Brume Légère","x":2014.856689453125,"y":-408.7442626953125,"id":"507","color":"rgb(255,204,102)","size":4.0},{"label":"Pollution Atmosphérique","x":1176.463134765625,"y":-1357.466064453125,"id":"1165","color":"rgb(102,102,0)","size":4.510906219482422},{"label":"Mackenzie Delta","x":-1785.2647705078125,"y":1501.4832763671875,"id":"1312","color":"rgb(0,204,204)","size":4.781970500946045},{"label":"Univers De Grenoble","x":1553.7344970703125,"y":344.835205078125,"id":"1210","color":"rgb(255,255,51)","size":4.206028938293457},{"label":"Inland Ice","x":-318.5847473144531,"y":1719.4364013671875,"id":"1197","color":"rgb(153,255,255)","size":4.39528751373291},{"label":"Baie Disko","x":-297.0066833496094,"y":-359.0252990722656,"id":"387","color":"rgb(0,204,204)","size":4.075808525085449},{"label":"Bald Eagle","x":-1986.3089599609375,"y":336.0643005371094,"id":"1384","color":"rgb(153,255,0)","size":4.0340681076049805},{"label":"Prélèvement","x":482.5769348144531,"y":-2409.00390625,"id":"1532","color":"rgb(102,102,0)","size":4.0086140632629395},{"label":"Environnement De Basse","x":926.786865234375,"y":-1721.84619140625,"id":"916","color":"rgb(153,255,0)","size":4.0086140632629395},{"label":"Renard Polaire","x":-566.1803588867188,"y":-770.5494384765625,"id":"1292","color":"rgb(153,255,0)","size":5.103478908538818},{"label":"Vallee Glaciaire","x":820.0235595703125,"y":-582.6707763671875,"id":"147","color":"rgb(255,204,102)","size":4.0340681076049805},{"label":"Physique Appliquée","x":2376.69384765625,"y":202.5380096435547,"id":"1484","color":"rgb(255,255,51)","size":4.0340681076049805},{"label":"Team North","x":-535.7245483398438,"y":2188.06884765625,"id":"1252","color":"rgb(0,204,204)","size":4.0},{"label":"Rhéologie","x":2337.57958984375,"y":488.13970947265625,"id":"1599","color":"rgb(255,255,51)","size":4.206028938293457},{"label":"European Space","x":679.074951171875,"y":1231.0482177734375,"id":"136","color":"rgb(255,153,153)","size":5.103478908538818},{"label":"Convention De Bâle","x":374.0647888183594,"y":-1949.95703125,"id":"706","color":"rgb(153,0,0)","size":4.293514728546143},{"label":"L\u0027Océan Glacial Arctique,1","x":48.046844482421875,"y":-310.00390625,"id":"1298","attributes":{"nodedef":"n1298"},"color":"rgb(0,204,204)","size":4.6399359703063965},{"label":"Icebergs","x":-401.4381103515625,"y":1591.3231201171875,"id":"1168","color":"rgb(153,255,255)","size":4.133297443389893},{"label":"Yukon Territories","x":-1300.5863037109375,"y":805.2991333007812,"id":"1718","color":"rgb(153,0,0)","size":4.293514728546143},{"label":"Conference On Environment","x":-733.2816772460938,"y":725.8975830078125,"id":"690","color":"rgb(102,255,102)","size":4.133297443389893},{"label":"Magerøya","x":-1317.69775390625,"y":2029.0751953125,"id":"1313","color":"rgb(0,204,204)","size":4.206028938293457},{"label":"Planète Terre","x":981.09326171875,"y":-350.93524169921875,"id":"1493","color":"rgb(255,255,51)","size":4.39528751373291},{"label":"Loi De Comportement","x":2595.855224609375,"y":256.8731384277344,"id":"659","color":"rgb(255,255,0)","size":4.133297443389893},{"label":"Geographical Society","x":-1606.1199951171875,"y":1324.9771728515625,"id":"1062","color":"rgb(153,255,0)","size":4.39528751373291},{"label":"Marine Russe","x":-537.8284912109375,"y":-1164.311767578125,"id":"505","color":"rgb(255,51,51)","size":4.936610698699951},{"label":"Bande Côtière","x":251.931396484375,"y":-960.4885864257812,"id":"402","color":"rgb(102,255,102)","size":4.075808525085449},{"label":"Exploitation Agricole","x":1264.929443359375,"y":-1911.810546875,"id":"154","color":"rgb(153,255,0)","size":4.293514728546143},{"label":"Peuple Autochtone","x":-238.15725708007812,"y":-465.5401611328125,"id":"695","color":"rgb(204,204,255)","size":4.6399359703063965},{"label":"Gas Price","x":-1848.1641845703125,"y":553.953125,"id":"207","color":"rgb(102,0,102)","size":4.6399359703063965},{"label":"Effet Dynamo","x":961.6566772460938,"y":513.2507934570312,"id":"588","color":"rgb(255,153,153)","size":4.0340681076049805},{"label":"Ignace Venetz","x":918.0681762695312,"y":469.9112854003906,"id":"1172","color":"rgb(255,255,51)","size":4.0340681076049805},{"label":"200 Metres","x":-146.15635681152344,"y":-719.9545288085938,"id":"503","color":"rgb(255,51,51)","size":4.0},{"label":"Loi De Mariotte","x":2331.056396484375,"y":-626.9660034179688,"id":"702","color":"rgb(255,204,102)","size":4.510906219482422},{"label":"Réchauffement Global","x":992.4798583984375,"y":-651.2942504882812,"id":"108","color":"rgb(255,204,102)","size":5.103478908538818},{"label":"Island Navy","x":-1509.423828125,"y":287.9374084472656,"id":"1228","color":"rgb(255,51,51)","size":4.0340681076049805},{"label":"Solid Earth","x":255.05235290527344,"y":1264.2841796875,"id":"225","color":"rgb(255,204,102)","size":4.293514728546143},{"label":"Terre De Baffin","x":-421.7633361816406,"y":441.2944030761719,"id":"283","color":"rgb(0,204,204)","size":4.510906219482422},{"label":"Station Météo","x":1904.0716552734375,"y":-653.455322265625,"id":"642","color":"rgb(255,204,102)","size":4.293514728546143},{"label":"Données Géographiques","x":1658.4525146484375,"y":-1306.4632568359375,"id":"830","color":"rgb(255,255,51)","size":4.206028938293457},{"label":"Global Ocean","x":139.24534606933594,"y":600.2429809570312,"id":"1113","color":"rgb(0,204,204)","size":4.0086140632629395},{"label":"Gestion Des Données","x":1647.5302734375,"y":-1473.1031494140625,"id":"831","color":"rgb(255,255,51)","size":4.075808525085449},{"label":"Arctic Haze","x":-328.0976867675781,"y":1800.9615478515625,"id":"305","color":"rgb(153,255,255)","size":4.293514728546143},{"label":"Coastal Erosion","x":-212.16925048828125,"y":1024.1375732421875,"id":"650","color":"rgb(102,255,102)","size":4.133297443389893},{"label":"Government Of Nunavut","x":-1442.6414794921875,"y":1648.6278076171875,"id":"517","color":"rgb(0,204,204)","size":4.206028938293457},{"label":"Al Gore","x":-573.0253295898438,"y":913.5389404296875,"id":"176","color":"rgb(0,204,204)","size":4.133297443389893},{"label":"Histoire Culturelle","x":1271.152099609375,"y":-1099.011962890625,"id":"1159","color":"rgb(255,255,51)","size":4.0086140632629395},{"label":"Libre De Droit","x":1470.94482421875,"y":-1249.3375244140625,"id":"440","color":"rgb(255,255,51)","size":4.075808525085449},{"label":"Space Agencies","x":719.65869140625,"y":1200.9990234375,"id":"137","color":"rgb(255,153,153)","size":5.103478908538818},{"label":"Navigation Maritime","x":946.244873046875,"y":130.5264129638672,"id":"1393","color":"rgb(255,255,51)","size":4.0},{"label":"Topographie","x":2066.535888671875,"y":-1426.6158447265625,"id":"1679","color":"rgb(255,255,51)","size":4.0340681076049805},{"label":"Norsk Hydro","x":-2283.26513671875,"y":937.6468505859375,"id":"1403","color":"rgb(102,0,102)","size":4.0340681076049805},{"label":"Progres Technique","x":11.202921867370605,"y":-1463.979248046875,"id":"1419","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Légendaire Passage","x":358.2781982421875,"y":-282.7051696777344,"id":"1286","color":"rgb(153,255,255)","size":4.206028938293457},{"label":"Habitat Naturel","x":716.3448486328125,"y":-1602.0145263671875,"id":"976","color":"rgb(153,255,0)","size":4.510906219482422},{"label":"Lapon","x":-1466.6243896484375,"y":78.49531555175781,"id":"1273","color":"rgb(153,255,0)","size":4.133297443389893},{"label":"Grand Lac Des Esclaves","x":-347.9867858886719,"y":-486.2426452636719,"id":"1134","color":"rgb(204,204,255)","size":4.133297443389893},{"label":"Biological Invasions","x":-293.0665283203125,"y":-505.9958801269531,"id":"466","color":"rgb(153,255,0)","size":4.0340681076049805},{"label":"Jan Mayen","x":-1543.442138671875,"y":2096.722412109375,"id":"1237","color":"rgb(0,204,204)","size":4.133297443389893},{"label":"Espece Disparue","x":567.878662109375,"y":-1223.2427978515625,"id":"936","color":"rgb(153,255,0)","size":4.133297443389893},{"label":"Palses","x":283.32855224609375,"y":-564.1228637695312,"id":"1456","color":"rgb(102,255,102)","size":4.510906219482422},{"label":"Menacer","x":56.30271530151367,"y":-1117.4920654296875,"id":"1332","color":"rgb(153,255,0)","size":4.0086140632629395},{"label":"Energie Solaire","x":1242.6446533203125,"y":-964.1528930664062,"id":"114","color":"rgb(0,153,0)","size":8.540210723876953},{"label":"Mission Banquise","x":94.93065643310547,"y":-12.493345260620117,"id":"801","color":"rgb(153,255,255)","size":5.103478908538818},{"label":"Mer Baltique","x":-582.2013549804688,"y":-959.6834716796875,"id":"1334","color":"rgb(255,51,51)","size":4.510906219482422},{"label":"Brown Bear","x":-761.362548828125,"y":-631.6953125,"id":"1449","color":"rgb(153,255,0)","size":4.0},{"label":"Hydrocarbures Aromatiques Polycycliques","x":1065.962646484375,"y":-1764.6729736328125,"id":"1162","color":"rgb(102,102,0)","size":4.293514728546143},{"label":"Baffin Island","x":-1026.7235107421875,"y":1774.6162109375,"id":"293","color":"rgb(0,204,204)","size":5.6738481521606445},{"label":"Calottes Glaciaires","x":811.1303100585938,"y":-547.6314697265625,"id":"514","color":"rgb(255,204,102)","size":4.6399359703063965},{"label":"Parc Naturel","x":648.4389038085938,"y":-1895.759521484375,"id":"935","color":"rgb(153,255,0)","size":4.075808525085449},{"label":"1926","x":-1055.7027587890625,"y":454.9776916503906,"id":"4","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Morses","x":-1462.1083984375,"y":135.85678100585938,"id":"1369","color":"rgb(153,255,0)","size":4.0340681076049805},{"label":"Plongée Inédite","x":-1133.52197265625,"y":-255.4286651611328,"id":"1500","color":"rgb(204,204,255)","size":4.206028938293457},{"label":"Water Level","x":-546.029296875,"y":2229.371337890625,"id":"1638","color":"rgb(153,255,255)","size":4.0340681076049805},{"label":"Vatnajökull","x":-1385.9775390625,"y":1713.69580078125,"id":"1702","color":"rgb(0,204,204)","size":4.39528751373291},{"label":"Taïga","x":-1005.849853515625,"y":2259.279052734375,"id":"1664","color":"rgb(204,204,255)","size":4.206028938293457},{"label":"Nuclear Test","x":-1154.5859375,"y":51.68592834472656,"id":"961","color":"rgb(255,51,51)","size":4.293514728546143},{"label":"Morue Polaire","x":94.72049713134766,"y":-789.96630859375,"id":"1374","color":"rgb(153,255,0)","size":4.39528751373291},{"label":"Atlantique Au Pacifique","x":-439.2219543457031,"y":-982.3482666015625,"id":"352","color":"rgb(153,0,0)","size":4.510906219482422},{"label":"Circulation Atmosphérique","x":1365.9012451171875,"y":-398.28692626953125,"id":"460","color":"rgb(255,255,51)","size":5.472443103790283},{"label":"Conditions Extrêmes","x":1417.91015625,"y":-823.0306396484375,"id":"677","color":"rgb(255,204,102)","size":4.206028938293457},{"label":"University Institute Of Technology","x":-3697.0966796875,"y":-1473.5218505859375,"id":"59","color":"rgb(255,255,51)","size":4.0},{"label":"Canada Lynx","x":-1001.9783325195312,"y":2532.795166015625,"id":"522","color":"rgb(0,204,204)","size":4.0086140632629395},{"label":"James Hansen","x":-478.28204345703125,"y":734.7833251953125,"id":"1014","color":"rgb(102,255,102)","size":4.293514728546143},{"label":"Peak Oil","x":-1167.2392578125,"y":524.763427734375,"id":"430","color":"rgb(102,0,102)","size":4.510906219482422},{"label":"Croissance Economique","x":481.40350341796875,"y":-1703.0057373046875,"id":"645","color":"rgb(153,0,0)","size":4.781970500946045},{"label":"Nature Center","x":-635.1229248046875,"y":819.4346313476562,"id":"1388","color":"rgb(153,255,0)","size":4.0340681076049805},{"label":"Frederick Albert","x":-824.1995849609375,"y":1089.054931640625,"id":"1026","color":"rgb(102,255,102)","size":4.075808525085449},{"label":"Amirauté Britannique","x":122.9698715209961,"y":-869.6787109375,"id":"231","color":"rgb(153,255,0)","size":4.0086140632629395},{"label":"Remote Operated Vehicle","x":531.0745239257812,"y":1574.986572265625,"id":"1430","color":"rgb(255,153,153)","size":4.0086140632629395},{"label":"Banquise","x":234.07656860351562,"y":-241.07652282714844,"id":"404","color":"rgb(0,204,204)","size":4.6399359703063965},{"label":"Islande","x":-635.1261596679688,"y":-631.5878295898438,"id":"1230","color":"rgb(255,51,51)","size":4.206028938293457},{"label":"Phytoplancton","x":565.5634765625,"y":-889.5340576171875,"id":"1485","color":"rgb(153,255,0)","size":4.206028938293457},{"label":"Revendications Territoriales En Arctique","x":236.14395141601562,"y":-373.0220642089844,"id":"1597","color":"rgb(102,255,102)","size":4.293514728546143},{"label":"Uiuc","x":-757.5460815429688,"y":900.6135864257812,"id":"1692","color":"rgb(102,255,102)","size":4.0086140632629395},{"label":"Perturbation","x":-162.2955322265625,"y":2552.986572265625,"id":"1475","color":"rgb(255,153,153)","size":4.0086140632629395},{"label":"Baie De Baffin","x":-173.62672424316406,"y":93.36151123046875,"id":"382","color":"rgb(0,204,204)","size":4.781970500946045},{"label":"Arktika 2007","x":-125.97048950195312,"y":542.8394165039062,"id":"337","color":"rgb(0,204,204)","size":4.510906219482422},{"label":"Passage Du Nord-Ouest","x":-103.84112548828125,"y":-353.5108947753906,"id":"1459","color":"rgb(153,0,0)","size":4.510906219482422},{"label":"Co2 Emission","x":-571.61376953125,"y":1040.9888916015625,"id":"549","color":"rgb(102,255,102)","size":4.6399359703063965},{"label":"Cout De Production","x":729.2435913085938,"y":-1758.0506591796875,"id":"733","color":"rgb(153,0,0)","size":4.0086140632629395},{"label":"Energy Source","x":-949.5540771484375,"y":1256.624755859375,"id":"906","color":"rgb(0,153,0)","size":4.510906219482422},{"label":"Barents Region","x":-1531.8826904296875,"y":1764.85791015625,"id":"414","color":"rgb(0,204,204)","size":4.133297443389893},{"label":"Pays Industrialise","x":573.6298217773438,"y":-1248.1722412109375,"id":"592","color":"rgb(0,153,0)","size":4.936610698699951},{"label":"Nanisivik","x":-1202.904296875,"y":1798.4354248046875,"id":"1376","color":"rgb(0,204,204)","size":4.206028938293457},{"label":"Froid","x":1200.5894775390625,"y":-1286.499755859375,"id":"1031","color":"rgb(255,204,102)","size":4.0086140632629395},{"label":"Ère Glaciaire","x":836.2801513671875,"y":-528.111083984375,"id":"925","color":"rgb(255,204,102)","size":4.293514728546143},{"label":"Carrefour Internet","x":-1480.3045654296875,"y":-671.3770141601562,"id":"1439","color":"rgb(153,0,0)","size":4.0},{"label":"Earth Observing","x":331.4771728515625,"y":1300.4405517578125,"id":"848","color":"rgb(255,204,102)","size":4.075808525085449},{"label":"Statoilhydro","x":-2194.32373046875,"y":788.8901977539062,"id":"1651","color":"rgb(102,0,102)","size":4.206028938293457},{"label":"Style De Vie","x":-894.8253784179688,"y":-493.0680847167969,"id":"1440","color":"rgb(0,204,204)","size":4.0340681076049805},{"label":"Union Soviétique","x":-763.6751708984375,"y":-1542.8663330078125,"id":"33","color":"rgb(255,51,51)","size":4.510906219482422},{"label":"Carburant Fossile","x":831.7618408203125,"y":-1143.6112060546875,"id":"550","color":"rgb(0,153,0)","size":4.206028938293457},{"label":"Archives Climatiques","x":951.119384765625,"y":-398.11865234375,"id":"285","color":"rgb(255,255,51)","size":4.6399359703063965},{"label":"Emile Victor","x":491.4800720214844,"y":178.28729248046875,"id":"259","color":"rgb(153,255,255)","size":4.781970500946045},{"label":"Exploitation Des Ressources Naturelles","x":442.4892272949219,"y":-1748.2611083984375,"id":"964","color":"rgb(153,0,0)","size":4.510906219482422},{"label":"Forage Research","x":2844.0498046875,"y":3273.77978515625,"id":"1020","color":"rgb(102,102,0)","size":4.0},{"label":"Gradient De Pression","x":1744.927734375,"y":-345.5768127441406,"id":"609","color":"rgb(255,204,102)","size":4.293514728546143},{"label":"Réserves D\u0027Eau Potable,1","x":748.7661743164062,"y":-1352.6942138671875,"id":"1588","attributes":{"nodedef":"n1588"},"color":"rgb(0,153,0)","size":4.293514728546143},{"label":"Compagnie Aérienne","x":-736.46435546875,"y":-424.6734619140625,"id":"21","color":"rgb(153,0,0)","size":4.206028938293457},{"label":"Developpement Economique","x":354.28936767578125,"y":-1812.65283203125,"id":"96","color":"rgb(153,0,0)","size":8.852968215942383},{"label":"Disko Bay","x":-706.180908203125,"y":1659.318359375,"id":"819","color":"rgb(0,204,204)","size":4.075808525085449},{"label":"Soleil De Minuit","x":-747.2490234375,"y":-382.99755859375,"id":"533","color":"rgb(0,204,204)","size":6.341859817504883},{"label":"Satellites","x":310.328125,"y":2452.65283203125,"id":"1616","color":"rgb(255,153,153)","size":4.39528751373291},{"label":"German Research","x":132.76564025878906,"y":1355.157470703125,"id":"1508","color":"rgb(255,255,51)","size":4.0},{"label":"Cone De Dejection","x":1378.17236328125,"y":-1311.23779296875,"id":"1640","color":"rgb(102,102,0)","size":4.0},{"label":"Île Hans","x":-107.25237274169922,"y":-442.64801025390625,"id":"1176","color":"rgb(255,51,51)","size":4.133297443389893},{"label":"Drapeau Russe En Titane","x":-242.6774444580078,"y":-629.63525390625,"id":"840","color":"rgb(255,51,51)","size":4.39528751373291},{"label":"Calcul Des Variations","x":1703.5733642578125,"y":-715.7037353515625,"id":"1132","color":"rgb(255,204,102)","size":4.0086140632629395},{"label":"Agriculture Biologique","x":1389.9615478515625,"y":-1890.01220703125,"id":"152","color":"rgb(153,255,0)","size":4.510906219482422},{"label":"Station Spatiale","x":1019.3164672851562,"y":553.3150634765625,"id":"138","color":"rgb(255,153,153)","size":4.075808525085449},{"label":"Invasive Species","x":-38.249080657958984,"y":-809.7889404296875,"id":"467","color":"rgb(153,255,0)","size":4.0086140632629395},{"label":"Agroalimentaire Canada","x":1231.261962890625,"y":-1122.6280517578125,"id":"158","color":"rgb(153,255,0)","size":4.0340681076049805},{"label":"Brise Thermique","x":1796.84521484375,"y":-1453.11962890625,"id":"1634","color":"rgb(255,255,51)","size":4.0},{"label":"Natural Resource","x":-338.9927062988281,"y":600.8294677734375,"id":"150","color":"rgb(0,153,0)","size":6.584775924682617},{"label":"Mackenzie Basin","x":-1819.001708984375,"y":1630.96533203125,"id":"1311","color":"rgb(0,204,204)","size":4.0340681076049805},{"label":"Atmospheric Administration","x":212.73204040527344,"y":1831.9705810546875,"id":"307","color":"rgb(255,255,51)","size":4.39528751373291},{"label":"Brise-Glace Nucléaire","x":-14.00204849243164,"y":-612.0587158203125,"id":"501","color":"rgb(255,51,51)","size":4.510906219482422},{"label":"Liquid Water","x":775.841552734375,"y":1468.2659912109375,"id":"627","color":"rgb(255,255,51)","size":4.075808525085449},{"label":"Arctic Circle","x":-1167.511474609375,"y":1866.387451171875,"id":"292","color":"rgb(0,204,204)","size":8.852968215942383},{"label":"British Columbia","x":-680.8260498046875,"y":1174.98583984375,"id":"149","color":"rgb(102,255,102)","size":4.293514728546143},{"label":"Prudhoe Bay","x":-2199.666748046875,"y":1069.3577880859375,"id":"195","color":"rgb(102,0,102)","size":4.781970500946045},{"label":"Axel Heiberg","x":-875.6810302734375,"y":2022.853271484375,"id":"376","color":"rgb(0,204,204)","size":4.293514728546143},{"label":"Êtres Vivants","x":1280.424560546875,"y":-1506.078369140625,"id":"576","color":"rgb(153,255,0)","size":5.103478908538818},{"label":"Nord","x":-1128.7164306640625,"y":-480.7825622558594,"id":"1398","color":"rgb(153,255,255)","size":4.0340681076049805},{"label":"Grand Migrateur","x":413.6694641113281,"y":-1600.87353515625,"id":"1135","color":"rgb(153,255,0)","size":4.0340681076049805},{"label":"Voie Navigable","x":303.36151123046875,"y":-2323.163818359375,"id":"531","color":"rgb(153,0,0)","size":4.0340681076049805},{"label":"Petrole Brut","x":-304.07794189453125,"y":-1465.567626953125,"id":"424","color":"rgb(102,0,102)","size":6.584775924682617},{"label":"Steve Morse","x":-1578.6285400390625,"y":125.89031982421875,"id":"1371","color":"rgb(153,255,0)","size":4.0},{"label":"Opportunité","x":-1325.32763671875,"y":-624.910888671875,"id":"1438","color":"rgb(153,0,0)","size":4.0086140632629395},{"label":"Morue De L\u0027Atlantique,1","x":1.2945709228515625,"y":-1095.300048828125,"id":"1372","attributes":{"nodedef":"n1372"},"color":"rgb(153,255,0)","size":4.133297443389893},{"label":"Modèles Climatiques Informatiques","x":322.5306091308594,"y":324.6382751464844,"id":"1363","color":"rgb(153,255,255)","size":4.6399359703063965},{"label":"Guerre Froide","x":-629.8975219726562,"y":-1472.99658203125,"id":"217","color":"rgb(255,51,51)","size":4.936610698699951},{"label":"Polarstern","x":34.676597595214844,"y":1259.896484375,"id":"1507","color":"rgb(153,255,255)","size":4.133297443389893},{"label":"Northwest Passage","x":-690.6357421875,"y":1953.7867431640625,"id":"304","color":"rgb(153,0,0)","size":4.293514728546143},{"label":"Oil Drill","x":-2590.5537109375,"y":882.829345703125,"id":"40","color":"rgb(102,0,102)","size":4.6399359703063965},{"label":"Arctic National","x":-2465.8466796875,"y":850.1004028320312,"id":"270","color":"rgb(153,255,0)","size":5.6738481521606445},{"label":"High Place","x":-1380.56591796875,"y":200.6070556640625,"id":"1158","color":"rgb(255,51,51)","size":4.0340681076049805},{"label":"Nord Magnétique","x":557.978515625,"y":581.586669921875,"id":"267","color":"rgb(153,255,255)","size":6.584775924682617},{"label":"Espace Naturel","x":568.6636352539062,"y":-1583.75244140625,"id":"915","color":"rgb(153,255,0)","size":4.936610698699951},{"label":"Lisière De La Glace","x":184.7472686767578,"y":-611.1664428710938,"id":"1296","color":"rgb(102,255,102)","size":4.206028938293457},{"label":"Coast Guards","x":-534.0105590820312,"y":-614.1861572265625,"id":"1338","color":"rgb(255,51,51)","size":4.0},{"label":"Migration Des Rennes","x":-593.470458984375,"y":-594.5366821289062,"id":"1353","color":"rgb(153,255,0)","size":4.510906219482422},{"label":"Ecologie Profonde","x":595.971435546875,"y":-1096.5831298828125,"id":"877","color":"rgb(153,255,0)","size":4.133297443389893},{"label":"Capacité Calorifique","x":2820.78125,"y":-687.0199584960938,"id":"539","color":"rgb(255,255,51)","size":4.206028938293457},{"label":"Laboratoire De Mécanique","x":2629.334228515625,"y":406.2079772949219,"id":"664","color":"rgb(255,255,51)","size":4.39528751373291},{"label":"Lávvu","x":-2022.188720703125,"y":2395.55615234375,"id":"1281","color":"rgb(204,204,255)","size":4.075808525085449},{"label":"Dorsale De Lomonossov","x":29.32948875427246,"y":-721.5557861328125,"id":"833","color":"rgb(255,51,51)","size":5.472443103790283},{"label":"Climat Continental","x":1238.1683349609375,"y":-723.8411865234375,"id":"236","color":"rgb(255,204,102)","size":4.133297443389893},{"label":"Peuple Indigène","x":-120.85368347167969,"y":-765.8795776367188,"id":"731","color":"rgb(255,51,51)","size":4.39528751373291},{"label":"Champ Magnétique","x":837.4072265625,"y":444.8371276855469,"id":"113","color":"rgb(255,255,51)","size":9.501245498657227},{"label":"Fonte Banquise","x":404.0470275878906,"y":138.27108764648438,"id":"1016","color":"rgb(153,255,255)","size":4.510906219482422},{"label":"Gas Transmission","x":-2304.46142578125,"y":765.5785522460938,"id":"1039","color":"rgb(102,0,102)","size":4.510906219482422},{"label":"Valley Pipeline","x":-1920.1005859375,"y":1382.6810302734375,"id":"787","color":"rgb(102,0,102)","size":4.6399359703063965},{"label":"Intérêts Scientifiques","x":1755.324951171875,"y":-487.8387451171875,"id":"1215","color":"rgb(255,204,102)","size":4.075808525085449},{"label":"University Of Tromsø","x":-1464.7073974609375,"y":2000.673583984375,"id":"1691","color":"rgb(0,204,204)","size":4.0},{"label":"Moraines","x":-426.2164001464844,"y":1818.9564208984375,"id":"1368","color":"rgb(153,255,255)","size":4.075808525085449},{"label":"Lever De Soleil","x":1821.1827392578125,"y":-1282.8504638671875,"id":"738","color":"rgb(255,255,51)","size":4.0340681076049805},{"label":"Compagnie Pétrolière","x":-312.8392028808594,"y":-1654.1334228515625,"id":"437","color":"rgb(102,0,102)","size":7.099246978759766},{"label":"Images Satellites","x":741.8519897460938,"y":1143.925048828125,"id":"1184","color":"rgb(255,153,153)","size":4.293514728546143},{"label":"Qualite De Vie","x":53.828861236572266,"y":-1637.9798583984375,"id":"812","color":"rgb(255,51,51)","size":4.133297443389893},{"label":"Plaque Continentale","x":1758.8013916015625,"y":-631.8386840820312,"id":"835","color":"rgb(255,204,102)","size":4.510906219482422},{"label":"Energy Technology Laboratory","x":-533.006591796875,"y":1278.4935302734375,"id":"910","color":"rgb(102,255,102)","size":4.0},{"label":"Équilibre Chimique","x":2451.575439453125,"y":-1055.55615234375,"id":"922","color":"rgb(255,204,102)","size":4.0340681076049805},{"label":"Kelvin Scale","x":1147.1556396484375,"y":2560.599853515625,"id":"71","color":"rgb(255,255,51)","size":4.206028938293457},{"label":"Arctic Expedition","x":-698.1810302734375,"y":1821.115478515625,"id":"301","color":"rgb(0,204,204)","size":5.103478908538818},{"label":"Cendre Volcanique","x":1609.515625,"y":-563.578125,"id":"562","color":"rgb(255,204,102)","size":4.0086140632629395},{"label":"Ann Bancroft","x":-205.17994689941406,"y":1289.1558837890625,"id":"254","color":"rgb(255,255,51)","size":5.103478908538818},{"label":"National Energy Technology","x":-885.4706420898438,"y":1109.333251953125,"id":"1382","color":"rgb(102,255,102)","size":4.0},{"label":"Convention Des Nations Unies Sur Le Droit De La Mer","x":-161.36451721191406,"y":-1443.8486328125,"id":"716","color":"rgb(153,0,0)","size":4.510906219482422},{"label":"Natural Gas","x":-1409.1258544921875,"y":423.159423828125,"id":"1047","color":"rgb(0,153,0)","size":4.133297443389893},{"label":"Journée Mondiale De La Biodiversité","x":311.27545166015625,"y":-1096.246337890625,"id":"1256","color":"rgb(153,255,0)","size":4.39528751373291},{"label":"Contamination Radioactive","x":-548.1245727539062,"y":-1011.6006469726562,"id":"705","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Méthode Merise","x":1445.80322265625,"y":-1454.8597412109375,"id":"1352","color":"rgb(153,255,0)","size":4.0340681076049805},{"label":"San Francisco","x":-1114.530029296875,"y":581.2503051757812,"id":"5","color":"rgb(255,51,51)","size":5.103478908538818},{"label":"Frédéric Lasserre","x":-379.4819030761719,"y":-104.75343322753906,"id":"412","color":"rgb(0,204,204)","size":4.206028938293457},{"label":"Environmental Studies","x":311.84100341796875,"y":-220.78436279296875,"id":"632","color":"rgb(153,255,255)","size":4.0340681076049805},{"label":"Temperature Sensor","x":1153.5224609375,"y":2657.78515625,"id":"1671","color":"rgb(255,255,51)","size":4.0},{"label":"Sverdrup","x":-815.9874267578125,"y":2120.587158203125,"id":"1658","color":"rgb(0,204,204)","size":4.510906219482422},{"label":"Inuit Circumpolar","x":-1038.5679931640625,"y":2173.03125,"id":"526","color":"rgb(204,204,255)","size":4.781970500946045},{"label":"Jaures Medvedev","x":-109.4727554321289,"y":-1361.7779541015625,"id":"1242","color":"rgb(255,51,51)","size":4.206028938293457},{"label":"Naomi Uemura","x":-1082.544677734375,"y":2133.81494140625,"id":"1356","color":"rgb(0,204,204)","size":4.0086140632629395},{"label":"Roger Brunet","x":360.7059020996094,"y":-632.6066284179688,"id":"757","color":"rgb(102,255,102)","size":4.39528751373291},{"label":"Crise Ecologique","x":565.8154296875,"y":-1118.103271484375,"id":"740","color":"rgb(153,255,0)","size":4.293514728546143},{"label":"Europe Via","x":-1288.2213134765625,"y":-133.4451446533203,"id":"949","color":"rgb(255,51,51)","size":4.075808525085449},{"label":"Proue Surélevée","x":401.95635986328125,"y":-2106.44091796875,"id":"1551","color":"rgb(153,0,0)","size":4.0},{"label":"Biosphère","x":-1003.8191528320312,"y":1405.8773193359375,"id":"472","color":"rgb(0,204,204)","size":4.39528751373291},{"label":"Nicolas Vanier","x":-923.4484252929688,"y":-344.1199951171875,"id":"1136","color":"rgb(0,204,204)","size":4.293514728546143},{"label":"Energie Renouvelable","x":817.0204467773438,"y":-1168.9273681640625,"id":"104","color":"rgb(0,153,0)","size":19.1311092376709},{"label":"North Norway","x":-1367.631591796875,"y":1979.0384521484375,"id":"417","color":"rgb(0,204,204)","size":4.6399359703063965},{"label":"National Snow","x":71.34999084472656,"y":1415.9742431640625,"id":"46","color":"rgb(153,255,255)","size":5.282204627990723},{"label":"Quebec Government","x":-1329.685546875,"y":2897.574462890625,"id":"1424","color":"rgb(0,204,204)","size":4.0},{"label":"Pressure Treat","x":-335.1393737792969,"y":840.61328125,"id":"1147","color":"rgb(102,255,102)","size":4.0},{"label":"Jacobs Engineering","x":-847.073486328125,"y":2264.95849609375,"id":"1659","color":"rgb(0,204,204)","size":4.0},{"label":"Oil Price","x":-1909.205322265625,"y":688.3704833984375,"id":"429","color":"rgb(102,0,102)","size":5.472443103790283},{"label":"Baltic Sea","x":-1349.2330322265625,"y":782.0280151367188,"id":"401","color":"rgb(102,255,102)","size":4.293514728546143},{"label":"Finnish Lapland","x":-1341.6407470703125,"y":2100.314697265625,"id":"988","color":"rgb(0,204,204)","size":4.075808525085449},{"label":"North Greenland","x":-376.8964538574219,"y":1782.964599609375,"id":"1405","color":"rgb(153,255,255)","size":4.293514728546143},{"label":"Azote Kjeldahl","x":1249.180908203125,"y":-1604.6259765625,"id":"143","color":"rgb(153,255,0)","size":4.075808525085449},{"label":"Dérive Transpolaire","x":90.34806060791016,"y":-77.55829620361328,"id":"799","color":"rgb(0,204,204)","size":4.6399359703063965},{"label":"Etats Arctiques","x":220.3595428466797,"y":-632.3721923828125,"id":"944","color":"rgb(102,255,102)","size":4.510906219482422},{"label":"Gaz","x":511.72564697265625,"y":-1272.9373779296875,"id":"1041","color":"rgb(0,153,0)","size":4.293514728546143},{"label":"Île De Sakhaline","x":-421.34039306640625,"y":-1212.58935546875,"id":"1000","color":"rgb(255,51,51)","size":4.075808525085449},{"label":"Eruption Solaire","x":813.0960083007812,"y":220.2419891357422,"id":"115","color":"rgb(255,255,51)","size":4.781970500946045},{"label":"Arctic Science","x":-678.52099609375,"y":1757.73486328125,"id":"326","color":"rgb(153,255,255)","size":4.293514728546143},{"label":"Flam Railway","x":-1862.12841796875,"y":2014.658935546875,"id":"998","color":"rgb(0,204,204)","size":4.075808525085449},{"label":"Scandinavie","x":-844.7327270507812,"y":-715.8115234375,"id":"1618","color":"rgb(255,51,51)","size":4.206028938293457},{"label":"Oléoducs","x":-301.7325134277344,"y":-1280.14111328125,"id":"1435","color":"rgb(102,0,102)","size":4.510906219482422},{"label":"Formation Géologique","x":1130.813720703125,"y":-1306.9691162109375,"id":"862","color":"rgb(255,204,102)","size":4.39528751373291},{"label":"Balbuzard Pêcheur","x":-261.09759521484375,"y":-860.1210327148438,"id":"389","color":"rgb(153,255,0)","size":4.0340681076049805},{"label":"Langue Scandinave","x":-879.9846801757812,"y":-795.6299438476562,"id":"1272","color":"rgb(204,204,255)","size":4.0086140632629395},{"label":"University Of Natural","x":-261.92498779296875,"y":1613.1439208984375,"id":"1600","color":"rgb(153,255,255)","size":4.0},{"label":"Pole Expedition","x":-536.613037109375,"y":1839.82470703125,"id":"256","color":"rgb(0,204,204)","size":4.6399359703063965},{"label":"Beaufort Sea","x":-1314.319091796875,"y":1486.2528076171875,"id":"321","color":"rgb(0,204,204)","size":4.781970500946045},{"label":"Earth Sciences","x":140.06918334960938,"y":949.2770385742188,"id":"849","color":"rgb(153,255,255)","size":4.075808525085449},{"label":"Laponie Suédoise","x":-676.6172485351562,"y":-447.30023193359375,"id":"748","color":"rgb(204,204,255)","size":5.282204627990723},{"label":"Écosystèmes Marins","x":541.1787109375,"y":-776.7356567382812,"id":"884","color":"rgb(153,255,0)","size":4.510906219482422},{"label":"Global positioning","x":169.76914978027344,"y":3209.15771484375,"id":"1060","color":"rgb(255,255,51)","size":4.510906219482422},{"label":"Energie Fossile","x":567.6663208007812,"y":-1162.6912841796875,"id":"131","color":"rgb(0,153,0)","size":8.540210723876953},{"label":"Répercussions","x":-1328.6962890625,"y":178.18540954589844,"id":"1585","color":"rgb(255,51,51)","size":4.0340681076049805},{"label":"Climatic Change","x":-308.025146484375,"y":1221.129638671875,"id":"79","color":"rgb(102,255,102)","size":79.5716781616211},{"label":"Council Of Canada","x":-1029.6468505859375,"y":1089.7691650390625,"id":"521","color":"rgb(102,255,102)","size":4.0086140632629395},{"label":"Sayan Mountains","x":-1673.0694580078125,"y":-901.0927124023438,"id":"1614","color":"rgb(204,204,255)","size":4.0},{"label":"Chaine Alimentaire","x":1030.9202880859375,"y":-1390.243896484375,"id":"519","color":"rgb(153,255,0)","size":6.341859817504883},{"label":"Sognefjorden","x":-1595.1903076171875,"y":2023.157470703125,"id":"1637","color":"rgb(0,204,204)","size":4.206028938293457},{"label":"Circulation Océanique","x":881.097900390625,"y":-373.423095703125,"id":"515","color":"rgb(255,255,51)","size":6.584775924682617},{"label":"Pouvoir Public","x":746.6023559570312,"y":-1559.674072265625,"id":"97","color":"rgb(153,255,0)","size":5.103478908538818},{"label":"Communique De Presse","x":187.27760314941406,"y":-1929.7447509765625,"id":"1394","color":"rgb(153,0,0)","size":4.0086140632629395},{"label":"Celsius Temperature","x":1085.2469482421875,"y":2629.656494140625,"id":"561","color":"rgb(255,255,51)","size":4.293514728546143},{"label":"Suède","x":-1009.474365234375,"y":84.77333068847656,"id":"1654","color":"rgb(255,51,51)","size":4.0340681076049805},{"label":"Economie Gestion","x":1995.5655517578125,"y":-56.462928771972656,"id":"879","color":"rgb(255,255,51)","size":4.0},{"label":"Île Melville","x":-466.9360656738281,"y":57.297176361083984,"id":"1178","color":"rgb(0,204,204)","size":4.133297443389893},{"label":"Programme Pluriannuel De Recherche","x":1765.3302001953125,"y":-807.9656982421875,"id":"1545","color":"rgb(255,204,102)","size":4.075808525085449},{"label":"Profil Environnemental","x":663.1678466796875,"y":-1452.0347900390625,"id":"1543","color":"rgb(0,153,0)","size":4.39528751373291},{"label":"Technique De Randonnée","x":2199.39501953125,"y":-1483.310302734375,"id":"1680","color":"rgb(255,255,51)","size":4.0},{"label":"Empreinte Écologique","x":758.0026245117188,"y":-1200.9490966796875,"id":"901","color":"rgb(102,255,102)","size":5.103478908538818},{"label":"Northwest Territories","x":-1446.688232421875,"y":1508.540283203125,"id":"323","color":"rgb(0,204,204)","size":4.936610698699951},{"label":"Données Climatiques","x":1194.1854248046875,"y":-894.2398681640625,"id":"828","color":"rgb(255,204,102)","size":4.510906219482422},{"label":"Lagopède","x":-378.12152099609375,"y":-444.1365051269531,"id":"1271","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Umberto Nobile","x":-583.5703735351562,"y":1976.1595458984375,"id":"1694","color":"rgb(0,204,204)","size":4.075808525085449},{"label":"Claude Gascard","x":395.4162902832031,"y":-179.3833770751953,"id":"631","color":"rgb(153,255,255)","size":4.781970500946045},{"label":"Mer Polaire Ouverte","x":92.1793441772461,"y":1011.4505004882812,"id":"1345","color":"rgb(153,255,255)","size":4.206028938293457},{"label":"Droit De Passage","x":1362.7652587890625,"y":-2079.392578125,"id":"844","color":"rgb(153,0,0)","size":4.0},{"label":"Nord Du Canada","x":-149.541259765625,"y":-413.6909484863281,"id":"1401","color":"rgb(255,51,51)","size":4.781970500946045},{"label":"Activité Humaine","x":1020.486083984375,"y":-997.356689453125,"id":"68","color":"rgb(102,255,102)","size":39.22166061401367},{"label":"Emissions De Co2","x":700.1669311523438,"y":-1030.9810791015625,"id":"93","color":"rgb(102,255,102)","size":9.173389434814453},{"label":"Interglacial Period","x":-285.3956604003906,"y":1658.77197265625,"id":"1102","color":"rgb(153,255,255)","size":4.293514728546143},{"label":"Declaration De Doha","x":22.64794158935547,"y":-1824.061279296875,"id":"774","color":"rgb(153,0,0)","size":4.0086140632629395},{"label":"Grands Lacs","x":360.0180358886719,"y":-912.3419189453125,"id":"80","color":"rgb(102,255,102)","size":4.075808525085449},{"label":"Laboratoire Kastler","x":1787.1490478515625,"y":65.69087982177734,"id":"674","color":"rgb(255,255,51)","size":4.0340681076049805},{"label":"Baie De Disko","x":-122.5660171508789,"y":135.06480407714844,"id":"383","color":"rgb(0,204,204)","size":4.293514728546143},{"label":"Ajustement Structurel","x":577.732421875,"y":-1725.208740234375,"id":"173","color":"rgb(153,0,0)","size":4.075808525085449},{"label":"Indigenous Population","x":-1743.23681640625,"y":2319.311767578125,"id":"1195","color":"rgb(204,204,255)","size":4.0},{"label":"Konungariket Sverige","x":-1090.12109375,"y":833.55322265625,"id":"1261","color":"rgb(102,255,102)","size":4.0340681076049805},{"label":"Finnish Companies","x":-957.6561889648438,"y":-1628.5633544921875,"id":"985","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Sols","x":1887.2938232421875,"y":-459.31365966796875,"id":"1641","color":"rgb(255,204,102)","size":4.0086140632629395},{"label":"Longues Distances","x":-2320.859375,"y":-1128.3441162109375,"id":"1306","color":"rgb(204,204,255)","size":4.0},{"label":"Armée Américaine","x":-1105.5269775390625,"y":-114.18011474609375,"id":"341","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Iles Kouriles","x":-282.15093994140625,"y":-1069.7958984375,"id":"1175","color":"rgb(255,51,51)","size":4.293514728546143},{"label":"Photographie Aerienne","x":1980.08544921875,"y":-1403.850341796875,"id":"1196","color":"rgb(255,255,51)","size":4.0340681076049805},{"label":"Natural Repair","x":1594.8365478515625,"y":-897.4264526367188,"id":"679","color":"rgb(255,204,102)","size":4.0},{"label":"Phoque Gris","x":-215.6255645751953,"y":-1140.5015869140625,"id":"1316","color":"rgb(153,255,0)","size":4.293514728546143},{"label":"Alaska State","x":-3147.713623046875,"y":2533.282470703125,"id":"189","color":"rgb(0,204,204)","size":4.0},{"label":"Tigre De Siberie","x":-72.00604248046875,"y":-1002.9564208984375,"id":"168","color":"rgb(153,255,0)","size":4.075808525085449},{"label":"Capteur De Pression","x":2150.798583984375,"y":-587.2140502929688,"id":"434","color":"rgb(255,204,102)","size":4.206028938293457},{"label":"Écologie Pratique","x":1065.259033203125,"y":-1147.25,"id":"874","color":"rgb(102,255,102)","size":4.133297443389893},{"label":"New values","x":-154.02786254882812,"y":1974.202392578125,"id":"972","color":"rgb(0,204,204)","size":4.0},{"label":"Indicateur Climatique","x":1028.111328125,"y":-458.3717956542969,"id":"1191","color":"rgb(255,255,51)","size":4.39528751373291},{"label":"Aeronautical Engineering","x":-566.309814453125,"y":2136.8984375,"id":"1695","color":"rgb(153,255,255)","size":4.0},{"label":"Écologie Des Populations","x":1250.4727783203125,"y":-1381.619384765625,"id":"875","color":"rgb(153,255,0)","size":4.075808525085449},{"label":"Plateformes","x":1534.6314697265625,"y":-1326.825927734375,"id":"1497","color":"rgb(255,255,51)","size":4.0},{"label":"Réchauffement Différentiel","x":1635.4635009765625,"y":-296.90118408203125,"id":"1560","color":"rgb(255,255,51)","size":4.293514728546143},{"label":"Marine Royale","x":-1010.1068725585938,"y":-2144.4228515625,"id":"1322","color":"rgb(255,51,51)","size":4.0},{"label":"Phénomène Naturel","x":1266.3018798828125,"y":-1267.392333984375,"id":"1478","color":"rgb(153,255,0)","size":4.293514728546143},{"label":"Renard Gris","x":-711.9309692382812,"y":-865.7280883789062,"id":"1580","color":"rgb(153,255,0)","size":4.293514728546143},{"label":"Fonte","x":-954.379638671875,"y":155.9615020751953,"id":"1010","color":"rgb(0,204,204)","size":4.0},{"label":"Conditions Météorologiques","x":1496.9547119140625,"y":-782.289794921875,"id":"681","color":"rgb(255,204,102)","size":4.293514728546143},{"label":"Biogeochemical Cycle","x":-720.203369140625,"y":1154.4080810546875,"id":"462","color":"rgb(102,255,102)","size":4.206028938293457},{"label":"Glace","x":467.92193603515625,"y":1068.4384765625,"id":"1088","color":"rgb(153,255,255)","size":4.0086140632629395},{"label":"Plateformes De Forage","x":-32.178138732910156,"y":-1701.26904296875,"id":"1498","color":"rgb(102,0,102)","size":4.075808525085449},{"label":"Convention Internationale","x":27.588159561157227,"y":-1738.7987060546875,"id":"710","color":"rgb(153,0,0)","size":4.510906219482422},{"label":"Carte Géologique","x":1361.2398681640625,"y":-744.355224609375,"id":"436","color":"rgb(255,204,102)","size":5.103478908538818},{"label":"Dérèglement Climatique","x":818.4898071289062,"y":-1077.4920654296875,"id":"245","color":"rgb(102,255,102)","size":4.510906219482422},{"label":"Menace","x":-1735.708984375,"y":23.019989013671875,"id":"1331","color":"rgb(255,51,51)","size":4.0},{"label":"Polar Explorer","x":-540.6795043945312,"y":1721.8673095703125,"id":"183","color":"rgb(153,255,255)","size":5.472443103790283},{"label":"Energie Interne","x":2853.764892578125,"y":-711.9080810546875,"id":"540","color":"rgb(255,255,51)","size":4.206028938293457},{"label":"Fishing Ship","x":-2195.95947265625,"y":1698.998291015625,"id":"989","color":"rgb(0,204,204)","size":4.0086140632629395},{"label":"Farthest North","x":-489.3768005371094,"y":1994.6044921875,"id":"978","color":"rgb(153,255,255)","size":4.075808525085449},{"label":"Agriculture Intensive","x":1194.085693359375,"y":-1809.0849609375,"id":"157","color":"rgb(102,102,0)","size":4.0340681076049805},{"label":"Ellesmere Island","x":-791.665771484375,"y":1980.0880126953125,"id":"377","color":"rgb(0,204,204)","size":4.781970500946045},{"label":"Connaissance Scientifique","x":1104.625732421875,"y":-1029.750732421875,"id":"693","color":"rgb(255,255,51)","size":4.293514728546143},{"label":"Produit Derive","x":1291.8006591796875,"y":-784.8773193359375,"id":"1494","color":"rgb(255,204,102)","size":4.0},{"label":"Perdrix Des Neiges","x":-556.744873046875,"y":-505.8311767578125,"id":"746","color":"rgb(153,255,0)","size":4.206028938293457},{"label":"Alain Hubert","x":-147.12803649902344,"y":1327.6324462890625,"id":"180","color":"rgb(255,255,51)","size":4.293514728546143},{"label":"Bay Oil","x":-1974.5218505859375,"y":957.7298583984375,"id":"449","color":"rgb(102,0,102)","size":4.075808525085449},{"label":"Mecanique Des Fluides","x":2573.458984375,"y":312.06390380859375,"id":"888","color":"rgb(255,255,0)","size":4.510906219482422},{"label":"Energy Conference","x":-1079.1385498046875,"y":1234.311279296875,"id":"905","color":"rgb(0,153,0)","size":4.075808525085449},{"label":"Revendication","x":265.2763366699219,"y":-1583.3365478515625,"id":"1595","color":"rgb(153,0,0)","size":4.0340681076049805},{"label":"Management Environnemental","x":843.4338989257812,"y":-1657.6605224609375,"id":"251","color":"rgb(153,255,0)","size":4.293514728546143},{"label":"Bering Sea","x":-856.4624633789062,"y":1048.4078369140625,"id":"203","color":"rgb(102,255,102)","size":4.293514728546143},{"label":"Protocole De Kyoto","x":804.7012939453125,"y":-946.403076171875,"id":"105","color":"rgb(102,255,102)","size":7.099246978759766},{"label":"Northern University","x":-1368.3258056640625,"y":116.15547180175781,"id":"1437","color":"rgb(255,255,51)","size":4.0},{"label":"Impacts Environnementaux","x":916.9364624023438,"y":-1329.6590576171875,"id":"1187","color":"rgb(255,255,51)","size":4.510906219482422},{"label":"Eaux Internationales","x":-45.005516052246094,"y":-1584.10498046875,"id":"869","color":"rgb(255,51,51)","size":4.39528751373291},{"label":"Department Of Physics","x":114.74959564208984,"y":793.4013671875,"id":"790","color":"rgb(153,255,255)","size":4.0086140632629395},{"label":"Phoque Moine","x":174.09072875976562,"y":-1117.7325439453125,"id":"1479","color":"rgb(153,255,0)","size":4.293514728546143},{"label":"Jules Verne","x":292.7366027832031,"y":628.7774047851562,"id":"508","color":"rgb(153,255,255)","size":4.0340681076049805},{"label":"Marcel Leroux","x":493.2509765625,"y":-352.26470947265625,"id":"1319","color":"rgb(255,204,102)","size":4.293514728546143},{"label":"Écotourisme Québec","x":-421.915771484375,"y":-885.8495483398438,"id":"886","color":"rgb(255,51,51)","size":4.075808525085449},{"label":"Afge Local","x":-3463.37109375,"y":-1966.770751953125,"id":"1059","color":"rgb(51,153,255)","size":4.0},{"label":"Grande Puissance","x":-423.2604064941406,"y":-1298.2620849609375,"id":"970","color":"rgb(255,51,51)","size":4.133297443389893},{"label":"Américains Du Nord","x":45.0167121887207,"y":-631.6409301757812,"id":"222","color":"rgb(255,51,51)","size":4.075808525085449},{"label":"Port De Montreal","x":245.47291564941406,"y":385.5518798828125,"id":"1627","color":"rgb(0,204,204)","size":4.0},{"label":"Croyances Animistes Traditionnelles","x":-616.6427612304688,"y":-652.6201171875,"id":"745","color":"rgb(204,204,255)","size":4.206028938293457},{"label":"Programme De Doha","x":-21.686321258544922,"y":-1883.6951904296875,"id":"1213","color":"rgb(153,0,0)","size":4.0340681076049805},{"label":"Centre De Gravité","x":3091.731689453125,"y":953.8211059570312,"id":"1528","color":"rgb(255,255,0)","size":4.0},{"label":"Croissance De La Population","x":635.1356201171875,"y":-1875.99609375,"id":"743","color":"rgb(255,51,51)","size":4.075808525085449},{"label":"Impact Activités Humaines","x":736.72216796875,"y":-612.231201171875,"id":"1186","color":"rgb(255,255,51)","size":4.0},{"label":"Mer Gelée","x":1194.6021728515625,"y":-504.497802734375,"id":"1344","color":"rgb(255,255,51)","size":4.0340681076049805},{"label":"Changement Climatique","x":639.014892578125,"y":-703.6633911132812,"id":"53","color":"rgb(102,255,102)","size":99.99999237060547},{"label":"Extinction","x":-623.718505859375,"y":764.0315551757812,"id":"973","color":"rgb(153,255,0)","size":4.0340681076049805},{"label":"Atacama Large","x":-1263.72509765625,"y":2407.256103515625,"id":"55","color":"rgb(0,204,204)","size":4.0},{"label":"International Conference","x":-1029.4451904296875,"y":853.9440307617188,"id":"685","color":"rgb(102,255,102)","size":4.075808525085449},{"label":"Joik","x":-1815.1776123046875,"y":2372.54052734375,"id":"1247","color":"rgb(204,204,255)","size":4.075808525085449},{"label":"Celsius Scale","x":1050.712646484375,"y":2602.3388671875,"id":"72","color":"rgb(255,255,51)","size":4.6399359703063965},{"label":"Mer De Laptev","x":148.3580322265625,"y":-263.6416320800781,"id":"1339","color":"rgb(0,204,204)","size":4.6399359703063965},{"label":"Isfjord","x":-731.637451171875,"y":1618.5643310546875,"id":"1226","color":"rgb(0,204,204)","size":4.293514728546143},{"label":"Iles Aleoutiennes","x":-252.2587432861328,"y":-786.9063720703125,"id":"199","color":"rgb(153,255,0)","size":4.510906219482422},{"label":"Université Joseph","x":1623.983154296875,"y":505.6729431152344,"id":"1079","color":"rgb(255,255,51)","size":4.293514728546143},{"label":"Gestion Des Ressources","x":540.045654296875,"y":-1682.798095703125,"id":"101","color":"rgb(0,153,0)","size":5.103478908538818},{"label":"Arctique","x":108.06491088867188,"y":-182.56524658203125,"id":"333","color":"rgb(0,204,204)","size":4.6399359703063965},{"label":"Glacial Lake","x":-325.3822326660156,"y":1850.6939697265625,"id":"1094","color":"rgb(153,255,255)","size":4.206028938293457},{"label":"Mecanique Des Milieux Continus","x":2787.80224609375,"y":384.6292724609375,"id":"1303","color":"rgb(255,255,0)","size":4.133297443389893},{"label":"Sédiments","x":-930.0875854492188,"y":1070.3548583984375,"id":"1625","color":"rgb(0,153,0)","size":4.133297443389893},{"label":"Réversiblité","x":1091.1778564453125,"y":-961.290771484375,"id":"1598","color":"rgb(255,204,102)","size":4.0340681076049805},{"label":"Documentaires Reportages","x":-139.54441833496094,"y":-13.036221504211426,"id":"956","color":"rgb(0,204,204)","size":4.133297443389893},{"label":"Mourmansk","x":-950.3997192382812,"y":-471.90557861328125,"id":"1375","color":"rgb(0,204,204)","size":4.0},{"label":"Johannesburg 2002.","x":-308.7962341308594,"y":137.21817016601562,"id":"1245","color":"rgb(0,204,204)","size":4.133297443389893},{"label":"Extinction Massive","x":585.7884521484375,"y":-821.8596801757812,"id":"975","color":"rgb(153,255,0)","size":4.510906219482422},{"label":"Joseph Fourier","x":1753.0748291015625,"y":527.2044677734375,"id":"1078","color":"rgb(255,255,51)","size":4.206028938293457},{"label":"Puissances Militaires","x":-586.8568725585938,"y":-1493.1463623046875,"id":"1552","color":"rgb(255,51,51)","size":4.0340681076049805},{"label":"Population","x":-936.8165283203125,"y":347.7954406738281,"id":"1522","color":"rgb(255,51,51)","size":4.0},{"label":"Canadian Navy","x":-987.0184936523438,"y":-2168.454345703125,"id":"1321","color":"rgb(255,51,51)","size":4.0},{"label":"Sami Culture","x":-1937.94482421875,"y":2468.69091796875,"id":"1282","color":"rgb(204,204,255)","size":5.282204627990723},{"label":"Repérage Satellite","x":-307.4222106933594,"y":2304.399658203125,"id":"1584","color":"rgb(255,153,153)","size":4.0086140632629395},{"label":"Réchauffement Climatique","x":480.5789489746094,"y":-476.38458251953125,"id":"50","color":"rgb(102,255,102)","size":56.631980895996094},{"label":"Earth Explorer","x":-1058.8309326171875,"y":1358.3682861328125,"id":"751","color":"rgb(102,255,102)","size":4.0340681076049805},{"label":"Simulation Numérique","x":2325.76318359375,"y":225.4872283935547,"id":"661","color":"rgb(255,255,51)","size":4.293514728546143},{"label":"Meteorological Station","x":-1598.993896484375,"y":2188.527587890625,"id":"1240","color":"rgb(0,204,204)","size":4.0},{"label":"Lng Carrier","x":-2107.6708984375,"y":1014.72021484375,"id":"1297","color":"rgb(102,0,102)","size":4.0086140632629395},{"label":"Barrage Hydroélectrique","x":548.54150390625,"y":-1642.50537109375,"id":"425","color":"rgb(0,153,0)","size":4.206028938293457},{"label":"Discipline Scientifique","x":1859.9405517578125,"y":-169.36407470703125,"id":"1106","color":"rgb(255,255,51)","size":4.0086140632629395},{"label":"Yvon Le Maho","x":648.9661254882812,"y":-544.9031372070312,"id":"1719","color":"rgb(255,204,102)","size":4.0086140632629395},{"label":"Norwegian Polar Institute","x":-563.6276245117188,"y":1612.9364013671875,"id":"1416","color":"rgb(153,255,255)","size":4.075808525085449},{"label":"Polar Expedition","x":-636.3841552734375,"y":1911.3157958984375,"id":"302","color":"rgb(153,255,255)","size":5.103478908538818},{"label":"Laboratoire De Météorologie","x":1433.879150390625,"y":-248.84622192382812,"id":"1263","color":"rgb(255,255,51)","size":4.133297443389893},{"label":"Ecological Footprint","x":174.93313598632812,"y":-522.507080078125,"id":"872","color":"rgb(102,255,102)","size":4.075808525085449},{"label":"Prospection Electromagnetique","x":2055.60400390625,"y":625.3250122070312,"id":"1549","color":"rgb(255,255,51)","size":4.0},{"label":"Agricultural Land","x":-503.6853332519531,"y":1084.8663330078125,"id":"148","color":"rgb(153,255,0)","size":4.206028938293457},{"label":"Forcage Radiatif","x":854.035400390625,"y":-816.6619873046875,"id":"461","color":"rgb(255,204,102)","size":4.781970500946045},{"label":"Russian Gas","x":-1841.2296142578125,"y":488.3793640136719,"id":"208","color":"rgb(102,0,102)","size":5.103478908538818},{"label":"Canadian Arctic","x":-870.5809936523438,"y":1920.4820556640625,"id":"294","color":"rgb(255,51,51)","size":7.9385457038879395},{"label":"Latitude 66° 33\u0027N,1","x":362.4998779296875,"y":-522.8916015625,"id":"1280","attributes":{"nodedef":"n1280"},"color":"rgb(102,255,102)","size":4.510906219482422},{"label":"Josef Land","x":-881.2371826171875,"y":2143.9130859375,"id":"415","color":"rgb(0,204,204)","size":4.206028938293457},{"label":"Climatologie","x":1387.076904296875,"y":-654.1448974609375,"id":"639","color":"rgb(255,204,102)","size":4.510906219482422},{"label":"Arctic Sea","x":-90.56189727783203,"y":1657.809814453125,"id":"311","color":"rgb(153,255,255)","size":5.6738481521606445},{"label":"Science Nord","x":-1296.1273193359375,"y":-539.59521484375,"id":"1399","color":"rgb(153,255,255)","size":4.0},{"label":"Bloc Erratique","x":448.885009765625,"y":-417.5223693847656,"id":"480","color":"rgb(102,255,102)","size":4.0340681076049805},{"label":"Energie Primaire","x":536.199462890625,"y":-1360.2603759765625,"id":"904","color":"rgb(0,153,0)","size":4.6399359703063965},{"label":"Soil Science","x":662.3010864257812,"y":-840.2737426757812,"id":"930","color":"rgb(102,255,102)","size":4.0340681076049805},{"label":"Environment Programme","x":-306.8843994140625,"y":557.0643920898438,"id":"89","color":"rgb(0,204,204)","size":4.206028938293457},{"label":"Extent Minimum","x":-193.59140014648438,"y":1815.1783447265625,"id":"971","color":"rgb(153,255,255)","size":4.133297443389893},{"label":"Glaciologie","x":436.9810791015625,"y":789.4720458984375,"id":"1104","color":"rgb(153,255,255)","size":4.510906219482422},{"label":"Pôle Nord Géomagnétique","x":310.8309020996094,"y":815.92431640625,"id":"1509","color":"rgb(153,255,255)","size":4.39528751373291},{"label":"Frontière Terrestre","x":-394.6021728515625,"y":-1488.3306884765625,"id":"1032","color":"rgb(255,51,51)","size":4.0340681076049805},{"label":"Arctic Ice","x":-255.33016967773438,"y":1737.73486328125,"id":"310","color":"rgb(0,204,204)","size":6.108868598937988},{"label":"Thon Rouge","x":206.93438720703125,"y":-1359.9771728515625,"id":"1373","color":"rgb(153,255,0)","size":4.206028938293457},{"label":"Petroleum Product","x":-2264.662841796875,"y":747.086669921875,"id":"1434","color":"rgb(102,0,102)","size":4.133297443389893},{"label":"Végétation Locale","x":1114.59375,"y":-1471.4329833984375,"id":"1705","color":"rgb(153,255,0)","size":4.39528751373291},{"label":"Navire De Recherche","x":70.53507232666016,"y":-244.04432678222656,"id":"839","color":"rgb(0,204,204)","size":4.075808525085449},{"label":"Atmosphère Terrestre","x":1137.197509765625,"y":-371.8663635253906,"id":"363","color":"rgb(255,255,0)","size":5.282204627990723},{"label":"Coopération","x":-558.1478271484375,"y":376.72161865234375,"id":"719","color":"rgb(0,204,204)","size":4.075808525085449},{"label":"Hydrographic Survey","x":586.7369384765625,"y":1790.6697998046875,"id":"564","color":"rgb(255,153,153)","size":4.0086140632629395},{"label":"Biomes Of The World","x":-1001.8667602539062,"y":2355.270263671875,"id":"470","color":"rgb(204,204,255)","size":4.0086140632629395},{"label":"Méthanier","x":104.27997589111328,"y":-1588.522216796875,"id":"1351","color":"rgb(102,0,102)","size":4.293514728546143},{"label":"Carbon Sequestration","x":-788.3623046875,"y":1279.9970703125,"id":"548","color":"rgb(102,255,102)","size":4.293514728546143},{"label":"Observatoire De Recherche","x":1151.910888671875,"y":-865.9721069335938,"id":"1025","color":"rgb(255,255,51)","size":4.39528751373291},{"label":"Observation System","x":631.1531982421875,"y":1363.797607421875,"id":"847","color":"rgb(255,153,153)","size":4.0086140632629395},{"label":"Empreinte Energetique","x":566.9852294921875,"y":-1052.157470703125,"id":"903","color":"rgb(0,153,0)","size":4.6399359703063965},{"label":"Cap Lizard","x":-314.93060302734375,"y":-164.61312866210938,"id":"357","color":"rgb(0,204,204)","size":4.133297443389893},{"label":"Sciences Sociales","x":1755.0657958984375,"y":-379.21099853515625,"id":"1624","color":"rgb(255,255,51)","size":4.075808525085449},{"label":"Matiere Organique","x":1244.5677490234375,"y":-1558.487548828125,"id":"120","color":"rgb(153,255,0)","size":10.527388572692871},{"label":"Coastal Plain","x":-2725.831298828125,"y":941.7975463867188,"id":"38","color":"rgb(153,255,0)","size":4.936610698699951},{"label":"Déclaration De Rio","x":612.9371948242188,"y":-1074.5045166015625,"id":"688","color":"rgb(102,255,102)","size":4.293514728546143},{"label":"Gas Company","x":-2017.2681884765625,"y":624.8248291015625,"id":"209","color":"rgb(102,0,102)","size":6.341859817504883},{"label":"North Magnetic","x":-10.140995025634766,"y":1495.694580078125,"id":"622","color":"rgb(255,255,51)","size":4.293514728546143},{"label":"Island Expedition","x":-829.6738891601562,"y":1681.056640625,"id":"1227","color":"rgb(0,204,204)","size":4.133297443389893},{"label":"Sonde De Temperature","x":2307.5634765625,"y":-551.9292602539062,"id":"544","color":"rgb(255,204,102)","size":4.293514728546143},{"label":"Clark Ross","x":568.3779296875,"y":671.209228515625,"id":"455","color":"rgb(153,255,255)","size":4.781970500946045},{"label":"Volcanic Plateau","x":-1624.3095703125,"y":1801.562744140625,"id":"1704","color":"rgb(0,204,204)","size":4.0340681076049805},{"label":"Space Science","x":1044.7261962890625,"y":1038.4227294921875,"id":"861","color":"rgb(255,153,153)","size":4.133297443389893},{"label":"Oceanographie Physique","x":966.4908447265625,"y":-283.2160339355469,"id":"1432","color":"rgb(255,255,51)","size":4.293514728546143},{"label":"Sommet De Johannesburg","x":258.27178955078125,"y":-813.4686889648438,"id":"1246","color":"rgb(102,255,102)","size":4.293514728546143},{"label":"Ice Data","x":-11.349913597106934,"y":1434.9552001953125,"id":"45","color":"rgb(153,255,255)","size":6.837328910827637},{"label":"Couverture Végétale","x":1250.3302001953125,"y":-1848.6412353515625,"id":"735","color":"rgb(153,255,0)","size":4.0340681076049805},{"label":"Missiles Balistiques","x":-828.7572631835938,"y":-1458.7127685546875,"id":"1361","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Nouvel Environnement","x":1604.5255126953125,"y":-1706.1563720703125,"id":"1417","color":"rgb(102,255,102)","size":4.0},{"label":"Soil Erosion","x":-455.86676025390625,"y":946.5283813476562,"id":"928","color":"rgb(102,255,102)","size":4.075808525085449},{"label":"Dorsales Lomonossov","x":39.05314254760742,"y":-421.98748779296875,"id":"836","color":"rgb(255,51,51)","size":4.075808525085449},{"label":"Cnrs Umr","x":1952.6683349609375,"y":55.34114456176758,"id":"346","color":"rgb(255,255,51)","size":4.075808525085449},{"label":"James Bay","x":-1204.0933837890625,"y":2584.969482421875,"id":"1235","color":"rgb(0,204,204)","size":4.293514728546143},{"label":"Economic Zone","x":-629.4299926757812,"y":-285.3661804199219,"id":"1284","color":"rgb(0,204,204)","size":4.0340681076049805},{"label":"Nuclear Icebreaker","x":-642.9785766601562,"y":1862.987548828125,"id":"1305","color":"rgb(153,255,255)","size":4.075808525085449},{"label":"Température Constante","x":2101.514892578125,"y":-803.8215942382812,"id":"1672","color":"rgb(255,204,102)","size":4.293514728546143},{"label":"Educapoles","x":105.24282836914062,"y":835.7413330078125,"id":"891","color":"rgb(153,255,255)","size":4.39528751373291},{"label":"Barents","x":-1320.2484130859375,"y":1932.0987548828125,"id":"413","color":"rgb(0,204,204)","size":4.39528751373291},{"label":"Sea Of Ice","x":-402.9502258300781,"y":1698.795654296875,"id":"185","color":"rgb(153,255,255)","size":14.352338790893555},{"label":"Pole Geographique","x":653.4030151367188,"y":484.79840087890625,"id":"590","color":"rgb(153,255,255)","size":5.103478908538818},{"label":"Etudes Spatiales","x":1028.2242431640625,"y":491.39324951171875,"id":"400","color":"rgb(255,153,153)","size":4.206028938293457},{"label":"Rajendra Pachauri","x":491.4423522949219,"y":14.165596961975098,"id":"1087","color":"rgb(153,255,255)","size":4.075808525085449},{"label":"Solifluxion","x":1204.88037109375,"y":-1249.0697021484375,"id":"1639","color":"rgb(255,204,102)","size":4.39528751373291},{"label":"Greenland Ice","x":-126.77063751220703,"y":1516.032958984375,"id":"638","color":"rgb(153,255,255)","size":4.936610698699951},{"label":"Eastern Arctic","x":-843.3505249023438,"y":1801.095458984375,"id":"856","color":"rgb(0,204,204)","size":4.39528751373291},{"label":"Caribou Des Bois","x":133.42225646972656,"y":-1002.9473876953125,"id":"551","color":"rgb(153,255,0)","size":4.075808525085449},{"label":"Échantillons De Glace","x":1049.4072265625,"y":-330.250732421875,"id":"871","color":"rgb(153,255,255)","size":4.6399359703063965},{"label":"Port Autonome","x":-482.2939453125,"y":-1922.71484375,"id":"1138","color":"rgb(153,0,0)","size":4.39528751373291},{"label":"Sibérie Orientale","x":-269.6578063964844,"y":-701.846435546875,"id":"806","color":"rgb(255,51,51)","size":4.936610698699951},{"label":"Rythme D\u0027Exploitation,1","x":-91.83535766601562,"y":-1162.8453369140625,"id":"1605","attributes":{"nodedef":"n1605"},"color":"rgb(102,0,102)","size":4.075808525085449},{"label":"Canadian Boreal","x":-796.159423828125,"y":2042.5194091796875,"id":"485","color":"rgb(0,204,204)","size":4.0340681076049805},{"label":"Convention De Montego","x":-184.02239990234375,"y":-1494.572265625,"id":"711","color":"rgb(153,0,0)","size":4.781970500946045},{"label":"Kara Sea","x":-1109.3558349609375,"y":1923.9544677734375,"id":"416","color":"rgb(0,204,204)","size":4.510906219482422},{"label":"Castors Lapons","x":-1256.1171875,"y":-228.22557067871094,"id":"1275","color":"rgb(204,204,255)","size":4.0086140632629395},{"label":"American Physical Society","x":-382.6901550292969,"y":1385.4027099609375,"id":"226","color":"rgb(102,255,102)","size":4.0},{"label":"Haut Arctique","x":-196.34776306152344,"y":-157.2665252685547,"id":"336","color":"rgb(0,204,204)","size":4.6399359703063965},{"label":"Profondeur","x":829.1661376953125,"y":-1430.9351806640625,"id":"1544","color":"rgb(153,255,0)","size":4.0086140632629395},{"label":"Communication Satellite","x":43.59181213378906,"y":2506.35546875,"id":"652","color":"rgb(255,153,153)","size":4.206028938293457},{"label":"Russie","x":-522.8524780273438,"y":-1415.021484375,"id":"1604","color":"rgb(255,51,51)","size":4.133297443389893},{"label":"Impact Écologique","x":822.514892578125,"y":-1276.9775390625,"id":"1022","color":"rgb(255,255,51)","size":4.6399359703063965},{"label":"Climate Crisis","x":-559.0671997070312,"y":979.5825805664062,"id":"178","color":"rgb(102,255,102)","size":4.39528751373291},{"label":"Élévation Température","x":-248.6700897216797,"y":1585.9635009765625,"id":"898","color":"rgb(153,255,255)","size":4.0340681076049805},{"label":"Régions Pétrolières","x":-464.6183166503906,"y":-1464.7113037109375,"id":"1329","color":"rgb(102,0,102)","size":4.510906219482422},{"label":"Aurore Polaire","x":714.0791625976562,"y":311.250732421875,"id":"373","color":"rgb(153,255,255)","size":4.936610698699951},{"label":"Marine Science","x":434.7555847167969,"y":370.1911315917969,"id":"885","color":"rgb(153,255,255)","size":4.39528751373291},{"label":"Route Commerciale","x":281.8993225097656,"y":-792.7899169921875,"id":"758","color":"rgb(102,255,102)","size":4.39528751373291},{"label":"Passage Kennedy","x":-1272.6044921875,"y":1398.203125,"id":"1462","color":"rgb(0,204,204)","size":4.0086140632629395},{"label":"Evaluation Des Risques","x":1577.1671142578125,"y":-1862.7254638671875,"id":"947","color":"rgb(102,102,0)","size":4.133297443389893},{"label":"Renard Arctique","x":-482.01922607421875,"y":-749.9813842773438,"id":"1291","color":"rgb(153,255,0)","size":4.936610698699951},{"label":"Erosion","x":-355.6134338378906,"y":958.4852294921875,"id":"927","color":"rgb(102,255,102)","size":4.075808525085449},{"label":"Forage Seed","x":2815.6865234375,"y":3295.669189453125,"id":"1021","color":"rgb(102,102,0)","size":4.0},{"label":"Température De L\u0027Eau,1","x":1581.2574462890625,"y":-736.5062255859375,"id":"1673","attributes":{"nodedef":"n1673"},"color":"rgb(255,204,102)","size":4.510906219482422},{"label":"Ungava Bay","x":-1236.7750244140625,"y":2544.859130859375,"id":"1425","color":"rgb(0,204,204)","size":4.075808525085449},{"label":"Environnement Protection","x":742.9298706054688,"y":-1374.4422607421875,"id":"918","color":"rgb(102,255,102)","size":4.39528751373291},{"label":"Protection De L\u0027Environnement,1","x":924.9998779296875,"y":-1493.4639892578125,"id":"1550","attributes":{"nodedef":"n1550"},"color":"rgb(153,255,0)","size":4.293514728546143},{"label":"Phoques","x":-176.49501037597656,"y":-1298.3714599609375,"id":"1480","color":"rgb(153,255,0)","size":4.133297443389893},{"label":"Health Wealth","x":-769.10888671875,"y":813.8422241210938,"id":"1157","color":"rgb(153,255,0)","size":4.0086140632629395},{"label":"Modèles Climatiques","x":960.2445068359375,"y":-632.1519775390625,"id":"1362","color":"rgb(255,204,102)","size":4.6399359703063965},{"label":"Concentration Atmosphérique En Gaz À Effet De Serre","x":1109.8857421875,"y":-1201.5419921875,"id":"671","color":"rgb(102,255,102)","size":4.133297443389893},{"label":"Cycle Biogéochimique","x":1231.748779296875,"y":-1076.531982421875,"id":"760","color":"rgb(255,255,51)","size":4.781970500946045},{"label":"Écoulement","x":1946.003662109375,"y":-204.98585510253906,"id":"887","color":"rgb(255,255,51)","size":4.075808525085449},{"label":"Liv Arnesen","x":-211.08746337890625,"y":1457.8192138671875,"id":"255","color":"rgb(255,255,51)","size":4.0340681076049805},{"label":"Activités Humaines","x":939.146484375,"y":-1054.251220703125,"id":"117","color":"rgb(102,255,102)","size":4.6399359703063965},{"label":"Effet De Serre Anthropique","x":869.8401489257812,"y":-1122.5921630859375,"id":"895","color":"rgb(102,255,102)","size":4.6399359703063965},{"label":"Salinisation","x":-492.9778747558594,"y":998.083251953125,"id":"1608","color":"rgb(255,204,102)","size":4.133297443389893},{"label":"Reseau De Distribution","x":164.8856964111328,"y":-1508.1824951171875,"id":"1043","color":"rgb(153,0,0)","size":4.0086140632629395},{"label":"Canal De Panama","x":-467.1565856933594,"y":-1797.8077392578125,"id":"353","color":"rgb(153,0,0)","size":4.0340681076049805},{"label":"Kennedy Channel","x":-990.4541015625,"y":1290.1942138671875,"id":"1260","color":"rgb(102,255,102)","size":4.075808525085449},{"label":"Fond Marin","x":161.1836395263672,"y":-697.8049926757812,"id":"444","color":"rgb(255,51,51)","size":8.235326766967773},{"label":"Saami","x":-1866.03271484375,"y":2491.896484375,"id":"1606","color":"rgb(204,204,255)","size":4.39528751373291},{"label":"Administration Bush","x":-1136.2672119140625,"y":-428.8100891113281,"id":"121","color":"rgb(255,51,51)","size":4.206028938293457},{"label":"Nunavut Land","x":-1509.091796875,"y":1711.5626220703125,"id":"1129","color":"rgb(0,204,204)","size":4.075808525085449},{"label":"Ecologie","x":695.2794799804688,"y":-1120.096435546875,"id":"873","color":"rgb(0,204,51)","size":4.510906219482422},{"label":"Mer De Sibérie Orientale","x":210.74697875976562,"y":-328.9768981933594,"id":"1341","color":"rgb(0,204,204)","size":4.6399359703063965},{"label":"Court Terme","x":501.63348388671875,"y":-1379.796875,"id":"174","color":"rgb(0,153,0)","size":5.103478908538818},{"label":"Laboratoire Des Sciences Du Climat","x":895.5632934570312,"y":-84.9769515991211,"id":"289","color":"rgb(255,204,102)","size":4.6399359703063965},{"label":"Etats-Unis","x":-664.49609375,"y":-157.40467834472656,"id":"945","color":"rgb(0,204,204)","size":4.0086140632629395},{"label":"International Journal Of Theoretical","x":-969.3994750976562,"y":198.23516845703125,"id":"1220","color":"rgb(255,51,51)","size":4.0},{"label":"Réseau De Communications","x":-2286.451416015625,"y":-1148.6153564453125,"id":"1587","color":"rgb(204,204,255)","size":4.0},{"label":"Reindeer Husbandry","x":-1639.425537109375,"y":2342.082763671875,"id":"1579","color":"rgb(204,204,255)","size":4.293514728546143},{"label":"Northern Light","x":-1084.892578125,"y":1428.5267333984375,"id":"316","color":"rgb(153,255,255)","size":4.293514728546143},{"label":"Geographic Magazine","x":-1408.0269775390625,"y":1253.908203125,"id":"1066","color":"rgb(153,255,0)","size":4.206028938293457},{"label":"Pollutions Localisées","x":409.26171875,"y":-437.8915100097656,"id":"1519","color":"rgb(102,255,102)","size":4.510906219482422},{"label":"Marine Soviétique","x":-557.7352294921875,"y":-1440.10791015625,"id":"355","color":"rgb(255,51,51)","size":4.075808525085449},{"label":"Données Scientifiques","x":1144.4649658203125,"y":-1053.2713623046875,"id":"832","color":"rgb(255,255,51)","size":4.39528751373291},{"label":"Arctic Bay","x":-1102.2261962890625,"y":1965.6678466796875,"id":"291","color":"rgb(0,204,204)","size":4.293514728546143},{"label":"Gas Hydrates","x":-526.14404296875,"y":1344.7689208984375,"id":"629","color":"rgb(0,153,0)","size":4.206028938293457},{"label":"Affaires Maritimes","x":-70.12700653076172,"y":-1806.66552734375,"id":"129","color":"rgb(153,0,0)","size":4.075808525085449},{"label":"Lac Glaciaire","x":1025.576171875,"y":-203.9110870361328,"id":"867","color":"rgb(153,255,255)","size":4.0},{"label":"Gulf-Stream","x":-762.6338500976562,"y":1361.40185546875,"id":"1148","color":"rgb(102,255,102)","size":4.075808525085449},{"label":"Norvège","x":-934.0388793945312,"y":-634.4059448242188,"id":"1411","color":"rgb(255,51,51)","size":4.206028938293457},{"label":"National Parks","x":-1568.43505859375,"y":1488.180908203125,"id":"313","color":"rgb(153,255,0)","size":9.501245498657227},{"label":"Géologie","x":1237.4952392578125,"y":-582.6567993164062,"id":"1070","color":"rgb(255,204,102)","size":4.075808525085449},{"label":"Président Carter","x":-894.6444091796875,"y":174.04171752929688,"id":"1539","color":"rgb(255,51,51)","size":4.0},{"label":"Prélever","x":-138.2056427001953,"y":-1914.477294921875,"id":"1534","color":"rgb(153,0,0)","size":4.0},{"label":"Arctic Red","x":-1440.24658203125,"y":1692.1748046875,"id":"320","color":"rgb(0,204,204)","size":4.206028938293457},{"label":"National Interest Lands","x":-2533.43408203125,"y":1090.193603515625,"id":"39","color":"rgb(153,255,0)","size":4.206028938293457},{"label":"Edp Sciences","x":620.9034423828125,"y":649.64892578125,"id":"890","color":"rgb(153,255,255)","size":4.0340681076049805},{"label":"Réactions","x":-2242.13916015625,"y":-81.64968872070312,"id":"1559","color":"rgb(255,51,51)","size":4.075808525085449},{"label":"National Snow And Ice Data Center","x":-82.20970153808594,"y":1755.7330322265625,"id":"1383","color":"rgb(153,255,255)","size":4.293514728546143},{"label":"Zone De Subduction","x":1619.37841796875,"y":-586.6400146484375,"id":"202","color":"rgb(255,204,102)","size":4.936610698699951},{"label":"International Organization","x":-435.0935974121094,"y":328.05108642578125,"id":"721","color":"rgb(0,204,204)","size":4.0086140632629395},{"label":"West Passage","x":-738.1751098632812,"y":1883.2489013671875,"id":"1410","color":"rgb(153,0,0)","size":4.133297443389893},{"label":"Politique International","x":-499.8843688964844,"y":-908.3687133789062,"id":"1512","color":"rgb(255,51,51)","size":4.0340681076049805},{"label":"Nouvelles Routes Commerciales","x":-253.4183349609375,"y":-961.7564086914062,"id":"1418","color":"rgb(153,0,0)","size":4.133297443389893},{"label":"Hydrocarbures","x":150.72735595703125,"y":-1719.0933837890625,"id":"1163","color":"rgb(102,0,102)","size":4.6399359703063965},{"label":"Knud Rasmussen","x":-722.918212890625,"y":1028.62451171875,"id":"385","color":"rgb(102,255,102)","size":4.075808525085449},{"label":"Otaries","x":245.4610137939453,"y":-1857.8228759765625,"id":"1446","color":"rgb(153,255,0)","size":4.075808525085449},{"label":"Laponie","x":-600.4788818359375,"y":-305.26251220703125,"id":"1276","color":"rgb(0,204,204)","size":4.6399359703063965},{"label":"Novaya Zemlya","x":-1189.239990234375,"y":1574.789306640625,"id":"418","color":"rgb(0,204,204)","size":4.133297443389893},{"label":"Pont Alexandre","x":151.32626342773438,"y":-57.80909729003906,"id":"798","color":"rgb(0,204,204)","size":4.0340681076049805},{"label":"Conférence","x":-1122.256103515625,"y":633.0912475585938,"id":"684","color":"rgb(102,255,102)","size":4.075808525085449},{"label":"Veau Marin","x":-208.42149353027344,"y":-1258.4281005859375,"id":"1317","color":"rgb(153,255,0)","size":4.075808525085449},{"label":"Atlantique Nord","x":-13.135313987731934,"y":-534.4340209960938,"id":"216","color":"rgb(255,51,51)","size":10.178449630737305},{"label":"Bruno Jacomy","x":1302.4163818359375,"y":361.8206787109375,"id":"1565","color":"rgb(255,255,51)","size":4.0},{"label":"Inlandsis","x":435.01898193359375,"y":159.8060302734375,"id":"1198","color":"rgb(153,255,255)","size":4.39528751373291},{"label":"Déchet Nucléaire","x":380.8000793457031,"y":-1663.5177001953125,"id":"504","color":"rgb(102,102,0)","size":5.472443103790283},{"label":"Philosophie De La Science","x":780.9424438476562,"y":-242.83270263671875,"id":"1429","color":"rgb(255,204,102)","size":4.075808525085449},{"label":"Convention Des Nations Unies Sur Le Droit De La Mer De 1982","x":-282.8759460449219,"y":-1720.91064453125,"id":"717","color":"rgb(153,0,0)","size":4.39528751373291},{"label":"North Pole","x":-513.2245483398438,"y":1585.4044189453125,"id":"182","color":"rgb(0,204,204)","size":14.764718055725098},{"label":"Cartes","x":1560.257080078125,"y":-1286.2509765625,"id":"557","color":"rgb(255,255,51)","size":4.0},{"label":"Temps Géologique","x":1447.703857421875,"y":-494.1518859863281,"id":"510","color":"rgb(255,204,102)","size":4.781970500946045},{"label":"Milieu Polaire","x":300.757568359375,"y":-101.02339172363281,"id":"1359","color":"rgb(153,255,255)","size":4.510906219482422},{"label":"Quantite De Matiere","x":2636.1533203125,"y":-881.0833740234375,"id":"91","color":"rgb(255,255,51)","size":4.510906219482422},{"label":"Physique","x":1883.59228515625,"y":24.318912506103516,"id":"1483","color":"rgb(255,255,51)","size":4.293514728546143},{"label":"Pays Nordique","x":-659.119140625,"y":-1094.1265869140625,"id":"896","color":"rgb(255,51,51)","size":4.6399359703063965},{"label":"Pigb","x":324.859130859375,"y":-200.34991455078125,"id":"1486","color":"rgb(153,255,255)","size":4.39528751373291},{"label":"Poussée D\u0027Archimède,1","x":3051.099853515625,"y":905.1744384765625,"id":"1525","attributes":{"nodedef":"n1525"},"color":"rgb(255,255,0)","size":4.0340681076049805},{"label":"Pollution Control","x":-1381.4327392578125,"y":969.9300537109375,"id":"1517","color":"rgb(102,102,0)","size":4.075808525085449},{"label":"Vladimir Putin","x":-1570.246826171875,"y":-132.1924285888672,"id":"491","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Préfabriqués","x":2714.468017578125,"y":551.2706909179688,"id":"1531","color":"rgb(255,255,51)","size":4.0},{"label":"Zone Polaire","x":354.72003173828125,"y":33.996063232421875,"id":"1360","color":"rgb(0,204,204)","size":4.293514728546143},{"label":"Clathrates","x":-273.6105651855469,"y":1365.593994140625,"id":"625","color":"rgb(102,255,102)","size":4.39528751373291},{"label":"Graduate Student","x":-371.85546875,"y":872.8204345703125,"id":"791","color":"rgb(102,255,102)","size":4.0086140632629395},{"label":"Alliance Atlantique","x":-366.25677490234375,"y":-1161.8916015625,"id":"214","color":"rgb(255,51,51)","size":4.39528751373291},{"label":"Programme Des Nations","x":183.9048309326172,"y":-892.7618408203125,"id":"132","color":"rgb(102,255,102)","size":4.781970500946045},{"label":"Northern Sami","x":-1973.365478515625,"y":2609.33251953125,"id":"1409","color":"rgb(204,204,255)","size":4.206028938293457},{"label":"Recherches Prospectives","x":884.8547973632812,"y":-1303.6541748046875,"id":"1570","color":"rgb(255,255,51)","size":4.133297443389893},{"label":"Gbep","x":-897.9884643554688,"y":807.901123046875,"id":"1054","color":"rgb(0,153,0)","size":4.133297443389893},{"label":"War Of Iraq","x":-1343.6434326171875,"y":248.77804565429688,"id":"1586","color":"rgb(255,51,51)","size":4.0340681076049805},{"label":"Atlantic Ocean","x":-893.0388793945312,"y":1363.2615966796875,"id":"318","color":"rgb(102,255,102)","size":4.510906219482422},{"label":"Præsidium Du Soviet Suprême De L\u0027Urss,1","x":-649.39306640625,"y":-1628.699462890625,"id":"1529","attributes":{"nodedef":"n1529"},"color":"rgb(255,51,51)","size":4.133297443389893},{"label":"Geological Survey","x":-382.74688720703125,"y":1018.3242797851562,"id":"324","color":"rgb(102,255,102)","size":5.103478908538818},{"label":"Espèce Rare","x":392.0811462402344,"y":-962.0516967773438,"id":"937","color":"rgb(153,255,0)","size":4.39528751373291},{"label":"Loup","x":-143.7703399658203,"y":-850.323486328125,"id":"1307","color":"rgb(153,255,0)","size":4.0340681076049805},{"label":"Natural Resources Ministry","x":-589.6399536132812,"y":704.2279052734375,"id":"340","color":"rgb(102,255,102)","size":4.0340681076049805},{"label":"Isotherme","x":2666.44091796875,"y":-415.98529052734375,"id":"1232","color":"rgb(255,255,51)","size":4.0086140632629395},{"label":"Amérique Du Nord","x":-141.58084106445312,"y":-656.83056640625,"id":"166","color":"rgb(255,51,51)","size":17.335289001464844},{"label":"Roald Amundsen","x":-523.8612060546875,"y":1742.4547119140625,"id":"966","color":"rgb(153,255,255)","size":5.103478908538818},{"label":"Radar Altimeter","x":199.72256469726562,"y":1572.3167724609375,"id":"754","color":"rgb(255,204,102)","size":4.206028938293457},{"label":"East Greenland","x":-944.6824340820312,"y":1563.160400390625,"id":"613","color":"rgb(0,204,204)","size":4.6399359703063965},{"label":"Ours Blanc","x":-94.96329498291016,"y":-394.123779296875,"id":"406","color":"rgb(153,255,0)","size":4.510906219482422},{"label":"Ressources Fossiles","x":636.2318725585938,"y":-1141.4078369140625,"id":"1591","color":"rgb(0,153,0)","size":4.6399359703063965},{"label":"Agence Spatiale Européenne","x":811.7756958007812,"y":289.67626953125,"id":"134","color":"rgb(255,153,153)","size":4.39528751373291},{"label":"Secretaire General","x":-380.1330871582031,"y":-1336.759033203125,"id":"215","color":"rgb(255,51,51)","size":5.282204627990723},{"label":"Activité Économique","x":495.2303161621094,"y":-1774.67724609375,"id":"95","color":"rgb(153,0,0)","size":5.6738481521606445},{"label":"Capitale De La Norvège","x":-714.158935546875,"y":-332.8415222167969,"id":"543","color":"rgb(153,0,0)","size":4.6399359703063965},{"label":"Forage","x":2852.77197265625,"y":3320.1611328125,"id":"1019","color":"rgb(102,102,0)","size":4.0086140632629395},{"label":"Glacial Till","x":-310.6843566894531,"y":1678.2410888671875,"id":"1097","color":"rgb(0,204,204)","size":4.133297443389893},{"label":"Arthur Chilingarov","x":-390.9749755859375,"y":1931.4237060546875,"id":"342","color":"rgb(153,255,255)","size":4.075808525085449},{"label":"Sami People","x":-1888.802734375,"y":2538.2783203125,"id":"1249","color":"rgb(204,204,255)","size":5.6738481521606445},{"label":"Progression","x":-1064.17529296875,"y":380.4419250488281,"id":"1548","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Universite De Paris","x":1826.4591064453125,"y":-120.52847290039062,"id":"648","color":"rgb(255,255,51)","size":4.510906219482422},{"label":"Atmospheric Research","x":-383.1943664550781,"y":1518.517333984375,"id":"360","color":"rgb(153,255,255)","size":4.075808525085449},{"label":"Wwf","x":-426.822265625,"y":1108.128662109375,"id":"1714","color":"rgb(153,255,0)","size":4.0086140632629395},{"label":"Renard Roux","x":-501.80584716796875,"y":-930.3526611328125,"id":"1581","color":"rgb(153,255,0)","size":4.206028938293457},{"label":"Source Lumineuse","x":1338.2926025390625,"y":-355.2475280761719,"id":"1192","color":"rgb(255,255,51)","size":4.0},{"label":"Fermentation Bactérienne","x":1216.25146484375,"y":-1170.071533203125,"id":"980","color":"rgb(153,255,0)","size":4.075808525085449},{"label":"Neige Au Sol","x":1302.529052734375,"y":-289.34307861328125,"id":"1018","color":"rgb(255,255,51)","size":4.0340681076049805},{"label":"International Cooperation","x":-362.96234130859375,"y":298.28668212890625,"id":"720","color":"rgb(0,204,204)","size":4.075808525085449},{"label":"International Geosphere","x":-609.56396484375,"y":1503.0321044921875,"id":"477","color":"rgb(153,255,255)","size":4.133297443389893},{"label":"Louis Etienne","x":262.0841064453125,"y":-13.704791069030762,"id":"397","color":"rgb(0,204,204)","size":8.235326766967773},{"label":"Mécanique Des Solides","x":2748.43115234375,"y":453.333984375,"id":"660","color":"rgb(255,255,0)","size":4.39528751373291},{"label":"Laboratoire De Géophysique","x":1749.293701171875,"y":467.0248107910156,"id":"1076","color":"rgb(255,204,102)","size":4.39528751373291},{"label":"Klavdij Sluban","x":-773.81005859375,"y":-1072.273681640625,"id":"1335","color":"rgb(255,51,51)","size":4.0},{"label":"Période Glaciaire","x":1182.68359375,"y":-265.6172180175781,"id":"287","color":"rgb(153,255,255)","size":8.235326766967773},{"label":"Croûte Continentale","x":1700.3018798828125,"y":-695.7825317382812,"id":"438","color":"rgb(255,204,102)","size":5.282204627990723},{"label":"Laboratoire De Physique Statistique","x":453.7958984375,"y":278.333740234375,"id":"1264","color":"rgb(255,255,51)","size":4.0086140632629395},{"label":"Aurores Boréales","x":925.7900390625,"y":199.57559204101562,"id":"375","color":"rgb(153,255,255)","size":4.510906219482422},{"label":"Fahrenheit Scale","x":1027.1209716796875,"y":2542.7236328125,"id":"70","color":"rgb(255,255,51)","size":4.6399359703063965},{"label":"Anwr","x":-2690.359619140625,"y":895.0036010742188,"id":"268","color":"rgb(153,255,0)","size":4.6399359703063965},{"label":"Traineau","x":-965.9135131835938,"y":-565.5975341796875,"id":"1684","color":"rgb(204,204,255)","size":4.39528751373291},{"label":"Biosphere Reserve","x":-1270.091552734375,"y":1550.5616455078125,"id":"475","color":"rgb(0,204,204)","size":4.133297443389893},{"label":"Bassin Sédimentaire","x":1087.60693359375,"y":-942.1962890625,"id":"144","color":"rgb(255,204,102)","size":4.293514728546143},{"label":"Institute Affiliate","x":-670.5057983398438,"y":2188.31787109375,"id":"1029","color":"rgb(0,204,204)","size":4.0},{"label":"Navigation","x":226.42288208007812,"y":3431.34326171875,"id":"1391","color":"rgb(255,255,51)","size":4.133297443389893},{"label":"New England","x":-1147.896484375,"y":263.2210998535156,"id":"12","color":"rgb(255,51,51)","size":4.0340681076049805},{"label":"Frederick Cook","x":-847.7138061523438,"y":1235.386962890625,"id":"967","color":"rgb(102,255,102)","size":4.6399359703063965},{"label":"Plante Fourragère","x":1074.7864990234375,"y":-1960.4940185546875,"id":"1473","color":"rgb(153,255,0)","size":4.0},{"label":"Géosphère","x":-534.4583129882812,"y":1452.3653564453125,"id":"1081","color":"rgb(153,255,255)","size":4.206028938293457},{"label":"Surface Bioproductive","x":332.2822570800781,"y":-773.5977172851562,"id":"1656","color":"rgb(102,255,102)","size":4.133297443389893},{"label":"James Clark Ross","x":135.2253875732422,"y":1444.279541015625,"id":"1236","color":"rgb(255,255,51)","size":4.075808525085449},{"label":"Exploration Polaire","x":86.10325622558594,"y":51.03369903564453,"id":"838","color":"rgb(153,255,255)","size":4.39528751373291},{"label":"Gadus Morhua","x":-265.5268249511719,"y":-683.766357421875,"id":"489","color":"rgb(255,51,51)","size":4.0340681076049805},{"label":"Compose Organique","x":1279.6739501953125,"y":-1786.3187255859375,"id":"668","color":"rgb(102,102,0)","size":4.6399359703063965},{"label":"Ile De Baffin","x":-542.6830444335938,"y":483.6591491699219,"id":"282","color":"rgb(0,204,204)","size":4.6399359703063965},{"label":"Northern Canada","x":-766.9470825195312,"y":1782.7698974609375,"id":"1315","color":"rgb(0,204,204)","size":4.510906219482422},{"label":"Consommation","x":-3767.505126953125,"y":-1286.1236572265625,"id":"699","color":"rgb(204,0,0)","size":4.0},{"label":"Centre De Recherche","x":1475.1954345703125,"y":-714.0918579101562,"id":"159","color":"rgb(255,204,102)","size":7.9385457038879395},{"label":"Équilibre Biologique","x":1321.3497314453125,"y":-1695.903076171875,"id":"921","color":"rgb(102,102,0)","size":4.293514728546143},{"label":"Centre National","x":1352.81494140625,"y":-562.0387573242188,"id":"570","color":"rgb(255,204,102)","size":4.936610698699951},{"label":"Dominique Raynaud","x":897.6173706054688,"y":-141.02593994140625,"id":"290","color":"rgb(255,204,102)","size":4.39528751373291},{"label":"Journal De Bord","x":-291.7248229980469,"y":-123.4757080078125,"id":"1255","color":"rgb(0,204,204)","size":4.0086140632629395},{"label":"Baril De Pétrole","x":-373.9239807128906,"y":-1424.874755859375,"id":"422","color":"rgb(102,0,102)","size":5.6738481521606445},{"label":"Fossil Fuel","x":-684.3709716796875,"y":1111.435546875,"id":"463","color":"rgb(0,153,0)","size":8.235326766967773},{"label":"Stephen Harper","x":-132.4368896484375,"y":-591.208251953125,"id":"1009","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Presqu\u0027Île De Kola,1","x":-388.2249450683594,"y":-725.830078125,"id":"1540","attributes":{"nodedef":"n1540"},"color":"rgb(255,51,51)","size":4.39528751373291},{"label":"Alta","x":-1820.52587890625,"y":2058.934326171875,"id":"220","color":"rgb(0,204,204)","size":4.0},{"label":"Russia To Germany","x":-1770.2144775390625,"y":400.1640625,"id":"1402","color":"rgb(102,0,102)","size":4.133297443389893},{"label":"Environmental Satellite","x":318.142333984375,"y":2182.989501953125,"id":"911","color":"rgb(255,153,153)","size":4.39528751373291},{"label":"Ile Wake","x":249.35452270507812,"y":435.57574462890625,"id":"1502","color":"rgb(0,204,204)","size":4.0},{"label":"George Hubert Wilkins","x":-890.5496215820312,"y":1383.94775390625,"id":"1080","color":"rgb(0,204,204)","size":4.0340681076049805},{"label":"Recul De La Banquise","x":387.477294921875,"y":-241.42066955566406,"id":"1573","color":"rgb(153,255,255)","size":4.6399359703063965},{"label":"Eau Chaude","x":1326.6470947265625,"y":-1008.3419189453125,"id":"598","color":"rgb(255,204,102)","size":6.341859817504883},{"label":"Plateau Continental","x":-42.98124694824219,"y":-898.1126708984375,"id":"502","color":"rgb(102,255,102)","size":8.235326766967773},{"label":"Vitesse Limite","x":3108.7373046875,"y":928.3176879882812,"id":"1527","color":"rgb(255,255,0)","size":4.0},{"label":"Gps Satellite","x":220.57168579101562,"y":3309.154296875,"id":"1115","color":"rgb(255,255,51)","size":4.39528751373291},{"label":"Imagerie Satellite","x":755.4320068359375,"y":-166.0117645263672,"id":"1183","color":"rgb(255,153,153)","size":4.293514728546143},{"label":"Race To The Pole","x":-762.5220947265625,"y":1482.967529296875,"id":"1027","color":"rgb(0,204,204)","size":4.0340681076049805},{"label":"Bush Administration","x":-1530.074462890625,"y":215.48060607910156,"id":"122","color":"rgb(255,51,51)","size":4.293514728546143},{"label":"Marge Continentale","x":1305.8900146484375,"y":-625.6681518554688,"id":"266","color":"rgb(255,204,102)","size":4.781970500946045},{"label":"Narvik","x":-1618.4957275390625,"y":2043.26513671875,"id":"1381","color":"rgb(0,204,204)","size":4.0},{"label":"Baleine Grise","x":-176.243896484375,"y":-979.921875,"id":"393","color":"rgb(153,255,0)","size":4.206028938293457},{"label":"Arctic Summer","x":-252.80731201171875,"y":1699.3084716796875,"id":"328","color":"rgb(0,204,204)","size":4.39528751373291},{"label":"Métaux Lourds","x":1217.7490234375,"y":-1729.1802978515625,"id":"379","color":"rgb(102,102,0)","size":4.6399359703063965},{"label":"Port En Eau Profonde","x":66.55622863769531,"y":-1956.13330078125,"id":"1523","color":"rgb(153,0,0)","size":4.0340681076049805},{"label":"Decroissance Soutenable","x":425.0431823730469,"y":-1451.91259765625,"id":"244","color":"rgb(255,51,51)","size":4.206028938293457},{"label":"Glacier Rocheux","x":714.1744384765625,"y":-146.1813201904297,"id":"793","color":"rgb(153,255,255)","size":4.133297443389893},{"label":"Fleuve Amour","x":-529.2616577148438,"y":-1068.8953857421875,"id":"999","color":"rgb(102,0,102)","size":4.0086140632629395},{"label":"Weather Satellite","x":353.239501953125,"y":2159.915283203125,"id":"1082","color":"rgb(255,153,153)","size":4.936610698699951},{"label":"Pipe Line","x":-2321.0849609375,"y":713.1168212890625,"id":"1489","color":"rgb(102,0,102)","size":4.133297443389893},{"label":"Agence Spatiale Russe","x":996.43310546875,"y":594.5779418945312,"id":"139","color":"rgb(255,153,153)","size":4.0340681076049805},{"label":"Chaîne De Montagnes","x":1214.927001953125,"y":-648.8825073242188,"id":"403","color":"rgb(255,204,102)","size":5.6738481521606445},{"label":"Accord Canada","x":14.053364753723145,"y":283.5315856933594,"id":"78","color":"rgb(0,204,204)","size":4.0086140632629395},{"label":"Alaska Pipeline","x":-2189.193359375,"y":992.2608642578125,"id":"193","color":"rgb(102,0,102)","size":4.133297443389893},{"label":"Klondike Gold","x":-1461.8563232421875,"y":988.4777221679688,"id":"1121","color":"rgb(153,0,0)","size":4.133297443389893},{"label":"Acier Inoxydable","x":2597.7001953125,"y":-472.5513610839844,"id":"1233","color":"rgb(255,255,51)","size":4.0086140632629395},{"label":"Kativik School","x":-1295.8642578125,"y":2771.06103515625,"id":"1258","color":"rgb(0,204,204)","size":4.133297443389893},{"label":"Arctic Norway","x":-1015.7074584960938,"y":1845.171142578125,"id":"314","color":"rgb(0,204,204)","size":4.510906219482422},{"label":"Péninsule Tchouktche","x":22.759498596191406,"y":-830.916748046875,"id":"1467","color":"rgb(255,51,51)","size":4.206028938293457},{"label":"Port Méthanier","x":-87.27054595947266,"y":-1629.2996826171875,"id":"171","color":"rgb(102,0,102)","size":4.510906219482422},{"label":"Produits Pétroliers","x":-328.5513916015625,"y":-1678.751220703125,"id":"656","color":"rgb(102,0,102)","size":4.936610698699951},{"label":"Expédition Polaire Russe","x":-910.3502197265625,"y":-196.7174072265625,"id":"957","color":"rgb(255,51,51)","size":4.293514728546143},{"label":"Nsidc","x":-39.78633499145508,"y":1692.2911376953125,"id":"1421","color":"rgb(153,255,255)","size":4.510906219482422},{"label":"Risque Technologique","x":1651.34423828125,"y":-1836.7208251953125,"id":"24","color":"rgb(102,102,0)","size":4.781970500946045},{"label":"Michael Llodra","x":296.3454895019531,"y":-1547.416259765625,"id":"1542","color":"rgb(255,51,51)","size":4.0},{"label":"Traitement Des Déchets","x":701.334716796875,"y":-2317.052734375,"id":"768","color":"rgb(102,102,0)","size":4.781970500946045},{"label":"Agent D\u0027Érosion,1","x":1293.1495361328125,"y":-845.2651977539062,"id":"142","attributes":{"nodedef":"n142"},"color":"rgb(102,255,102)","size":4.293514728546143},{"label":"Insel Fünen","x":-1856.4827880859375,"y":-1676.109375,"id":"763","color":"rgb(255,51,51)","size":4.0340681076049805},{"label":"Règlementer La Pêche","x":-24.56975555419922,"y":-1786.160400390625,"id":"1577","color":"rgb(153,0,0)","size":4.510906219482422},{"label":"Centre Technique Régional","x":-3758.538818359375,"y":-1311.2628173828125,"id":"700","color":"rgb(204,0,0)","size":4.0},{"label":"Gaz Naturel Liquéfié","x":-91.20169830322266,"y":-1537.076416015625,"id":"1044","color":"rgb(0,153,0)","size":4.510906219482422},{"label":"Inuit Eskimo","x":-1141.657470703125,"y":2152.69580078125,"id":"527","color":"rgb(0,204,204)","size":4.206028938293457},{"label":"Détroit De Béring","x":-323.8287353515625,"y":-395.40972900390625,"id":"411","color":"rgb(0,204,204)","size":7.650110721588135},{"label":"Protection Agency","x":-1255.6109619140625,"y":1038.06103515625,"id":"164","color":"rgb(153,255,0)","size":4.133297443389893},{"label":"Modifications Futures","x":-315.1140441894531,"y":-1362.1593017578125,"id":"1366","color":"rgb(255,51,51)","size":4.0340681076049805},{"label":"Geophysical Services","x":1747.908447265625,"y":736.555908203125,"id":"1072","color":"rgb(255,204,51)","size":4.0},{"label":"21-Avr-08","x":-2301.590576171875,"y":-1107.337646484375,"id":"17","color":"rgb(204,204,255)","size":4.0},{"label":"Accord De Marrakech","x":-23.58915138244629,"y":-1841.5423583984375,"id":"81","color":"rgb(153,0,0)","size":4.0086140632629395},{"label":"Birds Of North","x":-1526.2667236328125,"y":1152.0509033203125,"id":"478","color":"rgb(153,255,0)","size":4.0},{"label":"Fjord","x":-1721.904541015625,"y":1539.12451171875,"id":"992","color":"rgb(0,204,204)","size":4.206028938293457},{"label":"Habitants Locaux","x":-450.0788269042969,"y":-632.4037475585938,"id":"1149","color":"rgb(204,204,255)","size":4.0},{"label":"Sous-Marin Mir","x":0.7903322577476501,"y":-263.9958190917969,"id":"1644","color":"rgb(255,51,51)","size":4.6399359703063965},{"label":"Impacts Sociaux","x":857.00830078125,"y":-1250.28759765625,"id":"1188","color":"rgb(255,255,51)","size":4.293514728546143},{"label":"Recherche Publique","x":1598.115234375,"y":-1009.1126708984375,"id":"1569","color":"rgb(255,204,102)","size":4.075808525085449},{"label":"Atmosphère","x":-327.4678955078125,"y":1451.6829833984375,"id":"358","color":"rgb(153,255,255)","size":4.206028938293457},{"label":"Paysages Naturels","x":759.217529296875,"y":-1915.464599609375,"id":"1464","color":"rgb(153,255,0)","size":4.0086140632629395},{"label":"Quest For The North","x":-836.8455810546875,"y":1504.2691650390625,"id":"1556","color":"rgb(153,0,0)","size":4.293514728546143},{"label":"Estimation Précise","x":1511.7779541015625,"y":-1364.507568359375,"id":"942","color":"rgb(255,255,51)","size":4.0},{"label":"Russia To Canada","x":-675.6696166992188,"y":1444.2498779296875,"id":"1506","color":"rgb(0,204,204)","size":4.133297443389893},{"label":"Année Polaire Internationale","x":953.1709594726562,"y":-222.62002563476562,"id":"257","color":"rgb(153,255,255)","size":4.206028938293457},{"label":"Dégradation Des Sols","x":940.4586181640625,"y":-1574.67333984375,"id":"779","color":"rgb(102,102,0)","size":4.781970500946045},{"label":"Croissance Végétale","x":1036.1978759765625,"y":-1246.32275390625,"id":"744","color":"rgb(153,255,0)","size":4.293514728546143},{"label":"Égalité De Droit","x":55.669151306152344,"y":-467.2328186035156,"id":"77","color":"rgb(102,255,102)","size":4.0},{"label":"Chemin De Fer","x":-327.4593811035156,"y":-804.969482421875,"id":"354","color":"rgb(153,0,0)","size":4.206028938293457},{"label":"1988","x":-1095.9884033203125,"y":437.6317443847656,"id":"14","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Gestion Des Déchets","x":641.9574584960938,"y":-2060.39013671875,"id":"708","color":"rgb(102,102,0)","size":6.584775924682617},{"label":"Barriere De Glace","x":751.5405883789062,"y":84.75260162353516,"id":"431","color":"rgb(153,255,255)","size":4.6399359703063965},{"label":"Disparition De La Banquise D\u0027Été,1","x":481.5081787109375,"y":-566.0498046875,"id":"821","attributes":{"nodedef":"n821"},"color":"rgb(102,255,102)","size":4.133297443389893},{"label":"Préservation Biodiversité","x":730.5175170898438,"y":-1473.8968505859375,"id":"1537","color":"rgb(102,102,0)","size":4.510906219482422},{"label":"Alopex Lagopus","x":-719.4835815429688,"y":84.6142578125,"id":"218","color":"rgb(0,204,204)","size":4.0340681076049805},{"label":"Fjord Norvégien","x":-884.736328125,"y":-309.86322021484375,"id":"536","color":"rgb(0,204,204)","size":4.133297443389893},{"label":"Pipeline Company","x":-2126.298828125,"y":726.8614501953125,"id":"1037","color":"rgb(102,0,102)","size":4.510906219482422},{"label":"Golfe De Botnie","x":-574.8486328125,"y":-847.8629150390625,"id":"1122","color":"rgb(255,51,51)","size":4.936610698699951},{"label":"Plaque Tectonique","x":1617.9876708984375,"y":-518.2423706054688,"id":"834","color":"rgb(255,204,102)","size":4.133297443389893},{"label":"Ère Quaternaire","x":1294.13525390625,"y":-334.4315490722656,"id":"865","color":"rgb(255,255,51)","size":4.293514728546143},{"label":"Vent Solaire","x":904.5231323242188,"y":317.2509765625,"id":"116","color":"rgb(255,153,153)","size":5.6738481521606445},{"label":"Lac Baikal","x":-68.26935577392578,"y":-861.2033081054688,"id":"1266","color":"rgb(153,255,0)","size":4.510906219482422},{"label":"Atlantic Treaty Organization","x":-615.8858642578125,"y":-697.463134765625,"id":"1445","color":"rgb(255,51,51)","size":4.0},{"label":"Navire De Guerre","x":-466.7169494628906,"y":-1556.725341796875,"id":"232","color":"rgb(255,51,51)","size":4.39528751373291},{"label":"International Journal Of Technology","x":-822.3903198242188,"y":1132.199462890625,"id":"1219","color":"rgb(102,255,102)","size":4.0340681076049805},{"label":"Agence De Voyages","x":-566.8865966796875,"y":-400.0716857910156,"id":"20","color":"rgb(0,204,204)","size":4.936610698699951},{"label":"Shtokman","x":-2037.73486328125,"y":832.659423828125,"id":"1631","color":"rgb(102,0,102)","size":4.39528751373291},{"label":"Disparition","x":246.64466857910156,"y":-1162.3238525390625,"id":"820","color":"rgb(153,255,0)","size":4.0},{"label":"Mer De Beaufort","x":-225.43960571289062,"y":-33.4792594909668,"id":"1336","color":"rgb(0,204,204)","size":4.510906219482422},{"label":"Environnement De Développement","x":1485.168212890625,"y":-1605.7059326171875,"id":"917","color":"rgb(255,255,51)","size":4.0340681076049805},{"label":"Christophe Colomb","x":-492.0862731933594,"y":-791.3049926757812,"id":"602","color":"rgb(255,51,51)","size":4.0086140632629395},{"label":"Kola Peninsula","x":-1877.4124755859375,"y":2299.73876953125,"id":"421","color":"rgb(204,204,255)","size":4.6399359703063965},{"label":"Centre Of Excellence","x":-827.9765625,"y":1638.33740234375,"id":"331","color":"rgb(0,204,204)","size":4.0086140632629395},{"label":"Usgs","x":-401.1330871582031,"y":821.0635375976562,"id":"1700","color":"rgb(102,255,102)","size":4.0086140632629395},{"label":"Land Degradation","x":-478.3914794921875,"y":1062.0526123046875,"id":"803","color":"rgb(255,204,102)","size":4.133297443389893},{"label":"Geographic Channel","x":-1642.635498046875,"y":1258.9573974609375,"id":"1064","color":"rgb(153,255,0)","size":4.206028938293457},{"label":"Climate System","x":-284.0472717285156,"y":1345.24169921875,"id":"299","color":"rgb(102,255,102)","size":4.6399359703063965},{"label":"Extension De Sa Zee","x":-258.7265319824219,"y":-1052.287841796875,"id":"969","color":"rgb(255,51,51)","size":4.075808525085449},{"label":"Renard Des Sables","x":-736.22412109375,"y":-892.9422607421875,"id":"1582","color":"rgb(153,255,0)","size":4.133297443389893},{"label":"Terre Adelie","x":740.2885131835938,"y":240.6663818359375,"id":"457","color":"rgb(255,204,102)","size":5.103478908538818},{"label":"Alaska Fishing","x":-2920.301025390625,"y":2365.240966796875,"id":"192","color":"rgb(0,204,204)","size":4.6399359703063965},{"label":"Vladimir Poutine","x":-711.3236694335938,"y":-1351.60986328125,"id":"495","color":"rgb(255,51,51)","size":5.886096477508545},{"label":"Gradient Thermique Adiabatique","x":1962.834228515625,"y":-431.2511901855469,"id":"1131","color":"rgb(255,204,102)","size":4.133297443389893},{"label":"Jean-Louis Etienne","x":246.227783203125,"y":71.02962493896484,"id":"1244","color":"rgb(153,255,255)","size":4.781970500946045},{"label":"Revendication Territoriale","x":84.11878967285156,"y":-772.0419311523438,"id":"759","color":"rgb(255,51,51)","size":4.936610698699951},{"label":"Haute Résolution","x":972.8068237304688,"y":-44.521812438964844,"id":"1155","color":"rgb(255,255,51)","size":4.075808525085449},{"label":"Zones Froides","x":1170.614990234375,"y":-814.6840209960938,"id":"1721","color":"rgb(255,204,102)","size":4.206028938293457},{"label":"Mecanique Celeste","x":1754.9249267578125,"y":-24.008731842041016,"id":"347","color":"rgb(255,153,153)","size":4.075808525085449},{"label":"Centrale Electrique","x":460.12310791015625,"y":-1536.29052734375,"id":"426","color":"rgb(0,153,0)","size":4.510906219482422},{"label":"Tara Expéditions","x":162.76512145996094,"y":-37.0638427734375,"id":"822","color":"rgb(153,255,255)","size":4.781970500946045},{"label":"Grand Public","x":1464.771484375,"y":-1291.46240234375,"id":"1139","color":"rgb(255,255,51)","size":4.0},{"label":"Identité Culturelle","x":744.2086791992188,"y":-1578.896240234375,"id":"824","color":"rgb(153,255,0)","size":4.206028938293457},{"label":"Ward Hunt Island","x":-468.4326477050781,"y":1868.2164306640625,"id":"1253","color":"rgb(0,204,204)","size":4.293514728546143},{"label":"Ballon Stratosphérique","x":1370.3006591796875,"y":497.37359619140625,"id":"399","color":"rgb(255,153,153)","size":4.0086140632629395},{"label":"Carnet De Voyage","x":-815.7117309570312,"y":-674.12451171875,"id":"230","color":"rgb(204,204,255)","size":4.206028938293457},{"label":"Volumes D\u0027Hydrocarbures,1","x":-284.30419921875,"y":-1003.9923706054688,"id":"1707","attributes":{"nodedef":"n1707"},"color":"rgb(102,0,102)","size":4.39528751373291},{"label":"Réfléchissement","x":1013.8643798828125,"y":-1074.454833984375,"id":"1574","color":"rgb(102,255,102)","size":4.206028938293457},{"label":"Loi Des Gaz Parfaits","x":2679.76318359375,"y":-726.4705810546875,"id":"703","color":"rgb(255,255,51)","size":4.6399359703063965},{"label":"Histoire Naturelle","x":732.302001953125,"y":-565.925048828125,"id":"469","color":"rgb(255,204,102)","size":4.6399359703063965},{"label":"Dette Écologique.","x":479.8210754394531,"y":-1402.3721923828125,"id":"811","color":"rgb(255,51,51)","size":4.206028938293457},{"label":"Effet De Serre","x":865.8285522460938,"y":-903.2288208007812,"id":"65","color":"rgb(102,255,102)","size":69.37736511230469},{"label":"Eau Liquide","x":1440.804443359375,"y":-54.767822265625,"id":"859","color":"rgb(255,255,51)","size":4.39528751373291},{"label":"Eaux Douces","x":935.943603515625,"y":-1351.420654296875,"id":"857","color":"rgb(255,255,51)","size":4.39528751373291},{"label":"Hammerfest","x":-1517.981201171875,"y":2044.6671142578125,"id":"1151","color":"rgb(0,204,204)","size":4.0086140632629395},{"label":"Arctic Resources","x":-753.0548095703125,"y":1701.157958984375,"id":"327","color":"rgb(153,255,255)","size":4.206028938293457},{"label":"Souveraineté Canadienne","x":-83.83868408203125,"y":-374.80377197265625,"id":"1648","color":"rgb(255,51,51)","size":4.39528751373291},{"label":"Barent Sea","x":-1725.133544921875,"y":1701.3858642578125,"id":"420","color":"rgb(0,204,204)","size":4.206028938293457},{"label":"Gas Liquefaction","x":-2165.393310546875,"y":858.1279296875,"id":"1035","color":"rgb(102,0,102)","size":4.206028938293457},{"label":"Methane Hydrate","x":-674.2474365234375,"y":1322.800537109375,"id":"628","color":"rgb(102,255,102)","size":4.936610698699951},{"label":"Union Pour La Republique","x":-1195.4715576171875,"y":-1906.215576171875,"id":"32","color":"rgb(255,51,51)","size":4.0},{"label":"Meteorologie Aeronautique","x":1906.800048828125,"y":-298.53631591796875,"id":"1348","color":"rgb(255,204,102)","size":4.0340681076049805},{"label":"Origine Humaine","x":530.5454711914062,"y":-867.5733032226562,"id":"1443","color":"rgb(102,255,102)","size":4.39528751373291},{"label":"Activité Physique","x":19.17449951171875,"y":-1487.5723876953125,"id":"110","color":"rgb(255,51,51)","size":4.075808525085449},{"label":"Climat","x":634.1971435546875,"y":-416.56427001953125,"id":"633","color":"rgb(255,204,102)","size":4.510906219482422},{"label":"Cirque Glaciaire","x":-414.3337707519531,"y":-675.9893798828125,"id":"620","color":"rgb(204,204,255)","size":4.0},{"label":"Destruction","x":-1023.5889282226562,"y":235.55380249023438,"id":"804","color":"rgb(255,51,51)","size":4.0},{"label":"Bass Temperature","x":1143.0743408203125,"y":-394.33685302734375,"id":"1002","color":"rgb(255,255,51)","size":4.0340681076049805},{"label":"Laboratoire Des Sciences","x":1369.251708984375,"y":-120.38371276855469,"id":"286","color":"rgb(255,255,51)","size":4.6399359703063965},{"label":"Ressources Halieutiques","x":208.87730407714844,"y":-1788.5084228515625,"id":"172","color":"rgb(0,153,0)","size":5.282204627990723},{"label":"Finlande","x":-699.87255859375,"y":-1438.7354736328125,"id":"984","color":"rgb(255,51,51)","size":4.206028938293457},{"label":"Modelés Glaciaires","x":518.2478637695312,"y":-613.6041259765625,"id":"1365","color":"rgb(102,255,102)","size":4.510906219482422},{"label":"Methane Gas","x":-695.7578735351562,"y":1379.359375,"id":"1350","color":"rgb(0,153,0)","size":4.133297443389893},{"label":"North Pole Dash","x":-518.3096313476562,"y":1951.0364990234375,"id":"1406","color":"rgb(153,255,255)","size":4.206028938293457},{"label":"Science Humaine","x":1481.983154296875,"y":-437.10595703125,"id":"238","color":"rgb(255,255,51)","size":6.341859817504883},{"label":"Surface Temperature","x":-158.56500244140625,"y":1636.7862548828125,"id":"1408","color":"rgb(153,255,255)","size":4.133297443389893},{"label":"Josée Auclair","x":-585.8860473632812,"y":2012.5086669921875,"id":"1250","color":"rgb(0,204,204)","size":4.39528751373291},{"label":"Atmospheric Chemistry","x":-458.1257629394531,"y":1473.9342041015625,"id":"308","color":"rgb(153,255,255)","size":4.293514728546143},{"label":"Vitus Bering","x":-514.814208984375,"y":-218.38807678222656,"id":"807","color":"rgb(0,204,204)","size":4.075808525085449},{"label":"Inuits","x":-1086.007568359375,"y":2101.54638671875,"id":"1223","color":"rgb(204,204,255)","size":4.510906219482422},{"label":"Désertification","x":-346.1569519042969,"y":1042.04052734375,"id":"802","color":"rgb(255,204,102)","size":4.075808525085449},{"label":"Gestion Durable","x":535.494140625,"y":-1856.2032470703125,"id":"882","color":"rgb(153,0,0)","size":4.39528751373291},{"label":"Évolution Dynamique","x":1323.7410888671875,"y":-173.46302795410156,"id":"953","color":"rgb(255,255,51)","size":4.133297443389893},{"label":"Manchot Empereur","x":589.0419921875,"y":461.8739929199219,"id":"1017","color":"rgb(0,204,204)","size":4.075808525085449},{"label":"Terre Arable","x":529.2310791015625,"y":-1912.7171630859375,"id":"1474","color":"rgb(153,0,0)","size":4.0086140632629395},{"label":"Espece Menacee","x":189.9256591796875,"y":-1050.06298828125,"id":"167","color":"rgb(153,255,0)","size":8.852968215942383},{"label":"Greenland Sea","x":-837.241943359375,"y":1581.582763671875,"id":"1144","color":"rgb(0,204,204)","size":4.510906219482422},{"label":"Project For Ice","x":7.382100582122803,"y":1167.9910888671875,"id":"826","color":"rgb(153,255,255)","size":4.206028938293457},{"label":"Acteur Économique","x":488.945556640625,"y":-1980.610595703125,"id":"94","color":"rgb(153,0,0)","size":4.206028938293457},{"label":"Cartographier","x":1643.154052734375,"y":-1261.8980712890625,"id":"558","color":"rgb(255,255,51)","size":4.0086140632629395},{"label":"Nappe Souterraine","x":579.6406860351562,"y":-1934.3416748046875,"id":"1358","color":"rgb(153,255,0)","size":4.133297443389893},{"label":"Domm","x":-1004.6201171875,"y":179.20132446289062,"id":"827","color":"rgb(255,51,51)","size":4.0},{"label":"Lièvre Arctique","x":-455.9764099121094,"y":-421.9842224121094,"id":"482","color":"rgb(153,255,0)","size":4.39528751373291},{"label":"Gédéon Programmes","x":-504.4151611328125,"y":353.18511962890625,"id":"1056","color":"rgb(0,204,204)","size":4.0340681076049805},{"label":"Indigenous Peoples","x":-1673.6878662109375,"y":2261.001220703125,"id":"618","color":"rgb(204,204,255)","size":5.282204627990723},{"label":"Grande Echelle","x":1003.61083984375,"y":-1225.32958984375,"id":"1140","color":"rgb(153,255,0)","size":4.133297443389893},{"label":"Tri Selectif","x":644.0982666015625,"y":-2335.362548828125,"id":"771","color":"rgb(102,102,0)","size":4.510906219482422},{"label":"Accès De Base","x":1810.5634765625,"y":-1565.491455078125,"id":"1085","color":"rgb(255,255,51)","size":4.0},{"label":"Fragmentation Écologique","x":657.0732421875,"y":-1327.8116455078125,"id":"246","color":"rgb(102,255,102)","size":4.293514728546143},{"label":"Gaz Sur Surface","x":219.41163635253906,"y":-202.6012725830078,"id":"1340","color":"rgb(102,255,102)","size":4.0086140632629395},{"label":"Pipeline Safety","x":-2272.401611328125,"y":690.718994140625,"id":"1038","color":"rgb(102,0,102)","size":4.133297443389893},{"label":"Hautes Latitudes","x":790.7667236328125,"y":-263.09051513671875,"id":"1156","color":"rgb(255,204,102)","size":4.6399359703063965},{"label":"West Siberian","x":-857.8103637695312,"y":1416.4312744140625,"id":"616","color":"rgb(0,204,204)","size":4.075808525085449},{"label":"Continent Américain","x":-518.6719360351562,"y":-467.7585754394531,"id":"603","color":"rgb(153,255,0)","size":4.293514728546143},{"label":"Charge De Recherche","x":1697.37646484375,"y":-832.8470458984375,"id":"596","color":"rgb(255,204,102)","size":4.075808525085449},{"label":"Paleoclimatologie","x":1190.7630615234375,"y":-548.8214111328125,"id":"1455","color":"rgb(255,204,102)","size":4.510906219482422},{"label":"Cercle Polaire","x":-441.5832824707031,"y":-338.2845458984375,"id":"335","color":"rgb(0,204,204)","size":14.764718055725098},{"label":"Alenia Space","x":836.8038940429688,"y":1245.3642578125,"id":"196","color":"rgb(255,153,153)","size":4.0340681076049805},{"label":"Fonds Marins","x":1276.6959228515625,"y":-437.3470458984375,"id":"1006","color":"rgb(255,255,51)","size":4.075808525085449},{"label":"Dérèglements Écologiques","x":344.27490234375,"y":-935.0296630859375,"id":"795","color":"rgb(102,255,102)","size":4.075808525085449},{"label":"Espèces","x":378.1238708496094,"y":-891.1968383789062,"id":"939","color":"rgb(153,255,0)","size":4.293514728546143},{"label":"Industrie Pétrolière","x":-323.57122802734375,"y":-1779.236083984375,"id":"654","color":"rgb(102,0,102)","size":4.936610698699951},{"label":"Ballon Dirigeable","x":245.244384765625,"y":127.29121398925781,"id":"396","color":"rgb(153,255,255)","size":4.133297443389893},{"label":"Fishing Alaska","x":-3016.6982421875,"y":2527.25244140625,"id":"190","color":"rgb(0,204,204)","size":4.510906219482422},{"label":"Cap Nord","x":-693.8167724609375,"y":-305.88018798828125,"id":"532","color":"rgb(0,204,204)","size":6.837328910827637}]} diff --git a/graph/formats/sigmajs/testdata/geolocalized.json b/graph/formats/sigmajs/testdata/geolocalized.json new file mode 100644 index 00000000..5465e840 --- /dev/null +++ b/graph/formats/sigmajs/testdata/geolocalized.json @@ -0,0 +1,317 @@ +{ + "nodes":[ + { + "id":"n1", + "label":"n1", + "latitude":50.93, + "longitude":2.48, + "size":"5.5", + "color":"rgb(1,179,255)" + }, + { + "id":"n2", + "label":"n2", + "latitude":50.88, + "longitude":2.0, + "size":"5.0", + "color":"rgb(1,179,255)" + }, + { + "id":"n4", + "label":"n4", + "latitude":49.4, + "longitude":0.19, + "size":"6.0", + "color":"rgb(1,179,255)" + }, + { + "id":"n5", + "label":"n5", + "latitude":48.49, + "longitude":-1.92, + "size":"6.0", + "color":"rgb(1,179,255)" + }, + { + "id":"n6", + "label":"n6", + "latitude":48.26, + "longitude":-4.38, + "size":"4.5", + "color":"rgb(1,179,255)" + }, + { + "id":"n7", + "label":"n7", + "latitude":47.15, + "longitude":-2.09, + "size":"6.5", + "color":"rgb(1,179,255)" + }, + { + "id":"n8", + "label":"n8", + "latitude":46.02, + "longitude":-1.04, + "size":"6.5", + "color":"rgb(1,179,255)" + }, + { + "id":"n9", + "label":"n9", + "latitude":43.22, + "longitude":-1.85, + "size":"5.0", + "color":"rgb(1,179,255)" + }, + { + "id":"n10", + "label":"n10", + "latitude":42.38, + "longitude":3.18, + "size":"4.0", + "color":"rgb(1,179,255)" + }, + { + "id":"n11", + "label":"n11", + "latitude":43.47, + "longitude":4.04, + "size":"5.5", + "color":"rgb(1,179,255)" + }, + { + "id":"n12", + "label":"n12", + "latitude":42.9, + "longitude":6.59, + "size":"5.0", + "color":"rgb(1,179,255)" + }, + { + "id":"n13", + "label":"n13", + "latitude":43.62, + "longitude":7.66, + "size":"6.0", + "color":"rgb(1,179,255)" + }, + { + "id":"n14", + "label":"n14", + "latitude":46.05, + "longitude":6.19, + "size":"6.5", + "color":"rgb(1,179,255)" + }, + { + "id":"n15", + "label":"n15", + "latitude":47.43, + "longitude":7.65, + "size":"6.0", + "color":"rgb(1,179,255)" + }, + { + "id":"n16", + "label":"n16", + "latitude":48.9, + "longitude":8.32, + "size":"5.5", + "color":"rgb(1,179,255)" + }, + { + "id":"n17", + "label":"n17", + "latitude":49.83, + "longitude":4.94, + "size":"6.5", + "color":"rgb(1,179,255)" + }, + { + "id":"Paris", + "label":"Paris", + "latitude":48.72, + "longitude":2.46, + "size":"9.0", + "color":"rgb(1,179,255)" + } + ], + "edges":[ + { + "id":"8", + "source":"n1", + "target":"Paris" + }, + { + "id":"7", + "source":"n2", + "target":"n4" + }, + { + "id":"28", + "source":"n4", + "target":"n1" + }, + { + "id":"30", + "source":"n4", + "target":"n7" + }, + { + "id":"26", + "source":"n5", + "target":"n1" + }, + { + "id":"27", + "source":"n5", + "target":"n2" + }, + { + "id":"0", + "source":"n6", + "target":"n5" + }, + { + "id":"29", + "source":"n7", + "target":"n5" + }, + { + "id":"1", + "source":"n7", + "target":"n8" + }, + { + "id":"17", + "source":"n7", + "target":"Paris" + }, + { + "id":"10", + "source":"n8", + "target":"n13" + }, + { + "id":"18", + "source":"n8", + "target":"Paris" + }, + { + "id":"15", + "source":"n9", + "target":"n8" + }, + { + "id":"34", + "source":"n10", + "target":"n9" + }, + { + "id":"31", + "source":"n10", + "target":"n11" + }, + { + "id":"11", + "source":"n11", + "target":"n13" + }, + { + "id":"13", + "source":"n11", + "target":"n14" + }, + { + "id":"32", + "source":"n12", + "target":"n10" + }, + { + "id":"12", + "source":"n12", + "target":"n11" + }, + { + "id":"23", + "source":"n12", + "target":"n13" + }, + { + "id":"33", + "source":"n13", + "target":"n10" + }, + { + "id":"25", + "source":"n13", + "target":"n14" + }, + { + "id":"14", + "source":"n14", + "target":"n9" + }, + { + "id":"5", + "source":"n14", + "target":"n17" + }, + { + "id":"19", + "source":"n14", + "target":"Paris" + }, + { + "id":"6", + "source":"n15", + "target":"n8" + }, + { + "id":"22", + "source":"n15", + "target":"n16" + }, + { + "id":"20", + "source":"n15", + "target":"Paris" + }, + { + "id":"4", + "source":"n16", + "target":"n15" + }, + { + "id":"24", + "source":"n16", + "target":"Paris" + }, + { + "id":"9", + "source":"n17", + "target":"n7" + }, + { + "id":"21", + "source":"n17", + "target":"n17" + }, + { + "id":"2", + "source":"Paris", + "target":"n4" + }, + { + "id":"3", + "source":"Paris", + "target":"n17" + }, + { + "id":"16", + "source":"Paris", + "target":"Paris" + } + ] +} \ No newline at end of file