sheel-deer 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (90) hide show
  1. package/.vscode/launch.json +51 -0
  2. package/.vscode/settings.json +94 -0
  3. package/.vscode/tasks.json +57 -0
  4. package/App.elen +70 -0
  5. package/README.MD +0 -0
  6. package/Test.elen +24 -0
  7. package/compile-all-ts.js +76 -0
  8. package/dist/index.es.js +1 -0
  9. package/dist/index.umd.js +1 -0
  10. package/elen/App.elen +7 -0
  11. package/elen/LICENSE +15 -0
  12. package/elen/dist/extension.js +130 -0
  13. package/elen/dist/init.js +28 -0
  14. package/elen/elen-1.0.0.vsix +0 -0
  15. package/elen/extension.ts +122 -0
  16. package/elen/icon-theme.json +2423 -0
  17. package/elen/icon.svg +1 -0
  18. package/elen/images/icon.svg +1 -0
  19. package/elen/init.ts +28 -0
  20. package/elen/language-configuration.json +26 -0
  21. package/elen/package-lock.json +549 -0
  22. package/elen/package.json +52 -0
  23. package/elen/seti.woff +0 -0
  24. package/elen/src/App.elen +0 -0
  25. package/elen/syntaxes/elen.tmLanguage.json +312 -0
  26. package/elen/tsconfig.json +14 -0
  27. package/elen-icon-theme/LICENSE +15 -0
  28. package/elen-icon-theme/README.md +18 -0
  29. package/elen-icon-theme/elen-icon-theme-1.0.0.vsix +0 -0
  30. package/elen-icon-theme/elen-icon-theme-1.0.1.vsix +0 -0
  31. package/elen-icon-theme/elen-icon-theme-1.0.13.vsix +0 -0
  32. package/elen-icon-theme/elen-icon-theme-1.0.15.vsix +0 -0
  33. package/elen-icon-theme/elen-icon-theme-1.0.16.vsix +0 -0
  34. package/elen-icon-theme/elen-icon-theme-1.0.17.vsix +0 -0
  35. package/elen-icon-theme/elen-icon-theme-1.0.18.vsix +0 -0
  36. package/elen-icon-theme/elen-icon-theme-1.0.19.vsix +0 -0
  37. package/elen-icon-theme/elen-icon-theme-1.0.2.vsix +0 -0
  38. package/elen-icon-theme/elen-icon-theme-1.0.20.vsix +0 -0
  39. package/elen-icon-theme/elen-icon-theme-1.0.3.vsix +0 -0
  40. package/elen-icon-theme/elen-icon-theme-1.0.4.vsix +0 -0
  41. package/elen-icon-theme/elen-icon-theme-1.0.5.vsix +0 -0
  42. package/elen-icon-theme/elen-icon-theme-1.0.6.vsix +0 -0
  43. package/elen-icon-theme/elen-icon-theme-1.0.7.vsix +0 -0
  44. package/elen-icon-theme/elen-icon-theme-1.0.8.vsix +0 -0
  45. package/elen-icon-theme/elen-icon-theme-1.0.9.vsix +0 -0
  46. package/elen-icon-theme/extension.js +226 -0
  47. package/elen-icon-theme/icon-theme.json +2425 -0
  48. package/elen-icon-theme/icon.svg +1 -0
  49. package/elen-icon-theme/images/icon.svg +1 -0
  50. package/elen-icon-theme/package.json +36 -0
  51. package/elen-icon-theme/seti.woff +0 -0
  52. package/icon.svg +8 -0
  53. package/index.html +11 -0
  54. package/init-start-page.ts +59 -0
  55. package/logo.html +15 -0
  56. package/package.json +42 -0
  57. package/server.ts +31 -0
  58. package/shells/data-page/Elen.ts +23 -0
  59. package/squarings/.json +132 -0
  60. package/squarings/App.json +59 -0
  61. package/squarings/Test.json +27 -0
  62. package/src/base/Component.ts +113 -0
  63. package/src/classes/BinaryData.ts +81 -0
  64. package/src/classes/DataModel.ts +386 -0
  65. package/src/classes/DataTypes.ts +116 -0
  66. package/src/components/squaring.ts +226 -0
  67. package/src/components/vtm.ts +231 -0
  68. package/src/data/ascii.ts +134 -0
  69. package/src/data/binary-resources.ts +209 -0
  70. package/src/events/event-handler.js +34 -0
  71. package/src/index.ts +1 -0
  72. package/src/methods/app-template.ts +7 -0
  73. package/src/methods/array-helpers.ts +176 -0
  74. package/src/methods/css-template.ts +5 -0
  75. package/src/methods/errors-helpers.ts +26 -0
  76. package/src/methods/html-template.ts +22 -0
  77. package/src/methods/parsers.ts +1012 -0
  78. package/src/methods/square.ts +80 -0
  79. package/src/methods/ts-template.ts +36 -0
  80. package/src/methods/using-template.ts +3 -0
  81. package/src/models/ascii.ts +26 -0
  82. package/src/models/data-stream.ts +5 -0
  83. package/src/models/data-type-model.ts +22 -0
  84. package/src/models/template-binary-model.ts +5 -0
  85. package/src/routes.ts +9 -0
  86. package/syntaxes/enel.tmLanguage.json +28 -0
  87. package/tsconfig.json +68 -0
  88. package/viewController/Inital.elen +8 -0
  89. package/vite.config.ts +25 -0
  90. package/vue.config.js +30 -0
@@ -0,0 +1,2423 @@
1
+ {
2
+ "information_for_contributors": [
3
+ "This file has been generated from data in https://github.com/jesseweed/seti-ui",
4
+ "- icon definitions: https://github.com/jesseweed/seti-ui/blob/master/styles/_fonts/seti.less",
5
+ "- icon colors: https://github.com/jesseweed/seti-ui/blob/master/styles/ui-variables.less",
6
+ "- file associations: https://github.com/jesseweed/seti-ui/blob/master/styles/components/icons/mapping.less",
7
+ "If you want to provide a fix or improvement, please create a pull request against the jesseweed/seti-ui repository.",
8
+ "Once accepted there, we are happy to receive an update request."
9
+ ],
10
+ "fonts": [
11
+ {
12
+ "id": "seti",
13
+ "src": [
14
+ {
15
+ "path": "./seti.woff",
16
+ "format": "woff"
17
+ }
18
+ ],
19
+ "weight": "normal",
20
+ "style": "normal",
21
+ "size": "150%"
22
+ }
23
+ ],
24
+ "iconDefinitions": {
25
+ "_R_light": {
26
+ "fontCharacter": "\\E001",
27
+ "fontColor": "#498ba7"
28
+ },
29
+ "_R": {
30
+ "fontCharacter": "\\E001",
31
+ "fontColor": "#519aba"
32
+ },
33
+ "_argdown_light": {
34
+ "fontCharacter": "\\E003",
35
+ "fontColor": "#498ba7"
36
+ },
37
+ "_argdown": {
38
+ "fontCharacter": "\\E003",
39
+ "fontColor": "#519aba"
40
+ },
41
+ "_asm_light": {
42
+ "fontCharacter": "\\E004",
43
+ "fontColor": "#b8383d"
44
+ },
45
+ "_asm": {
46
+ "fontCharacter": "\\E004",
47
+ "fontColor": "#cc3e44"
48
+ },
49
+ "_audio_light": {
50
+ "fontCharacter": "\\E005",
51
+ "fontColor": "#9068b0"
52
+ },
53
+ "_audio": {
54
+ "fontCharacter": "\\E005",
55
+ "fontColor": "#a074c4"
56
+ },
57
+ "_babel_light": {
58
+ "fontCharacter": "\\E006",
59
+ "fontColor": "#b7b73b"
60
+ },
61
+ "_babel": {
62
+ "fontCharacter": "\\E006",
63
+ "fontColor": "#cbcb41"
64
+ },
65
+ "_bazel_light": {
66
+ "fontCharacter": "\\E007",
67
+ "fontColor": "#7fae42"
68
+ },
69
+ "_bazel": {
70
+ "fontCharacter": "\\E007",
71
+ "fontColor": "#8dc149"
72
+ },
73
+ "_bazel_1_light": {
74
+ "fontCharacter": "\\E007",
75
+ "fontColor": "#455155"
76
+ },
77
+ "_bazel_1": {
78
+ "fontCharacter": "\\E007",
79
+ "fontColor": "#4d5a5e"
80
+ },
81
+ "_bicep_light": {
82
+ "fontCharacter": "\\E008",
83
+ "fontColor": "#498ba7"
84
+ },
85
+ "_bicep": {
86
+ "fontCharacter": "\\E008",
87
+ "fontColor": "#519aba"
88
+ },
89
+ "_bower_light": {
90
+ "fontCharacter": "\\E009",
91
+ "fontColor": "#cc6d2e"
92
+ },
93
+ "_bower": {
94
+ "fontCharacter": "\\E009",
95
+ "fontColor": "#e37933"
96
+ },
97
+ "_bsl_light": {
98
+ "fontCharacter": "\\E00A",
99
+ "fontColor": "#b8383d"
100
+ },
101
+ "_bsl": {
102
+ "fontCharacter": "\\E00A",
103
+ "fontColor": "#cc3e44"
104
+ },
105
+ "_c_light": {
106
+ "fontCharacter": "\\E00C",
107
+ "fontColor": "#498ba7"
108
+ },
109
+ "_c": {
110
+ "fontCharacter": "\\E00C",
111
+ "fontColor": "#519aba"
112
+ },
113
+ "_c-sharp_light": {
114
+ "fontCharacter": "\\E00B",
115
+ "fontColor": "#498ba7"
116
+ },
117
+ "_c-sharp": {
118
+ "fontCharacter": "\\E00B",
119
+ "fontColor": "#519aba"
120
+ },
121
+ "_c_1_light": {
122
+ "fontCharacter": "\\E00C",
123
+ "fontColor": "#9068b0"
124
+ },
125
+ "_c_1": {
126
+ "fontCharacter": "\\E00C",
127
+ "fontColor": "#a074c4"
128
+ },
129
+ "_c_2_light": {
130
+ "fontCharacter": "\\E00C",
131
+ "fontColor": "#b7b73b"
132
+ },
133
+ "_c_2": {
134
+ "fontCharacter": "\\E00C",
135
+ "fontColor": "#cbcb41"
136
+ },
137
+ "_cake_light": {
138
+ "fontCharacter": "\\E00D",
139
+ "fontColor": "#b8383d"
140
+ },
141
+ "_cake": {
142
+ "fontCharacter": "\\E00D",
143
+ "fontColor": "#cc3e44"
144
+ },
145
+ "_cake_php_light": {
146
+ "fontCharacter": "\\E00E",
147
+ "fontColor": "#b8383d"
148
+ },
149
+ "_cake_php": {
150
+ "fontCharacter": "\\E00E",
151
+ "fontColor": "#cc3e44"
152
+ },
153
+ "_clock_light": {
154
+ "fontCharacter": "\\E012",
155
+ "fontColor": "#498ba7"
156
+ },
157
+ "_clock": {
158
+ "fontCharacter": "\\E012",
159
+ "fontColor": "#519aba"
160
+ },
161
+ "_clock_1_light": {
162
+ "fontCharacter": "\\E012",
163
+ "fontColor": "#627379"
164
+ },
165
+ "_clock_1": {
166
+ "fontCharacter": "\\E012",
167
+ "fontColor": "#6d8086"
168
+ },
169
+ "_clojure_light": {
170
+ "fontCharacter": "\\E013",
171
+ "fontColor": "#7fae42"
172
+ },
173
+ "_clojure": {
174
+ "fontCharacter": "\\E013",
175
+ "fontColor": "#8dc149"
176
+ },
177
+ "_clojure_1_light": {
178
+ "fontCharacter": "\\E013",
179
+ "fontColor": "#498ba7"
180
+ },
181
+ "_clojure_1": {
182
+ "fontCharacter": "\\E013",
183
+ "fontColor": "#519aba"
184
+ },
185
+ "_code-climate_light": {
186
+ "fontCharacter": "\\E014",
187
+ "fontColor": "#7fae42"
188
+ },
189
+ "_code-climate": {
190
+ "fontCharacter": "\\E014",
191
+ "fontColor": "#8dc149"
192
+ },
193
+ "_code-search_light": {
194
+ "fontCharacter": "\\E015",
195
+ "fontColor": "#9068b0"
196
+ },
197
+ "_code-search": {
198
+ "fontCharacter": "\\E015",
199
+ "fontColor": "#a074c4"
200
+ },
201
+ "_coffee_light": {
202
+ "fontCharacter": "\\E016",
203
+ "fontColor": "#b7b73b"
204
+ },
205
+ "_coffee": {
206
+ "fontCharacter": "\\E016",
207
+ "fontColor": "#cbcb41"
208
+ },
209
+ "_coldfusion_light": {
210
+ "fontCharacter": "\\E018",
211
+ "fontColor": "#498ba7"
212
+ },
213
+ "_coldfusion": {
214
+ "fontCharacter": "\\E018",
215
+ "fontColor": "#519aba"
216
+ },
217
+ "_config_light": {
218
+ "fontCharacter": "\\E019",
219
+ "fontColor": "#627379"
220
+ },
221
+ "_config": {
222
+ "fontCharacter": "\\E019",
223
+ "fontColor": "#6d8086"
224
+ },
225
+ "_cpp_light": {
226
+ "fontCharacter": "\\E01A",
227
+ "fontColor": "#498ba7"
228
+ },
229
+ "_cpp": {
230
+ "fontCharacter": "\\E01A",
231
+ "fontColor": "#519aba"
232
+ },
233
+ "_cpp_1_light": {
234
+ "fontCharacter": "\\E01A",
235
+ "fontColor": "#9068b0"
236
+ },
237
+ "_cpp_1": {
238
+ "fontCharacter": "\\E01A",
239
+ "fontColor": "#a074c4"
240
+ },
241
+ "_cpp_2_light": {
242
+ "fontCharacter": "\\E01A",
243
+ "fontColor": "#b7b73b"
244
+ },
245
+ "_cpp_2": {
246
+ "fontCharacter": "\\E01A",
247
+ "fontColor": "#cbcb41"
248
+ },
249
+ "_crystal_light": {
250
+ "fontCharacter": "\\E01B",
251
+ "fontColor": "#bfc2c1"
252
+ },
253
+ "_crystal": {
254
+ "fontCharacter": "\\E01B",
255
+ "fontColor": "#d4d7d6"
256
+ },
257
+ "_crystal_embedded_light": {
258
+ "fontCharacter": "\\E01C",
259
+ "fontColor": "#bfc2c1"
260
+ },
261
+ "_crystal_embedded": {
262
+ "fontCharacter": "\\E01C",
263
+ "fontColor": "#d4d7d6"
264
+ },
265
+ "_css_light": {
266
+ "fontCharacter": "\\E01D",
267
+ "fontColor": "#498ba7"
268
+ },
269
+ "_css": {
270
+ "fontCharacter": "\\E01D",
271
+ "fontColor": "#519aba"
272
+ },
273
+ "_csv_light": {
274
+ "fontCharacter": "\\E01E",
275
+ "fontColor": "#7fae42"
276
+ },
277
+ "_csv": {
278
+ "fontCharacter": "\\E01E",
279
+ "fontColor": "#8dc149"
280
+ },
281
+ "_cu_light": {
282
+ "fontCharacter": "\\E01F",
283
+ "fontColor": "#7fae42"
284
+ },
285
+ "_cu": {
286
+ "fontCharacter": "\\E01F",
287
+ "fontColor": "#8dc149"
288
+ },
289
+ "_cu_1_light": {
290
+ "fontCharacter": "\\E01F",
291
+ "fontColor": "#9068b0"
292
+ },
293
+ "_cu_1": {
294
+ "fontCharacter": "\\E01F",
295
+ "fontColor": "#a074c4"
296
+ },
297
+ "_d_light": {
298
+ "fontCharacter": "\\E020",
299
+ "fontColor": "#b8383d"
300
+ },
301
+ "_d": {
302
+ "fontCharacter": "\\E020",
303
+ "fontColor": "#cc3e44"
304
+ },
305
+ "_dart_light": {
306
+ "fontCharacter": "\\E021",
307
+ "fontColor": "#498ba7"
308
+ },
309
+ "_dart": {
310
+ "fontCharacter": "\\E021",
311
+ "fontColor": "#519aba"
312
+ },
313
+ "_db_light": {
314
+ "fontCharacter": "\\E022",
315
+ "fontColor": "#dd4b78"
316
+ },
317
+ "_db": {
318
+ "fontCharacter": "\\E022",
319
+ "fontColor": "#f55385"
320
+ },
321
+ "_db_1_light": {
322
+ "fontCharacter": "\\E022",
323
+ "fontColor": "#498ba7"
324
+ },
325
+ "_db_1": {
326
+ "fontCharacter": "\\E022",
327
+ "fontColor": "#519aba"
328
+ },
329
+ "_default_light": {
330
+ "fontCharacter": "\\E023",
331
+ "fontColor": "#bfc2c1"
332
+ },
333
+ "_default": {
334
+ "fontCharacter": "\\E023",
335
+ "fontColor": "#d4d7d6"
336
+ },
337
+ "_docker_light": {
338
+ "fontCharacter": "\\E025",
339
+ "fontColor": "#498ba7"
340
+ },
341
+ "_docker": {
342
+ "fontCharacter": "\\E025",
343
+ "fontColor": "#519aba"
344
+ },
345
+ "_docker_1_light": {
346
+ "fontCharacter": "\\E025",
347
+ "fontColor": "#455155"
348
+ },
349
+ "_docker_1": {
350
+ "fontCharacter": "\\E025",
351
+ "fontColor": "#4d5a5e"
352
+ },
353
+ "_docker_2_light": {
354
+ "fontCharacter": "\\E025",
355
+ "fontColor": "#7fae42"
356
+ },
357
+ "_docker_2": {
358
+ "fontCharacter": "\\E025",
359
+ "fontColor": "#8dc149"
360
+ },
361
+ "_docker_3_light": {
362
+ "fontCharacter": "\\E025",
363
+ "fontColor": "#dd4b78"
364
+ },
365
+ "_docker_3": {
366
+ "fontCharacter": "\\E025",
367
+ "fontColor": "#f55385"
368
+ },
369
+ "_ejs_light": {
370
+ "fontCharacter": "\\E027",
371
+ "fontColor": "#b7b73b"
372
+ },
373
+ "_ejs": {
374
+ "fontCharacter": "\\E027",
375
+ "fontColor": "#cbcb41"
376
+ },
377
+ "_elixir_light": {
378
+ "fontCharacter": "\\E028",
379
+ "fontColor": "#9068b0"
380
+ },
381
+ "_elixir": {
382
+ "fontCharacter": "\\E028",
383
+ "fontColor": "#a074c4"
384
+ },
385
+ "_elixir_script_light": {
386
+ "fontCharacter": "\\E029",
387
+ "fontColor": "#9068b0"
388
+ },
389
+ "_elixir_script": {
390
+ "fontCharacter": "\\E029",
391
+ "fontColor": "#a074c4"
392
+ },
393
+ "_elm_light": {
394
+ "fontCharacter": "\\E02A",
395
+ "fontColor": "#498ba7"
396
+ },
397
+ "_elm": {
398
+ "fontCharacter": "\\E02A",
399
+ "fontColor": "#519aba"
400
+ },
401
+ "_eslint_light": {
402
+ "fontCharacter": "\\E02C",
403
+ "fontColor": "#9068b0"
404
+ },
405
+ "_eslint": {
406
+ "fontCharacter": "\\E02C",
407
+ "fontColor": "#a074c4"
408
+ },
409
+ "_eslint_1_light": {
410
+ "fontCharacter": "\\E02C",
411
+ "fontColor": "#455155"
412
+ },
413
+ "_eslint_1": {
414
+ "fontCharacter": "\\E02C",
415
+ "fontColor": "#4d5a5e"
416
+ },
417
+ "_ethereum_light": {
418
+ "fontCharacter": "\\E02D",
419
+ "fontColor": "#498ba7"
420
+ },
421
+ "_ethereum": {
422
+ "fontCharacter": "\\E02D",
423
+ "fontColor": "#519aba"
424
+ },
425
+ "_f-sharp_light": {
426
+ "fontCharacter": "\\E02E",
427
+ "fontColor": "#498ba7"
428
+ },
429
+ "_f-sharp": {
430
+ "fontCharacter": "\\E02E",
431
+ "fontColor": "#519aba"
432
+ },
433
+ "_favicon_light": {
434
+ "fontCharacter": "\\E02F",
435
+ "fontColor": "#b7b73b"
436
+ },
437
+ "_favicon": {
438
+ "fontCharacter": "\\E02F",
439
+ "fontColor": "#cbcb41"
440
+ },
441
+ "_firebase_light": {
442
+ "fontCharacter": "\\E030",
443
+ "fontColor": "#cc6d2e"
444
+ },
445
+ "_firebase": {
446
+ "fontCharacter": "\\E030",
447
+ "fontColor": "#e37933"
448
+ },
449
+ "_firefox_light": {
450
+ "fontCharacter": "\\E031",
451
+ "fontColor": "#cc6d2e"
452
+ },
453
+ "_firefox": {
454
+ "fontCharacter": "\\E031",
455
+ "fontColor": "#e37933"
456
+ },
457
+ "_font_light": {
458
+ "fontCharacter": "\\E033",
459
+ "fontColor": "#b8383d"
460
+ },
461
+ "_font": {
462
+ "fontCharacter": "\\E033",
463
+ "fontColor": "#cc3e44"
464
+ },
465
+ "_git_light": {
466
+ "fontCharacter": "\\E034",
467
+ "fontColor": "#3b4b52"
468
+ },
469
+ "_git": {
470
+ "fontCharacter": "\\E034",
471
+ "fontColor": "#41535b"
472
+ },
473
+ "_github_light": {
474
+ "fontCharacter": "\\E037",
475
+ "fontColor": "#bfc2c1"
476
+ },
477
+ "_github": {
478
+ "fontCharacter": "\\E037",
479
+ "fontColor": "#d4d7d6"
480
+ },
481
+ "_gitlab_light": {
482
+ "fontCharacter": "\\E038",
483
+ "fontColor": "#cc6d2e"
484
+ },
485
+ "_gitlab": {
486
+ "fontCharacter": "\\E038",
487
+ "fontColor": "#e37933"
488
+ },
489
+ "_go_light": {
490
+ "fontCharacter": "\\E039",
491
+ "fontColor": "#498ba7"
492
+ },
493
+ "_go": {
494
+ "fontCharacter": "\\E039",
495
+ "fontColor": "#519aba"
496
+ },
497
+ "_go2_light": {
498
+ "fontCharacter": "\\E03A",
499
+ "fontColor": "#498ba7"
500
+ },
501
+ "_go2": {
502
+ "fontCharacter": "\\E03A",
503
+ "fontColor": "#519aba"
504
+ },
505
+ "_godot_light": {
506
+ "fontCharacter": "\\E03B",
507
+ "fontColor": "#498ba7"
508
+ },
509
+ "_godot": {
510
+ "fontCharacter": "\\E03B",
511
+ "fontColor": "#519aba"
512
+ },
513
+ "_godot_1_light": {
514
+ "fontCharacter": "\\E03B",
515
+ "fontColor": "#b8383d"
516
+ },
517
+ "_godot_1": {
518
+ "fontCharacter": "\\E03B",
519
+ "fontColor": "#cc3e44"
520
+ },
521
+ "_godot_2_light": {
522
+ "fontCharacter": "\\E03B",
523
+ "fontColor": "#b7b73b"
524
+ },
525
+ "_godot_2": {
526
+ "fontCharacter": "\\E03B",
527
+ "fontColor": "#cbcb41"
528
+ },
529
+ "_godot_3_light": {
530
+ "fontCharacter": "\\E03B",
531
+ "fontColor": "#9068b0"
532
+ },
533
+ "_godot_3": {
534
+ "fontCharacter": "\\E03B",
535
+ "fontColor": "#a074c4"
536
+ },
537
+ "_gradle_light": {
538
+ "fontCharacter": "\\E03C",
539
+ "fontColor": "#498ba7"
540
+ },
541
+ "_gradle": {
542
+ "fontCharacter": "\\E03C",
543
+ "fontColor": "#519aba"
544
+ },
545
+ "_grails_light": {
546
+ "fontCharacter": "\\E03D",
547
+ "fontColor": "#7fae42"
548
+ },
549
+ "_grails": {
550
+ "fontCharacter": "\\E03D",
551
+ "fontColor": "#8dc149"
552
+ },
553
+ "_graphql_light": {
554
+ "fontCharacter": "\\E03E",
555
+ "fontColor": "#dd4b78"
556
+ },
557
+ "_graphql": {
558
+ "fontCharacter": "\\E03E",
559
+ "fontColor": "#f55385"
560
+ },
561
+ "_grunt_light": {
562
+ "fontCharacter": "\\E03F",
563
+ "fontColor": "#cc6d2e"
564
+ },
565
+ "_grunt": {
566
+ "fontCharacter": "\\E03F",
567
+ "fontColor": "#e37933"
568
+ },
569
+ "_gulp_light": {
570
+ "fontCharacter": "\\E040",
571
+ "fontColor": "#b8383d"
572
+ },
573
+ "_gulp": {
574
+ "fontCharacter": "\\E040",
575
+ "fontColor": "#cc3e44"
576
+ },
577
+ "_hacklang_light": {
578
+ "fontCharacter": "\\E041",
579
+ "fontColor": "#cc6d2e"
580
+ },
581
+ "_hacklang": {
582
+ "fontCharacter": "\\E041",
583
+ "fontColor": "#e37933"
584
+ },
585
+ "_haml_light": {
586
+ "fontCharacter": "\\E042",
587
+ "fontColor": "#b8383d"
588
+ },
589
+ "_haml": {
590
+ "fontCharacter": "\\E042",
591
+ "fontColor": "#cc3e44"
592
+ },
593
+ "_happenings_light": {
594
+ "fontCharacter": "\\E043",
595
+ "fontColor": "#498ba7"
596
+ },
597
+ "_happenings": {
598
+ "fontCharacter": "\\E043",
599
+ "fontColor": "#519aba"
600
+ },
601
+ "_haskell_light": {
602
+ "fontCharacter": "\\E044",
603
+ "fontColor": "#9068b0"
604
+ },
605
+ "_haskell": {
606
+ "fontCharacter": "\\E044",
607
+ "fontColor": "#a074c4"
608
+ },
609
+ "_haxe_light": {
610
+ "fontCharacter": "\\E045",
611
+ "fontColor": "#cc6d2e"
612
+ },
613
+ "_haxe": {
614
+ "fontCharacter": "\\E045",
615
+ "fontColor": "#e37933"
616
+ },
617
+ "_haxe_1_light": {
618
+ "fontCharacter": "\\E045",
619
+ "fontColor": "#b7b73b"
620
+ },
621
+ "_haxe_1": {
622
+ "fontCharacter": "\\E045",
623
+ "fontColor": "#cbcb41"
624
+ },
625
+ "_haxe_2_light": {
626
+ "fontCharacter": "\\E045",
627
+ "fontColor": "#498ba7"
628
+ },
629
+ "_haxe_2": {
630
+ "fontCharacter": "\\E045",
631
+ "fontColor": "#519aba"
632
+ },
633
+ "_haxe_3_light": {
634
+ "fontCharacter": "\\E045",
635
+ "fontColor": "#9068b0"
636
+ },
637
+ "_haxe_3": {
638
+ "fontCharacter": "\\E045",
639
+ "fontColor": "#a074c4"
640
+ },
641
+ "_heroku_light": {
642
+ "fontCharacter": "\\E046",
643
+ "fontColor": "#9068b0"
644
+ },
645
+ "_heroku": {
646
+ "fontCharacter": "\\E046",
647
+ "fontColor": "#a074c4"
648
+ },
649
+ "_hex_light": {
650
+ "fontCharacter": "\\E047",
651
+ "fontColor": "#b8383d"
652
+ },
653
+ "_hex": {
654
+ "fontCharacter": "\\E047",
655
+ "fontColor": "#cc3e44"
656
+ },
657
+ "_html_light": {
658
+ "fontCharacter": "\\E048",
659
+ "fontColor": "#498ba7"
660
+ },
661
+ "_html": {
662
+ "fontCharacter": "\\E048",
663
+ "fontColor": "#519aba"
664
+ },
665
+ "_html_1_light": {
666
+ "fontCharacter": "\\E048",
667
+ "fontColor": "#7fae42"
668
+ },
669
+ "_html_1": {
670
+ "fontCharacter": "\\E048",
671
+ "fontColor": "#8dc149"
672
+ },
673
+ "_html_2_light": {
674
+ "fontCharacter": "\\E048",
675
+ "fontColor": "#b7b73b"
676
+ },
677
+ "_html_2": {
678
+ "fontCharacter": "\\E048",
679
+ "fontColor": "#cbcb41"
680
+ },
681
+ "_html_3_light": {
682
+ "fontCharacter": "\\E048",
683
+ "fontColor": "#cc6d2e"
684
+ },
685
+ "_html_3": {
686
+ "fontCharacter": "\\E048",
687
+ "fontColor": "#e37933"
688
+ },
689
+ "_html_erb_light": {
690
+ "fontCharacter": "\\E049",
691
+ "fontColor": "#b8383d"
692
+ },
693
+ "_html_erb": {
694
+ "fontCharacter": "\\E049",
695
+ "fontColor": "#cc3e44"
696
+ },
697
+ "_ignored_light": {
698
+ "fontCharacter": "\\E04A",
699
+ "fontColor": "#3b4b52"
700
+ },
701
+ "_ignored": {
702
+ "fontCharacter": "\\E04A",
703
+ "fontColor": "#41535b"
704
+ },
705
+ "_illustrator_light": {
706
+ "fontCharacter": "\\E04B",
707
+ "fontColor": "#b7b73b"
708
+ },
709
+ "_illustrator": {
710
+ "fontCharacter": "\\E04B",
711
+ "fontColor": "#cbcb41"
712
+ },
713
+ "_image_light": {
714
+ "fontCharacter": "\\E04C",
715
+ "fontColor": "#9068b0"
716
+ },
717
+ "_image": {
718
+ "fontCharacter": "\\E04C",
719
+ "fontColor": "#a074c4"
720
+ },
721
+ "_info_light": {
722
+ "fontCharacter": "\\E04D",
723
+ "fontColor": "#498ba7"
724
+ },
725
+ "_info": {
726
+ "fontCharacter": "\\E04D",
727
+ "fontColor": "#519aba"
728
+ },
729
+ "_ionic_light": {
730
+ "fontCharacter": "\\E04E",
731
+ "fontColor": "#498ba7"
732
+ },
733
+ "_ionic": {
734
+ "fontCharacter": "\\E04E",
735
+ "fontColor": "#519aba"
736
+ },
737
+ "_jade_light": {
738
+ "fontCharacter": "\\E04F",
739
+ "fontColor": "#b8383d"
740
+ },
741
+ "_jade": {
742
+ "fontCharacter": "\\E04F",
743
+ "fontColor": "#cc3e44"
744
+ },
745
+ "_java_light": {
746
+ "fontCharacter": "\\E050",
747
+ "fontColor": "#b8383d"
748
+ },
749
+ "_java": {
750
+ "fontCharacter": "\\E050",
751
+ "fontColor": "#cc3e44"
752
+ },
753
+ "_java_1_light": {
754
+ "fontCharacter": "\\E050",
755
+ "fontColor": "#498ba7"
756
+ },
757
+ "_java_1": {
758
+ "fontCharacter": "\\E050",
759
+ "fontColor": "#519aba"
760
+ },
761
+ "_javascript_light": {
762
+ "fontCharacter": "\\E051",
763
+ "fontColor": "#b7b73b"
764
+ },
765
+ "_javascript": {
766
+ "fontCharacter": "\\E051",
767
+ "fontColor": "#cbcb41"
768
+ },
769
+ "_javascript_1_light": {
770
+ "fontCharacter": "\\E051",
771
+ "fontColor": "#cc6d2e"
772
+ },
773
+ "_javascript_1": {
774
+ "fontCharacter": "\\E051",
775
+ "fontColor": "#e37933"
776
+ },
777
+ "_javascript_2_light": {
778
+ "fontCharacter": "\\E051",
779
+ "fontColor": "#498ba7"
780
+ },
781
+ "_javascript_2": {
782
+ "fontCharacter": "\\E051",
783
+ "fontColor": "#519aba"
784
+ },
785
+ "_jenkins_light": {
786
+ "fontCharacter": "\\E052",
787
+ "fontColor": "#b8383d"
788
+ },
789
+ "_jenkins": {
790
+ "fontCharacter": "\\E052",
791
+ "fontColor": "#cc3e44"
792
+ },
793
+ "_jinja_light": {
794
+ "fontCharacter": "\\E053",
795
+ "fontColor": "#b8383d"
796
+ },
797
+ "_jinja": {
798
+ "fontCharacter": "\\E053",
799
+ "fontColor": "#cc3e44"
800
+ },
801
+ "_json_light": {
802
+ "fontCharacter": "\\E055",
803
+ "fontColor": "#b7b73b"
804
+ },
805
+ "_json": {
806
+ "fontCharacter": "\\E055",
807
+ "fontColor": "#cbcb41"
808
+ },
809
+ "_json_1_light": {
810
+ "fontCharacter": "\\E055",
811
+ "fontColor": "#7fae42"
812
+ },
813
+ "_json_1": {
814
+ "fontCharacter": "\\E055",
815
+ "fontColor": "#8dc149"
816
+ },
817
+ "_julia_light": {
818
+ "fontCharacter": "\\E056",
819
+ "fontColor": "#9068b0"
820
+ },
821
+ "_julia": {
822
+ "fontCharacter": "\\E056",
823
+ "fontColor": "#a074c4"
824
+ },
825
+ "_karma_light": {
826
+ "fontCharacter": "\\E057",
827
+ "fontColor": "#7fae42"
828
+ },
829
+ "_karma": {
830
+ "fontCharacter": "\\E057",
831
+ "fontColor": "#8dc149"
832
+ },
833
+ "_kotlin_light": {
834
+ "fontCharacter": "\\E058",
835
+ "fontColor": "#cc6d2e"
836
+ },
837
+ "_kotlin": {
838
+ "fontCharacter": "\\E058",
839
+ "fontColor": "#e37933"
840
+ },
841
+ "_less_light": {
842
+ "fontCharacter": "\\E059",
843
+ "fontColor": "#498ba7"
844
+ },
845
+ "_less": {
846
+ "fontCharacter": "\\E059",
847
+ "fontColor": "#519aba"
848
+ },
849
+ "_license_light": {
850
+ "fontCharacter": "\\E05A",
851
+ "fontColor": "#b7b73b"
852
+ },
853
+ "_license": {
854
+ "fontCharacter": "\\E05A",
855
+ "fontColor": "#cbcb41"
856
+ },
857
+ "_license_1_light": {
858
+ "fontCharacter": "\\E05A",
859
+ "fontColor": "#cc6d2e"
860
+ },
861
+ "_license_1": {
862
+ "fontCharacter": "\\E05A",
863
+ "fontColor": "#e37933"
864
+ },
865
+ "_license_2_light": {
866
+ "fontCharacter": "\\E05A",
867
+ "fontColor": "#b8383d"
868
+ },
869
+ "_license_2": {
870
+ "fontCharacter": "\\E05A",
871
+ "fontColor": "#cc3e44"
872
+ },
873
+ "_liquid_light": {
874
+ "fontCharacter": "\\E05B",
875
+ "fontColor": "#7fae42"
876
+ },
877
+ "_liquid": {
878
+ "fontCharacter": "\\E05B",
879
+ "fontColor": "#8dc149"
880
+ },
881
+ "_livescript_light": {
882
+ "fontCharacter": "\\E05C",
883
+ "fontColor": "#498ba7"
884
+ },
885
+ "_livescript": {
886
+ "fontCharacter": "\\E05C",
887
+ "fontColor": "#519aba"
888
+ },
889
+ "_lock_light": {
890
+ "fontCharacter": "\\E05D",
891
+ "fontColor": "#7fae42"
892
+ },
893
+ "_lock": {
894
+ "fontCharacter": "\\E05D",
895
+ "fontColor": "#8dc149"
896
+ },
897
+ "_lua_light": {
898
+ "fontCharacter": "\\E05E",
899
+ "fontColor": "#498ba7"
900
+ },
901
+ "_lua": {
902
+ "fontCharacter": "\\E05E",
903
+ "fontColor": "#519aba"
904
+ },
905
+ "_makefile_light": {
906
+ "fontCharacter": "\\E05F",
907
+ "fontColor": "#cc6d2e"
908
+ },
909
+ "_makefile": {
910
+ "fontCharacter": "\\E05F",
911
+ "fontColor": "#e37933"
912
+ },
913
+ "_makefile_1_light": {
914
+ "fontCharacter": "\\E05F",
915
+ "fontColor": "#9068b0"
916
+ },
917
+ "_makefile_1": {
918
+ "fontCharacter": "\\E05F",
919
+ "fontColor": "#a074c4"
920
+ },
921
+ "_makefile_2_light": {
922
+ "fontCharacter": "\\E05F",
923
+ "fontColor": "#627379"
924
+ },
925
+ "_makefile_2": {
926
+ "fontCharacter": "\\E05F",
927
+ "fontColor": "#6d8086"
928
+ },
929
+ "_makefile_3_light": {
930
+ "fontCharacter": "\\E05F",
931
+ "fontColor": "#498ba7"
932
+ },
933
+ "_makefile_3": {
934
+ "fontCharacter": "\\E05F",
935
+ "fontColor": "#519aba"
936
+ },
937
+ "_markdown_light": {
938
+ "fontCharacter": "\\E060",
939
+ "fontColor": "#498ba7"
940
+ },
941
+ "_markdown": {
942
+ "fontCharacter": "\\E060",
943
+ "fontColor": "#519aba"
944
+ },
945
+ "_maven_light": {
946
+ "fontCharacter": "\\E061",
947
+ "fontColor": "#b8383d"
948
+ },
949
+ "_maven": {
950
+ "fontCharacter": "\\E061",
951
+ "fontColor": "#cc3e44"
952
+ },
953
+ "_mdo_light": {
954
+ "fontCharacter": "\\E062",
955
+ "fontColor": "#b8383d"
956
+ },
957
+ "_mdo": {
958
+ "fontCharacter": "\\E062",
959
+ "fontColor": "#cc3e44"
960
+ },
961
+ "_mustache_light": {
962
+ "fontCharacter": "\\E063",
963
+ "fontColor": "#cc6d2e"
964
+ },
965
+ "_mustache": {
966
+ "fontCharacter": "\\E063",
967
+ "fontColor": "#e37933"
968
+ },
969
+ "_nim_light": {
970
+ "fontCharacter": "\\E065",
971
+ "fontColor": "#b7b73b"
972
+ },
973
+ "_nim": {
974
+ "fontCharacter": "\\E065",
975
+ "fontColor": "#cbcb41"
976
+ },
977
+ "_notebook_light": {
978
+ "fontCharacter": "\\E066",
979
+ "fontColor": "#498ba7"
980
+ },
981
+ "_notebook": {
982
+ "fontCharacter": "\\E066",
983
+ "fontColor": "#519aba"
984
+ },
985
+ "_npm_light": {
986
+ "fontCharacter": "\\E067",
987
+ "fontColor": "#3b4b52"
988
+ },
989
+ "_npm": {
990
+ "fontCharacter": "\\E067",
991
+ "fontColor": "#41535b"
992
+ },
993
+ "_npm_1_light": {
994
+ "fontCharacter": "\\E067",
995
+ "fontColor": "#b8383d"
996
+ },
997
+ "_npm_1": {
998
+ "fontCharacter": "\\E067",
999
+ "fontColor": "#cc3e44"
1000
+ },
1001
+ "_npm_ignored_light": {
1002
+ "fontCharacter": "\\E068",
1003
+ "fontColor": "#3b4b52"
1004
+ },
1005
+ "_npm_ignored": {
1006
+ "fontCharacter": "\\E068",
1007
+ "fontColor": "#41535b"
1008
+ },
1009
+ "_nunjucks_light": {
1010
+ "fontCharacter": "\\E069",
1011
+ "fontColor": "#7fae42"
1012
+ },
1013
+ "_nunjucks": {
1014
+ "fontCharacter": "\\E069",
1015
+ "fontColor": "#8dc149"
1016
+ },
1017
+ "_ocaml_light": {
1018
+ "fontCharacter": "\\E06A",
1019
+ "fontColor": "#cc6d2e"
1020
+ },
1021
+ "_ocaml": {
1022
+ "fontCharacter": "\\E06A",
1023
+ "fontColor": "#e37933"
1024
+ },
1025
+ "_odata_light": {
1026
+ "fontCharacter": "\\E06B",
1027
+ "fontColor": "#cc6d2e"
1028
+ },
1029
+ "_odata": {
1030
+ "fontCharacter": "\\E06B",
1031
+ "fontColor": "#e37933"
1032
+ },
1033
+ "_pddl_light": {
1034
+ "fontCharacter": "\\E06C",
1035
+ "fontColor": "#9068b0"
1036
+ },
1037
+ "_pddl": {
1038
+ "fontCharacter": "\\E06C",
1039
+ "fontColor": "#a074c4"
1040
+ },
1041
+ "_pdf_light": {
1042
+ "fontCharacter": "\\E06D",
1043
+ "fontColor": "#b8383d"
1044
+ },
1045
+ "_pdf": {
1046
+ "fontCharacter": "\\E06D",
1047
+ "fontColor": "#cc3e44"
1048
+ },
1049
+ "_perl_light": {
1050
+ "fontCharacter": "\\E06E",
1051
+ "fontColor": "#498ba7"
1052
+ },
1053
+ "_perl": {
1054
+ "fontCharacter": "\\E06E",
1055
+ "fontColor": "#519aba"
1056
+ },
1057
+ "_photoshop_light": {
1058
+ "fontCharacter": "\\E06F",
1059
+ "fontColor": "#498ba7"
1060
+ },
1061
+ "_photoshop": {
1062
+ "fontCharacter": "\\E06F",
1063
+ "fontColor": "#519aba"
1064
+ },
1065
+ "_php_light": {
1066
+ "fontCharacter": "\\E070",
1067
+ "fontColor": "#9068b0"
1068
+ },
1069
+ "_php": {
1070
+ "fontCharacter": "\\E070",
1071
+ "fontColor": "#a074c4"
1072
+ },
1073
+ "_pipeline_light": {
1074
+ "fontCharacter": "\\E071",
1075
+ "fontColor": "#cc6d2e"
1076
+ },
1077
+ "_pipeline": {
1078
+ "fontCharacter": "\\E071",
1079
+ "fontColor": "#e37933"
1080
+ },
1081
+ "_plan_light": {
1082
+ "fontCharacter": "\\E072",
1083
+ "fontColor": "#7fae42"
1084
+ },
1085
+ "_plan": {
1086
+ "fontCharacter": "\\E072",
1087
+ "fontColor": "#8dc149"
1088
+ },
1089
+ "_platformio_light": {
1090
+ "fontCharacter": "\\E073",
1091
+ "fontColor": "#cc6d2e"
1092
+ },
1093
+ "_platformio": {
1094
+ "fontCharacter": "\\E073",
1095
+ "fontColor": "#e37933"
1096
+ },
1097
+ "_powershell_light": {
1098
+ "fontCharacter": "\\E074",
1099
+ "fontColor": "#498ba7"
1100
+ },
1101
+ "_powershell": {
1102
+ "fontCharacter": "\\E074",
1103
+ "fontColor": "#519aba"
1104
+ },
1105
+ "_prisma_light": {
1106
+ "fontCharacter": "\\E075",
1107
+ "fontColor": "#498ba7"
1108
+ },
1109
+ "_prisma": {
1110
+ "fontCharacter": "\\E075",
1111
+ "fontColor": "#519aba"
1112
+ },
1113
+ "_prolog_light": {
1114
+ "fontCharacter": "\\E077",
1115
+ "fontColor": "#cc6d2e"
1116
+ },
1117
+ "_prolog": {
1118
+ "fontCharacter": "\\E077",
1119
+ "fontColor": "#e37933"
1120
+ },
1121
+ "_pug_light": {
1122
+ "fontCharacter": "\\E078",
1123
+ "fontColor": "#b8383d"
1124
+ },
1125
+ "_pug": {
1126
+ "fontCharacter": "\\E078",
1127
+ "fontColor": "#cc3e44"
1128
+ },
1129
+ "_puppet_light": {
1130
+ "fontCharacter": "\\E079",
1131
+ "fontColor": "#b7b73b"
1132
+ },
1133
+ "_puppet": {
1134
+ "fontCharacter": "\\E079",
1135
+ "fontColor": "#cbcb41"
1136
+ },
1137
+ "_purescript_light": {
1138
+ "fontCharacter": "\\E07A",
1139
+ "fontColor": "#bfc2c1"
1140
+ },
1141
+ "_purescript": {
1142
+ "fontCharacter": "\\E07A",
1143
+ "fontColor": "#d4d7d6"
1144
+ },
1145
+ "_python_light": {
1146
+ "fontCharacter": "\\E07B",
1147
+ "fontColor": "#498ba7"
1148
+ },
1149
+ "_python": {
1150
+ "fontCharacter": "\\E07B",
1151
+ "fontColor": "#519aba"
1152
+ },
1153
+ "_react_light": {
1154
+ "fontCharacter": "\\E07D",
1155
+ "fontColor": "#498ba7"
1156
+ },
1157
+ "_react": {
1158
+ "fontCharacter": "\\E07D",
1159
+ "fontColor": "#519aba"
1160
+ },
1161
+ "_react_1_light": {
1162
+ "fontCharacter": "\\E07D",
1163
+ "fontColor": "#cc6d2e"
1164
+ },
1165
+ "_react_1": {
1166
+ "fontCharacter": "\\E07D",
1167
+ "fontColor": "#e37933"
1168
+ },
1169
+ "_reasonml_light": {
1170
+ "fontCharacter": "\\E07E",
1171
+ "fontColor": "#b8383d"
1172
+ },
1173
+ "_reasonml": {
1174
+ "fontCharacter": "\\E07E",
1175
+ "fontColor": "#cc3e44"
1176
+ },
1177
+ "_rescript_light": {
1178
+ "fontCharacter": "\\E07F",
1179
+ "fontColor": "#b8383d"
1180
+ },
1181
+ "_rescript": {
1182
+ "fontCharacter": "\\E07F",
1183
+ "fontColor": "#cc3e44"
1184
+ },
1185
+ "_rescript_1_light": {
1186
+ "fontCharacter": "\\E07F",
1187
+ "fontColor": "#dd4b78"
1188
+ },
1189
+ "_rescript_1": {
1190
+ "fontCharacter": "\\E07F",
1191
+ "fontColor": "#f55385"
1192
+ },
1193
+ "_rollup_light": {
1194
+ "fontCharacter": "\\E080",
1195
+ "fontColor": "#b8383d"
1196
+ },
1197
+ "_rollup": {
1198
+ "fontCharacter": "\\E080",
1199
+ "fontColor": "#cc3e44"
1200
+ },
1201
+ "_ruby_light": {
1202
+ "fontCharacter": "\\E081",
1203
+ "fontColor": "#b8383d"
1204
+ },
1205
+ "_ruby": {
1206
+ "fontCharacter": "\\E081",
1207
+ "fontColor": "#cc3e44"
1208
+ },
1209
+ "_rust_light": {
1210
+ "fontCharacter": "\\E082",
1211
+ "fontColor": "#627379"
1212
+ },
1213
+ "_rust": {
1214
+ "fontCharacter": "\\E082",
1215
+ "fontColor": "#6d8086"
1216
+ },
1217
+ "_salesforce_light": {
1218
+ "fontCharacter": "\\E083",
1219
+ "fontColor": "#498ba7"
1220
+ },
1221
+ "_salesforce": {
1222
+ "fontCharacter": "\\E083",
1223
+ "fontColor": "#519aba"
1224
+ },
1225
+ "_sass_light": {
1226
+ "fontCharacter": "\\E084",
1227
+ "fontColor": "#dd4b78"
1228
+ },
1229
+ "_sass": {
1230
+ "fontCharacter": "\\E084",
1231
+ "fontColor": "#f55385"
1232
+ },
1233
+ "_sbt_light": {
1234
+ "fontCharacter": "\\E085",
1235
+ "fontColor": "#498ba7"
1236
+ },
1237
+ "_sbt": {
1238
+ "fontCharacter": "\\E085",
1239
+ "fontColor": "#519aba"
1240
+ },
1241
+ "_scala_light": {
1242
+ "fontCharacter": "\\E086",
1243
+ "fontColor": "#b8383d"
1244
+ },
1245
+ "_scala": {
1246
+ "fontCharacter": "\\E086",
1247
+ "fontColor": "#cc3e44"
1248
+ },
1249
+ "_shell_light": {
1250
+ "fontCharacter": "\\E089",
1251
+ "fontColor": "#7fae42"
1252
+ },
1253
+ "_shell": {
1254
+ "fontCharacter": "\\E089",
1255
+ "fontColor": "#8dc149"
1256
+ },
1257
+ "_slim_light": {
1258
+ "fontCharacter": "\\E08A",
1259
+ "fontColor": "#cc6d2e"
1260
+ },
1261
+ "_slim": {
1262
+ "fontCharacter": "\\E08A",
1263
+ "fontColor": "#e37933"
1264
+ },
1265
+ "_smarty_light": {
1266
+ "fontCharacter": "\\E08B",
1267
+ "fontColor": "#b7b73b"
1268
+ },
1269
+ "_smarty": {
1270
+ "fontCharacter": "\\E08B",
1271
+ "fontColor": "#cbcb41"
1272
+ },
1273
+ "_spring_light": {
1274
+ "fontCharacter": "\\E08C",
1275
+ "fontColor": "#7fae42"
1276
+ },
1277
+ "_spring": {
1278
+ "fontCharacter": "\\E08C",
1279
+ "fontColor": "#8dc149"
1280
+ },
1281
+ "_stylelint_light": {
1282
+ "fontCharacter": "\\E08D",
1283
+ "fontColor": "#bfc2c1"
1284
+ },
1285
+ "_stylelint": {
1286
+ "fontCharacter": "\\E08D",
1287
+ "fontColor": "#d4d7d6"
1288
+ },
1289
+ "_stylelint_1_light": {
1290
+ "fontCharacter": "\\E08D",
1291
+ "fontColor": "#455155"
1292
+ },
1293
+ "_stylelint_1": {
1294
+ "fontCharacter": "\\E08D",
1295
+ "fontColor": "#4d5a5e"
1296
+ },
1297
+ "_stylus_light": {
1298
+ "fontCharacter": "\\E08E",
1299
+ "fontColor": "#7fae42"
1300
+ },
1301
+ "_stylus": {
1302
+ "fontCharacter": "\\E08E",
1303
+ "fontColor": "#8dc149"
1304
+ },
1305
+ "_sublime_light": {
1306
+ "fontCharacter": "\\E08F",
1307
+ "fontColor": "#cc6d2e"
1308
+ },
1309
+ "_sublime": {
1310
+ "fontCharacter": "\\E08F",
1311
+ "fontColor": "#e37933"
1312
+ },
1313
+ "_svelte_light": {
1314
+ "fontCharacter": "\\E090",
1315
+ "fontColor": "#b8383d"
1316
+ },
1317
+ "_svelte": {
1318
+ "fontCharacter": "\\E090",
1319
+ "fontColor": "#cc3e44"
1320
+ },
1321
+ "_svg_light": {
1322
+ "fontCharacter": "\\E091",
1323
+ "fontColor": "#9068b0"
1324
+ },
1325
+ "_svg": {
1326
+ "fontCharacter": "\\E091",
1327
+ "fontColor": "#a074c4"
1328
+ },
1329
+ "_svg_1_light": {
1330
+ "fontCharacter": "\\E091",
1331
+ "fontColor": "#498ba7"
1332
+ },
1333
+ "_svg_1": {
1334
+ "fontCharacter": "\\E091",
1335
+ "fontColor": "#519aba"
1336
+ },
1337
+ "_swift_light": {
1338
+ "fontCharacter": "\\E092",
1339
+ "fontColor": "#cc6d2e"
1340
+ },
1341
+ "_swift": {
1342
+ "fontCharacter": "\\E092",
1343
+ "fontColor": "#e37933"
1344
+ },
1345
+ "_terraform_light": {
1346
+ "fontCharacter": "\\E093",
1347
+ "fontColor": "#9068b0"
1348
+ },
1349
+ "_terraform": {
1350
+ "fontCharacter": "\\E093",
1351
+ "fontColor": "#a074c4"
1352
+ },
1353
+ "_tex_light": {
1354
+ "fontCharacter": "\\E094",
1355
+ "fontColor": "#498ba7"
1356
+ },
1357
+ "_tex": {
1358
+ "fontCharacter": "\\E094",
1359
+ "fontColor": "#519aba"
1360
+ },
1361
+ "_tex_1_light": {
1362
+ "fontCharacter": "\\E094",
1363
+ "fontColor": "#b7b73b"
1364
+ },
1365
+ "_tex_1": {
1366
+ "fontCharacter": "\\E094",
1367
+ "fontColor": "#cbcb41"
1368
+ },
1369
+ "_tex_2_light": {
1370
+ "fontCharacter": "\\E094",
1371
+ "fontColor": "#cc6d2e"
1372
+ },
1373
+ "_tex_2": {
1374
+ "fontCharacter": "\\E094",
1375
+ "fontColor": "#e37933"
1376
+ },
1377
+ "_tex_3_light": {
1378
+ "fontCharacter": "\\E094",
1379
+ "fontColor": "#bfc2c1"
1380
+ },
1381
+ "_tex_3": {
1382
+ "fontCharacter": "\\E094",
1383
+ "fontColor": "#d4d7d6"
1384
+ },
1385
+ "_todo": {
1386
+ "fontCharacter": "\\E096"
1387
+ },
1388
+ "_tsconfig_light": {
1389
+ "fontCharacter": "\\E097",
1390
+ "fontColor": "#498ba7"
1391
+ },
1392
+ "_tsconfig": {
1393
+ "fontCharacter": "\\E097",
1394
+ "fontColor": "#519aba"
1395
+ },
1396
+ "_twig_light": {
1397
+ "fontCharacter": "\\E098",
1398
+ "fontColor": "#7fae42"
1399
+ },
1400
+ "_twig": {
1401
+ "fontCharacter": "\\E098",
1402
+ "fontColor": "#8dc149"
1403
+ },
1404
+ "_typescript_light": {
1405
+ "fontCharacter": "\\E099",
1406
+ "fontColor": "#498ba7"
1407
+ },
1408
+ "_typescript": {
1409
+ "fontCharacter": "\\E099",
1410
+ "fontColor": "#519aba"
1411
+ },
1412
+ "_typescript_1_light": {
1413
+ "fontCharacter": "\\E099",
1414
+ "fontColor": "#cc6d2e"
1415
+ },
1416
+ "_typescript_1": {
1417
+ "fontCharacter": "\\E099",
1418
+ "fontColor": "#e37933"
1419
+ },
1420
+ "_vala_light": {
1421
+ "fontCharacter": "\\E09A",
1422
+ "fontColor": "#627379"
1423
+ },
1424
+ "_vala": {
1425
+ "fontCharacter": "\\E09A",
1426
+ "fontColor": "#6d8086"
1427
+ },
1428
+ "_video_light": {
1429
+ "fontCharacter": "\\E09B",
1430
+ "fontColor": "#dd4b78"
1431
+ },
1432
+ "_video": {
1433
+ "fontCharacter": "\\E09B",
1434
+ "fontColor": "#f55385"
1435
+ },
1436
+ "_vite_light": {
1437
+ "fontCharacter": "\\E09C",
1438
+ "fontColor": "#b7b73b"
1439
+ },
1440
+ "_vite": {
1441
+ "fontCharacter": "\\E09C",
1442
+ "fontColor": "#cbcb41"
1443
+ },
1444
+ "_vue_light": {
1445
+ "fontCharacter": "\\E09D",
1446
+ "fontColor": "#7fae42"
1447
+ },
1448
+ "_vue": {
1449
+ "fontCharacter": "\\E09D",
1450
+ "fontColor": "#8dc149"
1451
+ },
1452
+ "_wasm_light": {
1453
+ "fontCharacter": "\\E09E",
1454
+ "fontColor": "#9068b0"
1455
+ },
1456
+ "_wasm": {
1457
+ "fontCharacter": "\\E09E",
1458
+ "fontColor": "#a074c4"
1459
+ },
1460
+ "_wat_light": {
1461
+ "fontCharacter": "\\E09F",
1462
+ "fontColor": "#9068b0"
1463
+ },
1464
+ "_wat": {
1465
+ "fontCharacter": "\\E09F",
1466
+ "fontColor": "#a074c4"
1467
+ },
1468
+ "_webpack_light": {
1469
+ "fontCharacter": "\\E0A0",
1470
+ "fontColor": "#498ba7"
1471
+ },
1472
+ "_webpack": {
1473
+ "fontCharacter": "\\E0A0",
1474
+ "fontColor": "#519aba"
1475
+ },
1476
+ "_wgt_light": {
1477
+ "fontCharacter": "\\E0A1",
1478
+ "fontColor": "#498ba7"
1479
+ },
1480
+ "_wgt": {
1481
+ "fontCharacter": "\\E0A1",
1482
+ "fontColor": "#519aba"
1483
+ },
1484
+ "_windows_light": {
1485
+ "fontCharacter": "\\E0A2",
1486
+ "fontColor": "#498ba7"
1487
+ },
1488
+ "_windows": {
1489
+ "fontCharacter": "\\E0A2",
1490
+ "fontColor": "#519aba"
1491
+ },
1492
+ "_word_light": {
1493
+ "fontCharacter": "\\E0A3",
1494
+ "fontColor": "#498ba7"
1495
+ },
1496
+ "_word": {
1497
+ "fontCharacter": "\\E0A3",
1498
+ "fontColor": "#519aba"
1499
+ },
1500
+ "_xls_light": {
1501
+ "fontCharacter": "\\E0A4",
1502
+ "fontColor": "#7fae42"
1503
+ },
1504
+ "_xls": {
1505
+ "fontCharacter": "\\E0A4",
1506
+ "fontColor": "#8dc149"
1507
+ },
1508
+ "_xml_light": {
1509
+ "fontCharacter": "\\E0A5",
1510
+ "fontColor": "#cc6d2e"
1511
+ },
1512
+ "_xml": {
1513
+ "fontCharacter": "\\E0A5",
1514
+ "fontColor": "#e37933"
1515
+ },
1516
+ "_yarn_light": {
1517
+ "fontCharacter": "\\E0A6",
1518
+ "fontColor": "#498ba7"
1519
+ },
1520
+ "_yarn": {
1521
+ "fontCharacter": "\\E0A6",
1522
+ "fontColor": "#519aba"
1523
+ },
1524
+ "_yml_light": {
1525
+ "fontCharacter": "\\E0A7",
1526
+ "fontColor": "#9068b0"
1527
+ },
1528
+ "_yml": {
1529
+ "fontCharacter": "\\E0A7",
1530
+ "fontColor": "#a074c4"
1531
+ },
1532
+ "_zig_light": {
1533
+ "fontCharacter": "\\E0A8",
1534
+ "fontColor": "#cc6d2e"
1535
+ },
1536
+ "_zig": {
1537
+ "fontCharacter": "\\E0A8",
1538
+ "fontColor": "#e37933"
1539
+ },
1540
+ "_zip_light": {
1541
+ "fontCharacter": "\\E0A9",
1542
+ "fontColor": "#b8383d"
1543
+ },
1544
+ "_zip": {
1545
+ "fontCharacter": "\\E0A9",
1546
+ "fontColor": "#cc3e44"
1547
+ },
1548
+ "_zip_1_light": {
1549
+ "fontCharacter": "\\E0A9",
1550
+ "fontColor": "#627379"
1551
+ },
1552
+ "_zip_1": {
1553
+ "fontCharacter": "\\E0A9",
1554
+ "fontColor": "#6d8086"
1555
+ },
1556
+ "elenFile": {
1557
+ "iconPath": "./icon.svg"
1558
+ }
1559
+ },
1560
+ "file": "_default",
1561
+ "fileExtensions": {
1562
+ "elen": "elenFile",
1563
+ "bsl": "_bsl",
1564
+ "mdo": "_mdo",
1565
+ "cls": "_salesforce",
1566
+ "apex": "_salesforce",
1567
+ "asm": "_asm",
1568
+ "s": "_asm",
1569
+ "bicep": "_bicep",
1570
+ "bzl": "_bazel",
1571
+ "bazel": "_bazel",
1572
+ "build": "_bazel",
1573
+ "workspace": "_bazel",
1574
+ "bazelignore": "_bazel",
1575
+ "bazelversion": "_bazel",
1576
+ "h": "_c_1",
1577
+ "aspx": "_html",
1578
+ "ascx": "_html_1",
1579
+ "asax": "_html_2",
1580
+ "master": "_html_2",
1581
+ "hh": "_cpp_1",
1582
+ "hpp": "_cpp_1",
1583
+ "hxx": "_cpp_1",
1584
+ "h++": "_cpp_1",
1585
+ "edn": "_clojure_1",
1586
+ "cfc": "_coldfusion",
1587
+ "cfm": "_coldfusion",
1588
+ "litcoffee": "_coffee",
1589
+ "config": "_config",
1590
+ "cr": "_crystal",
1591
+ "ecr": "_crystal_embedded",
1592
+ "slang": "_crystal_embedded",
1593
+ "cson": "_json",
1594
+ "css.map": "_css",
1595
+ "sss": "_css",
1596
+ "csv": "_csv",
1597
+ "xls": "_xls",
1598
+ "xlsx": "_xls",
1599
+ "cuh": "_cu_1",
1600
+ "hu": "_cu_1",
1601
+ "cake": "_cake",
1602
+ "ctp": "_cake_php",
1603
+ "d": "_d",
1604
+ "doc": "_word",
1605
+ "docx": "_word",
1606
+ "ejs": "_ejs",
1607
+ "ex": "_elixir",
1608
+ "exs": "_elixir_script",
1609
+ "elm": "_elm",
1610
+ "ico": "_favicon",
1611
+ "gitconfig": "_git",
1612
+ "gitkeep": "_git",
1613
+ "gitattributes": "_git",
1614
+ "gitmodules": "_git",
1615
+ "slide": "_go",
1616
+ "article": "_go",
1617
+ "gd": "_godot",
1618
+ "godot": "_godot_1",
1619
+ "tres": "_godot_2",
1620
+ "tscn": "_godot_3",
1621
+ "gradle": "_gradle",
1622
+ "gsp": "_grails",
1623
+ "gql": "_graphql",
1624
+ "graphql": "_graphql",
1625
+ "graphqls": "_graphql",
1626
+ "hack": "_hacklang",
1627
+ "haml": "_haml",
1628
+ "hs": "_haskell",
1629
+ "lhs": "_haskell",
1630
+ "hx": "_haxe",
1631
+ "hxs": "_haxe_1",
1632
+ "hxp": "_haxe_2",
1633
+ "hxml": "_haxe_3",
1634
+ "jade": "_jade",
1635
+ "class": "_java_1",
1636
+ "classpath": "_java",
1637
+ "js.map": "_javascript",
1638
+ "cjs.map": "_javascript",
1639
+ "mjs.map": "_javascript",
1640
+ "spec.js": "_javascript_1",
1641
+ "spec.cjs": "_javascript_1",
1642
+ "spec.mjs": "_javascript_1",
1643
+ "test.js": "_javascript_1",
1644
+ "test.cjs": "_javascript_1",
1645
+ "test.mjs": "_javascript_1",
1646
+ "es": "_javascript",
1647
+ "es5": "_javascript",
1648
+ "es7": "_javascript",
1649
+ "jinja": "_jinja",
1650
+ "jinja2": "_jinja",
1651
+ "kt": "_kotlin",
1652
+ "kts": "_kotlin",
1653
+ "liquid": "_liquid",
1654
+ "ls": "_livescript",
1655
+ "argdown": "_argdown",
1656
+ "ad": "_argdown",
1657
+ "mustache": "_mustache",
1658
+ "stache": "_mustache",
1659
+ "nim": "_nim",
1660
+ "nims": "_nim",
1661
+ "github-issues": "_github",
1662
+ "ipynb": "_notebook",
1663
+ "njk": "_nunjucks",
1664
+ "nunjucks": "_nunjucks",
1665
+ "nunjs": "_nunjucks",
1666
+ "nunj": "_nunjucks",
1667
+ "njs": "_nunjucks",
1668
+ "nj": "_nunjucks",
1669
+ "npm-debug.log": "_npm",
1670
+ "npmignore": "_npm_1",
1671
+ "npmrc": "_npm_1",
1672
+ "ml": "_ocaml",
1673
+ "mli": "_ocaml",
1674
+ "cmx": "_ocaml",
1675
+ "cmxa": "_ocaml",
1676
+ "odata": "_odata",
1677
+ "php.inc": "_php",
1678
+ "pipeline": "_pipeline",
1679
+ "pddl": "_pddl",
1680
+ "plan": "_plan",
1681
+ "happenings": "_happenings",
1682
+ "prisma": "_prisma",
1683
+ "pp": "_puppet",
1684
+ "epp": "_puppet",
1685
+ "purs": "_purescript",
1686
+ "spec.jsx": "_react_1",
1687
+ "test.jsx": "_react_1",
1688
+ "cjsx": "_react",
1689
+ "spec.tsx": "_react_1",
1690
+ "test.tsx": "_react_1",
1691
+ "re": "_reasonml",
1692
+ "res": "_rescript",
1693
+ "resi": "_rescript_1",
1694
+ "r": "_R",
1695
+ "rmd": "_R",
1696
+ "erb": "_html_erb",
1697
+ "erb.html": "_html_erb",
1698
+ "html.erb": "_html_erb",
1699
+ "sass": "_sass",
1700
+ "springbeans": "_spring",
1701
+ "slim": "_slim",
1702
+ "smarty.tpl": "_smarty",
1703
+ "tpl": "_smarty",
1704
+ "sbt": "_sbt",
1705
+ "scala": "_scala",
1706
+ "sol": "_ethereum",
1707
+ "styl": "_stylus",
1708
+ "svelte": "_svelte",
1709
+ "soql": "_db_1",
1710
+ "tf": "_terraform",
1711
+ "tf.json": "_terraform",
1712
+ "tfvars": "_terraform",
1713
+ "tfvars.json": "_terraform",
1714
+ "dtx": "_tex_2",
1715
+ "ins": "_tex_3",
1716
+ "toml": "_config",
1717
+ "twig": "_twig",
1718
+ "spec.ts": "_typescript_1",
1719
+ "test.ts": "_typescript_1",
1720
+ "vala": "_vala",
1721
+ "vapi": "_vala",
1722
+ "component": "_html_3",
1723
+ "vue": "_vue",
1724
+ "wasm": "_wasm",
1725
+ "wat": "_wat",
1726
+ "pro": "_prolog",
1727
+ "zig": "_zig",
1728
+ "jar": "_zip",
1729
+ "zip": "_zip_1",
1730
+ "wgt": "_wgt",
1731
+ "ai": "_illustrator",
1732
+ "psd": "_photoshop",
1733
+ "pdf": "_pdf",
1734
+ "eot": "_font",
1735
+ "ttf": "_font",
1736
+ "woff": "_font",
1737
+ "woff2": "_font",
1738
+ "otf": "_font",
1739
+ "avif": "_image",
1740
+ "gif": "_image",
1741
+ "jpg": "_image",
1742
+ "jpeg": "_image",
1743
+ "png": "_image",
1744
+ "pxm": "_image",
1745
+ "svg": "_svg",
1746
+ "svgx": "_image",
1747
+ "tiff": "_image",
1748
+ "webp": "_image",
1749
+ "sublime-project": "_sublime",
1750
+ "sublime-workspace": "_sublime",
1751
+ "mov": "_video",
1752
+ "ogv": "_video",
1753
+ "webm": "_video",
1754
+ "avi": "_video",
1755
+ "mpg": "_video",
1756
+ "mp4": "_video",
1757
+ "mp3": "_audio",
1758
+ "ogg": "_audio",
1759
+ "wav": "_audio",
1760
+ "flac": "_audio",
1761
+ "3ds": "_svg_1",
1762
+ "3dm": "_svg_1",
1763
+ "stl": "_svg_1",
1764
+ "obj": "_svg_1",
1765
+ "dae": "_svg_1",
1766
+ "babelrc": "_babel",
1767
+ "babelrc.js": "_babel",
1768
+ "babelrc.cjs": "_babel",
1769
+ "bazelrc": "_bazel_1",
1770
+ "bowerrc": "_bower",
1771
+ "dockerignore": "_docker_1",
1772
+ "codeclimate.yml": "_code-climate",
1773
+ "eslintrc": "_eslint",
1774
+ "eslintrc.js": "_eslint",
1775
+ "eslintrc.cjs": "_eslint",
1776
+ "eslintrc.yaml": "_eslint",
1777
+ "eslintrc.yml": "_eslint",
1778
+ "eslintrc.json": "_eslint",
1779
+ "eslintignore": "_eslint_1",
1780
+ "firebaserc": "_firebase",
1781
+ "gitlab-ci.yml": "_gitlab",
1782
+ "jshintrc": "_javascript_2",
1783
+ "jscsrc": "_javascript_2",
1784
+ "stylelintrc": "_stylelint",
1785
+ "stylelintrc.json": "_stylelint",
1786
+ "stylelintrc.yaml": "_stylelint",
1787
+ "stylelintrc.yml": "_stylelint",
1788
+ "stylelintrc.js": "_stylelint",
1789
+ "stylelintignore": "_stylelint_1",
1790
+ "direnv": "_config",
1791
+ "static": "_config",
1792
+ "slugignore": "_config",
1793
+ "tmp": "_clock_1",
1794
+ "htaccess": "_config",
1795
+ "key": "_lock",
1796
+ "cert": "_lock",
1797
+ "cer": "_lock",
1798
+ "crt": "_lock",
1799
+ "pem": "_lock",
1800
+ "ds_store": "_ignored"
1801
+ },
1802
+ "fileNames": {
1803
+ "app.elen": "elenFile",
1804
+ "mix": "_hex",
1805
+ "karma.conf.js": "_karma",
1806
+ "karma.conf.cjs": "_karma",
1807
+ "karma.conf.mjs": "_karma",
1808
+ "karma.conf.coffee": "_karma",
1809
+ "readme.md": "_info",
1810
+ "readme.txt": "_info",
1811
+ "readme": "_info",
1812
+ "changelog.md": "_clock",
1813
+ "changelog.txt": "_clock",
1814
+ "changelog": "_clock",
1815
+ "changes.md": "_clock",
1816
+ "changes.txt": "_clock",
1817
+ "changes": "_clock",
1818
+ "version.md": "_clock",
1819
+ "version.txt": "_clock",
1820
+ "version": "_clock",
1821
+ "mvnw": "_maven",
1822
+ "pom.xml": "_maven",
1823
+ "tsconfig.json": "_tsconfig",
1824
+ "vite.config.js": "_vite",
1825
+ "vite.config.ts": "_vite",
1826
+ "vite.config.mjs": "_vite",
1827
+ "vite.config.mts": "_vite",
1828
+ "vite.config.cjs": "_vite",
1829
+ "vite.config.cts": "_vite",
1830
+ "swagger.json": "_json_1",
1831
+ "swagger.yml": "_json_1",
1832
+ "swagger.yaml": "_json_1",
1833
+ "mime.types": "_config",
1834
+ "jenkinsfile": "_jenkins",
1835
+ "babel.config.js": "_babel",
1836
+ "babel.config.json": "_babel",
1837
+ "babel.config.cjs": "_babel",
1838
+ "build": "_bazel",
1839
+ "build.bazel": "_bazel",
1840
+ "workspace": "_bazel",
1841
+ "workspace.bazel": "_bazel",
1842
+ "bower.json": "_bower",
1843
+ "docker-healthcheck": "_docker_2",
1844
+ "eslint.config.js": "_eslint",
1845
+ "firebase.json": "_firebase",
1846
+ "geckodriver": "_firefox",
1847
+ "gruntfile.js": "_grunt",
1848
+ "gruntfile.babel.js": "_grunt",
1849
+ "gruntfile.coffee": "_grunt",
1850
+ "gulpfile": "_gulp",
1851
+ "gulpfile.js": "_gulp",
1852
+ "ionic.config.json": "_ionic",
1853
+ "ionic.project": "_ionic",
1854
+ "platformio.ini": "_platformio",
1855
+ "rollup.config.js": "_rollup",
1856
+ "sass-lint.yml": "_sass",
1857
+ "stylelint.config.js": "_stylelint",
1858
+ "stylelint.config.cjs": "_stylelint",
1859
+ "stylelint.config.mjs": "_stylelint",
1860
+ "yarn.clean": "_yarn",
1861
+ "yarn.lock": "_yarn",
1862
+ "webpack.config.js": "_webpack",
1863
+ "webpack.config.cjs": "_webpack",
1864
+ "webpack.config.mjs": "_webpack",
1865
+ "webpack.config.ts": "_webpack",
1866
+ "webpack.config.build.js": "_webpack",
1867
+ "webpack.config.build.cjs": "_webpack",
1868
+ "webpack.config.build.mjs": "_webpack",
1869
+ "webpack.config.build.ts": "_webpack",
1870
+ "webpack.common.js": "_webpack",
1871
+ "webpack.common.cjs": "_webpack",
1872
+ "webpack.common.mjs": "_webpack",
1873
+ "webpack.common.ts": "_webpack",
1874
+ "webpack.dev.js": "_webpack",
1875
+ "webpack.dev.cjs": "_webpack",
1876
+ "webpack.dev.mjs": "_webpack",
1877
+ "webpack.dev.ts": "_webpack",
1878
+ "webpack.prod.js": "_webpack",
1879
+ "webpack.prod.cjs": "_webpack",
1880
+ "webpack.prod.mjs": "_webpack",
1881
+ "webpack.prod.ts": "_webpack",
1882
+ "license": "_license",
1883
+ "licence": "_license",
1884
+ "license.txt": "_license",
1885
+ "licence.txt": "_license",
1886
+ "license.md": "_license",
1887
+ "licence.md": "_license",
1888
+ "copying": "_license",
1889
+ "copying.txt": "_license",
1890
+ "copying.md": "_license",
1891
+ "compiling": "_license_1",
1892
+ "compiling.txt": "_license_1",
1893
+ "compiling.md": "_license_1",
1894
+ "contributing": "_license_2",
1895
+ "contributing.txt": "_license_2",
1896
+ "contributing.md": "_license_2",
1897
+ "qmakefile": "_makefile_1",
1898
+ "omakefile": "_makefile_2",
1899
+ "cmakelists.txt": "_makefile_3",
1900
+ "procfile": "_heroku",
1901
+ "todo": "_todo",
1902
+ "todo.txt": "_todo",
1903
+ "todo.md": "_todo",
1904
+ "npm-debug.log": "_npm_ignored"
1905
+ },
1906
+ "languageIds": {
1907
+ "elen": "elenFile",
1908
+ "bat": "_windows",
1909
+ "clojure": "_clojure",
1910
+ "coffeescript": "_coffee",
1911
+ "jsonc": "_json",
1912
+ "json": "_json",
1913
+ "c": "_c",
1914
+ "cpp": "_cpp",
1915
+ "cuda-cpp": "_cu",
1916
+ "csharp": "_c-sharp",
1917
+ "css": "_css",
1918
+ "dart": "_dart",
1919
+ "dockerfile": "_docker",
1920
+ "dotenv": "_config",
1921
+ "ignore": "_git",
1922
+ "fsharp": "_f-sharp",
1923
+ "git-commit": "_git",
1924
+ "go": "_go2",
1925
+ "groovy": "_grails",
1926
+ "handlebars": "_mustache",
1927
+ "html": "_html_3",
1928
+ "properties": "_config",
1929
+ "java": "_java",
1930
+ "javascriptreact": "_react",
1931
+ "javascript": "_javascript",
1932
+ "julia": "_julia",
1933
+ "tex": "_tex_1",
1934
+ "latex": "_tex",
1935
+ "less": "_less",
1936
+ "lua": "_lua",
1937
+ "makefile": "_makefile",
1938
+ "markdown": "_markdown",
1939
+ "objective-c": "_c_2",
1940
+ "objective-cpp": "_cpp_2",
1941
+ "perl": "_perl",
1942
+ "php": "_php",
1943
+ "powershell": "_powershell",
1944
+ "jade": "_pug",
1945
+ "python": "_python",
1946
+ "r": "_R",
1947
+ "razor": "_html",
1948
+ "ruby": "_ruby",
1949
+ "rust": "_rust",
1950
+ "scss": "_sass",
1951
+ "search-result": "_code-search",
1952
+ "shellscript": "_shell",
1953
+ "sql": "_db",
1954
+ "swift": "_swift",
1955
+ "typescript": "_typescript",
1956
+ "typescriptreact": "_react",
1957
+ "xml": "_xml",
1958
+ "dockercompose": "_docker_3",
1959
+ "yaml": "_yml",
1960
+ "argdown": "_argdown",
1961
+ "bicep": "_bicep",
1962
+ "elixir": "_elixir",
1963
+ "elm": "_elm",
1964
+ "erb": "_html_erb",
1965
+ "github-issues": "_github",
1966
+ "gradle": "_gradle",
1967
+ "godot": "_godot",
1968
+ "haml": "_haml",
1969
+ "haskell": "_haskell",
1970
+ "haxe": "_haxe",
1971
+ "jinja": "_jinja",
1972
+ "kotlin": "_kotlin",
1973
+ "mustache": "_mustache",
1974
+ "nunjucks": "_nunjucks",
1975
+ "ocaml": "_ocaml",
1976
+ "rescript": "_rescript",
1977
+ "sass": "_sass",
1978
+ "stylus": "_stylus",
1979
+ "terraform": "_terraform",
1980
+ "todo": "_todo",
1981
+ "vala": "_vala",
1982
+ "vue": "_vue",
1983
+ "jsonl": "_json",
1984
+ "postcss": "_css",
1985
+ "django-html": "_html_3",
1986
+ "blade": "_php",
1987
+ "prompt": "_markdown",
1988
+ "instructions": "_markdown",
1989
+ "chatagent": "_markdown",
1990
+ "skill": "_markdown"
1991
+ },
1992
+ "light": {
1993
+ "file": "_default_light",
1994
+ "fileExtensions": {
1995
+ "elen": "elenFile",
1996
+ "bsl": "_bsl_light",
1997
+ "mdo": "_mdo_light",
1998
+ "cls": "_salesforce_light",
1999
+ "apex": "_salesforce_light",
2000
+ "asm": "_asm_light",
2001
+ "s": "_asm_light",
2002
+ "bicep": "_bicep_light",
2003
+ "bzl": "_bazel_light",
2004
+ "bazel": "_bazel_light",
2005
+ "build": "_bazel_light",
2006
+ "workspace": "_bazel_light",
2007
+ "bazelignore": "_bazel_light",
2008
+ "bazelversion": "_bazel_light",
2009
+ "h": "_c_1_light",
2010
+ "aspx": "_html_light",
2011
+ "ascx": "_html_1_light",
2012
+ "asax": "_html_2_light",
2013
+ "master": "_html_2_light",
2014
+ "hh": "_cpp_1_light",
2015
+ "hpp": "_cpp_1_light",
2016
+ "hxx": "_cpp_1_light",
2017
+ "h++": "_cpp_1_light",
2018
+ "edn": "_clojure_1_light",
2019
+ "cfc": "_coldfusion_light",
2020
+ "cfm": "_coldfusion_light",
2021
+ "litcoffee": "_coffee_light",
2022
+ "config": "_config_light",
2023
+ "cr": "_crystal_light",
2024
+ "ecr": "_crystal_embedded_light",
2025
+ "slang": "_crystal_embedded_light",
2026
+ "cson": "_json_light",
2027
+ "css.map": "_css_light",
2028
+ "sss": "_css_light",
2029
+ "csv": "_csv_light",
2030
+ "xls": "_xls_light",
2031
+ "xlsx": "_xls_light",
2032
+ "cuh": "_cu_1_light",
2033
+ "hu": "_cu_1_light",
2034
+ "cake": "_cake_light",
2035
+ "ctp": "_cake_php_light",
2036
+ "d": "_d_light",
2037
+ "doc": "_word_light",
2038
+ "docx": "_word_light",
2039
+ "ejs": "_ejs_light",
2040
+ "ex": "_elixir_light",
2041
+ "exs": "_elixir_script_light",
2042
+ "elm": "_elm_light",
2043
+ "ico": "_favicon_light",
2044
+ "gitconfig": "_git_light",
2045
+ "gitkeep": "_git_light",
2046
+ "gitattributes": "_git_light",
2047
+ "gitmodules": "_git_light",
2048
+ "slide": "_go_light",
2049
+ "article": "_go_light",
2050
+ "gd": "_godot_light",
2051
+ "godot": "_godot_1_light",
2052
+ "tres": "_godot_2_light",
2053
+ "tscn": "_godot_3_light",
2054
+ "gradle": "_gradle_light",
2055
+ "gsp": "_grails_light",
2056
+ "gql": "_graphql_light",
2057
+ "graphql": "_graphql_light",
2058
+ "graphqls": "_graphql_light",
2059
+ "hack": "_hacklang_light",
2060
+ "haml": "_haml_light",
2061
+ "hs": "_haskell_light",
2062
+ "lhs": "_haskell_light",
2063
+ "hx": "_haxe_light",
2064
+ "hxs": "_haxe_1_light",
2065
+ "hxp": "_haxe_2_light",
2066
+ "hxml": "_haxe_3_light",
2067
+ "jade": "_jade_light",
2068
+ "class": "_java_1_light",
2069
+ "classpath": "_java_light",
2070
+ "js.map": "_javascript_light",
2071
+ "cjs.map": "_javascript_light",
2072
+ "mjs.map": "_javascript_light",
2073
+ "spec.js": "_javascript_1_light",
2074
+ "spec.cjs": "_javascript_1_light",
2075
+ "spec.mjs": "_javascript_1_light",
2076
+ "test.js": "_javascript_1_light",
2077
+ "test.cjs": "_javascript_1_light",
2078
+ "test.mjs": "_javascript_1_light",
2079
+ "es": "_javascript_light",
2080
+ "es5": "_javascript_light",
2081
+ "es7": "_javascript_light",
2082
+ "jinja": "_jinja_light",
2083
+ "jinja2": "_jinja_light",
2084
+ "kt": "_kotlin_light",
2085
+ "kts": "_kotlin_light",
2086
+ "liquid": "_liquid_light",
2087
+ "ls": "_livescript_light",
2088
+ "argdown": "_argdown_light",
2089
+ "ad": "_argdown_light",
2090
+ "mustache": "_mustache_light",
2091
+ "stache": "_mustache_light",
2092
+ "nim": "_nim_light",
2093
+ "nims": "_nim_light",
2094
+ "github-issues": "_github_light",
2095
+ "ipynb": "_notebook_light",
2096
+ "njk": "_nunjucks_light",
2097
+ "nunjucks": "_nunjucks_light",
2098
+ "nunjs": "_nunjucks_light",
2099
+ "nunj": "_nunjucks_light",
2100
+ "njs": "_nunjucks_light",
2101
+ "nj": "_nunjucks_light",
2102
+ "npm-debug.log": "_npm_light",
2103
+ "npmignore": "_npm_1_light",
2104
+ "npmrc": "_npm_1_light",
2105
+ "ml": "_ocaml_light",
2106
+ "mli": "_ocaml_light",
2107
+ "cmx": "_ocaml_light",
2108
+ "cmxa": "_ocaml_light",
2109
+ "odata": "_odata_light",
2110
+ "php.inc": "_php_light",
2111
+ "pipeline": "_pipeline_light",
2112
+ "pddl": "_pddl_light",
2113
+ "plan": "_plan_light",
2114
+ "happenings": "_happenings_light",
2115
+ "prisma": "_prisma_light",
2116
+ "pp": "_puppet_light",
2117
+ "epp": "_puppet_light",
2118
+ "purs": "_purescript_light",
2119
+ "spec.jsx": "_react_1_light",
2120
+ "test.jsx": "_react_1_light",
2121
+ "cjsx": "_react_light",
2122
+ "spec.tsx": "_react_1_light",
2123
+ "test.tsx": "_react_1_light",
2124
+ "re": "_reasonml_light",
2125
+ "res": "_rescript_light",
2126
+ "resi": "_rescript_1_light",
2127
+ "r": "_R_light",
2128
+ "rmd": "_R_light",
2129
+ "erb": "_html_erb_light",
2130
+ "erb.html": "_html_erb_light",
2131
+ "html.erb": "_html_erb_light",
2132
+ "sass": "_sass_light",
2133
+ "springbeans": "_spring_light",
2134
+ "slim": "_slim_light",
2135
+ "smarty.tpl": "_smarty_light",
2136
+ "tpl": "_smarty_light",
2137
+ "sbt": "_sbt_light",
2138
+ "scala": "_scala_light",
2139
+ "sol": "_ethereum_light",
2140
+ "styl": "_stylus_light",
2141
+ "svelte": "_svelte_light",
2142
+ "soql": "_db_1_light",
2143
+ "tf": "_terraform_light",
2144
+ "tf.json": "_terraform_light",
2145
+ "tfvars": "_terraform_light",
2146
+ "tfvars.json": "_terraform_light",
2147
+ "dtx": "_tex_2_light",
2148
+ "ins": "_tex_3_light",
2149
+ "toml": "_config_light",
2150
+ "twig": "_twig_light",
2151
+ "spec.ts": "_typescript_1_light",
2152
+ "test.ts": "_typescript_1_light",
2153
+ "vala": "_vala_light",
2154
+ "vapi": "_vala_light",
2155
+ "component": "_html_3_light",
2156
+ "vue": "_vue_light",
2157
+ "wasm": "_wasm_light",
2158
+ "wat": "_wat_light",
2159
+ "pro": "_prolog_light",
2160
+ "zig": "_zig_light",
2161
+ "jar": "_zip_light",
2162
+ "zip": "_zip_1_light",
2163
+ "wgt": "_wgt_light",
2164
+ "ai": "_illustrator_light",
2165
+ "psd": "_photoshop_light",
2166
+ "pdf": "_pdf_light",
2167
+ "eot": "_font_light",
2168
+ "ttf": "_font_light",
2169
+ "woff": "_font_light",
2170
+ "woff2": "_font_light",
2171
+ "otf": "_font_light",
2172
+ "avif": "_image_light",
2173
+ "gif": "_image_light",
2174
+ "jpg": "_image_light",
2175
+ "jpeg": "_image_light",
2176
+ "png": "_image_light",
2177
+ "pxm": "_image_light",
2178
+ "svg": "_svg_light",
2179
+ "svgx": "_image_light",
2180
+ "tiff": "_image_light",
2181
+ "webp": "_image_light",
2182
+ "sublime-project": "_sublime_light",
2183
+ "sublime-workspace": "_sublime_light",
2184
+ "mov": "_video_light",
2185
+ "ogv": "_video_light",
2186
+ "webm": "_video_light",
2187
+ "avi": "_video_light",
2188
+ "mpg": "_video_light",
2189
+ "mp4": "_video_light",
2190
+ "mp3": "_audio_light",
2191
+ "ogg": "_audio_light",
2192
+ "wav": "_audio_light",
2193
+ "flac": "_audio_light",
2194
+ "3ds": "_svg_1_light",
2195
+ "3dm": "_svg_1_light",
2196
+ "stl": "_svg_1_light",
2197
+ "obj": "_svg_1_light",
2198
+ "dae": "_svg_1_light",
2199
+ "babelrc": "_babel_light",
2200
+ "babelrc.js": "_babel_light",
2201
+ "babelrc.cjs": "_babel_light",
2202
+ "bazelrc": "_bazel_1_light",
2203
+ "bowerrc": "_bower_light",
2204
+ "dockerignore": "_docker_1_light",
2205
+ "codeclimate.yml": "_code-climate_light",
2206
+ "eslintrc": "_eslint_light",
2207
+ "eslintrc.js": "_eslint_light",
2208
+ "eslintrc.cjs": "_eslint_light",
2209
+ "eslintrc.yaml": "_eslint_light",
2210
+ "eslintrc.yml": "_eslint_light",
2211
+ "eslintrc.json": "_eslint_light",
2212
+ "eslintignore": "_eslint_1_light",
2213
+ "firebaserc": "_firebase_light",
2214
+ "gitlab-ci.yml": "_gitlab_light",
2215
+ "jshintrc": "_javascript_2_light",
2216
+ "jscsrc": "_javascript_2_light",
2217
+ "stylelintrc": "_stylelint_light",
2218
+ "stylelintrc.json": "_stylelint_light",
2219
+ "stylelintrc.yaml": "_stylelint_light",
2220
+ "stylelintrc.yml": "_stylelint_light",
2221
+ "stylelintrc.js": "_stylelint_light",
2222
+ "stylelintignore": "_stylelint_1_light",
2223
+ "direnv": "_config_light",
2224
+ "static": "_config_light",
2225
+ "slugignore": "_config_light",
2226
+ "tmp": "_clock_1_light",
2227
+ "htaccess": "_config_light",
2228
+ "key": "_lock_light",
2229
+ "cert": "_lock_light",
2230
+ "cer": "_lock_light",
2231
+ "crt": "_lock_light",
2232
+ "pem": "_lock_light",
2233
+ "ds_store": "_ignored_light"
2234
+ },
2235
+ "languageIds": {
2236
+ "elen": "elenFile",
2237
+ "bat": "_windows_light",
2238
+ "clojure": "_clojure_light",
2239
+ "coffeescript": "_coffee_light",
2240
+ "jsonc": "_json_light",
2241
+ "json": "_json_light",
2242
+ "c": "_c_light",
2243
+ "cpp": "_cpp_light",
2244
+ "cuda-cpp": "_cu_light",
2245
+ "csharp": "_c-sharp_light",
2246
+ "css": "_css_light",
2247
+ "dart": "_dart_light",
2248
+ "dockerfile": "_docker_light",
2249
+ "dotenv": "_config_light",
2250
+ "ignore": "_git_light",
2251
+ "fsharp": "_f-sharp_light",
2252
+ "git-commit": "_git_light",
2253
+ "go": "_go2_light",
2254
+ "groovy": "_grails_light",
2255
+ "handlebars": "_mustache_light",
2256
+ "html": "_html_3_light",
2257
+ "properties": "_config_light",
2258
+ "java": "_java_light",
2259
+ "javascriptreact": "_react_light",
2260
+ "javascript": "_javascript_light",
2261
+ "julia": "_julia_light",
2262
+ "tex": "_tex_1_light",
2263
+ "latex": "_tex_light",
2264
+ "less": "_less_light",
2265
+ "lua": "_lua_light",
2266
+ "makefile": "_makefile_light",
2267
+ "markdown": "_markdown_light",
2268
+ "objective-c": "_c_2_light",
2269
+ "objective-cpp": "_cpp_2_light",
2270
+ "perl": "_perl_light",
2271
+ "php": "_php_light",
2272
+ "powershell": "_powershell_light",
2273
+ "jade": "_pug_light",
2274
+ "python": "_python_light",
2275
+ "r": "_R_light",
2276
+ "razor": "_html_light",
2277
+ "ruby": "_ruby_light",
2278
+ "rust": "_rust_light",
2279
+ "scss": "_sass_light",
2280
+ "search-result": "_code-search_light",
2281
+ "shellscript": "_shell_light",
2282
+ "sql": "_db_light",
2283
+ "swift": "_swift_light",
2284
+ "typescript": "_typescript_light",
2285
+ "typescriptreact": "_react_light",
2286
+ "xml": "_xml_light",
2287
+ "dockercompose": "_docker_3_light",
2288
+ "yaml": "_yml_light",
2289
+ "argdown": "_argdown_light",
2290
+ "bicep": "_bicep_light",
2291
+ "elixir": "_elixir_light",
2292
+ "elm": "_elm_light",
2293
+ "erb": "_html_erb_light",
2294
+ "github-issues": "_github_light",
2295
+ "gradle": "_gradle_light",
2296
+ "godot": "_godot_light",
2297
+ "haml": "_haml_light",
2298
+ "haskell": "_haskell_light",
2299
+ "haxe": "_haxe_light",
2300
+ "jinja": "_jinja_light",
2301
+ "kotlin": "_kotlin_light",
2302
+ "mustache": "_mustache_light",
2303
+ "nunjucks": "_nunjucks_light",
2304
+ "ocaml": "_ocaml_light",
2305
+ "rescript": "_rescript_light",
2306
+ "sass": "_sass_light",
2307
+ "stylus": "_stylus_light",
2308
+ "terraform": "_terraform_light",
2309
+ "vala": "_vala_light",
2310
+ "vue": "_vue_light",
2311
+ "jsonl": "_json_light",
2312
+ "postcss": "_css_light",
2313
+ "django-html": "_html_3_light",
2314
+ "blade": "_php_light",
2315
+ "prompt": "_markdown_light",
2316
+ "instructions": "_markdown_light",
2317
+ "chatagent": "_markdown_light",
2318
+ "skill": "_markdown_light"
2319
+ },
2320
+ "fileNames": {
2321
+ "app.elen": "elenFile",
2322
+ "mix": "_hex_light",
2323
+ "karma.conf.js": "_karma_light",
2324
+ "karma.conf.cjs": "_karma_light",
2325
+ "karma.conf.mjs": "_karma_light",
2326
+ "karma.conf.coffee": "_karma_light",
2327
+ "readme.md": "_info_light",
2328
+ "readme.txt": "_info_light",
2329
+ "readme": "_info_light",
2330
+ "changelog.md": "_clock_light",
2331
+ "changelog.txt": "_clock_light",
2332
+ "changelog": "_clock_light",
2333
+ "changes.md": "_clock_light",
2334
+ "changes.txt": "_clock_light",
2335
+ "changes": "_clock_light",
2336
+ "version.md": "_clock_light",
2337
+ "version.txt": "_clock_light",
2338
+ "version": "_clock_light",
2339
+ "mvnw": "_maven_light",
2340
+ "pom.xml": "_maven_light",
2341
+ "tsconfig.json": "_tsconfig_light",
2342
+ "vite.config.js": "_vite_light",
2343
+ "vite.config.ts": "_vite_light",
2344
+ "vite.config.mjs": "_vite_light",
2345
+ "vite.config.mts": "_vite_light",
2346
+ "vite.config.cjs": "_vite_light",
2347
+ "vite.config.cts": "_vite_light",
2348
+ "swagger.json": "_json_1_light",
2349
+ "swagger.yml": "_json_1_light",
2350
+ "swagger.yaml": "_json_1_light",
2351
+ "mime.types": "_config_light",
2352
+ "jenkinsfile": "_jenkins_light",
2353
+ "babel.config.js": "_babel_light",
2354
+ "babel.config.json": "_babel_light",
2355
+ "babel.config.cjs": "_babel_light",
2356
+ "build": "_bazel_light",
2357
+ "build.bazel": "_bazel_light",
2358
+ "workspace": "_bazel_light",
2359
+ "workspace.bazel": "_bazel_light",
2360
+ "bower.json": "_bower_light",
2361
+ "docker-healthcheck": "_docker_2_light",
2362
+ "eslint.config.js": "_eslint_light",
2363
+ "firebase.json": "_firebase_light",
2364
+ "geckodriver": "_firefox_light",
2365
+ "gruntfile.js": "_grunt_light",
2366
+ "gruntfile.babel.js": "_grunt_light",
2367
+ "gruntfile.coffee": "_grunt_light",
2368
+ "gulpfile": "_gulp_light",
2369
+ "gulpfile.js": "_gulp_light",
2370
+ "ionic.config.json": "_ionic_light",
2371
+ "ionic.project": "_ionic_light",
2372
+ "platformio.ini": "_platformio_light",
2373
+ "rollup.config.js": "_rollup_light",
2374
+ "sass-lint.yml": "_sass_light",
2375
+ "stylelint.config.js": "_stylelint_light",
2376
+ "stylelint.config.cjs": "_stylelint_light",
2377
+ "stylelint.config.mjs": "_stylelint_light",
2378
+ "yarn.clean": "_yarn_light",
2379
+ "yarn.lock": "_yarn_light",
2380
+ "webpack.config.js": "_webpack_light",
2381
+ "webpack.config.cjs": "_webpack_light",
2382
+ "webpack.config.mjs": "_webpack_light",
2383
+ "webpack.config.ts": "_webpack_light",
2384
+ "webpack.config.build.js": "_webpack_light",
2385
+ "webpack.config.build.cjs": "_webpack_light",
2386
+ "webpack.config.build.mjs": "_webpack_light",
2387
+ "webpack.config.build.ts": "_webpack_light",
2388
+ "webpack.common.js": "_webpack_light",
2389
+ "webpack.common.cjs": "_webpack_light",
2390
+ "webpack.common.mjs": "_webpack_light",
2391
+ "webpack.common.ts": "_webpack_light",
2392
+ "webpack.dev.js": "_webpack_light",
2393
+ "webpack.dev.cjs": "_webpack_light",
2394
+ "webpack.dev.mjs": "_webpack_light",
2395
+ "webpack.dev.ts": "_webpack_light",
2396
+ "webpack.prod.js": "_webpack_light",
2397
+ "webpack.prod.cjs": "_webpack_light",
2398
+ "webpack.prod.mjs": "_webpack_light",
2399
+ "webpack.prod.ts": "_webpack_light",
2400
+ "license": "_license_light",
2401
+ "licence": "_license_light",
2402
+ "license.txt": "_license_light",
2403
+ "licence.txt": "_license_light",
2404
+ "license.md": "_license_light",
2405
+ "licence.md": "_license_light",
2406
+ "copying": "_license_light",
2407
+ "copying.txt": "_license_light",
2408
+ "copying.md": "_license_light",
2409
+ "compiling": "_license_1_light",
2410
+ "compiling.txt": "_license_1_light",
2411
+ "compiling.md": "_license_1_light",
2412
+ "contributing": "_license_2_light",
2413
+ "contributing.txt": "_license_2_light",
2414
+ "contributing.md": "_license_2_light",
2415
+ "qmakefile": "_makefile_1_light",
2416
+ "omakefile": "_makefile_2_light",
2417
+ "cmakelists.txt": "_makefile_3_light",
2418
+ "procfile": "_heroku_light",
2419
+ "npm-debug.log": "_npm_ignored_light"
2420
+ }
2421
+ },
2422
+ "version": "https://github.com/jesseweed/seti-ui/commit/2d6c5e68b4ded73c92dac291845ee44e1182d511"
2423
+ }