-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdump.lsif
More file actions
6582 lines (6582 loc) · 651 KB
/
dump.lsif
File metadata and controls
6582 lines (6582 loc) · 651 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{"id":1,"type":"vertex","label":"metaData","version":"0.4.3","projectRoot":"file:///Users/sourcegraph/sg/support-generator","positionEncoding":"utf-16","toolInfo":{"name":"lsif-tsc","args":["src/App.jsx","src/Components/Action/Action.jsx","src/Components/Command/GeneratedCommand.jsx","src/Components/Deployment/Deployment.jsx","src/Components/Descriptions/Description.jsx","src/Components/Descriptions/Descriptions.jsx","src/Components/UI/CopyBtn.jsx","src/Components/UI/CopyURLBtn.jsx","src/Components/UI/Dropdown.jsx","src/Components/UI/DropdownOption.jsx","--allowJs","--checkJs"],"version":"0.7.2"}}
{"id":2,"type":"vertex","label":"project","kind":"typescript"}
{"id":3,"type":"vertex","label":"$event","kind":"begin","scope":"project","data":2}
{"id":4,"type":"vertex","label":"document","uri":"file:///Users/sourcegraph/sg/support-generator/src/recoil/atoms.js","languageId":"typescript"}
{"id":5,"type":"vertex","label":"$event","kind":"begin","scope":"document","data":4}
{"id":6,"type":"vertex","label":"resultSet"}
{"id":7,"type":"vertex","label":"moniker","kind":"export","scheme":"tsc","identifier":"src/recoil/atoms:"}
{"id":8,"type":"edge","label":"moniker","outV":6,"inV":7}
{"id":9,"type":"vertex","label":"packageInformation","name":"command-line-generator","manager":"npm","version":"0.1.0"}
{"id":10,"type":"vertex","label":"moniker","kind":"export","scheme":"npm","identifier":"command-line-generator:src/recoil/atoms:"}
{"id":11,"type":"edge","label":"packageInformation","outV":10,"inV":9}
{"id":12,"type":"edge","label":"nextMoniker","outV":7,"inV":10}
{"id":13,"type":"vertex","label":"range","start":{"line":0,"character":0},"end":{"line":0,"character":0},"tag":{"type":"definition","text":"","kind":7,"fullRange":{"start":{"line":0,"character":0},"end":{"line":9,"character":25}}}}
{"id":14,"type":"edge","label":"next","outV":13,"inV":6}
{"id":15,"type":"vertex","label":"document","uri":"file:///Users/sourcegraph/sg/support-generator/node_modules/recoil/index.d.ts","languageId":"typescript"}
{"id":16,"type":"vertex","label":"$event","kind":"begin","scope":"document","data":15}
{"id":17,"type":"vertex","label":"resultSet"}
{"id":18,"type":"vertex","label":"moniker","kind":"import","scheme":"tsc","identifier":"node_modules/recoil/index:"}
{"id":19,"type":"edge","label":"moniker","outV":17,"inV":18}
{"id":20,"type":"vertex","label":"packageInformation","name":"recoil","manager":"npm","version":"0.4.1","repository":{"type":"git","url":"git+https://github.com/facebookexperimental/Recoil.git"}}
{"id":21,"type":"vertex","label":"moniker","kind":"import","scheme":"npm","identifier":"recoil::"}
{"id":22,"type":"edge","label":"packageInformation","outV":21,"inV":20}
{"id":23,"type":"edge","label":"nextMoniker","outV":21,"inV":18}
{"id":24,"type":"vertex","label":"range","start":{"line":0,"character":0},"end":{"line":0,"character":0},"tag":{"type":"definition","text":"","kind":7,"fullRange":{"start":{"line":0,"character":0},"end":{"line":424,"character":0}}}}
{"id":25,"type":"edge","label":"next","outV":24,"inV":17}
{"id":26,"type":"vertex","label":"resultSet"}
{"id":27,"type":"vertex","label":"moniker","kind":"import","scheme":"tsc","identifier":"node_modules/recoil/index:atom"}
{"id":28,"type":"edge","label":"moniker","outV":26,"inV":27}
{"id":29,"type":"vertex","label":"moniker","kind":"import","scheme":"npm","identifier":"recoil::atom"}
{"id":30,"type":"edge","label":"packageInformation","outV":29,"inV":20}
{"id":31,"type":"edge","label":"nextMoniker","outV":29,"inV":27}
{"id":32,"type":"vertex","label":"range","start":{"line":97,"character":16},"end":{"line":97,"character":20},"tag":{"type":"definition","text":"atom","kind":12,"fullRange":{"start":{"line":97,"character":0},"end":{"line":97,"character":65}}}}
{"id":33,"type":"edge","label":"next","outV":32,"inV":26}
{"id":34,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"function atom<T>(options: AtomOptions<T>): RecoilState<T>"},"Creates an atom, which represents a piece of writeable state"]}}
{"id":35,"type":"edge","label":"textDocument/hover","outV":26,"inV":34}
{"id":36,"type":"vertex","label":"resultSet"}
{"id":37,"type":"edge","label":"next","outV":36,"inV":26}
{"id":38,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"I4+QvgZtcql5m/wEcYOtsw=="}
{"id":39,"type":"edge","label":"moniker","outV":36,"inV":38}
{"id":40,"type":"vertex","label":"range","start":{"line":1,"character":4},"end":{"line":1,"character":8},"tag":{"type":"definition","text":"atom","kind":7,"fullRange":{"start":{"line":1,"character":4},"end":{"line":1,"character":8}}}}
{"id":41,"type":"edge","label":"next","outV":40,"inV":36}
{"id":42,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(alias) function atom<T>(options: AtomOptions<T>): RecoilState<T>\nimport atom"},"Creates an atom, which represents a piece of writeable state"]}}
{"id":43,"type":"edge","label":"textDocument/hover","outV":36,"inV":42}
{"id":44,"type":"vertex","label":"range","start":{"line":2,"character":7},"end":{"line":2,"character":15},"tag":{"type":"reference","text":"'recoil'"}}
{"id":45,"type":"edge","label":"next","outV":44,"inV":17}
{"id":46,"type":"vertex","label":"resultSet"}
{"id":47,"type":"vertex","label":"moniker","kind":"export","scheme":"tsc","identifier":"src/recoil/atoms:0_export"}
{"id":48,"type":"edge","label":"moniker","outV":46,"inV":47}
{"id":49,"type":"vertex","label":"moniker","kind":"export","scheme":"npm","identifier":"command-line-generator:src/recoil/atoms:0_export"}
{"id":50,"type":"edge","label":"packageInformation","outV":49,"inV":9}
{"id":51,"type":"edge","label":"nextMoniker","outV":47,"inV":49}
{"id":52,"type":"vertex","label":"range","start":{"line":4,"character":6},"end":{"line":4,"character":15},"tag":{"type":"definition","text":"modeState","kind":7,"fullRange":{"start":{"line":4,"character":6},"end":{"line":7,"character":2}}}}
{"id":53,"type":"edge","label":"next","outV":52,"inV":46}
{"id":54,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"const modeState: RecoilState<string>"}]}}
{"id":55,"type":"edge","label":"textDocument/hover","outV":46,"inV":54}
{"id":56,"type":"vertex","label":"range","start":{"line":4,"character":18},"end":{"line":4,"character":22},"tag":{"type":"reference","text":"atom"}}
{"id":57,"type":"edge","label":"next","outV":56,"inV":36}
{"id":58,"type":"vertex","label":"resultSet"}
{"id":59,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"bMh2H3WmG7P33hfHCL2hLQ=="}
{"id":60,"type":"edge","label":"moniker","outV":58,"inV":59}
{"id":61,"type":"vertex","label":"range","start":{"line":5,"character":4},"end":{"line":5,"character":7},"tag":{"type":"definition","text":"key","kind":7,"fullRange":{"start":{"line":5,"character":4},"end":{"line":5,"character":20}}}}
{"id":62,"type":"edge","label":"next","outV":61,"inV":58}
{"id":63,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(property) AtomOptions<T>.key: string"}]}}
{"id":64,"type":"edge","label":"textDocument/hover","outV":58,"inV":63}
{"id":65,"type":"vertex","label":"resultSet"}
{"id":66,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"zpNI/GF/V+2oWjLmjkIIWw=="}
{"id":67,"type":"edge","label":"moniker","outV":65,"inV":66}
{"id":68,"type":"vertex","label":"range","start":{"line":6,"character":4},"end":{"line":6,"character":11},"tag":{"type":"definition","text":"default","kind":7,"fullRange":{"start":{"line":6,"character":4},"end":{"line":6,"character":20}}}}
{"id":69,"type":"edge","label":"next","outV":68,"inV":65}
{"id":70,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(property) AtomOptions<string>.default: string | RecoilValue<string> | Promise<string>"}]}}
{"id":71,"type":"edge","label":"textDocument/hover","outV":65,"inV":70}
{"id":72,"type":"vertex","label":"resultSet"}
{"id":73,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"xNOZiSEYkx3KETScHMBixg=="}
{"id":74,"type":"edge","label":"moniker","outV":72,"inV":73}
{"id":75,"type":"vertex","label":"range","start":{"line":4,"character":23},"end":{"line":7,"character":1},"tag":{"type":"reference","text":"{\n key: 'modeState',\n default: 'light',\n}"}}
{"id":76,"type":"edge","label":"next","outV":75,"inV":72}
{"id":77,"type":"vertex","label":"resultSet"}
{"id":78,"type":"edge","label":"next","outV":77,"inV":46}
{"id":79,"type":"vertex","label":"moniker","kind":"export","scheme":"tsc","identifier":"src/recoil/atoms:default"}
{"id":80,"type":"edge","label":"moniker","outV":77,"inV":79}
{"id":81,"type":"vertex","label":"moniker","kind":"export","scheme":"npm","identifier":"command-line-generator:src/recoil/atoms:default"}
{"id":82,"type":"edge","label":"packageInformation","outV":81,"inV":9}
{"id":83,"type":"edge","label":"nextMoniker","outV":79,"inV":81}
{"id":84,"type":"vertex","label":"range","start":{"line":9,"character":0},"end":{"line":9,"character":25},"tag":{"type":"reference","text":"export default modeState;"}}
{"id":85,"type":"edge","label":"next","outV":84,"inV":77}
{"id":86,"type":"vertex","label":"range","start":{"line":9,"character":15},"end":{"line":9,"character":24},"tag":{"type":"reference","text":"modeState"}}
{"id":87,"type":"edge","label":"next","outV":86,"inV":46}
{"id":88,"type":"vertex","label":"definitionResult"}
{"id":89,"type":"edge","label":"textDocument/definition","outV":6,"inV":88}
{"id":90,"type":"edge","label":"item","outV":88,"inVs":[13],"document":4}
{"id":91,"type":"vertex","label":"referenceResult"}
{"id":92,"type":"edge","label":"textDocument/references","outV":6,"inV":91}
{"id":93,"type":"edge","label":"item","outV":91,"inVs":[13],"document":4,"property":"definitions"}
{"id":94,"type":"vertex","label":"referenceResult"}
{"id":95,"type":"edge","label":"textDocument/references","outV":26,"inV":94}
{"id":96,"type":"edge","label":"item","outV":94,"inVs":[40,56],"document":4,"property":"references"}
{"id":97,"type":"vertex","label":"referenceResult"}
{"id":98,"type":"edge","label":"textDocument/references","outV":17,"inV":97}
{"id":99,"type":"edge","label":"item","outV":97,"inVs":[44],"document":4,"property":"references"}
{"id":100,"type":"vertex","label":"definitionResult"}
{"id":101,"type":"edge","label":"textDocument/definition","outV":46,"inV":100}
{"id":102,"type":"edge","label":"item","outV":100,"inVs":[52],"document":4}
{"id":103,"type":"vertex","label":"referenceResult"}
{"id":104,"type":"edge","label":"textDocument/references","outV":46,"inV":103}
{"id":105,"type":"edge","label":"item","outV":103,"inVs":[52],"document":4,"property":"definitions"}
{"id":106,"type":"edge","label":"item","outV":103,"inVs":[84,86],"document":4,"property":"references"}
{"id":107,"type":"vertex","label":"definitionResult"}
{"id":108,"type":"edge","label":"textDocument/definition","outV":58,"inV":107}
{"id":109,"type":"edge","label":"item","outV":107,"inVs":[61],"document":4}
{"id":110,"type":"vertex","label":"referenceResult"}
{"id":111,"type":"edge","label":"textDocument/references","outV":58,"inV":110}
{"id":112,"type":"edge","label":"item","outV":110,"inVs":[61],"document":4,"property":"definitions"}
{"id":113,"type":"vertex","label":"definitionResult"}
{"id":114,"type":"edge","label":"textDocument/definition","outV":65,"inV":113}
{"id":115,"type":"edge","label":"item","outV":113,"inVs":[68],"document":4}
{"id":116,"type":"vertex","label":"referenceResult"}
{"id":117,"type":"edge","label":"textDocument/references","outV":65,"inV":116}
{"id":118,"type":"edge","label":"item","outV":116,"inVs":[68],"document":4,"property":"definitions"}
{"id":119,"type":"vertex","label":"referenceResult"}
{"id":120,"type":"edge","label":"textDocument/references","outV":72,"inV":119}
{"id":121,"type":"edge","label":"item","outV":119,"inVs":[75],"document":4,"property":"references"}
{"id":122,"type":"vertex","label":"document","uri":"file:///Users/sourcegraph/sg/support-generator/src/App.jsx","languageId":"typescript"}
{"id":123,"type":"vertex","label":"$event","kind":"begin","scope":"document","data":122}
{"id":124,"type":"vertex","label":"resultSet"}
{"id":125,"type":"vertex","label":"moniker","kind":"export","scheme":"tsc","identifier":"src/App.jsx:"}
{"id":126,"type":"edge","label":"moniker","outV":124,"inV":125}
{"id":127,"type":"vertex","label":"moniker","kind":"export","scheme":"npm","identifier":"command-line-generator:src/App.jsx:"}
{"id":128,"type":"edge","label":"packageInformation","outV":127,"inV":9}
{"id":129,"type":"edge","label":"nextMoniker","outV":125,"inV":127}
{"id":130,"type":"vertex","label":"range","start":{"line":0,"character":0},"end":{"line":0,"character":0},"tag":{"type":"definition","text":"","kind":7,"fullRange":{"start":{"line":0,"character":0},"end":{"line":125,"character":0}}}}
{"id":131,"type":"edge","label":"next","outV":130,"inV":124}
{"id":132,"type":"vertex","label":"resultSet"}
{"id":133,"type":"vertex","label":"resultSet"}
{"id":134,"type":"edge","label":"next","outV":133,"inV":132}
{"id":135,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"wuimvDYLeTvMl9aqevy0sA=="}
{"id":136,"type":"edge","label":"moniker","outV":133,"inV":135}
{"id":137,"type":"vertex","label":"range","start":{"line":1,"character":9},"end":{"line":1,"character":18},"tag":{"type":"definition","text":"useEffect","kind":7,"fullRange":{"start":{"line":1,"character":9},"end":{"line":1,"character":18}}}}
{"id":138,"type":"edge","label":"next","outV":137,"inV":133}
{"id":139,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"import useEffect"}]}}
{"id":140,"type":"edge","label":"textDocument/hover","outV":133,"inV":139}
{"id":141,"type":"vertex","label":"resultSet"}
{"id":142,"type":"edge","label":"next","outV":141,"inV":132}
{"id":143,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"1TIGoA8DUmpTxN/nLDucDQ=="}
{"id":144,"type":"edge","label":"moniker","outV":141,"inV":143}
{"id":145,"type":"vertex","label":"range","start":{"line":1,"character":20},"end":{"line":1,"character":28},"tag":{"type":"definition","text":"useState","kind":7,"fullRange":{"start":{"line":1,"character":20},"end":{"line":1,"character":28}}}}
{"id":146,"type":"edge","label":"next","outV":145,"inV":141}
{"id":147,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"import useState"}]}}
{"id":148,"type":"edge","label":"textDocument/hover","outV":141,"inV":147}
{"id":149,"type":"vertex","label":"resultSet"}
{"id":150,"type":"vertex","label":"moniker","kind":"import","scheme":"tsc","identifier":"node_modules/recoil/index:useRecoilState"}
{"id":151,"type":"edge","label":"moniker","outV":149,"inV":150}
{"id":152,"type":"vertex","label":"moniker","kind":"import","scheme":"npm","identifier":"recoil::useRecoilState"}
{"id":153,"type":"edge","label":"packageInformation","outV":152,"inV":20}
{"id":154,"type":"edge","label":"nextMoniker","outV":152,"inV":150}
{"id":155,"type":"vertex","label":"range","start":{"line":187,"character":16},"end":{"line":187,"character":30},"tag":{"type":"definition","text":"useRecoilState","kind":12,"fullRange":{"start":{"line":187,"character":0},"end":{"line":187,"character":88}}}}
{"id":156,"type":"edge","label":"next","outV":155,"inV":149}
{"id":157,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"function useRecoilState<T>(recoilState: RecoilState<T>): [T, SetterOrUpdater<T>]"},"Returns a tuple where the first element is the value of the recoil state\nand the second is a setter to update that state. Subscribes component\nto updates of the given state."]}}
{"id":158,"type":"edge","label":"textDocument/hover","outV":149,"inV":157}
{"id":159,"type":"vertex","label":"resultSet"}
{"id":160,"type":"edge","label":"next","outV":159,"inV":149}
{"id":161,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"GsFgyoqRYqgn6aX0p024HQ=="}
{"id":162,"type":"edge","label":"moniker","outV":159,"inV":161}
{"id":163,"type":"vertex","label":"range","start":{"line":2,"character":9},"end":{"line":2,"character":23},"tag":{"type":"definition","text":"useRecoilState","kind":7,"fullRange":{"start":{"line":2,"character":9},"end":{"line":2,"character":23}}}}
{"id":164,"type":"edge","label":"next","outV":163,"inV":159}
{"id":165,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(alias) function useRecoilState<T>(recoilState: RecoilState<T>): [T, SetterOrUpdater<T>]\nimport useRecoilState"},"Returns a tuple where the first element is the value of the recoil state\nand the second is a setter to update that state. Subscribes component\nto updates of the given state."]}}
{"id":166,"type":"edge","label":"textDocument/hover","outV":159,"inV":165}
{"id":167,"type":"vertex","label":"range","start":{"line":2,"character":31},"end":{"line":2,"character":39},"tag":{"type":"reference","text":"'recoil'"}}
{"id":168,"type":"edge","label":"next","outV":167,"inV":17}
{"id":169,"type":"vertex","label":"resultSet"}
{"id":170,"type":"edge","label":"next","outV":169,"inV":46}
{"id":171,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"63tWVUNmQSwVx/pruy5JNA=="}
{"id":172,"type":"edge","label":"moniker","outV":169,"inV":171}
{"id":173,"type":"vertex","label":"range","start":{"line":5,"character":7},"end":{"line":5,"character":16},"tag":{"type":"definition","text":"modeState","kind":7,"fullRange":{"start":{"line":5,"character":7},"end":{"line":5,"character":16}}}}
{"id":174,"type":"edge","label":"next","outV":173,"inV":169}
{"id":175,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(alias) const modeState: RecoilState<string>\nimport modeState"}]}}
{"id":176,"type":"edge","label":"textDocument/hover","outV":169,"inV":175}
{"id":177,"type":"vertex","label":"range","start":{"line":5,"character":22},"end":{"line":5,"character":38},"tag":{"type":"reference","text":"'./recoil/atoms'"}}
{"id":178,"type":"edge","label":"next","outV":177,"inV":6}
{"id":179,"type":"vertex","label":"resultSet"}
{"id":180,"type":"edge","label":"next","outV":179,"inV":132}
{"id":181,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"cnowL8fSxS8yyNtQdrxY6g=="}
{"id":182,"type":"edge","label":"moniker","outV":179,"inV":181}
{"id":183,"type":"vertex","label":"range","start":{"line":6,"character":7},"end":{"line":6,"character":17},"tag":{"type":"definition","text":"Deployment","kind":7,"fullRange":{"start":{"line":6,"character":7},"end":{"line":6,"character":17}}}}
{"id":184,"type":"edge","label":"next","outV":183,"inV":179}
{"id":185,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"import Deployment"}]}}
{"id":186,"type":"edge","label":"textDocument/hover","outV":179,"inV":185}
{"id":187,"type":"vertex","label":"resultSet"}
{"id":188,"type":"edge","label":"next","outV":187,"inV":132}
{"id":189,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"wIFNUaebtB75wFqzbxoWmQ=="}
{"id":190,"type":"edge","label":"moniker","outV":187,"inV":189}
{"id":191,"type":"vertex","label":"range","start":{"line":7,"character":7},"end":{"line":7,"character":13},"tag":{"type":"definition","text":"Action","kind":7,"fullRange":{"start":{"line":7,"character":7},"end":{"line":7,"character":13}}}}
{"id":192,"type":"edge","label":"next","outV":191,"inV":187}
{"id":193,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"import Action"}]}}
{"id":194,"type":"edge","label":"textDocument/hover","outV":187,"inV":193}
{"id":195,"type":"vertex","label":"resultSet"}
{"id":196,"type":"edge","label":"next","outV":195,"inV":132}
{"id":197,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"99I9Mfr34l2Gmj8lPjjqHw=="}
{"id":198,"type":"edge","label":"moniker","outV":195,"inV":197}
{"id":199,"type":"vertex","label":"range","start":{"line":8,"character":7},"end":{"line":8,"character":19},"tag":{"type":"definition","text":"Descriptions","kind":7,"fullRange":{"start":{"line":8,"character":7},"end":{"line":8,"character":19}}}}
{"id":200,"type":"edge","label":"next","outV":199,"inV":195}
{"id":201,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"import Descriptions"}]}}
{"id":202,"type":"edge","label":"textDocument/hover","outV":195,"inV":201}
{"id":203,"type":"vertex","label":"resultSet"}
{"id":204,"type":"edge","label":"next","outV":203,"inV":132}
{"id":205,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"aTSrSz+g6Uh95ZFrqU+Mhg=="}
{"id":206,"type":"edge","label":"moniker","outV":203,"inV":205}
{"id":207,"type":"vertex","label":"range","start":{"line":9,"character":7},"end":{"line":9,"character":23},"tag":{"type":"definition","text":"GeneratedCommand","kind":7,"fullRange":{"start":{"line":9,"character":7},"end":{"line":9,"character":23}}}}
{"id":208,"type":"edge","label":"next","outV":207,"inV":203}
{"id":209,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"import GeneratedCommand"}]}}
{"id":210,"type":"edge","label":"textDocument/hover","outV":203,"inV":209}
{"id":211,"type":"vertex","label":"resultSet"}
{"id":212,"type":"edge","label":"next","outV":211,"inV":132}
{"id":213,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"Uliu4IJ0jB1oyguC+Kqmww=="}
{"id":214,"type":"edge","label":"moniker","outV":211,"inV":213}
{"id":215,"type":"vertex","label":"range","start":{"line":12,"character":7},"end":{"line":12,"character":16},"tag":{"type":"definition","text":"logo_dark","kind":7,"fullRange":{"start":{"line":12,"character":7},"end":{"line":12,"character":16}}}}
{"id":216,"type":"edge","label":"next","outV":215,"inV":211}
{"id":217,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"import logo_dark"}]}}
{"id":218,"type":"edge","label":"textDocument/hover","outV":211,"inV":217}
{"id":219,"type":"vertex","label":"resultSet"}
{"id":220,"type":"edge","label":"next","outV":219,"inV":132}
{"id":221,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"MuIsfQEI6HbtRFZfD6LnMg=="}
{"id":222,"type":"edge","label":"moniker","outV":219,"inV":221}
{"id":223,"type":"vertex","label":"range","start":{"line":13,"character":7},"end":{"line":13,"character":17},"tag":{"type":"definition","text":"logo_light","kind":7,"fullRange":{"start":{"line":13,"character":7},"end":{"line":13,"character":17}}}}
{"id":224,"type":"edge","label":"next","outV":223,"inV":219}
{"id":225,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"import logo_light"}]}}
{"id":226,"type":"edge","label":"textDocument/hover","outV":219,"inV":225}
{"id":227,"type":"vertex","label":"resultSet"}
{"id":228,"type":"vertex","label":"moniker","kind":"export","scheme":"tsc","identifier":"src/App.jsx:0_export"}
{"id":229,"type":"edge","label":"moniker","outV":227,"inV":228}
{"id":230,"type":"vertex","label":"moniker","kind":"export","scheme":"npm","identifier":"command-line-generator:src/App.jsx:0_export"}
{"id":231,"type":"edge","label":"packageInformation","outV":230,"inV":9}
{"id":232,"type":"edge","label":"nextMoniker","outV":228,"inV":230}
{"id":233,"type":"vertex","label":"range","start":{"line":21,"character":9},"end":{"line":21,"character":12},"tag":{"type":"definition","text":"App","kind":12,"fullRange":{"start":{"line":21,"character":0},"end":{"line":122,"character":1}}}}
{"id":234,"type":"edge","label":"next","outV":233,"inV":227}
{"id":235,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"function App(): any"}]}}
{"id":236,"type":"edge","label":"textDocument/hover","outV":227,"inV":235}
{"id":237,"type":"vertex","label":"resultSet"}
{"id":238,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"+Atrq8AzYyEnBClD/MIqJg=="}
{"id":239,"type":"edge","label":"moniker","outV":237,"inV":238}
{"id":240,"type":"vertex","label":"range","start":{"line":23,"character":8},"end":{"line":23,"character":12},"tag":{"type":"definition","text":"mode","kind":7,"fullRange":{"start":{"line":23,"character":8},"end":{"line":23,"character":12}}}}
{"id":241,"type":"edge","label":"next","outV":240,"inV":237}
{"id":242,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"const mode: string"}]}}
{"id":243,"type":"edge","label":"textDocument/hover","outV":237,"inV":242}
{"id":244,"type":"vertex","label":"resultSet"}
{"id":245,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"KMejrlEJL7XX9LmoIl2/gA=="}
{"id":246,"type":"edge","label":"moniker","outV":244,"inV":245}
{"id":247,"type":"vertex","label":"range","start":{"line":23,"character":14},"end":{"line":23,"character":21},"tag":{"type":"definition","text":"setMode","kind":7,"fullRange":{"start":{"line":23,"character":14},"end":{"line":23,"character":21}}}}
{"id":248,"type":"edge","label":"next","outV":247,"inV":244}
{"id":249,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"const setMode: SetterOrUpdater<string>"}]}}
{"id":250,"type":"edge","label":"textDocument/hover","outV":244,"inV":249}
{"id":251,"type":"vertex","label":"range","start":{"line":23,"character":25},"end":{"line":23,"character":39},"tag":{"type":"reference","text":"useRecoilState"}}
{"id":252,"type":"edge","label":"next","outV":251,"inV":159}
{"id":253,"type":"vertex","label":"range","start":{"line":23,"character":40},"end":{"line":23,"character":49},"tag":{"type":"reference","text":"modeState"}}
{"id":254,"type":"edge","label":"next","outV":253,"inV":169}
{"id":255,"type":"vertex","label":"resultSet"}
{"id":256,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"kGfYJEuy5bKZQu7yYS92oA=="}
{"id":257,"type":"edge","label":"moniker","outV":255,"inV":256}
{"id":258,"type":"vertex","label":"range","start":{"line":26,"character":7},"end":{"line":26,"character":18},"tag":{"type":"definition","text":"queryParams","kind":7,"fullRange":{"start":{"line":26,"character":7},"end":{"line":26,"character":64}}}}
{"id":259,"type":"edge","label":"next","outV":258,"inV":255}
{"id":260,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"const queryParams: URLSearchParams"}]}}
{"id":261,"type":"edge","label":"textDocument/hover","outV":255,"inV":260}
{"id":262,"type":"vertex","label":"document","uri":"file:///usr/local/lib/node_modules/@sourcegraph/lsif-tsc/node_modules/typescript-lsif/lib/lib.dom.d.ts","languageId":"typescript"}
{"id":263,"type":"vertex","label":"$event","kind":"begin","scope":"document","data":262}
{"id":264,"type":"vertex","label":"resultSet"}
{"id":265,"type":"vertex","label":"moniker","kind":"export","scheme":"tsc","identifier":"URLSearchParams"}
{"id":266,"type":"edge","label":"moniker","outV":264,"inV":265}
{"id":267,"type":"vertex","label":"range","start":{"line":14908,"character":10},"end":{"line":14908,"character":25},"tag":{"type":"definition","text":"URLSearchParams","kind":11,"fullRange":{"start":{"line":14908,"character":0},"end":{"line":14939,"character":1}}}}
{"id":268,"type":"edge","label":"next","outV":267,"inV":264}
{"id":269,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"interface URLSearchParams"}]}}
{"id":270,"type":"edge","label":"textDocument/hover","outV":264,"inV":269}
{"id":271,"type":"vertex","label":"range","start":{"line":14941,"character":12},"end":{"line":14941,"character":27},"tag":{"type":"definition","text":"URLSearchParams","kind":7,"fullRange":{"start":{"line":14941,"character":12},"end":{"line":14945,"character":1}}}}
{"id":272,"type":"edge","label":"next","outV":271,"inV":264}
{"id":273,"type":"vertex","label":"range","start":{"line":26,"character":25},"end":{"line":26,"character":40},"tag":{"type":"reference","text":"URLSearchParams"}}
{"id":274,"type":"edge","label":"next","outV":273,"inV":264}
{"id":275,"type":"vertex","label":"resultSet"}
{"id":276,"type":"vertex","label":"moniker","kind":"export","scheme":"tsc","identifier":"window"}
{"id":277,"type":"edge","label":"moniker","outV":275,"inV":276}
{"id":278,"type":"vertex","label":"range","start":{"line":18305,"character":12},"end":{"line":18305,"character":18},"tag":{"type":"definition","text":"window","kind":7,"fullRange":{"start":{"line":18305,"character":12},"end":{"line":18305,"character":46}}}}
{"id":279,"type":"edge","label":"next","outV":278,"inV":275}
{"id":280,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"var window: Window & typeof globalThis"}]}}
{"id":281,"type":"edge","label":"textDocument/hover","outV":275,"inV":280}
{"id":282,"type":"vertex","label":"range","start":{"line":26,"character":41},"end":{"line":26,"character":47},"tag":{"type":"reference","text":"window"}}
{"id":283,"type":"edge","label":"next","outV":282,"inV":275}
{"id":284,"type":"vertex","label":"resultSet"}
{"id":285,"type":"vertex","label":"moniker","kind":"export","scheme":"tsc","identifier":"Window.location"}
{"id":286,"type":"edge","label":"moniker","outV":284,"inV":285}
{"id":287,"type":"vertex","label":"range","start":{"line":17192,"character":8},"end":{"line":17192,"character":16},"tag":{"type":"definition","text":"location","kind":7,"fullRange":{"start":{"line":17192,"character":4},"end":{"line":17192,"character":29}}}}
{"id":288,"type":"edge","label":"next","outV":287,"inV":284}
{"id":289,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(property) Window.location: Location"}]}}
{"id":290,"type":"edge","label":"textDocument/hover","outV":284,"inV":289}
{"id":291,"type":"vertex","label":"range","start":{"line":17193,"character":8},"end":{"line":17193,"character":16},"tag":{"type":"definition","text":"location","kind":7,"fullRange":{"start":{"line":17193,"character":4},"end":{"line":17193,"character":42}}}}
{"id":292,"type":"edge","label":"next","outV":291,"inV":284}
{"id":293,"type":"vertex","label":"resultSet"}
{"id":294,"type":"vertex","label":"moniker","kind":"export","scheme":"tsc","identifier":"location"}
{"id":295,"type":"edge","label":"moniker","outV":293,"inV":294}
{"id":296,"type":"vertex","label":"range","start":{"line":18252,"character":12},"end":{"line":18252,"character":20},"tag":{"type":"definition","text":"location","kind":7,"fullRange":{"start":{"line":18252,"character":12},"end":{"line":18252,"character":30}}}}
{"id":297,"type":"edge","label":"next","outV":296,"inV":293}
{"id":298,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"var location: Location"}]}}
{"id":299,"type":"edge","label":"textDocument/hover","outV":293,"inV":298}
{"id":300,"type":"vertex","label":"resultSet"}
{"id":301,"type":"vertex","label":"referenceResult"}
{"id":302,"type":"edge","label":"textDocument/references","outV":284,"inV":301}
{"id":303,"type":"vertex","label":"referenceResult"}
{"id":304,"type":"edge","label":"textDocument/references","outV":293,"inV":303}
{"id":305,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"ua/j4Bo7Kfg+gwWB9CBK0g=="}
{"id":306,"type":"edge","label":"moniker","outV":300,"inV":305}
{"id":307,"type":"vertex","label":"range","start":{"line":26,"character":48},"end":{"line":26,"character":56},"tag":{"type":"definition","text":"location","kind":7,"fullRange":{"start":{"line":26,"character":48},"end":{"line":26,"character":56}}}}
{"id":308,"type":"vertex","label":"range","start":{"line":26,"character":48},"end":{"line":26,"character":56},"tag":{"type":"reference","text":"location"}}
{"id":309,"type":"edge","label":"next","outV":308,"inV":300}
{"id":310,"type":"vertex","label":"resultSet"}
{"id":311,"type":"vertex","label":"moniker","kind":"export","scheme":"tsc","identifier":"Location.search"}
{"id":312,"type":"edge","label":"moniker","outV":310,"inV":311}
{"id":313,"type":"vertex","label":"range","start":{"line":9628,"character":4},"end":{"line":9628,"character":10},"tag":{"type":"definition","text":"search","kind":7,"fullRange":{"start":{"line":9628,"character":4},"end":{"line":9628,"character":19}}}}
{"id":314,"type":"edge","label":"next","outV":313,"inV":310}
{"id":315,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(property) Location.search: string"},"Returns the Location object's URL's query (includes leading \"?\" if non-empty).\n\nCan be set, to navigate to the same URL with a changed query (ignores leading \"?\")."]}}
{"id":316,"type":"edge","label":"textDocument/hover","outV":310,"inV":315}
{"id":317,"type":"vertex","label":"range","start":{"line":26,"character":57},"end":{"line":26,"character":63},"tag":{"type":"reference","text":"search"}}
{"id":318,"type":"edge","label":"next","outV":317,"inV":310}
{"id":319,"type":"vertex","label":"resultSet"}
{"id":320,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"Mg6ZwAV+kS7w58DDV6hJFw=="}
{"id":321,"type":"edge","label":"moniker","outV":319,"inV":320}
{"id":322,"type":"vertex","label":"range","start":{"line":27,"character":7},"end":{"line":27,"character":17},"tag":{"type":"definition","text":"deployment","kind":7,"fullRange":{"start":{"line":27,"character":7},"end":{"line":27,"character":49}}}}
{"id":323,"type":"edge","label":"next","outV":322,"inV":319}
{"id":324,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"const deployment: string"}]}}
{"id":325,"type":"edge","label":"textDocument/hover","outV":319,"inV":324}
{"id":326,"type":"vertex","label":"range","start":{"line":27,"character":20},"end":{"line":27,"character":31},"tag":{"type":"reference","text":"queryParams"}}
{"id":327,"type":"edge","label":"next","outV":326,"inV":255}
{"id":328,"type":"vertex","label":"resultSet"}
{"id":329,"type":"vertex","label":"moniker","kind":"export","scheme":"tsc","identifier":"URLSearchParams.get"}
{"id":330,"type":"edge","label":"moniker","outV":328,"inV":329}
{"id":331,"type":"vertex","label":"range","start":{"line":14920,"character":4},"end":{"line":14920,"character":7},"tag":{"type":"definition","text":"get","kind":7,"fullRange":{"start":{"line":14920,"character":4},"end":{"line":14920,"character":37}}}}
{"id":332,"type":"edge","label":"next","outV":331,"inV":328}
{"id":333,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(method) URLSearchParams.get(name: string): string | null"},"Returns the first value associated to the given search parameter."]}}
{"id":334,"type":"edge","label":"textDocument/hover","outV":328,"inV":333}
{"id":335,"type":"vertex","label":"range","start":{"line":27,"character":32},"end":{"line":27,"character":35},"tag":{"type":"reference","text":"get"}}
{"id":336,"type":"edge","label":"next","outV":335,"inV":328}
{"id":337,"type":"vertex","label":"resultSet"}
{"id":338,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"T9ARpTa9E1C6xSjdGVslJg=="}
{"id":339,"type":"edge","label":"moniker","outV":337,"inV":338}
{"id":340,"type":"vertex","label":"range","start":{"line":28,"character":7},"end":{"line":28,"character":13},"tag":{"type":"definition","text":"action","kind":7,"fullRange":{"start":{"line":28,"character":7},"end":{"line":28,"character":43}}}}
{"id":341,"type":"edge","label":"next","outV":340,"inV":337}
{"id":342,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"const action: string"}]}}
{"id":343,"type":"edge","label":"textDocument/hover","outV":337,"inV":342}
{"id":344,"type":"vertex","label":"range","start":{"line":28,"character":16},"end":{"line":28,"character":27},"tag":{"type":"reference","text":"queryParams"}}
{"id":345,"type":"edge","label":"next","outV":344,"inV":255}
{"id":346,"type":"vertex","label":"range","start":{"line":28,"character":28},"end":{"line":28,"character":31},"tag":{"type":"reference","text":"get"}}
{"id":347,"type":"edge","label":"next","outV":346,"inV":328}
{"id":348,"type":"vertex","label":"resultSet"}
{"id":349,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"KsG4y7VGorRg+72/xR5dRg=="}
{"id":350,"type":"edge","label":"moniker","outV":348,"inV":349}
{"id":351,"type":"vertex","label":"range","start":{"line":29,"character":7},"end":{"line":29,"character":13},"tag":{"type":"definition","text":"nSpace","kind":7,"fullRange":{"start":{"line":29,"character":7},"end":{"line":29,"character":44}}}}
{"id":352,"type":"edge","label":"next","outV":351,"inV":348}
{"id":353,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"const nSpace: string"}]}}
{"id":354,"type":"edge","label":"textDocument/hover","outV":348,"inV":353}
{"id":355,"type":"vertex","label":"range","start":{"line":29,"character":16},"end":{"line":29,"character":27},"tag":{"type":"reference","text":"queryParams"}}
{"id":356,"type":"edge","label":"next","outV":355,"inV":255}
{"id":357,"type":"vertex","label":"range","start":{"line":29,"character":28},"end":{"line":29,"character":31},"tag":{"type":"reference","text":"get"}}
{"id":358,"type":"edge","label":"next","outV":357,"inV":328}
{"id":359,"type":"vertex","label":"resultSet"}
{"id":360,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"l2eGUuDr2hSbX/dwT8gmqA=="}
{"id":361,"type":"edge","label":"moniker","outV":359,"inV":360}
{"id":362,"type":"vertex","label":"range","start":{"line":30,"character":7},"end":{"line":30,"character":10},"tag":{"type":"definition","text":"opt","kind":7,"fullRange":{"start":{"line":30,"character":7},"end":{"line":30,"character":38}}}}
{"id":363,"type":"edge","label":"next","outV":362,"inV":359}
{"id":364,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"const opt: string"}]}}
{"id":365,"type":"edge","label":"textDocument/hover","outV":359,"inV":364}
{"id":366,"type":"vertex","label":"range","start":{"line":30,"character":13},"end":{"line":30,"character":24},"tag":{"type":"reference","text":"queryParams"}}
{"id":367,"type":"edge","label":"next","outV":366,"inV":255}
{"id":368,"type":"vertex","label":"range","start":{"line":30,"character":25},"end":{"line":30,"character":28},"tag":{"type":"reference","text":"get"}}
{"id":369,"type":"edge","label":"next","outV":368,"inV":328}
{"id":370,"type":"vertex","label":"resultSet"}
{"id":371,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"or9XHG1vDrK2orjSGc/PYA=="}
{"id":372,"type":"edge","label":"moniker","outV":370,"inV":371}
{"id":373,"type":"vertex","label":"range","start":{"line":33,"character":8},"end":{"line":33,"character":26},"tag":{"type":"definition","text":"selectedDeployment","kind":7,"fullRange":{"start":{"line":33,"character":8},"end":{"line":33,"character":26}}}}
{"id":374,"type":"edge","label":"next","outV":373,"inV":370}
{"id":375,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"const selectedDeployment: any"}]}}
{"id":376,"type":"edge","label":"textDocument/hover","outV":370,"inV":375}
{"id":377,"type":"vertex","label":"resultSet"}
{"id":378,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"5CK/B5Uqa+mm+H1Qiqz18A=="}
{"id":379,"type":"edge","label":"moniker","outV":377,"inV":378}
{"id":380,"type":"vertex","label":"range","start":{"line":33,"character":28},"end":{"line":33,"character":49},"tag":{"type":"definition","text":"setSelectedDeployment","kind":7,"fullRange":{"start":{"line":33,"character":28},"end":{"line":33,"character":49}}}}
{"id":381,"type":"edge","label":"next","outV":380,"inV":377}
{"id":382,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"const setSelectedDeployment: any"}]}}
{"id":383,"type":"edge","label":"textDocument/hover","outV":377,"inV":382}
{"id":384,"type":"vertex","label":"range","start":{"line":33,"character":53},"end":{"line":33,"character":61},"tag":{"type":"reference","text":"useState"}}
{"id":385,"type":"edge","label":"next","outV":384,"inV":141}
{"id":386,"type":"vertex","label":"range","start":{"line":33,"character":62},"end":{"line":33,"character":72},"tag":{"type":"reference","text":"deployment"}}
{"id":387,"type":"edge","label":"next","outV":386,"inV":319}
{"id":388,"type":"vertex","label":"resultSet"}
{"id":389,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"ZXZAL3SAqAbKx/L/FELuxA=="}
{"id":390,"type":"edge","label":"moniker","outV":388,"inV":389}
{"id":391,"type":"vertex","label":"range","start":{"line":34,"character":8},"end":{"line":34,"character":22},"tag":{"type":"definition","text":"selectedAction","kind":7,"fullRange":{"start":{"line":34,"character":8},"end":{"line":34,"character":22}}}}
{"id":392,"type":"edge","label":"next","outV":391,"inV":388}
{"id":393,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"const selectedAction: any"}]}}
{"id":394,"type":"edge","label":"textDocument/hover","outV":388,"inV":393}
{"id":395,"type":"vertex","label":"resultSet"}
{"id":396,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"jnqZB12zrC/izSdCQulQZA=="}
{"id":397,"type":"edge","label":"moniker","outV":395,"inV":396}
{"id":398,"type":"vertex","label":"range","start":{"line":34,"character":24},"end":{"line":34,"character":41},"tag":{"type":"definition","text":"setSelectedAction","kind":7,"fullRange":{"start":{"line":34,"character":24},"end":{"line":34,"character":41}}}}
{"id":399,"type":"edge","label":"next","outV":398,"inV":395}
{"id":400,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"const setSelectedAction: any"}]}}
{"id":401,"type":"edge","label":"textDocument/hover","outV":395,"inV":400}
{"id":402,"type":"vertex","label":"range","start":{"line":34,"character":45},"end":{"line":34,"character":53},"tag":{"type":"reference","text":"useState"}}
{"id":403,"type":"edge","label":"next","outV":402,"inV":141}
{"id":404,"type":"vertex","label":"range","start":{"line":34,"character":54},"end":{"line":34,"character":60},"tag":{"type":"reference","text":"action"}}
{"id":405,"type":"edge","label":"next","outV":404,"inV":337}
{"id":406,"type":"vertex","label":"resultSet"}
{"id":407,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"1TfVYOGsb0mJkgPIyiGwSQ=="}
{"id":408,"type":"edge","label":"moniker","outV":406,"inV":407}
{"id":409,"type":"vertex","label":"range","start":{"line":35,"character":8},"end":{"line":35,"character":17},"tag":{"type":"definition","text":"namespace","kind":7,"fullRange":{"start":{"line":35,"character":8},"end":{"line":35,"character":17}}}}
{"id":410,"type":"edge","label":"next","outV":409,"inV":406}
{"id":411,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"const namespace: any"}]}}
{"id":412,"type":"edge","label":"textDocument/hover","outV":406,"inV":411}
{"id":413,"type":"vertex","label":"resultSet"}
{"id":414,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"uO6eDvUnZS1/DubeRiuPWA=="}
{"id":415,"type":"edge","label":"moniker","outV":413,"inV":414}
{"id":416,"type":"vertex","label":"range","start":{"line":35,"character":19},"end":{"line":35,"character":31},"tag":{"type":"definition","text":"setNamespace","kind":7,"fullRange":{"start":{"line":35,"character":19},"end":{"line":35,"character":31}}}}
{"id":417,"type":"edge","label":"next","outV":416,"inV":413}
{"id":418,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"const setNamespace: any"}]}}
{"id":419,"type":"edge","label":"textDocument/hover","outV":413,"inV":418}
{"id":420,"type":"vertex","label":"range","start":{"line":35,"character":35},"end":{"line":35,"character":43},"tag":{"type":"reference","text":"useState"}}
{"id":421,"type":"edge","label":"next","outV":420,"inV":141}
{"id":422,"type":"vertex","label":"range","start":{"line":35,"character":44},"end":{"line":35,"character":50},"tag":{"type":"reference","text":"nSpace"}}
{"id":423,"type":"edge","label":"next","outV":422,"inV":348}
{"id":424,"type":"vertex","label":"resultSet"}
{"id":425,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"eI/qPckHnDEBfmfKTdFMBQ=="}
{"id":426,"type":"edge","label":"moniker","outV":424,"inV":425}
{"id":427,"type":"vertex","label":"range","start":{"line":36,"character":8},"end":{"line":36,"character":20},"tag":{"type":"definition","text":"hasNamespace","kind":7,"fullRange":{"start":{"line":36,"character":8},"end":{"line":36,"character":20}}}}
{"id":428,"type":"edge","label":"next","outV":427,"inV":424}
{"id":429,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"const hasNamespace: any"}]}}
{"id":430,"type":"edge","label":"textDocument/hover","outV":424,"inV":429}
{"id":431,"type":"vertex","label":"resultSet"}
{"id":432,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"C7slFb/cbnMpeaXR0lekTw=="}
{"id":433,"type":"edge","label":"moniker","outV":431,"inV":432}
{"id":434,"type":"vertex","label":"range","start":{"line":36,"character":22},"end":{"line":36,"character":37},"tag":{"type":"definition","text":"setHasNamespace","kind":7,"fullRange":{"start":{"line":36,"character":22},"end":{"line":36,"character":37}}}}
{"id":435,"type":"edge","label":"next","outV":434,"inV":431}
{"id":436,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"const setHasNamespace: any"}]}}
{"id":437,"type":"edge","label":"textDocument/hover","outV":431,"inV":436}
{"id":438,"type":"vertex","label":"range","start":{"line":36,"character":41},"end":{"line":36,"character":49},"tag":{"type":"reference","text":"useState"}}
{"id":439,"type":"edge","label":"next","outV":438,"inV":141}
{"id":440,"type":"vertex","label":"range","start":{"line":36,"character":50},"end":{"line":36,"character":56},"tag":{"type":"reference","text":"nSpace"}}
{"id":441,"type":"edge","label":"next","outV":440,"inV":348}
{"id":442,"type":"vertex","label":"resultSet"}
{"id":443,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"u6BR8dmHwR9YUOCXEuvzQw=="}
{"id":444,"type":"edge","label":"moniker","outV":442,"inV":443}
{"id":445,"type":"vertex","label":"range","start":{"line":37,"character":8},"end":{"line":37,"character":14},"tag":{"type":"definition","text":"option","kind":7,"fullRange":{"start":{"line":37,"character":8},"end":{"line":37,"character":14}}}}
{"id":446,"type":"edge","label":"next","outV":445,"inV":442}
{"id":447,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"const option: any"}]}}
{"id":448,"type":"edge","label":"textDocument/hover","outV":442,"inV":447}
{"id":449,"type":"vertex","label":"resultSet"}
{"id":450,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"gE/gbgZ0FOnsXohfHpzF8w=="}
{"id":451,"type":"edge","label":"moniker","outV":449,"inV":450}
{"id":452,"type":"vertex","label":"range","start":{"line":37,"character":16},"end":{"line":37,"character":25},"tag":{"type":"definition","text":"setOption","kind":7,"fullRange":{"start":{"line":37,"character":16},"end":{"line":37,"character":25}}}}
{"id":453,"type":"edge","label":"next","outV":452,"inV":449}
{"id":454,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"const setOption: any"}]}}
{"id":455,"type":"edge","label":"textDocument/hover","outV":449,"inV":454}
{"id":456,"type":"vertex","label":"range","start":{"line":37,"character":29},"end":{"line":37,"character":37},"tag":{"type":"reference","text":"useState"}}
{"id":457,"type":"edge","label":"next","outV":456,"inV":141}
{"id":458,"type":"vertex","label":"range","start":{"line":37,"character":38},"end":{"line":37,"character":41},"tag":{"type":"reference","text":"opt"}}
{"id":459,"type":"edge","label":"next","outV":458,"inV":359}
{"id":460,"type":"vertex","label":"resultSet"}
{"id":461,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"EiZl6RPyujSAWNAqi5nZbQ=="}
{"id":462,"type":"edge","label":"moniker","outV":460,"inV":461}
{"id":463,"type":"vertex","label":"range","start":{"line":38,"character":8},"end":{"line":38,"character":15},"tag":{"type":"definition","text":"command","kind":7,"fullRange":{"start":{"line":38,"character":8},"end":{"line":38,"character":15}}}}
{"id":464,"type":"edge","label":"next","outV":463,"inV":460}
{"id":465,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"const command: any"}]}}
{"id":466,"type":"edge","label":"textDocument/hover","outV":460,"inV":465}
{"id":467,"type":"vertex","label":"resultSet"}
{"id":468,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"zlp4WnF00lzU4aXf4+1cpw=="}
{"id":469,"type":"edge","label":"moniker","outV":467,"inV":468}
{"id":470,"type":"vertex","label":"range","start":{"line":38,"character":17},"end":{"line":38,"character":27},"tag":{"type":"definition","text":"setCommand","kind":7,"fullRange":{"start":{"line":38,"character":17},"end":{"line":38,"character":27}}}}
{"id":471,"type":"edge","label":"next","outV":470,"inV":467}
{"id":472,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"const setCommand: any"}]}}
{"id":473,"type":"edge","label":"textDocument/hover","outV":467,"inV":472}
{"id":474,"type":"vertex","label":"range","start":{"line":38,"character":31},"end":{"line":38,"character":39},"tag":{"type":"reference","text":"useState"}}
{"id":475,"type":"edge","label":"next","outV":474,"inV":141}
{"id":476,"type":"vertex","label":"resultSet"}
{"id":477,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"4y1pnc+xq+k50PXQHT0aRg=="}
{"id":478,"type":"edge","label":"moniker","outV":476,"inV":477}
{"id":479,"type":"vertex","label":"range","start":{"line":39,"character":8},"end":{"line":39,"character":20},"tag":{"type":"definition","text":"generatedURI","kind":7,"fullRange":{"start":{"line":39,"character":8},"end":{"line":39,"character":20}}}}
{"id":480,"type":"edge","label":"next","outV":479,"inV":476}
{"id":481,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"const generatedURI: any"}]}}
{"id":482,"type":"edge","label":"textDocument/hover","outV":476,"inV":481}
{"id":483,"type":"vertex","label":"resultSet"}
{"id":484,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"sIkWu1pp30MrZbezS4R/aw=="}
{"id":485,"type":"edge","label":"moniker","outV":483,"inV":484}
{"id":486,"type":"vertex","label":"range","start":{"line":39,"character":22},"end":{"line":39,"character":37},"tag":{"type":"definition","text":"setGeneratedURI","kind":7,"fullRange":{"start":{"line":39,"character":22},"end":{"line":39,"character":37}}}}
{"id":487,"type":"edge","label":"next","outV":486,"inV":483}
{"id":488,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"const setGeneratedURI: any"}]}}
{"id":489,"type":"edge","label":"textDocument/hover","outV":483,"inV":488}
{"id":490,"type":"vertex","label":"range","start":{"line":39,"character":41},"end":{"line":39,"character":49},"tag":{"type":"reference","text":"useState"}}
{"id":491,"type":"edge","label":"next","outV":490,"inV":141}
{"id":492,"type":"vertex","label":"range","start":{"line":41,"character":1},"end":{"line":41,"character":10},"tag":{"type":"reference","text":"useEffect"}}
{"id":493,"type":"edge","label":"next","outV":492,"inV":133}
{"id":494,"type":"vertex","label":"resultSet"}
{"id":495,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"qoc55ZpYymTbqnGx2jsnvQ=="}
{"id":496,"type":"edge","label":"moniker","outV":494,"inV":495}
{"id":497,"type":"vertex","label":"range","start":{"line":41,"character":14},"end":{"line":41,"character":16},"tag":{"type":"reference","text":"=>"}}
{"id":498,"type":"edge","label":"next","outV":497,"inV":494}
{"id":499,"type":"vertex","label":"range","start":{"line":42,"character":6},"end":{"line":42,"character":12},"tag":{"type":"reference","text":"window"}}
{"id":500,"type":"edge","label":"next","outV":499,"inV":275}
{"id":501,"type":"vertex","label":"resultSet"}
{"id":502,"type":"vertex","label":"moniker","kind":"export","scheme":"tsc","identifier":"Window.matchMedia"}
{"id":503,"type":"edge","label":"moniker","outV":501,"inV":502}
{"id":504,"type":"vertex","label":"range","start":{"line":17262,"character":4},"end":{"line":17262,"character":14},"tag":{"type":"definition","text":"matchMedia","kind":7,"fullRange":{"start":{"line":17262,"character":4},"end":{"line":17262,"character":46}}}}
{"id":505,"type":"edge","label":"next","outV":504,"inV":501}
{"id":506,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(method) Window.matchMedia(query: string): MediaQueryList"}]}}
{"id":507,"type":"edge","label":"textDocument/hover","outV":501,"inV":506}
{"id":508,"type":"vertex","label":"resultSet"}
{"id":509,"type":"vertex","label":"moniker","kind":"export","scheme":"tsc","identifier":"matchMedia"}
{"id":510,"type":"edge","label":"moniker","outV":508,"inV":509}
{"id":511,"type":"vertex","label":"range","start":{"line":18322,"character":17},"end":{"line":18322,"character":27},"tag":{"type":"definition","text":"matchMedia","kind":12,"fullRange":{"start":{"line":18322,"character":0},"end":{"line":18322,"character":59}}}}
{"id":512,"type":"edge","label":"next","outV":511,"inV":508}
{"id":513,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"function matchMedia(query: string): MediaQueryList"}]}}
{"id":514,"type":"edge","label":"textDocument/hover","outV":508,"inV":513}
{"id":515,"type":"vertex","label":"resultSet"}
{"id":516,"type":"vertex","label":"referenceResult"}
{"id":517,"type":"edge","label":"textDocument/references","outV":501,"inV":516}
{"id":518,"type":"vertex","label":"referenceResult"}
{"id":519,"type":"edge","label":"textDocument/references","outV":508,"inV":518}
{"id":520,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"6xfDEmI2j1GM2t/AyOQbmw=="}
{"id":521,"type":"edge","label":"moniker","outV":515,"inV":520}
{"id":522,"type":"vertex","label":"range","start":{"line":42,"character":13},"end":{"line":42,"character":23},"tag":{"type":"definition","text":"matchMedia","kind":7,"fullRange":{"start":{"line":42,"character":13},"end":{"line":42,"character":23}}}}
{"id":523,"type":"vertex","label":"range","start":{"line":42,"character":13},"end":{"line":42,"character":23},"tag":{"type":"reference","text":"matchMedia"}}
{"id":524,"type":"edge","label":"next","outV":523,"inV":515}
{"id":525,"type":"vertex","label":"resultSet"}
{"id":526,"type":"vertex","label":"moniker","kind":"export","scheme":"tsc","identifier":"MediaQueryList.matches"}
{"id":527,"type":"edge","label":"moniker","outV":525,"inV":526}
{"id":528,"type":"vertex","label":"range","start":{"line":9857,"character":13},"end":{"line":9857,"character":20},"tag":{"type":"definition","text":"matches","kind":7,"fullRange":{"start":{"line":9857,"character":4},"end":{"line":9857,"character":30}}}}
{"id":529,"type":"edge","label":"next","outV":528,"inV":525}
{"id":530,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(property) MediaQueryList.matches: boolean"}]}}
{"id":531,"type":"edge","label":"textDocument/hover","outV":525,"inV":530}
{"id":532,"type":"vertex","label":"range","start":{"line":42,"character":56},"end":{"line":42,"character":63},"tag":{"type":"reference","text":"matches"}}
{"id":533,"type":"edge","label":"next","outV":532,"inV":525}
{"id":534,"type":"vertex","label":"range","start":{"line":43,"character":3},"end":{"line":43,"character":10},"tag":{"type":"reference","text":"setMode"}}
{"id":535,"type":"edge","label":"next","outV":534,"inV":244}
{"id":536,"type":"vertex","label":"range","start":{"line":45,"character":5},"end":{"line":45,"character":9},"tag":{"type":"reference","text":"mode"}}
{"id":537,"type":"edge","label":"next","outV":536,"inV":237}
{"id":538,"type":"vertex","label":"range","start":{"line":45,"character":11},"end":{"line":45,"character":18},"tag":{"type":"reference","text":"setMode"}}
{"id":539,"type":"edge","label":"next","outV":538,"inV":244}
{"id":540,"type":"vertex","label":"resultSet"}
{"id":541,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"DgmPFZPpFsYIBgH3pP4hOw=="}
{"id":542,"type":"edge","label":"moniker","outV":540,"inV":541}
{"id":543,"type":"vertex","label":"range","start":{"line":48,"character":7},"end":{"line":48,"character":16},"tag":{"type":"definition","text":"className","kind":7,"fullRange":{"start":{"line":48,"character":7},"end":{"line":48,"character":53}}}}
{"id":544,"type":"edge","label":"next","outV":543,"inV":540}
{"id":545,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) className: string"}]}}
{"id":546,"type":"edge","label":"textDocument/hover","outV":540,"inV":545}
{"id":547,"type":"vertex","label":"range","start":{"line":48,"character":25},"end":{"line":48,"character":29},"tag":{"type":"reference","text":"mode"}}
{"id":548,"type":"edge","label":"next","outV":547,"inV":237}
{"id":549,"type":"vertex","label":"resultSet"}
{"id":550,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"pITfOn950mDGcHVKPtk6IQ=="}
{"id":551,"type":"edge","label":"moniker","outV":549,"inV":550}
{"id":552,"type":"vertex","label":"range","start":{"line":50,"character":4},"end":{"line":50,"character":7},"tag":{"type":"definition","text":"alt","kind":7,"fullRange":{"start":{"line":50,"character":4},"end":{"line":50,"character":57}}}}
{"id":553,"type":"edge","label":"next","outV":552,"inV":549}
{"id":554,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) alt: string"}]}}
{"id":555,"type":"edge","label":"textDocument/hover","outV":549,"inV":554}
{"id":556,"type":"vertex","label":"range","start":{"line":50,"character":29},"end":{"line":50,"character":33},"tag":{"type":"reference","text":"mode"}}
{"id":557,"type":"edge","label":"next","outV":556,"inV":237}
{"id":558,"type":"vertex","label":"resultSet"}
{"id":559,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"NLUUpSxY/JLTlZOaEAqifw=="}
{"id":560,"type":"edge","label":"moniker","outV":558,"inV":559}
{"id":561,"type":"vertex","label":"range","start":{"line":51,"character":4},"end":{"line":51,"character":7},"tag":{"type":"definition","text":"src","kind":7,"fullRange":{"start":{"line":51,"character":4},"end":{"line":53,"character":18}}}}
{"id":562,"type":"edge","label":"next","outV":561,"inV":558}
{"id":563,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) src: any"}]}}
{"id":564,"type":"edge","label":"textDocument/hover","outV":558,"inV":563}
{"id":565,"type":"vertex","label":"range","start":{"line":51,"character":9},"end":{"line":51,"character":13},"tag":{"type":"reference","text":"mode"}}
{"id":566,"type":"edge","label":"next","outV":565,"inV":237}
{"id":567,"type":"vertex","label":"range","start":{"line":52,"character":7},"end":{"line":52,"character":16},"tag":{"type":"reference","text":"logo_dark"}}
{"id":568,"type":"edge","label":"next","outV":567,"inV":211}
{"id":569,"type":"vertex","label":"range","start":{"line":53,"character":7},"end":{"line":53,"character":17},"tag":{"type":"reference","text":"logo_light"}}
{"id":570,"type":"edge","label":"next","outV":569,"inV":219}
{"id":571,"type":"vertex","label":"resultSet"}
{"id":572,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"UBjWmfIdqtvY7qQpfi5umw=="}
{"id":573,"type":"edge","label":"moniker","outV":571,"inV":572}
{"id":574,"type":"vertex","label":"range","start":{"line":54,"character":4},"end":{"line":54,"character":13},"tag":{"type":"definition","text":"className","kind":7,"fullRange":{"start":{"line":54,"character":4},"end":{"line":54,"character":20}}}}
{"id":575,"type":"edge","label":"next","outV":574,"inV":571}
{"id":576,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) className: string"}]}}
{"id":577,"type":"edge","label":"textDocument/hover","outV":571,"inV":576}
{"id":578,"type":"vertex","label":"resultSet"}
{"id":579,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"kGTILF7nd1h7/eSmeq1AKA=="}
{"id":580,"type":"edge","label":"moniker","outV":578,"inV":579}
{"id":581,"type":"vertex","label":"range","start":{"line":50,"character":4},"end":{"line":54,"character":20},"tag":{"type":"reference","text":"alt={`sourcegraph-logo ${mode === \"dark\" && \"dark\"}`}\n\t\t\t\tsrc={mode === 'dark'\n\t\t\t\t\t? logo_dark\n\t\t\t\t\t: logo_light}\n\t\t\t\tclassName=\"logo\""}}
{"id":582,"type":"edge","label":"next","outV":581,"inV":578}
{"id":583,"type":"vertex","label":"range","start":{"line":56,"character":4},"end":{"line":56,"character":8},"tag":{"type":"reference","text":"mode"}}
{"id":584,"type":"edge","label":"next","outV":583,"inV":237}
{"id":585,"type":"vertex","label":"resultSet"}
{"id":586,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"RSQPL5uej1Y4dDKdAD+p8w=="}
{"id":587,"type":"edge","label":"moniker","outV":585,"inV":586}
{"id":588,"type":"vertex","label":"range","start":{"line":57,"character":8},"end":{"line":57,"character":17},"tag":{"type":"definition","text":"className","kind":7,"fullRange":{"start":{"line":57,"character":8},"end":{"line":57,"character":33}}}}
{"id":589,"type":"edge","label":"next","outV":588,"inV":585}
{"id":590,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) className: string"}]}}
{"id":591,"type":"edge","label":"textDocument/hover","outV":585,"inV":590}
{"id":592,"type":"vertex","label":"resultSet"}
{"id":593,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"GswXREumACMpvmkQGAYxvw=="}
{"id":594,"type":"edge","label":"moniker","outV":592,"inV":593}
{"id":595,"type":"vertex","label":"range","start":{"line":59,"character":8},"end":{"line":59,"character":17},"tag":{"type":"definition","text":"className","kind":7,"fullRange":{"start":{"line":59,"character":8},"end":{"line":59,"character":28}}}}
{"id":596,"type":"edge","label":"next","outV":595,"inV":592}
{"id":597,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) className: string"}]}}
{"id":598,"type":"edge","label":"textDocument/hover","outV":592,"inV":597}
{"id":599,"type":"vertex","label":"resultSet"}
{"id":600,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"3nyy+fZNfD3XGac+NIWCaw=="}
{"id":601,"type":"edge","label":"moniker","outV":599,"inV":600}
{"id":602,"type":"vertex","label":"range","start":{"line":63,"character":8},"end":{"line":63,"character":17},"tag":{"type":"definition","text":"className","kind":7,"fullRange":{"start":{"line":63,"character":8},"end":{"line":63,"character":29}}}}
{"id":603,"type":"edge","label":"next","outV":602,"inV":599}
{"id":604,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) className: string"}]}}
{"id":605,"type":"edge","label":"textDocument/hover","outV":599,"inV":604}
{"id":606,"type":"vertex","label":"resultSet"}
{"id":607,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"5aXi6JBxKJQ8Qv4XbNxuEw=="}
{"id":608,"type":"edge","label":"moniker","outV":606,"inV":607}
{"id":609,"type":"vertex","label":"range","start":{"line":65,"character":9},"end":{"line":65,"character":18},"tag":{"type":"definition","text":"className","kind":7,"fullRange":{"start":{"line":65,"character":9},"end":{"line":65,"character":37}}}}
{"id":610,"type":"edge","label":"next","outV":609,"inV":606}
{"id":611,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) className: string"}]}}
{"id":612,"type":"edge","label":"textDocument/hover","outV":606,"inV":611}
{"id":613,"type":"vertex","label":"range","start":{"line":66,"character":6},"end":{"line":66,"character":16},"tag":{"type":"reference","text":"Deployment"}}
{"id":614,"type":"edge","label":"next","outV":613,"inV":179}
{"id":615,"type":"vertex","label":"resultSet"}
{"id":616,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"XNZH2j9+3SEPSrOkpksjMw=="}
{"id":617,"type":"edge","label":"moniker","outV":615,"inV":616}
{"id":618,"type":"vertex","label":"range","start":{"line":67,"character":6},"end":{"line":67,"character":24},"tag":{"type":"definition","text":"selectedDeployment","kind":7,"fullRange":{"start":{"line":67,"character":6},"end":{"line":67,"character":45}}}}
{"id":619,"type":"edge","label":"next","outV":618,"inV":615}
{"id":620,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) selectedDeployment: any"}]}}
{"id":621,"type":"edge","label":"textDocument/hover","outV":615,"inV":620}
{"id":622,"type":"vertex","label":"range","start":{"line":67,"character":26},"end":{"line":67,"character":44},"tag":{"type":"reference","text":"selectedDeployment"}}
{"id":623,"type":"edge","label":"next","outV":622,"inV":370}
{"id":624,"type":"vertex","label":"resultSet"}
{"id":625,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"65LWo8QxFSSLxJiQrxMeEw=="}
{"id":626,"type":"edge","label":"moniker","outV":624,"inV":625}
{"id":627,"type":"vertex","label":"range","start":{"line":68,"character":6},"end":{"line":68,"character":27},"tag":{"type":"definition","text":"setSelectedDeployment","kind":7,"fullRange":{"start":{"line":68,"character":6},"end":{"line":68,"character":51}}}}
{"id":628,"type":"edge","label":"next","outV":627,"inV":624}
{"id":629,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) setSelectedDeployment: any"}]}}
{"id":630,"type":"edge","label":"textDocument/hover","outV":624,"inV":629}
{"id":631,"type":"vertex","label":"range","start":{"line":68,"character":29},"end":{"line":68,"character":50},"tag":{"type":"reference","text":"setSelectedDeployment"}}
{"id":632,"type":"edge","label":"next","outV":631,"inV":377}
{"id":633,"type":"vertex","label":"resultSet"}
{"id":634,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"8Ro3+ANY60uYePR1jHkJ2A=="}
{"id":635,"type":"edge","label":"moniker","outV":633,"inV":634}
{"id":636,"type":"vertex","label":"range","start":{"line":69,"character":6},"end":{"line":69,"character":23},"tag":{"type":"definition","text":"setSelectedAction","kind":7,"fullRange":{"start":{"line":69,"character":6},"end":{"line":69,"character":43}}}}
{"id":637,"type":"edge","label":"next","outV":636,"inV":633}
{"id":638,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) setSelectedAction: any"}]}}
{"id":639,"type":"edge","label":"textDocument/hover","outV":633,"inV":638}
{"id":640,"type":"vertex","label":"range","start":{"line":69,"character":25},"end":{"line":69,"character":42},"tag":{"type":"reference","text":"setSelectedAction"}}
{"id":641,"type":"edge","label":"next","outV":640,"inV":395}
{"id":642,"type":"vertex","label":"resultSet"}
{"id":643,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"m2MAFKOw58s7w8U1DrOr1A=="}
{"id":644,"type":"edge","label":"moniker","outV":642,"inV":643}
{"id":645,"type":"vertex","label":"range","start":{"line":70,"character":6},"end":{"line":70,"character":18},"tag":{"type":"definition","text":"hasNamespace","kind":7,"fullRange":{"start":{"line":70,"character":6},"end":{"line":70,"character":33}}}}
{"id":646,"type":"edge","label":"next","outV":645,"inV":642}
{"id":647,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) hasNamespace: any"}]}}
{"id":648,"type":"edge","label":"textDocument/hover","outV":642,"inV":647}
{"id":649,"type":"vertex","label":"range","start":{"line":70,"character":20},"end":{"line":70,"character":32},"tag":{"type":"reference","text":"hasNamespace"}}
{"id":650,"type":"edge","label":"next","outV":649,"inV":424}
{"id":651,"type":"vertex","label":"resultSet"}
{"id":652,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"5Ws6/Z31dUAeai7qLQi67Q=="}
{"id":653,"type":"edge","label":"moniker","outV":651,"inV":652}
{"id":654,"type":"vertex","label":"range","start":{"line":71,"character":6},"end":{"line":71,"character":21},"tag":{"type":"definition","text":"setHasNamespace","kind":7,"fullRange":{"start":{"line":71,"character":6},"end":{"line":71,"character":39}}}}
{"id":655,"type":"edge","label":"next","outV":654,"inV":651}
{"id":656,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) setHasNamespace: any"}]}}
{"id":657,"type":"edge","label":"textDocument/hover","outV":651,"inV":656}
{"id":658,"type":"vertex","label":"range","start":{"line":71,"character":23},"end":{"line":71,"character":38},"tag":{"type":"reference","text":"setHasNamespace"}}
{"id":659,"type":"edge","label":"next","outV":658,"inV":431}
{"id":660,"type":"vertex","label":"resultSet"}
{"id":661,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"+t49a7cds11nl/7Tay3tRQ=="}
{"id":662,"type":"edge","label":"moniker","outV":660,"inV":661}
{"id":663,"type":"vertex","label":"range","start":{"line":72,"character":6},"end":{"line":72,"character":15},"tag":{"type":"definition","text":"namespace","kind":7,"fullRange":{"start":{"line":72,"character":6},"end":{"line":72,"character":27}}}}
{"id":664,"type":"edge","label":"next","outV":663,"inV":660}
{"id":665,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) namespace: any"}]}}
{"id":666,"type":"edge","label":"textDocument/hover","outV":660,"inV":665}
{"id":667,"type":"vertex","label":"range","start":{"line":72,"character":17},"end":{"line":72,"character":26},"tag":{"type":"reference","text":"namespace"}}
{"id":668,"type":"edge","label":"next","outV":667,"inV":406}
{"id":669,"type":"vertex","label":"resultSet"}
{"id":670,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"NugQnaadOkOAI04xanlRJg=="}
{"id":671,"type":"edge","label":"moniker","outV":669,"inV":670}
{"id":672,"type":"vertex","label":"range","start":{"line":73,"character":6},"end":{"line":73,"character":18},"tag":{"type":"definition","text":"setNamespace","kind":7,"fullRange":{"start":{"line":73,"character":6},"end":{"line":73,"character":33}}}}
{"id":673,"type":"edge","label":"next","outV":672,"inV":669}
{"id":674,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) setNamespace: any"}]}}
{"id":675,"type":"edge","label":"textDocument/hover","outV":669,"inV":674}
{"id":676,"type":"vertex","label":"range","start":{"line":73,"character":20},"end":{"line":73,"character":32},"tag":{"type":"reference","text":"setNamespace"}}
{"id":677,"type":"edge","label":"next","outV":676,"inV":413}
{"id":678,"type":"vertex","label":"resultSet"}
{"id":679,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"a+lWX7VWR+c7PdaJASpXtg=="}
{"id":680,"type":"edge","label":"moniker","outV":678,"inV":679}
{"id":681,"type":"vertex","label":"range","start":{"line":74,"character":6},"end":{"line":74,"character":16},"tag":{"type":"definition","text":"setCommand","kind":7,"fullRange":{"start":{"line":74,"character":6},"end":{"line":74,"character":29}}}}
{"id":682,"type":"edge","label":"next","outV":681,"inV":678}
{"id":683,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) setCommand: any"}]}}
{"id":684,"type":"edge","label":"textDocument/hover","outV":678,"inV":683}
{"id":685,"type":"vertex","label":"range","start":{"line":74,"character":18},"end":{"line":74,"character":28},"tag":{"type":"reference","text":"setCommand"}}
{"id":686,"type":"edge","label":"next","outV":685,"inV":467}
{"id":687,"type":"vertex","label":"resultSet"}
{"id":688,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"C0JGJ6alU+8ed/myNMjYmA=="}
{"id":689,"type":"edge","label":"moniker","outV":687,"inV":688}
{"id":690,"type":"vertex","label":"range","start":{"line":75,"character":6},"end":{"line":75,"character":15},"tag":{"type":"definition","text":"setOption","kind":7,"fullRange":{"start":{"line":75,"character":6},"end":{"line":75,"character":27}}}}
{"id":691,"type":"edge","label":"next","outV":690,"inV":687}
{"id":692,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) setOption: any"}]}}
{"id":693,"type":"edge","label":"textDocument/hover","outV":687,"inV":692}
{"id":694,"type":"vertex","label":"range","start":{"line":75,"character":17},"end":{"line":75,"character":26},"tag":{"type":"reference","text":"setOption"}}
{"id":695,"type":"edge","label":"next","outV":694,"inV":449}
{"id":696,"type":"vertex","label":"resultSet"}
{"id":697,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"YB1QTPM+kWkxfxAQDJEMgw=="}
{"id":698,"type":"edge","label":"moniker","outV":696,"inV":697}
{"id":699,"type":"vertex","label":"range","start":{"line":76,"character":6},"end":{"line":76,"character":21},"tag":{"type":"definition","text":"setGeneratedURI","kind":7,"fullRange":{"start":{"line":76,"character":6},"end":{"line":76,"character":39}}}}
{"id":700,"type":"edge","label":"next","outV":699,"inV":696}
{"id":701,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) setGeneratedURI: any"}]}}
{"id":702,"type":"edge","label":"textDocument/hover","outV":696,"inV":701}
{"id":703,"type":"vertex","label":"range","start":{"line":76,"character":23},"end":{"line":76,"character":38},"tag":{"type":"reference","text":"setGeneratedURI"}}
{"id":704,"type":"edge","label":"next","outV":703,"inV":483}
{"id":705,"type":"vertex","label":"resultSet"}
{"id":706,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"P1cBtX1LUAnmmfkx5xZCTw=="}
{"id":707,"type":"edge","label":"moniker","outV":705,"inV":706}
{"id":708,"type":"vertex","label":"range","start":{"line":77,"character":6},"end":{"line":77,"character":10},"tag":{"type":"definition","text":"mode","kind":7,"fullRange":{"start":{"line":77,"character":6},"end":{"line":77,"character":17}}}}
{"id":709,"type":"edge","label":"next","outV":708,"inV":705}
{"id":710,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) mode: string"}]}}
{"id":711,"type":"edge","label":"textDocument/hover","outV":705,"inV":710}
{"id":712,"type":"vertex","label":"range","start":{"line":77,"character":12},"end":{"line":77,"character":16},"tag":{"type":"reference","text":"mode"}}
{"id":713,"type":"edge","label":"next","outV":712,"inV":237}
{"id":714,"type":"vertex","label":"resultSet"}
{"id":715,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"Ax4FFtbwq5TTNizvpokJiA=="}
{"id":716,"type":"edge","label":"moniker","outV":714,"inV":715}
{"id":717,"type":"vertex","label":"range","start":{"line":67,"character":6},"end":{"line":77,"character":17},"tag":{"type":"reference","text":"selectedDeployment={selectedDeployment}\n\t\t\t\t\t\tsetSelectedDeployment={setSelectedDeployment}\n\t\t\t\t\t\tsetSelectedAction={setSelectedAction}\n\t\t\t\t\t\thasNamespace={hasNamespace}\n\t\t\t\t\t\tsetHasNamespace={setHasNamespace}\n\t\t\t\t\t\tnamespace={namespace}\n\t\t\t\t\t\tsetNamespace={setNamespace}\n\t\t\t\t\t\tsetCommand={setCommand}\n\t\t\t\t\t\tsetOption={setOption}\n\t\t\t\t\t\tsetGeneratedURI={setGeneratedURI}\n\t\t\t\t\t\tmode={mode}"}}
{"id":718,"type":"edge","label":"next","outV":717,"inV":714}
{"id":719,"type":"vertex","label":"range","start":{"line":81,"character":6},"end":{"line":81,"character":12},"tag":{"type":"reference","text":"Action"}}
{"id":720,"type":"edge","label":"next","outV":719,"inV":187}
{"id":721,"type":"vertex","label":"resultSet"}
{"id":722,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"/9618RtqunOv8/HxoHH05w=="}
{"id":723,"type":"edge","label":"moniker","outV":721,"inV":722}
{"id":724,"type":"vertex","label":"range","start":{"line":82,"character":6},"end":{"line":82,"character":24},"tag":{"type":"definition","text":"selectedDeployment","kind":7,"fullRange":{"start":{"line":82,"character":6},"end":{"line":82,"character":45}}}}
{"id":725,"type":"edge","label":"next","outV":724,"inV":721}
{"id":726,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) selectedDeployment: any"}]}}
{"id":727,"type":"edge","label":"textDocument/hover","outV":721,"inV":726}
{"id":728,"type":"vertex","label":"range","start":{"line":82,"character":26},"end":{"line":82,"character":44},"tag":{"type":"reference","text":"selectedDeployment"}}
{"id":729,"type":"edge","label":"next","outV":728,"inV":370}
{"id":730,"type":"vertex","label":"resultSet"}
{"id":731,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"0QltJsuo4fr/MgUoFvFiYw=="}
{"id":732,"type":"edge","label":"moniker","outV":730,"inV":731}
{"id":733,"type":"vertex","label":"range","start":{"line":83,"character":6},"end":{"line":83,"character":20},"tag":{"type":"definition","text":"selectedAction","kind":7,"fullRange":{"start":{"line":83,"character":6},"end":{"line":83,"character":37}}}}
{"id":734,"type":"edge","label":"next","outV":733,"inV":730}
{"id":735,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) selectedAction: any"}]}}
{"id":736,"type":"edge","label":"textDocument/hover","outV":730,"inV":735}
{"id":737,"type":"vertex","label":"range","start":{"line":83,"character":22},"end":{"line":83,"character":36},"tag":{"type":"reference","text":"selectedAction"}}
{"id":738,"type":"edge","label":"next","outV":737,"inV":388}
{"id":739,"type":"vertex","label":"resultSet"}
{"id":740,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"Nivl9YwRwKCZORnMRRxIiQ=="}
{"id":741,"type":"edge","label":"moniker","outV":739,"inV":740}
{"id":742,"type":"vertex","label":"range","start":{"line":84,"character":6},"end":{"line":84,"character":23},"tag":{"type":"definition","text":"setSelectedAction","kind":7,"fullRange":{"start":{"line":84,"character":6},"end":{"line":84,"character":43}}}}
{"id":743,"type":"edge","label":"next","outV":742,"inV":739}
{"id":744,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) setSelectedAction: any"}]}}
{"id":745,"type":"edge","label":"textDocument/hover","outV":739,"inV":744}
{"id":746,"type":"vertex","label":"range","start":{"line":84,"character":25},"end":{"line":84,"character":42},"tag":{"type":"reference","text":"setSelectedAction"}}
{"id":747,"type":"edge","label":"next","outV":746,"inV":395}
{"id":748,"type":"vertex","label":"resultSet"}
{"id":749,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"EXfm6o/SMMWANUFh27D30g=="}
{"id":750,"type":"edge","label":"moniker","outV":748,"inV":749}
{"id":751,"type":"vertex","label":"range","start":{"line":85,"character":6},"end":{"line":85,"character":12},"tag":{"type":"definition","text":"option","kind":7,"fullRange":{"start":{"line":85,"character":6},"end":{"line":85,"character":21}}}}
{"id":752,"type":"edge","label":"next","outV":751,"inV":748}
{"id":753,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) option: any"}]}}
{"id":754,"type":"edge","label":"textDocument/hover","outV":748,"inV":753}
{"id":755,"type":"vertex","label":"range","start":{"line":85,"character":14},"end":{"line":85,"character":20},"tag":{"type":"reference","text":"option"}}
{"id":756,"type":"edge","label":"next","outV":755,"inV":442}
{"id":757,"type":"vertex","label":"resultSet"}
{"id":758,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"lWE2ukwQ7CwEl56LWFBWjA=="}
{"id":759,"type":"edge","label":"moniker","outV":757,"inV":758}
{"id":760,"type":"vertex","label":"range","start":{"line":86,"character":6},"end":{"line":86,"character":15},"tag":{"type":"definition","text":"setOption","kind":7,"fullRange":{"start":{"line":86,"character":6},"end":{"line":86,"character":27}}}}
{"id":761,"type":"edge","label":"next","outV":760,"inV":757}
{"id":762,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) setOption: any"}]}}
{"id":763,"type":"edge","label":"textDocument/hover","outV":757,"inV":762}
{"id":764,"type":"vertex","label":"range","start":{"line":86,"character":17},"end":{"line":86,"character":26},"tag":{"type":"reference","text":"setOption"}}
{"id":765,"type":"edge","label":"next","outV":764,"inV":449}
{"id":766,"type":"vertex","label":"resultSet"}
{"id":767,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"XE3emws6pVkUXnK12MBU3Q=="}
{"id":768,"type":"edge","label":"moniker","outV":766,"inV":767}
{"id":769,"type":"vertex","label":"range","start":{"line":87,"character":6},"end":{"line":87,"character":13},"tag":{"type":"definition","text":"command","kind":7,"fullRange":{"start":{"line":87,"character":6},"end":{"line":87,"character":23}}}}
{"id":770,"type":"edge","label":"next","outV":769,"inV":766}
{"id":771,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) command: any"}]}}
{"id":772,"type":"edge","label":"textDocument/hover","outV":766,"inV":771}
{"id":773,"type":"vertex","label":"range","start":{"line":87,"character":15},"end":{"line":87,"character":22},"tag":{"type":"reference","text":"command"}}
{"id":774,"type":"edge","label":"next","outV":773,"inV":460}
{"id":775,"type":"vertex","label":"resultSet"}
{"id":776,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"b8bzKk1Ue/+VhCA4YRmICw=="}
{"id":777,"type":"edge","label":"moniker","outV":775,"inV":776}
{"id":778,"type":"vertex","label":"range","start":{"line":88,"character":6},"end":{"line":88,"character":16},"tag":{"type":"definition","text":"setCommand","kind":7,"fullRange":{"start":{"line":88,"character":6},"end":{"line":88,"character":29}}}}
{"id":779,"type":"edge","label":"next","outV":778,"inV":775}
{"id":780,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) setCommand: any"}]}}
{"id":781,"type":"edge","label":"textDocument/hover","outV":775,"inV":780}
{"id":782,"type":"vertex","label":"range","start":{"line":88,"character":18},"end":{"line":88,"character":28},"tag":{"type":"reference","text":"setCommand"}}
{"id":783,"type":"edge","label":"next","outV":782,"inV":467}
{"id":784,"type":"vertex","label":"resultSet"}
{"id":785,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"GK0RP9AY/fqAseOaQ9ehwA=="}
{"id":786,"type":"edge","label":"moniker","outV":784,"inV":785}
{"id":787,"type":"vertex","label":"range","start":{"line":89,"character":6},"end":{"line":89,"character":18},"tag":{"type":"definition","text":"hasNamespace","kind":7,"fullRange":{"start":{"line":89,"character":6},"end":{"line":89,"character":33}}}}
{"id":788,"type":"edge","label":"next","outV":787,"inV":784}
{"id":789,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) hasNamespace: any"}]}}
{"id":790,"type":"edge","label":"textDocument/hover","outV":784,"inV":789}
{"id":791,"type":"vertex","label":"range","start":{"line":89,"character":20},"end":{"line":89,"character":32},"tag":{"type":"reference","text":"hasNamespace"}}
{"id":792,"type":"edge","label":"next","outV":791,"inV":424}
{"id":793,"type":"vertex","label":"resultSet"}
{"id":794,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"sScVhu1/jGg9SJRKKIlQbg=="}
{"id":795,"type":"edge","label":"moniker","outV":793,"inV":794}
{"id":796,"type":"vertex","label":"range","start":{"line":90,"character":6},"end":{"line":90,"character":15},"tag":{"type":"definition","text":"namespace","kind":7,"fullRange":{"start":{"line":90,"character":6},"end":{"line":90,"character":27}}}}
{"id":797,"type":"edge","label":"next","outV":796,"inV":793}
{"id":798,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) namespace: any"}]}}
{"id":799,"type":"edge","label":"textDocument/hover","outV":793,"inV":798}
{"id":800,"type":"vertex","label":"range","start":{"line":90,"character":17},"end":{"line":90,"character":26},"tag":{"type":"reference","text":"namespace"}}
{"id":801,"type":"edge","label":"next","outV":800,"inV":406}
{"id":802,"type":"vertex","label":"resultSet"}
{"id":803,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"eWOa9S+nz/p3oBjq3GWGxA=="}
{"id":804,"type":"edge","label":"moniker","outV":802,"inV":803}
{"id":805,"type":"vertex","label":"range","start":{"line":91,"character":6},"end":{"line":91,"character":21},"tag":{"type":"definition","text":"setGeneratedURI","kind":7,"fullRange":{"start":{"line":91,"character":6},"end":{"line":91,"character":39}}}}
{"id":806,"type":"edge","label":"next","outV":805,"inV":802}
{"id":807,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) setGeneratedURI: any"}]}}
{"id":808,"type":"edge","label":"textDocument/hover","outV":802,"inV":807}
{"id":809,"type":"vertex","label":"range","start":{"line":91,"character":23},"end":{"line":91,"character":38},"tag":{"type":"reference","text":"setGeneratedURI"}}
{"id":810,"type":"edge","label":"next","outV":809,"inV":483}
{"id":811,"type":"vertex","label":"resultSet"}
{"id":812,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"MVKCdkTB6FOoCEK8nwK1zQ=="}
{"id":813,"type":"edge","label":"moniker","outV":811,"inV":812}
{"id":814,"type":"vertex","label":"range","start":{"line":92,"character":6},"end":{"line":92,"character":10},"tag":{"type":"definition","text":"mode","kind":7,"fullRange":{"start":{"line":92,"character":6},"end":{"line":92,"character":17}}}}
{"id":815,"type":"edge","label":"next","outV":814,"inV":811}
{"id":816,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) mode: string"}]}}
{"id":817,"type":"edge","label":"textDocument/hover","outV":811,"inV":816}
{"id":818,"type":"vertex","label":"range","start":{"line":92,"character":12},"end":{"line":92,"character":16},"tag":{"type":"reference","text":"mode"}}
{"id":819,"type":"edge","label":"next","outV":818,"inV":237}
{"id":820,"type":"vertex","label":"resultSet"}
{"id":821,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"jB0wohqnihCFrRnsgqPZcw=="}
{"id":822,"type":"edge","label":"moniker","outV":820,"inV":821}
{"id":823,"type":"vertex","label":"range","start":{"line":82,"character":6},"end":{"line":92,"character":17},"tag":{"type":"reference","text":"selectedDeployment={selectedDeployment}\n\t\t\t\t\t\tselectedAction={selectedAction}\n\t\t\t\t\t\tsetSelectedAction={setSelectedAction}\n\t\t\t\t\t\toption={option}\n\t\t\t\t\t\tsetOption={setOption}\n\t\t\t\t\t\tcommand={command}\n\t\t\t\t\t\tsetCommand={setCommand}\n\t\t\t\t\t\thasNamespace={hasNamespace}\n\t\t\t\t\t\tnamespace={namespace}\n\t\t\t\t\t\tsetGeneratedURI={setGeneratedURI}\n\t\t\t\t\t\tmode={mode}"}}
{"id":824,"type":"edge","label":"next","outV":823,"inV":820}
{"id":825,"type":"vertex","label":"resultSet"}
{"id":826,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"D2XhZiuJLESH8aXvYB0XLw=="}
{"id":827,"type":"edge","label":"moniker","outV":825,"inV":826}
{"id":828,"type":"vertex","label":"range","start":{"line":96,"character":9},"end":{"line":96,"character":18},"tag":{"type":"definition","text":"className","kind":7,"fullRange":{"start":{"line":96,"character":9},"end":{"line":96,"character":31}}}}
{"id":829,"type":"edge","label":"next","outV":828,"inV":825}
{"id":830,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) className: string"}]}}
{"id":831,"type":"edge","label":"textDocument/hover","outV":825,"inV":830}
{"id":832,"type":"vertex","label":"resultSet"}
{"id":833,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"xfJ65ll8csT8kC5GR9J8lQ=="}
{"id":834,"type":"edge","label":"moniker","outV":832,"inV":833}
{"id":835,"type":"vertex","label":"range","start":{"line":99,"character":9},"end":{"line":99,"character":18},"tag":{"type":"definition","text":"className","kind":7,"fullRange":{"start":{"line":99,"character":9},"end":{"line":99,"character":43}}}}
{"id":836,"type":"edge","label":"next","outV":835,"inV":832}
{"id":837,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) className: string"}]}}
{"id":838,"type":"edge","label":"textDocument/hover","outV":832,"inV":837}
{"id":839,"type":"vertex","label":"range","start":{"line":100,"character":6},"end":{"line":100,"character":18},"tag":{"type":"reference","text":"Descriptions"}}
{"id":840,"type":"edge","label":"next","outV":839,"inV":195}
{"id":841,"type":"vertex","label":"resultSet"}
{"id":842,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"6ronMjcFzUwjtPPJdqW31w=="}
{"id":843,"type":"edge","label":"moniker","outV":841,"inV":842}
{"id":844,"type":"vertex","label":"range","start":{"line":101,"character":6},"end":{"line":101,"character":24},"tag":{"type":"definition","text":"selectedDeployment","kind":7,"fullRange":{"start":{"line":101,"character":6},"end":{"line":101,"character":45}}}}
{"id":845,"type":"edge","label":"next","outV":844,"inV":841}
{"id":846,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) selectedDeployment: any"}]}}
{"id":847,"type":"edge","label":"textDocument/hover","outV":841,"inV":846}
{"id":848,"type":"vertex","label":"range","start":{"line":101,"character":26},"end":{"line":101,"character":44},"tag":{"type":"reference","text":"selectedDeployment"}}
{"id":849,"type":"edge","label":"next","outV":848,"inV":370}
{"id":850,"type":"vertex","label":"resultSet"}
{"id":851,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"SmeTPgsYlbXn7+odHD4zzw=="}
{"id":852,"type":"edge","label":"moniker","outV":850,"inV":851}
{"id":853,"type":"vertex","label":"range","start":{"line":102,"character":6},"end":{"line":102,"character":10},"tag":{"type":"definition","text":"mode","kind":7,"fullRange":{"start":{"line":102,"character":6},"end":{"line":102,"character":17}}}}
{"id":854,"type":"edge","label":"next","outV":853,"inV":850}
{"id":855,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) mode: string"}]}}
{"id":856,"type":"edge","label":"textDocument/hover","outV":850,"inV":855}
{"id":857,"type":"vertex","label":"range","start":{"line":102,"character":12},"end":{"line":102,"character":16},"tag":{"type":"reference","text":"mode"}}
{"id":858,"type":"edge","label":"next","outV":857,"inV":237}
{"id":859,"type":"vertex","label":"resultSet"}
{"id":860,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"eOd7Zk9dgiouiUIPz4w1+A=="}
{"id":861,"type":"edge","label":"moniker","outV":859,"inV":860}
{"id":862,"type":"vertex","label":"range","start":{"line":101,"character":6},"end":{"line":102,"character":17},"tag":{"type":"reference","text":"selectedDeployment={selectedDeployment}\n\t\t\t\t\t\tmode={mode}"}}
{"id":863,"type":"edge","label":"next","outV":862,"inV":859}
{"id":864,"type":"vertex","label":"resultSet"}
{"id":865,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"QftPdohoNL9ChqvGRk9lVA=="}
{"id":866,"type":"edge","label":"moniker","outV":864,"inV":865}
{"id":867,"type":"vertex","label":"range","start":{"line":108,"character":8},"end":{"line":108,"character":17},"tag":{"type":"definition","text":"className","kind":7,"fullRange":{"start":{"line":108,"character":8},"end":{"line":108,"character":42}}}}
{"id":868,"type":"edge","label":"next","outV":867,"inV":864}
{"id":869,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) className: string"}]}}
{"id":870,"type":"edge","label":"textDocument/hover","outV":864,"inV":869}
{"id":871,"type":"vertex","label":"range","start":{"line":109,"character":5},"end":{"line":109,"character":21},"tag":{"type":"reference","text":"GeneratedCommand"}}
{"id":872,"type":"edge","label":"next","outV":871,"inV":203}
{"id":873,"type":"vertex","label":"resultSet"}
{"id":874,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"TUHi46impwNIl26Q1XxiAA=="}
{"id":875,"type":"edge","label":"moniker","outV":873,"inV":874}
{"id":876,"type":"vertex","label":"range","start":{"line":110,"character":5},"end":{"line":110,"character":23},"tag":{"type":"definition","text":"selectedDeployment","kind":7,"fullRange":{"start":{"line":110,"character":5},"end":{"line":110,"character":44}}}}
{"id":877,"type":"edge","label":"next","outV":876,"inV":873}
{"id":878,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) selectedDeployment: any"}]}}
{"id":879,"type":"edge","label":"textDocument/hover","outV":873,"inV":878}
{"id":880,"type":"vertex","label":"range","start":{"line":110,"character":25},"end":{"line":110,"character":43},"tag":{"type":"reference","text":"selectedDeployment"}}
{"id":881,"type":"edge","label":"next","outV":880,"inV":370}
{"id":882,"type":"vertex","label":"resultSet"}
{"id":883,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"1U4Beo9FoZD9ZsIGC92Bww=="}
{"id":884,"type":"edge","label":"moniker","outV":882,"inV":883}
{"id":885,"type":"vertex","label":"range","start":{"line":111,"character":5},"end":{"line":111,"character":19},"tag":{"type":"definition","text":"selectedAction","kind":7,"fullRange":{"start":{"line":111,"character":5},"end":{"line":111,"character":36}}}}
{"id":886,"type":"edge","label":"next","outV":885,"inV":882}
{"id":887,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) selectedAction: any"}]}}
{"id":888,"type":"edge","label":"textDocument/hover","outV":882,"inV":887}
{"id":889,"type":"vertex","label":"range","start":{"line":111,"character":21},"end":{"line":111,"character":35},"tag":{"type":"reference","text":"selectedAction"}}
{"id":890,"type":"edge","label":"next","outV":889,"inV":388}
{"id":891,"type":"vertex","label":"resultSet"}
{"id":892,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"W3p+DishvWIByhM/F1XzeQ=="}
{"id":893,"type":"edge","label":"moniker","outV":891,"inV":892}
{"id":894,"type":"vertex","label":"range","start":{"line":112,"character":5},"end":{"line":112,"character":12},"tag":{"type":"definition","text":"command","kind":7,"fullRange":{"start":{"line":112,"character":5},"end":{"line":112,"character":22}}}}
{"id":895,"type":"edge","label":"next","outV":894,"inV":891}
{"id":896,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) command: any"}]}}
{"id":897,"type":"edge","label":"textDocument/hover","outV":891,"inV":896}
{"id":898,"type":"vertex","label":"range","start":{"line":112,"character":14},"end":{"line":112,"character":21},"tag":{"type":"reference","text":"command"}}
{"id":899,"type":"edge","label":"next","outV":898,"inV":460}
{"id":900,"type":"vertex","label":"resultSet"}
{"id":901,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"hGTvBTwgP/Qx4KZulpT8+Q=="}
{"id":902,"type":"edge","label":"moniker","outV":900,"inV":901}
{"id":903,"type":"vertex","label":"range","start":{"line":113,"character":5},"end":{"line":113,"character":14},"tag":{"type":"definition","text":"namespace","kind":7,"fullRange":{"start":{"line":113,"character":5},"end":{"line":113,"character":26}}}}
{"id":904,"type":"edge","label":"next","outV":903,"inV":900}
{"id":905,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) namespace: any"}]}}
{"id":906,"type":"edge","label":"textDocument/hover","outV":900,"inV":905}
{"id":907,"type":"vertex","label":"range","start":{"line":113,"character":16},"end":{"line":113,"character":25},"tag":{"type":"reference","text":"namespace"}}
{"id":908,"type":"edge","label":"next","outV":907,"inV":406}
{"id":909,"type":"vertex","label":"resultSet"}
{"id":910,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"/1Pu/lxtAQvKL4aTAa3e0g=="}
{"id":911,"type":"edge","label":"moniker","outV":909,"inV":910}
{"id":912,"type":"vertex","label":"range","start":{"line":114,"character":5},"end":{"line":114,"character":11},"tag":{"type":"definition","text":"option","kind":7,"fullRange":{"start":{"line":114,"character":5},"end":{"line":114,"character":20}}}}
{"id":913,"type":"edge","label":"next","outV":912,"inV":909}
{"id":914,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) option: any"}]}}
{"id":915,"type":"edge","label":"textDocument/hover","outV":909,"inV":914}
{"id":916,"type":"vertex","label":"range","start":{"line":114,"character":13},"end":{"line":114,"character":19},"tag":{"type":"reference","text":"option"}}
{"id":917,"type":"edge","label":"next","outV":916,"inV":442}
{"id":918,"type":"vertex","label":"resultSet"}
{"id":919,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"Prw31+P/uZ6TGwah1Q4y4A=="}
{"id":920,"type":"edge","label":"moniker","outV":918,"inV":919}
{"id":921,"type":"vertex","label":"range","start":{"line":115,"character":5},"end":{"line":115,"character":20},"tag":{"type":"definition","text":"setGeneratedURI","kind":7,"fullRange":{"start":{"line":115,"character":5},"end":{"line":115,"character":38}}}}
{"id":922,"type":"edge","label":"next","outV":921,"inV":918}
{"id":923,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) setGeneratedURI: any"}]}}
{"id":924,"type":"edge","label":"textDocument/hover","outV":918,"inV":923}
{"id":925,"type":"vertex","label":"range","start":{"line":115,"character":22},"end":{"line":115,"character":37},"tag":{"type":"reference","text":"setGeneratedURI"}}
{"id":926,"type":"edge","label":"next","outV":925,"inV":483}
{"id":927,"type":"vertex","label":"resultSet"}
{"id":928,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"FOrTPffo4rUbyNpS73Nx2A=="}
{"id":929,"type":"edge","label":"moniker","outV":927,"inV":928}
{"id":930,"type":"vertex","label":"range","start":{"line":116,"character":5},"end":{"line":116,"character":17},"tag":{"type":"definition","text":"generatedURI","kind":7,"fullRange":{"start":{"line":116,"character":5},"end":{"line":116,"character":32}}}}
{"id":931,"type":"edge","label":"next","outV":930,"inV":927}
{"id":932,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) generatedURI: any"}]}}
{"id":933,"type":"edge","label":"textDocument/hover","outV":927,"inV":932}
{"id":934,"type":"vertex","label":"range","start":{"line":116,"character":19},"end":{"line":116,"character":31},"tag":{"type":"reference","text":"generatedURI"}}
{"id":935,"type":"edge","label":"next","outV":934,"inV":476}
{"id":936,"type":"vertex","label":"resultSet"}
{"id":937,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"m1GRPJeMKQ+lBt8E2uSv0g=="}
{"id":938,"type":"edge","label":"moniker","outV":936,"inV":937}
{"id":939,"type":"vertex","label":"range","start":{"line":117,"character":5},"end":{"line":117,"character":9},"tag":{"type":"definition","text":"mode","kind":7,"fullRange":{"start":{"line":117,"character":5},"end":{"line":117,"character":16}}}}
{"id":940,"type":"edge","label":"next","outV":939,"inV":936}
{"id":941,"type":"vertex","label":"hoverResult","result":{"contents":[{"language":"typescript","value":"(JSX attribute) mode: string"}]}}
{"id":942,"type":"edge","label":"textDocument/hover","outV":936,"inV":941}
{"id":943,"type":"vertex","label":"range","start":{"line":117,"character":11},"end":{"line":117,"character":15},"tag":{"type":"reference","text":"mode"}}
{"id":944,"type":"edge","label":"next","outV":943,"inV":237}
{"id":945,"type":"vertex","label":"resultSet"}
{"id":946,"type":"vertex","label":"moniker","kind":"local","scheme":"tsc","identifier":"kF3qPo5yIKKXb/nQZCzNzQ=="}
{"id":947,"type":"edge","label":"moniker","outV":945,"inV":946}
{"id":948,"type":"vertex","label":"range","start":{"line":110,"character":5},"end":{"line":117,"character":16},"tag":{"type":"reference","text":"selectedDeployment={selectedDeployment}\n\t\t\t\t\tselectedAction={selectedAction}\n\t\t\t\t\tcommand={command}\n\t\t\t\t\tnamespace={namespace}\n\t\t\t\t\toption={option}\n\t\t\t\t\tsetGeneratedURI={setGeneratedURI}\n\t\t\t\t\tgeneratedURI={generatedURI}\n\t\t\t\t\tmode={mode}"}}
{"id":949,"type":"edge","label":"next","outV":948,"inV":945}
{"id":950,"type":"vertex","label":"resultSet"}
{"id":951,"type":"edge","label":"next","outV":950,"inV":227}
{"id":952,"type":"vertex","label":"moniker","kind":"export","scheme":"tsc","identifier":"src/App.jsx:default"}
{"id":953,"type":"edge","label":"moniker","outV":950,"inV":952}
{"id":954,"type":"vertex","label":"moniker","kind":"export","scheme":"npm","identifier":"command-line-generator:src/App.jsx:default"}
{"id":955,"type":"edge","label":"packageInformation","outV":954,"inV":9}
{"id":956,"type":"edge","label":"nextMoniker","outV":952,"inV":954}
{"id":957,"type":"vertex","label":"range","start":{"line":124,"character":0},"end":{"line":124,"character":19},"tag":{"type":"reference","text":"export default App;"}}
{"id":958,"type":"edge","label":"next","outV":957,"inV":950}
{"id":959,"type":"vertex","label":"range","start":{"line":124,"character":15},"end":{"line":124,"character":18},"tag":{"type":"reference","text":"App"}}
{"id":960,"type":"edge","label":"next","outV":959,"inV":227}
{"id":961,"type":"vertex","label":"definitionResult"}
{"id":962,"type":"edge","label":"textDocument/definition","outV":124,"inV":961}
{"id":963,"type":"edge","label":"item","outV":961,"inVs":[130],"document":122}
{"id":964,"type":"vertex","label":"referenceResult"}
{"id":965,"type":"edge","label":"textDocument/references","outV":124,"inV":964}
{"id":966,"type":"edge","label":"item","outV":964,"inVs":[130],"document":122,"property":"definitions"}
{"id":967,"type":"vertex","label":"definitionResult"}
{"id":968,"type":"edge","label":"textDocument/definition","outV":133,"inV":967}
{"id":969,"type":"edge","label":"item","outV":967,"inVs":[137],"document":122}
{"id":970,"type":"vertex","label":"definitionResult"}
{"id":971,"type":"edge","label":"textDocument/definition","outV":141,"inV":970}
{"id":972,"type":"edge","label":"item","outV":970,"inVs":[145],"document":122}
{"id":973,"type":"vertex","label":"referenceResult"}
{"id":974,"type":"edge","label":"textDocument/references","outV":149,"inV":973}
{"id":975,"type":"edge","label":"item","outV":973,"inVs":[163,251],"document":122,"property":"references"}
{"id":976,"type":"edge","label":"item","outV":97,"inVs":[167],"document":122,"property":"references"}
{"id":977,"type":"edge","label":"item","outV":103,"inVs":[173,253],"document":122,"property":"references"}
{"id":978,"type":"edge","label":"item","outV":91,"inVs":[177],"document":122,"property":"references"}
{"id":979,"type":"vertex","label":"definitionResult"}
{"id":980,"type":"edge","label":"textDocument/definition","outV":179,"inV":979}
{"id":981,"type":"edge","label":"item","outV":979,"inVs":[183],"document":122}
{"id":982,"type":"vertex","label":"definitionResult"}
{"id":983,"type":"edge","label":"textDocument/definition","outV":187,"inV":982}
{"id":984,"type":"edge","label":"item","outV":982,"inVs":[191],"document":122}
{"id":985,"type":"vertex","label":"definitionResult"}
{"id":986,"type":"edge","label":"textDocument/definition","outV":195,"inV":985}
{"id":987,"type":"edge","label":"item","outV":985,"inVs":[199],"document":122}
{"id":988,"type":"vertex","label":"definitionResult"}
{"id":989,"type":"edge","label":"textDocument/definition","outV":203,"inV":988}
{"id":990,"type":"edge","label":"item","outV":988,"inVs":[207],"document":122}
{"id":991,"type":"vertex","label":"definitionResult"}
{"id":992,"type":"edge","label":"textDocument/definition","outV":211,"inV":991}
{"id":993,"type":"edge","label":"item","outV":991,"inVs":[215],"document":122}
{"id":994,"type":"vertex","label":"definitionResult"}
{"id":995,"type":"edge","label":"textDocument/definition","outV":219,"inV":994}
{"id":996,"type":"edge","label":"item","outV":994,"inVs":[223],"document":122}
{"id":997,"type":"vertex","label":"definitionResult"}
{"id":998,"type":"edge","label":"textDocument/definition","outV":227,"inV":997}
{"id":999,"type":"edge","label":"item","outV":997,"inVs":[233],"document":122}
{"id":1000,"type":"vertex","label":"referenceResult"}