-
Notifications
You must be signed in to change notification settings - Fork 1
/
eclipse-2024.9-preferences.epf
4337 lines (4337 loc) · 782 KB
/
eclipse-2024.9-preferences.epf
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
#Tue Nov 26 08:27:17 CET 2024
\!/=
/configuration/org.eclipse.core.net/org.eclipse.core.net.hasMigrated=true
/configuration/org.eclipse.epp.mpc.ui/showOpenFavoritesNotification=false
/configuration/org.eclipse.equinox.p2.garbagecollector/gc_enabled=false
/configuration/org.eclipse.ui.ide/MAX_RECENT_WORKSPACES=10
/configuration/org.eclipse.ui.ide/RECENT_WORKSPACES=C\:\\dev\\ews\\phoss\nC\:\\dev\\ews\\btc\nC\:\\dev\\ews\\as4\nC\:\\dev\\ews\\peppol\nC\:\\dev\\ews\\smp\nC\:\\dev\\ews\\phive\nC\:\\dev\\ews\\cisbox\nC\:\\dev\\ews\\storecove\nC\:\\dev\\ews\\acube\nC\:\\dev\\ews\\seres
/configuration/org.eclipse.ui.ide/RECENT_WORKSPACES_PROTOCOL=3
/configuration/org.eclipse.ui.ide/SHOW_RECENT_WORKSPACES=true
/configuration/org.eclipse.ui.ide/SHOW_WORKSPACE_SELECTION_DIALOG=true
/configuration/org.eclipse.ui.ide/WARN_ABOUT_WORKSPACE_INCOMPATIBILITY=false
/configuration/org.eclipse.ui/windows.defender.excluded.path=C\:\\tools\\eclipse\\configuration
/instance/ccw.core/ccw.preferences.editor_color.FUNCTION=255,255,255
/instance/ccw.core/ccw.preferences.editor_color.FUNCTION.bold=false
/instance/ccw.core/ccw.preferences.editor_color.FUNCTION.enabled=true
/instance/ccw.core/ccw.preferences.editor_color.FUNCTION.italic=false
/instance/ccw.core/ccw.preferences.editor_color.GLOBAL_VAR=239,192,144
/instance/ccw.core/ccw.preferences.editor_color.GLOBAL_VAR.bold=false
/instance/ccw.core/ccw.preferences.editor_color.GLOBAL_VAR.enabled=true
/instance/ccw.core/ccw.preferences.editor_color.GLOBAL_VAR.italic=false
/instance/ccw.core/ccw.preferences.editor_color.JAVA_CLASS=209,151,217
/instance/ccw.core/ccw.preferences.editor_color.JAVA_CLASS.bold=false
/instance/ccw.core/ccw.preferences.editor_color.JAVA_CLASS.enabled=true
/instance/ccw.core/ccw.preferences.editor_color.JAVA_CLASS.italic=false
/instance/ccw.core/ccw.preferences.editor_color.JAVA_INSTANCE_METHOD=210,82,82
/instance/ccw.core/ccw.preferences.editor_color.JAVA_INSTANCE_METHOD.bold=false
/instance/ccw.core/ccw.preferences.editor_color.JAVA_INSTANCE_METHOD.enabled=true
/instance/ccw.core/ccw.preferences.editor_color.JAVA_INSTANCE_METHOD.italic=false
/instance/ccw.core/ccw.preferences.editor_color.JAVA_STATIC_METHOD=210,82,82
/instance/ccw.core/ccw.preferences.editor_color.JAVA_STATIC_METHOD.bold=false
/instance/ccw.core/ccw.preferences.editor_color.JAVA_STATIC_METHOD.enabled=true
/instance/ccw.core/ccw.preferences.editor_color.JAVA_STATIC_METHOD.italic=false
/instance/ccw.core/ccw.preferences.editor_color.MACRO=141,203,226
/instance/ccw.core/ccw.preferences.editor_color.MACRO.bold=false
/instance/ccw.core/ccw.preferences.editor_color.MACRO.enabled=true
/instance/ccw.core/ccw.preferences.editor_color.MACRO.italic=false
/instance/ccw.core/ccw.preferences.editor_color.RAW_SYMBOL=216,216,216
/instance/ccw.core/ccw.preferences.editor_color.RAW_SYMBOL.bold=false
/instance/ccw.core/ccw.preferences.editor_color.RAW_SYMBOL.enabled=true
/instance/ccw.core/ccw.preferences.editor_color.RAW_SYMBOL.italic=false
/instance/ccw.core/ccw.preferences.editor_color.SPECIAL_FORM=141,203,226
/instance/ccw.core/ccw.preferences.editor_color.SPECIAL_FORM.bold=false
/instance/ccw.core/ccw.preferences.editor_color.SPECIAL_FORM.enabled=true
/instance/ccw.core/ccw.preferences.editor_color.SPECIAL_FORM.italic=false
/instance/ccw.core/ccw.preferences.editor_color.callableFUNCTION=190,214,255
/instance/ccw.core/ccw.preferences.editor_color.callableFUNCTION.bold=false
/instance/ccw.core/ccw.preferences.editor_color.callableFUNCTION.enabled=true
/instance/ccw.core/ccw.preferences.editor_color.callableFUNCTION.italic=false
/instance/ccw.core/ccw.preferences.editor_color.callableGLOBAL_VAR=239,192,144
/instance/ccw.core/ccw.preferences.editor_color.callableGLOBAL_VAR.bold=false
/instance/ccw.core/ccw.preferences.editor_color.callableGLOBAL_VAR.enabled=true
/instance/ccw.core/ccw.preferences.editor_color.callableGLOBAL_VAR.italic=false
/instance/ccw.core/ccw.preferences.editor_color.callableJAVA_CLASS=210,82,82
/instance/ccw.core/ccw.preferences.editor_color.callableJAVA_CLASS.bold=false
/instance/ccw.core/ccw.preferences.editor_color.callableJAVA_CLASS.enabled=true
/instance/ccw.core/ccw.preferences.editor_color.callableJAVA_CLASS.italic=false
/instance/ccw.core/ccw.preferences.editor_color.callableJAVA_INSTANCE_METHOD=209,151,217
/instance/ccw.core/ccw.preferences.editor_color.callableJAVA_INSTANCE_METHOD.bold=false
/instance/ccw.core/ccw.preferences.editor_color.callableJAVA_INSTANCE_METHOD.enabled=true
/instance/ccw.core/ccw.preferences.editor_color.callableJAVA_INSTANCE_METHOD.italic=false
/instance/ccw.core/ccw.preferences.editor_color.callableJAVA_STATIC_METHOD=209,151,217
/instance/ccw.core/ccw.preferences.editor_color.callableJAVA_STATIC_METHOD.bold=false
/instance/ccw.core/ccw.preferences.editor_color.callableJAVA_STATIC_METHOD.enabled=true
/instance/ccw.core/ccw.preferences.editor_color.callableJAVA_STATIC_METHOD.italic=false
/instance/ccw.core/ccw.preferences.editor_color.callableMACRO=141,203,226
/instance/ccw.core/ccw.preferences.editor_color.callableMACRO.bold=false
/instance/ccw.core/ccw.preferences.editor_color.callableMACRO.enabled=true
/instance/ccw.core/ccw.preferences.editor_color.callableMACRO.italic=false
/instance/ccw.core/ccw.preferences.editor_color.callableRAW_SYMBOL=216,216,216
/instance/ccw.core/ccw.preferences.editor_color.callableRAW_SYMBOL.bold=false
/instance/ccw.core/ccw.preferences.editor_color.callableRAW_SYMBOL.enabled=true
/instance/ccw.core/ccw.preferences.editor_color.callableRAW_SYMBOL.italic=false
/instance/ccw.core/ccw.preferences.editor_color.callableSPECIAL_FORM=141,203,226
/instance/ccw.core/ccw.preferences.editor_color.callableSPECIAL_FORM.bold=false
/instance/ccw.core/ccw.preferences.editor_color.callableSPECIAL_FORM.enabled=true
/instance/ccw.core/ccw.preferences.editor_color.callableSPECIAL_FORM.italic=false
/instance/ccw.core/ccw.preferences.editor_color.char=255,198,0
/instance/ccw.core/ccw.preferences.editor_color.char.bold=false
/instance/ccw.core/ccw.preferences.editor_color.char.enabled=true
/instance/ccw.core/ccw.preferences.editor_color.char.italic=false
/instance/ccw.core/ccw.preferences.editor_color.comment=204,223,50
/instance/ccw.core/ccw.preferences.editor_color.comment.bold=false
/instance/ccw.core/ccw.preferences.editor_color.comment.enabled=true
/instance/ccw.core/ccw.preferences.editor_color.comment.italic=false
/instance/ccw.core/ccw.preferences.editor_color.float=127,179,71
/instance/ccw.core/ccw.preferences.editor_color.float.bold=false
/instance/ccw.core/ccw.preferences.editor_color.float.enabled=true
/instance/ccw.core/ccw.preferences.editor_color.float.italic=false
/instance/ccw.core/ccw.preferences.editor_color.int=127,179,71
/instance/ccw.core/ccw.preferences.editor_color.int.bold=false
/instance/ccw.core/ccw.preferences.editor_color.int.enabled=true
/instance/ccw.core/ccw.preferences.editor_color.int.italic=false
/instance/ccw.core/ccw.preferences.editor_color.keyword=190,214,255
/instance/ccw.core/ccw.preferences.editor_color.keyword.bold=false
/instance/ccw.core/ccw.preferences.editor_color.keyword.enabled=true
/instance/ccw.core/ccw.preferences.editor_color.keyword.italic=false
/instance/ccw.core/ccw.preferences.editor_color.literalSymbol=190,214,255
/instance/ccw.core/ccw.preferences.editor_color.literalSymbol.bold=false
/instance/ccw.core/ccw.preferences.editor_color.literalSymbol.enabled=true
/instance/ccw.core/ccw.preferences.editor_color.literalSymbol.italic=false
/instance/ccw.core/ccw.preferences.editor_color.meta=255,255,255
/instance/ccw.core/ccw.preferences.editor_color.meta.bold=false
/instance/ccw.core/ccw.preferences.editor_color.meta.enabled=true
/instance/ccw.core/ccw.preferences.editor_color.meta.italic=false
/instance/ccw.core/ccw.preferences.editor_color.other-literals=239,192,144
/instance/ccw.core/ccw.preferences.editor_color.other-literals.bold=false
/instance/ccw.core/ccw.preferences.editor_color.other-literals.enabled=true
/instance/ccw.core/ccw.preferences.editor_color.other-literals.italic=false
/instance/ccw.core/ccw.preferences.editor_color.regex=255,198,0
/instance/ccw.core/ccw.preferences.editor_color.regex.bold=false
/instance/ccw.core/ccw.preferences.editor_color.regex.enabled=true
/instance/ccw.core/ccw.preferences.editor_color.regex.italic=false
/instance/ccw.core/ccw.preferences.editor_color.string=255,198,0
/instance/ccw.core/ccw.preferences.editor_color.string.bold=false
/instance/ccw.core/ccw.preferences.editor_color.string.enabled=true
/instance/ccw.core/ccw.preferences.editor_color.string.italic=false
/instance/ccw.core/ccw.preferences.editor_color.symbol=121,171,255
/instance/ccw.core/ccw.preferences.editor_color.symbol.bold=false
/instance/ccw.core/ccw.preferences.editor_color.symbol.enabled=true
/instance/ccw.core/ccw.preferences.editor_color.symbol.italic=false
/instance/ccw.core/ccw.preferences.editor_color.whitespace=216,216,216
/instance/ccw.core/ccw.preferences.editor_color.whitespace.bold=false
/instance/ccw.core/ccw.preferences.editor_color.whitespace.enabled=true
/instance/ccw.core/ccw.preferences.editor_color.whitespace.italic=false
/instance/ccw.core/overriddenByCSS=,ccw.preferences.editor_color.JAVA_CLASS,ccw.preferences.editor_color.RAW_SYMBOL.italic,ccw.preferences.editor_color.int.enabled,ccw.preferences.editor_color.callableFUNCTION,ccw.preferences.editor_color.meta.italic,ccw.preferences.editor_color.GLOBAL_VAR.bold,ccw.preferences.editor_color.keyword,ccw.preferences.editor_color.SPECIAL_FORM.enabled,ccw.preferences.editor_color.float,ccw.preferences.editor_color.int.italic,ccw.preferences.editor_color.float.enabled,ccw.preferences.editor_color.callableGLOBAL_VAR.bold,ccw.preferences.editor_color.callableRAW_SYMBOL.italic,ccw.preferences.editor_color.comment.italic,ccw.preferences.editor_color.literalSymbol,ccw.preferences.editor_color.JAVA_CLASS.bold,ccw.preferences.editor_color.callableJAVA_STATIC_METHOD.bold,ccw.preferences.editor_color.callableFUNCTION.bold,ccw.preferences.editor_color.other-literals.bold,ccw.preferences.editor_color.callableFUNCTION.italic,ccw.preferences.editor_color.callableJAVA_INSTANCE_METHOD.enabled,ccw.preferences.editor_color.SPECIAL_FORM.bold,ccw.preferences.editor_color.float.bold,ccw.preferences.editor_color.callableMACRO.enabled,ccw.preferences.editor_color.callableJAVA_CLASS.enabled,ccw.preferences.editor_color.FUNCTION.italic,ccw.preferences.editor_color.callableGLOBAL_VAR.enabled,ccw.preferences.editor_color.symbol.bold,ccw.preferences.editor_color.comment.enabled,ccw.preferences.editor_color.other-literals.enabled,ccw.preferences.editor_color.callableRAW_SYMBOL.bold,ccw.preferences.editor_color.string.italic,ccw.preferences.editor_color.meta,ccw.preferences.editor_color.JAVA_INSTANCE_METHOD.enabled,ccw.preferences.editor_color.char.italic,ccw.preferences.editor_color.whitespace.enabled,ccw.preferences.editor_color.callableJAVA_CLASS,ccw.preferences.editor_color.string.bold,ccw.preferences.editor_color.other-literals,ccw.preferences.editor_color.callableJAVA_CLASS.bold,ccw.preferences.editor_color.MACRO.enabled,ccw.preferences.editor_color.MACRO.bold,ccw.preferences.editor_color.JAVA_CLASS.italic,ccw.preferences.editor_color.string,ccw.preferences.editor_color.SPECIAL_FORM,ccw.preferences.editor_color.FUNCTION,ccw.preferences.editor_color.callableJAVA_INSTANCE_METHOD,ccw.preferences.editor_color.comment.bold,ccw.preferences.editor_color.FUNCTION.enabled,ccw.preferences.editor_color.regex.enabled,ccw.preferences.editor_color.callableRAW_SYMBOL.enabled,ccw.preferences.editor_color.symbol.enabled,ccw.preferences.editor_color.int,ccw.preferences.editor_color.callableJAVA_CLASS.italic,ccw.preferences.editor_color.literalSymbol.enabled,ccw.preferences.editor_color.callableMACRO.italic,ccw.preferences.editor_color.FUNCTION.bold,ccw.preferences.editor_color.whitespace,ccw.preferences.editor_color.whitespace.italic,ccw.preferences.editor_color.regex.italic,ccw.preferences.editor_color.meta.bold,ccw.preferences.editor_color.literalSymbol.italic,ccw.preferences.editor_color.callableGLOBAL_VAR.italic,ccw.preferences.editor_color.JAVA_STATIC_METHOD,ccw.preferences.editor_color.callableFUNCTION.enabled,ccw.preferences.editor_color.JAVA_INSTANCE_METHOD.bold,ccw.preferences.editor_color.GLOBAL_VAR.enabled,ccw.preferences.editor_color.GLOBAL_VAR,ccw.preferences.editor_color.float.italic,ccw.preferences.editor_color.keyword.italic,ccw.preferences.editor_color.comment,ccw.preferences.editor_color.other-literals.italic,ccw.preferences.editor_color.keyword.bold,ccw.preferences.editor_color.whitespace.bold,ccw.preferences.editor_color.callableJAVA_STATIC_METHOD,ccw.preferences.editor_color.symbol.italic,ccw.preferences.editor_color.int.bold,ccw.preferences.editor_color.string.enabled,ccw.preferences.editor_color.RAW_SYMBOL,ccw.preferences.editor_color.callableJAVA_INSTANCE_METHOD.italic,ccw.preferences.editor_color.GLOBAL_VAR.italic,ccw.preferences.editor_color.MACRO,ccw.preferences.editor_color.callableJAVA_INSTANCE_METHOD.bold,ccw.preferences.editor_color.JAVA_INSTANCE_METHOD.italic,ccw.preferences.editor_color.keyword.enabled,ccw.preferences.editor_color.regex.bold,ccw.preferences.editor_color.symbol,ccw.preferences.editor_color.SPECIAL_FORM.italic,ccw.preferences.editor_color.regex,ccw.preferences.editor_color.char.bold,ccw.preferences.editor_color.RAW_SYMBOL.bold,ccw.preferences.editor_color.callableSPECIAL_FORM.italic,ccw.preferences.editor_color.callableSPECIAL_FORM,ccw.preferences.editor_color.callableGLOBAL_VAR,ccw.preferences.editor_color.char.enabled,ccw.preferences.editor_color.callableMACRO.bold,ccw.preferences.editor_color.char,ccw.preferences.editor_color.RAW_SYMBOL.enabled,ccw.preferences.editor_color.JAVA_STATIC_METHOD.bold,ccw.preferences.editor_color.JAVA_STATIC_METHOD.enabled,ccw.preferences.editor_color.callableSPECIAL_FORM.enabled,ccw.preferences.editor_color.callableMACRO,ccw.preferences.editor_color.MACRO.italic,ccw.preferences.editor_color.meta.enabled,ccw.preferences.editor_color.JAVA_CLASS.enabled,ccw.preferences.editor_color.callableJAVA_STATIC_METHOD.enabled,ccw.preferences.editor_color.literalSymbol.bold,ccw.preferences.editor_color.callableJAVA_STATIC_METHOD.italic,ccw.preferences.editor_color.JAVA_STATIC_METHOD.italic,ccw.preferences.editor_color.callableRAW_SYMBOL,ccw.preferences.editor_color.callableSPECIAL_FORM.bold,ccw.preferences.editor_color.JAVA_INSTANCE_METHOD,
/instance/com.adobe.flexide.as.core/asASDocBold=false
/instance/com.adobe.flexide.as.core/asASDocColor=\#CCDF32
/instance/com.adobe.flexide.as.core/asASDocItalic=false
/instance/com.adobe.flexide.as.core/asASDocStrikethrough=false
/instance/com.adobe.flexide.as.core/asASDocUnderline=false
/instance/com.adobe.flexide.as.core/asBracketBold=false
/instance/com.adobe.flexide.as.core/asBracketColor=\#D8D8D8
/instance/com.adobe.flexide.as.core/asBracketItalic=false
/instance/com.adobe.flexide.as.core/asBracketStrikethrough=false
/instance/com.adobe.flexide.as.core/asBracketUnderline=false
/instance/com.adobe.flexide.as.core/asClassBold=false
/instance/com.adobe.flexide.as.core/asClassColor=\#D25252
/instance/com.adobe.flexide.as.core/asClassItalic=false
/instance/com.adobe.flexide.as.core/asClassStrikethrough=false
/instance/com.adobe.flexide.as.core/asClassUnderline=false
/instance/com.adobe.flexide.as.core/asCommentBold=false
/instance/com.adobe.flexide.as.core/asCommentColor=\#C7DD0C
/instance/com.adobe.flexide.as.core/asCommentItalic=false
/instance/com.adobe.flexide.as.core/asCommentStrikethrough=false
/instance/com.adobe.flexide.as.core/asCommentUnderline=false
/instance/com.adobe.flexide.as.core/asFunctionBold=false
/instance/com.adobe.flexide.as.core/asFunctionColor=\#FFFFFF
/instance/com.adobe.flexide.as.core/asFunctionItalic=false
/instance/com.adobe.flexide.as.core/asFunctionStrikethrough=false
/instance/com.adobe.flexide.as.core/asFunctionUnderline=false
/instance/com.adobe.flexide.as.core/asInterfaceBold=false
/instance/com.adobe.flexide.as.core/asInterfaceColor=\#D197D9
/instance/com.adobe.flexide.as.core/asInterfaceItalic=false
/instance/com.adobe.flexide.as.core/asInterfaceStrikethrough=false
/instance/com.adobe.flexide.as.core/asInterfaceUnderline=false
/instance/com.adobe.flexide.as.core/asMetadataBold=false
/instance/com.adobe.flexide.as.core/asMetadataColor=\#FFFFFF
/instance/com.adobe.flexide.as.core/asMetadataItalic=false
/instance/com.adobe.flexide.as.core/asMetadataStrikethrough=false
/instance/com.adobe.flexide.as.core/asMetadataUnderline=false
/instance/com.adobe.flexide.as.core/asOperatorBold=false
/instance/com.adobe.flexide.as.core/asOperatorColor=\#D8D8D8
/instance/com.adobe.flexide.as.core/asOperatorItalic=false
/instance/com.adobe.flexide.as.core/asOperatorStrikethrough=false
/instance/com.adobe.flexide.as.core/asOperatorUnderline=false
/instance/com.adobe.flexide.as.core/asPackageBold=false
/instance/com.adobe.flexide.as.core/asPackageColor=\#D197D9
/instance/com.adobe.flexide.as.core/asPackageItalic=false
/instance/com.adobe.flexide.as.core/asPackageStrikethrough=false
/instance/com.adobe.flexide.as.core/asPackageUnderline=false
/instance/com.adobe.flexide.as.core/asReservedBold=false
/instance/com.adobe.flexide.as.core/asReservedColor=\#8DCBE2
/instance/com.adobe.flexide.as.core/asReservedItalic=false
/instance/com.adobe.flexide.as.core/asReservedStrikethrough=false
/instance/com.adobe.flexide.as.core/asReservedUnderline=false
/instance/com.adobe.flexide.as.core/asStringBold=false
/instance/com.adobe.flexide.as.core/asStringColor=\#FFC600
/instance/com.adobe.flexide.as.core/asStringItalic=false
/instance/com.adobe.flexide.as.core/asStringStrikethrough=false
/instance/com.adobe.flexide.as.core/asStringUnderline=false
/instance/com.adobe.flexide.as.core/asTextBold=false
/instance/com.adobe.flexide.as.core/asTextColor=\#D8D8D8
/instance/com.adobe.flexide.as.core/asTextItalic=false
/instance/com.adobe.flexide.as.core/asTextStrikethrough=false
/instance/com.adobe.flexide.as.core/asTextUnderline=false
/instance/com.adobe.flexide.as.core/asTraceBold=false
/instance/com.adobe.flexide.as.core/asTraceColor=\#BED6FF
/instance/com.adobe.flexide.as.core/asTraceItalic=false
/instance/com.adobe.flexide.as.core/asTraceStrikethrough=false
/instance/com.adobe.flexide.as.core/asTraceUnderline=false
/instance/com.adobe.flexide.as.core/asVarBold=false
/instance/com.adobe.flexide.as.core/asVarColor=\#79ABFF
/instance/com.adobe.flexide.as.core/asVarItalic=false
/instance/com.adobe.flexide.as.core/asVarStrikethrough=false
/instance/com.adobe.flexide.as.core/asVarUnderline=false
/instance/com.adobe.flexide.as.core/overriddenByCSS=,asCommentUnderline,asCommentColor,asStringColor,asReservedItalic,asBracketBold,asCommentStrikethrough,asVarColor,asOperatorUnderline,asStringStrikethrough,asTextColor,asStringItalic,asStringBold,asVarStrikethrough,asOperatorColor,asVarUnderline,asTextUnderline,asClassColor,asReservedColor,asMetadataStrikethrough,asPackageUnderline,asTextItalic,asMetadataUnderline,asCommentItalic,asPackageItalic,asTraceUnderline,asFunctionUnderline,asTextBold,asOperatorBold,asASDocStrikethrough,asVarItalic,asTraceStrikethrough,asCommentBold,asTraceColor,asASDocItalic,asPackageColor,asBracketUnderline,asInterfaceBold,asASDocColor,asFunctionItalic,asInterfaceColor,asPackageBold,asInterfaceStrikethrough,asClassItalic,asPackageStrikethrough,asFunctionBold,asClassStrikethrough,asStringUnderline,asMetadataColor,asTraceBold,asVarBold,asFunctionStrikethrough,asASDocUnderline,asFunctionColor,asTraceItalic,asClassUnderline,asInterfaceUnderline,asOperatorItalic,asOperatorStrikethrough,asBracketColor,asClassBold,asReservedUnderline,asASDocBold,asReservedStrikethrough,asTextStrikethrough,asMetadataBold,asMetadataItalic,asBracketItalic,asReservedBold,asInterfaceItalic,asBracketStrikethrough,
/instance/com.adobe.flexide.css.core/cssCommentBold=false
/instance/com.adobe.flexide.css.core/cssCommentColor=\#C7DD0C
/instance/com.adobe.flexide.css.core/cssCommentItalic=false
/instance/com.adobe.flexide.css.core/cssCommentStrikethrough=false
/instance/com.adobe.flexide.css.core/cssCommentUnderline=false
/instance/com.adobe.flexide.css.core/cssFontFaceBold=false
/instance/com.adobe.flexide.css.core/cssFontFaceColor=\#8DCBE2
/instance/com.adobe.flexide.css.core/cssFontFaceItalic=false
/instance/com.adobe.flexide.css.core/cssFontFaceStrikethrough=false
/instance/com.adobe.flexide.css.core/cssFontFaceUnderline=false
/instance/com.adobe.flexide.css.core/cssImportBold=false
/instance/com.adobe.flexide.css.core/cssImportColor=\#8DCBE2
/instance/com.adobe.flexide.css.core/cssImportItalic=false
/instance/com.adobe.flexide.css.core/cssImportStrikethrough=false
/instance/com.adobe.flexide.css.core/cssImportUnderline=false
/instance/com.adobe.flexide.css.core/cssMediaBold=false
/instance/com.adobe.flexide.css.core/cssMediaColor=\#8DCBE2
/instance/com.adobe.flexide.css.core/cssMediaItalic=false
/instance/com.adobe.flexide.css.core/cssMediaStrikethrough=false
/instance/com.adobe.flexide.css.core/cssMediaUnderline=false
/instance/com.adobe.flexide.css.core/cssNamespaceBold=false
/instance/com.adobe.flexide.css.core/cssNamespaceColor=\#D8D8D8
/instance/com.adobe.flexide.css.core/cssNamespaceItalic=false
/instance/com.adobe.flexide.css.core/cssNamespaceStrikethrough=false
/instance/com.adobe.flexide.css.core/cssNamespaceUnderline=false
/instance/com.adobe.flexide.css.core/cssPropertyNameBold=false
/instance/com.adobe.flexide.css.core/cssPropertyNameColor=\#BED6FF
/instance/com.adobe.flexide.css.core/cssPropertyNameItalic=false
/instance/com.adobe.flexide.css.core/cssPropertyNameStrikethrough=false
/instance/com.adobe.flexide.css.core/cssPropertyNameUnderline=false
/instance/com.adobe.flexide.css.core/cssPropertyValueBold=false
/instance/com.adobe.flexide.css.core/cssPropertyValueColor=\#FFC600
/instance/com.adobe.flexide.css.core/cssPropertyValueItalic=false
/instance/com.adobe.flexide.css.core/cssPropertyValueStrikethrough=false
/instance/com.adobe.flexide.css.core/cssPropertyValueUnderline=false
/instance/com.adobe.flexide.css.core/cssSelectorBold=false
/instance/com.adobe.flexide.css.core/cssSelectorColor=\#79ABFF
/instance/com.adobe.flexide.css.core/cssSelectorItalic=false
/instance/com.adobe.flexide.css.core/cssSelectorStrikethrough=false
/instance/com.adobe.flexide.css.core/cssSelectorUnderline=false
/instance/com.adobe.flexide.css.core/cssStringBold=false
/instance/com.adobe.flexide.css.core/cssStringColor=\#FFC600
/instance/com.adobe.flexide.css.core/cssStringItalic=false
/instance/com.adobe.flexide.css.core/cssStringStrikethrough=false
/instance/com.adobe.flexide.css.core/cssStringUnderline=false
/instance/com.adobe.flexide.css.core/cssSymbolBold=false
/instance/com.adobe.flexide.css.core/cssSymbolColor=\#8DCBE2
/instance/com.adobe.flexide.css.core/cssSymbolItalic=false
/instance/com.adobe.flexide.css.core/cssSymbolStrikethrough=false
/instance/com.adobe.flexide.css.core/cssSymbolUnderline=false
/instance/com.adobe.flexide.css.core/cssTextBold=false
/instance/com.adobe.flexide.css.core/cssTextColor=\#D8D8D8
/instance/com.adobe.flexide.css.core/cssTextItalic=false
/instance/com.adobe.flexide.css.core/cssTextStrikethrough=false
/instance/com.adobe.flexide.css.core/cssTextUnderline=false
/instance/com.adobe.flexide.css.core/overriddenByCSS=,cssNamespaceStrikethrough,cssImportBold,cssFontFaceBold,cssPropertyValueItalic,cssTextColor,cssStringColor,cssSymbolColor,cssSelectorItalic,cssTextStrikethrough,cssMediaItalic,cssStringItalic,cssStringUnderline,cssStringBold,cssStringStrikethrough,cssPropertyNameStrikethrough,cssMediaBold,cssImportItalic,cssCommentBold,cssNamespaceItalic,cssPropertyValueBold,cssTextUnderline,cssFontFaceItalic,cssSymbolStrikethrough,cssMediaStrikethrough,cssPropertyNameItalic,cssCommentStrikethrough,cssNamespaceColor,cssImportUnderline,cssPropertyValueColor,cssMediaColor,cssTextBold,cssFontFaceStrikethrough,cssMediaUnderline,cssSelectorStrikethrough,cssPropertyNameBold,cssNamespaceUnderline,cssSelectorColor,cssImportColor,cssPropertyValueStrikethrough,cssFontFaceColor,cssCommentColor,cssImportStrikethrough,cssCommentItalic,cssSymbolItalic,cssPropertyValueUnderline,cssTextItalic,cssNamespaceBold,cssCommentUnderline,cssSymbolUnderline,cssPropertyNameColor,cssFontFaceUnderline,cssSelectorUnderline,cssPropertyNameUnderline,cssSelectorBold,cssSymbolBold,
/instance/com.adobe.flexide.mxml.core/asASDocBold=false
/instance/com.adobe.flexide.mxml.core/asASDocColor=\#CCDF32
/instance/com.adobe.flexide.mxml.core/asASDocItalic=false
/instance/com.adobe.flexide.mxml.core/asASDocStrikethrough=false
/instance/com.adobe.flexide.mxml.core/asASDocUnderline=false
/instance/com.adobe.flexide.mxml.core/mxmlCommentBold=false
/instance/com.adobe.flexide.mxml.core/mxmlCommentColor=\#C7DD0C
/instance/com.adobe.flexide.mxml.core/mxmlCommentItalic=false
/instance/com.adobe.flexide.mxml.core/mxmlCommentStrikethrough=false
/instance/com.adobe.flexide.mxml.core/mxmlCommentUnderline=false
/instance/com.adobe.flexide.mxml.core/mxmlComponentTagBold=false
/instance/com.adobe.flexide.mxml.core/mxmlComponentTagColor=\#BED6FF
/instance/com.adobe.flexide.mxml.core/mxmlComponentTagItalic=false
/instance/com.adobe.flexide.mxml.core/mxmlComponentTagStrikethrough=false
/instance/com.adobe.flexide.mxml.core/mxmlComponentTagUnderline=false
/instance/com.adobe.flexide.mxml.core/mxmlProcessingInstructionBold=false
/instance/com.adobe.flexide.mxml.core/mxmlProcessingInstructionColor=\#FFFFFF
/instance/com.adobe.flexide.mxml.core/mxmlProcessingInstructionItalic=false
/instance/com.adobe.flexide.mxml.core/mxmlProcessingInstructionStrikethrough=false
/instance/com.adobe.flexide.mxml.core/mxmlProcessingInstructionUnderline=false
/instance/com.adobe.flexide.mxml.core/mxmlStringBold=false
/instance/com.adobe.flexide.mxml.core/mxmlStringColor=\#FFC600
/instance/com.adobe.flexide.mxml.core/mxmlStringItalic=false
/instance/com.adobe.flexide.mxml.core/mxmlStringStrikethrough=false
/instance/com.adobe.flexide.mxml.core/mxmlStringUnderline=false
/instance/com.adobe.flexide.mxml.core/mxmlTagBold=false
/instance/com.adobe.flexide.mxml.core/mxmlTagColor=\#79ABFF
/instance/com.adobe.flexide.mxml.core/mxmlTagItalic=false
/instance/com.adobe.flexide.mxml.core/mxmlTagStrikethrough=false
/instance/com.adobe.flexide.mxml.core/mxmlTagUnderline=false
/instance/com.adobe.flexide.mxml.core/mxmlTextBold=false
/instance/com.adobe.flexide.mxml.core/mxmlTextColor=\#D8D8D8
/instance/com.adobe.flexide.mxml.core/mxmlTextItalic=false
/instance/com.adobe.flexide.mxml.core/mxmlTextStrikethrough=false
/instance/com.adobe.flexide.mxml.core/mxmlTextUnderline=false
/instance/com.adobe.flexide.mxml.core/overriddenByCSS=,mxmlProcessingInstructionStrikethrough,mxmlProcessingInstructionBold,mxmlTextBold,mxmlComponentTagStrikethrough,mxmlTextUnderline,asASDocItalic,mxmlProcessingInstructionUnderline,mxmlTagColor,asASDocColor,mxmlCommentStrikethrough,mxmlComponentTagItalic,mxmlCommentItalic,mxmlTagUnderline,mxmlComponentTagBold,mxmlStringColor,mxmlTagBold,mxmlProcessingInstructionItalic,mxmlStringBold,mxmlStringUnderline,mxmlTextStrikethrough,mxmlCommentUnderline,mxmlStringItalic,asASDocUnderline,mxmlProcessingInstructionColor,mxmlStringStrikethrough,mxmlComponentTagColor,asASDocBold,mxmlTagStrikethrough,mxmlTextColor,mxmlTextItalic,mxmlTagItalic,asASDocStrikethrough,mxmlComponentTagUnderline,mxmlCommentColor,mxmlCommentBold,
/instance/com.android.ide.eclipse.adt/com.android.ide.eclipse.adt.fixLegacyEditors=1
/instance/com.android.ide.eclipse.adt/com.android.ide.eclipse.adt.sdk=C\:\\tools\\android-sdk-windows
/instance/com.android.ide.eclipse.adt/com.android.ide.eclipse.adt.xmlEditor=true
/instance/com.axmor.eclipse.typescript.editor/overriddenByCSS=,semanticHighlighting.ts_interface.enabled,semanticHighlighting.ts_interface.color,semanticHighlighting.ts_class.italic,semanticHighlighting.ts_localVariable.bold,ts_java_doc,semanticHighlighting.ts_class.bold,semanticHighlighting.ts_interface.underline,semanticHighlighting.ts_module.underline,semanticHighlighting.ts_method.color,semanticHighlighting.ts_module.color,semanticHighlighting.ts_module.bold,semanticHighlighting.ts_module.enabled,semanticHighlighting.ts_method.strikethrough,semanticHighlighting.ts_class.enabled,ts_reference,ts_keyword,ts_brackets,ts_comment,semanticHighlighting.ts_classProperty.strikethrough,semanticHighlighting.ts_method.bold,semanticHighlighting.ts_localVariable.enabled,ts_default,semanticHighlighting.ts_interface.bold,semanticHighlighting.ts_classProperty.color,semanticHighlighting.ts_method.underline,semanticHighlighting.ts_localVariable.color,semanticHighlighting.ts_classProperty.enabled,semanticHighlighting.ts_classProperty.underline,semanticHighlighting.ts_localVariable.strikethrough,semanticHighlighting.ts_interface.strikethrough,semanticHighlighting.ts_class.strikethrough,semanticHighlighting.ts_method.enabled,semanticHighlighting.ts_module.italic,semanticHighlighting.ts_module.strikethrough,semanticHighlighting.ts_class.underline,semanticHighlighting.ts_localVariable.underline,semanticHighlighting.ts_classProperty.bold,ts_number,semanticHighlighting.ts_method.italic,semanticHighlighting.ts_class.color,semanticHighlighting.ts_classProperty.italic,semanticHighlighting.ts_localVariable.italic,semanticHighlighting.ts_interface.italic,ts_string,
/instance/com.axmor.eclipse.typescript.editor/semanticHighlighting.ts_class.bold=false
/instance/com.axmor.eclipse.typescript.editor/semanticHighlighting.ts_class.color=210,82,82
/instance/com.axmor.eclipse.typescript.editor/semanticHighlighting.ts_class.enabled=true
/instance/com.axmor.eclipse.typescript.editor/semanticHighlighting.ts_class.italic=false
/instance/com.axmor.eclipse.typescript.editor/semanticHighlighting.ts_class.strikethrough=false
/instance/com.axmor.eclipse.typescript.editor/semanticHighlighting.ts_class.underline=false
/instance/com.axmor.eclipse.typescript.editor/semanticHighlighting.ts_classProperty.bold=false
/instance/com.axmor.eclipse.typescript.editor/semanticHighlighting.ts_classProperty.color=190,214,255
/instance/com.axmor.eclipse.typescript.editor/semanticHighlighting.ts_classProperty.enabled=true
/instance/com.axmor.eclipse.typescript.editor/semanticHighlighting.ts_classProperty.italic=false
/instance/com.axmor.eclipse.typescript.editor/semanticHighlighting.ts_classProperty.strikethrough=false
/instance/com.axmor.eclipse.typescript.editor/semanticHighlighting.ts_classProperty.underline=false
/instance/com.axmor.eclipse.typescript.editor/semanticHighlighting.ts_interface.bold=false
/instance/com.axmor.eclipse.typescript.editor/semanticHighlighting.ts_interface.color=209,151,217
/instance/com.axmor.eclipse.typescript.editor/semanticHighlighting.ts_interface.enabled=true
/instance/com.axmor.eclipse.typescript.editor/semanticHighlighting.ts_interface.italic=false
/instance/com.axmor.eclipse.typescript.editor/semanticHighlighting.ts_interface.strikethrough=false
/instance/com.axmor.eclipse.typescript.editor/semanticHighlighting.ts_interface.underline=false
/instance/com.axmor.eclipse.typescript.editor/semanticHighlighting.ts_localVariable.bold=false
/instance/com.axmor.eclipse.typescript.editor/semanticHighlighting.ts_localVariable.color=121,171,255
/instance/com.axmor.eclipse.typescript.editor/semanticHighlighting.ts_localVariable.enabled=true
/instance/com.axmor.eclipse.typescript.editor/semanticHighlighting.ts_localVariable.italic=false
/instance/com.axmor.eclipse.typescript.editor/semanticHighlighting.ts_localVariable.strikethrough=false
/instance/com.axmor.eclipse.typescript.editor/semanticHighlighting.ts_localVariable.underline=false
/instance/com.axmor.eclipse.typescript.editor/semanticHighlighting.ts_method.bold=false
/instance/com.axmor.eclipse.typescript.editor/semanticHighlighting.ts_method.color=255,255,255
/instance/com.axmor.eclipse.typescript.editor/semanticHighlighting.ts_method.enabled=true
/instance/com.axmor.eclipse.typescript.editor/semanticHighlighting.ts_method.italic=false
/instance/com.axmor.eclipse.typescript.editor/semanticHighlighting.ts_method.strikethrough=false
/instance/com.axmor.eclipse.typescript.editor/semanticHighlighting.ts_method.underline=false
/instance/com.axmor.eclipse.typescript.editor/semanticHighlighting.ts_module.bold=false
/instance/com.axmor.eclipse.typescript.editor/semanticHighlighting.ts_module.color=210,82,82
/instance/com.axmor.eclipse.typescript.editor/semanticHighlighting.ts_module.enabled=true
/instance/com.axmor.eclipse.typescript.editor/semanticHighlighting.ts_module.italic=false
/instance/com.axmor.eclipse.typescript.editor/semanticHighlighting.ts_module.strikethrough=false
/instance/com.axmor.eclipse.typescript.editor/semanticHighlighting.ts_module.underline=false
/instance/com.axmor.eclipse.typescript.editor/ts_brackets=216,216,216
/instance/com.axmor.eclipse.typescript.editor/ts_comment=199,221,12
/instance/com.axmor.eclipse.typescript.editor/ts_default=216,216,216
/instance/com.axmor.eclipse.typescript.editor/ts_java_doc=204,223,50
/instance/com.axmor.eclipse.typescript.editor/ts_keyword=141,203,226
/instance/com.axmor.eclipse.typescript.editor/ts_number=127,179,71
/instance/com.axmor.eclipse.typescript.editor/ts_reference=255,255,255
/instance/com.axmor.eclipse.typescript.editor/ts_string=255,198,0
/instance/com.codeium/API\ Key=374de0aa-401d-469a-997d-dac606073c5c
/instance/com.collabnet.subversion.merge/merge_provider_set=true
/instance/com.dubture.twig.ui/codeStyleNormal=\#D8D8D8 | null | null | null | null | null
/instance/com.dubture.twig.ui/editorBlocknameColor=\#8DCBE2 | null | null | null | null | null
/instance/com.dubture.twig.ui/editorColorBoundarymaker=\#D8D8D8 | null | null | null | null | null
/instance/com.dubture.twig.ui/editorColorComment=\#C7DD0C | null | null | false | null | null
/instance/com.dubture.twig.ui/editorColorHeredoc=\#CCDF32 | null | null | false | null | null
/instance/com.dubture.twig.ui/editorColorKeyword=\#8DCBE2 | null | null | null | null | null
/instance/com.dubture.twig.ui/editorColorLineComment=\#C7DD0C | null | null | false | null | null
/instance/com.dubture.twig.ui/editorColorNumber=\#7FB347 | null | null | null | null | null
/instance/com.dubture.twig.ui/editorColorPHPDocComment=\#CCDF32 | null | null | false | null | null
/instance/com.dubture.twig.ui/editorColorPhpdoc=\#CCDF32 | null | null | false | null | null
/instance/com.dubture.twig.ui/editorColorString=\#FFC600 | null | null | null | null | null
/instance/com.dubture.twig.ui/editorColorTask=\#CCDF32 | null | null | false | null | null
/instance/com.dubture.twig.ui/editorColorVariable=\#79ABFF | null | null | null | null | null
/instance/com.dubture.twig.ui/editorStmtColorBoundarymaker=\#D8D8D8 | null | null | null | null | null
/instance/com.dubture.twig.ui/overriddenByCSS=,editorColorHeredoc,editorColorPhpdoc,codeStyleNormal,editorColorComment,editorColorTask,editorColorVariable,editorBlocknameColor,editorColorBoundarymaker,editorColorPHPDocComment,editorColorString,editorStmtColorBoundarymaker,editorColorKeyword,editorColorLineComment,editorColorNumber,
/instance/com.enerjy.analyzer.ui/JAVA0001.ignoreNumeric=true
/instance/com.enerjy.analyzer.ui/JAVA0005._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0005.importOrder=java.;javax.;junit.;net.;org.;at.;com.;
/instance/com.enerjy.analyzer.ui/JAVA0008._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0011._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0014._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0016._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0018.reFirst=UL_
/instance/com.enerjy.analyzer.ui/JAVA0024._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0025._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0031._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0032._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0034._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0035._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0036._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0039._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0040._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0044._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0049.maxDepth=7
/instance/com.enerjy.analyzer.ui/JAVA0051._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0054._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0054.maxDepth=5
/instance/com.enerjy.analyzer.ui/JAVA0057._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0058._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0059._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0062._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0064.maxVariations=1
/instance/com.enerjy.analyzer.ui/JAVA0071._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0076._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0082._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0087._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0098._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0100._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0100.maxNonFinals=12
/instance/com.enerjy.analyzer.ui/JAVA0108._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0110._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0112._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0113._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0114._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0117._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0118._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0123._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0125._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0126._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0128._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0132._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0136._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0137._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0138._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0144._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0150._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0160._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0166._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0170._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0173._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0177._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0234._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0244._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0253._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0254._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0256._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0258._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0260._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0262._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0264._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0270._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0277._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0282._enabled=false
/instance/com.enerjy.analyzer.ui/JAVA0286._enabled=false
/instance/com.enerjy.analyzer.ui/bundleVersion=3.2.371
/instance/com.enerjy.analyzer.ui/configuredVer=3.2.371
/instance/com.enerjy.analyzer.ui/filterMgr=H4sIAAAAAAAAAFvzloG1uIhBPTk/Vy81L7Uoq1IPyMzNz9NLy8wpSS0q1nMD076JeYnpqUUMEMDIxMDow8AOVVLCwO+TlViWqF9akpmjH5xaYl1RADRTECSmBxLT80gszgCK73JpnTptx3YTZgaGioJyHqBBAvYOEAOB6tVwuyGgKDUtswLiEhQnsBWAZUoYhCAuyEnMS9cPLinKzEsHOgIorF+QkZOfrJtcXKxfkliUnlqiXwEAL7CgmvMAAAA\=
/instance/com.enerjy.analyzer.ui/firstRun=3.2.371
/instance/com.enerjy.common/registryVersion=2
/instance/com.enerjy.index.ui/bundleVersion=1.2.371
/instance/com.genuitec.eclipse.codetogether.ui/codetogether.main.view.displayed=true
/instance/com.genuitec.eclipse.codetogether.ui/uuid=OAZWUjcGsVswAQ67grAkdI
/instance/com.genuitec.eclipse.monitor/last.upload.time=1612338461112
/instance/com.genuitec.eclipse.sqlexplorer/overriddenByCSS=,sql_columns,sql_default,sql_keyword,sql_multi_line_comment,sql_single_line_comment,sql_string,sql_table,
/instance/com.genuitec.eclipse.sqlexplorer/sql_columns=171,115,255
/instance/com.genuitec.eclipse.sqlexplorer/sql_default=210,215,218
/instance/com.genuitec.eclipse.sqlexplorer/sql_keyword=141,203,226
/instance/com.genuitec.eclipse.sqlexplorer/sql_multi_line_comment=199,221,12
/instance/com.genuitec.eclipse.sqlexplorer/sql_single_line_comment=199,221,12
/instance/com.genuitec.eclipse.sqlexplorer/sql_string=255,198,0
/instance/com.genuitec.eclipse.sqlexplorer/sql_table=49,132,255
/instance/com.genuitec.eclipse.theming.ui/applyBackground=false
/instance/com.genuitec.eclipse.theming.ui/approved.defs.file.last.changed.time=1607625304000
/instance/com.genuitec.eclipse.theming.ui/configurationInstallLocation=/C\:/tools/eclipse/
/instance/com.genuitec.eclipse.theming.ui/elearning.dont.show.until=1613375260379
/instance/com.genuitec.eclipse.theming.ui/iconcolormode=primary
/instance/com.genuitec.eclipse.theming.ui/last.download.attempt.time=1612363203171
/instance/com.genuitec.eclipse.theming.ui/lastConfiguration=1612363190797
/instance/com.genuitec.eclipse.theming.ui/newinstall=true
/instance/com.genuitec.eclipse.theming.ui/workbench.theme=Dark Gray
/instance/com.github.eclipsecolortheme/colorTheme=Darkest Dark
/instance/com.github.eclipsecolortheme/colorThemeExplicit=true
/instance/com.github.rustdt.ide.ui/editor.coloring2.attribute=255,255,255
/instance/com.github.rustdt.ide.ui/editor.coloring2.attribute\#dark\#=255,255,255
/instance/com.github.rustdt.ide.ui/editor.coloring2.character=255,198,0
/instance/com.github.rustdt.ide.ui/editor.coloring2.character\#dark\#=255,198,0
/instance/com.github.rustdt.ide.ui/editor.coloring2.comment=199,221,12
/instance/com.github.rustdt.ide.ui/editor.coloring2.comment\#dark\#=199,221,12
/instance/com.github.rustdt.ide.ui/editor.coloring2.default=216,216,216
/instance/com.github.rustdt.ide.ui/editor.coloring2.default\#dark\#=216,216,216
/instance/com.github.rustdt.ide.ui/editor.coloring2.doc_comment=204,223,50
/instance/com.github.rustdt.ide.ui/editor.coloring2.doc_comment\#dark\#=204,223,50
/instance/com.github.rustdt.ide.ui/editor.coloring2.keyword=141,203,226
/instance/com.github.rustdt.ide.ui/editor.coloring2.keyword\#dark\#=141,203,226
/instance/com.github.rustdt.ide.ui/editor.coloring2.keyword_boolean=141,203,226
/instance/com.github.rustdt.ide.ui/editor.coloring2.keyword_boolean\#dark\#=141,203,226
/instance/com.github.rustdt.ide.ui/editor.coloring2.keyword_self=210,82,82
/instance/com.github.rustdt.ide.ui/editor.coloring2.keyword_self\#dark\#=210,82,82
/instance/com.github.rustdt.ide.ui/editor.coloring2.lifetime=255,255,255
/instance/com.github.rustdt.ide.ui/editor.coloring2.lifetime\#dark\#=255,255,255
/instance/com.github.rustdt.ide.ui/editor.coloring2.macro_call=255,255,255
/instance/com.github.rustdt.ide.ui/editor.coloring2.macro_call\#dark\#=255,255,255
/instance/com.github.rustdt.ide.ui/editor.coloring2.number=127,179,71
/instance/com.github.rustdt.ide.ui/editor.coloring2.number\#dark\#=127,179,71
/instance/com.github.rustdt.ide.ui/editor.coloring2.string=255,198,0
/instance/com.github.rustdt.ide.ui/editor.coloring2.string\#dark\#=255,198,0
/instance/com.github.rustdt.ide.ui/overriddenByCSS=,editor.coloring2.number\#dark\#,editor.coloring2.string\#dark\#,editor.coloring2.keyword_self\#dark\#,editor.coloring2.default,editor.coloring2.lifetime\#dark\#,editor.coloring2.character\#dark\#,editor.coloring2.keyword_self,editor.coloring2.attribute,editor.coloring2.character,editor.coloring2.attribute\#dark\#,editor.coloring2.keyword,editor.coloring2.default\#dark\#,editor.coloring2.keyword\#dark\#,editor.coloring2.string,editor.coloring2.macro_call\#dark\#,editor.coloring2.macro_call,editor.coloring2.comment\#dark\#,editor.coloring2.doc_comment\#dark\#,editor.coloring2.comment,editor.coloring2.keyword_boolean,editor.coloring2.number,editor.coloring2.keyword_boolean\#dark\#,editor.coloring2.doc_comment,editor.coloring2.lifetime,
/instance/com.github.spotbugs.plugin.eclipse/askAboutPerspectiveSwitch=never
/instance/com.github.spotbugs.plugin.eclipse/com.github.spotbugs.plugin.eclipse.findbugsMarkerOfConcern=Info
/instance/com.github.spotbugs.plugin.eclipse/com.github.spotbugs.plugin.eclipse.findbugsMarkerScariest=Error
/instance/com.github.spotbugs.plugin.eclipse/detectorAppendingToAnObjectOutputStream=AppendingToAnObjectOutputStream|true
/instance/com.github.spotbugs.plugin.eclipse/detectorAtomicityProblem=AtomicityProblem|true
/instance/com.github.spotbugs.plugin.eclipse/detectorBadAppletConstructor=BadAppletConstructor|false
/instance/com.github.spotbugs.plugin.eclipse/detectorBadResultSetAccess=BadResultSetAccess|true
/instance/com.github.spotbugs.plugin.eclipse/detectorBadSyntaxForRegularExpression=BadSyntaxForRegularExpression|true
/instance/com.github.spotbugs.plugin.eclipse/detectorBadUseOfReturnValue=BadUseOfReturnValue|true
/instance/com.github.spotbugs.plugin.eclipse/detectorBadlyOverriddenAdapter=BadlyOverriddenAdapter|true
/instance/com.github.spotbugs.plugin.eclipse/detectorBooleanReturnNull=BooleanReturnNull|true
/instance/com.github.spotbugs.plugin.eclipse/detectorCallToUnsupportedMethod=CallToUnsupportedMethod|false
/instance/com.github.spotbugs.plugin.eclipse/detectorCheckExpectedWarnings=CheckExpectedWarnings|false
/instance/com.github.spotbugs.plugin.eclipse/detectorCheckImmutableAnnotation=CheckImmutableAnnotation|true
/instance/com.github.spotbugs.plugin.eclipse/detectorCheckRelaxingNullnessAnnotation=CheckRelaxingNullnessAnnotation|true
/instance/com.github.spotbugs.plugin.eclipse/detectorCheckTypeQualifiers=CheckTypeQualifiers|true
/instance/com.github.spotbugs.plugin.eclipse/detectorCloneIdiom=CloneIdiom|true
/instance/com.github.spotbugs.plugin.eclipse/detectorComparatorIdiom=ComparatorIdiom|true
/instance/com.github.spotbugs.plugin.eclipse/detectorConfusedInheritance=ConfusedInheritance|true
/instance/com.github.spotbugs.plugin.eclipse/detectorConfusionBetweenInheritedAndOuterMethod=ConfusionBetweenInheritedAndOuterMethod|true
/instance/com.github.spotbugs.plugin.eclipse/detectorCovariantArrayAssignment=CovariantArrayAssignment|false
/instance/com.github.spotbugs.plugin.eclipse/detectorCrossSiteScripting=CrossSiteScripting|true
/instance/com.github.spotbugs.plugin.eclipse/detectorDefaultEncodingDetector=DefaultEncodingDetector|true
/instance/com.github.spotbugs.plugin.eclipse/detectorDoInsideDoPrivileged=DoInsideDoPrivileged|true
/instance/com.github.spotbugs.plugin.eclipse/detectorDontAssertInstanceofInTests=DontAssertInstanceofInTests|true
/instance/com.github.spotbugs.plugin.eclipse/detectorDontCatchIllegalMonitorStateException=DontCatchIllegalMonitorStateException|true
/instance/com.github.spotbugs.plugin.eclipse/detectorDontCatchNullPointerException=DontCatchNullPointerException|true
/instance/com.github.spotbugs.plugin.eclipse/detectorDontIgnoreResultOfPutIfAbsent=DontIgnoreResultOfPutIfAbsent|true
/instance/com.github.spotbugs.plugin.eclipse/detectorDontUseEnum=DontUseEnum|true
/instance/com.github.spotbugs.plugin.eclipse/detectorDroppedException=DroppedException|true
/instance/com.github.spotbugs.plugin.eclipse/detectorDumbMethodInvocations=DumbMethodInvocations|true
/instance/com.github.spotbugs.plugin.eclipse/detectorDumbMethods=DumbMethods|true
/instance/com.github.spotbugs.plugin.eclipse/detectorDuplicateBranches=DuplicateBranches|true
/instance/com.github.spotbugs.plugin.eclipse/detectorEmptyZipFileEntry=EmptyZipFileEntry|false
/instance/com.github.spotbugs.plugin.eclipse/detectorEqualsOperandShouldHaveClassCompatibleWithThis=EqualsOperandShouldHaveClassCompatibleWithThis|true
/instance/com.github.spotbugs.plugin.eclipse/detectorExplicitSerialization=ExplicitSerialization|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFinalizerNullsFields=FinalizerNullsFields|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindBadCast2=FindBadCast2|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindBadEndOfStreamCheck=FindBadEndOfStreamCheck|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindBadForLoop=FindBadForLoop|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindCircularDependencies=FindCircularDependencies|false
/instance/com.github.spotbugs.plugin.eclipse/detectorFindComparatorProblems=FindComparatorProblems|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindDeadLocalStores=FindDeadLocalStores|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindDoubleCheck=FindDoubleCheck|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindEmptySynchronizedBlock=FindEmptySynchronizedBlock|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindFieldSelfAssignment=FindFieldSelfAssignment|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindFinalizeInvocations=FindFinalizeInvocations|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindFloatEquality=FindFloatEquality|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindHEmismatch=FindHEmismatch|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindInconsistentSync2=FindInconsistentSync2|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindInstanceLockOnSharedStaticData=FindInstanceLockOnSharedStaticData|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindJSR166LockMonitorenter=FindJSR166LockMonitorenter|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindLocalSelfAssignment2=FindLocalSelfAssignment2|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindMaskedFields=FindMaskedFields|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindMismatchedWaitOrNotify=FindMismatchedWaitOrNotify|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindNakedNotify=FindNakedNotify|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindNonShortCircuit=FindNonShortCircuit|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindNullDeref=FindNullDeref|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindNullDerefsInvolvingNonShortCircuitEvaluation=FindNullDerefsInvolvingNonShortCircuitEvaluation|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindOpenStream=FindOpenStream|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindOverridableMethodCall=FindOverridableMethodCall|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindPuzzlers=FindPuzzlers|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindRefComparison=FindRefComparison|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindReturnRef=FindReturnRef|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindRoughConstants=FindRoughConstants|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindRunInvocations=FindRunInvocations|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindSelfComparison=FindSelfComparison|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindSelfComparison2=FindSelfComparison2|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindSleepWithLockHeld=FindSleepWithLockHeld|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindSpinLoop=FindSpinLoop|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindSqlInjection=FindSqlInjection|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindTwoLockWait=FindTwoLockWait|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindUncalledPrivateMethods=FindUncalledPrivateMethods|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindUnconditionalWait=FindUnconditionalWait|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindUninitializedGet=FindUninitializedGet|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindUnrelatedTypesInGenericContainer=FindUnrelatedTypesInGenericContainer|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindUnreleasedLock=FindUnreleasedLock|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindUnsatisfiedObligation=FindUnsatisfiedObligation|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindUnsyncGet=FindUnsyncGet|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindUseOfNonSerializableValue=FindUseOfNonSerializableValue|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindUselessControlFlow=FindUselessControlFlow|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFindUselessObjects=FindUselessObjects|true
/instance/com.github.spotbugs.plugin.eclipse/detectorFormatStringChecker=FormatStringChecker|true
/instance/com.github.spotbugs.plugin.eclipse/detectorHugeSharedStringConstants=HugeSharedStringConstants|true
/instance/com.github.spotbugs.plugin.eclipse/detectorIDivResultCastToDouble=IDivResultCastToDouble|true
/instance/com.github.spotbugs.plugin.eclipse/detectorIncompatMask=IncompatMask|true
/instance/com.github.spotbugs.plugin.eclipse/detectorInconsistentAnnotations=InconsistentAnnotations|true
/instance/com.github.spotbugs.plugin.eclipse/detectorInefficientIndexOf=InefficientIndexOf|false
/instance/com.github.spotbugs.plugin.eclipse/detectorInefficientInitializationInsideLoop=InefficientInitializationInsideLoop|false
/instance/com.github.spotbugs.plugin.eclipse/detectorInefficientMemberAccess=InefficientMemberAccess|false
/instance/com.github.spotbugs.plugin.eclipse/detectorInefficientReplaceAll=InefficientReplaceAll|false
/instance/com.github.spotbugs.plugin.eclipse/detectorInefficientToArray=InefficientToArray|false
/instance/com.github.spotbugs.plugin.eclipse/detectorInfiniteLoop=InfiniteLoop|true
/instance/com.github.spotbugs.plugin.eclipse/detectorInfiniteRecursiveLoop=InfiniteRecursiveLoop|true
/instance/com.github.spotbugs.plugin.eclipse/detectorInheritanceUnsafeGetResource=InheritanceUnsafeGetResource|true
/instance/com.github.spotbugs.plugin.eclipse/detectorInitializationChain=InitializationChain|true
/instance/com.github.spotbugs.plugin.eclipse/detectorInitializeNonnullFieldsInConstructor=InitializeNonnullFieldsInConstructor|true
/instance/com.github.spotbugs.plugin.eclipse/detectorInstantiateStaticClass=InstantiateStaticClass|true
/instance/com.github.spotbugs.plugin.eclipse/detectorIntCast2LongAsInstant=IntCast2LongAsInstant|true
/instance/com.github.spotbugs.plugin.eclipse/detectorInvalidJUnitTest=InvalidJUnitTest|true
/instance/com.github.spotbugs.plugin.eclipse/detectorIteratorIdioms=IteratorIdioms|true
/instance/com.github.spotbugs.plugin.eclipse/detectorLazyInit=LazyInit|true
/instance/com.github.spotbugs.plugin.eclipse/detectorLoadOfKnownNullValue=LoadOfKnownNullValue|true
/instance/com.github.spotbugs.plugin.eclipse/detectorLostLoggerDueToWeakReference=LostLoggerDueToWeakReference|true
/instance/com.github.spotbugs.plugin.eclipse/detectorMethodReturnCheck=MethodReturnCheck|true
/instance/com.github.spotbugs.plugin.eclipse/detectorMultithreadedInstanceAccess=MultithreadedInstanceAccess|true
/instance/com.github.spotbugs.plugin.eclipse/detectorMutableEnum=MutableEnum|true
/instance/com.github.spotbugs.plugin.eclipse/detectorMutableLock=MutableLock|true
/instance/com.github.spotbugs.plugin.eclipse/detectorMutableStaticFields=MutableStaticFields|true
/instance/com.github.spotbugs.plugin.eclipse/detectorNaming=Naming|true
/instance/com.github.spotbugs.plugin.eclipse/detectorNoteUnconditionalParamDerefs=NoteUnconditionalParamDerefs|true
/instance/com.github.spotbugs.plugin.eclipse/detectorNumberConstructor=NumberConstructor|true
/instance/com.github.spotbugs.plugin.eclipse/detectorOptionalReturnNull=OptionalReturnNull|true
/instance/com.github.spotbugs.plugin.eclipse/detectorOverridingEqualsNotSymmetrical=OverridingEqualsNotSymmetrical|true
/instance/com.github.spotbugs.plugin.eclipse/detectorOverridingMethodsMustInvokeSuperDetector=OverridingMethodsMustInvokeSuperDetector|true
/instance/com.github.spotbugs.plugin.eclipse/detectorPreferZeroLengthArrays=PreferZeroLengthArrays|true
/instance/com.github.spotbugs.plugin.eclipse/detectorPublicSemaphores=PublicSemaphores|false
/instance/com.github.spotbugs.plugin.eclipse/detectorQuestionableBooleanAssignment=QuestionableBooleanAssignment|true
/instance/com.github.spotbugs.plugin.eclipse/detectorReadOfInstanceFieldInMethodInvokedByConstructorInSuperclass=ReadOfInstanceFieldInMethodInvokedByConstructorInSuperclass|true
/instance/com.github.spotbugs.plugin.eclipse/detectorReadReturnShouldBeChecked=ReadReturnShouldBeChecked|true
/instance/com.github.spotbugs.plugin.eclipse/detectorRedundantConditions=RedundantConditions|true
/instance/com.github.spotbugs.plugin.eclipse/detectorRedundantInterfaces=RedundantInterfaces|true
/instance/com.github.spotbugs.plugin.eclipse/detectorReflectionIncreaseAccessibility=ReflectionIncreaseAccessibility|true
/instance/com.github.spotbugs.plugin.eclipse/detectorRepeatedConditionals=RepeatedConditionals|true
/instance/com.github.spotbugs.plugin.eclipse/detectorRuntimeExceptionCapture=RuntimeExceptionCapture|true
/instance/com.github.spotbugs.plugin.eclipse/detectorSerializableIdiom=SerializableIdiom|true
/instance/com.github.spotbugs.plugin.eclipse/detectorStartInConstructor=StartInConstructor|true
/instance/com.github.spotbugs.plugin.eclipse/detectorStaticCalendarDetector=StaticCalendarDetector|true
/instance/com.github.spotbugs.plugin.eclipse/detectorStringConcatenation=StringConcatenation|true
/instance/com.github.spotbugs.plugin.eclipse/detectorSuperfluousInstanceOf=SuperfluousInstanceOf|true
/instance/com.github.spotbugs.plugin.eclipse/detectorSuspiciousThreadInterrupted=SuspiciousThreadInterrupted|true
/instance/com.github.spotbugs.plugin.eclipse/detectorSwitchFallthrough=SwitchFallthrough|true
/instance/com.github.spotbugs.plugin.eclipse/detectorSynchronizationOnSharedBuiltinConstant=SynchronizationOnSharedBuiltinConstant|true
/instance/com.github.spotbugs.plugin.eclipse/detectorSynchronizeAndNullCheckField=SynchronizeAndNullCheckField|true
/instance/com.github.spotbugs.plugin.eclipse/detectorSynchronizeOnClassLiteralNotGetClass=SynchronizeOnClassLiteralNotGetClass|true
/instance/com.github.spotbugs.plugin.eclipse/detectorSynchronizingOnContentsOfFieldToProtectField=SynchronizingOnContentsOfFieldToProtectField|true
/instance/com.github.spotbugs.plugin.eclipse/detectorURLProblems=URLProblems|true
/instance/com.github.spotbugs.plugin.eclipse/detectorUncallableMethodOfAnonymousClass=UncallableMethodOfAnonymousClass|true
/instance/com.github.spotbugs.plugin.eclipse/detectorUnnecessaryMath=UnnecessaryMath|true
/instance/com.github.spotbugs.plugin.eclipse/detectorUnreadFields=UnreadFields|true
/instance/com.github.spotbugs.plugin.eclipse/detectorUselessSubclassMethod=UselessSubclassMethod|false
/instance/com.github.spotbugs.plugin.eclipse/detectorVarArgsProblems=VarArgsProblems|true
/instance/com.github.spotbugs.plugin.eclipse/detectorVolatileUsage=VolatileUsage|true
/instance/com.github.spotbugs.plugin.eclipse/detectorWaitInLoop=WaitInLoop|true
/instance/com.github.spotbugs.plugin.eclipse/detectorWrongMapIterator=WrongMapIterator|true
/instance/com.github.spotbugs.plugin.eclipse/detectorXMLFactoryBypass=XMLFactoryBypass|true
/instance/com.github.spotbugs.plugin.eclipse/detector_threshold=2
/instance/com.github.spotbugs.plugin.eclipse/effort=default
/instance/com.github.spotbugs.plugin.eclipse/filter_settings=Medium|BAD_PRACTICE,CORRECTNESS,MT_CORRECTNESS,PERFORMANCE,STYLE|false|15
/instance/com.github.spotbugs.plugin.eclipse/filter_settings_neg=MALICIOUS_CODE,SECURITY,EXPERIMENTAL,NOISE,I18N|
/instance/com.github.spotbugs.plugin.eclipse/includefilter0=../git/ph-genericode/findbugs-exclude.xml|true
/instance/com.github.spotbugs.plugin.eclipse/lastUsedExportFilter=CN_IDIOM_NO_SUPER_CALL, NM_SAME_SIMPLE_NAME_AS_SUPERCLASS, NM_WRONG_PACKAGE, NP_BOOLEAN_RETURN_NULL
/instance/com.github.spotbugs.plugin.eclipse/lastUsedGrouping=[Pattern, Marker]
/instance/com.github.spotbugs.plugin.eclipse/run_at_full_build=false
/instance/com.github.spotbugs.plugin.eclipse/switchPerspectiveAfterAnalysis=true
/instance/com.google.eclipse.protobuf.Protobuf/com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.comment.bgColor=25,29,31
/instance/com.google.eclipse.protobuf.Protobuf/com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.comment.color=199,221,12
/instance/com.google.eclipse.protobuf.Protobuf/com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.default.bgColor=25,29,31
/instance/com.google.eclipse.protobuf.Protobuf/com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.default.color=216,216,216
/instance/com.google.eclipse.protobuf.Protobuf/com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.enum.bgColor=25,29,31
/instance/com.google.eclipse.protobuf.Protobuf/com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.enum.color=127,179,71
/instance/com.google.eclipse.protobuf.Protobuf/com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.enumDefinition.bgColor=25,29,31
/instance/com.google.eclipse.protobuf.Protobuf/com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.enumDefinition.color=127,179,71
/instance/com.google.eclipse.protobuf.Protobuf/com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.enumLiteral.bgColor=25,29,31
/instance/com.google.eclipse.protobuf.Protobuf/com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.enumLiteral.color=127,179,71
/instance/com.google.eclipse.protobuf.Protobuf/com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.enumLiteralDefinition.bgColor=25,29,31
/instance/com.google.eclipse.protobuf.Protobuf/com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.enumLiteralDefinition.color=127,179,71
/instance/com.google.eclipse.protobuf.Protobuf/com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.enumLiteralIndex.bgColor=25,29,31
/instance/com.google.eclipse.protobuf.Protobuf/com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.enumLiteralIndex.color=255,255,255
/instance/com.google.eclipse.protobuf.Protobuf/com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.keyword.bgColor=25,29,31
/instance/com.google.eclipse.protobuf.Protobuf/com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.keyword.color=141,203,226
/instance/com.google.eclipse.protobuf.Protobuf/com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.message.bgColor=25,29,31
/instance/com.google.eclipse.protobuf.Protobuf/com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.message.color=210,82,82
/instance/com.google.eclipse.protobuf.Protobuf/com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.messageDefinition.bgColor=25,29,31
/instance/com.google.eclipse.protobuf.Protobuf/com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.messageDefinition.color=210,82,82
/instance/com.google.eclipse.protobuf.Protobuf/com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.messageFieldIndex.bgColor=25,29,31
/instance/com.google.eclipse.protobuf.Protobuf/com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.messageFieldIndex.color=255,255,255
/instance/com.google.eclipse.protobuf.Protobuf/com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.number.bgColor=25,29,31
/instance/com.google.eclipse.protobuf.Protobuf/com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.number.color=127,179,71
/instance/com.google.eclipse.protobuf.Protobuf/com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.punctuation.bgColor=25,29,31
/instance/com.google.eclipse.protobuf.Protobuf/com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.punctuation.color=210,82,82
/instance/com.google.eclipse.protobuf.Protobuf/com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.rpcArgument.bgColor=25,29,31
/instance/com.google.eclipse.protobuf.Protobuf/com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.rpcArgument.color=191,164,164
/instance/com.google.eclipse.protobuf.Protobuf/com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.rpcDefinition.bgColor=25,29,31
/instance/com.google.eclipse.protobuf.Protobuf/com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.rpcDefinition.color=210,82,82
/instance/com.google.eclipse.protobuf.Protobuf/com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.rpcReturnType.bgColor=25,29,31
/instance/com.google.eclipse.protobuf.Protobuf/com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.rpcReturnType.color=191,164,164
/instance/com.google.eclipse.protobuf.Protobuf/com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.serviceDefinition.bgColor=25,29,31
/instance/com.google.eclipse.protobuf.Protobuf/com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.serviceDefinition.color=210,82,82
/instance/com.google.eclipse.protobuf.Protobuf/com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.string.bgColor=25,29,31
/instance/com.google.eclipse.protobuf.Protobuf/com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.string.color=255,198,0
/instance/com.google.eclipse.protobuf.Protobuf/overriddenByCSS=,com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.enumLiteralIndex.bgColor,com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.serviceDefinition.color,com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.message.bgColor,com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.number.color,com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.rpcDefinition.color,com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.default.bgColor,com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.enumLiteral.color,com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.messageDefinition.bgColor,com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.rpcDefinition.bgColor,com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.default.color,com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.rpcArgument.bgColor,com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.enumLiteral.bgColor,com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.keyword.color,com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.messageFieldIndex.color,com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.keyword.bgColor,com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.punctuation.bgColor,com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.rpcArgument.color,com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.string.color,com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.messageFieldIndex.bgColor,com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.comment.color,com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.punctuation.color,com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.serviceDefinition.bgColor,com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.rpcReturnType.color,com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.rpcReturnType.bgColor,com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.comment.bgColor,com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.string.bgColor,com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.enumLiteralDefinition.color,com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.enumLiteralIndex.color,com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.enum.bgColor,com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.enumLiteralDefinition.bgColor,com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.number.bgColor,com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.enumDefinition.color,com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.messageDefinition.color,com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.enumDefinition.bgColor,com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.enum.color,com.google.eclipse.protobuf.Protobuf.syntaxColorer.tokenStyles.message.color,
/instance/com.googlecode.goclipse.ui/overriddenByCSS=,syntax_highlighting_value,syntax_highlighting_text,syntax_highlighting_builtin_function,syntax_highlighting_keyword,syntax_highlighting_string,syntax_highlighting_character,syntax_highlighting_multiline_string,syntax_highlighting_comment,syntax_highlighting_primitive,syntax_highlighting_operator,syntax_highlighting_syntax_chars,
/instance/com.googlecode.goclipse.ui/syntax_highlighting_builtin_function=255,255,255
/instance/com.googlecode.goclipse.ui/syntax_highlighting_character=255,198,0
/instance/com.googlecode.goclipse.ui/syntax_highlighting_comment=199,221,12
/instance/com.googlecode.goclipse.ui/syntax_highlighting_keyword=141,203,226
/instance/com.googlecode.goclipse.ui/syntax_highlighting_multiline_string=255,198,0
/instance/com.googlecode.goclipse.ui/syntax_highlighting_operator=216,216,216
/instance/com.googlecode.goclipse.ui/syntax_highlighting_primitive=127,179,71
/instance/com.googlecode.goclipse.ui/syntax_highlighting_string=255,198,0
/instance/com.googlecode.goclipse.ui/syntax_highlighting_syntax_chars=216,216,216
/instance/com.googlecode.goclipse.ui/syntax_highlighting_text=216,216,216
/instance/com.googlecode.goclipse.ui/syntax_highlighting_value=127,179,71
/instance/com.palantir.typescript/overriddenByCSS=,syntaxColoring.numberLiteral.color,syntaxColoring.operator.color,syntaxColoring.comment.color,syntaxColoring.keyword.color,syntaxColoring.regExpLiteral.color,syntaxColoring.stringLiteral.color,syntaxColoring.identifier.color,syntaxColoring.punctuation.color,
/instance/com.palantir.typescript/syntaxColoring.comment.color=199,221,12
/instance/com.palantir.typescript/syntaxColoring.identifier.color=216,216,216
/instance/com.palantir.typescript/syntaxColoring.keyword.color=141,203,226
/instance/com.palantir.typescript/syntaxColoring.numberLiteral.color=127,179,71
/instance/com.palantir.typescript/syntaxColoring.operator.color=216,216,216
/instance/com.palantir.typescript/syntaxColoring.punctuation.color=216,216,216
/instance/com.palantir.typescript/syntaxColoring.regExpLiteral.color=255,198,0
/instance/com.palantir.typescript/syntaxColoring.stringLiteral.color=255,198,0
/instance/com.powerflasher.fdt.ui/AS_CONSTANTS_color=239,192,144
/instance/com.powerflasher.fdt.ui/AS_CONSTANTS_color_bold=false
/instance/com.powerflasher.fdt.ui/AS_CONSTANTS_color_italic=false
/instance/com.powerflasher.fdt.ui/AS_CONSTANTS_color_strikethrough=false
/instance/com.powerflasher.fdt.ui/AS_CONSTANTS_color_underline=false
/instance/com.powerflasher.fdt.ui/AS_CORE_color=210,82,82
/instance/com.powerflasher.fdt.ui/AS_CORE_color_bold=false
/instance/com.powerflasher.fdt.ui/AS_CORE_color_italic=false
/instance/com.powerflasher.fdt.ui/AS_CORE_color_strikethrough=false
/instance/com.powerflasher.fdt.ui/AS_CORE_color_underline=false
/instance/com.powerflasher.fdt.ui/AS_DEFAULT_color=216,216,216
/instance/com.powerflasher.fdt.ui/AS_DEFAULT_color_bold=false
/instance/com.powerflasher.fdt.ui/AS_DEFAULT_color_italic=false
/instance/com.powerflasher.fdt.ui/AS_DEFAULT_color_strikethrough=false
/instance/com.powerflasher.fdt.ui/AS_DEFAULT_color_underline=false
/instance/com.powerflasher.fdt.ui/AS_INTERNAL_color=141,203,226
/instance/com.powerflasher.fdt.ui/AS_INTERNAL_color_bold=false
/instance/com.powerflasher.fdt.ui/AS_INTERNAL_color_italic=false
/instance/com.powerflasher.fdt.ui/AS_INTERNAL_color_strikethrough=false
/instance/com.powerflasher.fdt.ui/AS_INTERNAL_color_underline=false
/instance/com.powerflasher.fdt.ui/AS_KEYWORD_color=141,203,226
/instance/com.powerflasher.fdt.ui/AS_KEYWORD_color_bold=false
/instance/com.powerflasher.fdt.ui/AS_KEYWORD_color_italic=false
/instance/com.powerflasher.fdt.ui/AS_KEYWORD_color_strikethrough=false
/instance/com.powerflasher.fdt.ui/AS_KEYWORD_color_underline=false
/instance/com.powerflasher.fdt.ui/AS_PRIVATE_color=141,203,226
/instance/com.powerflasher.fdt.ui/AS_PRIVATE_color_bold=false
/instance/com.powerflasher.fdt.ui/AS_PRIVATE_color_italic=false
/instance/com.powerflasher.fdt.ui/AS_PRIVATE_color_strikethrough=false
/instance/com.powerflasher.fdt.ui/AS_PRIVATE_color_underline=false
/instance/com.powerflasher.fdt.ui/AS_PROTECTED_color=141,203,226
/instance/com.powerflasher.fdt.ui/AS_PROTECTED_color_bold=false
/instance/com.powerflasher.fdt.ui/AS_PROTECTED_color_italic=false
/instance/com.powerflasher.fdt.ui/AS_PROTECTED_color_strikethrough=false
/instance/com.powerflasher.fdt.ui/AS_PROTECTED_color_underline=false
/instance/com.powerflasher.fdt.ui/AS_PUBLIC_color=141,203,226
/instance/com.powerflasher.fdt.ui/AS_PUBLIC_color_bold=false
/instance/com.powerflasher.fdt.ui/AS_PUBLIC_color_italic=false
/instance/com.powerflasher.fdt.ui/AS_PUBLIC_color_strikethrough=false
/instance/com.powerflasher.fdt.ui/AS_PUBLIC_color_underline=false
/instance/com.powerflasher.fdt.ui/AS_RETURN_color=141,203,226
/instance/com.powerflasher.fdt.ui/AS_RETURN_color_bold=false
/instance/com.powerflasher.fdt.ui/AS_RETURN_color_italic=false
/instance/com.powerflasher.fdt.ui/AS_RETURN_color_strikethrough=false
/instance/com.powerflasher.fdt.ui/AS_RETURN_color_underline=false
/instance/com.powerflasher.fdt.ui/AS_TYPE_color=210,82,82
/instance/com.powerflasher.fdt.ui/AS_TYPE_color_bold=false
/instance/com.powerflasher.fdt.ui/AS_TYPE_color_italic=false
/instance/com.powerflasher.fdt.ui/AS_TYPE_color_strikethrough=false
/instance/com.powerflasher.fdt.ui/AS_TYPE_color_underline=false
/instance/com.powerflasher.fdt.ui/CHARACTER_color=255,198,0
/instance/com.powerflasher.fdt.ui/CHARACTER_color_bold=false
/instance/com.powerflasher.fdt.ui/CHARACTER_color_italic=false
/instance/com.powerflasher.fdt.ui/CHARACTER_color_strikethrough=false
/instance/com.powerflasher.fdt.ui/CHARACTER_color_underline=false
/instance/com.powerflasher.fdt.ui/JAVADOC_KEYWORD_color=217,229,119
/instance/com.powerflasher.fdt.ui/JAVADOC_KEYWORD_color_bold=false
/instance/com.powerflasher.fdt.ui/JAVADOC_KEYWORD_color_italic=false
/instance/com.powerflasher.fdt.ui/JAVADOC_KEYWORD_color_strikethrough=false
/instance/com.powerflasher.fdt.ui/JAVADOC_KEYWORD_color_underline=false
/instance/com.powerflasher.fdt.ui/JAVADOC_LINK_color=217,229,119
/instance/com.powerflasher.fdt.ui/JAVADOC_LINK_color_bold=false
/instance/com.powerflasher.fdt.ui/JAVADOC_LINK_color_italic=false
/instance/com.powerflasher.fdt.ui/JAVADOC_LINK_color_strikethrough=false
/instance/com.powerflasher.fdt.ui/JAVADOC_LINK_color_underline=false
/instance/com.powerflasher.fdt.ui/JAVADOC_TAG_color=217,229,119
/instance/com.powerflasher.fdt.ui/JAVADOC_TAG_color_bold=false
/instance/com.powerflasher.fdt.ui/JAVADOC_TAG_color_italic=false
/instance/com.powerflasher.fdt.ui/JAVADOC_TAG_color_strikethrough=false
/instance/com.powerflasher.fdt.ui/JAVADOC_TAG_color_underline=false
/instance/com.powerflasher.fdt.ui/JAVADOC_TODO_color=217,229,119
/instance/com.powerflasher.fdt.ui/JAVADOC_TODO_color_bold=false
/instance/com.powerflasher.fdt.ui/JAVADOC_TODO_color_italic=false
/instance/com.powerflasher.fdt.ui/JAVADOC_TODO_color_strikethrough=false
/instance/com.powerflasher.fdt.ui/JAVADOC_TODO_color_underline=false
/instance/com.powerflasher.fdt.ui/JAVADOC_color=204,223,50
/instance/com.powerflasher.fdt.ui/JAVADOC_color_bold=false
/instance/com.powerflasher.fdt.ui/JAVADOC_color_italic=false
/instance/com.powerflasher.fdt.ui/JAVADOC_color_strikethrough=false
/instance/com.powerflasher.fdt.ui/JAVADOC_color_underline=false
/instance/com.powerflasher.fdt.ui/MULTILINE_COMMENT_TODO_color=217,229,119
/instance/com.powerflasher.fdt.ui/MULTILINE_COMMENT_TODO_color_bold=false
/instance/com.powerflasher.fdt.ui/MULTILINE_COMMENT_TODO_color_italic=false
/instance/com.powerflasher.fdt.ui/MULTILINE_COMMENT_TODO_color_strikethrough=false
/instance/com.powerflasher.fdt.ui/MULTILINE_COMMENT_TODO_color_underline=false
/instance/com.powerflasher.fdt.ui/MULTILINE_COMMENT_color=199,221,12
/instance/com.powerflasher.fdt.ui/MULTILINE_COMMENT_color_bold=false
/instance/com.powerflasher.fdt.ui/MULTILINE_COMMENT_color_italic=false
/instance/com.powerflasher.fdt.ui/MULTILINE_COMMENT_color_strikethrough=false
/instance/com.powerflasher.fdt.ui/MULTILINE_COMMENT_color_underline=false
/instance/com.powerflasher.fdt.ui/SINGLELINE_COMMENT_TODO_color=217,229,119
/instance/com.powerflasher.fdt.ui/SINGLELINE_COMMENT_TODO_color_bold=false
/instance/com.powerflasher.fdt.ui/SINGLELINE_COMMENT_TODO_color_italic=false
/instance/com.powerflasher.fdt.ui/SINGLELINE_COMMENT_TODO_color_strikethrough=false
/instance/com.powerflasher.fdt.ui/SINGLELINE_COMMENT_TODO_color_underline=false
/instance/com.powerflasher.fdt.ui/SINGLELINE_COMMENT_color=199,221,12
/instance/com.powerflasher.fdt.ui/SINGLELINE_COMMENT_color_bold=false
/instance/com.powerflasher.fdt.ui/SINGLELINE_COMMENT_color_italic=false
/instance/com.powerflasher.fdt.ui/SINGLELINE_COMMENT_color_strikethrough=false
/instance/com.powerflasher.fdt.ui/SINGLELINE_COMMENT_color_underline=false
/instance/com.powerflasher.fdt.ui/STRING_color=255,198,0
/instance/com.powerflasher.fdt.ui/STRING_color_bold=false
/instance/com.powerflasher.fdt.ui/STRING_color_italic=false
/instance/com.powerflasher.fdt.ui/STRING_color_strikethrough=false
/instance/com.powerflasher.fdt.ui/STRING_color_underline=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.NamespaceModifier_bold=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.NamespaceModifier_color=255,255,255
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.NamespaceModifier_enabled=true
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.NamespaceModifier_italic=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.NamespaceModifier_strikethrough=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.NamespaceModifier_underline=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.Namespace_bold=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.Namespace_color=255,255,255
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.Namespace_enabled=true
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.Namespace_italic=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.Namespace_strikethrough=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.Namespace_underline=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.RegEx_bold=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.RegEx_color=255,198,0
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.RegEx_enabled=true
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.RegEx_italic=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.RegEx_strikethrough=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.RegEx_underline=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.TopLevelNamespace_bold=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.TopLevelNamespace_color=255,255,255
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.TopLevelNamespace_enabled=true
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.TopLevelNamespace_italic=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.TopLevelNamespace_strikethrough=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.TopLevelNamespace_underline=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLAttributeName_bold=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLAttributeName_color=190,214,255
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLAttributeName_enabled=true
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLAttributeName_italic=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLAttributeName_strikethrough=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLAttributeName_underline=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLAttributeValue_bold=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLAttributeValue_color=255,198,0
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLAttributeValue_enabled=true
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLAttributeValue_italic=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLAttributeValue_strikethrough=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLAttributeValue_underline=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLCDATATag_bold=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLCDATATag_color=216,216,216
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLCDATATag_enabled=true
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLCDATATag_italic=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLCDATATag_strikethrough=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLCDATATag_underline=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLCDATAText_bold=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLCDATAText_color=216,216,216
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLCDATAText_enabled=true
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLCDATAText_italic=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLCDATAText_strikethrough=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLCDATAText_underline=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLComment_bold=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLComment_color=199,221,12
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLComment_enabled=true
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLComment_italic=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLComment_strikethrough=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLComment_underline=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLNamespaceName_bold=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLNamespaceName_color=255,255,255
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLNamespaceName_enabled=true
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLNamespaceName_italic=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLNamespaceName_strikethrough=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLNamespaceName_underline=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLTagName_bold=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLTagName_color=190,214,255
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLTagName_enabled=true
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLTagName_italic=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLTagName_strikethrough=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLTagName_underline=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLText_bold=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLText_color=216,216,216
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLText_enabled=true
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLText_italic=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLText_strikethrough=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.AS3SemanticHighlightGenerator.AS3.XMLText_underline=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.Class_bold=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.Class_color=210,82,82
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.Class_enabled=true
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.Class_italic=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.Class_strikethrough=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.Class_underline=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.Field_bold=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.Field_color=190,214,255
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.Field_enabled=true
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.Field_italic=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.Field_strikethrough=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.Field_underline=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.Getter_bold=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.Getter_color=255,255,255
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.Getter_enabled=true
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.Getter_italic=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.Getter_strikethrough=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.Getter_underline=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.Interface_bold=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.Interface_color=209,151,217
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.Interface_enabled=true
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.Interface_italic=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.Interface_strikethrough=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.Interface_underline=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.Setter_bold=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.Setter_color=255,255,255
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.Setter_enabled=true
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.Setter_italic=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.Setter_strikethrough=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.Setter_underline=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.StaticField_bold=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.StaticField_color=239,192,144
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.StaticField_enabled=true
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.StaticField_italic=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.StaticField_strikethrough=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.StaticField_underline=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.StaticFunction_bold=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.StaticFunction_color=190,214,255
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.StaticFunction_enabled=true
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.StaticFunction_italic=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.StaticFunction_strikethrough=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.StaticFunction_underline=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.StaticGetter_bold=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.StaticGetter_color=190,214,255
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.StaticGetter_enabled=true
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.StaticGetter_italic=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.StaticGetter_strikethrough=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.StaticGetter_underline=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.StaticSetter_bold=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.StaticSetter_color=190,214,255
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.StaticSetter_enabled=true
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.StaticSetter_italic=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.StaticSetter_strikethrough=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.StaticSetter_underline=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.TopLevelFunction_bold=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.TopLevelFunction_color=255,255,255
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.TopLevelFunction_enabled=true
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.TopLevelFunction_italic=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.TopLevelFunction_strikethrough=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.TopLevelFunction_underline=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.TopLevelVariable_bold=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.TopLevelVariable_color=121,171,255
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.TopLevelVariable_enabled=true
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.TopLevelVariable_italic=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.TopLevelVariable_strikethrough=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.BasicSemanticHighlightGenerator.AS3.TopLevelVariable_underline=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLAirApplicationTag_bold=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLAirApplicationTag_color=190,214,255
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLAirApplicationTag_enabled=true
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLAirApplicationTag_italic=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLAirApplicationTag_strikethrough=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLAirApplicationTag_underline=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLApplicationTag_bold=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLApplicationTag_color=190,214,255
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLApplicationTag_enabled=true
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLApplicationTag_italic=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLApplicationTag_strikethrough=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLApplicationTag_underline=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLComment_bold=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLComment_color=199,221,12
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLComment_enabled=true
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLComment_italic=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLComment_strikethrough=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLComment_underline=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLComponentTag_bold=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLComponentTag_color=190,214,255
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLComponentTag_enabled=true
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLComponentTag_italic=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLComponentTag_strikethrough=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLComponentTag_underline=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLEventName_bold=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLEventName_color=127,179,71
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLEventName_enabled=true
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLEventName_italic=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLEventName_strikethrough=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLEventName_underline=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLIDParameter_bold=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLIDParameter_color=121,171,255
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLIDParameter_enabled=true
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLIDParameter_italic=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLIDParameter_strikethrough=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLIDParameter_underline=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLInlineAS3_bold=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLInlineAS3_color=191,164,164
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLInlineAS3_enabled=true
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLInlineAS3_italic=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLInlineAS3_strikethrough=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLInlineAS3_underline=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLModuleTag_bold=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLModuleTag_color=190,214,255
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLModuleTag_enabled=true
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLModuleTag_italic=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLModuleTag_strikethrough=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLModuleTag_underline=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLNamespace_bold=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLNamespace_color=255,255,255
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLNamespace_enabled=true
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLNamespace_italic=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLNamespace_strikethrough=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLNamespace_underline=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLOtherTag_bold=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLOtherTag_color=190,214,255
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLOtherTag_enabled=true
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLOtherTag_italic=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLOtherTag_strikethrough=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLOtherTag_underline=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLSetter_bold=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLSetter_color=255,255,255
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLSetter_enabled=true
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLSetter_italic=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLSetter_strikethrough=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLSetter_underline=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLState_bold=false
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLState_color=191,164,164
/instance/com.powerflasher.fdt.ui/com.powerflasher.fdt.ui.mxml.mxmlHighlightGenerator.AS3.MXMLState_enabled=true