1" Vim completion script
2" Language:        Haskell
3" Maintainer:      Daniel Campoverde <[email protected]>
4" URL:             https://github.com/alx741/haskellcomplete.vim
5" Last Change:     2018 Aug 26
6
7" Usage:           setlocal omnifunc=haskellcomplete#Complete
8
9
10" Language extensions from:
11"   https://hackage.haskell.org/package/Cabal-2.2.0.1/docs/Language-Haskell-Extension.html
12"
13" GHC options from:
14"   https://downloads.haskell.org/~ghc/7.0.4/docs/html/users_guide/flag-reference.html
15"   https://downloads.haskell.org/~ghc/8.4.3/docs/html/users_guide/flags.html
16
17
18
19" Available completions
20let b:completingLangExtension = 0
21let b:completingOptionsGHC    = 0
22let b:completingModule        = 0
23
24function! haskellcomplete#Complete(findstart, base)
25    if a:findstart
26        let l:line = getline('.')
27        let l:start = col('.') - 1
28
29        if l:line =~ '^\s*{-#\s*LANGUAGE.*'
30            while l:start >= 0 && l:line[l:start - 1] !~ '[, ]'
31                let l:start -= 1
32            endwhile
33            let b:completingLangExtension = 1
34            return l:start
35
36        elseif l:line =~ '^\s*{-#\s*OPTIONS_GHC.*'
37            while l:start >= 0 && l:line[l:start - 1] !~ '[, ]'
38                let l:start -= 1
39            endwhile
40            let b:completingOptionsGHC = 1
41            return l:start
42
43        elseif l:line =~ '^\s*import\s*.*'
44            while l:start >= 0 && l:line[l:start - 1] !~ ' '
45                let l:start -= 1
46            endwhile
47            let b:completingModule = 1
48            return l:start
49
50        endif
51
52        return start
53    endif
54
55    if b:completingLangExtension
56        if a:base ==? ""
57            " Return all posible Lang extensions
58            return s:langExtensions
59        else
60            let l:matches = []
61            for extension in s:langExtensions
62                if extension =~? '^' . a:base
63                    call add(l:matches, extension)
64                endif
65            endfor
66            return l:matches
67        endif
68
69
70    elseif b:completingOptionsGHC
71        if a:base ==? ""
72            " Return all posible GHC options
73            return s:optionsGHC
74        else
75            let l:matches = []
76            for flag in s:optionsGHC
77                if flag =~? '^' . a:base
78                    call add(l:matches, flag)
79                endif
80            endfor
81            return l:matches
82        endif
83
84
85    elseif b:completingModule
86        if a:base ==? ""
87            " Return all posible modules
88            return s:commonModules
89        else
90            let l:matches = []
91            for module in s:commonModules
92                if module =~? '^' . a:base
93                    call add(l:matches, module)
94                endif
95            endfor
96            return l:matches
97        endif
98
99    endif
100
101    return -1
102endfunction
103
104let s:langExtensions =
105    \ [ "OverlappingInstances"
106    \ , "UndecidableInstances"
107    \ , "IncoherentInstances"
108    \ , "DoRec"
109    \ , "RecursiveDo"
110    \ , "ParallelListComp"
111    \ , "MultiParamTypeClasses"
112    \ , "MonomorphismRestriction"
113    \ , "FunctionalDependencies"
114    \ , "Rank2Types"
115    \ , "RankNTypes"
116    \ , "PolymorphicComponents"
117    \ , "ExistentialQuantification"
118    \ , "ScopedTypeVariables"
119    \ , "PatternSignatures"
120    \ , "ImplicitParams"
121    \ , "FlexibleContexts"
122    \ , "FlexibleInstances"
123    \ , "EmptyDataDecls"
124    \ , "CPP"
125    \ , "KindSignatures"
126    \ , "BangPatterns"
127    \ , "TypeSynonymInstances"
128    \ , "TemplateHaskell"
129    \ , "ForeignFunctionInterface"
130    \ , "Arrows"
131    \ , "Generics"
132    \ , "ImplicitPrelude"
133    \ , "NamedFieldPuns"
134    \ , "PatternGuards"
135    \ , "GeneralizedNewtypeDeriving"
136    \ , "ExtensibleRecords"
137    \ , "RestrictedTypeSynonyms"
138    \ , "HereDocuments"
139    \ , "MagicHash"
140    \ , "TypeFamilies"
141    \ , "StandaloneDeriving"
142    \ , "UnicodeSyntax"
143    \ , "UnliftedFFITypes"
144    \ , "InterruptibleFFI"
145    \ , "CApiFFI"
146    \ , "LiberalTypeSynonyms"
147    \ , "TypeOperators"
148    \ , "RecordWildCards"
149    \ , "RecordPuns"
150    \ , "DisambiguateRecordFields"
151    \ , "TraditionalRecordSyntax"
152    \ , "OverloadedStrings"
153    \ , "GADTs"
154    \ , "GADTSyntax"
155    \ , "MonoPatBinds"
156    \ , "RelaxedPolyRec"
157    \ , "ExtendedDefaultRules"
158    \ , "UnboxedTuples"
159    \ , "DeriveDataTypeable"
160    \ , "DeriveGeneric"
161    \ , "DefaultSignatures"
162    \ , "InstanceSigs"
163    \ , "ConstrainedClassMethods"
164    \ , "PackageImports"
165    \ , "ImpredicativeTypes"
166    \ , "NewQualifiedOperators"
167    \ , "PostfixOperators"
168    \ , "QuasiQuotes"
169    \ , "TransformListComp"
170    \ , "MonadComprehensions"
171    \ , "ViewPatterns"
172    \ , "XmlSyntax"
173    \ , "RegularPatterns"
174    \ , "TupleSections"
175    \ , "GHCForeignImportPrim"
176    \ , "NPlusKPatterns"
177    \ , "DoAndIfThenElse"
178    \ , "MultiWayIf"
179    \ , "LambdaCase"
180    \ , "RebindableSyntax"
181    \ , "ExplicitForAll"
182    \ , "DatatypeContexts"
183    \ , "MonoLocalBinds"
184    \ , "DeriveFunctor"
185    \ , "DeriveTraversable"
186    \ , "DeriveFoldable"
187    \ , "NondecreasingIndentation"
188    \ , "SafeImports"
189    \ , "Safe"
190    \ , "Trustworthy"
191    \ , "Unsafe"
192    \ , "ConstraintKinds"
193    \ , "PolyKinds"
194    \ , "DataKinds"
195    \ , "ParallelArrays"
196    \ , "RoleAnnotations"
197    \ , "OverloadedLists"
198    \ , "EmptyCase"
199    \ , "AutoDeriveTypeable"
200    \ , "NegativeLiterals"
201    \ , "BinaryLiterals"
202    \ , "NumDecimals"
203    \ , "NullaryTypeClasses"
204    \ , "ExplicitNamespaces"
205    \ , "AllowAmbiguousTypes"
206    \ , "JavaScriptFFI"
207    \ , "PatternSynonyms"
208    \ , "PartialTypeSignatures"
209    \ , "NamedWildCards"
210    \ , "DeriveAnyClass"
211    \ , "DeriveLift"
212    \ , "StaticPointers"
213    \ , "StrictData"
214    \ , "Strict"
215    \ , "ApplicativeDo"
216    \ , "DuplicateRecordFields"
217    \ , "TypeApplications"
218    \ , "TypeInType"
219    \ , "UndecidableSuperClasses"
220    \ , "MonadFailDesugaring"
221    \ , "TemplateHaskellQuotes"
222    \ , "OverloadedLabels"
223    \ , "TypeFamilyDependencies"
224    \ , "DerivingStrategies"
225    \ , "UnboxedSums"
226    \ , "HexFloatLiterals"
227    \ ]
228
229let s:optionsGHC =
230    \ [ "-n"
231    \ , "-v"
232    \ , "-vn"
233    \ , "-c"
234    \ , "-hcsuf"
235    \ , "-hidir"
236    \ , "-hisuf"
237    \ , "-o"
238    \ , "-odir"
239    \ , "-ohi"
240    \ , "-osuf"
241    \ , "-stubdir"
242    \ , "-outputdir"
243    \ , "-keep-hc-file"
244    \ , "-keep-llvm-file"
245    \ , "-keep-s-file"
246    \ , "-keep-raw-s-file"
247    \ , "-keep-tmp-files"
248    \ , "-tmpdir"
249    \ , "-ddump-hi"
250    \ , "-ddump-hi-diffs"
251    \ , "-ddump-minimal-imports"
252    \ , "-fforce-recomp"
253    \ , "-fno-force-recomp"
254    \ , "-fbreak-on-exception"
255    \ , "-fno-break-on-exception"
256    \ , "-fbreak-on-error"
257    \ , "-fno-break-on-error"
258    \ , "-fprint-evld-with-show"
259    \ , "-fno-print-evld-with-show"
260    \ , "-fprint-bind-result"
261    \ , "-fno-print-bind-result"
262    \ , "-fno-print-bind-contents"
263    \ , "-fno-implicit-import-qualified"
264    \ , "-package-name"
265    \ , "-no-auto-link-packages"
266    \ , "-fglasgow-exts"
267    \ , "-fno-glasgow-exts"
268    \ , "-XOverlappingInstances"
269    \ , "-XNoOverlappingInstances"
270    \ , "-XIncoherentInstances"
271    \ , "-XNoIncoherentInstances"
272    \ , "-XUndecidableInstances"
273    \ , "-XNoUndecidableInstances"
274    \ , "-fcontext-stack=Nn"
275    \ , "-XArrows"
276    \ , "-XNoArrows"
277    \ , "-XDisambiguateRecordFields"
278    \ , "-XNoDisambiguateRecordFields"
279    \ , "-XForeignFunctionInterface"
280    \ , "-XNoForeignFunctionInterface"
281    \ , "-XGenerics"
282    \ , "-XNoGenerics"
283    \ , "-XImplicitParams"
284    \ , "-XNoImplicitParams"
285    \ , "-firrefutable-tuples"
286    \ , "-fno-irrefutable-tuples"
287    \ , "-XNoImplicitPrelude"
288    \ , "-XImplicitPrelude"
289    \ , "-XRebindableSyntax"
290    \ , "-XNoRebindableSyntax"
291    \ , "-XNoMonomorphismRestriction"
292    \ , "-XMonomorphismRrestriction"
293    \ , "-XNoNPlusKPatterns"
294    \ , "-XNPlusKPatterns"
295    \ , "-XNoMonoPatBinds"
296    \ , "-XMonoPatBinds"
297    \ , "-XRelaxedPolyRec"
298    \ , "-XNoRelaxedPolyRec"
299    \ , "-XExtendedDefaultRules"
300    \ , "-XNoExtendedDefaultRules"
301    \ , "-XOverloadedStrings"
302    \ , "-XNoOverloadedStrings"
303    \ , "-XGADTs"
304    \ , "-XNoGADTs"
305    \ , "-XTypeFamilies"
306    \ , "-XNoTypeFamilies"
307    \ , "-XScopedTypeVariables"
308    \ , "-XNoScopedTypeVariables"
309    \ , "-XMonoLocalBinds"
310    \ , "-XNoMonoLocalBinds"
311    \ , "-XTemplateHaskell"
312    \ , "-XNoTemplateHaskell"
313    \ , "-XQuasiQuotes"
314    \ , "-XNoQuasiQuotes"
315    \ , "-XBangPatterns"
316    \ , "-XNoBangPatterns"
317    \ , "-XCPP"
318    \ , "-XNoCPP"
319    \ , "-XPatternGuards"
320    \ , "-XNoPatternGuards"
321    \ , "-XViewPatterns"
322    \ , "-XNoViewPatterns"
323    \ , "-XUnicodeSyntax"
324    \ , "-XNoUnicodeSyntax"
325    \ , "-XMagicHash"
326    \ , "-XNoMagicHash"
327    \ , "-XNewQualifiedOperators"
328    \ , "-XNoNewQualifiedOperators"
329    \ , "-XExplicitForALl"
330    \ , "-XNoExplicitForAll"
331    \ , "-XPolymorphicComponents"
332    \ , "-XNoPolymorphicComponents"
333    \ , "-XRank2Types"
334    \ , "-XNoRank2Types"
335    \ , "-XRankNTypes"
336    \ , "-XNoRankNTypes"
337    \ , "-XImpredicativeTypes"
338    \ , "-XNoImpredicativeTypes"
339    \ , "-XExistentialQuantification"
340    \ , "-XNoExistentialQuantification"
341    \ , "-XKindSignatures"
342    \ , "-XNoKindSignatures"
343    \ , "-XEmptyDataDecls"
344    \ , "-XNoEmptyDataDecls"
345    \ , "-XParallelListComp"
346    \ , "-XNoParallelListComp"
347    \ , "-XTransformListComp"
348    \ , "-XNoTransformListComp"
349    \ , "-XUnliftedFFITypes"
350    \ , "-XNoUnliftedFFITypes"
351    \ , "-XLiberalTypeSynonyms"
352    \ , "-XNoLiberalTypeSynonyms"
353    \ , "-XTypeOperators"
354    \ , "-XNoTypeOperators"
355    \ , "-XDoRec"
356    \ , "-XNoDoRec"
357    \ , "-XRecursiveDo"
358    \ , "-XNoRecursiveDo"
359    \ , "-XPArr"
360    \ , "-XNoPArr"
361    \ , "-XRecordWildCards"
362    \ , "-XNoRecordWildCards"
363    \ , "-XNamedFieldPuns"
364    \ , "-XNoNamedFieldPuns"
365    \ , "-XDisambiguateRecordFields"
366    \ , "-XNoDisambiguateRecordFields"
367    \ , "-XUnboxedTuples"
368    \ , "-XNoUnboxedTuples"
369    \ , "-XStandaloneDeriving"
370    \ , "-XNoStandaloneDeriving"
371    \ , "-XDeriveDataTypeable"
372    \ , "-XNoDeriveDataTypeable"
373    \ , "-XGeneralizedNewtypeDeriving"
374    \ , "-XNoGeneralizedNewtypeDeriving"
375    \ , "-XTypeSynonymInstances"
376    \ , "-XNoTypeSynonymInstances"
377    \ , "-XFlexibleContexts"
378    \ , "-XNoFlexibleContexts"
379    \ , "-XFlexibleInstances"
380    \ , "-XNoFlexibleInstances"
381    \ , "-XConstrainedClassMethods"
382    \ , "-XNoConstrainedClassMethods"
383    \ , "-XMultiParamTypeClasses"
384    \ , "-XNoMultiParamTypeClasses"
385    \ , "-XFunctionalDependencies"
386    \ , "-XNoFunctionalDependencies"
387    \ , "-XPackageImports"
388    \ , "-XNoPackageImports"
389    \ , "-W"
390    \ , "-w"
391    \ , "-w"
392    \ , "-Wall"
393    \ , "-w"
394    \ , "-Werror"
395    \ , "-Wwarn"
396    \ , "-Wwarn"
397    \ , "-Werror"
398    \ , "-fwarn-unrecognised-pragmas"
399    \ , "-fno-warn-unrecognised-pragmas"
400    \ , "-fwarn-warnings-deprecations"
401    \ , "-fno-warn-warnings-deprecations"
402    \ , "-fwarn-deprecated-flags"
403    \ , "-fno-warn-deprecated-flags"
404    \ , "-fwarn-duplicate-exports"
405    \ , "-fno-warn-duplicate-exports"
406    \ , "-fwarn-hi-shadowing"
407    \ , "-fno-warn-hi-shadowing"
408    \ , "-fwarn-implicit-prelude"
409    \ , "-fno-warn-implicit-prelude"
410    \ , "-fwarn-incomplete-patterns"
411    \ , "-fno-warn-incomplete-patterns"
412    \ , "-fwarn-incomplete-record-updates"
413    \ , "-fno-warn-incomplete-record-updates"
414    \ , "-fwarn-lazy-unlifted-bindings"
415    \ , "-fno-warn-lazy-unlifted-bindings"
416    \ , "-fwarn-missing-fields"
417    \ , "-fno-warn-missing-fields"
418    \ , "-fwarn-missing-import-lists"
419    \ , "-fnowarn-missing-import-lists"
420    \ , "-fwarn-missing-methods"
421    \ , "-fno-warn-missing-methods"
422    \ , "-fwarn-missing-signatures"
423    \ , "-fno-warn-missing-signatures"
424    \ , "-fwarn-name-shadowing"
425    \ , "-fno-warn-name-shadowing"
426    \ , "-fwarn-orphans"
427    \ , "-fno-warn-orphans"
428    \ , "-fwarn-overlapping-patterns"
429    \ , "-fno-warn-overlapping-patterns"
430    \ , "-fwarn-tabs"
431    \ , "-fno-warn-tabs"
432    \ , "-fwarn-type-defaults"
433    \ , "-fno-warn-type-defaults"
434    \ , "-fwarn-monomorphism-restriction"
435    \ , "-fno-warn-monomorphism-restriction"
436    \ , "-fwarn-unused-binds"
437    \ , "-fno-warn-unused-binds"
438    \ , "-fwarn-unused-imports"
439    \ , "-fno-warn-unused-imports"
440    \ , "-fwarn-unused-matches"
441    \ , "-fno-warn-unused-matches"
442    \ , "-fwarn-unused-do-bind"
443    \ , "-fno-warn-unused-do-bind"
444    \ , "-fwarn-wrong-do-bind"
445    \ , "-fno-warn-wrong-do-bind"
446    \ , "-O"
447    \ , "-O0"
448    \ , "-On"
449    \ , "-O0"
450    \ , "-fcase-merge"
451    \ , "-fno-case-merge"
452    \ , "-fmethod-sharing"
453    \ , "-fno-method-sharing"
454    \ , "-fdo-eta-reduction"
455    \ , "-fno-do-eta-reduction"
456    \ , "-fdo-lambda-eta-expansion"
457    \ , "-fno-do-lambda-eta-expansion"
458    \ , "-fexcess-precision"
459    \ , "-fno-excess-precision"
460    \ , "-fignore-asserts"
461    \ , "-fno-ignore-asserts"
462    \ , "-fignore-interface-pragmas"
463    \ , "-fno-ignore-interface-pragmas"
464    \ , "-fomit-interface-pragmas"
465    \ , "-fno-omit-interface-pragmas"
466    \ , "-fsimplifier-phases"
467    \ , "-fmax-simplifier-iterations"
468    \ , "-fcse"
469    \ , "-fno-cse"
470    \ , "-fspecialise"
471    \ , "-fno-specialise"
472    \ , "-ffull-laziness"
473    \ , "-fno-full-laziness"
474    \ , "-ffloat-in"
475    \ , "-fno-float-in"
476    \ , "-fenable-rewrite-rules"
477    \ , "-fno-enable-rewrite-rules"
478    \ , "-fstrictness"
479    \ , "-fno-strictness"
480    \ , "-fstrictness=before=n"
481    \ , "-fspec-constr"
482    \ , "-fno-spec-constr"
483    \ , "-fliberate-case"
484    \ , "-fno-liberate-case"
485    \ , "-fstatic-argument-transformation"
486    \ , "-fno-static-argument-transformation"
487    \ , "-funbox-strict-fields"
488    \ , "-fno-unbox-strict-fields"
489    \ , "-feager-blackholing"
490    \ , "-auto"
491    \ , "-no-auto"
492    \ , "-auto-all"
493    \ , "-no-auto-all"
494    \ , "-caf-all"
495    \ , "-no-caf-all"
496    \ , "-hpcdir"
497    \ , "-F"
498    \ , "-cpp"
499    \ , "-Dsymbol[=value]"
500    \ , "-Usymbol"
501    \ , "-Usymbol"
502    \ , "-Idir"
503    \ , "-fasm"
504    \ , "-fvia-C"
505    \ , "-fvia-C"
506    \ , "-fasm"
507    \ , "-fllvm"
508    \ , "-fasm"
509    \ , "-fno-code"
510    \ , "-fbyte-code"
511    \ , "-fobject-code"
512    \ , "-shared"
513    \ , "-dynamic"
514    \ , "-framework"
515    \ , "-framework-path"
516    \ , "-llib"
517    \ , "-Ldir"
518    \ , "-main-is"
519    \ , "--mk-dll"
520    \ , "-no-hs-main"
521    \ , "-rtsopts,"
522    \ , "-with-rtsopts=opts"
523    \ , "-no-link"
524    \ , "-split-objs"
525    \ , "-fno-gen-manifest"
526    \ , "-fno-embed-manifest"
527    \ , "-fno-shared-implib"
528    \ , "-dylib-install-name"
529    \ , "-pgmL"
530    \ , "-pgmP"
531    \ , "-pgmc"
532    \ , "-pgmm"
533    \ , "-pgms"
534    \ , "-pgma"
535    \ , "-pgml"
536    \ , "-pgmdll"
537    \ , "-pgmF"
538    \ , "-pgmwindres"
539    \ , "-optL"
540    \ , "-optP"
541    \ , "-optF"
542    \ , "-optc"
543    \ , "-optlo"
544    \ , "-optlc"
545    \ , "-optm"
546    \ , "-opta"
547    \ , "-optl"
548    \ , "-optdll"
549    \ , "-optwindres"
550    \ , "-msse2"
551    \ , "-monly-[432]-regs"
552    \ , "-fext-core"
553    \ , "-dcore-lint"
554    \ , "-ddump-asm"
555    \ , "-ddump-bcos"
556    \ , "-ddump-cmm"
557    \ , "-ddump-cpranal"
558    \ , "-ddump-cse"
559    \ , "-ddump-deriv"
560    \ , "-ddump-ds"
561    \ , "-ddump-flatC"
562    \ , "-ddump-foreign"
563    \ , "-ddump-hpc"
564    \ , "-ddump-inlinings"
565    \ , "-ddump-llvm"
566    \ , "-ddump-occur-anal"
567    \ , "-ddump-opt-cmm"
568    \ , "-ddump-parsed"
569    \ , "-ddump-prep"
570    \ , "-ddump-rn"
571    \ , "-ddump-rules"
572    \ , "-ddump-simpl"
573    \ , "-ddump-simpl-phases"
574    \ , "-ddump-simpl-iterations"
575    \ , "-ddump-spec"
576    \ , "-ddump-splices"
577    \ , "-ddump-stg"
578    \ , "-ddump-stranal"
579    \ , "-ddump-tc"
580    \ , "-ddump-types"
581    \ , "-ddump-worker-wrapper"
582    \ , "-ddump-if-trace"
583    \ , "-ddump-tc-trace"
584    \ , "-ddump-rn-trace"
585    \ , "-ddump-rn-stats"
586    \ , "-ddump-simpl-stats"
587    \ , "-dsource-stats"
588    \ , "-dcmm-lint"
589    \ , "-dstg-lint"
590    \ , "-dstg-stats"
591    \ , "-dverbose-core2core"
592    \ , "-dverbose-stg2stg"
593    \ , "-dshow-passes"
594    \ , "-dfaststring-stats"
595    \ , "-fno-asm-mangling"
596    \ , "-fno-ghci-sandbox"
597    \ , "-fdiagnostics-color="
598    \ , "-fdiagnostics-show-caret"
599    \ , "-fno-diagnostics-show-caret"
600    \ , "-ferror-spans"
601    \ , "-fhide-source-paths"
602    \ , "-fprint-equality-relations"
603    \ , "-fno-print-equality-relations"
604    \ , "-fprint-expanded-synonyms"
605    \ , "-fno-print-expanded-synonyms"
606    \ , "-fprint-explicit-coercions"
607    \ , "-fno-print-explicit-coercions"
608    \ , "-fprint-explicit-foralls"
609    \ , "-fno-print-explicit-foralls"
610    \ , "-fprint-explicit-kinds"
611    \ , "-fno-print-explicit-kinds"
612    \ , "-fprint-explicit-runtime-rep"
613    \ , "-fno-print-explicit-runtime-reps"
614    \ , "-fprint-explicit-runtime-reps"
615    \ , "-fno-print-explicit-runtime-reps"
616    \ , "-fprint-potential-instances"
617    \ , "-fno-print-potential-instances"
618    \ , "-fprint-typechecker-elaboration"
619    \ , "-fno-print-typechecker-elaboration"
620    \ , "-fprint-unicode-syntax"
621    \ , "-fno-print-unicode-syntax"
622    \ , "-fshow-hole-constraints"
623    \ , "-Rghc-timing"
624    \ , "-v"
625    \ , "-v"
626    \ , "-F"
627    \ , "-x"
628    \ , "--exclude-module="
629    \ , "-ddump-mod-cycles"
630    \ , "-dep-makefile"
631    \ , "-dep-suffix"
632    \ , "-dumpdir"
633    \ , "-hcsuf"
634    \ , "-hidir"
635    \ , "-hisuf"
636    \ , "-include-pkg-deps"
637    \ , "-o"
638    \ , "-odir"
639    \ , "-ohi"
640    \ , "-osuf"
641    \ , "-outputdir"
642    \ , "-stubdir"
643    \ , "-keep-hc-file,"
644    \ , "-keep-hi-files"
645    \ , "-no-keep-hi-files"
646    \ , "-keep-llvm-file,"
647    \ , "-keep-o-files"
648    \ , "-no-keep-o-files"
649    \ , "-keep-s-file,"
650    \ , "-keep-tmp-files"
651    \ , "-tmpdir"
652    \ , "-i"
653    \ , "-i[:]*"
654    \ , "-ddump-hi"
655    \ , "-ddump-hi-diffs"
656    \ , "-ddump-minimal-imports"
657    \ , "-fforce-recomp"
658    \ , "-fno-force-recomp"
659    \ , "-fignore-hpc-changes"
660    \ , "-fno-ignore-hpc-changes"
661    \ , "-fignore-optim-changes"
662    \ , "-fno-ignore-optim-changes"
663    \ , "-fbreak-on-error"
664    \ , "-fno-break-on-error"
665    \ , "-fbreak-on-exception"
666    \ , "-fno-break-on-exception"
667    \ , "-fghci-hist-size="
668    \ , "-flocal-ghci-history"
669    \ , "-fno-local-ghci-history"
670    \ , "-fprint-bind-result"
671    \ , "-fno-print-bind-result"
672    \ , "-fshow-loaded-modules"
673    \ , "-ghci-script"
674    \ , "-ignore-dot-ghci"
675    \ , "-interactive-print"
676    \ , "-clear-package-db"
677    \ , "-distrust"
678    \ , "-distrust-all-packages"
679    \ , "-fpackage-trust"
680    \ , "-global-package-db"
681    \ , "-hide-all-packages"
682    \ , "-hide-package"
683    \ , "-ignore-package"
684    \ , "-no-auto-link-packages"
685    \ , "-no-global-package-db"
686    \ , "-no-user-package-db"
687    \ , "-package"
688    \ , "-package-db"
689    \ , "-package-env"
690    \ , "-package-id"
691    \ , "-this-unit-id"
692    \ , "-trust"
693    \ , "-user-package-db"
694    \ , "-fdefer-out-of-scope-variables"
695    \ , "-fno-defer-out-of-scope-variables"
696    \ , "-fdefer-type-errors"
697    \ , "-fno-defer-type-errors"
698    \ , "-fdefer-typed-holes"
699    \ , "-fno-defer-typed-holes"
700    \ , "-fhelpful-errors"
701    \ , "-fno-helpful-errors"
702    \ , "-fmax-pmcheck-iterations="
703    \ , "-fshow-warning-groups"
704    \ , "-fno-show-warning-groups"
705    \ , "-W"
706    \ , "-w"
707    \ , "-w"
708    \ , "-Wall"
709    \ , "-w"
710    \ , "-Wall-missed-specialisations"
711    \ , "-Wno-all-missed-specialisations"
712    \ , "-Wamp"
713    \ , "-Wno-amp"
714    \ , "-Wcompat"
715    \ , "-Wno-compat"
716    \ , "-Wcpp-undef"
717    \ , "-Wdeferred-out-of-scope-variables"
718    \ , "-Wno-deferred-out-of-scope-variables"
719    \ , "-Wdeferred-type-errors"
720    \ , "-Wno-deferred-type-errors"
721    \ , "-Wdeprecated-flags"
722    \ , "-Wno-deprecated-flags"
723    \ , "-Wdeprecations"
724    \ , "-Wno-deprecations"
725    \ , "-Wdodgy-exports"
726    \ , "-Wno-dodgy-exports"
727    \ , "-Wdodgy-foreign-imports"
728    \ , "-Wno-dodgy-foreign-import"
729    \ , "-Wdodgy-imports"
730    \ , "-Wno-dodgy-imports"
731    \ , "-Wduplicate-constraints"
732    \ , "-Wno-duplicate-constraints"
733    \ , "-Wduplicate-exports"
734    \ , "-Wno-duplicate-exports"
735    \ , "-Wempty-enumerations"
736    \ , "-Wno-empty-enumerations"
737    \ , "-Werror"
738    \ , "-Wwarn"
739    \ , "-Weverything"
740    \ , "-Whi-shadowing"
741    \ , "-Wno-hi-shadowing"
742    \ , "-Widentities"
743    \ , "-Wno-identities"
744    \ , "-Wimplicit-prelude"
745    \ , "-Wno-implicit-prelude"
746    \ , "-Wincomplete-patterns"
747    \ , "-Wno-incomplete-patterns"
748    \ , "-Wincomplete-record-updates"
749    \ , "-Wno-incomplete-record-updates"
750    \ , "-Wincomplete-uni-patterns"
751    \ , "-Wno-incomplete-uni-patterns"
752    \ , "-Winline-rule-shadowing"
753    \ , "-Wno-inline-rule-shadowing"
754    \ , "-Wmissed-specialisations"
755    \ , "-Wno-missed-specialisations"
756    \ , "-Wmissing-export-lists"
757    \ , "-fnowarn-missing-export-lists"
758    \ , "-Wmissing-exported-signatures"
759    \ , "-Wno-missing-exported-signatures"
760    \ , "-Wmissing-exported-sigs"
761    \ , "-Wno-missing-exported-sigs"
762    \ , "-Wmissing-fields"
763    \ , "-Wno-missing-fields"
764    \ , "-Wmissing-home-modules"
765    \ , "-Wno-missing-home-modules"
766    \ , "-Wmissing-import-lists"
767    \ , "-fnowarn-missing-import-lists"
768    \ , "-Wmissing-local-signatures"
769    \ , "-Wno-missing-local-signatures"
770    \ , "-Wmissing-local-sigs"
771    \ , "-Wno-missing-local-sigs"
772    \ , "-Wmissing-methods"
773    \ , "-Wno-missing-methods"
774    \ , "-Wmissing-monadfail-instances"
775    \ , "-Wno-missing-monadfail-instances"
776    \ , "-Wmissing-pattern-synonym-signatures"
777    \ , "-Wno-missing-pattern-synonym-signatures"
778    \ , "-Wmissing-signatures"
779    \ , "-Wno-missing-signatures"
780    \ , "-Wmonomorphism-restriction"
781    \ , "-Wno-monomorphism-restriction"
782    \ , "-Wname-shadowing"
783    \ , "-Wno-name-shadowing"
784    \ , "-Wno-compat"
785    \ , "-Wcompat"
786    \ , "-Wnoncanonical-monad-instances"
787    \ , "-Wno-noncanonical-monad-instances"
788    \ , "-Wnoncanonical-monadfail-instances"
789    \ , "-Wno-noncanonical-monadfail-instances"
790    \ , "-Wnoncanonical-monoid-instances"
791    \ , "-Wno-noncanonical-monoid-instances"
792    \ , "-Worphans"
793    \ , "-Wno-orphans"
794    \ , "-Woverflowed-literals"
795    \ , "-Wno-overflowed-literals"
796    \ , "-Woverlapping-patterns"
797    \ , "-Wno-overlapping-patterns"
798    \ , "-Wpartial-fields"
799    \ , "-Wno-partial-fields"
800    \ , "-Wpartial-type-signatures"
801    \ , "-Wno-partial-type-signatures"
802    \ , "-Wredundant-constraints"
803    \ , "-Wno-redundant-constraints"
804    \ , "-Wsafe"
805    \ , "-Wno-safe"
806    \ , "-Wsemigroup"
807    \ , "-Wno-semigroup"
808    \ , "-Wsimplifiable-class-constraints"
809    \ , "-Wno-overlapping-patterns"
810    \ , "-Wtabs"
811    \ , "-Wno-tabs"
812    \ , "-Wtrustworthy-safe"
813    \ , "-Wno-safe"
814    \ , "-Wtype-defaults"
815    \ , "-Wno-type-defaults"
816    \ , "-Wtyped-holes"
817    \ , "-Wno-typed-holes"
818    \ , "-Wunbanged-strict-patterns"
819    \ , "-Wno-unbanged-strict-patterns"
820    \ , "-Wunrecognised-pragmas"
821    \ , "-Wno-unrecognised-pragmas"
822    \ , "-Wunrecognised-warning-flags"
823    \ , "-Wno-unrecognised-warning-flags"
824    \ , "-Wunsafe"
825    \ , "-Wno-unsafe"
826    \ , "-Wunsupported-calling-conventions"
827    \ , "-Wno-unsupported-calling-conventions"
828    \ , "-Wunsupported-llvm-version"
829    \ , "-Wno-monomorphism-restriction"
830    \ , "-Wunticked-promoted-constructors"
831    \ , "-Wno-unticked-promoted-constructors"
832    \ , "-Wunused-binds"
833    \ , "-Wno-unused-binds"
834    \ , "-Wunused-do-bind"
835    \ , "-Wno-unused-do-bind"
836    \ , "-Wunused-foralls"
837    \ , "-Wno-unused-foralls"
838    \ , "-Wunused-imports"
839    \ , "-Wno-unused-imports"
840    \ , "-Wunused-local-binds"
841    \ , "-Wno-unused-local-binds"
842    \ , "-Wunused-matches"
843    \ , "-Wno-unused-matches"
844    \ , "-Wunused-pattern-binds"
845    \ , "-Wno-unused-pattern-binds"
846    \ , "-Wunused-top-binds"
847    \ , "-Wno-unused-top-binds"
848    \ , "-Wunused-type-patterns"
849    \ , "-Wno-unused-type-patterns"
850    \ , "-Wwarn"
851    \ , "-Werror"
852    \ , "-Wwarnings-deprecations"
853    \ , "-Wno-warnings-deprecations"
854    \ , "-Wwrong-do-bind"
855    \ , "-Wno-wrong-do-bind"
856    \ , "-O,"
857    \ , "-O0"
858    \ , "-O0"
859    \ , "-O2"
860    \ , "-O0"
861    \ , "-Odph"
862    \ , "-fcall-arity"
863    \ , "-fno-call-arity"
864    \ , "-fcase-folding"
865    \ , "-fno-case-folding"
866    \ , "-fcase-merge"
867    \ , "-fno-case-merge"
868    \ , "-fcmm-elim-common-blocks"
869    \ , "-fno-cmm-elim-common-blocks"
870    \ , "-fcmm-sink"
871    \ , "-fno-cmm-sink"
872    \ , "-fcpr-anal"
873    \ , "-fno-cpr-anal"
874    \ , "-fcross-module-specialise"
875    \ , "-fno-cross-module-specialise"
876    \ , "-fcse"
877    \ , "-fno-cse"
878    \ , "-fdicts-cheap"
879    \ , "-fno-dicts-cheap"
880    \ , "-fdicts-strict"
881    \ , "-fno-dicts-strict"
882    \ , "-fdmd-tx-dict-sel"
883    \ , "-fno-dmd-tx-dict-sel"
884    \ , "-fdo-eta-reduction"
885    \ , "-fno-do-eta-reduction"
886    \ , "-fdo-lambda-eta-expansion"
887    \ , "-fno-do-lambda-eta-expansion"
888    \ , "-feager-blackholing"
889    \ , "-fenable-rewrite-rules"
890    \ , "-fno-enable-rewrite-rules"
891    \ , "-fexcess-precision"
892    \ , "-fno-excess-precision"
893    \ , "-fexitification"
894    \ , "-fno-exitification"
895    \ , "-fexpose-all-unfoldings"
896    \ , "-fno-expose-all-unfoldings"
897    \ , "-ffloat-in"
898    \ , "-fno-float-in"
899    \ , "-ffull-laziness"
900    \ , "-fno-full-laziness"
901    \ , "-ffun-to-thunk"
902    \ , "-fno-fun-to-thunk"
903    \ , "-fignore-asserts"
904    \ , "-fno-ignore-asserts"
905    \ , "-fignore-interface-pragmas"
906    \ , "-fno-ignore-interface-pragmas"
907    \ , "-flate-dmd-anal"
908    \ , "-fno-late-dmd-anal"
909    \ , "-fliberate-case"
910    \ , "-fno-liberate-case"
911    \ , "-fliberate-case-threshold="
912    \ , "-fno-liberate-case-threshold"
913    \ , "-fllvm-pass-vectors-in-regs"
914    \ , "-fno-llvm-pass-vectors-in-regs"
915    \ , "-floopification"
916    \ , "-fno-loopification"
917    \ , "-fmax-inline-alloc-size="
918    \ , "-fmax-inline-memcpy-insns="
919    \ , "-fmax-inline-memset-insns="
920    \ , "-fmax-relevant-binds="
921    \ , "-fno-max-relevant-bindings"
922    \ , "-fmax-simplifier-iterations="
923    \ , "-fmax-uncovered-patterns="
924    \ , "-fmax-valid-substitutions="
925    \ , "-fno-max-valid-substitutions"
926    \ , "-fmax-worker-args="
927    \ , "-fno-opt-coercion"
928    \ , "-fno-pre-inlining"
929    \ , "-fno-state-hack"
930    \ , "-fomit-interface-pragmas"
931    \ , "-fno-omit-interface-pragmas"
932    \ , "-fomit-yields"
933    \ , "-fno-omit-yields"
934    \ , "-foptimal-applicative-do"
935    \ , "-fno-optimal-applicative-do"
936    \ , "-fpedantic-bottoms"
937    \ , "-fno-pedantic-bottoms"
938    \ , "-fregs-graph"
939    \ , "-fno-regs-graph"
940    \ , "-fregs-iterative"
941    \ , "-fno-regs-iterative"
942    \ , "-fsimpl-tick-factor="
943    \ , "-fsimplifier-phases="
944    \ , "-fsolve-constant-dicts"
945    \ , "-fno-solve-constant-dicts"
946    \ , "-fspec-constr"
947    \ , "-fno-spec-constr"
948    \ , "-fspec-constr-count="
949    \ , "-fno-spec-constr-count"
950    \ , "-fspec-constr-keen"
951    \ , "-fno-spec-constr-keen"
952    \ , "-fspec-constr-threshold="
953    \ , "-fno-spec-constr-threshold"
954    \ , "-fspecialise"
955    \ , "-fno-specialise"
956    \ , "-fspecialise-aggressively"
957    \ , "-fno-specialise-aggressively"
958    \ , "-fstatic-argument-transformation"
959    \ , "-fno-static-argument-transformation"
960    \ , "-fstg-cse"
961    \ , "-fno-stg-cse"
962    \ , "-fstrictness"
963    \ , "-fno-strictness"
964    \ , "-fstrictness-before="
965    \ , "-funbox-small-strict-fields"
966    \ , "-fno-unbox-small-strict-fields"
967    \ , "-funbox-strict-fields"
968    \ , "-fno-unbox-strict-fields"
969    \ , "-funfolding-creation-threshold="
970    \ , "-funfolding-dict-discount="
971    \ , "-funfolding-fun-discount="
972    \ , "-funfolding-keeness-factor="
973    \ , "-funfolding-use-threshold="
974    \ , "-fvectorisation-avoidance"
975    \ , "-fno-vectorisation-avoidance"
976    \ , "-fvectorise"
977    \ , "-fno-vectorise"
978    \ , "-fno-prof-auto"
979    \ , "-fprof-auto"
980    \ , "-fno-prof-cafs"
981    \ , "-fprof-cafs"
982    \ , "-fno-prof-count-entries"
983    \ , "-fprof-count-entries"
984    \ , "-fprof-auto"
985    \ , "-fno-prof-auto"
986    \ , "-fprof-auto-calls"
987    \ , "-fno-prof-auto-calls"
988    \ , "-fprof-auto-exported"
989    \ , "-fno-prof-auto"
990    \ , "-fprof-auto-top"
991    \ , "-fno-prof-auto"
992    \ , "-fprof-cafs"
993    \ , "-fno-prof-cafs"
994    \ , "-prof"
995    \ , "-ticky"
996    \ , "-fhpc"
997    \ , "-cpp"
998    \ , "-D[=]"
999    \ , "-U"
1000    \ , "-I"
1001    \ , "-U"
1002    \ , "-dynamic"
1003    \ , "-too"
1004    \ , "-fasm"
1005    \ , "-fllvm"
1006    \ , "-fbyte-code"
1007    \ , "-fllvm"
1008    \ , "-fasm"
1009    \ , "-fno-code"
1010    \ , "-fobject-code"
1011    \ , "-fPIC"
1012    \ , "-fPIE"
1013    \ , "-fwrite-interface"
1014    \ , "-debug"
1015    \ , "-dylib-install-name"
1016    \ , "-dynamic"
1017    \ , "-dynload"
1018    \ , "-eventlog"
1019    \ , "-fno-embed-manifest"
1020    \ , "-fno-gen-manifest"
1021    \ , "-fno-shared-implib"
1022    \ , "-framework"
1023    \ , "-framework-path"
1024    \ , "-fwhole-archive-hs-libs"
1025    \ , "-L"
1026    \ , "-l"
1027    \ , "-main-is"
1028    \ , "-no-hs-main"
1029    \ , "-no-rtsopts-suggestions"
1030    \ , "-package"
1031    \ , "-pie"
1032    \ , "-rdynamic"
1033    \ , "-rtsopts[=]"
1034    \ , "-shared"
1035    \ , "-split-objs"
1036    \ , "-split-sections"
1037    \ , "-static"
1038    \ , "-staticlib"
1039    \ , "-threaded"
1040    \ , "-with-rtsopts="
1041    \ , "-fplugin-opt=:"
1042    \ , "-fplugin="
1043    \ , "-hide-all-plugin-packages"
1044    \ , "-plugin-package"
1045    \ , "-plugin-package-id"
1046    \ , "-pgma"
1047    \ , "-pgmc"
1048    \ , "-pgmdll"
1049    \ , "-pgmF"
1050    \ , "-pgmi"
1051    \ , "-pgmL"
1052    \ , "-pgml"
1053    \ , "-pgmlc"
1054    \ , "-pgmlibtool"
1055    \ , "-pgmlo"
1056    \ , "-pgmP"
1057    \ , "-pgms"
1058    \ , "-pgmwindres"
1059    \ , "-opta"
1060    \ , "-optc"
1061    \ , "-optdll"
1062    \ , "-optF"
1063    \ , "-opti"
1064    \ , "-optL"
1065    \ , "-optl"
1066    \ , "-optlc"
1067    \ , "-optlo"
1068    \ , "-optP"
1069    \ , "-optwindres"
1070    \ , "-msse2"
1071    \ , "-msse4.2"
1072    \ , "-dcmm-lint"
1073    \ , "-dcore-lint"
1074    \ , "-ddump-asm"
1075    \ , "-ddump-asm-expanded"
1076    \ , "-ddump-asm-liveness"
1077    \ , "-ddump-asm-native"
1078    \ , "-ddump-asm-regalloc"
1079    \ , "-ddump-asm-regalloc-stages"
1080    \ , "-ddump-asm-stats"
1081    \ , "-ddump-bcos"
1082    \ , "-ddump-cmm"
1083    \ , "-ddump-cmm-caf"
1084    \ , "-ddump-cmm-cbe"
1085    \ , "-ddump-cmm-cfg"
1086    \ , "-ddump-cmm-cps"
1087    \ , "-ddump-cmm-from-stg"
1088    \ , "-ddump-cmm-info"
1089    \ , "-ddump-cmm-proc"
1090    \ , "-ddump-cmm-procmap"
1091    \ , "-ddump-cmm-raw"
1092    \ , "-ddump-cmm-sink"
1093    \ , "-ddump-cmm-sp"
1094    \ , "-ddump-cmm-split"
1095    \ , "-ddump-cmm-switch"
1096    \ , "-ddump-cmm-verbose"
1097    \ , "-ddump-core-stats"
1098    \ , "-ddump-cse"
1099    \ , "-ddump-deriv"
1100    \ , "-ddump-ds"
1101    \ , "-ddump-ec-trace"
1102    \ , "-ddump-foreign"
1103    \ , "-ddump-if-trace"
1104    \ , "-ddump-inlinings"
1105    \ , "-ddump-json"
1106    \ , "-ddump-llvm"
1107    \ , "-ddump-occur-anal"
1108    \ , "-ddump-opt-cmm"
1109    \ , "-ddump-parsed"
1110    \ , "-ddump-parsed-ast"
1111    \ , "-ddump-prep"
1112    \ , "-ddump-rn"
1113    \ , "-ddump-rn-ast"
1114    \ , "-ddump-rn-stats"
1115    \ , "-ddump-rn-trace"
1116    \ , "-ddump-rule-firings"
1117    \ , "-ddump-rule-rewrites"
1118    \ , "-ddump-rules"
1119    \ , "-ddump-simpl"
1120    \ , "-ddump-simpl-iterations"
1121    \ , "-ddump-simpl-stats"
1122    \ , "-ddump-spec"
1123    \ , "-ddump-splices"
1124    \ , "-ddump-stg"
1125    \ , "-ddump-str-signatures"
1126    \ , "-ddump-stranal"
1127    \ , "-ddump-tc"
1128    \ , "-ddump-tc-ast"
1129    \ , "-ddump-tc-trace"
1130    \ , "-ddump-timings"
1131    \ , "-ddump-to-file"
1132    \ , "-ddump-types"
1133    \ , "-ddump-vect"
1134    \ , "-ddump-vt-trace"
1135    \ , "-ddump-worker-wrapper"
1136    \ , "-dfaststring-stats"
1137    \ , "-dinitial-unique="
1138    \ , "-dno-debug-output"
1139    \ , "-ddebug-output"
1140    \ , "-dppr-case-as-let"
1141    \ , "-dppr-cols="
1142    \ , "-dppr-debug"
1143    \ , "-dppr-user-length"
1144    \ , "-dshow-passes"
1145    \ , "-dstg-lint"
1146    \ , "-dsuppress-all"
1147    \ , "-dsuppress-coercions"
1148    \ , "-dsuppress-idinfo"
1149    \ , "-dsuppress-module-prefixes"
1150    \ , "-dsuppress-stg-free-vars"
1151    \ , "-dsuppress-ticks"
1152    \ , "-dsuppress-type-applications"
1153    \ , "-dsuppress-type-signatures"
1154    \ , "-dsuppress-unfoldings"
1155    \ , "-dsuppress-uniques"
1156    \ , "-dsuppress-var-kinds"
1157    \ , "-dth-dec-file="
1158    \ , "-dunique-increment="
1159    \ , "-dverbose-core2core"
1160    \ , "-dverbose-stg2stg"
1161    \ , "-falignment-sanitisation"
1162    \ , "-fcatch-bottoms"
1163    \ , "-fllvm-fill-undef-with-garbage"
1164    \ , "-g,"
1165    \ , "-fexternal-interpreter"
1166    \ , "-fglasgow-exts"
1167    \ , "-fno-glasgow-exts"
1168    \ , "-ghcversion-file"
1169    \ , "-H"
1170    \ , "-j[]"
1171    \ ]
1172
1173let s:commonModules =
1174    \ [ "Distribution.Backpack"
1175    \ , "Distribution.Backpack.ComponentsGraph"
1176    \ , "Distribution.Backpack.Configure"
1177    \ , "Distribution.Backpack.ConfiguredComponent"
1178    \ , "Distribution.Backpack.DescribeUnitId"
1179    \ , "Distribution.Backpack.FullUnitId"
1180    \ , "Distribution.Backpack.LinkedComponent"
1181    \ , "Distribution.Backpack.ModSubst"
1182    \ , "Distribution.Backpack.ModuleShape"
1183    \ , "Distribution.Backpack.PreModuleShape"
1184    \ , "Distribution.CabalSpecVersion"
1185    \ , "Distribution.Compat.Binary"
1186    \ , "Distribution.Compat.CharParsing"
1187    \ , "Distribution.Compat.CreatePipe"
1188    \ , "Distribution.Compat.DList"
1189    \ , "Distribution.Compat.Directory"
1190    \ , "Distribution.Compat.Environment"
1191    \ , "Distribution.Compat.Exception"
1192    \ , "Distribution.Compat.Graph"
1193    \ , "Distribution.Compat.Internal.TempFile"
1194    \ , "Distribution.Compat.Lens"
1195    \ , "Distribution.Compat.Map.Strict"
1196    \ , "Distribution.Compat.Newtype"
1197    \ , "Distribution.Compat.Parsing"
1198    \ , "Distribution.Compat.Prelude.Internal"
1199    \ , "Distribution.Compat.ReadP"
1200    \ , "Distribution.Compat.Semigroup"
1201    \ , "Distribution.Compat.Stack"
1202    \ , "Distribution.Compat.Time"
1203    \ , "Distribution.Compiler"
1204    \ , "Distribution.FieldGrammar"
1205    \ , "Distribution.FieldGrammar.Class"
1206    \ , "Distribution.FieldGrammar.FieldDescrs"
1207    \ , "Distribution.FieldGrammar.Parsec"
1208    \ , "Distribution.FieldGrammar.Pretty"
1209    \ , "Distribution.InstalledPackageInfo"
1210    \ , "Distribution.License"
1211    \ , "Distribution.Make"
1212    \ , "Distribution.ModuleName"
1213    \ , "Distribution.Package"
1214    \ , "Distribution.PackageDescription"
1215    \ , "Distribution.PackageDescription.Check"
1216    \ , "Distribution.PackageDescription.Configuration"
1217    \ , "Distribution.PackageDescription.FieldGrammar"
1218    \ , "Distribution.PackageDescription.Parsec"
1219    \ , "Distribution.PackageDescription.PrettyPrint"
1220    \ , "Distribution.PackageDescription.Quirks"
1221    \ , "Distribution.PackageDescription.Utils"
1222    \ , "Distribution.ParseUtils"
1223    \ , "Distribution.Parsec.Class"
1224    \ , "Distribution.Parsec.Common"
1225    \ , "Distribution.Parsec.ConfVar"
1226    \ , "Distribution.Parsec.Field"
1227    \ , "Distribution.Parsec.FieldLineStream"
1228    \ , "Distribution.Parsec.Lexer"
1229    \ , "Distribution.Parsec.LexerMonad"
1230    \ , "Distribution.Parsec.Newtypes"
1231    \ , "Distribution.Parsec.ParseResult"
1232    \ , "Distribution.Parsec.Parser"
1233    \ , "Distribution.Pretty"
1234    \ , "Distribution.PrettyUtils"
1235    \ , "Distribution.ReadE"
1236    \ , "Distribution.SPDX"
1237    \ , "Distribution.SPDX.License"
1238    \ , "Distribution.SPDX.LicenseExceptionId"
1239    \ , "Distribution.SPDX.LicenseExpression"
1240    \ , "Distribution.SPDX.LicenseId"
1241    \ , "Distribution.SPDX.LicenseReference"
1242    \ , "Distribution.Simple"
1243    \ , "Distribution.Simple.Bench"
1244    \ , "Distribution.Simple.Build"
1245    \ , "Distribution.Simple.Build.Macros"
1246    \ , "Distribution.Simple.Build.PathsModule"
1247    \ , "Distribution.Simple.BuildPaths"
1248    \ , "Distribution.Simple.BuildTarget"
1249    \ , "Distribution.Simple.BuildToolDepends"
1250    \ , "Distribution.Simple.CCompiler"
1251    \ , "Distribution.Simple.Command"
1252    \ , "Distribution.Simple.Compiler"
1253    \ , "Distribution.Simple.Configure"
1254    \ , "Distribution.Simple.Doctest"
1255    \ , "Distribution.Simple.GHC"
1256    \ , "Distribution.Simple.GHCJS"
1257    \ , "Distribution.Simple.Haddock"
1258    \ , "Distribution.Simple.HaskellSuite"
1259    \ , "Distribution.Simple.Hpc"
1260    \ , "Distribution.Simple.Install"
1261    \ , "Distribution.Simple.InstallDirs"
1262    \ , "Distribution.Simple.JHC"
1263    \ , "Distribution.Simple.LHC"
1264    \ , "Distribution.Simple.LocalBuildInfo"
1265    \ , "Distribution.Simple.PackageIndex"
1266    \ , "Distribution.Simple.PreProcess"
1267    \ , "Distribution.Simple.PreProcess.Unlit"
1268    \ , "Distribution.Simple.Program"
1269    \ , "Distribution.Simple.Program.Ar"
1270    \ , "Distribution.Simple.Program.Builtin"
1271    \ , "Distribution.Simple.Program.Db"
1272    \ , "Distribution.Simple.Program.Find"
1273    \ , "Distribution.Simple.Program.GHC"
1274    \ , "Distribution.Simple.Program.HcPkg"
1275    \ , "Distribution.Simple.Program.Hpc"
1276    \ , "Distribution.Simple.Program.Internal"
1277    \ , "Distribution.Simple.Program.Ld"
1278    \ , "Distribution.Simple.Program.ResponseFile"
1279    \ , "Distribution.Simple.Program.Run"
1280    \ , "Distribution.Simple.Program.Script"
1281    \ , "Distribution.Simple.Program.Strip"
1282    \ , "Distribution.Simple.Program.Types"
1283    \ , "Distribution.Simple.Register"
1284    \ , "Distribution.Simple.Setup"
1285    \ , "Distribution.Simple.SrcDist"
1286    \ , "Distribution.Simple.Test"
1287    \ , "Distribution.Simple.Test.ExeV10"
1288    \ , "Distribution.Simple.Test.LibV09"
1289    \ , "Distribution.Simple.Test.Log"
1290    \ , "Distribution.Simple.UHC"
1291    \ , "Distribution.Simple.UserHooks"
1292    \ , "Distribution.Simple.Utils"
1293    \ , "Distribution.System"
1294    \ , "Distribution.TestSuite"
1295    \ , "Distribution.Text"
1296    \ , "Distribution.Types.AbiDependency"
1297    \ , "Distribution.Types.AbiHash"
1298    \ , "Distribution.Types.AnnotatedId"
1299    \ , "Distribution.Types.Benchmark"
1300    \ , "Distribution.Types.Benchmark.Lens"
1301    \ , "Distribution.Types.BenchmarkInterface"
1302    \ , "Distribution.Types.BenchmarkType"
1303    \ , "Distribution.Types.BuildInfo"
1304    \ , "Distribution.Types.BuildInfo.Lens"
1305    \ , "Distribution.Types.BuildType"
1306    \ , "Distribution.Types.Component"
1307    \ , "Distribution.Types.ComponentId"
1308    \ , "Distribution.Types.ComponentInclude"
1309    \ , "Distribution.Types.ComponentLocalBuildInfo"
1310    \ , "Distribution.Types.ComponentName"
1311    \ , "Distribution.Types.ComponentRequestedSpec"
1312    \ , "Distribution.Types.CondTree"
1313    \ , "Distribution.Types.Condition"
1314    \ , "Distribution.Types.Dependency"
1315    \ , "Distribution.Types.DependencyMap"
1316    \ , "Distribution.Types.ExeDependency"
1317    \ , "Distribution.Types.Executable"
1318    \ , "Distribution.Types.Executable.Lens"
1319    \ , "Distribution.Types.ExecutableScope"
1320    \ , "Distribution.Types.ExposedModule"
1321    \ , "Distribution.Types.ForeignLib"
1322    \ , "Distribution.Types.ForeignLib.Lens"
1323    \ , "Distribution.Types.ForeignLibOption"
1324    \ , "Distribution.Types.ForeignLibType"
1325    \ , "Distribution.Types.GenericPackageDescription"
1326    \ , "Distribution.Types.GenericPackageDescription.Lens"
1327    \ , "Distribution.Types.HookedBuildInfo"
1328    \ , "Distribution.Types.IncludeRenaming"
1329    \ , "Distribution.Types.InstalledPackageInfo"
1330    \ , "Distribution.Types.InstalledPackageInfo.FieldGrammar"
1331    \ , "Distribution.Types.InstalledPackageInfo.Lens"
1332    \ , "Distribution.Types.LegacyExeDependency"
1333    \ , "Distribution.Types.Lens"
1334    \ , "Distribution.Types.Library"
1335    \ , "Distribution.Types.Library.Lens"
1336    \ , "Distribution.Types.LocalBuildInfo"
1337    \ , "Distribution.Types.Mixin"
1338    \ , "Distribution.Types.Module"
1339    \ , "Distribution.Types.ModuleReexport"
1340    \ , "Distribution.Types.ModuleRenaming"
1341    \ , "Distribution.Types.MungedPackageId"
1342    \ , "Distribution.Types.MungedPackageName"
1343    \ , "Distribution.Types.PackageDescription"
1344    \ , "Distribution.Types.PackageDescription.Lens"
1345    \ , "Distribution.Types.PackageId"
1346    \ , "Distribution.Types.PackageId.Lens"
1347    \ , "Distribution.Types.PackageName"
1348    \ , "Distribution.Types.PkgconfigDependency"
1349    \ , "Distribution.Types.PkgconfigName"
1350    \ , "Distribution.Types.SetupBuildInfo"
1351    \ , "Distribution.Types.SetupBuildInfo.Lens"
1352    \ , "Distribution.Types.SourceRepo"
1353    \ , "Distribution.Types.SourceRepo.Lens"
1354    \ , "Distribution.Types.TargetInfo"
1355    \ , "Distribution.Types.TestSuite"
1356    \ , "Distribution.Types.TestSuite.Lens"
1357    \ , "Distribution.Types.TestSuiteInterface"
1358    \ , "Distribution.Types.TestType"
1359    \ , "Distribution.Types.UnitId"
1360    \ , "Distribution.Types.UnqualComponentName"
1361    \ , "Distribution.Types.Version"
1362    \ , "Distribution.Types.VersionInterval"
1363    \ , "Distribution.Types.VersionRange"
1364    \ , "Distribution.Utils.Generic"
1365    \ , "Distribution.Utils.IOData"
1366    \ , "Distribution.Utils.LogProgress"
1367    \ , "Distribution.Utils.MapAccum"
1368    \ , "Distribution.Utils.NubList"
1369    \ , "Distribution.Utils.Progress"
1370    \ , "Distribution.Utils.ShortText"
1371    \ , "Distribution.Verbosity"
1372    \ , "Distribution.Version"
1373    \ , "Language.Haskell.Extension"
1374    \ , "Graphics.GLU"
1375    \ , "Graphics.GLU.Callbacks"
1376    \ , "Graphics.GLU.Functions"
1377    \ , "Graphics.GLU.Tokens"
1378    \ , "Graphics.GLU.Types"
1379    \ , "Graphics.UI.GLUT"
1380    \ , "Graphics.UI.GLUT.Begin"
1381    \ , "Graphics.UI.GLUT.Callbacks"
1382    \ , "Graphics.UI.GLUT.Callbacks.Global"
1383    \ , "Graphics.UI.GLUT.Callbacks.Window"
1384    \ , "Graphics.UI.GLUT.Colormap"
1385    \ , "Graphics.UI.GLUT.Debugging"
1386    \ , "Graphics.UI.GLUT.DeviceControl"
1387    \ , "Graphics.UI.GLUT.Fonts"
1388    \ , "Graphics.UI.GLUT.GameMode"
1389    \ , "Graphics.UI.GLUT.Initialization"
1390    \ , "Graphics.UI.GLUT.Menu"
1391    \ , "Graphics.UI.GLUT.Objects"
1392    \ , "Graphics.UI.GLUT.Overlay"
1393    \ , "Graphics.UI.GLUT.State"
1394    \ , "Graphics.UI.GLUT.Window"
1395    \ , "Network.Browser"
1396    \ , "Network.BufferType"
1397    \ , "Network.HTTP"
1398    \ , "Network.HTTP.Auth"
1399    \ , "Network.HTTP.Base"
1400    \ , "Network.HTTP.Cookie"
1401    \ , "Network.HTTP.HandleStream"
1402    \ , "Network.HTTP.Headers"
1403    \ , "Network.HTTP.Proxy"
1404    \ , "Network.HTTP.Stream"
1405    \ , "Network.Stream"
1406    \ , "Network.StreamDebugger"
1407    \ , "Network.StreamSocket"
1408    \ , "Network.TCP"
1409    \ , "Test.HUnit"
1410    \ , "Test.HUnit.Base"
1411    \ , "Test.HUnit.Lang"
1412    \ , "Test.HUnit.Terminal"
1413    \ , "Test.HUnit.Text"
1414    \ , "Data.ObjectName"
1415    \ , "Graphics.Rendering.OpenGL"
1416    \ , "Graphics.Rendering.OpenGL.GL"
1417    \ , "Graphics.Rendering.OpenGL.GL.Antialiasing"
1418    \ , "Graphics.Rendering.OpenGL.GL.BeginEnd"
1419    \ , "Graphics.Rendering.OpenGL.GL.Bitmaps"
1420    \ , "Graphics.Rendering.OpenGL.GL.BufferObjects"
1421    \ , "Graphics.Rendering.OpenGL.GL.Clipping"
1422    \ , "Graphics.Rendering.OpenGL.GL.ColorSum"
1423    \ , "Graphics.Rendering.OpenGL.GL.Colors"
1424    \ , "Graphics.Rendering.OpenGL.GL.ConditionalRendering"
1425    \ , "Graphics.Rendering.OpenGL.GL.CoordTrans"
1426    \ , "Graphics.Rendering.OpenGL.GL.DebugOutput"
1427    \ , "Graphics.Rendering.OpenGL.GL.DisplayLists"
1428    \ , "Graphics.Rendering.OpenGL.GL.Evaluators"
1429    \ , "Graphics.Rendering.OpenGL.GL.Feedback"
1430    \ , "Graphics.Rendering.OpenGL.GL.FlushFinish"
1431    \ , "Graphics.Rendering.OpenGL.GL.Fog"
1432    \ , "Graphics.Rendering.OpenGL.GL.Framebuffer"
1433    \ , "Graphics.Rendering.OpenGL.GL.FramebufferObjects"
1434    \ , "Graphics.Rendering.OpenGL.GL.FramebufferObjects.Attachments"
1435    \ , "Graphics.Rendering.OpenGL.GL.FramebufferObjects.FramebufferObjects"
1436    \ , "Graphics.Rendering.OpenGL.GL.FramebufferObjects.Queries"
1437    \ , "Graphics.Rendering.OpenGL.GL.FramebufferObjects.RenderbufferObjects"
1438    \ , "Graphics.Rendering.OpenGL.GL.Hints"
1439    \ , "Graphics.Rendering.OpenGL.GL.LineSegments"
1440    \ , "Graphics.Rendering.OpenGL.GL.PerFragment"
1441    \ , "Graphics.Rendering.OpenGL.GL.PixelRectangles"
1442    \ , "Graphics.Rendering.OpenGL.GL.PixelRectangles.ColorTable"
1443    \ , "Graphics.Rendering.OpenGL.GL.PixelRectangles.Convolution"
1444    \ , "Graphics.Rendering.OpenGL.GL.PixelRectangles.Histogram"
1445    \ , "Graphics.Rendering.OpenGL.GL.PixelRectangles.Minmax"
1446    \ , "Graphics.Rendering.OpenGL.GL.PixelRectangles.PixelMap"
1447    \ , "Graphics.Rendering.OpenGL.GL.PixelRectangles.PixelStorage"
1448    \ , "Graphics.Rendering.OpenGL.GL.PixelRectangles.PixelTransfer"
1449    \ , "Graphics.Rendering.OpenGL.GL.PixelRectangles.Rasterization"
1450    \ , "Graphics.Rendering.OpenGL.GL.PixellikeObject"
1451    \ , "Graphics.Rendering.OpenGL.GL.Points"
1452    \ , "Graphics.Rendering.OpenGL.GL.Polygons"
1453    \ , "Graphics.Rendering.OpenGL.GL.PrimitiveMode"
1454    \ , "Graphics.Rendering.OpenGL.GL.QueryObjects"
1455    \ , "Graphics.Rendering.OpenGL.GL.RasterPos"
1456    \ , "Graphics.Rendering.OpenGL.GL.ReadCopyPixels"
1457    \ , "Graphics.Rendering.OpenGL.GL.Rectangles"
1458    \ , "Graphics.Rendering.OpenGL.GL.SavingState"
1459    \ , "Graphics.Rendering.OpenGL.GL.Selection"
1460    \ , "Graphics.Rendering.OpenGL.GL.Shaders"
1461    \ , "Graphics.Rendering.OpenGL.GL.Shaders.Attribs"
1462    \ , "Graphics.Rendering.OpenGL.GL.Shaders.Limits"
1463    \ , "Graphics.Rendering.OpenGL.GL.Shaders.ProgramBinaries"
1464    \ , "Graphics.Rendering.OpenGL.GL.Shaders.ProgramObjects"
1465    \ , "Graphics.Rendering.OpenGL.GL.Shaders.ShaderBinaries"
1466    \ , "Graphics.Rendering.OpenGL.GL.Shaders.ShaderObjects"
1467    \ , "Graphics.Rendering.OpenGL.GL.Shaders.Uniform"
1468    \ , "Graphics.Rendering.OpenGL.GL.StringQueries"
1469    \ , "Graphics.Rendering.OpenGL.GL.SyncObjects"
1470    \ , "Graphics.Rendering.OpenGL.GL.Tensor"
1471    \ , "Graphics.Rendering.OpenGL.GL.Texturing"
1472    \ , "Graphics.Rendering.OpenGL.GL.Texturing.Application"
1473    \ , "Graphics.Rendering.OpenGL.GL.Texturing.Environments"
1474    \ , "Graphics.Rendering.OpenGL.GL.Texturing.Objects"
1475    \ , "Graphics.Rendering.OpenGL.GL.Texturing.Parameters"
1476    \ , "Graphics.Rendering.OpenGL.GL.Texturing.Queries"
1477    \ , "Graphics.Rendering.OpenGL.GL.Texturing.Specification"
1478    \ , "Graphics.Rendering.OpenGL.GL.TransformFeedback"
1479    \ , "Graphics.Rendering.OpenGL.GL.VertexArrayObjects"
1480    \ , "Graphics.Rendering.OpenGL.GL.VertexArrays"
1481    \ , "Graphics.Rendering.OpenGL.GL.VertexSpec"
1482    \ , "Graphics.Rendering.OpenGL.GLU"
1483    \ , "Graphics.Rendering.OpenGL.GLU.Errors"
1484    \ , "Graphics.Rendering.OpenGL.GLU.Initialization"
1485    \ , "Graphics.Rendering.OpenGL.GLU.Matrix"
1486    \ , "Graphics.Rendering.OpenGL.GLU.Mipmapping"
1487    \ , "Graphics.Rendering.OpenGL.GLU.NURBS"
1488    \ , "Graphics.Rendering.OpenGL.GLU.Quadrics"
1489    \ , "Graphics.Rendering.OpenGL.GLU.Tessellation"
1490    \ , "Graphics.GL"
1491    \ , "Graphics.GL.AMD"
1492    \ , "Graphics.GL.AMD.BlendMinmaxFactor"
1493    \ , "Graphics.GL.AMD.DebugOutput"
1494    \ , "Graphics.GL.AMD.DepthClampSeparate"
1495    \ , "Graphics.GL.AMD.DrawBuffersBlend"
1496    \ , "Graphics.GL.AMD.FramebufferMultisampleAdvanced"
1497    \ , "Graphics.GL.AMD.FramebufferSamplePositions"
1498    \ , "Graphics.GL.AMD.GPUShaderHalfFloat"
1499    \ , "Graphics.GL.AMD.GPUShaderInt64"
1500    \ , "Graphics.GL.AMD.InterleavedElements"
1501    \ , "Graphics.GL.AMD.MultiDrawIndirect"
1502    \ , "Graphics.GL.AMD.NameGenDelete"
1503    \ , "Graphics.GL.AMD.OcclusionQueryEvent"
1504    \ , "Graphics.GL.AMD.PerformanceMonitor"
1505    \ , "Graphics.GL.AMD.PinnedMemory"
1506    \ , "Graphics.GL.AMD.QueryBufferObject"
1507    \ , "Graphics.GL.AMD.SamplePositions"
1508    \ , "Graphics.GL.AMD.SeamlessCubemapPerTexture"
1509    \ , "Graphics.GL.AMD.SparseTexture"
1510    \ , "Graphics.GL.AMD.StencilOperationExtended"
1511    \ , "Graphics.GL.AMD.TransformFeedback4"
1512    \ , "Graphics.GL.AMD.VertexShaderTessellator"
1513    \ , "Graphics.GL.APPLE"
1514    \ , "Graphics.GL.APPLE.AuxDepthStencil"
1515    \ , "Graphics.GL.APPLE.ClientStorage"
1516    \ , "Graphics.GL.APPLE.ElementArray"
1517    \ , "Graphics.GL.APPLE.Fence"
1518    \ , "Graphics.GL.APPLE.FloatPixels"
1519    \ , "Graphics.GL.APPLE.FlushBufferRange"
1520    \ , "Graphics.GL.APPLE.ObjectPurgeable"
1521    \ , "Graphics.GL.APPLE.RGB422"
1522    \ , "Graphics.GL.APPLE.RowBytes"
1523    \ , "Graphics.GL.APPLE.SpecularVector"
1524    \ , "Graphics.GL.APPLE.TextureRange"
1525    \ , "Graphics.GL.APPLE.TransformHint"
1526    \ , "Graphics.GL.APPLE.VertexArrayObject"
1527    \ , "Graphics.GL.APPLE.VertexArrayRange"
1528    \ , "Graphics.GL.APPLE.VertexProgramEvaluators"
1529    \ , "Graphics.GL.APPLE.YCbCr422"
1530    \ , "Graphics.GL.ARB"
1531    \ , "Graphics.GL.ARB.BaseInstance"
1532    \ , "Graphics.GL.ARB.BindlessTexture"
1533    \ , "Graphics.GL.ARB.BlendFuncExtended"
1534    \ , "Graphics.GL.ARB.BufferStorage"
1535    \ , "Graphics.GL.ARB.CLEvent"
1536    \ , "Graphics.GL.ARB.ClearBufferObject"
1537    \ , "Graphics.GL.ARB.ClearTexture"
1538    \ , "Graphics.GL.ARB.ClipControl"
1539    \ , "Graphics.GL.ARB.ColorBufferFloat"
1540    \ , "Graphics.GL.ARB.CompressedTexturePixelStorage"
1541    \ , "Graphics.GL.ARB.ComputeShader"
1542    \ , "Graphics.GL.ARB.ComputeVariableGroupSize"
1543    \ , "Graphics.GL.ARB.ConditionalRenderInverted"
1544    \ , "Graphics.GL.ARB.CopyBuffer"
1545    \ , "Graphics.GL.ARB.CopyImage"
1546    \ , "Graphics.GL.ARB.CullDistance"
1547    \ , "Graphics.GL.ARB.DebugOutput"
1548    \ , "Graphics.GL.ARB.DepthBufferFloat"
1549    \ , "Graphics.GL.ARB.DepthClamp"
1550    \ , "Graphics.GL.ARB.DepthTexture"
1551    \ , "Graphics.GL.ARB.DirectStateAccess"
1552    \ , "Graphics.GL.ARB.DrawBuffers"
1553    \ , "Graphics.GL.ARB.DrawBuffersBlend"
1554    \ , "Graphics.GL.ARB.DrawElementsBaseVertex"
1555    \ , "Graphics.GL.ARB.DrawIndirect"
1556    \ , "Graphics.GL.ARB.DrawInstanced"
1557    \ , "Graphics.GL.ARB.ES2Compatibility"
1558    \ , "Graphics.GL.ARB.ES31Compatibility"
1559    \ , "Graphics.GL.ARB.ES32Compatibility"
1560    \ , "Graphics.GL.ARB.ES3Compatibility"
1561    \ , "Graphics.GL.ARB.EnhancedLayouts"
1562    \ , "Graphics.GL.ARB.ExplicitUniformLocation"
1563    \ , "Graphics.GL.ARB.FragmentProgram"
1564    \ , "Graphics.GL.ARB.FragmentShader"
1565    \ , "Graphics.GL.ARB.FramebufferNoAttachments"
1566    \ , "Graphics.GL.ARB.FramebufferObjectCompatibility"
1567    \ , "Graphics.GL.ARB.FramebufferObjectCore"
1568    \ , "Graphics.GL.ARB.FramebufferSRGB"
1569    \ , "Graphics.GL.ARB.GPUShader5"
1570    \ , "Graphics.GL.ARB.GPUShaderFP64"
1571    \ , "Graphics.GL.ARB.GPUShaderInt64"
1572    \ , "Graphics.GL.ARB.GeometryShader4"
1573    \ , "Graphics.GL.ARB.GetProgramBinary"
1574    \ , "Graphics.GL.ARB.GetTextureSubImage"
1575    \ , "Graphics.GL.ARB.GlSpirv"
1576    \ , "Graphics.GL.ARB.HalfFloatPixel"
1577    \ , "Graphics.GL.ARB.HalfFloatVertex"
1578    \ , "Graphics.GL.ARB.ImagingCompatibility"
1579    \ , "Graphics.GL.ARB.ImagingCore"
1580    \ , "Graphics.GL.ARB.IndirectParameters"
1581    \ , "Graphics.GL.ARB.InstancedArrays"
1582    \ , "Graphics.GL.ARB.InternalformatQuery"
1583    \ , "Graphics.GL.ARB.InternalformatQuery2"
1584    \ , "Graphics.GL.ARB.InvalidateSubdata"
1585    \ , "Graphics.GL.ARB.MapBufferAlignment"
1586    \ , "Graphics.GL.ARB.MapBufferRange"
1587    \ , "Graphics.GL.ARB.MatrixPalette"
1588    \ , "Graphics.GL.ARB.MultiBind"
1589    \ , "Graphics.GL.ARB.MultiDrawIndirect"
1590    \ , "Graphics.GL.ARB.Multisample"
1591    \ , "Graphics.GL.ARB.Multitexture"
1592    \ , "Graphics.GL.ARB.OcclusionQuery"
1593    \ , "Graphics.GL.ARB.OcclusionQuery2"
1594    \ , "Graphics.GL.ARB.ParallelShaderCompile"
1595    \ , "Graphics.GL.ARB.PipelineStatisticsQuery"
1596    \ , "Graphics.GL.ARB.PixelBufferObject"
1597    \ , "Graphics.GL.ARB.PointParameters"
1598    \ , "Graphics.GL.ARB.PointSprite"
1599    \ , "Graphics.GL.ARB.PolygonOffsetClamp"
1600    \ , "Graphics.GL.ARB.ProgramInterfaceQuery"
1601    \ , "Graphics.GL.ARB.ProvokingVertex"
1602    \ , "Graphics.GL.ARB.QueryBufferObject"
1603    \ , "Graphics.GL.ARB.RobustnessCompatibility"
1604    \ , "Graphics.GL.ARB.RobustnessCore"
1605    \ , "Graphics.GL.ARB.SampleLocations"
1606    \ , "Graphics.GL.ARB.SampleShading"
1607    \ , "Graphics.GL.ARB.SamplerObjects"
1608    \ , "Graphics.GL.ARB.SeamlessCubeMap"
1609    \ , "Graphics.GL.ARB.SeamlessCubemapPerTexture"
1610    \ , "Graphics.GL.ARB.SeparateShaderObjects"
1611    \ , "Graphics.GL.ARB.ShaderAtomicCounters"
1612    \ , "Graphics.GL.ARB.ShaderImageLoadStore"
1613    \ , "Graphics.GL.ARB.ShaderObjects"
1614    \ , "Graphics.GL.ARB.ShaderStorageBufferObject"
1615    \ , "Graphics.GL.ARB.ShaderSubroutine"
1616    \ , "Graphics.GL.ARB.ShadingLanguage100"
1617    \ , "Graphics.GL.ARB.ShadingLanguageInclude"
1618    \ , "Graphics.GL.ARB.Shadow"
1619    \ , "Graphics.GL.ARB.ShadowAmbient"
1620    \ , "Graphics.GL.ARB.SparseBuffer"
1621    \ , "Graphics.GL.ARB.SparseTexture"
1622    \ , "Graphics.GL.ARB.SpirvExtensions"
1623    \ , "Graphics.GL.ARB.StencilTexturing"
1624    \ , "Graphics.GL.ARB.Sync"
1625    \ , "Graphics.GL.ARB.TessellationShader"
1626    \ , "Graphics.GL.ARB.TextureBarrier"
1627    \ , "Graphics.GL.ARB.TextureBorderClamp"
1628    \ , "Graphics.GL.ARB.TextureBufferObject"
1629    \ , "Graphics.GL.ARB.TextureBufferObjectRGB32"
1630    \ , "Graphics.GL.ARB.TextureBufferRange"
1631    \ , "Graphics.GL.ARB.TextureCompression"
1632    \ , "Graphics.GL.ARB.TextureCompressionBPTC"
1633    \ , "Graphics.GL.ARB.TextureCompressionRGTC"
1634    \ , "Graphics.GL.ARB.TextureCubeMap"
1635    \ , "Graphics.GL.ARB.TextureCubeMapArray"
1636    \ , "Graphics.GL.ARB.TextureEnvCombine"
1637    \ , "Graphics.GL.ARB.TextureEnvDot3"
1638    \ , "Graphics.GL.ARB.TextureFilterAnisotropic"
1639    \ , "Graphics.GL.ARB.TextureFilterMinmax"
1640    \ , "Graphics.GL.ARB.TextureFloat"
1641    \ , "Graphics.GL.ARB.TextureGather"
1642    \ , "Graphics.GL.ARB.TextureMirrorClampToEdge"
1643    \ , "Graphics.GL.ARB.TextureMirroredRepeat"
1644    \ , "Graphics.GL.ARB.TextureMultisample"
1645    \ , "Graphics.GL.ARB.TextureRG"
1646    \ , "Graphics.GL.ARB.TextureRGB10A2UI"
1647    \ , "Graphics.GL.ARB.TextureRectangle"
1648    \ , "Graphics.GL.ARB.TextureStencil8"
1649    \ , "Graphics.GL.ARB.TextureStorage"
1650    \ , "Graphics.GL.ARB.TextureStorageMultisample"
1651    \ , "Graphics.GL.ARB.TextureSwizzle"
1652    \ , "Graphics.GL.ARB.TextureView"
1653    \ , "Graphics.GL.ARB.TimerQuery"
1654    \ , "Graphics.GL.ARB.TransformFeedback2"
1655    \ , "Graphics.GL.ARB.TransformFeedback3"
1656    \ , "Graphics.GL.ARB.TransformFeedbackInstanced"
1657    \ , "Graphics.GL.ARB.TransformFeedbackOverflowQuery"
1658    \ , "Graphics.GL.ARB.TransposeMatrix"
1659    \ , "Graphics.GL.ARB.UniformBufferObject"
1660    \ , "Graphics.GL.ARB.VertexArrayBGRA"
1661    \ , "Graphics.GL.ARB.VertexArrayObject"
1662    \ , "Graphics.GL.ARB.VertexAttrib64Bit"
1663    \ , "Graphics.GL.ARB.VertexAttribBinding"
1664    \ , "Graphics.GL.ARB.VertexBlend"
1665    \ , "Graphics.GL.ARB.VertexBufferObject"
1666    \ , "Graphics.GL.ARB.VertexProgram"
1667    \ , "Graphics.GL.ARB.VertexShader"
1668    \ , "Graphics.GL.ARB.VertexType10f11f11fRev"
1669    \ , "Graphics.GL.ARB.VertexType2101010RevCompatibility"
1670    \ , "Graphics.GL.ARB.VertexType2101010RevCore"
1671    \ , "Graphics.GL.ARB.ViewportArray"
1672    \ , "Graphics.GL.ARB.WindowPos"
1673    \ , "Graphics.GL.ATI"
1674    \ , "Graphics.GL.ATI.DrawBuffers"
1675    \ , "Graphics.GL.ATI.ElementArray"
1676    \ , "Graphics.GL.ATI.EnvmapBumpmap"
1677    \ , "Graphics.GL.ATI.FragmentShader"
1678    \ , "Graphics.GL.ATI.MapObjectBuffer"
1679    \ , "Graphics.GL.ATI.Meminfo"
1680    \ , "Graphics.GL.ATI.PNTriangles"
1681    \ , "Graphics.GL.ATI.PixelFormatFloat"
1682    \ , "Graphics.GL.ATI.SeparateStencil"
1683    \ , "Graphics.GL.ATI.TextFragmentShader"
1684    \ , "Graphics.GL.ATI.TextureEnvCombine3"
1685    \ , "Graphics.GL.ATI.TextureFloat"
1686    \ , "Graphics.GL.ATI.TextureMirrorOnce"
1687    \ , "Graphics.GL.ATI.VertexArrayObject"
1688    \ , "Graphics.GL.ATI.VertexAttribArrayObject"
1689    \ , "Graphics.GL.ATI.VertexStreams"
1690    \ , "Graphics.GL.Compatibility30"
1691    \ , "Graphics.GL.Compatibility31"
1692    \ , "Graphics.GL.Compatibility32"
1693    \ , "Graphics.GL.Compatibility33"
1694    \ , "Graphics.GL.Compatibility40"
1695    \ , "Graphics.GL.Compatibility41"
1696    \ , "Graphics.GL.Compatibility42"
1697    \ , "Graphics.GL.Compatibility43"
1698    \ , "Graphics.GL.Compatibility44"
1699    \ , "Graphics.GL.Compatibility45"
1700    \ , "Graphics.GL.Compatibility46"
1701    \ , "Graphics.GL.Core30"
1702    \ , "Graphics.GL.Core31"
1703    \ , "Graphics.GL.Core32"
1704    \ , "Graphics.GL.Core33"
1705    \ , "Graphics.GL.Core40"
1706    \ , "Graphics.GL.Core41"
1707    \ , "Graphics.GL.Core42"
1708    \ , "Graphics.GL.Core43"
1709    \ , "Graphics.GL.Core44"
1710    \ , "Graphics.GL.Core45"
1711    \ , "Graphics.GL.Core46"
1712    \ , "Graphics.GL.EXT"
1713    \ , "Graphics.GL.EXT.ABGR"
1714    \ , "Graphics.GL.EXT.BGRA"
1715    \ , "Graphics.GL.EXT.BindableUniform"
1716    \ , "Graphics.GL.EXT.BlendColor"
1717    \ , "Graphics.GL.EXT.BlendEquationSeparate"
1718    \ , "Graphics.GL.EXT.BlendFuncSeparate"
1719    \ , "Graphics.GL.EXT.BlendMinmax"
1720    \ , "Graphics.GL.EXT.BlendSubtract"
1721    \ , "Graphics.GL.EXT.CMYKA"
1722    \ , "Graphics.GL.EXT.ClipVolumeHint"
1723    \ , "Graphics.GL.EXT.ColorSubtable"
1724    \ , "Graphics.GL.EXT.CompiledVertexArray"
1725    \ , "Graphics.GL.EXT.Convolution"
1726    \ , "Graphics.GL.EXT.CoordinateFrame"
1727    \ , "Graphics.GL.EXT.CopyTexture"
1728    \ , "Graphics.GL.EXT.CullVertex"
1729    \ , "Graphics.GL.EXT.DebugLabel"
1730    \ , "Graphics.GL.EXT.DebugMarker"
1731    \ , "Graphics.GL.EXT.DepthBoundsTest"
1732    \ , "Graphics.GL.EXT.DirectStateAccess"
1733    \ , "Graphics.GL.EXT.DrawBuffers2"
1734    \ , "Graphics.GL.EXT.DrawInstanced"
1735    \ , "Graphics.GL.EXT.DrawRangeElements"
1736    \ , "Graphics.GL.EXT.EglImageStorage"
1737    \ , "Graphics.GL.EXT.ExternalBuffer"
1738    \ , "Graphics.GL.EXT.FogCoord"
1739    \ , "Graphics.GL.EXT.FourTwoTwoPixels"
1740    \ , "Graphics.GL.EXT.FramebufferBlit"
1741    \ , "Graphics.GL.EXT.FramebufferMultisample"
1742    \ , "Graphics.GL.EXT.FramebufferMultisampleBlitScaled"
1743    \ , "Graphics.GL.EXT.FramebufferObject"
1744    \ , "Graphics.GL.EXT.FramebufferSRGB"
1745    \ , "Graphics.GL.EXT.GPUProgramParameters"
1746    \ , "Graphics.GL.EXT.GPUShader4"
1747    \ , "Graphics.GL.EXT.GeometryShader4"
1748    \ , "Graphics.GL.EXT.Histogram"
1749    \ , "Graphics.GL.EXT.IndexArrayFormats"
1750    \ , "Graphics.GL.EXT.IndexFunc"
1751    \ , "Graphics.GL.EXT.IndexMaterial"
1752    \ , "Graphics.GL.EXT.LightTexture"
1753    \ , "Graphics.GL.EXT.MemoryObject"
1754    \ , "Graphics.GL.EXT.MemoryObjectFd"
1755    \ , "Graphics.GL.EXT.MemoryObjectWin32"
1756    \ , "Graphics.GL.EXT.MultiDrawArrays"
1757    \ , "Graphics.GL.EXT.Multisample"
1758    \ , "Graphics.GL.EXT.PackedDepthStencil"
1759    \ , "Graphics.GL.EXT.PackedFloat"
1760    \ , "Graphics.GL.EXT.PackedPixels"
1761    \ , "Graphics.GL.EXT.PalettedTexture"
1762    \ , "Graphics.GL.EXT.PixelBufferObject"
1763    \ , "Graphics.GL.EXT.PixelTransform"
1764    \ , "Graphics.GL.EXT.PointParameters"
1765    \ , "Graphics.GL.EXT.PolygonOffset"
1766    \ , "Graphics.GL.EXT.PolygonOffsetClamp"
1767    \ , "Graphics.GL.EXT.ProvokingVertex"
1768    \ , "Graphics.GL.EXT.RasterMultisample"
1769    \ , "Graphics.GL.EXT.RescaleNormal"
1770    \ , "Graphics.GL.EXT.SecondaryColor"
1771    \ , "Graphics.GL.EXT.Semaphore"
1772    \ , "Graphics.GL.EXT.SemaphoreFd"
1773    \ , "Graphics.GL.EXT.SemaphoreWin32"
1774    \ , "Graphics.GL.EXT.SeparateShaderObjects"
1775    \ , "Graphics.GL.EXT.SeparateSpecularColor"
1776    \ , "Graphics.GL.EXT.ShaderFramebufferFetch"
1777    \ , "Graphics.GL.EXT.ShaderFramebufferFetchNonCoherent"
1778    \ , "Graphics.GL.EXT.ShaderImageLoadStore"
1779    \ , "Graphics.GL.EXT.SharedTexturePalette"
1780    \ , "Graphics.GL.EXT.StencilClearTag"
1781    \ , "Graphics.GL.EXT.StencilTwoSide"
1782    \ , "Graphics.GL.EXT.StencilWrap"
1783    \ , "Graphics.GL.EXT.Subtexture"
1784    \ , "Graphics.GL.EXT.Texture"
1785    \ , "Graphics.GL.EXT.Texture3D"
1786    \ , "Graphics.GL.EXT.TextureArray"
1787    \ , "Graphics.GL.EXT.TextureBufferObject"
1788    \ , "Graphics.GL.EXT.TextureCompressionLATC"
1789    \ , "Graphics.GL.EXT.TextureCompressionRGTC"
1790    \ , "Graphics.GL.EXT.TextureCompressionS3TC"
1791    \ , "Graphics.GL.EXT.TextureCubeMap"
1792    \ , "Graphics.GL.EXT.TextureEnvCombine"
1793    \ , "Graphics.GL.EXT.TextureEnvDot3"
1794    \ , "Graphics.GL.EXT.TextureFilterAnisotropic"
1795    \ , "Graphics.GL.EXT.TextureFilterMinmax"
1796    \ , "Graphics.GL.EXT.TextureInteger"
1797    \ , "Graphics.GL.EXT.TextureLODBias"
1798    \ , "Graphics.GL.EXT.TextureMirrorClamp"
1799    \ , "Graphics.GL.EXT.TextureObject"
1800    \ , "Graphics.GL.EXT.TexturePerturbNormal"
1801    \ , "Graphics.GL.EXT.TextureSNorm"
1802    \ , "Graphics.GL.EXT.TextureSRGB"
1803    \ , "Graphics.GL.EXT.TextureSRGBDecode"
1804    \ , "Graphics.GL.EXT.TextureSharedExponent"
1805    \ , "Graphics.GL.EXT.TextureSwizzle"
1806    \ , "Graphics.GL.EXT.TimerQuery"
1807    \ , "Graphics.GL.EXT.TransformFeedback"
1808    \ , "Graphics.GL.EXT.VertexArray"
1809    \ , "Graphics.GL.EXT.VertexArrayBGRA"
1810    \ , "Graphics.GL.EXT.VertexAttrib64Bit"
1811    \ , "Graphics.GL.EXT.VertexShader"
1812    \ , "Graphics.GL.EXT.VertexWeighting"
1813    \ , "Graphics.GL.EXT.Win32KeyedMutex"
1814    \ , "Graphics.GL.EXT.WindowRectangles"
1815    \ , "Graphics.GL.EXT.X11SyncObject"
1816    \ , "Graphics.GL.Functions"
1817    \ , "Graphics.GL.GREMEDY"
1818    \ , "Graphics.GL.GREMEDY.FrameTerminator"
1819    \ , "Graphics.GL.GREMEDY.StringMarker"
1820    \ , "Graphics.GL.GetProcAddress"
1821    \ , "Graphics.GL.Groups"
1822    \ , "Graphics.GL.HP"
1823    \ , "Graphics.GL.HP.ConvolutionBorderModes"
1824    \ , "Graphics.GL.HP.ImageTransform"
1825    \ , "Graphics.GL.HP.OcclusionTest"
1826    \ , "Graphics.GL.HP.TextureLighting"
1827    \ , "Graphics.GL.IBM"
1828    \ , "Graphics.GL.IBM.CullVertex"
1829    \ , "Graphics.GL.IBM.MultimodeDrawArrays"
1830    \ , "Graphics.GL.IBM.RasterposClip"
1831    \ , "Graphics.GL.IBM.StaticData"
1832    \ , "Graphics.GL.IBM.TextureMirroredRepeat"
1833    \ , "Graphics.GL.IBM.VertexArrayLists"
1834    \ , "Graphics.GL.INGR"
1835    \ , "Graphics.GL.INGR.BlendFuncSeparate"
1836    \ , "Graphics.GL.INGR.ColorClamp"
1837    \ , "Graphics.GL.INGR.InterlaceRead"
1838    \ , "Graphics.GL.INTEL"
1839    \ , "Graphics.GL.INTEL.BlackholeRender"
1840    \ , "Graphics.GL.INTEL.ConservativeRasterization"
1841    \ , "Graphics.GL.INTEL.FramebufferCmaa"
1842    \ , "Graphics.GL.INTEL.MapTexture"
1843    \ , "Graphics.GL.INTEL.ParallelArrays"
1844    \ , "Graphics.GL.INTEL.PerformanceQuery"
1845    \ , "Graphics.GL.KHR"
1846    \ , "Graphics.GL.KHR.BlendEquationAdvanced"
1847    \ , "Graphics.GL.KHR.BlendEquationAdvancedCoherent"
1848    \ , "Graphics.GL.KHR.ContextFlushControl"
1849    \ , "Graphics.GL.KHR.DebugCompatibility"
1850    \ , "Graphics.GL.KHR.DebugCore"
1851    \ , "Graphics.GL.KHR.NoError"
1852    \ , "Graphics.GL.KHR.ParallelShaderCompile"
1853    \ , "Graphics.GL.KHR.Robustness"
1854    \ , "Graphics.GL.KHR.TextureCompressionASTCHDR"
1855    \ , "Graphics.GL.KHR.TextureCompressionASTCLDR"
1856    \ , "Graphics.GL.MESA"
1857    \ , "Graphics.GL.MESA.PackInvert"
1858    \ , "Graphics.GL.MESA.ProgramBinaryFormats"
1859    \ , "Graphics.GL.MESA.ResizeBuffers"
1860    \ , "Graphics.GL.MESA.TileRasterOrder"
1861    \ , "Graphics.GL.MESA.WindowPos"
1862    \ , "Graphics.GL.MESA.YCbCrTexture"
1863    \ , "Graphics.GL.MESAX"
1864    \ , "Graphics.GL.MESAX.TextureStack"
1865    \ , "Graphics.GL.NV"
1866    \ , "Graphics.GL.NV.AlphaToCoverageDitherControl"
1867    \ , "Graphics.GL.NV.BindlessMultiDrawIndirect"
1868    \ , "Graphics.GL.NV.BindlessMultiDrawIndirectCount"
1869    \ , "Graphics.GL.NV.BindlessTexture"
1870    \ , "Graphics.GL.NV.BlendEquationAdvanced"
1871    \ , "Graphics.GL.NV.BlendEquationAdvancedCoherent"
1872    \ , "Graphics.GL.NV.BlendMinmaxFactor"
1873    \ , "Graphics.GL.NV.ClipSpaceWScaling"
1874    \ , "Graphics.GL.NV.CommandList"
1875    \ , "Graphics.GL.NV.ComputeProgram5"
1876    \ , "Graphics.GL.NV.ConditionalRender"
1877    \ , "Graphics.GL.NV.ConservativeRaster"
1878    \ , "Graphics.GL.NV.ConservativeRasterDilate"
1879    \ , "Graphics.GL.NV.ConservativeRasterPreSnap"
1880    \ , "Graphics.GL.NV.ConservativeRasterPreSnapTriangles"
1881    \ , "Graphics.GL.NV.CopyDepthToColor"
1882    \ , "Graphics.GL.NV.CopyImage"
1883    \ , "Graphics.GL.NV.DeepTexture3D"
1884    \ , "Graphics.GL.NV.DepthBufferFloat"
1885    \ , "Graphics.GL.NV.DepthClamp"
1886    \ , "Graphics.GL.NV.DrawTexture"
1887    \ , "Graphics.GL.NV.DrawVulkanImage"
1888    \ , "Graphics.GL.NV.Evaluators"
1889    \ , "Graphics.GL.NV.ExplicitMultisample"
1890    \ , "Graphics.GL.NV.Fence"
1891    \ , "Graphics.GL.NV.FillRectangle"
1892    \ , "Graphics.GL.NV.FloatBuffer"
1893    \ , "Graphics.GL.NV.FogDistance"
1894    \ , "Graphics.GL.NV.FragmentCoverageToColor"
1895    \ , "Graphics.GL.NV.FragmentProgram"
1896    \ , "Graphics.GL.NV.FragmentProgram2"
1897    \ , "Graphics.GL.NV.FramebufferMixedSamples"
1898    \ , "Graphics.GL.NV.FramebufferMultisampleCoverage"
1899    \ , "Graphics.GL.NV.GPUMulticast"
1900    \ , "Graphics.GL.NV.GPUProgram4"
1901    \ , "Graphics.GL.NV.GPUProgram5"
1902    \ , "Graphics.GL.NV.GPUShader5"
1903    \ , "Graphics.GL.NV.GeometryProgram4"
1904    \ , "Graphics.GL.NV.HalfFloat"
1905    \ , "Graphics.GL.NV.InternalformatSampleQuery"
1906    \ , "Graphics.GL.NV.LightMaxExponent"
1907    \ , "Graphics.GL.NV.MultisampleCoverage"
1908    \ , "Graphics.GL.NV.MultisampleFilterHint"
1909    \ , "Graphics.GL.NV.OcclusionQuery"
1910    \ , "Graphics.GL.NV.PackedDepthStencil"
1911    \ , "Graphics.GL.NV.ParameterBufferObject"
1912    \ , "Graphics.GL.NV.PathRenderingCompatibility"
1913    \ , "Graphics.GL.NV.PathRenderingCore"
1914    \ , "Graphics.GL.NV.PathRenderingSharedEdge"
1915    \ , "Graphics.GL.NV.PixelDataRange"
1916    \ , "Graphics.GL.NV.PointSprite"
1917    \ , "Graphics.GL.NV.PresentVideo"
1918    \ , "Graphics.GL.NV.PrimitiveRestart"
1919    \ , "Graphics.GL.NV.QueryResource"
1920    \ , "Graphics.GL.NV.QueryResourceTag"
1921    \ , "Graphics.GL.NV.RegisterCombiners"
1922    \ , "Graphics.GL.NV.RegisterCombiners2"
1923    \ , "Graphics.GL.NV.RobustnessVideoMemoryPurge"
1924    \ , "Graphics.GL.NV.SampleLocations"
1925    \ , "Graphics.GL.NV.ShaderBufferLoad"
1926    \ , "Graphics.GL.NV.ShaderBufferStore"
1927    \ , "Graphics.GL.NV.ShaderThreadGroup"
1928    \ , "Graphics.GL.NV.TessellationProgram5"
1929    \ , "Graphics.GL.NV.TexgenEmboss"
1930    \ , "Graphics.GL.NV.TexgenReflection"
1931    \ , "Graphics.GL.NV.TextureBarrier"
1932    \ , "Graphics.GL.NV.TextureEnvCombine4"
1933    \ , "Graphics.GL.NV.TextureExpandNormal"
1934    \ , "Graphics.GL.NV.TextureMultisample"
1935    \ , "Graphics.GL.NV.TextureRectangle"
1936    \ , "Graphics.GL.NV.TextureShader"
1937    \ , "Graphics.GL.NV.TextureShader2"
1938    \ , "Graphics.GL.NV.TextureShader3"
1939    \ , "Graphics.GL.NV.TransformFeedback"
1940    \ , "Graphics.GL.NV.TransformFeedback2"
1941    \ , "Graphics.GL.NV.UniformBufferUnifiedMemory"
1942    \ , "Graphics.GL.NV.VDPAUInterop"
1943    \ , "Graphics.GL.NV.VertexArrayRange"
1944    \ , "Graphics.GL.NV.VertexArrayRange2"
1945    \ , "Graphics.GL.NV.VertexAttribInteger64Bit"
1946    \ , "Graphics.GL.NV.VertexBufferUnifiedMemory"
1947    \ , "Graphics.GL.NV.VertexProgram"
1948    \ , "Graphics.GL.NV.VertexProgram2Option"
1949    \ , "Graphics.GL.NV.VertexProgram3"
1950    \ , "Graphics.GL.NV.VertexProgram4"
1951    \ , "Graphics.GL.NV.VideoCapture"
1952    \ , "Graphics.GL.NV.ViewportSwizzle"
1953    \ , "Graphics.GL.NVX"
1954    \ , "Graphics.GL.NVX.ConditionalRender"
1955    \ , "Graphics.GL.NVX.GPUMemoryInfo"
1956    \ , "Graphics.GL.NVX.LinkedGPUMulticast"
1957    \ , "Graphics.GL.OES"
1958    \ , "Graphics.GL.OES.ByteCoordinates"
1959    \ , "Graphics.GL.OES.CompressedPalettedTexture"
1960    \ , "Graphics.GL.OES.FixedPoint"
1961    \ , "Graphics.GL.OES.QueryMatrix"
1962    \ , "Graphics.GL.OES.ReadFormat"
1963    \ , "Graphics.GL.OES.SinglePrecision"
1964    \ , "Graphics.GL.OML"
1965    \ , "Graphics.GL.OML.Interlace"
1966    \ , "Graphics.GL.OML.Resample"
1967    \ , "Graphics.GL.OML.Subsample"
1968    \ , "Graphics.GL.OVR"
1969    \ , "Graphics.GL.OVR.Multiview"
1970    \ , "Graphics.GL.PGI"
1971    \ , "Graphics.GL.PGI.MiscHints"
1972    \ , "Graphics.GL.PGI.VertexHints"
1973    \ , "Graphics.GL.REND"
1974    \ , "Graphics.GL.REND.ScreenCoordinates"
1975    \ , "Graphics.GL.S3"
1976    \ , "Graphics.GL.S3.S3TC"
1977    \ , "Graphics.GL.SGI"
1978    \ , "Graphics.GL.SGI.ColorMatrix"
1979    \ , "Graphics.GL.SGI.ColorTable"
1980    \ , "Graphics.GL.SGI.TextureColorTable"
1981    \ , "Graphics.GL.SGIS"
1982    \ , "Graphics.GL.SGIS.DetailTexture"
1983    \ , "Graphics.GL.SGIS.FogFunction"
1984    \ , "Graphics.GL.SGIS.GenerateMipmap"
1985    \ , "Graphics.GL.SGIS.Multisample"
1986    \ , "Graphics.GL.SGIS.PixelTexture"
1987    \ , "Graphics.GL.SGIS.PointLineTexgen"
1988    \ , "Graphics.GL.SGIS.PointParameters"
1989    \ , "Graphics.GL.SGIS.SharpenTexture"
1990    \ , "Graphics.GL.SGIS.Texture4D"
1991    \ , "Graphics.GL.SGIS.TextureBorderClamp"
1992    \ , "Graphics.GL.SGIS.TextureColorMask"
1993    \ , "Graphics.GL.SGIS.TextureEdgeClamp"
1994    \ , "Graphics.GL.SGIS.TextureFilter4"
1995    \ , "Graphics.GL.SGIS.TextureLOD"
1996    \ , "Graphics.GL.SGIS.TextureSelect"
1997    \ , "Graphics.GL.SGIX"
1998    \ , "Graphics.GL.SGIX.Async"
1999    \ , "Graphics.GL.SGIX.AsyncHistogram"
2000    \ , "Graphics.GL.SGIX.AsyncPixel"
2001    \ , "Graphics.GL.SGIX.BlendAlphaMinmax"
2002    \ , "Graphics.GL.SGIX.CalligraphicFragment"
2003    \ , "Graphics.GL.SGIX.Clipmap"
2004    \ , "Graphics.GL.SGIX.ConvolutionAccuracy"
2005    \ , "Graphics.GL.SGIX.DepthTexture"
2006    \ , "Graphics.GL.SGIX.FlushRaster"
2007    \ , "Graphics.GL.SGIX.FogOffset"
2008    \ , "Graphics.GL.SGIX.FragmentLighting"
2009    \ , "Graphics.GL.SGIX.Framezoom"
2010    \ , "Graphics.GL.SGIX.IglooInterface"
2011    \ , "Graphics.GL.SGIX.Instruments"
2012    \ , "Graphics.GL.SGIX.Interlace"
2013    \ , "Graphics.GL.SGIX.IrInstrument1"
2014    \ , "Graphics.GL.SGIX.ListPriority"
2015    \ , "Graphics.GL.SGIX.PixelTexture"
2016    \ , "Graphics.GL.SGIX.PixelTiles"
2017    \ , "Graphics.GL.SGIX.PolynomialFFD"
2018    \ , "Graphics.GL.SGIX.ReferencePlane"
2019    \ , "Graphics.GL.SGIX.Resample"
2020    \ , "Graphics.GL.SGIX.ScalebiasHint"
2021    \ , "Graphics.GL.SGIX.Shadow"
2022    \ , "Graphics.GL.SGIX.ShadowAmbient"
2023    \ , "Graphics.GL.SGIX.Sprite"
2024    \ , "Graphics.GL.SGIX.Subsample"
2025    \ , "Graphics.GL.SGIX.TagSampleBuffer"
2026    \ , "Graphics.GL.SGIX.TextureAddEnv"
2027    \ , "Graphics.GL.SGIX.TextureCoordinateClamp"
2028    \ , "Graphics.GL.SGIX.TextureLODBias"
2029    \ , "Graphics.GL.SGIX.TextureMultiBuffer"
2030    \ , "Graphics.GL.SGIX.TextureScaleBias"
2031    \ , "Graphics.GL.SGIX.VertexPreclip"
2032    \ , "Graphics.GL.SGIX.YCrCb"
2033    \ , "Graphics.GL.SGIX.YCrCbA"
2034    \ , "Graphics.GL.SUN"
2035    \ , "Graphics.GL.SUN.ConvolutionBorderModes"
2036    \ , "Graphics.GL.SUN.GlobalAlpha"
2037    \ , "Graphics.GL.SUN.MeshArray"
2038    \ , "Graphics.GL.SUN.SliceAccum"
2039    \ , "Graphics.GL.SUN.TriangleList"
2040    \ , "Graphics.GL.SUN.Vertex"
2041    \ , "Graphics.GL.SUNX"
2042    \ , "Graphics.GL.SUNX.ConstantData"
2043    \ , "Graphics.GL.ThreeDFX"
2044    \ , "Graphics.GL.ThreeDFX.Multisample"
2045    \ , "Graphics.GL.ThreeDFX.Tbuffer"
2046    \ , "Graphics.GL.ThreeDFX.TextureCompressionFXT1"
2047    \ , "Graphics.GL.Tokens"
2048    \ , "Graphics.GL.Types"
2049    \ , "Graphics.GL.Version10"
2050    \ , "Graphics.GL.Version11"
2051    \ , "Graphics.GL.Version12"
2052    \ , "Graphics.GL.Version13"
2053    \ , "Graphics.GL.Version14"
2054    \ , "Graphics.GL.Version15"
2055    \ , "Graphics.GL.Version20"
2056    \ , "Graphics.GL.Version21"
2057    \ , "Graphics.GL.WIN"
2058    \ , "Graphics.GL.WIN.PhongShading"
2059    \ , "Graphics.GL.WIN.SpecularFog"
2060    \ , "Test.QuickCheck"
2061    \ , "Test.QuickCheck.All"
2062    \ , "Test.QuickCheck.Arbitrary"
2063    \ , "Test.QuickCheck.Exception"
2064    \ , "Test.QuickCheck.Function"
2065    \ , "Test.QuickCheck.Gen"
2066    \ , "Test.QuickCheck.Gen.Unsafe"
2067    \ , "Test.QuickCheck.Modifiers"
2068    \ , "Test.QuickCheck.Monadic"
2069    \ , "Test.QuickCheck.Poly"
2070    \ , "Test.QuickCheck.Property"
2071    \ , "Test.QuickCheck.Random"
2072    \ , "Test.QuickCheck.State"
2073    \ , "Test.QuickCheck.Test"
2074    \ , "Test.QuickCheck.Text"
2075    \ , "Data.StateVar"
2076    \ , "Graphics.Win32"
2077    \ , "Graphics.Win32.Control"
2078    \ , "Graphics.Win32.Dialogue"
2079    \ , "Graphics.Win32.GDI"
2080    \ , "Graphics.Win32.GDI.AlphaBlend"
2081    \ , "Graphics.Win32.GDI.Bitmap"
2082    \ , "Graphics.Win32.GDI.Brush"
2083    \ , "Graphics.Win32.GDI.Clip"
2084    \ , "Graphics.Win32.GDI.Font"
2085    \ , "Graphics.Win32.GDI.Graphics2D"
2086    \ , "Graphics.Win32.GDI.HDC"
2087    \ , "Graphics.Win32.GDI.Palette"
2088    \ , "Graphics.Win32.GDI.Path"
2089    \ , "Graphics.Win32.GDI.Pen"
2090    \ , "Graphics.Win32.GDI.Region"
2091    \ , "Graphics.Win32.GDI.Types"
2092    \ , "Graphics.Win32.Icon"
2093    \ , "Graphics.Win32.Key"
2094    \ , "Graphics.Win32.LayeredWindow"
2095    \ , "Graphics.Win32.Menu"
2096    \ , "Graphics.Win32.Message"
2097    \ , "Graphics.Win32.Misc"
2098    \ , "Graphics.Win32.Resource"
2099    \ , "Graphics.Win32.Window"
2100    \ , "Graphics.Win32.Window.AnimateWindow"
2101    \ , "Graphics.Win32.Window.ForegroundWindow"
2102    \ , "Graphics.Win32.Window.HotKey"
2103    \ , "Graphics.Win32.Window.IMM"
2104    \ , "Graphics.Win32.Window.PostMessage"
2105    \ , "Media.Win32"
2106    \ , "System.Win32"
2107    \ , "System.Win32.Automation"
2108    \ , "System.Win32.Automation.Input"
2109    \ , "System.Win32.Automation.Input.Key"
2110    \ , "System.Win32.Automation.Input.Mouse"
2111    \ , "System.Win32.Console"
2112    \ , "System.Win32.Console.CtrlHandler"
2113    \ , "System.Win32.Console.HWND"
2114    \ , "System.Win32.Console.Title"
2115    \ , "System.Win32.DLL"
2116    \ , "System.Win32.DebugApi"
2117    \ , "System.Win32.Encoding"
2118    \ , "System.Win32.Exception.Unsupported"
2119    \ , "System.Win32.File"
2120    \ , "System.Win32.FileMapping"
2121    \ , "System.Win32.HardLink"
2122    \ , "System.Win32.Info"
2123    \ , "System.Win32.Info.Computer"
2124    \ , "System.Win32.Info.Version"
2125    \ , "System.Win32.Mem"
2126    \ , "System.Win32.MinTTY"
2127    \ , "System.Win32.NLS"
2128    \ , "System.Win32.Path"
2129    \ , "System.Win32.Process"
2130    \ , "System.Win32.Registry"
2131    \ , "System.Win32.Security"
2132    \ , "System.Win32.Shell"
2133    \ , "System.Win32.SimpleMAPI"
2134    \ , "System.Win32.String"
2135    \ , "System.Win32.SymbolicLink"
2136    \ , "System.Win32.Thread"
2137    \ , "System.Win32.Time"
2138    \ , "System.Win32.Types"
2139    \ , "System.Win32.Utils"
2140    \ , "System.Win32.Word"
2141    \ , "Data.Array"
2142    \ , "Data.Array.Base"
2143    \ , "Data.Array.IArray"
2144    \ , "Data.Array.IO"
2145    \ , "Data.Array.IO.Internals"
2146    \ , "Data.Array.IO.Safe"
2147    \ , "Data.Array.MArray"
2148    \ , "Data.Array.MArray.Safe"
2149    \ , "Data.Array.ST"
2150    \ , "Data.Array.ST.Safe"
2151    \ , "Data.Array.Storable"
2152    \ , "Data.Array.Storable.Internals"
2153    \ , "Data.Array.Storable.Safe"
2154    \ , "Data.Array.Unboxed"
2155    \ , "Data.Array.Unsafe"
2156    \ , "Control.Concurrent.Async"
2157    \ , "Data.Attoparsec"
2158    \ , "Data.Attoparsec.ByteString"
2159    \ , "Data.Attoparsec.ByteString.Char8"
2160    \ , "Data.Attoparsec.ByteString.Lazy"
2161    \ , "Data.Attoparsec.Char8"
2162    \ , "Data.Attoparsec.Combinator"
2163    \ , "Data.Attoparsec.Internal"
2164    \ , "Data.Attoparsec.Internal.Types"
2165    \ , "Data.Attoparsec.Lazy"
2166    \ , "Data.Attoparsec.Number"
2167    \ , "Data.Attoparsec.Text"
2168    \ , "Data.Attoparsec.Text.Lazy"
2169    \ , "Data.Attoparsec.Types"
2170    \ , "Data.Attoparsec.Zepto"
2171    \ , "Control.Applicative"
2172    \ , "Control.Arrow"
2173    \ , "Control.Category"
2174    \ , "Control.Concurrent"
2175    \ , "Control.Concurrent.Chan"
2176    \ , "Control.Concurrent.MVar"
2177    \ , "Control.Concurrent.QSem"
2178    \ , "Control.Concurrent.QSemN"
2179    \ , "Control.Exception"
2180    \ , "Control.Exception.Base"
2181    \ , "Control.Monad"
2182    \ , "Control.Monad.Fail"
2183    \ , "Control.Monad.Fix"
2184    \ , "Control.Monad.IO.Class"
2185    \ , "Control.Monad.Instances"
2186    \ , "Control.Monad.ST"
2187    \ , "Control.Monad.ST.Lazy"
2188    \ , "Control.Monad.ST.Lazy.Safe"
2189    \ , "Control.Monad.ST.Lazy.Unsafe"
2190    \ , "Control.Monad.ST.Safe"
2191    \ , "Control.Monad.ST.Strict"
2192    \ , "Control.Monad.ST.Unsafe"
2193    \ , "Control.Monad.Zip"
2194    \ , "Data.Bifoldable"
2195    \ , "Data.Bifunctor"
2196    \ , "Data.Bitraversable"
2197    \ , "Data.Bits"
2198    \ , "Data.Bool"
2199    \ , "Data.Char"
2200    \ , "Data.Coerce"
2201    \ , "Data.Complex"
2202    \ , "Data.Data"
2203    \ , "Data.Dynamic"
2204    \ , "Data.Either"
2205    \ , "Data.Eq"
2206    \ , "Data.Fixed"
2207    \ , "Data.Foldable"
2208    \ , "Data.Function"
2209    \ , "Data.Functor"
2210    \ , "Data.Functor.Classes"
2211    \ , "Data.Functor.Compose"
2212    \ , "Data.Functor.Const"
2213    \ , "Data.Functor.Identity"
2214    \ , "Data.Functor.Product"
2215    \ , "Data.Functor.Sum"
2216    \ , "Data.IORef"
2217    \ , "Data.Int"
2218    \ , "Data.Ix"
2219    \ , "Data.Kind"
2220    \ , "Data.List"
2221    \ , "Data.List.NonEmpty"
2222    \ , "Data.Maybe"
2223    \ , "Data.Monoid"
2224    \ , "Data.Ord"
2225    \ , "Data.Proxy"
2226    \ , "Data.Ratio"
2227    \ , "Data.STRef"
2228    \ , "Data.STRef.Lazy"
2229    \ , "Data.STRef.Strict"
2230    \ , "Data.Semigroup"
2231    \ , "Data.String"
2232    \ , "Data.Traversable"
2233    \ , "Data.Tuple"
2234    \ , "Data.Type.Bool"
2235    \ , "Data.Type.Coercion"
2236    \ , "Data.Type.Equality"
2237    \ , "Data.Typeable"
2238    \ , "Data.Unique"
2239    \ , "Data.Version"
2240    \ , "Data.Void"
2241    \ , "Data.Word"
2242    \ , "Debug.Trace"
2243    \ , "Foreign"
2244    \ , "Foreign.C"
2245    \ , "Foreign.C.Error"
2246    \ , "Foreign.C.String"
2247    \ , "Foreign.C.Types"
2248    \ , "Foreign.Concurrent"
2249    \ , "Foreign.ForeignPtr"
2250    \ , "Foreign.ForeignPtr.Safe"
2251    \ , "Foreign.ForeignPtr.Unsafe"
2252    \ , "Foreign.Marshal"
2253    \ , "Foreign.Marshal.Alloc"
2254    \ , "Foreign.Marshal.Array"
2255    \ , "Foreign.Marshal.Error"
2256    \ , "Foreign.Marshal.Pool"
2257    \ , "Foreign.Marshal.Safe"
2258    \ , "Foreign.Marshal.Unsafe"
2259    \ , "Foreign.Marshal.Utils"
2260    \ , "Foreign.Ptr"
2261    \ , "Foreign.Safe"
2262    \ , "Foreign.StablePtr"
2263    \ , "Foreign.Storable"
2264    \ , "GHC.Arr"
2265    \ , "GHC.Base"
2266    \ , "GHC.ByteOrder"
2267    \ , "GHC.Char"
2268    \ , "GHC.Clock"
2269    \ , "GHC.Conc"
2270    \ , "GHC.Conc.IO"
2271    \ , "GHC.Conc.Signal"
2272    \ , "GHC.Conc.Sync"
2273    \ , "GHC.ConsoleHandler"
2274    \ , "GHC.Constants"
2275    \ , "GHC.Desugar"
2276    \ , "GHC.Enum"
2277    \ , "GHC.Environment"
2278    \ , "GHC.Err"
2279    \ , "GHC.Event"
2280    \ , "GHC.Exception"
2281    \ , "GHC.ExecutionStack"
2282    \ , "GHC.ExecutionStack.Internal"
2283    \ , "GHC.Exts"
2284    \ , "GHC.Fingerprint"
2285    \ , "GHC.Fingerprint.Type"
2286    \ , "GHC.Float"
2287    \ , "GHC.Float.ConversionUtils"
2288    \ , "GHC.Float.RealFracMethods"
2289    \ , "GHC.Foreign"
2290    \ , "GHC.ForeignPtr"
2291    \ , "GHC.GHCi"
2292    \ , "GHC.Generics"
2293    \ , "GHC.IO"
2294    \ , "GHC.IO.Buffer"
2295    \ , "GHC.IO.BufferedIO"
2296    \ , "GHC.IO.Device"
2297    \ , "GHC.IO.Encoding"
2298    \ , "GHC.IO.Encoding.CodePage"
2299    \ , "GHC.IO.Encoding.Failure"
2300    \ , "GHC.IO.Encoding.Iconv"
2301    \ , "GHC.IO.Encoding.Latin1"
2302    \ , "GHC.IO.Encoding.Types"
2303    \ , "GHC.IO.Encoding.UTF16"
2304    \ , "GHC.IO.Encoding.UTF32"
2305    \ , "GHC.IO.Encoding.UTF8"
2306    \ , "GHC.IO.Exception"
2307    \ , "GHC.IO.FD"
2308    \ , "GHC.IO.Handle"
2309    \ , "GHC.IO.Handle.FD"
2310    \ , "GHC.IO.Handle.Internals"
2311    \ , "GHC.IO.Handle.Lock"
2312    \ , "GHC.IO.Handle.Text"
2313    \ , "GHC.IO.Handle.Types"
2314    \ , "GHC.IO.IOMode"
2315    \ , "GHC.IO.Unsafe"
2316    \ , "GHC.IOArray"
2317    \ , "GHC.IORef"
2318    \ , "GHC.Int"
2319    \ , "GHC.List"
2320    \ , "GHC.MVar"
2321    \ , "GHC.Natural"
2322    \ , "GHC.Num"
2323    \ , "GHC.OldList"
2324    \ , "GHC.OverloadedLabels"
2325    \ , "GHC.PArr"
2326    \ , "GHC.Pack"
2327    \ , "GHC.Profiling"
2328    \ , "GHC.Ptr"
2329    \ , "GHC.RTS.Flags"
2330    \ , "GHC.Read"
2331    \ , "GHC.Real"
2332    \ , "GHC.Records"
2333    \ , "GHC.ST"
2334    \ , "GHC.STRef"
2335    \ , "GHC.Show"
2336    \ , "GHC.Stable"
2337    \ , "GHC.Stack"
2338    \ , "GHC.Stack.CCS"
2339    \ , "GHC.Stack.Types"
2340    \ , "GHC.StaticPtr"
2341    \ , "GHC.Stats"
2342    \ , "GHC.Storable"
2343    \ , "GHC.TopHandler"
2344    \ , "GHC.TypeLits"
2345    \ , "GHC.TypeNats"
2346    \ , "GHC.Unicode"
2347    \ , "GHC.Weak"
2348    \ , "GHC.Word"
2349    \ , "Numeric"
2350    \ , "Numeric.Natural"
2351    \ , "Prelude"
2352    \ , "System.CPUTime"
2353    \ , "System.Console.GetOpt"
2354    \ , "System.Environment"
2355    \ , "System.Environment.Blank"
2356    \ , "System.Exit"
2357    \ , "System.IO"
2358    \ , "System.IO.Error"
2359    \ , "System.IO.Unsafe"
2360    \ , "System.Info"
2361    \ , "System.Mem"
2362    \ , "System.Mem.StableName"
2363    \ , "System.Mem.Weak"
2364    \ , "System.Posix.Internals"
2365    \ , "System.Posix.Types"
2366    \ , "System.Timeout"
2367    \ , "Text.ParserCombinators.ReadP"
2368    \ , "Text.ParserCombinators.ReadPrec"
2369    \ , "Text.Printf"
2370    \ , "Text.Read"
2371    \ , "Text.Read.Lex"
2372    \ , "Text.Show"
2373    \ , "Text.Show.Functions"
2374    \ , "Type.Reflection"
2375    \ , "Type.Reflection.Unsafe"
2376    \ , "Unsafe.Coerce"
2377    \ , "Data.ByteString"
2378    \ , "Data.ByteString.Builder"
2379    \ , "Data.ByteString.Builder.Extra"
2380    \ , "Data.ByteString.Builder.Internal"
2381    \ , "Data.ByteString.Builder.Prim"
2382    \ , "Data.ByteString.Builder.Prim.Internal"
2383    \ , "Data.ByteString.Char8"
2384    \ , "Data.ByteString.Internal"
2385    \ , "Data.ByteString.Lazy"
2386    \ , "Data.ByteString.Lazy.Builder"
2387    \ , "Data.ByteString.Lazy.Builder.ASCII"
2388    \ , "Data.ByteString.Lazy.Builder.Extras"
2389    \ , "Data.ByteString.Lazy.Char8"
2390    \ , "Data.ByteString.Lazy.Internal"
2391    \ , "Data.ByteString.Short"
2392    \ , "Data.ByteString.Short.Internal"
2393    \ , "Data.ByteString.Unsafe"
2394    \ , "Data.CallStack"
2395    \ , "Data.CaseInsensitive"
2396    \ , "Data.CaseInsensitive.Unsafe"
2397    \ , "Network.CGI"
2398    \ , "Network.CGI.Compat"
2399    \ , "Network.CGI.Cookie"
2400    \ , "Network.CGI.Monad"
2401    \ , "Network.CGI.Protocol"
2402    \ , "Data.Graph"
2403    \ , "Data.IntMap"
2404    \ , "Data.IntMap.Internal"
2405    \ , "Data.IntMap.Internal.Debug"
2406    \ , "Data.IntMap.Lazy"
2407    \ , "Data.IntMap.Merge.Lazy"
2408    \ , "Data.IntMap.Merge.Strict"
2409    \ , "Data.IntMap.Strict"
2410    \ , "Data.IntSet"
2411    \ , "Data.IntSet.Internal"
2412    \ , "Data.Map"
2413    \ , "Data.Map.Internal"
2414    \ , "Data.Map.Internal.Debug"
2415    \ , "Data.Map.Lazy"
2416    \ , "Data.Map.Lazy.Merge"
2417    \ , "Data.Map.Merge.Lazy"
2418    \ , "Data.Map.Merge.Strict"
2419    \ , "Data.Map.Strict"
2420    \ , "Data.Map.Strict.Internal"
2421    \ , "Data.Map.Strict.Merge"
2422    \ , "Data.Sequence"
2423    \ , "Data.Sequence.Internal"
2424    \ , "Data.Sequence.Internal.Sorting"
2425    \ , "Data.Set"
2426    \ , "Data.Set.Internal"
2427    \ , "Data.Tree"
2428    \ , "Utils.Containers.Internal.BitQueue"
2429    \ , "Utils.Containers.Internal.BitUtil"
2430    \ , "Utils.Containers.Internal.StrictPair"
2431    \ , "Control.DeepSeq"
2432    \ , "System.Directory"
2433    \ , "System.Directory.Internal"
2434    \ , "System.Directory.Internal.Prelude"
2435    \ , "Control.Monad.Catch"
2436    \ , "Control.Monad.Catch.Pure"
2437    \ , "Control.Exception.Extensible"
2438    \ , "Data.Graph.Inductive"
2439    \ , "Data.Graph.Inductive.Basic"
2440    \ , "Data.Graph.Inductive.Example"
2441    \ , "Data.Graph.Inductive.Graph"
2442    \ , "Data.Graph.Inductive.Internal.Heap"
2443    \ , "Data.Graph.Inductive.Internal.Queue"
2444    \ , "Data.Graph.Inductive.Internal.RootPath"
2445    \ , "Data.Graph.Inductive.Internal.Thread"
2446    \ , "Data.Graph.Inductive.Monad"
2447    \ , "Data.Graph.Inductive.Monad.IOArray"
2448    \ , "Data.Graph.Inductive.Monad.STArray"
2449    \ , "Data.Graph.Inductive.NodeMap"
2450    \ , "Data.Graph.Inductive.PatriciaTree"
2451    \ , "Data.Graph.Inductive.Query"
2452    \ , "Data.Graph.Inductive.Query.ArtPoint"
2453    \ , "Data.Graph.Inductive.Query.BCC"
2454    \ , "Data.Graph.Inductive.Query.BFS"
2455    \ , "Data.Graph.Inductive.Query.DFS"
2456    \ , "Data.Graph.Inductive.Query.Dominators"
2457    \ , "Data.Graph.Inductive.Query.GVD"
2458    \ , "Data.Graph.Inductive.Query.Indep"
2459    \ , "Data.Graph.Inductive.Query.MST"
2460    \ , "Data.Graph.Inductive.Query.MaxFlow"
2461    \ , "Data.Graph.Inductive.Query.MaxFlow2"
2462    \ , "Data.Graph.Inductive.Query.Monad"
2463    \ , "Data.Graph.Inductive.Query.SP"
2464    \ , "Data.Graph.Inductive.Query.TransClos"
2465    \ , "Data.Graph.Inductive.Tree"
2466    \ , "System.FilePath"
2467    \ , "System.FilePath.Posix"
2468    \ , "System.FilePath.Windows"
2469    \ , "Numeric.Fixed"
2470    \ , "Annotations"
2471    \ , "ApiAnnotation"
2472    \ , "Ar"
2473    \ , "AsmCodeGen"
2474    \ , "AsmUtils"
2475    \ , "Avail"
2476    \ , "Bag"
2477    \ , "BasicTypes"
2478    \ , "BinFingerprint"
2479    \ , "BinIface"
2480    \ , "Binary"
2481    \ , "Bitmap"
2482    \ , "BkpSyn"
2483    \ , "BlockId"
2484    \ , "BooleanFormula"
2485    \ , "BufWrite"
2486    \ , "BuildTyCl"
2487    \ , "ByteCodeAsm"
2488    \ , "ByteCodeGen"
2489    \ , "ByteCodeInstr"
2490    \ , "ByteCodeItbls"
2491    \ , "ByteCodeLink"
2492    \ , "ByteCodeTypes"
2493    \ , "CLabel"
2494    \ , "CPrim"
2495    \ , "CSE"
2496    \ , "CallArity"
2497    \ , "CgUtils"
2498    \ , "Check"
2499    \ , "Class"
2500    \ , "CmdLineParser"
2501    \ , "Cmm"
2502    \ , "CmmBuildInfoTables"
2503    \ , "CmmCallConv"
2504    \ , "CmmCommonBlockElim"
2505    \ , "CmmContFlowOpt"
2506    \ , "CmmExpr"
2507    \ , "CmmImplementSwitchPlans"
2508    \ , "CmmInfo"
2509    \ , "CmmLayoutStack"
2510    \ , "CmmLex"
2511    \ , "CmmLint"
2512    \ , "CmmLive"
2513    \ , "CmmMachOp"
2514    \ , "CmmMonad"
2515    \ , "CmmNode"
2516    \ , "CmmOpt"
2517    \ , "CmmParse"
2518    \ , "CmmPipeline"
2519    \ , "CmmProcPoint"
2520    \ , "CmmSink"
2521    \ , "CmmSwitch"
2522    \ , "CmmType"
2523    \ , "CmmUtils"
2524    \ , "CoAxiom"
2525    \ , "CodeGen.Platform"
2526    \ , "CodeGen.Platform.ARM"
2527    \ , "CodeGen.Platform.ARM64"
2528    \ , "CodeGen.Platform.NoRegs"
2529    \ , "CodeGen.Platform.PPC"
2530    \ , "CodeGen.Platform.PPC_Darwin"
2531    \ , "CodeGen.Platform.SPARC"
2532    \ , "CodeGen.Platform.X86"
2533    \ , "CodeGen.Platform.X86_64"
2534    \ , "CodeOutput"
2535    \ , "Coercion"
2536    \ , "ConLike"
2537    \ , "Config"
2538    \ , "Constants"
2539    \ , "Convert"
2540    \ , "CoreArity"
2541    \ , "CoreFVs"
2542    \ , "CoreLint"
2543    \ , "CoreMonad"
2544    \ , "CoreOpt"
2545    \ , "CorePrep"
2546    \ , "CoreSeq"
2547    \ , "CoreStats"
2548    \ , "CoreSubst"
2549    \ , "CoreSyn"
2550    \ , "CoreTidy"
2551    \ , "CoreToStg"
2552    \ , "CoreUnfold"
2553    \ , "CoreUtils"
2554    \ , "CostCentre"
2555    \ , "Coverage"
2556    \ , "Ctype"
2557    \ , "DataCon"
2558    \ , "Debug"
2559    \ , "Debugger"
2560    \ , "DebuggerUtils"
2561    \ , "Demand"
2562    \ , "Desugar"
2563    \ , "Digraph"
2564    \ , "DmdAnal"
2565    \ , "DriverBkp"
2566    \ , "DriverMkDepend"
2567    \ , "DriverPhases"
2568    \ , "DriverPipeline"
2569    \ , "DsArrows"
2570    \ , "DsBinds"
2571    \ , "DsCCall"
2572    \ , "DsExpr"
2573    \ , "DsForeign"
2574    \ , "DsGRHSs"
2575    \ , "DsListComp"
2576    \ , "DsMeta"
2577    \ , "DsMonad"
2578    \ , "DsUsage"
2579    \ , "DsUtils"
2580    \ , "Dwarf"
2581    \ , "Dwarf.Constants"
2582    \ , "Dwarf.Types"
2583    \ , "DynFlags"
2584    \ , "DynamicLoading"
2585    \ , "Elf"
2586    \ , "Encoding"
2587    \ , "EnumSet"
2588    \ , "ErrUtils"
2589    \ , "Exception"
2590    \ , "Exitify"
2591    \ , "FV"
2592    \ , "FamInst"
2593    \ , "FamInstEnv"
2594    \ , "FastFunctions"
2595    \ , "FastMutInt"
2596    \ , "FastString"
2597    \ , "FastStringEnv"
2598    \ , "FieldLabel"
2599    \ , "FileCleanup"
2600    \ , "Finder"
2601    \ , "Fingerprint"
2602    \ , "FiniteMap"
2603    \ , "FlagChecker"
2604    \ , "FloatIn"
2605    \ , "FloatOut"
2606    \ , "ForeignCall"
2607    \ , "Format"
2608    \ , "FunDeps"
2609    \ , "GHC"
2610    \ , "GHCi"
2611    \ , "GhcMake"
2612    \ , "GhcMonad"
2613    \ , "GhcPlugins"
2614    \ , "GraphBase"
2615    \ , "GraphColor"
2616    \ , "GraphOps"
2617    \ , "GraphPpr"
2618    \ , "HaddockUtils"
2619    \ , "HeaderInfo"
2620    \ , "Hooks"
2621    \ , "Hoopl.Block"
2622    \ , "Hoopl.Collections"
2623    \ , "Hoopl.Dataflow"
2624    \ , "Hoopl.Graph"
2625    \ , "Hoopl.Label"
2626    \ , "Hoopl.Unique"
2627    \ , "HsBinds"
2628    \ , "HsDecls"
2629    \ , "HsDoc"
2630    \ , "HsDumpAst"
2631    \ , "HsExpr"
2632    \ , "HsExtension"
2633    \ , "HsImpExp"
2634    \ , "HsLit"
2635    \ , "HsPat"
2636    \ , "HsSyn"
2637    \ , "HsTypes"
2638    \ , "HsUtils"
2639    \ , "HscMain"
2640    \ , "HscStats"
2641    \ , "HscTypes"
2642    \ , "IOEnv"
2643    \ , "Id"
2644    \ , "IdInfo"
2645    \ , "IfaceEnv"
2646    \ , "IfaceSyn"
2647    \ , "IfaceType"
2648    \ , "Inst"
2649    \ , "InstEnv"
2650    \ , "Instruction"
2651    \ , "InteractiveEval"
2652    \ , "InteractiveEvalTypes"
2653    \ , "Json"
2654    \ , "Kind"
2655    \ , "KnownUniques"
2656    \ , "Lexeme"
2657    \ , "Lexer"
2658    \ , "LiberateCase"
2659    \ , "Linker"
2660    \ , "ListSetOps"
2661    \ , "ListT"
2662    \ , "Literal"
2663    \ , "Llvm"
2664    \ , "Llvm.AbsSyn"
2665    \ , "Llvm.MetaData"
2666    \ , "Llvm.PpLlvm"
2667    \ , "Llvm.Types"
2668    \ , "LlvmCodeGen"
2669    \ , "LlvmCodeGen.Base"
2670    \ , "LlvmCodeGen.CodeGen"
2671    \ , "LlvmCodeGen.Data"
2672    \ , "LlvmCodeGen.Ppr"
2673    \ , "LlvmCodeGen.Regs"
2674    \ , "LlvmMangler"
2675    \ , "LoadIface"
2676    \ , "Match"
2677    \ , "MatchCon"
2678    \ , "MatchLit"
2679    \ , "Maybes"
2680    \ , "MkCore"
2681    \ , "MkGraph"
2682    \ , "MkId"
2683    \ , "MkIface"
2684    \ , "Module"
2685    \ , "MonadUtils"
2686    \ , "NCGMonad"
2687    \ , "Name"
2688    \ , "NameCache"
2689    \ , "NameEnv"
2690    \ , "NameSet"
2691    \ , "NameShape"
2692    \ , "OccName"
2693    \ , "OccurAnal"
2694    \ , "OptCoercion"
2695    \ , "OrdList"
2696    \ , "Outputable"
2697    \ , "PIC"
2698    \ , "PPC.CodeGen"
2699    \ , "PPC.Cond"
2700    \ , "PPC.Instr"
2701    \ , "PPC.Ppr"
2702    \ , "PPC.RegInfo"
2703    \ , "PPC.Regs"
2704    \ , "PackageConfig"
2705    \ , "Packages"
2706    \ , "Pair"
2707    \ , "Panic"
2708    \ , "Parser"
2709    \ , "PatSyn"
2710    \ , "PipelineMonad"
2711    \ , "PlaceHolder"
2712    \ , "Platform"
2713    \ , "PlatformConstants"
2714    \ , "Plugins"
2715    \ , "PmExpr"
2716    \ , "PprBase"
2717    \ , "PprC"
2718    \ , "PprCmm"
2719    \ , "PprCmmDecl"
2720    \ , "PprCmmExpr"
2721    \ , "PprColour"
2722    \ , "PprCore"
2723    \ , "PprTyThing"
2724    \ , "PrelInfo"
2725    \ , "PrelNames"
2726    \ , "PrelRules"
2727    \ , "Pretty"
2728    \ , "PrimOp"
2729    \ , "ProfInit"
2730    \ , "RdrHsSyn"
2731    \ , "RdrName"
2732    \ , "Reg"
2733    \ , "RegAlloc.Graph.ArchBase"
2734    \ , "RegAlloc.Graph.ArchX86"
2735    \ , "RegAlloc.Graph.Coalesce"
2736    \ , "RegAlloc.Graph.Main"
2737    \ , "RegAlloc.Graph.Spill"
2738    \ , "RegAlloc.Graph.SpillClean"
2739    \ , "RegAlloc.Graph.SpillCost"
2740    \ , "RegAlloc.Graph.Stats"
2741    \ , "RegAlloc.Graph.TrivColorable"
2742    \ , "RegAlloc.Linear.Base"
2743    \ , "RegAlloc.Linear.FreeRegs"
2744    \ , "RegAlloc.Linear.JoinToTargets"
2745    \ , "RegAlloc.Linear.Main"
2746    \ , "RegAlloc.Linear.PPC.FreeRegs"
2747    \ , "RegAlloc.Linear.SPARC.FreeRegs"
2748    \ , "RegAlloc.Linear.StackMap"
2749    \ , "RegAlloc.Linear.State"
2750    \ , "RegAlloc.Linear.Stats"
2751    \ , "RegAlloc.Linear.X86.FreeRegs"
2752    \ , "RegAlloc.Linear.X86_64.FreeRegs"
2753    \ , "RegAlloc.Liveness"
2754    \ , "RegClass"
2755    \ , "RepType"
2756    \ , "RnBinds"
2757    \ , "RnEnv"
2758    \ , "RnExpr"
2759    \ , "RnFixity"
2760    \ , "RnHsDoc"
2761    \ , "RnModIface"
2762    \ , "RnNames"
2763    \ , "RnPat"
2764    \ , "RnSource"
2765    \ , "RnSplice"
2766    \ , "RnTypes"
2767    \ , "RnUnbound"
2768    \ , "RnUtils"
2769    \ , "RtClosureInspect"
2770    \ , "Rules"
2771    \ , "SAT"
2772    \ , "SMRep"
2773    \ , "SPARC.AddrMode"
2774    \ , "SPARC.Base"
2775    \ , "SPARC.CodeGen"
2776    \ , "SPARC.CodeGen.Amode"
2777    \ , "SPARC.CodeGen.Base"
2778    \ , "SPARC.CodeGen.CondCode"
2779    \ , "SPARC.CodeGen.Expand"
2780    \ , "SPARC.CodeGen.Gen32"
2781    \ , "SPARC.CodeGen.Gen64"
2782    \ , "SPARC.CodeGen.Sanity"
2783    \ , "SPARC.Cond"
2784    \ , "SPARC.Imm"
2785    \ , "SPARC.Instr"
2786    \ , "SPARC.Ppr"
2787    \ , "SPARC.Regs"
2788    \ , "SPARC.ShortcutJump"
2789    \ , "SPARC.Stack"
2790    \ , "SetLevels"
2791    \ , "SimplCore"
2792    \ , "SimplEnv"
2793    \ , "SimplMonad"
2794    \ , "SimplStg"
2795    \ , "SimplUtils"
2796    \ , "Simplify"
2797    \ , "SpecConstr"
2798    \ , "Specialise"
2799    \ , "SrcLoc"
2800    \ , "State"
2801    \ , "StaticPtrTable"
2802    \ , "StgCmm"
2803    \ , "StgCmmArgRep"
2804    \ , "StgCmmBind"
2805    \ , "StgCmmClosure"
2806    \ , "StgCmmCon"
2807    \ , "StgCmmEnv"
2808    \ , "StgCmmExpr"
2809    \ , "StgCmmExtCode"
2810    \ , "StgCmmForeign"
2811    \ , "StgCmmHeap"
2812    \ , "StgCmmHpc"
2813    \ , "StgCmmLayout"
2814    \ , "StgCmmMonad"
2815    \ , "StgCmmPrim"
2816    \ , "StgCmmProf"
2817    \ , "StgCmmTicky"
2818    \ , "StgCmmUtils"
2819    \ , "StgCse"
2820    \ , "StgLint"
2821    \ , "StgStats"
2822    \ , "StgSyn"
2823    \ , "Stream"
2824    \ , "StringBuffer"
2825    \ , "SysTools"
2826    \ , "SysTools.BaseDir"
2827    \ , "SysTools.ExtraObj"
2828    \ , "SysTools.Info"
2829    \ , "SysTools.Process"
2830    \ , "SysTools.Tasks"
2831    \ , "SysTools.Terminal"
2832    \ , "THNames"
2833    \ , "TargetReg"
2834    \ , "TcAnnotations"
2835    \ , "TcArrows"
2836    \ , "TcBackpack"
2837    \ , "TcBinds"
2838    \ , "TcCanonical"
2839    \ , "TcClassDcl"
2840    \ , "TcDefaults"
2841    \ , "TcDeriv"
2842    \ , "TcDerivInfer"
2843    \ , "TcDerivUtils"
2844    \ , "TcEnv"
2845    \ , "TcErrors"
2846    \ , "TcEvidence"
2847    \ , "TcExpr"
2848    \ , "TcFlatten"
2849    \ , "TcForeign"
2850    \ , "TcGenDeriv"
2851    \ , "TcGenFunctor"
2852    \ , "TcGenGenerics"
2853    \ , "TcHsSyn"
2854    \ , "TcHsType"
2855    \ , "TcIface"
2856    \ , "TcInstDcls"
2857    \ , "TcInteract"
2858    \ , "TcMType"
2859    \ , "TcMatches"
2860    \ , "TcPat"
2861    \ , "TcPatSyn"
2862    \ , "TcPluginM"
2863    \ , "TcRnDriver"
2864    \ , "TcRnExports"
2865    \ , "TcRnMonad"
2866    \ , "TcRnTypes"
2867    \ , "TcRules"
2868    \ , "TcSMonad"
2869    \ , "TcSigs"
2870    \ , "TcSimplify"
2871    \ , "TcSplice"
2872    \ , "TcTyClsDecls"
2873    \ , "TcTyDecls"
2874    \ , "TcType"
2875    \ , "TcTypeNats"
2876    \ , "TcTypeable"
2877    \ , "TcUnify"
2878    \ , "TcValidity"
2879    \ , "TidyPgm"
2880    \ , "TmOracle"
2881    \ , "ToIface"
2882    \ , "TrieMap"
2883    \ , "TyCoRep"
2884    \ , "TyCon"
2885    \ , "Type"
2886    \ , "TysPrim"
2887    \ , "TysWiredIn"
2888    \ , "UnVarGraph"
2889    \ , "UnariseStg"
2890    \ , "Unify"
2891    \ , "UniqDFM"
2892    \ , "UniqDSet"
2893    \ , "UniqFM"
2894    \ , "UniqMap"
2895    \ , "UniqSet"
2896    \ , "UniqSupply"
2897    \ , "Unique"
2898    \ , "Util"
2899    \ , "Var"
2900    \ , "VarEnv"
2901    \ , "VarSet"
2902    \ , "Vectorise"
2903    \ , "Vectorise.Builtins"
2904    \ , "Vectorise.Builtins.Base"
2905    \ , "Vectorise.Builtins.Initialise"
2906    \ , "Vectorise.Convert"
2907    \ , "Vectorise.Env"
2908    \ , "Vectorise.Exp"
2909    \ , "Vectorise.Generic.Description"
2910    \ , "Vectorise.Generic.PADict"
2911    \ , "Vectorise.Generic.PAMethods"
2912    \ , "Vectorise.Generic.PData"
2913    \ , "Vectorise.Monad"
2914    \ , "Vectorise.Monad.Base"
2915    \ , "Vectorise.Monad.Global"
2916    \ , "Vectorise.Monad.InstEnv"
2917    \ , "Vectorise.Monad.Local"
2918    \ , "Vectorise.Monad.Naming"
2919    \ , "Vectorise.Type.Classify"
2920    \ , "Vectorise.Type.Env"
2921    \ , "Vectorise.Type.TyConDecl"
2922    \ , "Vectorise.Type.Type"
2923    \ , "Vectorise.Utils"
2924    \ , "Vectorise.Utils.Base"
2925    \ , "Vectorise.Utils.Closure"
2926    \ , "Vectorise.Utils.Hoisting"
2927    \ , "Vectorise.Utils.PADict"
2928    \ , "Vectorise.Utils.Poly"
2929    \ , "Vectorise.Var"
2930    \ , "Vectorise.Vect"
2931    \ , "WorkWrap"
2932    \ , "WwLib"
2933    \ , "X86.CodeGen"
2934    \ , "X86.Cond"
2935    \ , "X86.Instr"
2936    \ , "X86.Ppr"
2937    \ , "X86.RegInfo"
2938    \ , "X86.Regs"
2939    \ , "Numeric.Half"
2940    \ , "Data.Hashable"
2941    \ , "Data.Hashable.Lifted"
2942    \ , "Language.Haskell.Lexer"
2943    \ , "Language.Haskell.ParseMonad"
2944    \ , "Language.Haskell.ParseUtils"
2945    \ , "Language.Haskell.Parser"
2946    \ , "Language.Haskell.Pretty"
2947    \ , "Language.Haskell.Syntax"
2948    \ , "Control.Monad"
2949    \ , "Data.Array"
2950    \ , "Data.Bits"
2951    \ , "Data.Char"
2952    \ , "Data.Complex"
2953    \ , "Data.Int"
2954    \ , "Data.Ix"
2955    \ , "Data.List"
2956    \ , "Data.Maybe"
2957    \ , "Data.Ratio"
2958    \ , "Data.Word"
2959    \ , "Foreign"
2960    \ , "Foreign.C"
2961    \ , "Foreign.C.Error"
2962    \ , "Foreign.C.String"
2963    \ , "Foreign.C.Types"
2964    \ , "Foreign.ForeignPtr"
2965    \ , "Foreign.Marshal"
2966    \ , "Foreign.Marshal.Alloc"
2967    \ , "Foreign.Marshal.Array"
2968    \ , "Foreign.Marshal.Error"
2969    \ , "Foreign.Marshal.Utils"
2970    \ , "Foreign.Ptr"
2971    \ , "Foreign.StablePtr"
2972    \ , "Foreign.Storable"
2973    \ , "Numeric"
2974    \ , "Prelude"
2975    \ , "System.Environment"
2976    \ , "System.Exit"
2977    \ , "System.IO"
2978    \ , "System.IO.Error"
2979    \ , "Array"
2980    \ , "Bits"
2981    \ , "CError"
2982    \ , "CForeign"
2983    \ , "CPUTime"
2984    \ , "CString"
2985    \ , "CTypes"
2986    \ , "Char"
2987    \ , "Complex"
2988    \ , "Directory"
2989    \ , "ForeignPtr"
2990    \ , "IO"
2991    \ , "Int"
2992    \ , "Ix"
2993    \ , "List"
2994    \ , "Locale"
2995    \ , "MarshalAlloc"
2996    \ , "MarshalArray"
2997    \ , "MarshalError"
2998    \ , "MarshalUtils"
2999    \ , "Maybe"
3000    \ , "Monad"
3001    \ , "Numeric"
3002    \ , "Prelude"
3003    \ , "Ptr"
3004    \ , "Random"
3005    \ , "Ratio"
3006    \ , "StablePtr"
3007    \ , "Storable"
3008    \ , "System"
3009    \ , "Time"
3010    \ , "Word"
3011    \ , "Trace.Hpc.Mix"
3012    \ , "Trace.Hpc.Reflect"
3013    \ , "Trace.Hpc.Tix"
3014    \ , "Trace.Hpc.Util"
3015    \ , "Text.Html"
3016    \ , "Text.Html.BlockTable"
3017    \ , "GHC.Integer.Logarithms.Compat"
3018    \ , "Math.NumberTheory.Logarithms"
3019    \ , "Math.NumberTheory.Powers.Integer"
3020    \ , "Math.NumberTheory.Powers.Natural"
3021    \ , "Control.Monad.Cont"
3022    \ , "Control.Monad.Cont.Class"
3023    \ , "Control.Monad.Error"
3024    \ , "Control.Monad.Error.Class"
3025    \ , "Control.Monad.Except"
3026    \ , "Control.Monad.Identity"
3027    \ , "Control.Monad.List"
3028    \ , "Control.Monad.RWS"
3029    \ , "Control.Monad.RWS.Class"
3030    \ , "Control.Monad.RWS.Lazy"
3031    \ , "Control.Monad.RWS.Strict"
3032    \ , "Control.Monad.Reader"
3033    \ , "Control.Monad.Reader.Class"
3034    \ , "Control.Monad.State"
3035    \ , "Control.Monad.State.Class"
3036    \ , "Control.Monad.State.Lazy"
3037    \ , "Control.Monad.State.Strict"
3038    \ , "Control.Monad.Trans"
3039    \ , "Control.Monad.Writer"
3040    \ , "Control.Monad.Writer.Class"
3041    \ , "Control.Monad.Writer.Lazy"
3042    \ , "Control.Monad.Writer.Strict"
3043    \ , "Network.Multipart"
3044    \ , "Network.Multipart.Header"
3045    \ , "Network"
3046    \ , "Network.BSD"
3047    \ , "Network.Socket"
3048    \ , "Network.Socket.ByteString"
3049    \ , "Network.Socket.ByteString.Lazy"
3050    \ , "Network.Socket.Internal"
3051    \ , "Network.URI"
3052    \ , "System.Locale"
3053    \ , "System.Time"
3054    \ , "Control.Parallel"
3055    \ , "Control.Parallel.Strategies"
3056    \ , "Control.Seq"
3057    \ , "Text.Parsec"
3058    \ , "Text.Parsec.ByteString"
3059    \ , "Text.Parsec.ByteString.Lazy"
3060    \ , "Text.Parsec.Char"
3061    \ , "Text.Parsec.Combinator"
3062    \ , "Text.Parsec.Error"
3063    \ , "Text.Parsec.Expr"
3064    \ , "Text.Parsec.Language"
3065    \ , "Text.Parsec.Perm"
3066    \ , "Text.Parsec.Pos"
3067    \ , "Text.Parsec.Prim"
3068    \ , "Text.Parsec.String"
3069    \ , "Text.Parsec.Text"
3070    \ , "Text.Parsec.Text.Lazy"
3071    \ , "Text.Parsec.Token"
3072    \ , "Text.ParserCombinators.Parsec"
3073    \ , "Text.ParserCombinators.Parsec.Char"
3074    \ , "Text.ParserCombinators.Parsec.Combinator"
3075    \ , "Text.ParserCombinators.Parsec.Error"
3076    \ , "Text.ParserCombinators.Parsec.Expr"
3077    \ , "Text.ParserCombinators.Parsec.Language"
3078    \ , "Text.ParserCombinators.Parsec.Perm"
3079    \ , "Text.ParserCombinators.Parsec.Pos"
3080    \ , "Text.ParserCombinators.Parsec.Prim"
3081    \ , "Text.ParserCombinators.Parsec.Token"
3082    \ , "Text.PrettyPrint"
3083    \ , "Text.PrettyPrint.Annotated"
3084    \ , "Text.PrettyPrint.Annotated.HughesPJ"
3085    \ , "Text.PrettyPrint.Annotated.HughesPJClass"
3086    \ , "Text.PrettyPrint.HughesPJ"
3087    \ , "Text.PrettyPrint.HughesPJClass"
3088    \ , "Control.Monad.Primitive"
3089    \ , "Data.Primitive"
3090    \ , "Data.Primitive.Addr"
3091    \ , "Data.Primitive.Array"
3092    \ , "Data.Primitive.ByteArray"
3093    \ , "Data.Primitive.MVar"
3094    \ , "Data.Primitive.MachDeps"
3095    \ , "Data.Primitive.MutVar"
3096    \ , "Data.Primitive.PrimArray"
3097    \ , "Data.Primitive.Ptr"
3098    \ , "Data.Primitive.SmallArray"
3099    \ , "Data.Primitive.Types"
3100    \ , "Data.Primitive.UnliftedArray"
3101    \ , "System.Cmd"
3102    \ , "System.Process"
3103    \ , "System.Process.Internals"
3104    \ , "System.Random"
3105    \ , "Text.Regex.Base"
3106    \ , "Text.Regex.Base.Context"
3107    \ , "Text.Regex.Base.Impl"
3108    \ , "Text.Regex.Base.RegexLike"
3109    \ , "Text.Regex"
3110    \ , "Text.Regex.Posix"
3111    \ , "Text.Regex.Posix.ByteString"
3112    \ , "Text.Regex.Posix.ByteString.Lazy"
3113    \ , "Text.Regex.Posix.Sequence"
3114    \ , "Text.Regex.Posix.String"
3115    \ , "Text.Regex.Posix.Wrap"
3116    \ , "Data.ByteString.Builder.Scientific"
3117    \ , "Data.Scientific"
3118    \ , "Data.Text.Lazy.Builder.Scientific"
3119    \ , "Data.List.Split"
3120    \ , "Data.List.Split.Internals"
3121    \ , "Control.Concurrent.STM"
3122    \ , "Control.Concurrent.STM.TArray"
3123    \ , "Control.Concurrent.STM.TBQueue"
3124    \ , "Control.Concurrent.STM.TChan"
3125    \ , "Control.Concurrent.STM.TMVar"
3126    \ , "Control.Concurrent.STM.TQueue"
3127    \ , "Control.Concurrent.STM.TSem"
3128    \ , "Control.Concurrent.STM.TVar"
3129    \ , "Control.Monad.STM"
3130    \ , "Data.Generics"
3131    \ , "Data.Generics.Aliases"
3132    \ , "Data.Generics.Basics"
3133    \ , "Data.Generics.Builders"
3134    \ , "Data.Generics.Instances"
3135    \ , "Data.Generics.Schemes"
3136    \ , "Data.Generics.Text"
3137    \ , "Data.Generics.Twins"
3138    \ , "Generics.SYB"
3139    \ , "Generics.SYB.Aliases"
3140    \ , "Generics.SYB.Basics"
3141    \ , "Generics.SYB.Builders"
3142    \ , "Generics.SYB.Instances"
3143    \ , "Generics.SYB.Schemes"
3144    \ , "Generics.SYB.Text"
3145    \ , "Generics.SYB.Twins"
3146    \ , "Language.Haskell.TH"
3147    \ , "Language.Haskell.TH.LanguageExtensions"
3148    \ , "Language.Haskell.TH.Lib"
3149    \ , "Language.Haskell.TH.Lib.Internal"
3150    \ , "Language.Haskell.TH.Ppr"
3151    \ , "Language.Haskell.TH.PprLib"
3152    \ , "Language.Haskell.TH.Quote"
3153    \ , "Language.Haskell.TH.Syntax"
3154    \ , "Data.Text"
3155    \ , "Data.Text.Array"
3156    \ , "Data.Text.Encoding"
3157    \ , "Data.Text.Encoding.Error"
3158    \ , "Data.Text.Foreign"
3159    \ , "Data.Text.IO"
3160    \ , "Data.Text.Internal"
3161    \ , "Data.Text.Internal.Builder"
3162    \ , "Data.Text.Internal.Builder.Functions"
3163    \ , "Data.Text.Internal.Builder.Int.Digits"
3164    \ , "Data.Text.Internal.Builder.RealFloat.Functions"
3165    \ , "Data.Text.Internal.Encoding.Fusion"
3166    \ , "Data.Text.Internal.Encoding.Fusion.Common"
3167    \ , "Data.Text.Internal.Encoding.Utf16"
3168    \ , "Data.Text.Internal.Encoding.Utf32"
3169    \ , "Data.Text.Internal.Encoding.Utf8"
3170    \ , "Data.Text.Internal.Functions"
3171    \ , "Data.Text.Internal.Fusion"
3172    \ , "Data.Text.Internal.Fusion.CaseMapping"
3173    \ , "Data.Text.Internal.Fusion.Common"
3174    \ , "Data.Text.Internal.Fusion.Size"
3175    \ , "Data.Text.Internal.Fusion.Types"
3176    \ , "Data.Text.Internal.IO"
3177    \ , "Data.Text.Internal.Lazy"
3178    \ , "Data.Text.Internal.Lazy.Encoding.Fusion"
3179    \ , "Data.Text.Internal.Lazy.Fusion"
3180    \ , "Data.Text.Internal.Lazy.Search"
3181    \ , "Data.Text.Internal.Private"
3182    \ , "Data.Text.Internal.Read"
3183    \ , "Data.Text.Internal.Search"
3184    \ , "Data.Text.Internal.Unsafe"
3185    \ , "Data.Text.Internal.Unsafe.Char"
3186    \ , "Data.Text.Internal.Unsafe.Shift"
3187    \ , "Data.Text.Lazy"
3188    \ , "Data.Text.Lazy.Builder"
3189    \ , "Data.Text.Lazy.Builder.Int"
3190    \ , "Data.Text.Lazy.Builder.RealFloat"
3191    \ , "Data.Text.Lazy.Encoding"
3192    \ , "Data.Text.Lazy.IO"
3193    \ , "Data.Text.Lazy.Internal"
3194    \ , "Data.Text.Lazy.Read"
3195    \ , "Data.Text.Read"
3196    \ , "Data.Text.Unsafe"
3197    \ , "System.Random.TF"
3198    \ , "System.Random.TF.Gen"
3199    \ , "System.Random.TF.Init"
3200    \ , "System.Random.TF.Instances"
3201    \ , "Data.Time"
3202    \ , "Data.Time.Calendar"
3203    \ , "Data.Time.Calendar.Easter"
3204    \ , "Data.Time.Calendar.Julian"
3205    \ , "Data.Time.Calendar.MonthDay"
3206    \ , "Data.Time.Calendar.OrdinalDate"
3207    \ , "Data.Time.Calendar.WeekDate"
3208    \ , "Data.Time.Clock"
3209    \ , "Data.Time.Clock.POSIX"
3210    \ , "Data.Time.Clock.System"
3211    \ , "Data.Time.Clock.TAI"
3212    \ , "Data.Time.Format"
3213    \ , "Data.Time.LocalTime"
3214    \ , "Control.Applicative.Backwards"
3215    \ , "Control.Applicative.Lift"
3216    \ , "Control.Monad.Signatures"
3217    \ , "Control.Monad.Trans.Accum"
3218    \ , "Control.Monad.Trans.Class"
3219    \ , "Control.Monad.Trans.Cont"
3220    \ , "Control.Monad.Trans.Error"
3221    \ , "Control.Monad.Trans.Except"
3222    \ , "Control.Monad.Trans.Identity"
3223    \ , "Control.Monad.Trans.List"
3224    \ , "Control.Monad.Trans.Maybe"
3225    \ , "Control.Monad.Trans.RWS"
3226    \ , "Control.Monad.Trans.RWS.Lazy"
3227    \ , "Control.Monad.Trans.RWS.Strict"
3228    \ , "Control.Monad.Trans.Reader"
3229    \ , "Control.Monad.Trans.Select"
3230    \ , "Control.Monad.Trans.State"
3231    \ , "Control.Monad.Trans.State.Lazy"
3232    \ , "Control.Monad.Trans.State.Strict"
3233    \ , "Control.Monad.Trans.Writer"
3234    \ , "Control.Monad.Trans.Writer.Lazy"
3235    \ , "Control.Monad.Trans.Writer.Strict"
3236    \ , "Data.Functor.Constant"
3237    \ , "Data.Functor.Reverse"
3238    \ , "Control.Monad.Trans.Instances"
3239    \ , "Data.Functor.Classes.Generic"
3240    \ , "Data.Functor.Classes.Generic.Internal"
3241    \ , "System.Posix"
3242    \ , "System.Posix.ByteString"
3243    \ , "System.Posix.ByteString.FilePath"
3244    \ , "System.Posix.Directory"
3245    \ , "System.Posix.Directory.ByteString"
3246    \ , "System.Posix.DynamicLinker"
3247    \ , "System.Posix.DynamicLinker.ByteString"
3248    \ , "System.Posix.DynamicLinker.Module"
3249    \ , "System.Posix.DynamicLinker.Module.ByteString"
3250    \ , "System.Posix.DynamicLinker.Prim"
3251    \ , "System.Posix.Env"
3252    \ , "System.Posix.Env.ByteString"
3253    \ , "System.Posix.Error"
3254    \ , "System.Posix.Fcntl"
3255    \ , "System.Posix.Files"
3256    \ , "System.Posix.Files.ByteString"
3257    \ , "System.Posix.IO"
3258    \ , "System.Posix.IO.ByteString"
3259    \ , "System.Posix.Process"
3260    \ , "System.Posix.Process.ByteString"
3261    \ , "System.Posix.Process.Internals"
3262    \ , "System.Posix.Resource"
3263    \ , "System.Posix.Semaphore"
3264    \ , "System.Posix.SharedMem"
3265    \ , "System.Posix.Signals"
3266    \ , "System.Posix.Signals.Exts"
3267    \ , "System.Posix.Temp"
3268    \ , "System.Posix.Temp.ByteString"
3269    \ , "System.Posix.Terminal"
3270    \ , "System.Posix.Terminal.ByteString"
3271    \ , "System.Posix.Time"
3272    \ , "System.Posix.Unistd"
3273    \ , "System.Posix.User"
3274    \ , "Data.HashMap.Lazy"
3275    \ , "Data.HashMap.Strict"
3276    \ , "Data.HashSet"
3277    \ , "Data.Vector"
3278    \ , "Data.Vector.Fusion.Bundle"
3279    \ , "Data.Vector.Fusion.Bundle.Monadic"
3280    \ , "Data.Vector.Fusion.Bundle.Size"
3281    \ , "Data.Vector.Fusion.Stream.Monadic"
3282    \ , "Data.Vector.Fusion.Util"
3283    \ , "Data.Vector.Generic"
3284    \ , "Data.Vector.Generic.Base"
3285    \ , "Data.Vector.Generic.Mutable"
3286    \ , "Data.Vector.Generic.Mutable.Base"
3287    \ , "Data.Vector.Generic.New"
3288    \ , "Data.Vector.Internal.Check"
3289    \ , "Data.Vector.Mutable"
3290    \ , "Data.Vector.Primitive"
3291    \ , "Data.Vector.Primitive.Mutable"
3292    \ , "Data.Vector.Storable"
3293    \ , "Data.Vector.Storable.Internal"
3294    \ , "Data.Vector.Storable.Mutable"
3295    \ , "Data.Vector.Unboxed"
3296    \ , "Data.Vector.Unboxed.Base"
3297    \ , "Data.Vector.Unboxed.Mutable"
3298    \ , "Text.XHtml"
3299    \ , "Text.XHtml.Debug"
3300    \ , "Text.XHtml.Frameset"
3301    \ , "Text.XHtml.Strict"
3302    \ , "Text.XHtml.Table"
3303    \ , "Text.XHtml.Transitional"
3304    \ , "Codec.Compression.GZip"
3305    \ , "Codec.Compression.Zlib"
3306    \ , "Codec.Compression.Zlib.Internal"
3307    \ , "Codec.Compression.Zlib.Raw"
3308    \ , "Web.Spock"
3309    \ , "Web.Spock.Config"
3310    \ , "Web.Spock.Internal.SessionManager"
3311    \ , "Web.Spock.Internal.SessionVault"
3312    \ , "Web.Spock.SessionActions"
3313    \ , "Web.Spock.Api"
3314    \ , "Web.Spock.Auth"
3315    \ , "Web.Spock.Action"
3316    \ , "Web.Spock.Core"
3317    \ , "Web.Spock.Internal.Cookies"
3318    \ , "Web.Spock.Internal.Util"
3319    \ , "Web.Spock.Routing"
3320    \ , "Web.Spock.Digestive"
3321    \ , "Database.Esqueleto"
3322    \ , "Database.Esqueleto.Internal.Language"
3323    \ , "Database.Esqueleto.Internal.Sql"
3324    \ , "Database.Esqueleto.PostgreSQL"
3325    \ , "Database.Persist"
3326    \ , "Database.Persist.Class"
3327    \ , "Database.Persist.Quasi"
3328    \ , "Database.Persist.Sql"
3329    \ , "Database.Persist.Sql.Types.Internal"
3330    \ , "Database.Persist.Sql.Util"
3331    \ , "Database.Persist.Types"
3332    \ , "Database.Persist.MySQL"
3333    \ , "Database.Persist.Postgresql"
3334    \ , "Database.Persist.Postgresql.JSON"
3335    \ , "Database.Persist.Redis"
3336    \ , "Database.Persist.Sqlite"
3337    \ , "Database.Sqlite"
3338    \ , "Servant.API"
3339    \ , "Servant.API.Alternative"
3340    \ , "Servant.API.BasicAuth"
3341    \ , "Servant.API.Capture"
3342    \ , "Servant.API.ContentTypes"
3343    \ , "Servant.API.Description"
3344    \ , "Servant.API.Empty"
3345    \ , "Servant.API.Experimental.Auth"
3346    \ , "Servant.API.Generic"
3347    \ , "Servant.API.Header"
3348    \ , "Servant.API.HttpVersion"
3349    \ , "Servant.API.Internal.Test.ComprehensiveAPI"
3350    \ , "Servant.API.IsSecure"
3351    \ , "Servant.API.Modifiers"
3352    \ , "Servant.API.QueryParam"
3353    \ , "Servant.API.Raw"
3354    \ , "Servant.API.RemoteHost"
3355    \ , "Servant.API.ReqBody"
3356    \ , "Servant.API.ResponseHeaders"
3357    \ , "Servant.API.Stream"
3358    \ , "Servant.API.Sub"
3359    \ , "Servant.API.TypeLevel"
3360    \ , "Servant.API.Vault"
3361    \ , "Servant.API.Verbs"
3362    \ , "Servant.API.WithNamedContext"
3363    \ , "Servant.Links"
3364    \ , "Servant.Utils.Enter"
3365    \ , "Servant.Utils.Links"
3366    \ , "Servant.Auth"
3367    \ , "Servant.Client"
3368    \ , "Servant.Client.Internal.HttpClient"
3369    \ , "Servant"
3370    \ , "Servant.Server"
3371    \ , "Servant.Server.Experimental.Auth"
3372    \ , "Servant.Server.Generic"
3373    \ , "Servant.Server.Internal"
3374    \ , "Servant.Server.Internal.BasicAuth"
3375    \ , "Servant.Server.Internal.Context"
3376    \ , "Servant.Server.Internal.Handler"
3377    \ , "Servant.Server.Internal.Router"
3378    \ , "Servant.Server.Internal.RoutingApplication"
3379    \ , "Servant.Server.Internal.ServantErr"
3380    \ , "Servant.Server.StaticFiles"
3381    \ , "Servant.Utils.StaticFiles"
3382    \ ]
3383