gitextract_ncts6nq2/ ├── .devcontainer/ │ ├── Dockerfile │ ├── devcontainer.json │ └── onCreateCommand.sh ├── .dockerignore ├── .editorconfig ├── .github/ │ ├── CODEOWNERS │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── config.yml │ │ ├── feature_request.md │ │ └── new_language.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── dependabot.yml │ └── workflows/ │ ├── ci.yml │ └── publish_docker_image.yml ├── .gitignore ├── .gitmodules ├── AGENTS.md ├── Brewfile ├── CONTRIBUTING.md ├── Dockerfile ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── audio.liq ├── bin/ │ ├── git-linguist │ └── github-linguist ├── docs/ │ ├── README.md │ ├── how-linguist-works.md │ ├── overrides.md │ ├── releasing.md │ └── troubleshooting.md ├── ext/ │ └── linguist/ │ ├── extconf.rb │ ├── lex.linguist_yy.c │ ├── lex.linguist_yy.h │ ├── linguist.c │ ├── linguist.h │ └── tokenizer.l ├── github-linguist.gemspec ├── go.work ├── grammars.yml ├── http.liq ├── lib/ │ ├── linguist/ │ │ ├── VERSION │ │ ├── blob.rb │ │ ├── blob_helper.rb │ │ ├── classifier.rb │ │ ├── documentation.yml │ │ ├── file_blob.rb │ │ ├── generated.rb │ │ ├── generic.yml │ │ ├── grammars.rb │ │ ├── heuristics.rb │ │ ├── heuristics.yml │ │ ├── instrumenter.rb │ │ ├── language.rb │ │ ├── languages.yml │ │ ├── lazy_blob.rb │ │ ├── popular.yml │ │ ├── repository.rb │ │ ├── samples.rb │ │ ├── sha256.rb │ │ ├── shebang.rb │ │ ├── source/ │ │ │ ├── diff.rb │ │ │ ├── repository.rb │ │ │ └── rugged.rb │ │ ├── strategy/ │ │ │ ├── extension.rb │ │ │ ├── filename.rb │ │ │ ├── manpage.rb │ │ │ ├── modeline.rb │ │ │ └── xml.rb │ │ ├── tokenizer.rb │ │ ├── vendor.yml │ │ └── version.rb │ └── linguist.rb ├── playlist.liq ├── samples/ │ ├── 1C Enterprise/ │ │ ├── Catalog.ИсходящиеПисьма.Form.ФормаЭлемента.Form.Module.bsl │ │ ├── Catalog.Товары.Command.ПечатьПрайсЛиста.CommandModule.bsl │ │ ├── CommonModule.ОбменМобильныеОбщее.Module.bsl │ │ ├── Document.РасходТовара.ObjectModule.bsl │ │ ├── ci_before_script.os │ │ └── test_canCompile.os │ ├── 2-Dimensional Array/ │ │ ├── appearance.2da │ │ └── tailmodel.2da │ ├── 4D/ │ │ ├── generate_project.4dm │ │ ├── play_with_classes.4dm │ │ ├── test_webServerStart.4dm │ │ └── webArea.4dm │ ├── ABAP/ │ │ └── cl_csv_parser.abap │ ├── ABAP CDS/ │ │ ├── zcds_monsters_association.ddls.asddls │ │ └── zcds_monsters_parameters.ddls.asddls │ ├── ABNF/ │ │ └── toml.abnf │ ├── AGS Script/ │ │ ├── GlobalScript.asc │ │ ├── GlobalScript.ash │ │ ├── KeyboardMovement_102.asc │ │ └── KeyboardMovement_102.ash │ ├── AIDL/ │ │ ├── ExtendableParcelable.aidl │ │ └── IVoid.aidl │ ├── AL/ │ │ ├── ALIssue.al │ │ ├── ALIssueList.al │ │ └── RefreshALIssuesCode.al │ ├── ALGOL/ │ │ └── example15.alg │ ├── AMPL/ │ │ ├── CT2.mod │ │ └── toy.ampl │ ├── API Blueprint/ │ │ ├── actions.apib │ │ ├── attributes.apib │ │ └── simple.apib │ ├── APL/ │ │ ├── DeepakChopra.apl │ │ ├── UT.dyalog │ │ └── hashbang │ ├── ASL/ │ │ ├── example.asl │ │ └── example.dsl │ ├── ASN.1/ │ │ └── example.asn │ ├── ASP.NET/ │ │ ├── EchoSocket.ashx │ │ ├── Global.asax │ │ ├── Login.aspx │ │ └── OpenAuthProviders.ascx │ ├── ATS/ │ │ ├── CoYonedaLemma.dats │ │ ├── DiningPhil2.dats │ │ ├── DiningPhil2.sats │ │ ├── DiningPhil2_fork.dats │ │ ├── DiningPhil2_thread.dats │ │ ├── YonedaLemma.dats │ │ ├── basis_ssntype.sats │ │ ├── csv_parse.hats │ │ └── intinf_vt.dats │ ├── ActionScript/ │ │ ├── FooBar.as │ │ ├── HelloWorld.as │ │ ├── NumberUtil.as │ │ └── TextFieldUtil.as │ ├── Adblock Filter List/ │ │ ├── Imperial Units Remover.txt │ │ ├── abp-filters-anti-cv.txt │ │ ├── anti-facebook.txt │ │ ├── fake-news.txt │ │ └── test_rules.txt │ ├── Adobe Font Metrics/ │ │ ├── OpenSansCondensed-Bold.afm │ │ ├── SpecialElite.afm │ │ └── lambda.afm │ ├── Agda/ │ │ └── NatCat.agda │ ├── Aiken/ │ │ ├── multi.ak │ │ ├── oneshot.ak │ │ └── tunav2.ak │ ├── Alloy/ │ │ ├── file_system.als │ │ ├── marksweepgc.als │ │ └── views.als │ ├── Alpine Abuild/ │ │ └── filenames/ │ │ └── APKBUILD │ ├── Altium Designer/ │ │ ├── Sample Altium Project.PrjPcb │ │ ├── Sample Board Design.PcbDoc │ │ ├── Sample Output Job.OutJob │ │ └── Sample Schematic Sheet.SchDoc │ ├── AngelScript/ │ │ ├── botmanager.as │ │ └── payload.as │ ├── Answer Set Programming/ │ │ ├── 15puzzle-encoding.lp │ │ ├── apt.lp │ │ ├── onmodel-py.lp │ │ └── tohB.lp │ ├── Ant Build System/ │ │ └── filenames/ │ │ └── ant.xml │ ├── Antlers/ │ │ ├── index.antlers.html │ │ ├── kitchensink.antlers.html │ │ ├── kitchensink.antlers.php │ │ ├── layout.antlers.html │ │ └── sitemap.antlers.xml │ ├── ApacheConf/ │ │ ├── apache.vhost │ │ └── filenames/ │ │ ├── .htaccess │ │ ├── apache2.conf │ │ └── httpd.conf │ ├── Apex/ │ │ ├── AccountTrigger.trigger │ │ ├── AddRelatedRecord.trigger │ │ ├── ArrayUtils.cls │ │ ├── BooleanUtils.cls │ │ ├── EmailUtils.cls │ │ ├── GeoUtils.cls │ │ ├── LanguageUtils.cls │ │ ├── LogTriggerHandler.trigger │ │ ├── SoqlUtils.apex │ │ ├── TwilioAPI.cls │ │ └── UrlUtils.apex │ ├── Apollo Guidance Computer/ │ │ └── BURN_BABY_BURN--MASTER_IGNITION_ROUTINE.agc │ ├── AppleScript/ │ │ ├── Convert To PDF.applescript │ │ ├── Convert To PostScript.applescript │ │ ├── Count Messages in All Mailboxes.applescript │ │ ├── Crazy Message Text.applescript │ │ ├── Get User Name.applescript │ │ ├── Time Of Day.applescript │ │ └── center.applescript │ ├── AsciiDoc/ │ │ ├── encoding.asciidoc │ │ ├── list.asc │ │ └── sample.adoc │ ├── AspectJ/ │ │ ├── CacheAspect.aj │ │ └── OptimizeRecursionCache.aj │ ├── Assembly/ │ │ ├── 3D_PRG.I │ │ ├── A8514.i │ │ ├── External Interrupt.a51 │ │ ├── FASM.asm │ │ ├── cpu_feat.nas │ │ ├── fftfpu.nas │ │ ├── forth.nasm │ │ ├── fp_sqr32_160_comba.inc │ │ ├── lib.inc │ │ └── sectorc.s │ ├── Astro/ │ │ └── index.astro │ ├── Asymptote/ │ │ ├── figarc4_3D.asy │ │ └── kappa-sawteeth.asy │ ├── AutoHotkey/ │ │ └── hello.ahk │ ├── Avro IDL/ │ │ └── user.avdl │ ├── Awk/ │ │ └── test.awk │ ├── B (Formal Method)/ │ │ ├── Airlock.mch │ │ └── Leftpad.mch │ ├── B4X/ │ │ ├── B4XMainPage.bas │ │ ├── OAuth.bas.bas │ │ └── RequestsManager.bas │ ├── BASIC/ │ │ ├── GPIOGW.BAS │ │ ├── P180.BAS │ │ ├── mandelbrot.bas │ │ └── spacesc.bas │ ├── BQN/ │ │ ├── gameoflife.bqn │ │ └── snake.bqn │ ├── Ballerina/ │ │ ├── hello-world-service.bal │ │ ├── hello-world.bal │ │ ├── json.bal │ │ ├── var.bal │ │ └── xml.bal │ ├── Batchfile/ │ │ └── filenames/ │ │ ├── gradlew.bat │ │ └── mvnw.cmd │ ├── Beef/ │ │ ├── ProfilePanel.bf │ │ ├── Program.bf │ │ └── RandoCode.bf │ ├── Befunge/ │ │ ├── aturley.bf │ │ ├── beer7.bf │ │ ├── befunge3.bf │ │ ├── cascade.bf │ │ └── mycorand.bf │ ├── Berry/ │ │ ├── berry_schema_validator.be │ │ └── lcd_display.be │ ├── BibTeX/ │ │ ├── citations.bib │ │ └── deeplyaggrevated.bibtex │ ├── BibTeX Style/ │ │ └── bibkeys.bst │ ├── Bicep/ │ │ ├── 101-container-registry.bicep │ │ ├── 201-1vm-2nics-2subnets-1vnet.bicep │ │ └── params.bicepparam │ ├── Bikeshed/ │ │ ├── example.bs │ │ └── example2.bs │ ├── BitBake/ │ │ ├── cmake.bbclass │ │ ├── gstreamer-libav.bb │ │ ├── qtbase-native.bb │ │ ├── qtbase_%.bbappend │ │ ├── tclibc-newlib.inc │ │ └── xorg-driver-common.inc │ ├── Blade/ │ │ ├── hello.blade │ │ └── hello.blade.php │ ├── BlitzBasic/ │ │ ├── HalfAndDouble.bb │ │ ├── LList.bb │ │ └── PObj.bb │ ├── BlitzMax/ │ │ └── sample.bmx │ ├── Bluespec/ │ │ ├── TL.bsv │ │ └── TbTL.bsv │ ├── Bluespec BH/ │ │ ├── CGetPut.bs │ │ ├── COBS.bs │ │ ├── TL.bs │ │ └── TbTL.bs │ ├── Boogie/ │ │ ├── Bubble.bpl │ │ ├── TuringFactorial.bpl │ │ └── ticket.bpl │ ├── Brainfuck/ │ │ ├── factor.b │ │ ├── fib100.bf │ │ ├── hello.bf │ │ ├── helloworld.bf │ │ └── rot13.bf │ ├── BrighterScript/ │ │ ├── Main.bs │ │ ├── RowListExample.bs │ │ └── SimpleGrid.bs │ ├── Brightscript/ │ │ └── SimpleGrid.brs │ ├── Browserslist/ │ │ └── filenames/ │ │ ├── .browserslistrc │ │ └── browserslist │ ├── Bru/ │ │ └── example.bru │ ├── BuildStream/ │ │ └── hello.bst │ ├── C/ │ │ ├── 2D.C │ │ ├── 2D.H │ │ ├── Arduino.cats │ │ ├── ArrowLeft.h │ │ ├── Field.h │ │ ├── GLKMatrix4.h │ │ ├── NWMan.h │ │ ├── Nightmare.h │ │ ├── array.c │ │ ├── array.h │ │ ├── asm.h │ │ ├── bitmap.h │ │ ├── blob.c │ │ ├── blob.h │ │ ├── bootstrap.h │ │ ├── color.h │ │ ├── commit.c │ │ ├── commit.h │ │ ├── common.h.in │ │ ├── cpuid.h │ │ ├── custom_extensions.c │ │ ├── driver.h │ │ ├── elf.h │ │ ├── exception.zep.c │ │ ├── exception.zep.h │ │ ├── filter.h │ │ ├── fudge_node.c │ │ ├── git.c │ │ ├── hello.c │ │ ├── hello.h │ │ ├── http_parser.c │ │ ├── http_parser.h │ │ ├── info.h │ │ ├── interface.h │ │ ├── ip4.h │ │ ├── jni_layer.h │ │ ├── markdown.c │ │ ├── multiboot.h │ │ ├── ntru_encrypt.h │ │ ├── portio.h │ │ ├── pqiv.h │ │ ├── process.c │ │ ├── rdiscount.c │ │ ├── readline.cats │ │ ├── redis.c │ │ ├── rf_io.c │ │ ├── rf_io.h │ │ ├── rfc_string.c │ │ ├── rfc_string.h │ │ ├── rpc.h │ │ ├── scheduler.h │ │ ├── script │ │ ├── sgd_fast.c │ │ ├── syscalldefs.h │ │ ├── syscalls.h │ │ ├── vfs.h │ │ ├── vmem.h │ │ ├── wglew.h │ │ └── yajl.c │ ├── C#/ │ │ ├── AssemblyInfo.cs │ │ ├── BsonPropertyValue.cs │ │ ├── FileScopedNamespace.cs │ │ ├── MongoExpressionVisitor.cs │ │ ├── Program.cs │ │ ├── SimpleHttpServer.cs │ │ ├── _CodeSugarIO.DriveInfo.cs.pp │ │ ├── build.cake │ │ └── chart-process-memory.linq │ ├── C++/ │ │ ├── 16F88.h │ │ ├── ClasspathVMSystemProperties.inc │ │ ├── CsvStreamer.h │ │ ├── Entity.h │ │ ├── Math.inl │ │ ├── Memory16F88.h │ │ ├── NoDiscard.h │ │ ├── PackageInfoParser.cpp │ │ ├── ThreadedQueue.h │ │ ├── Types.h │ │ ├── bar.h │ │ ├── bar.hh │ │ ├── bar.hpp │ │ ├── bug1163046.--skeleton.re │ │ ├── cnokw.re │ │ ├── constexpr_header.h │ │ ├── crypter.cpp │ │ ├── cvsignore.re │ │ ├── env.cpp │ │ ├── env.h │ │ ├── epoll_reactor.ipp │ │ ├── gblib.cppm │ │ ├── gdsdbreader.h │ │ ├── graphics.cpp │ │ ├── grpc.pb.cc │ │ ├── hello.cpp │ │ ├── hello.grpc.pb.h │ │ ├── hello.ino │ │ ├── initClasses.inc │ │ ├── instances.inc │ │ ├── json_reader.cpp │ │ ├── json_writer.cpp │ │ ├── key.cpp │ │ ├── key.h │ │ ├── libcanister.h │ │ ├── main.cpp │ │ ├── metrics.h │ │ ├── module.ixx │ │ ├── octave_changer.ino │ │ ├── program.cp │ │ ├── protocol-buffer.pb.cc │ │ ├── protocol-buffer.pb.h │ │ ├── render_adapter.cpp │ │ ├── runtime-compiler.cc │ │ ├── scanner.cc │ │ ├── scanner.h │ │ ├── search.txx │ │ ├── simple.re │ │ ├── srs_app_ingest.cpp │ │ ├── target.txx │ │ ├── utils.h │ │ ├── v8.cc │ │ ├── v8.h │ │ ├── vtkSparseArray.txx │ │ └── wrapper_inner.cpp │ ├── C3/ │ │ └── example.c3 │ ├── CAP CDS/ │ │ ├── admin-service.cds │ │ ├── cat-service.cds │ │ ├── common.cds │ │ ├── schema.cds │ │ └── user-service.cds │ ├── CIL/ │ │ ├── certfile.cil │ │ └── guix-daemon.cil │ ├── CLIPS/ │ │ ├── demo.clp │ │ └── sudoku.clp │ ├── CMake/ │ │ ├── filenames/ │ │ │ └── CMakeLists.txt │ │ ├── sample1.cmake │ │ ├── sample2.cmake │ │ ├── sample3.cmake │ │ ├── sample4.cmake │ │ ├── sample5.cmake │ │ └── uninstall.cmake.in │ ├── COBOL/ │ │ ├── hello_world.cbl │ │ ├── hello_world.ccp │ │ ├── hello_world.cob │ │ └── simple.cpy │ ├── CODEOWNERS/ │ │ └── filenames/ │ │ └── CODEOWNERS │ ├── CQL/ │ │ ├── alter_materialized_view.cql │ │ ├── alter_role.cql │ │ ├── alter_table.cql │ │ ├── alter_type.cql │ │ ├── comments.cql │ │ ├── create_keyspace.cql │ │ └── videodb.cql │ ├── CSON/ │ │ ├── base.cson │ │ ├── config.cson │ │ ├── ff-sfd.cson │ │ └── wercker-status.cson │ ├── CSS/ │ │ └── bootstrap.css │ ├── CSV/ │ │ └── cars.csv │ ├── CUE/ │ │ ├── github-workflow.cue │ │ └── kube.cue │ ├── CWeb/ │ │ ├── mpmathdouble.w │ │ └── sat-life.w │ ├── Cabal Config/ │ │ ├── defaults.cabal │ │ ├── filenames/ │ │ │ ├── cabal.config │ │ │ └── cabal.project │ │ └── line2pdf.cabal │ ├── Caddyfile/ │ │ ├── acmeserver.Caddyfile │ │ └── reverseproxy.caddyfile │ ├── Cadence/ │ │ ├── FlowFees.cdc │ │ ├── FlowToken.cdc │ │ ├── get_balance.cdc │ │ ├── mint_tokens.cdc │ │ ├── read_profile.cdc │ │ └── setup_account.cdc │ ├── Cairo/ │ │ ├── boolean.cairo │ │ ├── cust_struct_vect.cairo │ │ ├── merkle_tree_test.cairo │ │ ├── pizza_factory.cairo │ │ └── rlp.cairo │ ├── Cairo Zero/ │ │ ├── casm.cairo │ │ ├── concat_arr.cairo │ │ ├── contract.cairo │ │ ├── safemath.cairo │ │ └── sha256.cairo │ ├── CameLIGO/ │ │ └── FA1.2.mligo │ ├── Cangjie/ │ │ ├── cube.cj │ │ └── tree.cj │ ├── Carbon/ │ │ ├── Shapes.carbon │ │ └── main.carbon │ ├── CartoCSS/ │ │ └── amenity-points.mss │ ├── Ceylon/ │ │ └── Foo.ceylon │ ├── Chapel/ │ │ ├── distributions.chpl │ │ ├── hello.chpl │ │ ├── lulesh.chpl │ │ ├── nbody.chpl │ │ └── quicksort.chpl │ ├── Charity/ │ │ └── example.ch │ ├── Checksums/ │ │ ├── bsd-style.sha256 │ │ ├── filenames/ │ │ │ ├── SHA256SUMS │ │ │ └── SHA256SUMS.txt │ │ ├── gnu-style-text.sha256 │ │ ├── gnu-style.sha256 │ │ ├── single_hash.crc32 │ │ ├── single_hash.md2 │ │ ├── single_hash.md4 │ │ ├── single_hash.md5 │ │ ├── single_hash.sha1 │ │ ├── single_hash.sha224 │ │ ├── single_hash.sha256 │ │ ├── single_hash.sha384 │ │ ├── single_hash.sha512 │ │ ├── single_hash_dec.crc32 │ │ ├── single_hash_no_trailing_newline.sha256 │ │ ├── zero.sha2 │ │ └── zero.sha3 │ ├── Circom/ │ │ ├── binsum.circom │ │ ├── switcher.circom │ │ └── xor3.circom │ ├── Cirru/ │ │ ├── calcit.cirru │ │ ├── comma.cirru │ │ ├── demo.cirru │ │ ├── folded-beginning.cirru │ │ ├── folding.cirru │ │ ├── html.cirru │ │ ├── indent.cirru │ │ ├── line.cirru │ │ ├── parentheses.cirru │ │ ├── quote.cirru │ │ ├── spaces.cirru │ │ ├── template.cirru │ │ ├── unfolding.cirru │ │ └── webpack.config.cirru │ ├── Clarion/ │ │ ├── CStringClass.clw │ │ ├── ConsoleSupport.clw │ │ ├── HelloWorld.clw │ │ └── hello.clw │ ├── Clarity/ │ │ ├── bns.clar │ │ ├── cost-voting.clar │ │ └── pox.clar │ ├── Classic ASP/ │ │ ├── ASPUnitRunner.asp │ │ └── sendingcontent-xml.asp │ ├── Clean/ │ │ ├── GenHylo.dcl │ │ ├── GenMap.dcl │ │ ├── GenMap.icl │ │ ├── fsieve.icl │ │ ├── sem.icl │ │ ├── stack.dcl │ │ ├── stack.icl │ │ ├── streams.dcl │ │ └── streams.icl │ ├── Click/ │ │ ├── sr2.click │ │ └── thomer-nat.click │ ├── Clojure/ │ │ ├── build.boot │ │ ├── for.clj │ │ ├── hiccup.hic │ │ ├── index.cljs.hl │ │ ├── into-array.cljc │ │ ├── protocol.cljs │ │ ├── rand.cljscm │ │ ├── svg.cljx │ │ ├── unit-test.cl2 │ │ └── validate-and-format.bb │ ├── Closure Templates/ │ │ └── example.soy │ ├── Cloud Firestore Security Rules/ │ │ └── filenames/ │ │ └── firestore.rules │ ├── Clue/ │ │ ├── game.clue │ │ ├── graph.clue │ │ ├── line.clue │ │ ├── main.clue │ │ ├── msgpack.clue │ │ ├── player.clue │ │ └── terminal.clue │ ├── CoNLL-U/ │ │ ├── CF1.conllu │ │ ├── en-ud-test-abridged.conllu │ │ └── ug-ud-test-abridged.conllu │ ├── CodeQL/ │ │ ├── ql-cobol-sample.ql │ │ ├── ql-sample.ql │ │ ├── qll-sample1.qll │ │ ├── qll-sample2.qll │ │ ├── qll-sample3.qll │ │ └── tree-sitter-sample.ql │ ├── CoffeeScript/ │ │ ├── browser.coffee │ │ ├── build.cake │ │ ├── classes.coffee │ │ ├── coffee-script.coffee │ │ ├── example.cjsx │ │ ├── hello.coffee │ │ ├── intro.coffee │ │ ├── lexer.coffee │ │ ├── rack_application.coffee │ │ └── xipd.coffee │ ├── ColdFusion/ │ │ └── example.cfm │ ├── ColdFusion CFC/ │ │ ├── exampleScript.cfc │ │ └── exampleTag.cfc │ ├── Common Lisp/ │ │ ├── array.l │ │ ├── common.l │ │ ├── config.sexp │ │ ├── hello.lisp │ │ ├── macros-advanced.cl │ │ ├── motor-inferencia.cl │ │ ├── rss.sexp │ │ ├── sample.lisp │ │ └── sample.lsp │ ├── Common Workflow Language/ │ │ └── trunk-peak-score.cwl │ ├── Component Pascal/ │ │ ├── Example.cp │ │ └── Example2.cps │ ├── Cooklang/ │ │ ├── advanced_recipe.cook │ │ └── simple_recipe.cook │ ├── Cool/ │ │ ├── list.cl │ │ └── sample.cl │ ├── Creole/ │ │ └── creole.creole │ ├── Crystal/ │ │ ├── const_spec.cr │ │ ├── declare_var_spec.cr │ │ └── transformer.cr │ ├── Csound/ │ │ ├── allglass.orc │ │ ├── interp.orc │ │ └── test.orc │ ├── Csound Document/ │ │ ├── allglass.csd │ │ ├── interp.csd │ │ └── test.csd │ ├── Csound Score/ │ │ ├── allglass.sco │ │ ├── interp.sco │ │ └── test.sco │ ├── Cuda/ │ │ ├── scalarProd_kernel.cuh │ │ └── vectorAdd.cu │ ├── Cue Sheet/ │ │ ├── sample1.cue │ │ └── sample2.cue │ ├── Curry/ │ │ ├── Nat.curry │ │ └── Prelude.curry │ ├── Cycript/ │ │ └── utils.cy │ ├── Cylc/ │ │ ├── cset-include.cylc │ │ ├── cset.cylc │ │ └── model.cylc │ ├── Cypher/ │ │ ├── db_export_res.cypher │ │ ├── graphgems.cyp │ │ ├── graphgems.cypher │ │ └── load_from_json.cypher │ ├── D/ │ │ ├── aa.d │ │ ├── arrayops.d │ │ ├── function.d │ │ ├── hello_world.d │ │ ├── mpq.d │ │ ├── template.d │ │ ├── template_function.d │ │ ├── unittest1.d │ │ └── unittest2.d │ ├── D2/ │ │ ├── anthias-diagram-overview.d2 │ │ └── calc_algo.d2 │ ├── DIGITAL Command Language/ │ │ ├── fis_gtm_kitinstal.com │ │ ├── ghostpdl_zlib_make_vms.com │ │ ├── libxslt_build.com │ │ └── vmsbackup_build.com │ ├── DM/ │ │ └── example.dm │ ├── DNS Zone/ │ │ ├── sample.arpa │ │ └── sneaky.net.zone │ ├── DTrace/ │ │ ├── counts.d │ │ ├── probes.d │ │ └── trace_futexes.d │ ├── Dafny/ │ │ ├── Io.s.dfy │ │ └── Node.i.dfy │ ├── Dart/ │ │ ├── addressbook.pb.dart │ │ ├── addressbook.pbenum.dart │ │ ├── addressbook.pbjson.dart │ │ ├── equals.dart │ │ ├── equals.freezed.dart │ │ └── point.dart │ ├── Daslang/ │ │ ├── ecs.das │ │ └── terrain.das │ ├── DataWeave/ │ │ ├── customInterpolator.dwl │ │ ├── directives.dwl │ │ ├── functions.dwl │ │ ├── literals.dwl │ │ └── match.dwl │ ├── Debian Package Control File/ │ │ ├── example1.dsc │ │ └── example2.dsc │ ├── DenizenScript/ │ │ ├── sample1.dsc │ │ └── sample2.dsc │ ├── Dhall/ │ │ ├── largeExpressionA.dhall │ │ └── remoteSystemsA.dhall │ ├── Diff/ │ │ └── dude-thing-okay--001.patch │ ├── DirectX 3D File/ │ │ └── cube.x │ ├── Dockerfile/ │ │ ├── debian-systemd.Containerfile │ │ └── filenames/ │ │ └── Dockerfile │ ├── Dogescript/ │ │ └── example.djs │ ├── Dotenv/ │ │ └── default.env │ ├── Dune/ │ │ └── filenames/ │ │ └── dune-project │ ├── E/ │ │ ├── Extends.E │ │ ├── Functions.E │ │ ├── Guards.E │ │ ├── IO.E │ │ ├── Promises.E │ │ ├── atomic-updates.E │ │ └── minChat.E │ ├── E-mail/ │ │ └── example.eml │ ├── EBNF/ │ │ ├── grammar.ebnf │ │ ├── material.ebnf │ │ ├── object.ebnf │ │ └── types.ebnf │ ├── ECL/ │ │ └── sample.ecl │ ├── ECLiPSe/ │ │ └── or-constraint.ecl │ ├── EJS/ │ │ ├── admin_index.jst │ │ ├── dash.ejs │ │ ├── email_template.ect │ │ ├── modules.ejs.t │ │ └── page.ejs │ ├── EQ/ │ │ ├── HTTPServerVirtualHostListener.eq │ │ ├── SEButtonEntity.eq │ │ └── String.eq │ ├── Eagle/ │ │ ├── Eagle.brd │ │ └── Eagle.sch │ ├── Earthly/ │ │ └── filenames/ │ │ └── Earthfile │ ├── Easybuild/ │ │ └── bzip2-1.0.6-GCC-4.9.2.eb │ ├── Ecmarkup/ │ │ └── spec.html │ ├── Edge/ │ │ └── pricing.edge │ ├── EdgeQL/ │ │ ├── default.esdl │ │ └── migration.edgeql │ ├── EditorConfig/ │ │ ├── ASP.NET.EditorConfig │ │ ├── IntelliJ.editorconfig │ │ └── filenames/ │ │ └── .editorconfig │ ├── Edje Data Collection/ │ │ └── mild.edc │ ├── Eiffel/ │ │ ├── app_embedded_web_execution.e │ │ ├── app_embedded_web_service.e │ │ ├── application.e │ │ ├── book_collection.e │ │ ├── desktop_app.e │ │ ├── git_checkout_command.e │ │ └── main_window.e │ ├── Elixir/ │ │ ├── atom.ex │ │ ├── float.ex │ │ ├── function.ex │ │ ├── integer.ex │ │ └── regex.ex │ ├── Elm/ │ │ ├── Basic.elm │ │ ├── QuickSort.elm │ │ └── Tree.elm │ ├── Elvish/ │ │ └── epm.elv │ ├── Emacs Lisp/ │ │ ├── .emacs.desktop │ │ ├── dude.el │ │ ├── ess-julia.el │ │ └── filenames/ │ │ ├── .abbrev_defs │ │ ├── .gnus │ │ ├── .spacemacs │ │ ├── .viper │ │ ├── Cask │ │ ├── Eask │ │ ├── Project.ede │ │ ├── _emacs │ │ └── abbrev_defs │ ├── EmberScript/ │ │ └── momentComponent.em │ ├── Erlang/ │ │ ├── 170-os-daemons.es │ │ ├── compiler.app │ │ ├── elixir_parser.yrl │ │ ├── factorial │ │ ├── filenames/ │ │ │ ├── Emakefile │ │ │ └── rebar.config │ │ ├── hello.escript │ │ ├── kernel.app │ │ ├── lfe_scan.xrl │ │ ├── record_helper.erl │ │ ├── record_utils.erl │ │ ├── release │ │ ├── sample.app.src │ │ └── single-context.es │ ├── Euphoria/ │ │ ├── allsorts.ex │ │ ├── animal.ex │ │ ├── csort.ex │ │ ├── debug.e │ │ ├── dll.e │ │ ├── hash.ex │ │ ├── math.e │ │ ├── mydata.ex │ │ ├── regex.e │ │ └── types.e │ ├── F#/ │ │ ├── Combinators.fs │ │ ├── JsonFormat.fs │ │ ├── JsonReader.fs │ │ ├── JsonSerializer.fs │ │ ├── JsonWriter.fs │ │ ├── PerformanceTesters.fs │ │ ├── PerformanceTests.fs │ │ └── sample.fs │ ├── FIGlet Font/ │ │ └── ivrit.flf │ ├── FIRRTL/ │ │ ├── LFSR.fir │ │ └── Memory.fir │ ├── FLUX/ │ │ ├── gameserver.fx │ │ ├── imageserver.fx │ │ ├── mbittorrent.fx │ │ └── test.fx │ ├── Fantom/ │ │ ├── sample1.fan │ │ └── sample2.fan │ ├── Faust/ │ │ ├── FFT.dsp │ │ └── lowCut.dsp │ ├── Fennel/ │ │ ├── repl.fnl │ │ └── utils.fnl │ ├── Filebench WML/ │ │ └── copyfiles.f │ ├── Filterscript/ │ │ ├── colormatrix.fs │ │ └── fs_kernel.fs │ ├── FlatBuffers/ │ │ ├── Message.fbs │ │ └── reflection.fbs │ ├── Flix/ │ │ ├── GameState.flix │ │ ├── Parse.flix │ │ └── TestDisplay.flix │ ├── Fluent/ │ │ ├── call_expressions.ftl │ │ ├── callee_expressions.ftl │ │ ├── gecko_strings.ftl │ │ ├── select_indent.ftl │ │ └── simple.ftl │ ├── Formatted/ │ │ ├── NiAlH_jea.eam.fs │ │ ├── long_seq.for │ │ └── wksst8110.for │ ├── Forth/ │ │ ├── KataDiversion.fth │ │ ├── asm.fr │ │ ├── bitmap.frt │ │ ├── block.fth │ │ ├── core-ext.fth │ │ ├── core.f │ │ ├── core.for │ │ ├── core.fs │ │ ├── core.fth │ │ ├── core1.F │ │ ├── enum.frt │ │ ├── hello-forth.forth │ │ ├── hello-forth.fth │ │ ├── macros.frt │ │ ├── tools.4TH │ │ └── tools.fth │ ├── Fortran/ │ │ ├── bug-185631.f │ │ ├── sample1.f │ │ ├── sample1.for │ │ ├── sample2.f │ │ └── sample3.F │ ├── FreeBASIC/ │ │ ├── WinGUI template.bi │ │ ├── array_clearobj.bas │ │ ├── ir.bas │ │ └── makescript.bas │ ├── FreeMarker/ │ │ ├── blocks-card.ftlh │ │ ├── example.ftl │ │ ├── header.ftlh │ │ └── layout.ftl │ ├── Frege/ │ │ ├── CommandLineClock.fr │ │ ├── Concurrent.fr │ │ ├── Sudoku.fr │ │ └── SwingExamples.fr │ ├── Fstar/ │ │ ├── FStar.DependentMap.fsti │ │ ├── Hacl.HKDF.fst │ │ └── Hacl.Spec.Bignum.Fmul.fst │ ├── Futhark/ │ │ └── gaussian_blur.fut │ ├── G-code/ │ │ ├── duettest.g │ │ ├── ghLogo.cnc │ │ └── square.g │ ├── GAML/ │ │ ├── 3dTutorial.gaml │ │ ├── bdiAgents.gaml │ │ ├── incrementalGIS.gaml │ │ ├── luneraysFlu.gaml │ │ ├── predatorPrey.gaml │ │ └── roadTraffic.gaml │ ├── GAMS/ │ │ └── transport.gms │ ├── GAP/ │ │ ├── Magic.gd │ │ ├── Magic.gi │ │ ├── PackageInfo.g │ │ ├── bugfix.tst │ │ ├── example.gd │ │ ├── example.gi │ │ ├── factor.tst │ │ ├── vspc.gd │ │ └── vspc.gi │ ├── GCC Machine Description/ │ │ └── pdp10.md │ ├── GDB/ │ │ ├── as3.gdbinit │ │ └── gdb_lpc17xx_program.gdb │ ├── GDScript/ │ │ ├── example.gd │ │ ├── grid.gd │ │ ├── player.gd │ │ └── pong.gd │ ├── GDShader/ │ │ ├── dissolve.gdshader │ │ ├── first_shader.gdshader │ │ ├── gaussian_blur.gdshader │ │ ├── include.gdshaderinc │ │ ├── stylized_grass.gdshader │ │ └── toon_water.gdshader │ ├── GEDCOM/ │ │ └── Royal92.ged │ ├── GLSL/ │ │ ├── SimpleLighting.gl2.frag │ │ ├── SyLens.glsl │ │ ├── SyLens.shader │ │ ├── blend_120.glslf │ │ ├── closesthit.rchit │ │ ├── extrude_normals.gs │ │ ├── gbuffers_textured_lit.fsh │ │ ├── gbuffers_textured_lit.vsh │ │ ├── islandScene.glsl │ │ ├── islandScene.shader │ │ ├── main.vs │ │ ├── miss.rmiss │ │ ├── myfragment.frg │ │ ├── myvertex.vrx │ │ ├── pntriangles.tesc │ │ ├── pntriangles.tese │ │ ├── project.vs │ │ ├── recurse1.frag │ │ ├── recurse1.fs │ │ └── shader.fp │ ├── GN/ │ │ ├── BUILD.2.gn │ │ ├── BUILD.3.gn │ │ ├── BUILD.gn │ │ ├── android-rules.gni │ │ ├── clang.gni │ │ ├── filenames/ │ │ │ └── .gn │ │ ├── gcc_toolchain.gni │ │ ├── icu.gn │ │ ├── internal_rules.gni │ │ ├── ios-rules.gni │ │ └── isolate.gni │ ├── GSC/ │ │ ├── _spiderbot_ride.csc │ │ ├── array_override_common.gsc │ │ ├── array_override_common.gsh │ │ ├── math_shared.gsc │ │ ├── struct.gsc │ │ └── zm_init.gsc │ ├── Game Maker Language/ │ │ ├── GMLmenus.gml │ │ ├── _piwikCacheRequest.gml │ │ ├── _piwikSendBasicReq.gml │ │ ├── _piwikSendReq.gml │ │ ├── characterDrawEvent.gml │ │ ├── characterStepEvent.gml │ │ ├── draw_menu.gml │ │ ├── faucet-http.gml │ │ ├── jsonion.gml │ │ ├── jsonion_test.gml │ │ └── scrInitLevel.gml │ ├── Gemini/ │ │ └── instructions.gmi │ ├── Genero 4gl/ │ │ ├── books1.4gl │ │ ├── webserv1.4gl │ │ └── webserv1_api.4gl │ ├── Genero per/ │ │ └── books1.per │ ├── Genie/ │ │ ├── Class.gs │ │ ├── Hello.gs │ │ ├── IDataLoader.gs │ │ └── web.gs │ ├── Gerber Image/ │ │ ├── AGV_GPIO.gml │ │ ├── FelinaePurr-B.Cu.gbl │ │ ├── FelinaePurr-B.Mask.gbs │ │ ├── FelinaePurr-B.SilkS.gbo │ │ ├── FelinaePurr-F.Cu.gtl │ │ ├── FelinaePurr-F.Mask.gts │ │ ├── FelinaePurr-F.Paste.gtp │ │ ├── FelinaePurr-F.SilkS.gto │ │ ├── GOLMain_RevA-B.Paste.gbp │ │ ├── LIDARLite.ncl │ │ ├── nonaprs_contour.gko │ │ ├── simonShield-B.Cu.gbr │ │ ├── simonShield-B.Mask.gbr │ │ ├── simonShield-Edge.Cuts.gbr │ │ ├── simonShield-F.Cu.gbr │ │ ├── simonShield-F.Mask.gbr │ │ ├── simonShield-F.SilkS.gbr │ │ └── simonShield-drl_map.gbr │ ├── Gherkin/ │ │ ├── resources.story │ │ └── tables.feature │ ├── Git Attributes/ │ │ └── filenames/ │ │ └── .gitattributes │ ├── Git Commit/ │ │ └── filenames/ │ │ └── COMMIT_EDITMSG │ ├── Git Config/ │ │ ├── aliases.gitconfig │ │ └── filenames/ │ │ ├── .gitconfig │ │ └── .gitmodules │ ├── Git Revision List/ │ │ └── filenames/ │ │ └── .git-blame-ignore-revs │ ├── Gleam/ │ │ ├── contributor.gleam │ │ └── websocket.gleam │ ├── Glimmer JS/ │ │ ├── class.gjs │ │ └── template-only.gjs │ ├── Glimmer TS/ │ │ ├── class.gts │ │ └── template-only.gts │ ├── Glyph Bitmap Distribution Format/ │ │ └── bitbuntu.bdf │ ├── Gnuplot/ │ │ ├── dashcolor.1.gnu │ │ ├── defense_plotter.p │ │ ├── defense_plotter.plt │ │ ├── histograms.2.gnu │ │ ├── rates.gp │ │ ├── surface1.16.gnu │ │ ├── surface1.17.gnu │ │ └── world2.1.gnu │ ├── Go/ │ │ ├── api.pb.go │ │ ├── embedded.go │ │ ├── gen-go-linguist-thrift.go │ │ └── oapi-codegen.go │ ├── Go Checksums/ │ │ └── filenames/ │ │ ├── go.sum │ │ └── go.work.sum │ ├── Go Module/ │ │ └── filenames/ │ │ └── go.mod │ ├── Go Template/ │ │ ├── _helpers.tpl │ │ ├── _templates.gotmpl │ │ ├── base.tpl │ │ ├── batch.gohtml │ │ ├── crd.tmpl │ │ ├── letter.tmpl │ │ └── prettier.html.tmpl │ ├── Go Workspace/ │ │ └── filenames/ │ │ └── go.work │ ├── Godot Resource/ │ │ ├── Main.tscn │ │ ├── Server.gdns │ │ ├── default.tres │ │ ├── filenames/ │ │ │ └── project.godot │ │ └── signals_library.gdnlib │ ├── Golo/ │ │ ├── adapters.golo │ │ ├── async.golo │ │ ├── augmentations.golo │ │ ├── closures.golo │ │ ├── coin-change.golo │ │ ├── collection-literals.golo │ │ ├── context-decorator.golo │ │ ├── decorators.golo │ │ ├── dynamic-evaluation.golo │ │ ├── dynamic-object-person.golo │ │ ├── echo-args.golo │ │ ├── enums-thread-state.golo │ │ ├── fibonacci.golo │ │ ├── helloworld.golo │ │ ├── http-server.golo │ │ ├── logdeco.golo │ │ ├── matching-operator.golo │ │ ├── max-int.golo │ │ ├── memoize.golo │ │ ├── null-safety.golo │ │ ├── prepost-decorators.golo │ │ ├── structs.golo │ │ ├── swing-actionlistener.golo │ │ ├── swing-helloworld.golo │ │ ├── templates-chat-webapp.golo │ │ ├── util-containers.golo │ │ └── workers.golo │ ├── Gosu/ │ │ ├── Hello.gst │ │ ├── Hello.gsx │ │ ├── Person.gs │ │ ├── Ronin.gs │ │ └── hello.vark │ ├── Grace/ │ │ ├── ackerman_function.grace │ │ └── grace_IDE.grace │ ├── Gradle/ │ │ ├── build.gradle │ │ └── builder.gradle │ ├── Gradle Kotlin DSL/ │ │ └── build.gradle.kts │ ├── Grammatical Framework/ │ │ ├── Foods.gf │ │ ├── FoodsAfr.gf │ │ ├── FoodsAmh.gf │ │ ├── FoodsBul.gf │ │ ├── FoodsCat.gf │ │ ├── FoodsChi.gf │ │ ├── FoodsCze.gf │ │ ├── FoodsDut.gf │ │ ├── FoodsEng.gf │ │ ├── FoodsEpo.gf │ │ ├── FoodsFin.gf │ │ ├── FoodsFre.gf │ │ ├── FoodsGer.gf │ │ ├── FoodsHeb.gf │ │ ├── FoodsHin.gf │ │ ├── FoodsI.gf │ │ ├── FoodsIce.gf │ │ ├── FoodsIta.gf │ │ ├── FoodsJpn.gf │ │ ├── FoodsLav.gf │ │ ├── FoodsMlt.gf │ │ ├── FoodsMon.gf │ │ ├── FoodsNep.gf │ │ ├── FoodsOri.gf │ │ ├── FoodsPes.gf │ │ ├── FoodsPor.gf │ │ ├── FoodsRon.gf │ │ ├── FoodsSpa.gf │ │ ├── FoodsSwe.gf │ │ ├── FoodsTha.gf │ │ ├── FoodsTsn.gf │ │ ├── FoodsTur.gf │ │ ├── FoodsUrd.gf │ │ ├── LexFoods.gf │ │ ├── LexFoodsCat.gf │ │ ├── LexFoodsFin.gf │ │ ├── LexFoodsGer.gf │ │ ├── LexFoodsIta.gf │ │ ├── LexFoodsSwe.gf │ │ ├── ResCze.gf │ │ └── transFoodsHin.gf │ ├── Graph Modeling Language/ │ │ ├── sample.gml │ │ ├── sample2.gml │ │ └── sample3.gml │ ├── GraphQL/ │ │ ├── kitchen-sink.graphql │ │ ├── schema-kitchen-sink.graphql │ │ ├── schema-kitchen-sink.graphqls │ │ └── schema.graphqls │ ├── Graphviz (DOT)/ │ │ ├── annoying.DOT │ │ └── sample.dot │ ├── Groovy/ │ │ ├── build.gvy │ │ ├── filenames/ │ │ │ └── Jenkinsfile │ │ ├── groovy │ │ ├── script.gvy │ │ ├── template.grt │ │ └── template.gtpl │ ├── Groovy Server Pages/ │ │ ├── bar.gsp │ │ ├── hello-pagedirective.gsp │ │ ├── hello-resources.gsp │ │ └── hello-var.gsp │ ├── HAProxy/ │ │ ├── haproxy.cfg │ │ ├── haproxy2.cfg │ │ ├── haproxy3.cfg │ │ └── haproxy4.cfg │ ├── HCL/ │ │ ├── example.hcl │ │ ├── example.nomad │ │ ├── example.tf │ │ ├── example.tofu │ │ ├── main.tf │ │ ├── main.workflow │ │ └── terraform.tfvars │ ├── HIP/ │ │ └── MatrixMultiplication.hip │ ├── HLSL/ │ │ ├── accelerated_surface_win.hlsl │ │ ├── bloom.cginc │ │ ├── corridor.fx │ │ ├── jellyfish.fx │ │ └── noise.fx │ ├── HOCON/ │ │ ├── application.hocon │ │ ├── filenames/ │ │ │ ├── .scalafix.conf │ │ │ └── .scalafmt.conf │ │ └── stream-collector.hocon │ ├── HTML/ │ │ ├── Crear_logo.hta │ │ ├── example.xht │ │ ├── index.html.hl │ │ ├── pages.html │ │ ├── pkgdown.html │ │ ├── rpanel.inc │ │ ├── tailDel.inc │ │ └── wehaveoddjobs.hta │ ├── HTML+ECR/ │ │ └── greeting.ecr │ ├── HTML+EEX/ │ │ ├── index.html.eex │ │ ├── live_component.html.heex │ │ └── live_component.html.leex │ ├── HTML+ERB/ │ │ ├── fishbowl.html.erb.deface │ │ ├── index.html.erb │ │ └── index.rhtml │ ├── HTML+Razor/ │ │ ├── Index.cshtml │ │ └── Index.razor │ ├── HXML/ │ │ ├── checkstyle.hxml │ │ └── vshaxe.hxml │ ├── Hack/ │ │ ├── Assert.hh │ │ ├── AssertRecipe.hh │ │ ├── Controller.hh │ │ ├── DBResultRecipe.hh │ │ ├── Documentation.hh │ │ ├── FakeDB.hh │ │ ├── GetAndPostRecipe.hh │ │ ├── GetController.hh │ │ ├── HomeController.hh │ │ ├── Map.hhi │ │ ├── MySecureRequest.hh │ │ ├── Nav.hh │ │ ├── NonStrictFile.hh │ │ ├── Recipe.hh │ │ ├── RecipeWithDemo.hh │ │ ├── Request.hh │ │ ├── StandardPage.hh │ │ ├── StrictFile.hh │ │ ├── UnescapedString.hh │ │ ├── UnescapedStringRecipe.hh │ │ ├── UserID.hh │ │ ├── UserIDRecipe.hh │ │ ├── UsingUserID.hh │ │ ├── error.hh │ │ ├── first.hack │ │ ├── funs.hh │ │ ├── funs.php │ │ ├── index.hh │ │ ├── phpfile.hh │ │ └── startup.hh │ ├── Haml/ │ │ ├── buttons.html.haml.deface │ │ └── hello.haml │ ├── Handlebars/ │ │ ├── basic.handlebars │ │ └── each.hbs │ ├── Hare/ │ │ ├── contains.ha │ │ ├── iter.ha │ │ └── types.ha │ ├── Haskell/ │ │ ├── Hello.hs │ │ ├── HsColour.hs │ │ ├── Main.hs │ │ ├── Sudoku.hs │ │ └── maze-solving.hs │ ├── HiveQL/ │ │ ├── mi.q │ │ └── query.hql │ ├── HolyC/ │ │ ├── GrAsm.HC │ │ ├── OnceDemo.HC │ │ ├── Prompt.HC │ │ ├── RandDemo.HC │ │ └── Spy.HC │ ├── Hosts File/ │ │ └── filenames/ │ │ ├── hosts │ │ └── hosts.txt │ ├── Hurl/ │ │ ├── assert.hurl │ │ ├── body.hurl │ │ ├── capture-data.hurl │ │ └── request-headers.hurl │ ├── Hy/ │ │ ├── fibonacci.hy │ │ ├── fizzbuzz │ │ └── hello-world.hy │ ├── HyPhy/ │ │ ├── AAModelComparison.bf │ │ ├── CodonModelCompare.bf │ │ ├── MFPositiveSelection.bf │ │ ├── MatrixIndexing.bf │ │ ├── MolecularClock.bf │ │ ├── dNdSDistributionComparison.bf │ │ ├── hyphy_cmds.bf │ │ └── profile_test.bf │ ├── IDL/ │ │ ├── amespahdbidlsuite_spectrum__define.pro │ │ ├── mg_acosh.pro │ │ ├── mg_analysis.dlm │ │ ├── mg_gcd.pro │ │ └── mg_trunc.pro │ ├── IGOR Pro/ │ │ ├── CodeBrowser.ipf │ │ ├── functions.ipf │ │ └── generic.ipf │ ├── INI/ │ │ ├── MouseKeyboard.pro │ │ ├── TOVR.dof │ │ ├── defaults.properties │ │ ├── filenames/ │ │ │ ├── .buckconfig │ │ │ ├── .coveragerc │ │ │ ├── .flake8 │ │ │ ├── .pylintrc │ │ │ ├── buildozer.spec │ │ │ ├── hosts │ │ │ ├── pylintrc │ │ │ └── vlcrc │ │ ├── metrics.frm │ │ ├── ms.cfg │ │ ├── ms.properties │ │ ├── my.cnf │ │ ├── openssl.cnf │ │ ├── spyder_website.lektorproject │ │ └── ultimate-temp-controller.pro │ ├── ISPC/ │ │ ├── VideoFunctions.ispc │ │ ├── program_city.ispc │ │ └── volume.ispc │ ├── Idris/ │ │ └── Chars.idr │ ├── Ignore List/ │ │ ├── Finale.gitignore │ │ └── filenames/ │ │ ├── .atomignore │ │ ├── .babelignore │ │ ├── .bzrignore │ │ ├── .coffeelintignore │ │ ├── .cvsignore │ │ ├── .dockerignore │ │ ├── .easignore │ │ ├── .eleventyignore │ │ ├── .eslintignore │ │ ├── .gitignore │ │ ├── .ignore │ │ ├── .markdownlintignore │ │ ├── .nodemonignore │ │ ├── .npmignore │ │ ├── .prettierignore │ │ ├── .stylelintignore │ │ ├── .vercelignore │ │ ├── .vscodeignore │ │ ├── gitignore-global │ │ └── gitignore_global │ ├── ImageJ Macro/ │ │ ├── batch of ratiometric FRET using IO settings.ijm │ │ └── simple.ijm │ ├── Imba/ │ │ └── main.imba │ ├── Inform 7/ │ │ ├── Trivial Extension.i7x │ │ └── story.ni │ ├── Ink/ │ │ ├── murder_scene.ink │ │ ├── print_number.ink │ │ ├── seen_this_scene.ink │ │ ├── string_to_list.ink │ │ └── thread_in_tunnel.ink │ ├── Inno Setup/ │ │ ├── Default.isl │ │ └── expat.iss │ ├── Ioke/ │ │ └── hello.ik │ ├── Isabelle/ │ │ └── HelloWorld.thy │ ├── Isabelle ROOT/ │ │ └── filenames/ │ │ └── ROOT │ ├── J/ │ │ ├── hashbang │ │ └── stwij.ijs │ ├── JAR Manifest/ │ │ └── filenames/ │ │ └── MANIFEST.MF │ ├── JCL/ │ │ ├── IEBCOPY.jcl │ │ ├── IEFBR14.jcl │ │ └── IKJEFT01.jcl │ ├── JFlex/ │ │ ├── LexScan.flex │ │ └── java.jflex │ ├── JSON/ │ │ ├── 2ea73365-b6f1-4bd1-a454-d57a67e50684.yy │ │ ├── 4DPopGit.4DProject │ │ ├── GMS2_Project.yyp │ │ ├── Git Commit.JSON-tmLanguage │ │ ├── Material_Alpha_01.gltf │ │ ├── VCT.yy │ │ ├── block-sync-counter8.ice │ │ ├── code-scanning.sarif │ │ ├── filenames/ │ │ │ ├── .all-contributorsrc │ │ │ ├── .arcconfig │ │ │ ├── .htmlhintrc │ │ │ ├── .imgbotconfig │ │ │ ├── .tern-config │ │ │ ├── .tern-project │ │ │ ├── .watchmanconfig │ │ │ ├── Package.resolved │ │ │ └── mcmod.info │ │ ├── form.4DForm │ │ ├── geo.geojson │ │ ├── google-services.json.example │ │ ├── http_response.avsc │ │ ├── landing.tact │ │ ├── manifest.webapp │ │ ├── manifest.webmanifest │ │ ├── pack.mcmeta │ │ ├── person.json │ │ ├── product.json │ │ ├── recording.har │ │ ├── schema.json │ │ ├── small.tfstate │ │ ├── switzerland.topojson │ │ └── terraform.tfstate.backup │ ├── JSON with Comments/ │ │ ├── AMPL.sublime-build │ │ ├── CLIPS.sublime-settings │ │ ├── Context.sublime-menu │ │ ├── Dart.sublime-commands │ │ ├── Dart.sublime-project │ │ ├── Default (Linux).sublime-mousemap │ │ ├── Default.sublime-keymap │ │ ├── JavaDoc Add Line.sublime-macro │ │ ├── Mariana.sublime-color-scheme │ │ ├── RunBuild.sublime-macro │ │ ├── SourcePawn.sublime-build │ │ ├── Tubnil.sublime-theme │ │ ├── coc.jsonc │ │ ├── filenames/ │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── .jscsrc │ │ │ ├── .jshintrc │ │ │ ├── .jslintrc │ │ │ ├── .oxlintrc.json │ │ │ ├── .swcrc │ │ │ ├── devcontainer.json │ │ │ ├── jsconfig.json │ │ │ ├── language-configuration.json │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── jade.sublime-completions │ │ ├── jest.tsconfig.json │ │ ├── plyr.code-workspace │ │ └── vue.code-snippets │ ├── JSON5/ │ │ ├── example.json5 │ │ └── package.json5 │ ├── JSONLD/ │ │ └── sample.jsonld │ ├── JSONiq/ │ │ ├── detail.jq │ │ └── query.jq │ ├── Jac/ │ │ ├── littleX.impl.jac │ │ ├── littleX.jac │ │ ├── littleX.test.jac │ │ ├── smart-learning-companion.cl.jac │ │ └── task_manager.jac │ ├── Jai/ │ │ ├── cte.jai │ │ └── ifx.jai │ ├── Janet/ │ │ ├── lazyseqs.janet │ │ ├── life.janet │ │ └── tarray.janet │ ├── Jasmin/ │ │ ├── if1.j │ │ ├── if2.j │ │ ├── if3.j │ │ ├── if4.j │ │ ├── op1.j │ │ ├── op2.j │ │ ├── op3.j │ │ └── op4.j │ ├── Java/ │ │ ├── FieldGen.jsh │ │ ├── GrammarKit.java │ │ ├── HtmlDomParserContext.java │ │ ├── Hudson.java │ │ ├── JFlexLexer.java │ │ ├── NokogiriService.java │ │ ├── ProtocolBuffer.java │ │ ├── clojure-type.java │ │ ├── clojure-util.java │ │ ├── gen-java-linguist-thrift.java │ │ └── generated-jooq-table.java │ ├── Java Properties/ │ │ ├── libraries.properties │ │ └── sounds.properties │ ├── Java Template Engine/ │ │ └── baseLayout.jte │ ├── JavaScript/ │ │ ├── axios.es │ │ ├── bootstrap-modal.js │ │ ├── ccalc-lex.js │ │ ├── ccalc-parse.js │ │ ├── chart_composers.gs │ │ ├── classes-old.js │ │ ├── classes.js │ │ ├── constant_fold.mjs │ │ ├── dude.js │ │ ├── entry.mjs │ │ ├── gen-js-linguist-thrift.js │ │ ├── hello.js │ │ ├── helloHanaEndpoint.xsjs │ │ ├── helloHanaMath.xsjslib │ │ ├── http.js │ │ ├── index.es │ │ ├── intro-old.js │ │ ├── intro.js │ │ ├── intro.js.frag │ │ ├── itau.gs │ │ ├── jquery-1.6.1.js │ │ ├── jquery-1.7.2.js │ │ ├── js │ │ ├── js2 │ │ ├── jsbuild.jsb │ │ ├── json2_backbone.js │ │ ├── logo.jscad │ │ ├── merge.js │ │ ├── modernizr.js │ │ ├── module.mjs │ │ ├── namespace.js │ │ ├── outro.js.frag │ │ ├── parser.js │ │ ├── proto.js │ │ ├── run │ │ ├── sample.jsx │ │ ├── steelseries-min.js │ │ └── uglify.js │ ├── JavaScript+ERB/ │ │ └── create.js.erb │ ├── Jest Snapshot/ │ │ └── css.test.tsx.snap │ ├── JetBrains MPS/ │ │ ├── baselanguage.mpl │ │ ├── field_table.mps │ │ ├── model.mps │ │ └── sandbox.msd │ ├── Jinja/ │ │ ├── home.j2 │ │ └── worker.jinja2 │ ├── Jison/ │ │ ├── ansic.jison │ │ ├── classy.jison │ │ └── lex.jison │ ├── Jison Lex/ │ │ ├── classy.jisonlex │ │ └── lex_grammar.jisonlex │ ├── Jolie/ │ │ ├── common.iol │ │ ├── exam.ol │ │ ├── examiner.ol │ │ ├── hanoi.ol │ │ └── student.ol │ ├── Jsonnet/ │ │ └── intersection.jsonnet │ ├── Julia/ │ │ ├── julia │ │ └── stockcorr.jl │ ├── Jupyter Notebook/ │ │ └── JupyterNotebook.ipynb │ ├── Just/ │ │ ├── filenames/ │ │ │ └── Justfile │ │ └── kitchen-sink.just │ ├── KCL/ │ │ ├── complex.k │ │ └── simple.k │ ├── KDL/ │ │ ├── Cargo.kdl │ │ ├── ci.kdl │ │ ├── niri.kdl │ │ ├── nuget.kdl │ │ ├── system76-scheduler.kdl │ │ ├── website.kdl │ │ └── zellij.kdl │ ├── KFramework/ │ │ ├── sample1.k │ │ └── sample2.k │ ├── KRL/ │ │ └── helloworld.krl │ ├── Kaitai Struct/ │ │ ├── iso9660.ksy │ │ └── zip.ksy │ ├── KakouneScript/ │ │ ├── c-family.kak │ │ ├── doc.kak │ │ └── filenames/ │ │ └── kakrc │ ├── KerboScript/ │ │ ├── hoverslam.ks │ │ ├── launch.ks │ │ └── lib_pid.ks │ ├── KiCad Layout/ │ │ ├── C_Disc_D3_P2.5.kicad_mod │ │ ├── Conn_Poncho_SinBorde.kicad_mod │ │ ├── Fiducial_1mm.kicad_mod │ │ ├── LED-5MM.kicad_mod │ │ ├── Logo_OSHWA.kicad_mod │ │ ├── Logo_Poncho.kicad_mod │ │ ├── MagneticBuzzer_ProSignal_ABT-410-RC.kicad_mod │ │ ├── Pin_Header_Straight_2x02.kicad_mod │ │ ├── Pin_Header_Straight_2x20.kicad_mod │ │ ├── Resistor_Horizontal_RM7mm.kicad_mod │ │ ├── SW_PUSH_SMALL.kicad_mod │ │ ├── TO-92_Molded_Narrow.kicad_mod │ │ ├── filenames/ │ │ │ └── fp-lib-table │ │ ├── kivicad.kicad_wks │ │ ├── nrf-bga.kicad_pcb │ │ └── simonShield.kicad_pcb │ ├── KiCad Legacy Layout/ │ │ └── tc14badge.brd │ ├── KiCad Schematic/ │ │ ├── Regulator_Current.kicad_sym │ │ ├── Volume.sch │ │ ├── buttons.sch │ │ ├── buzzer.sch │ │ ├── ciaaConector.sch │ │ ├── gedda-junk.sch │ │ ├── rpi-cm4-carrier-template.kicad_sch │ │ └── ultimate-temp-controller.sch │ ├── Kickstart/ │ │ ├── fedora-32-live-jam-xfce-pipewire.ks │ │ ├── mysql.ks │ │ └── sample_end.ks │ ├── Kit/ │ │ └── demo.kit │ ├── KoLmafia ASH/ │ │ ├── newDG.ash │ │ └── tt_kingliberated.ash │ ├── Koka/ │ │ ├── community-docs.kk │ │ ├── official-tutorial1.kk │ │ └── official-tutorial2.kk │ ├── Kotlin/ │ │ └── Foo.kt │ ├── Kusto/ │ │ ├── application_consent_or_assignment.kql │ │ ├── example-create-sflogs-table.csl │ │ ├── examples_traces.csl │ │ └── kusto-example-queries.csl │ ├── LFE/ │ │ ├── church.lfe │ │ ├── gps1.lfe │ │ ├── mnesia_demo.lfe │ │ └── object.lfe │ ├── LOLCODE/ │ │ └── LOLTracer.lol │ ├── LSL/ │ │ ├── LSL.lsl │ │ └── LSL.lslp │ ├── LTspice Symbol/ │ │ └── random-shapes.asy │ ├── LabVIEW/ │ │ ├── Actor Framework Fundamentals.lvproj │ │ ├── Coffee Shop.lvlib │ │ ├── Customer.lvlib │ │ ├── Malleable VIs - Nested Malleable VIs.lvproj │ │ ├── Malleable VIs Basics.lvproj │ │ ├── PL Modbus Client.lvclass │ │ ├── Person.lvlib │ │ ├── Temperature Monitoring.lvproj │ │ ├── Word Finder.lvproj │ │ ├── Work Dispatcher.lvlib │ │ └── Worker.lvlib │ ├── Lambdapi/ │ │ ├── List.lp │ │ └── tutorial.lp │ ├── Langium/ │ │ ├── ox.langium │ │ ├── treemap.langium │ │ └── zmodel.langium │ ├── Lark/ │ │ ├── ebl_atf.lark │ │ ├── ebl_atf_common.lark │ │ └── lark.lark │ ├── Lasso/ │ │ ├── json.lasso │ │ ├── json.lasso9 │ │ └── knop.las │ ├── Latte/ │ │ ├── layout.latte │ │ └── template.latte │ ├── Lean/ │ │ ├── binary.lean │ │ └── set.hlean │ ├── Lean 4/ │ │ └── BirthdayProblem.lean │ ├── Leo/ │ │ ├── fibonacci.leo │ │ ├── groups.leo │ │ ├── twoadicity.leo │ │ └── vote.leo │ ├── Less/ │ │ └── screen.less │ ├── Lex/ │ │ ├── filenames/ │ │ │ └── Lexer.x │ │ └── zend_ini_scanner.l │ ├── LigoLANG/ │ │ └── FA1.2.ligo │ ├── Limbo/ │ │ ├── cat.b │ │ ├── lock.b │ │ └── lock.m │ ├── Linear Programming/ │ │ ├── Multiobj.lp │ │ └── diet.lp │ ├── Linker Script/ │ │ ├── filenames/ │ │ │ └── ld.script │ │ ├── inject.x │ │ ├── link.ld │ │ └── vmlinux.lds │ ├── Linux Kernel Module/ │ │ ├── bcm4334x.mod │ │ ├── mbcache.mod │ │ └── md5.mod │ ├── Liquid/ │ │ ├── layout.liquid │ │ └── template.liquid │ ├── Literate Agda/ │ │ └── NatCat.lagda │ ├── Literate CoffeeScript/ │ │ ├── pixi.coffee.md │ │ └── scope.litcoffee │ ├── LiveCode Script/ │ │ ├── colorToRGB.livecodescript │ │ ├── hideFolder.livecodescript │ │ ├── longIdAllControls.livecodescript │ │ └── minifyScript.livecodescript │ ├── LiveScript/ │ │ └── hello.ls │ ├── Logos/ │ │ ├── NCHax.x │ │ ├── NoCarrier.x │ │ ├── Tweak.x │ │ ├── example.xm │ │ └── string1.x │ ├── Logtalk/ │ │ └── foo.lgt │ ├── LookML/ │ │ ├── comments.view.lookml │ │ ├── example.model.lkml │ │ └── example.view.lkml │ ├── LoomScript/ │ │ ├── HelloWorld.ls │ │ └── SyntaxExercise.ls │ ├── Lua/ │ │ ├── filenames/ │ │ │ └── .luacheckrc │ │ ├── h-counter.pd_lua │ │ ├── luatexts-0.1.2-1.rockspec │ │ ├── treegen.p8 │ │ ├── vidya-file-list-parser.pd_lua │ │ ├── vidya-file-modder.pd_lua │ │ └── wsapi.fcgi │ ├── Luau/ │ │ ├── EnumList.luau │ │ ├── Option.luau │ │ ├── Symbol.luau │ │ ├── Tree.luau │ │ └── ser.luau │ ├── M/ │ │ ├── Comment.m │ │ ├── GMRGPNB0.m │ │ ├── MDB.m │ │ ├── PRCAAPR.m │ │ ├── PXAI.m │ │ ├── WVBRNOT.m │ │ ├── ZDIOUT1.m │ │ ├── _zewdAPI.m │ │ ├── _zewdDemo.m │ │ ├── arrays.m │ │ ├── base64.m │ │ ├── digest.m │ │ ├── dynamicscoping.m │ │ ├── fibonacci.m │ │ ├── forloop.m │ │ ├── functions.m │ │ ├── helloworld.m │ │ ├── ifelse.m │ │ ├── indirectfunctions.m │ │ ├── md5.m │ │ ├── mileage.m │ │ ├── mumtris.m │ │ ├── nesting.m │ │ ├── pcre.m │ │ ├── pcreexamples.m │ │ ├── postconditional.m │ │ ├── primes.m │ │ ├── url.m │ │ └── zmwire.m │ ├── M3U/ │ │ ├── Bolt Thrower - Those Once Loyal.m3u │ │ ├── M+.m3u8 │ │ ├── au.m3u │ │ └── gn.m3u │ ├── M4/ │ │ ├── fibo.m4 │ │ ├── htmlgen.m4 │ │ ├── postscript.m4 │ │ ├── sendmail.mc │ │ └── translit2.m4 │ ├── M4Sugar/ │ │ ├── ax_ruby_devel.m4 │ │ ├── filenames/ │ │ │ └── configure.ac │ │ └── list.m4 │ ├── MATLAB/ │ │ ├── Check_plot.m │ │ ├── FTLEH.m │ │ ├── FTLE_reg.m │ │ ├── Integrate1.m │ │ ├── Integrate2.m │ │ ├── Lagr.m │ │ ├── Lagrangian_points.m │ │ ├── Poincare.m │ │ ├── RK4.m │ │ ├── Traj.m │ │ ├── adapting_structural_model.m │ │ ├── average.m │ │ ├── bicycle_state_space.m │ │ ├── convert_variable.m │ │ ├── create_ieee_paper_plots.m │ │ ├── cross_validation.m │ │ ├── distance.m │ │ ├── double_gyre.m │ │ ├── example.m │ │ ├── fit_adapt.m │ │ ├── fit_adapt_linear.m │ │ ├── gpu_RKF45_FILE.m │ │ ├── ieee.m │ │ ├── lane_change.m │ │ ├── load_bikes.m │ │ ├── load_data.m │ │ ├── make_filter.m │ │ ├── matlab_class.m │ │ ├── matlab_function.m │ │ ├── matlab_script.m │ │ ├── matlab_script2.m │ │ ├── normalize.m │ │ ├── overwrite_settings.m │ │ ├── par_text_to_struct.m │ │ ├── plant.m │ │ ├── test_rk_par.m │ │ ├── test_system_state_space.m │ │ ├── varargin_to_structure.m │ │ └── write_gains.m │ ├── MAXScript/ │ │ ├── macro-1.mcr │ │ ├── macro-2.mcr │ │ ├── rolloutCreator.ms │ │ ├── svg-renderer.ms │ │ └── volume-calc.ms │ ├── MDX/ │ │ └── sample.mdx │ ├── MLIR/ │ │ ├── const-fold.mlir │ │ ├── core-ops.mlir │ │ ├── executor_to_control_dialect.mlir │ │ └── sample.mlir │ ├── MQL4/ │ │ ├── header-sample.mqh │ │ ├── indicator-sample.mq4 │ │ └── script-sample.mq4 │ ├── MQL5/ │ │ ├── Regex.mqh │ │ ├── indicator-sample.mq5 │ │ └── script-sample.mq5 │ ├── MTML/ │ │ └── categories_to_columns.mtml │ ├── MUF/ │ │ ├── 39.m │ │ └── cmd-say.muf │ ├── Macaulay2/ │ │ └── FGLM.m2 │ ├── Makefile/ │ │ ├── file-icons.make │ │ ├── filenames/ │ │ │ ├── BSDmakefile │ │ │ ├── Kbuild │ │ │ ├── Makefile │ │ │ ├── Makefile.boot │ │ │ ├── Makefile.frag │ │ │ ├── Makefile.inc │ │ │ ├── Makefile.wat │ │ │ ├── makefile.sco │ │ │ └── mkfile │ │ ├── foo.o.d │ │ └── makefile │ ├── Markdown/ │ │ ├── README.mdown │ │ ├── bunyan.1.ronn │ │ ├── csharp6.workbook │ │ ├── filenames/ │ │ │ └── contents.lr │ │ ├── livebook.livemd │ │ ├── minimal.md │ │ ├── ronn-format.7.ronn │ │ ├── ronn.1.ronn │ │ ├── sway.5.scd │ │ └── tender.md │ ├── Marko/ │ │ ├── counter.marko │ │ ├── hello.marko │ │ └── rgb-sliders.marko │ ├── Mask/ │ │ └── view.mask │ ├── Mathematical Programming System/ │ │ ├── advanced-problem.mps │ │ └── afiro.mps │ ├── Maven POM/ │ │ └── filenames/ │ │ └── pom.xml │ ├── Max/ │ │ ├── Hello.maxhelp │ │ ├── Hello.maxpat │ │ └── Hello.mxt │ ├── MeTTa/ │ │ ├── a2_opencoggy.metta │ │ ├── baseline_formulation.metta │ │ ├── blocks-i-0.metta │ │ └── schemes.metta │ ├── Mercury/ │ │ ├── code_info.m │ │ ├── expr.moo │ │ ├── hello.m │ │ ├── options.m │ │ ├── polymorphism.m │ │ ├── rot13_concise.m │ │ ├── rot13_ralph.m │ │ ├── rot13_verbose.m │ │ ├── store.m │ │ └── switch_detection_bug.m │ ├── Mermaid/ │ │ ├── c4c-diagram.mermaid │ │ ├── class-diagram.mermaid │ │ ├── er-diagram.mmd │ │ ├── flowchart.mmd │ │ ├── gantt.mmd │ │ ├── gitgraph.mmd │ │ ├── pie-chart.mermaid │ │ ├── requirement-diagram.mermaid │ │ ├── sequence-diagram.mmd │ │ ├── state-diagram.mmd │ │ └── user-journey.mmd │ ├── Meson/ │ │ └── filenames/ │ │ ├── meson.build │ │ └── meson_options.txt │ ├── Metal/ │ │ └── ITMVisualisationEngine.metal │ ├── Microsoft Developer Studio Project/ │ │ └── freeglut.dsp │ ├── Microsoft Visual Studio Solution/ │ │ └── Radiant.sln │ ├── MiniYAML/ │ │ ├── chrome.yaml │ │ ├── cursor.yaml │ │ ├── mainmenu.yaml │ │ ├── metrics.yaml │ │ ├── metrics.yml │ │ ├── mod.yaml │ │ ├── notifications.yaml │ │ ├── rules.yaml │ │ └── tileset.yaml │ ├── MiniZinc/ │ │ ├── carpet_cutting.mzn │ │ └── project_scheduling.mzn │ ├── MiniZinc Data/ │ │ ├── pantry.dzn │ │ └── placement.dzn │ ├── Mint/ │ │ ├── ApplicationStore.mint │ │ ├── Comment.mint │ │ ├── Counter.mint │ │ ├── HeaderTest.mint │ │ ├── InlineJS.mint │ │ └── TodoItem.mint │ ├── Modelica/ │ │ ├── NestedPackages.mo │ │ ├── NewtonCooling.mo │ │ ├── Pendulum.mo │ │ ├── RLC.mo │ │ ├── SecondOrderSystem.mo │ │ ├── System.mo │ │ ├── Translational.mo │ │ ├── modelica.mo │ │ ├── package.mo │ │ ├── package2.mo │ │ ├── package3.mo │ │ └── package4.mo │ ├── Modula-2/ │ │ └── HuffChan.mod │ ├── Modula-3/ │ │ ├── DiGraph.ig │ │ ├── DiGraph.mg │ │ ├── Rd.i3 │ │ ├── Rd.m3 │ │ └── RdClass.i3 │ ├── Module Management System/ │ │ ├── descrip.mms │ │ ├── openvms.mmk │ │ ├── simh_descrip.mms │ │ ├── spline_descrip.mms │ │ └── xv_makefile.mms │ ├── Mojo/ │ │ ├── Bool.mojo │ │ └── Matmul.mojo │ ├── Monkey/ │ │ ├── encodeToPng.monkey2 │ │ ├── example.monkey │ │ ├── example.monkey2 │ │ ├── gui.monkey2 │ │ └── sorting.monkey2 │ ├── Monkey C/ │ │ └── VesselModel.mc │ ├── Moocode/ │ │ ├── hello.moo │ │ ├── moocode_toolkit.moo │ │ └── toy.moo │ ├── MoonBit/ │ │ ├── cfold.mbt │ │ ├── deriv.mbt │ │ ├── fft.mbt │ │ ├── nqueens.mbt │ │ └── rbtree.mbt │ ├── MoonScript/ │ │ └── transform.moon │ ├── Motoko/ │ │ ├── erc20.mo │ │ └── queue.mo │ ├── Motorola 68K Assembly/ │ │ ├── bls_routines.inc │ │ ├── cpu.s │ │ ├── iff_ilbm.i │ │ ├── lz4.X68 │ │ ├── rom_testbench.asm │ │ └── system.s │ ├── Move/ │ │ ├── Main.move │ │ └── Vector.move │ ├── Muse/ │ │ ├── manual.muse │ │ └── usage.muse │ ├── Mustache/ │ │ ├── csvrow.mustache │ │ ├── deleteuser.mustache │ │ ├── pupilinfoblock.mustache │ │ └── showallusers.mustache │ ├── NASL/ │ │ ├── bugbear_b.nasl │ │ ├── cmsimple_guestbook_xss.nasl │ │ ├── cmsimple_search_xss.nasl │ │ ├── cubecart_xss.nasl │ │ ├── data_mail_xss.nasl │ │ ├── hacker_defender.nasl │ │ ├── nmap.nasl │ │ ├── packeteer_web_login.nasl │ │ ├── smtp_func.inc │ │ └── tftp_func.inc │ ├── NCL/ │ │ ├── PrnOscPat_driver.ncl │ │ ├── WRF_static_2.ncl │ │ ├── WRF_track_1.ncl │ │ ├── cosmolib_1.ncl │ │ ├── cru_8.ncl │ │ ├── gsn_csm_xy2_time_series_inputs.ncl │ │ ├── hdf4sds_7.ncl │ │ ├── mask_12.ncl │ │ ├── mcsst_1.ncl │ │ ├── topo_9.ncl │ │ ├── traj_3.ncl │ │ ├── tsdiagram_1.ncl │ │ ├── unique_9.ncl │ │ ├── viewport_4.ncl │ │ ├── weather_sym_6.ncl │ │ └── xy_29.ncl │ ├── NEON/ │ │ ├── config.neon │ │ └── example.neon │ ├── NL/ │ │ ├── assign0.nl │ │ └── balassign0.nl │ ├── NMODL/ │ │ ├── fornetcon.mod │ │ └── k3st.mod │ ├── NPM Config/ │ │ └── filenames/ │ │ └── .npmrc │ ├── NSIS/ │ │ ├── bigtest.nsi │ │ └── x64.nsh │ ├── NWScript/ │ │ ├── act_disarmkobold.nss │ │ ├── act_unlockkobold.nss │ │ ├── crawler_death.nss │ │ ├── e2pc_plaguestack.nss │ │ ├── e3pc_spidersnest.nss │ │ └── illusion_spawn.nss │ ├── Nasal/ │ │ ├── damage.nas │ │ └── kx165tso.nas │ ├── Nearley/ │ │ └── nearley-language-bootstrapped.ne │ ├── Nemerle/ │ │ └── hello.n │ ├── NetLinx/ │ │ ├── projector.axi │ │ └── volume-array.axs │ ├── NetLinx+ERB/ │ │ ├── sample.axi.erb │ │ └── sample.axs.erb │ ├── NetLogo/ │ │ └── Life.nlogo │ ├── NewLisp/ │ │ ├── irc.lsp │ │ ├── log-to-database.lisp │ │ └── queens.nl │ ├── Nextflow/ │ │ ├── blast.nf │ │ ├── callings.nf │ │ ├── filenames/ │ │ │ └── nextflow.config │ │ └── rnaseq.nf │ ├── Nginx/ │ │ ├── example.com.vhost │ │ ├── filenames/ │ │ │ └── nginx.conf │ │ └── sample.nginx │ ├── Nickel/ │ │ ├── arrays.ncl │ │ ├── config-gcc.ncl │ │ └── imports.ncl │ ├── Nim/ │ │ ├── config.nims │ │ ├── filenames/ │ │ │ └── nim.cfg │ │ ├── foo.nim │ │ ├── main.nim │ │ ├── nimfix.nim.cfg │ │ └── zip.nimble │ ├── Nit/ │ │ ├── calculator.nit │ │ ├── callback_chimpanze.nit │ │ ├── callback_monkey.nit │ │ ├── circular_list.nit │ │ ├── clock.nit │ │ ├── clock_more.nit │ │ ├── curl_http.nit │ │ ├── curl_mail.nit │ │ ├── draw_operation.nit │ │ ├── drop_privileges.nit │ │ ├── extern_methods.nit │ │ ├── fibonacci.nit │ │ ├── file.nit │ │ ├── hello_world.nit │ │ ├── html_page.nit │ │ ├── int_stack.nit │ │ ├── meetup.nit │ │ ├── opengles2_hello_triangle.nit │ │ ├── print_arguments.nit │ │ ├── procedural_array.nit │ │ ├── socket_client.nit │ │ ├── socket_server.nit │ │ ├── tmpl_composer.nit │ │ └── websocket_server.nit │ ├── Nix/ │ │ └── nginx.nix │ ├── Noir/ │ │ ├── array.nr │ │ ├── ecrecover_lib.nr │ │ └── voting.nr │ ├── Nu/ │ │ ├── RandomApp.nu │ │ └── nu │ ├── Nunjucks/ │ │ └── norris.njk │ ├── Nushell/ │ │ ├── release-pkg.nu │ │ └── this_week_in_nu.nu │ ├── OASv2-json/ │ │ └── pixi.json │ ├── OASv2-yaml/ │ │ ├── sample.yaml │ │ └── sample.yml │ ├── OASv3-json/ │ │ └── ghes-3.4.json │ ├── OASv3-yaml/ │ │ ├── ghes-3.4.yaml │ │ └── ghes-3.4.yml │ ├── OCaml/ │ │ ├── Foo.ml │ │ ├── cmdliner.ml │ │ ├── common.ml │ │ ├── date.ml │ │ ├── example.eliom │ │ ├── map.ml │ │ ├── mirage.ml │ │ ├── reload.ml │ │ ├── sigset.ml │ │ └── uutf.ml │ ├── OMNeT++ MSG/ │ │ ├── GptpPacket.msg │ │ ├── TcpConnection.msg │ │ └── TcpConnectionState.msg │ ├── OMNeT++ NED/ │ │ ├── IWirelessInterface.ned │ │ ├── Ieee80211Interface.ned │ │ └── TsnNetworkBase.ned │ ├── Oberon/ │ │ └── beNull.ob2 │ ├── Object Data Instance Notation/ │ │ └── openehr_ehr_1.0.3.bmm.odin │ ├── ObjectScript/ │ │ └── Sample.Person.cls │ ├── Objective-C/ │ │ ├── ASIHTTPRequest.h │ │ ├── ASIHTTPRequest.m │ │ ├── Foo.h │ │ ├── Foo.m │ │ ├── FooAppDelegate.h │ │ ├── FooAppDelegate.m │ │ ├── JSONKit.h │ │ ├── JSONKit.m │ │ ├── MainMenuViewController.h │ │ ├── MainMenuViewController.m │ │ ├── PlaygroundViewController.h │ │ ├── PlaygroundViewController.m │ │ ├── SBJsonParser.h │ │ ├── SBJsonParser.m │ │ ├── Siesta.h │ │ ├── StyleViewController.h │ │ ├── StyleViewController.m │ │ ├── TUITableView.h │ │ ├── TUITableView.m │ │ ├── cocoa_monitor.m │ │ ├── gen-cocoa-linguist-thrift.m │ │ └── hello.m │ ├── Objective-C++/ │ │ ├── EventHandlerMac.mm │ │ └── objsql.mm │ ├── Objective-J/ │ │ ├── AppController.j │ │ ├── LightsOff.j │ │ └── iTunesLayout.j │ ├── Odin/ │ │ └── sample.odin │ ├── Omgrofl/ │ │ └── hello.omgrofl │ ├── Opa/ │ │ ├── hello_syntax1.opa │ │ └── hello_syntax2.opa │ ├── Opal/ │ │ └── DeepakChopra.opal │ ├── Open Policy Agent/ │ │ ├── httpapi.rego │ │ ├── kafka.rego │ │ ├── kubernetes_admission.rego │ │ └── ssh.rego │ ├── OpenCL/ │ │ ├── fft.cl │ │ └── sample.cl │ ├── OpenEdge ABL/ │ │ ├── Email.cls │ │ ├── SendEmailAlgorithm.cls │ │ ├── SocketReader.p │ │ ├── Util.cls │ │ ├── run.p │ │ └── test-win.w │ ├── OpenQASM/ │ │ └── half_adder.qasm │ ├── OpenRC runscript/ │ │ └── acpid │ ├── OpenSCAD/ │ │ ├── not_simple.scad │ │ └── simple.scad │ ├── OpenStep Property List/ │ │ ├── TypewriterInfo.plist │ │ └── weathericons-regular.glyphs │ ├── Option List/ │ │ └── filenames/ │ │ ├── .ackrc │ │ ├── .rspec │ │ ├── .yardopts │ │ ├── ackrc │ │ └── mocha.opts │ ├── Org/ │ │ └── org.org │ ├── OverpassQL/ │ │ ├── complex.overpassql │ │ └── simple.overpassql │ ├── Ox/ │ │ ├── IJCEmet2009.oxh │ │ ├── ParallelObjective.ox │ │ └── particle.oxo │ ├── Oxygene/ │ │ └── Loops.oxygene │ ├── Oz/ │ │ └── example.oz │ ├── P4/ │ │ ├── l2.p4 │ │ └── mirror_acl.p4 │ ├── PDDL/ │ │ ├── domain_testproblem.pddl │ │ ├── pathfinding.pddl │ │ └── problem_4d_5p.pddl │ ├── PEG.js/ │ │ ├── abnfp.peggy │ │ └── rfc5988.pegjs │ ├── PHP/ │ │ ├── Application.php │ │ ├── Client.php │ │ ├── Controller.php │ │ ├── Form.php │ │ ├── Model.php │ │ ├── ProtobufGenerated.php │ │ ├── ThriftGenerated.php │ │ ├── drupal.php │ │ ├── exception.zep.php │ │ ├── file_display.inc │ │ ├── filenames/ │ │ │ ├── .php │ │ │ ├── .php_cs │ │ │ └── .php_cs.dist │ │ ├── mail.phps │ │ ├── php │ │ ├── php-script │ │ ├── php2 │ │ ├── prefix.fcgi │ │ └── root.php │ ├── PLSQL/ │ │ ├── myobject.sql │ │ ├── packagebody.pkb │ │ ├── packageheader.pks │ │ ├── plsqlguide.pck │ │ ├── prime#.plsql │ │ ├── print_bool.prc │ │ ├── videodb.ddl │ │ └── who_called_me.sql │ ├── PLpgSQL/ │ │ ├── plpgsql_lint-8.4.sql │ │ ├── plpgsql_lint-9.0.sql │ │ ├── plpgsql_lint-9.1.sql │ │ ├── plpgsql_lint-9.2.sql │ │ ├── plpgsql_lint-9.3.sql │ │ ├── procedures.sql │ │ └── useraccount.pgsql │ ├── POV-Ray SDL/ │ │ ├── balcony.pov │ │ ├── bglass.inc │ │ ├── building.inc │ │ ├── chair.inc │ │ ├── cloth.inc │ │ ├── gamma_showcase.pov │ │ ├── sky.inc │ │ ├── table.inc │ │ ├── table_cloth.inc │ │ ├── table_stuff.inc │ │ ├── terrain.inc │ │ └── water.inc │ ├── Pact/ │ │ ├── coin.pact │ │ └── fungible-v1.pact │ ├── Pan/ │ │ ├── ceph-raid.pan │ │ ├── cluster-A.pan │ │ ├── databases.pan │ │ ├── functions.pan │ │ ├── infernalis.pan │ │ ├── libvirt.pan │ │ ├── link.pan │ │ ├── mysql.pan │ │ ├── nodes_properties.pan │ │ ├── onevm.pan │ │ ├── osd-fetch.pan │ │ ├── pakiti.pan │ │ ├── purge_fqan_accounts.pan │ │ ├── resources.pan │ │ ├── simple.pan │ │ ├── test.pan │ │ ├── types.pan │ │ └── unit.pan │ ├── Papyrus/ │ │ ├── CAMTEST_OverShoulderME.psc │ │ ├── vMFX_FXPlugin.psc │ │ └── vSCM_MetaQuestScript.psc │ ├── Parrot Assembly/ │ │ └── hello.pasm │ ├── Parrot Internal Representation/ │ │ └── hello.pir │ ├── Pascal/ │ │ ├── GraphicConfiguration.inc │ │ ├── bulls-and-cows.pascal │ │ ├── custforms.pp │ │ ├── cwindirs.pp │ │ ├── image_url.inc │ │ ├── large.pp │ │ ├── lazcomlib_1_0_tlb.pas │ │ ├── lazcomunit.pas │ │ ├── libc.inc │ │ ├── program.dpr │ │ ├── read-a-configuration-file.pascal │ │ ├── tw27294.pp │ │ └── vmops_impl.inc │ ├── Pawn/ │ │ ├── Check.inc │ │ ├── fixed.inc │ │ ├── fixes.inc │ │ ├── foo.sma │ │ ├── mfile.inc │ │ ├── timertest.pwn │ │ └── y_testing.inc │ ├── Pep8/ │ │ ├── div.pep │ │ ├── flag.pep │ │ ├── linked.pep │ │ ├── msq.pep │ │ ├── qsort.pep │ │ ├── stri_buf.pep │ │ └── stristack.pep │ ├── Perl/ │ │ ├── Ack.pm │ │ ├── Any.pm │ │ ├── Request.pm │ │ ├── Response.pm │ │ ├── Schema.pm │ │ ├── example.cgi │ │ ├── exception_handler.pl │ │ ├── feedgnuplot │ │ ├── fib.pl │ │ ├── filenames/ │ │ │ ├── .latexmkrc │ │ │ ├── Makefile.PL │ │ │ ├── Rexfile │ │ │ ├── ack │ │ │ ├── cpanfile │ │ │ └── latexmkrc │ │ ├── getchar.al │ │ ├── index.fcgi │ │ ├── oo1.pl │ │ ├── oo2.pl │ │ ├── oo3.pl │ │ ├── perl │ │ ├── perl-test.t │ │ ├── script.pl │ │ ├── strict.t │ │ ├── test-perl.pl │ │ ├── test-perl2.pl │ │ └── use5.pl │ ├── Pic/ │ │ ├── dextroamphetamine.chem │ │ ├── graph.pic │ │ └── ritalin.chem │ ├── Pickle/ │ │ ├── data.pkl │ │ ├── neural-network-ce-l2reg-784-10-30.pkl │ │ ├── random.pkl │ │ └── save.pkl │ ├── PicoLisp/ │ │ └── simul.l │ ├── PigLatin/ │ │ └── example.pig │ ├── Pike/ │ │ ├── Error.pmod │ │ ├── FakeFile.pike │ │ └── shebang.pike │ ├── Pip Requirements/ │ │ └── filenames/ │ │ ├── dev-requirements.txt │ │ ├── requirements-dev.txt │ │ ├── requirements.lock.txt │ │ └── requirements.txt │ ├── Pkl/ │ │ ├── Parser.pkl │ │ ├── SchemaGenerator.pkl │ │ └── rule.pkl │ ├── PlantUML/ │ │ ├── ProtectedMeta.iuml │ │ ├── PublicallyAccessibleReDirect.puml │ │ ├── associations.iuml │ │ ├── casUtilisation.puml │ │ ├── common.iuml │ │ ├── overview.puml │ │ └── sequence-ptasks-workers_success.puml │ ├── Pod/ │ │ ├── Cookbook.pod │ │ ├── PSGI.pod │ │ ├── Sample.pod │ │ └── contents.pod │ ├── Pod 6/ │ │ └── S15-unicode.pod │ ├── PogoScript/ │ │ └── squashy.pogo │ ├── Polar/ │ │ ├── gitcloud.polar │ │ └── gitclub.polar │ ├── Pony/ │ │ ├── circle.pony │ │ ├── counter.pony │ │ ├── gups-opt.pony │ │ ├── hello-world.pony │ │ ├── mandelbrot.pony │ │ └── mixed.pony │ ├── Portugol/ │ │ ├── medias.por │ │ └── potencia_raiz.por │ ├── PostCSS/ │ │ ├── sample.pcss │ │ └── sample.postcss │ ├── PostScript/ │ │ ├── lambda.pfa │ │ ├── sierpinski.ps │ │ └── xlogo.epsi │ ├── PowerBuilder/ │ │ ├── TestPBT.pbt │ │ ├── ginpix7.sra │ │ ├── myproject.pbt │ │ ├── n_cst_buttonlistbar_gradient.sru │ │ ├── part1.srw │ │ └── w_export.srw │ ├── PowerShell/ │ │ ├── ZLocation.psd1 │ │ ├── ZLocation.psm1 │ │ ├── history.ps1 │ │ └── pwsh-shebang.ps1 │ ├── Praat/ │ │ ├── dynamicity.praat │ │ ├── queryTable.praat │ │ └── randomiseArticles.praat │ ├── Prisma/ │ │ ├── blog-minimal-schema.prisma │ │ ├── blog-schema-advanced.prisma │ │ ├── mcu-schema.prisma │ │ ├── now-example-schema.prisma │ │ └── schema.prisma │ ├── Processing/ │ │ └── hello.pde │ ├── Procfile/ │ │ └── filenames/ │ │ └── Procfile │ ├── Proguard/ │ │ ├── proguard-rules.pro │ │ ├── proguard-rules2.pro │ │ └── proguard_annotations.pro │ ├── Prolog/ │ │ ├── admin.pl │ │ ├── dleak-report │ │ ├── ex6.pl │ │ ├── format_spec.pl │ │ ├── func.pl │ │ ├── logic-problem.pro │ │ ├── plunit_test_example.plt │ │ ├── queues.yap │ │ ├── test-prolog.prolog │ │ └── turing.pl │ ├── Promela/ │ │ ├── Session.pml │ │ ├── Supervisor.pml │ │ ├── TCP.pml │ │ ├── Thread.pml │ │ ├── attacker_4_FINITE.pml │ │ ├── bare_signals.pml │ │ └── ex.1.pml │ ├── Propeller Spin/ │ │ ├── 4x4 Keypad Reader.spin │ │ ├── Debug_Lcd.spin │ │ ├── Graphics.spin │ │ ├── Inductor.spin │ │ ├── Keyboard.spin │ │ ├── TV.spin │ │ ├── TV_Terminal.spin │ │ ├── TV_Text.spin │ │ ├── VGA.spin │ │ └── VocalTract.spin │ ├── Protocol Buffer/ │ │ └── addressbook.proto │ ├── Protocol Buffer Text Format/ │ │ ├── ProjectSettings.pbt │ │ ├── Tree.pbt │ │ ├── cudnn_benchmarks.textproto │ │ ├── schema.pbtxt │ │ └── submission.txtpb │ ├── Public Key/ │ │ ├── gpg_key.asc │ │ ├── id.pub │ │ ├── id_dsa.asc │ │ ├── id_rsa.asc │ │ ├── id_rsa.pub │ │ ├── sshkey1.asc │ │ └── sunCert.asc │ ├── Pug/ │ │ ├── hello.jade │ │ └── hello.pug │ ├── Puppet/ │ │ ├── apacheinit.pp │ │ ├── expiringhost.pp │ │ ├── hiera_include.pp │ │ ├── stages-example.pp │ │ └── unmanaged-notify-puppet25.pp │ ├── PureBasic/ │ │ ├── Example_Sine.pb │ │ └── Memory.pbi │ ├── PureScript/ │ │ ├── Control.Arrow.purs │ │ ├── Data.Foreign.purs │ │ ├── Data.Map.purs │ │ └── ReactiveJQueryTest.purs │ ├── Pyret/ │ │ └── pyret.arr │ ├── Python/ │ │ ├── AdditiveWave.pyde │ │ ├── Cinema4DPythonPlugin.pyp │ │ ├── MoveEye.pyde │ │ ├── action.cgi │ │ ├── argparse.pyi │ │ ├── backstage.fcgi │ │ ├── django-models-base.py │ │ ├── filenames/ │ │ │ ├── .gclient │ │ │ └── DEPS │ │ ├── flask-view.py │ │ ├── gen-py-linguist-thrift.py │ │ ├── protocol_buffer_pb2.py │ │ ├── py3.py3 │ │ ├── python │ │ ├── python2 │ │ ├── python3 │ │ ├── simpleclient.rpy │ │ ├── spec.linux.spec │ │ ├── standalone.gypi │ │ ├── toolchain.gypi │ │ ├── tornado-httpserver.py │ │ └── uv-download-countries-info │ ├── Q#/ │ │ ├── CustomModAdd.qs │ │ └── Shor.qs │ ├── QML/ │ │ └── common.qbs │ ├── QMake/ │ │ ├── complex.pro │ │ ├── functions.pri │ │ ├── qmake │ │ └── simple.pro │ ├── Qt Script/ │ │ ├── installscript.qs │ │ └── toolchain_installscript.qs │ ├── Quake/ │ │ └── filenames/ │ │ ├── m3makefile │ │ └── m3overrides │ ├── QuakeC/ │ │ ├── slider.qc │ │ └── spawner.qc │ ├── QuickBASIC/ │ │ ├── FGETRT.BAS │ │ ├── InForm.bi │ │ ├── VGAFont.bas │ │ ├── VLONG.BAS │ │ └── sponge4.bas │ ├── R/ │ │ ├── 2.R │ │ ├── R-qgis-extension.rsx │ │ ├── df.residual.r │ │ ├── filenames/ │ │ │ └── expr-dist │ │ ├── git-punchcard │ │ ├── import.Rd │ │ ├── import.r │ │ └── scholar.Rd │ ├── RAML/ │ │ └── api.raml │ ├── RAScript/ │ │ └── example.rascript │ ├── RBS/ │ │ └── cli.rbs │ ├── RDoc/ │ │ └── rdoc.rdoc │ ├── REXX/ │ │ ├── BatchRemapBrushes.pprx │ │ ├── ShapesInfo.rexx │ │ ├── SkrivShape.rexx │ │ └── ag2xml.rexx │ ├── RMarkdown/ │ │ ├── example.qmd │ │ └── example.rmd │ ├── RON/ │ │ └── config.ron │ ├── ROS Interface/ │ │ ├── AboutROSInterfaces.msg │ │ ├── LoadMap.srv │ │ ├── Marker.msg │ │ ├── Marker_ROS1.msg │ │ ├── NavigateThroughPoses.action │ │ ├── ParameterDescriptor.msg │ │ ├── ParameterEventDescriptors.msg │ │ └── Test.msg │ ├── RPC/ │ │ ├── rpc.x │ │ ├── rusers.x │ │ └── yp.x │ ├── RPGLE/ │ │ ├── anilist.sqlrpgle │ │ ├── bfint.sqlrpgle │ │ ├── dspf.rpgle │ │ ├── fizzbuzz.rpgle │ │ ├── ifsread.rpgle │ │ ├── psds.rpgle │ │ ├── qcmdexc_ex.rpgle │ │ ├── sms.sqlrpgle │ │ └── sms_h.rpgle │ ├── RPM Spec/ │ │ ├── apache.spec │ │ ├── erlang-erlydtl.spec │ │ └── manos.spec │ ├── RUNOFF/ │ │ ├── VMS_ZIP.RNH │ │ ├── contributing.rnh │ │ ├── longlib.rno │ │ └── mcp_help.rnh │ ├── Racket/ │ │ ├── 99-bottles-of-beer.scrbl │ │ └── scribble.scrbl │ ├── Ragel/ │ │ ├── ephemeris_parser.rl │ │ ├── simple_scanner.rl │ │ └── simple_tokenizer.rl │ ├── Raku/ │ │ ├── 01-dash-uppercase-i.t │ │ ├── 01-parse.t │ │ ├── A.pm │ │ ├── ANSIColor.pm │ │ ├── Bailador.pm │ │ ├── ContainsUnicode.pm │ │ ├── Exception.pm │ │ ├── List.pm │ │ ├── Model.pm │ │ ├── RoleQ.pm6 │ │ ├── SIL.rakumod │ │ ├── Simple.pm │ │ ├── Win32.pm │ │ ├── advent2009-day16.t │ │ ├── basic-open.t │ │ ├── calendar.t │ │ ├── dynaver.raku │ │ ├── for.t │ │ ├── grammar-test.p6 │ │ ├── hash.t │ │ ├── htmlify.pl │ │ ├── listquote-whitespace.t │ │ ├── man-or-boy.t │ │ └── test.p6 │ ├── Rascal/ │ │ ├── Analyze.rsc │ │ ├── Compile.rsc │ │ ├── ModuleInfo.rsc │ │ ├── RascalModule.rsc │ │ └── Syntax.rsc │ ├── ReScript/ │ │ ├── RedBlackTree.res │ │ └── RedBlackTree.resi │ ├── Readline Config/ │ │ └── filenames/ │ │ └── .inputrc │ ├── Reason/ │ │ ├── JSX.re │ │ ├── Layout.re │ │ ├── Machine.re │ │ ├── SourceSpec.re │ │ ├── SuperMerlin.re │ │ └── Syntax.re │ ├── ReasonLIGO/ │ │ └── FA1.2.religo │ ├── Rebol/ │ │ ├── GCP-datatypes.r │ │ ├── booters.r │ │ ├── hello-world.r2 │ │ ├── hello-world.r3 │ │ ├── hello-world.reb │ │ └── hello-world.rebol │ ├── Record Jar/ │ │ └── filenames/ │ │ └── language-subtag-registry.txt │ ├── Red/ │ │ ├── example.red │ │ └── example.reds │ ├── Redirect Rules/ │ │ └── filenames/ │ │ └── _redirects │ ├── Regular Expression/ │ │ ├── modeline-emacs.regexp │ │ ├── modeline-vim.regexp │ │ ├── ordinal.regex │ │ └── url.regex │ ├── Ren'Py/ │ │ └── example.rpy │ ├── RenderScript/ │ │ ├── convolve3x3.rs │ │ └── scenegraph_objects.rsh │ ├── Rez/ │ │ ├── Rezilla_DITL.r │ │ ├── dialog.r │ │ └── gui_mac.r │ ├── Rich Text Format/ │ │ ├── DesktopTemplateLicense.rtf │ │ └── LICENSE.rtf │ ├── Ring/ │ │ ├── hello.ring │ │ ├── natural.ring │ │ ├── weblib.ring │ │ └── weighthistory.ring │ ├── Riot/ │ │ ├── live-filtering.riot │ │ └── todo.riot │ ├── RobotFramework/ │ │ ├── data_driven.robot │ │ ├── gherkin.robot │ │ ├── keyword_driven.robot │ │ └── keywords.resource │ ├── Roc/ │ │ ├── ParserString.roc │ │ ├── PgCmd.roc │ │ ├── PgProtocolBackend.roc │ │ └── PgSchema.roc │ ├── Rocq Prover/ │ │ ├── Computation.v │ │ ├── Imp.v │ │ ├── JsCorrectness.v │ │ ├── JsInterpreterExtraction.v │ │ ├── JsNumber.v │ │ ├── JsPrettyInterm.v │ │ ├── Lists.v │ │ ├── Main.v │ │ ├── Poly.v │ │ ├── Rel.v │ │ ├── Smallstep.v │ │ ├── Spec.v │ │ └── Stlc.v │ ├── Roff/ │ │ ├── Tcl.n │ │ ├── an-ext.tmac │ │ ├── create_view.l │ │ ├── crude-hack.man │ │ ├── dsw.1x │ │ ├── foo.3p │ │ ├── foo.3pm │ │ ├── fsinterface.ms │ │ ├── he.mdoc │ │ ├── man.1m │ │ ├── printf.3in │ │ ├── qsort.3qt │ │ ├── refs.rno │ │ ├── roff.1in │ │ ├── roff.nr │ │ ├── switch.3m │ │ ├── trekmanual.nr │ │ └── vt.3x │ ├── Roff Manpage/ │ │ ├── URI.3pm │ │ ├── gather_profile_stats.man │ │ ├── lyxclient.1in │ │ ├── pgrep.3p │ │ ├── sched_get_priority_min.3x │ │ ├── sensor_attach.mdoc │ │ ├── sigwait.3qt │ │ ├── tan.3m │ │ ├── tls_config_ocsp_require_stapling.3in │ │ ├── uname.1m │ │ ├── zforce.1x │ │ └── zip_file_add.mdoc │ ├── RouterOS Script/ │ │ ├── BackupAndUpdate.rsc │ │ ├── config.rsc │ │ ├── console-dump.rsc │ │ └── vlans.rsc │ ├── Ruby/ │ │ ├── actionmailer.rbi │ │ ├── address.pdf.prawn │ │ ├── any.spec │ │ ├── filenames/ │ │ │ ├── .irbrc │ │ │ ├── .pryrc │ │ │ ├── .simplecov │ │ │ ├── Appraisals │ │ │ ├── Brewfile │ │ │ ├── Capfile │ │ │ ├── Dangerfile │ │ │ ├── Deliverfile │ │ │ ├── Fastfile │ │ │ ├── Podfile │ │ │ ├── Rakefile │ │ │ ├── Snapfile │ │ │ └── Steepfile │ │ ├── foo.rb │ │ ├── formula.rb │ │ ├── gem_loader.rbi │ │ ├── gen-rb-linguist-thrift.rb │ │ ├── grit.rb │ │ ├── index.json.jbuilder │ │ ├── inflector.rb │ │ ├── jekyll.rb │ │ ├── jenkinsci.pluginspec │ │ ├── macruby │ │ ├── mdata_server.fcgi │ │ ├── rabl.rabl │ │ ├── racc.rb │ │ ├── rails@7.0.3.1.rbi │ │ ├── rendering.rbi │ │ ├── resque.rb │ │ ├── rexpl │ │ ├── ruby │ │ ├── ruby2 │ │ ├── ruby3 │ │ ├── script.rake │ │ ├── shoes-swt │ │ └── sinatra.rb │ ├── Rust/ │ │ ├── base64url │ │ ├── hashmap.rs │ │ ├── main.rs │ │ └── task.rs │ ├── SAS/ │ │ ├── data.sas │ │ ├── detect_phi.sas │ │ └── proc.sas │ ├── SCSS/ │ │ └── screen.scss │ ├── SELinux Policy/ │ │ ├── filenames/ │ │ │ ├── genfs_contexts │ │ │ ├── initial_sids │ │ │ └── security_classes │ │ └── fsck.te │ ├── SMT/ │ │ ├── as-left.z3 │ │ ├── bignum_lia1.smt2 │ │ ├── list4.smt2 │ │ ├── queen10-1.smt2 │ │ └── shufflevector.smt │ ├── SPARQL/ │ │ ├── foaf.sparql │ │ └── string-matching.sparql │ ├── SQF/ │ │ ├── fn_remoteExecFnc.sqf │ │ └── macros.hqf │ ├── SQL/ │ │ ├── AvailableInSearchSel.prc │ │ ├── create_stuff.sql │ │ ├── db.sql │ │ ├── drop_stuff.sql │ │ ├── dual.sql │ │ ├── filial.tab │ │ ├── hostcache_set_state.inc │ │ ├── mysql-sakila-schema.sql │ │ ├── object-update.udf │ │ ├── sqlite-sakila-schema.sql │ │ ├── suspendedtoday.viw │ │ ├── videodb.ddl │ │ └── zipcodes.uk.mysql │ ├── SQLPL/ │ │ ├── check_reorg.sql │ │ ├── comm_amount.db2 │ │ ├── drop_table.db2 │ │ ├── runstats.sql │ │ ├── sleep.sql │ │ └── trigger.sql │ ├── SRecode Template/ │ │ └── linguist.srt │ ├── SSH Config/ │ │ └── filenames/ │ │ ├── ssh-config │ │ ├── ssh_config │ │ ├── sshconfig │ │ ├── sshconfig.snip │ │ ├── sshd-config │ │ └── sshd_config │ ├── STAR/ │ │ ├── schedule.star │ │ ├── schedule_pipeline.star │ │ └── symop.star │ ├── STON/ │ │ ├── Array.ston │ │ ├── Dictionary.ston │ │ ├── Rectangle.ston │ │ ├── TestDomainObject.ston │ │ ├── ZNResponse.ston │ │ ├── methodProperties.ston │ │ └── properties.ston │ ├── SWIG/ │ │ ├── CGAL_AABB_tree.i │ │ ├── constraint_solver.swig │ │ ├── dictionary.i │ │ ├── gauss.i │ │ └── linear_solver.swg │ ├── Sage/ │ │ └── polinomios.sagews │ ├── Sail/ │ │ ├── basics.sail │ │ ├── bitfields.sail │ │ ├── bitvectors.sail │ │ ├── match.sail │ │ ├── riscv_insts_zbb.sail │ │ └── types.sail │ ├── SaltStack/ │ │ ├── eval.sls │ │ ├── gimp.sls │ │ ├── gpg4win-light.sls │ │ ├── openoffice.sls │ │ ├── top.sls │ │ └── truecrypt.sls │ ├── Sass/ │ │ └── screen.sass │ ├── Scala/ │ │ ├── 99-bottles-of-beer │ │ ├── build.sbt │ │ ├── car-ride.kojo │ │ ├── fib-tree.kojo │ │ ├── node11.sc │ │ ├── scala │ │ └── turtle-controller.kojo │ ├── Scaml/ │ │ └── hello.scaml │ ├── Scenic/ │ │ ├── bypassing.scenic │ │ ├── composition.scenic │ │ ├── driving_model.scenic │ │ └── mars.scenic │ ├── Scheme/ │ │ ├── asteroids.sps │ │ ├── basic.sld │ │ ├── common.scm │ │ ├── lambdastar.sls │ │ ├── r7rs.scm │ │ └── sboyer.sch │ ├── Scilab/ │ │ ├── scilab_function.sci │ │ ├── scilab_script.sce │ │ └── scilab_test.tst │ ├── ShaderLab/ │ │ ├── DepthOfField.shader │ │ ├── Fog.shader │ │ └── Uber.shader │ ├── Shell/ │ │ ├── 99-bottles-of-beer │ │ ├── bash │ │ ├── build.command │ │ ├── busybox.trigger │ │ ├── filenames/ │ │ │ ├── .bash_aliases │ │ │ ├── .bash_functions │ │ │ ├── .bash_logout │ │ │ ├── .bash_profile │ │ │ ├── .bashrc │ │ │ ├── .cshrc │ │ │ ├── .envrc │ │ │ ├── .flaskenv │ │ │ ├── .kshrc │ │ │ ├── .login │ │ │ ├── .profile │ │ │ ├── .tmux.conf │ │ │ ├── .xinitrc │ │ │ ├── .xsession │ │ │ ├── .zlogin │ │ │ ├── .zlogout │ │ │ ├── .zprofile │ │ │ ├── .zshenv │ │ │ ├── .zshrc │ │ │ ├── 9fs │ │ │ ├── PKGBUILD │ │ │ ├── bash_aliases │ │ │ ├── bash_logout │ │ │ ├── bash_profile │ │ │ ├── bashrc │ │ │ ├── cshrc │ │ │ ├── gradlew │ │ │ ├── kshrc │ │ │ ├── login │ │ │ ├── man │ │ │ ├── mvnw │ │ │ ├── profile │ │ │ ├── tmux.conf │ │ │ ├── xinitrc │ │ │ ├── xsession │ │ │ ├── zlogin │ │ │ ├── zlogout │ │ │ ├── zprofile │ │ │ ├── zshenv │ │ │ └── zshrc │ │ ├── invalid-shebang.sh │ │ ├── job_array.slurm │ │ ├── mpi_job.slurm │ │ ├── php.fcgi │ │ ├── plugin │ │ ├── rbenv-sh-shell.sh │ │ ├── robbyrussell.zsh-theme │ │ ├── rvm.bash │ │ ├── sbt │ │ ├── script.bash │ │ ├── script.sh │ │ ├── script.zsh │ │ ├── settime.cgi │ │ ├── sh │ │ ├── string-chopping │ │ ├── udev.trigger │ │ ├── valid-shebang.tool │ │ └── zsh │ ├── ShellCheck Config/ │ │ └── filenames/ │ │ └── .shellcheckrc │ ├── ShellSession/ │ │ ├── dollar.sh-session │ │ ├── gem-install.sh-session │ │ └── simple.sh-session │ ├── Shen/ │ │ ├── graph.shen │ │ ├── html.shen │ │ └── json.shen │ ├── Sieve/ │ │ ├── dovecot-archive.sieve │ │ ├── dovecot-flagging.sieve │ │ ├── dovecot-headers.sieve │ │ ├── dovecot-plus.sieve │ │ ├── dovecot-spam1.sieve │ │ ├── dovecot-spam2.sieve │ │ ├── dovecot-spamtest.sieve │ │ ├── dovecot-subaddress.sieve │ │ ├── dovecot-vacation.sieve │ │ ├── dovecot-virustest.sieve │ │ └── wikipedia-example.sieve │ ├── Simple File Verification/ │ │ ├── linguist.sfv │ │ └── openbsd.sfv │ ├── Singularity/ │ │ └── filenames/ │ │ └── Singularity │ ├── Slang/ │ │ ├── buildmip.slang │ │ ├── convert.slang │ │ ├── draw-quad.slang │ │ ├── learnmip.slang │ │ ├── reconstruct.slang │ │ └── train.slang │ ├── Slash/ │ │ └── brainfuck.sl │ ├── Slice/ │ │ ├── Murmur.ice │ │ ├── Test.ice │ │ └── testSlice01.ice │ ├── Slim/ │ │ └── sample.slim │ ├── Slint/ │ │ ├── iot-dashboard.slint │ │ ├── slide_puzzle.slint │ │ └── todo.slint │ ├── SmPL/ │ │ └── atomic_as_refcounter.cocci │ ├── Smali/ │ │ ├── ActionBarDrawerToggle.smali │ │ ├── DoodleMobileAnaylise.smali │ │ ├── ModernAsyncTask.smali │ │ ├── PenguinSprite.smali │ │ ├── Subject.smali │ │ ├── ViewDragHelper.smali │ │ └── WbxmlSerializer.smali │ ├── Smalltalk/ │ │ ├── Booleans.cs │ │ ├── Collections.cs │ │ ├── Dinner.st │ │ ├── TestBasic.st │ │ ├── baselineDependency.st │ │ ├── categories.st │ │ ├── renderSeasideExampleOn..st │ │ ├── scriptWithPragma.st │ │ ├── smallMethod.st │ │ └── testSimpleChainMatches.st │ ├── Smarty/ │ │ ├── header.tpl │ │ └── index.tpl │ ├── Smithy/ │ │ └── weather.smithy │ ├── Snakemake/ │ │ ├── filenames/ │ │ │ └── Snakefile │ │ ├── snakemake-calling.smk │ │ ├── snakemake-mapping.smk │ │ └── template.snakefile │ ├── Soong/ │ │ └── filenames/ │ │ └── Android.bp │ ├── SourcePawn/ │ │ ├── bhopstats.inc │ │ ├── foo.sp │ │ └── shavit.inc │ ├── Squirrel/ │ │ └── Squirrel.nut │ ├── Stan/ │ │ ├── congress.stan │ │ ├── dogs.stan │ │ └── schools.stan │ ├── Standard ML/ │ │ ├── Foo.ML │ │ ├── Foo.sig │ │ ├── Foo.sml │ │ ├── RedBlackTree.fun │ │ └── main.fun │ ├── Starlark/ │ │ ├── closure_js_binary.bzl │ │ ├── drone.star │ │ ├── filenames/ │ │ │ ├── BUCK │ │ │ ├── BUILD │ │ │ ├── BUILD.bazel │ │ │ ├── MODULE.bazel │ │ │ ├── Tiltfile │ │ │ ├── WORKSPACE │ │ │ ├── WORKSPACE.bazel │ │ │ └── WORKSPACE.bzlmod │ │ └── release.star │ ├── Stata/ │ │ ├── common.doh │ │ ├── hello.ado │ │ ├── include.ihlp │ │ ├── limits.matah │ │ ├── odkmeta.sthlp │ │ ├── regress_example.do │ │ └── tanh.mata │ ├── StringTemplate/ │ │ └── ApiOverviewPage.st │ ├── Stylus/ │ │ └── demo.styl │ ├── SubRip Text/ │ │ └── Adding.NCL.Language.S01E01.1080p.BluRay.x264.srt │ ├── SugarSS/ │ │ └── sample.sss │ ├── SuperCollider/ │ │ ├── WarpPreset.sc │ │ ├── WarpTate.sc │ │ ├── WarpTrack.sc │ │ ├── WarpUtil.sc │ │ └── example.scd │ ├── SurrealQL/ │ │ ├── aggregate-view.surql │ │ ├── expressions.surql │ │ └── schema.surql │ ├── Survex data/ │ │ └── data.svx │ ├── Svelte/ │ │ └── TodoMVC.svelte │ ├── Sway/ │ │ ├── arrays.sw │ │ ├── generic_traits.sw │ │ ├── struct_fns.sw │ │ ├── supertraits.sw │ │ └── wallet.sw │ ├── Sweave/ │ │ ├── knitr-beamer.Rnw │ │ └── knitr-minimal.Rnw │ ├── Swift/ │ │ ├── section-11.swift │ │ ├── section-13.swift │ │ ├── section-15.swift │ │ ├── section-17.swift │ │ ├── section-19.swift │ │ ├── section-21.swift │ │ ├── section-23.swift │ │ ├── section-25.swift │ │ ├── section-27.swift │ │ ├── section-29.swift │ │ ├── section-3.swift │ │ ├── section-31.swift │ │ ├── section-33.swift │ │ ├── section-35.swift │ │ ├── section-37.swift │ │ ├── section-39.swift │ │ ├── section-41.swift │ │ ├── section-43.swift │ │ ├── section-45.swift │ │ ├── section-47.swift │ │ ├── section-49.swift │ │ ├── section-5.swift │ │ ├── section-51.swift │ │ ├── section-53.swift │ │ ├── section-55.swift │ │ ├── section-57.swift │ │ ├── section-59.swift │ │ ├── section-61.swift │ │ ├── section-63.swift │ │ ├── section-65.swift │ │ ├── section-67.swift │ │ ├── section-69.swift │ │ ├── section-7.swift │ │ ├── section-71.swift │ │ ├── section-73.swift │ │ ├── section-75.swift │ │ ├── section-77.swift │ │ ├── section-79.swift │ │ ├── section-81.swift │ │ ├── section-83.swift │ │ ├── section-85.swift │ │ ├── section-87.swift │ │ └── section-9.swift │ ├── SystemVerilog/ │ │ ├── endpoint_phy_wrapper.svh │ │ ├── fifo.sv │ │ ├── priority_encoder.sv │ │ └── util.vh │ ├── TI Program/ │ │ ├── CIRCLES.8xp │ │ ├── CLOCK.8xp │ │ ├── cowsource.8xp │ │ ├── srcalpha.8xp.txt │ │ ├── srcfunc.8xp.txt │ │ ├── srcgui.8xp.txt │ │ └── srcsort.8xp.txt │ ├── TL-Verilog/ │ │ ├── calculator_kernel.tlv │ │ └── warp-v_config.tlv │ ├── TLA/ │ │ ├── AsyncInterface.tla │ │ └── fifo.tla │ ├── TMDL/ │ │ └── Current page.tmdl │ ├── TOML/ │ │ ├── Cargo.toml │ │ ├── audit.toml.example │ │ └── filenames/ │ │ ├── Cargo.toml.orig │ │ └── Pipfile │ ├── TSPLIB data/ │ │ ├── att48.tsp │ │ └── dantzig42.tsp │ ├── TSQL/ │ │ ├── cursor.sql │ │ ├── logical.sql │ │ ├── storedprocedure.sql │ │ └── uniqueidentifier.sql │ ├── TSV/ │ │ ├── input.tsv │ │ ├── merged1.vcf │ │ └── z.vcf │ ├── TSX/ │ │ ├── import.tsx │ │ ├── react-native.tsx │ │ ├── require.tsx │ │ └── triple-slash-reference.tsx │ ├── TXL/ │ │ └── Cal.txl │ ├── Tact/ │ │ ├── deployable_counter.tact │ │ └── jetton.tact │ ├── Talon/ │ │ ├── find_and_replace.talon │ │ └── line_commands.talon │ ├── Tcl/ │ │ ├── constraints.sdc │ │ ├── constraints.xdc │ │ ├── filenames/ │ │ │ ├── owh │ │ │ └── starfield │ │ ├── init.tcl.in │ │ ├── stream-0.1.tm │ │ └── xdgbasedir-0.3.tm │ ├── Tcsh/ │ │ └── regtest_nmmnest.csh │ ├── TeX/ │ │ ├── authortitle.cbx │ │ ├── beispiel.toc │ │ ├── english.lbx │ │ ├── perl.toc │ │ ├── problemset.cls │ │ ├── reedthesis.cls │ │ └── verbose.bbx │ ├── Tea/ │ │ └── foo.tea │ ├── Teal/ │ │ ├── Emitter.tl │ │ └── teal-cyan-example.tl │ ├── Terra/ │ │ ├── arith.t │ │ ├── arrayt.t │ │ └── benchmark_nbody.t │ ├── Terraform Template/ │ │ ├── donors.tftpl │ │ └── policy.tftpl │ ├── Texinfo/ │ │ └── protocol-spec.texi │ ├── Text/ │ │ ├── aptitude-defaults.nb │ │ ├── filenames/ │ │ │ ├── COPYING.regex │ │ │ ├── LICENSE.mysql │ │ │ ├── README.me │ │ │ ├── README.mysql │ │ │ ├── README.nss │ │ │ ├── click.me │ │ │ ├── delete.me │ │ │ ├── keep.me │ │ │ ├── package.mask │ │ │ ├── package.use.mask │ │ │ ├── package.use.stable.mask │ │ │ ├── read.me │ │ │ ├── readme.1st │ │ │ ├── test.me │ │ │ ├── use.mask │ │ │ └── use.stable.mask │ │ ├── foo.txt │ │ ├── mac.txt │ │ ├── messages.fr │ │ ├── min-help.ncl │ │ ├── readme.txt │ │ ├── rmMonAnnCycLLT-help.ncl │ │ ├── tutor.nb │ │ ├── tutor.no │ │ └── zonalAve-help.ncl │ ├── TextGrid/ │ │ ├── part_of_speech.TextGrid │ │ ├── three_tiers.TextGrid │ │ └── words.TextGrid │ ├── TextMate Properties/ │ │ └── filenames/ │ │ └── .tm_properties │ ├── Thrift/ │ │ └── linguist.thrift │ ├── Toit/ │ │ ├── chatbot.toit │ │ ├── logger.toit │ │ └── one_wire.toit │ ├── Tor Config/ │ │ └── filenames/ │ │ └── torrc │ ├── Tree-sitter Query/ │ │ ├── asm_highlights.scm │ │ ├── asm_injections.scm │ │ ├── basic.scm │ │ ├── func_highlights.scm │ │ ├── highlights.scm │ │ ├── injections.scm │ │ ├── tags.scm │ │ └── tlaplus_highlights.scm │ ├── Turing/ │ │ ├── BlockTower.t │ │ ├── simplegame.t │ │ ├── start.t │ │ └── turing.t │ ├── Turtle/ │ │ ├── gnd-record.ttl │ │ └── rdf-syntax-grammar.ttl │ ├── Type Language/ │ │ ├── builtin.tl │ │ └── scheme.tl │ ├── TypeScript/ │ │ ├── cache.ts │ │ ├── classes.ts │ │ ├── conditionParser.mts │ │ ├── hello.ts │ │ ├── promisified_cp.cts │ │ └── proto.ts │ ├── TypeSpec/ │ │ ├── json-schema.tsp │ │ └── petstore.tsp │ ├── Typst/ │ │ ├── fiction.typ │ │ └── letter.typ │ ├── Unity3D Asset/ │ │ ├── GapTile.mat │ │ ├── Hover.anim │ │ ├── Tiles.meta │ │ ├── TimeManager.asset │ │ ├── canvas_Fullscreen_Fader.prefab │ │ └── handFingers.mask │ ├── Unix Assembly/ │ │ ├── asm.S │ │ ├── boot.S │ │ ├── gemm_kernel_1x4.S │ │ ├── hello.ms │ │ ├── hello.s │ │ └── support.S │ ├── Uno/ │ │ ├── PlayerPads.uno │ │ ├── Pong.uno │ │ └── TowerBlock.uno │ ├── UnrealScript/ │ │ ├── MutU2Weapons.uc │ │ └── US3HelloWorld.uc │ ├── Untyped Plutus Core/ │ │ ├── add_numbers.uplc │ │ └── always_true.uplc │ ├── UrWeb/ │ │ ├── iso8601.ur │ │ └── parse.urs │ ├── V/ │ │ ├── json.v │ │ ├── links_scraper.v │ │ ├── log.v │ │ ├── loop.v │ │ ├── nbody.v │ │ ├── news_fetcher.v │ │ ├── rune.v │ │ ├── spectral.v │ │ └── terminal_control.v │ ├── VBA/ │ │ ├── ErrorHandling.bas │ │ ├── QuickCards.bas │ │ ├── WorkbookReporter.cls │ │ ├── WorksheetView.cls │ │ ├── d_WordCmds.bas │ │ ├── dictionary.cls │ │ ├── frmConvert.frm │ │ ├── procedures.vba │ │ ├── specs.bas │ │ └── stdSaveHandler.frm │ ├── VBScript/ │ │ └── v_Data_ArrayList.vbs │ ├── VCL/ │ │ ├── varnish2_default.vcl │ │ └── varnish3_default.vcl │ ├── VHDL/ │ │ └── foo.vhd │ ├── Valve Data Format/ │ │ └── gameinfo.vdf │ ├── Velocity Template Language/ │ │ ├── Mutation.updatePic.req.vtl │ │ ├── gateway-dynamo.vtl │ │ └── index.vtl │ ├── Vento/ │ │ └── index.vto │ ├── Verilog/ │ │ ├── button_debounce.v │ │ ├── control.v │ │ ├── encrypted_module.v │ │ ├── hex_display.v │ │ ├── module_stub.v │ │ ├── mux.v │ │ ├── pipeline_registers.v │ │ ├── ps2_mouse.v │ │ ├── ram.v │ │ ├── sha-256-functions.v │ │ ├── sign_extender.v │ │ ├── sqrt_pipelined.v │ │ ├── t_button_debounce.v │ │ ├── t_div_pipelined.v │ │ ├── t_sqrt_pipelined.v │ │ └── vga.v │ ├── Vim Help File/ │ │ └── modeline.txt │ ├── Vim Script/ │ │ ├── filenames/ │ │ │ ├── .exrc │ │ │ ├── .gvimrc │ │ │ ├── .nvimrc │ │ │ ├── .vimrc │ │ │ └── _vimrc │ │ ├── settings.vimrc │ │ ├── solarized.vim │ │ ├── textobj-rubyblock.vba │ │ └── todo.vmb │ ├── Vim Snippet/ │ │ ├── vim.snip │ │ └── vim.snippets │ ├── Visual Basic .NET/ │ │ ├── Index.vbhtml │ │ ├── Module1.vb │ │ └── VBAllInOne.vb │ ├── Visual Basic 6.0/ │ │ ├── Adjustments_BlackAndWhite.frm │ │ ├── DataReport1.Dsr │ │ ├── Module1.bas │ │ ├── Module2.bas │ │ ├── UIListBox.ctl │ │ ├── Wizard.Dsr │ │ ├── cApplication.cls │ │ ├── clsDataPack.cls │ │ ├── clsMenuImage.cls │ │ ├── frmProcMan.frm │ │ └── modFrm.bas │ ├── Volt/ │ │ └── tesla.volt │ ├── Vue/ │ │ ├── basic.vue │ │ └── pre-processors.vue │ ├── Vyper/ │ │ ├── ERC20.vy │ │ ├── ERC721.vy │ │ ├── ballot.vy │ │ ├── crowdfund.vy │ │ └── name_registry.vy │ ├── WDL/ │ │ ├── fq.wdl │ │ ├── hello.wdl │ │ ├── ifs_in_scatters.wdl │ │ └── passingfiles.wdl │ ├── WGSL/ │ │ └── animate_shader.wgsl │ ├── Wavefront Material/ │ │ ├── dice.mtl │ │ ├── ripple.mtl │ │ ├── shapes.mtl │ │ └── spline.mtl │ ├── Wavefront Object/ │ │ ├── dice.obj │ │ ├── random.obj │ │ ├── ripple.obj │ │ ├── shapes.obj │ │ └── spline.obj │ ├── Web Ontology Language/ │ │ └── sample.owl │ ├── WebAssembly/ │ │ ├── add.wat │ │ ├── fibonacci.wat │ │ ├── imported-min.wast │ │ ├── local-cse.wast │ │ ├── print.wat │ │ └── remove-unused-brs_shrink-level=1_ignore-implicit-traps.wast │ ├── WebAssembly Interface Type/ │ │ └── wasi-io.wit │ ├── WebIDL/ │ │ ├── AnimationEvent.webidl │ │ └── Fetch.webidl │ ├── WebVTT/ │ │ ├── Godfather-Restaurant-Scene.vtt │ │ ├── Russian-Sleep-Experiment.vtt │ │ └── example.vtt │ ├── Wget Config/ │ │ └── filenames/ │ │ └── .wgetrc │ ├── Whiley/ │ │ ├── conway.whiley │ │ ├── minesweeper.whiley │ │ └── option.whiley │ ├── Wikitext/ │ │ ├── README.wiki │ │ └── mediawiki.mediawiki │ ├── Win32 Message File/ │ │ └── logmess.mc │ ├── Windows Registry Entries/ │ │ └── sample.reg │ ├── Witcher Script/ │ │ ├── achievement_stats.ws │ │ └── npc_interaction.ws │ ├── Wolfram Language/ │ │ ├── HeyexImport.m │ │ ├── Init.m │ │ ├── MiscCalculations.nb │ │ ├── MiscCalculations2.nb │ │ ├── PacletInfo.m │ │ ├── Predicates.m │ │ ├── Predicates.wl │ │ ├── Problem12.m │ │ ├── TestArithmetic.mt │ │ ├── TestString.mt │ │ ├── TestSuite.mt │ │ ├── UnitTest.wlt │ │ ├── configure-jupyter.wls │ │ └── install_dependencies.wls │ ├── Wollok/ │ │ ├── pepita.wlk │ │ └── piratas.wlk │ ├── World of Warcraft Addon Data/ │ │ ├── addon.toc │ │ ├── lingua.toc │ │ └── linguist.toc │ ├── Wren/ │ │ └── main.wren │ ├── X BitMap/ │ │ └── image.xbm │ ├── X Font Directory Index/ │ │ └── filenames/ │ │ ├── encodings.dir │ │ ├── fonts.alias │ │ ├── fonts.dir │ │ └── fonts.scale │ ├── X PixMap/ │ │ ├── cc-public_domain_mark_white.pm │ │ └── stick-unfocus.xpm │ ├── X10/ │ │ ├── ArraySum.x10 │ │ ├── Cancellation.x10 │ │ ├── Fibonacci.x10 │ │ ├── HeatTransfer_v0.x10 │ │ ├── HeatTransfer_v1.x10 │ │ ├── HelloWholeWorld.x10 │ │ ├── HelloWorld.x10 │ │ ├── Histogram.x10 │ │ ├── Integrate.x10 │ │ ├── KMeans.x10 │ │ ├── KMeansDist.x10 │ │ ├── KMeansDistPlh.x10 │ │ ├── KMeansSPMD.x10 │ │ ├── MontyPi.x10 │ │ ├── NQueensDist.x10 │ │ ├── NQueensPar.x10 │ │ ├── QSort.x10 │ │ └── StructSpheres.x10 │ ├── XC/ │ │ └── main.xc │ ├── XCompose/ │ │ └── filenames/ │ │ └── XCompose │ ├── XML/ │ │ ├── 01_top.ncl │ │ ├── Application.xib │ │ ├── CSharpVSPackage.vstemplate │ │ ├── Case.workflow │ │ ├── Deep_Ocean.icls │ │ ├── Default.props │ │ ├── Demo.sfproj │ │ ├── Example.mdpolicy │ │ ├── Example.mojo │ │ ├── FXMLSample.fxml │ │ ├── GMOculus.project.gmx │ │ ├── HITSP_C32.sch │ │ ├── JSBrowser.jsproj │ │ ├── MDM.adml │ │ ├── MDM.admx │ │ ├── MainView.axaml │ │ ├── MainView.ux │ │ ├── MyApp.ux │ │ ├── NDepends_Example.ndproj │ │ ├── Robots.slnx │ │ ├── Storyboard.storyboard │ │ ├── Strings.resx │ │ ├── System.Buffers.pkgproj │ │ ├── WebElement.rs │ │ ├── Win64.pubxml │ │ ├── XmlIO.pluginspec │ │ ├── battlescribe.gst │ │ ├── chrome.natvis │ │ ├── cloudconfig.cscfg │ │ ├── clouddef.csdef │ │ ├── configdef.cscfg │ │ ├── csproj-sample.csproj │ │ ├── demo.hzp │ │ ├── dependency-example.depproj │ │ ├── example-sharedproj.shproj │ │ ├── example.ccproj │ │ ├── example.typ │ │ ├── filenames/ │ │ │ └── .cproject │ │ ├── fsproj-sample.fsproj │ │ ├── holobloc-sample.res │ │ ├── intellij.iml │ │ ├── libsomething.dll.config │ │ ├── main.ncl │ │ ├── module.ant │ │ ├── module.ivy │ │ ├── msbuild-example.proj │ │ ├── namespace-strict.sch │ │ ├── net_docfile.xml │ │ ├── nproj-sample.nproj │ │ ├── oasis-table.sch │ │ ├── obj_control.object.gmx │ │ ├── phpunit.xml.dist │ │ ├── point-3.1.gml │ │ ├── point-3.2.gml │ │ ├── psd-data.xmp │ │ ├── pt_BR.ts │ │ ├── pt_BR.xml │ │ ├── racoon.mjml │ │ ├── real-estate.mjml │ │ ├── receiver.ncl │ │ ├── route-gas-works-lake-union-loop.gpx │ │ ├── sample.csl │ │ ├── sample.nuspec │ │ ├── sample.targets │ │ ├── some-ideas.mm │ │ ├── source.extension.vsixmanifest │ │ ├── src.builds │ │ ├── switch-configuration-example.sw │ │ ├── tei-odd-sample.odd │ │ ├── translation_en3.ts │ │ ├── vbproj-sample.vbproj │ │ ├── vcxproj-sample.vcxproj │ │ ├── vcxproj-sample.vcxproj.filters │ │ ├── water.tsx │ │ ├── wixdemo.wixproj │ │ ├── xhtml-struct-1.mod │ │ └── xquery-tutorial.xspec │ ├── XML Property List/ │ │ ├── And.tmSnippet │ │ ├── Completion.tmCommand │ │ ├── Folding.tmPreferences │ │ ├── Man.tmLanguage │ │ ├── SpaceCadet.tmTheme │ │ ├── ff-man.plist │ │ ├── info.min.plist │ │ ├── info.plist │ │ ├── man.plist │ │ └── widget.stTheme │ ├── XPages/ │ │ ├── navbar.xsp-config │ │ └── navbar.xsp.metadata │ ├── XProc/ │ │ └── xproc.xpl │ ├── XQuery/ │ │ └── xproc.xqm │ ├── XS/ │ │ └── CommonMark.xs │ ├── XSLT/ │ │ └── test.xslt │ ├── Xmake/ │ │ └── filenames/ │ │ └── xmake.lua │ ├── Xojo/ │ │ ├── App.xojo_code │ │ ├── BillingReport.xojo_report │ │ ├── MainMenuBar.xojo_menu │ │ ├── MyToolbar.xojo_toolbar │ │ ├── Window1.xojo_window │ │ └── database.xojo_script │ ├── Xonsh/ │ │ └── rever.xsh │ ├── Xtend/ │ │ ├── BasicExpressions.xtend │ │ └── Movies.xtend │ ├── YAML/ │ │ ├── 229Q.yaml │ │ ├── Ansible.YAML-tmLanguage │ │ ├── HexInspect.sublime-syntax │ │ ├── coredns.yaml.sed │ │ ├── database.yml.mysql │ │ ├── expected-floating-point-literal.mir │ │ ├── filenames/ │ │ │ ├── .clang-format │ │ │ ├── .clang-tidy │ │ │ ├── .clangd │ │ │ ├── .gemrc │ │ │ └── CITATION.cff │ │ ├── source.r-console.syntax │ │ └── vcr_cassette.yml │ ├── YANG/ │ │ └── sfc-lisp-impl.yang │ ├── YARA/ │ │ ├── OfExample.yar │ │ ├── example.yara │ │ └── true.yar │ ├── YASnippet/ │ │ ├── font-face.yasnippet │ │ └── stdin.yasnippet │ ├── Yacc/ │ │ └── calc.yy │ ├── Yul/ │ │ ├── contract.yul │ │ └── erc20.yul │ ├── ZAP/ │ │ └── planetfall.zap │ ├── ZIL/ │ │ └── misc.zil │ ├── Zeek/ │ │ ├── example.zeek │ │ ├── main.bro │ │ └── main.zeek │ ├── ZenScript/ │ │ └── sample.zs │ ├── Zephir/ │ │ ├── Cblock.zep │ │ └── Router.zep │ ├── Zig/ │ │ ├── build.zig.zon │ │ ├── cat.zig │ │ ├── guess_number.zig │ │ └── hello.zig │ ├── Zimpl/ │ │ └── sample.zmpl │ ├── Zmodel/ │ │ ├── blog.zmodel │ │ ├── saas.zmodel │ │ └── todo.zmodel │ ├── cURL Config/ │ │ └── filenames/ │ │ └── .curlrc │ ├── crontab/ │ │ └── filenames/ │ │ └── crontab │ ├── desktop/ │ │ ├── example.desktop │ │ └── nebula.service │ ├── dircolors/ │ │ └── sample.dircolors │ ├── eC/ │ │ └── Designer.ec │ ├── edn/ │ │ └── bigger-than-pluto.edn │ ├── fish/ │ │ ├── config.fish │ │ ├── eval.fish │ │ └── funced.fish │ ├── hoon/ │ │ ├── canvas.hoon │ │ └── eyre.hoon │ ├── iCalendar/ │ │ ├── 2024.ics │ │ └── todo-2.ical │ ├── jq/ │ │ ├── builtin.jq │ │ └── sample.jq │ ├── kvlang/ │ │ └── showcase.kv │ ├── mIRC Script/ │ │ ├── AutoHostmeBot.mrc │ │ ├── torncity-apiprofile.mrc │ │ ├── torncity-tcbot.mrc │ │ └── torncity-tsspy.mrc │ ├── mcfunction/ │ │ └── showcase.mcfunction │ ├── mdsvex/ │ │ └── Stores.svx │ ├── nanorc/ │ │ ├── filenames/ │ │ │ ├── .nanorc │ │ │ └── nanorc │ │ └── nanorc.nanorc │ ├── q/ │ │ ├── ml.q │ │ └── tq.q │ ├── reStructuredText/ │ │ └── HACKING.rst.txt │ ├── robots.txt/ │ │ └── filenames/ │ │ └── robots.txt │ ├── sed/ │ │ └── hanoi.sed │ ├── templ/ │ │ └── posts.templ │ ├── vCard/ │ │ ├── forrest-gump.vcf │ │ └── vcard.vcf │ ├── wisp/ │ │ └── intro.wisp │ └── xBase/ │ ├── sample.ch │ ├── sample.prg │ └── sample.prw ├── script/ │ ├── add-grammar │ ├── bootstrap │ ├── build-grammars-tarball │ ├── cibuild │ ├── cross-validation │ ├── fast-submodule-update │ ├── grammar-compiler │ ├── list-grammars │ ├── normalise-url │ ├── sort-submodules │ └── update-ids ├── test/ │ ├── fixtures/ │ │ ├── ActionScript/ │ │ │ ├── Functional.as │ │ │ ├── GlobalVariables.as │ │ │ ├── ImportAll.as │ │ │ ├── Intrinsic.as │ │ │ ├── Minimal.as │ │ │ └── Versioning.as │ │ ├── Binary/ │ │ │ ├── cube.stl │ │ │ ├── dog.o │ │ │ ├── foo bar.jar │ │ │ ├── git.deb │ │ │ ├── github.po │ │ │ ├── hello.pbc │ │ │ ├── octocat.ai │ │ │ ├── octocat.psd │ │ │ └── zip │ │ ├── C/ │ │ │ ├── image.c │ │ │ └── image.h │ │ ├── CMake/ │ │ │ └── CMakeLists.txt │ │ ├── CoffeeScript/ │ │ │ └── Cakefile │ │ ├── Data/ │ │ │ ├── Manpages/ │ │ │ │ ├── bsdmalloc.3malloc │ │ │ │ ├── dirent.h.0p │ │ │ │ ├── linguist.1gh │ │ │ │ ├── test.1.in │ │ │ │ ├── test.2.in │ │ │ │ ├── test.3.in │ │ │ │ ├── test.4.in │ │ │ │ ├── test.5.in │ │ │ │ ├── test.6.in │ │ │ │ ├── test.7.in │ │ │ │ ├── test.8.in │ │ │ │ ├── test.9.in │ │ │ │ ├── test.man.in │ │ │ │ └── test.mdoc.in │ │ │ ├── Modelines/ │ │ │ │ ├── example_smalltalk.md │ │ │ │ ├── fundamentalEmacs.c │ │ │ │ ├── iamjs.pl │ │ │ │ ├── iamjs2.pl │ │ │ │ ├── iamphp.inc │ │ │ │ ├── not_perl.pl │ │ │ │ ├── ruby │ │ │ │ ├── ruby10 │ │ │ │ ├── ruby11 │ │ │ │ ├── ruby12 │ │ │ │ ├── ruby2 │ │ │ │ ├── ruby3 │ │ │ │ ├── ruby4 │ │ │ │ ├── ruby5 │ │ │ │ ├── ruby6 │ │ │ │ ├── ruby7 │ │ │ │ ├── ruby8 │ │ │ │ ├── ruby9 │ │ │ │ ├── seeplusplus │ │ │ │ ├── seeplusplusEmacs1 │ │ │ │ ├── seeplusplusEmacs10 │ │ │ │ ├── seeplusplusEmacs11 │ │ │ │ ├── seeplusplusEmacs12 │ │ │ │ ├── seeplusplusEmacs2 │ │ │ │ ├── seeplusplusEmacs3 │ │ │ │ ├── seeplusplusEmacs4 │ │ │ │ ├── seeplusplusEmacs5 │ │ │ │ ├── seeplusplusEmacs6 │ │ │ │ ├── seeplusplusEmacs7 │ │ │ │ ├── seeplusplusEmacs8 │ │ │ │ └── seeplusplusEmacs9 │ │ │ ├── README │ │ │ ├── blank │ │ │ ├── defu.nkt │ │ │ ├── iso8859-8-i │ │ │ ├── md │ │ │ ├── txt │ │ │ ├── utf16le │ │ │ └── utf16le-windows │ │ ├── Dockerfile/ │ │ │ └── Dockerfile │ │ ├── Generated/ │ │ │ ├── ABM8G.mod │ │ │ ├── Haxe/ │ │ │ │ ├── Main.cpp │ │ │ │ ├── Main.cs │ │ │ │ ├── Main.h │ │ │ │ ├── Main.java │ │ │ │ ├── Main.php │ │ │ │ ├── main.js │ │ │ │ ├── main.lua │ │ │ │ └── main.py │ │ │ ├── inline.css │ │ │ ├── inline.js │ │ │ ├── linked.css │ │ │ ├── ms2.mod │ │ │ ├── options_main.inherited.yy │ │ │ └── ppport.h │ │ ├── Generic/ │ │ │ ├── 1/ │ │ │ │ ├── Roff/ │ │ │ │ │ └── as.1 │ │ │ │ ├── Roff Manpage/ │ │ │ │ │ └── npm.1 │ │ │ │ └── Text/ │ │ │ │ └── ellipses.1 │ │ │ ├── 2/ │ │ │ │ ├── Roff/ │ │ │ │ │ └── fstat.2 │ │ │ │ ├── Roff Manpage/ │ │ │ │ │ └── sched_yield.2 │ │ │ │ └── Text/ │ │ │ │ └── foo.2 │ │ │ ├── 3/ │ │ │ │ ├── Roff/ │ │ │ │ │ └── pow.3 │ │ │ │ ├── Roff Manpage/ │ │ │ │ │ └── wcsftime.3 │ │ │ │ └── Text/ │ │ │ │ └── wise-men.3 │ │ │ ├── 4/ │ │ │ │ ├── Roff/ │ │ │ │ │ ├── cat.4 │ │ │ │ │ └── sample.4 │ │ │ │ ├── Roff Manpage/ │ │ │ │ │ └── vio.4 │ │ │ │ └── Text/ │ │ │ │ └── fantastic.4 │ │ │ ├── 5/ │ │ │ │ ├── Roff/ │ │ │ │ │ └── core.5 │ │ │ │ ├── Roff Manpage/ │ │ │ │ │ └── wsconsctl.conf.5 │ │ │ │ └── Text/ │ │ │ │ └── fingers.5 │ │ │ ├── 6/ │ │ │ │ ├── Roff/ │ │ │ │ │ └── moo.6 │ │ │ │ ├── Roff Manpage/ │ │ │ │ │ └── wump.6 │ │ │ │ └── Text/ │ │ │ │ └── 66.6 │ │ │ ├── 7/ │ │ │ │ ├── Roff/ │ │ │ │ │ └── greek.7 │ │ │ │ ├── Roff Manpage/ │ │ │ │ │ └── jg-coding-style.7 │ │ │ │ └── Text/ │ │ │ │ └── samurai.7 │ │ │ ├── 8/ │ │ │ │ ├── Roff/ │ │ │ │ │ └── ino.8 │ │ │ │ ├── Roff Manpage/ │ │ │ │ │ └── wsconsctl.8 │ │ │ │ └── Text/ │ │ │ │ └── the-hateful.8 │ │ │ ├── 9/ │ │ │ │ ├── Roff/ │ │ │ │ │ └── vs.9 │ │ │ │ ├── Roff Manpage/ │ │ │ │ │ └── vwakeup.9 │ │ │ │ └── Text/ │ │ │ │ └── muses.9 │ │ │ ├── app/ │ │ │ │ ├── Erlang/ │ │ │ │ │ └── regular.app │ │ │ │ └── nil/ │ │ │ │ └── ignored.app │ │ │ ├── cmp/ │ │ │ │ ├── Gerber Image/ │ │ │ │ │ └── gerber1.cmp │ │ │ │ └── nil/ │ │ │ │ └── ignored1.cmp │ │ │ ├── msg/ │ │ │ │ ├── OMNeT++ MSG/ │ │ │ │ │ └── GptpPacket.msg │ │ │ │ └── ROS Interface/ │ │ │ │ └── Marker.msg │ │ │ ├── sol/ │ │ │ │ ├── Gerber Image/ │ │ │ │ │ ├── gerber1.sol │ │ │ │ │ └── gerber2.sol │ │ │ │ ├── Solidity/ │ │ │ │ │ ├── legacy1.sol │ │ │ │ │ ├── legacy2.sol │ │ │ │ │ └── modern.sol │ │ │ │ └── nil/ │ │ │ │ ├── ignored1.sol │ │ │ │ └── ignored2.sol │ │ │ ├── stl/ │ │ │ │ ├── STL/ │ │ │ │ │ ├── cube1.stl │ │ │ │ │ ├── cube2.stl │ │ │ │ │ └── cube3.stl │ │ │ │ └── nil/ │ │ │ │ ├── coords.stl │ │ │ │ ├── invalid1.stl │ │ │ │ ├── invalid2.stl │ │ │ │ └── unrelated.stl │ │ │ ├── tag/ │ │ │ │ ├── Java Server Pages/ │ │ │ │ │ └── skeleton_page.tag │ │ │ │ └── nil/ │ │ │ │ └── ignored.tag │ │ │ └── url/ │ │ │ ├── INI/ │ │ │ │ ├── extended.url │ │ │ │ ├── frameset.url │ │ │ │ ├── minimal.http.url │ │ │ │ ├── minimal.mailto.url │ │ │ │ ├── other-fields.url │ │ │ │ └── 绿盟.url │ │ │ └── nil/ │ │ │ ├── broken-assignment.url │ │ │ ├── broken-header.url │ │ │ ├── broken-section.url │ │ │ └── literal.url │ │ ├── HTML/ │ │ │ ├── attr-swapped.html │ │ │ ├── extra-attr.html │ │ │ ├── extra-spaces.html │ │ │ ├── extra-tags.html │ │ │ ├── grohtml.html │ │ │ ├── grohtml.xhtml │ │ │ ├── makeinfo.html │ │ │ ├── mandoc.html │ │ │ ├── no-content.html │ │ │ ├── node78.html │ │ │ ├── org-mode.html │ │ │ ├── quotes-double.html │ │ │ ├── quotes-none.html │ │ │ ├── quotes-single.html │ │ │ ├── ronn.html │ │ │ ├── unknown.html │ │ │ └── uppercase.html │ │ ├── MATLAB/ │ │ │ └── colorspace.m │ │ ├── Makefile/ │ │ │ └── Makefile │ │ ├── Maven POM/ │ │ │ └── pom.xml │ │ ├── Perl/ │ │ │ ├── 01-methods.pl │ │ │ └── Module.pm │ │ ├── Python/ │ │ │ └── run_tests.module │ │ ├── Raku/ │ │ │ └── chromosome.pl │ │ ├── Ruby/ │ │ │ └── foo.rb │ │ ├── Rust/ │ │ │ └── .sqlx/ │ │ │ └── query-2b8b1aae3740a05cb7179be9c7d5af30e8362c3cba0b07bc18fa32ff1a2232cc.json │ │ ├── SQL/ │ │ │ ├── set_at_at.sql │ │ │ └── sysdate.sql │ │ ├── Shell/ │ │ │ ├── _bashrc │ │ │ ├── ash-env │ │ │ ├── crossbuild_liblua5.1 │ │ │ ├── dash-env │ │ │ ├── graylog2-server.init.d │ │ │ ├── ksh-env │ │ │ ├── mintleaf.module │ │ │ ├── mksh │ │ │ ├── pdksh-env │ │ │ └── sh │ │ ├── Text/ │ │ │ ├── 2.1.3 │ │ │ ├── ISO-2022-KR.txt │ │ │ └── output.2 │ │ ├── TypeScript/ │ │ │ └── main │ │ ├── VBA/ │ │ │ └── sample.bas │ │ ├── XML/ │ │ │ ├── AssertionIDRequestOptionalAttributes.xml.svn-base │ │ │ └── app.config │ │ └── go/ │ │ └── food_vendor/ │ │ └── candy.go │ ├── helper.rb │ ├── test_basic_instrumenter.rb │ ├── test_blob.rb │ ├── test_classifier.rb │ ├── test_cli_integration.rb │ ├── test_file_blob.rb │ ├── test_generated.rb │ ├── test_grammars.rb │ ├── test_heuristics.rb │ ├── test_instrumentation.rb │ ├── test_language.rb │ ├── test_pedantic.rb │ ├── test_repository.rb │ ├── test_samples.rb │ ├── test_sha256.rb │ ├── test_strategies.rb │ └── test_tokenizer.rb ├── tools/ │ └── grammars/ │ ├── .gitignore │ ├── Dockerfile │ ├── cmd/ │ │ └── grammar-compiler/ │ │ └── main.go │ ├── compiler/ │ │ ├── converter.go │ │ ├── cson.go │ │ ├── data.go │ │ ├── errors.go │ │ ├── loader.go │ │ ├── loader_fs.go │ │ ├── loader_url.go │ │ ├── pcre.go │ │ ├── pcre_test.go │ │ ├── proto.go │ │ └── walker.go │ ├── docker/ │ │ └── build │ ├── go.mod │ ├── go.sum │ ├── pcre/ │ │ └── pcre.go │ └── proto/ │ └── grammar.pb.go ├── utils.liq └── vendor/ ├── README.md └── licenses/ ├── config.yml ├── git_submodule/ │ ├── AL.dep.yml │ ├── Alloy.tmbundle.dep.yml │ ├── Assembly-Syntax-Definition.dep.yml │ ├── Atom-PostScript.dep.yml │ ├── AtomLanguageVelocity.dep.yml │ ├── AutoHotkey.dep.yml │ ├── CUE-Sheet_sublime.dep.yml │ ├── Clue-for-VSCode.dep.yml │ ├── CoDT7-Sublime.dep.yml │ ├── CodeMirror.dep.yml │ ├── ColdFusion.dep.yml │ ├── CookVSCode.dep.yml │ ├── Cylc.tmbundle.dep.yml │ ├── Dafny-VSCode.dep.yml │ ├── Docker.tmbundle.dep.yml │ ├── Elm.dep.yml │ ├── FreeMarker.tmbundle.dep.yml │ ├── GeneroFgl.tmbundle.dep.yml │ ├── Handlebars.dep.yml │ ├── IDL-Syntax.dep.yml │ ├── Isabelle.tmbundle.dep.yml │ ├── JSyntax.dep.yml │ ├── Jails.dep.yml │ ├── K-VSCode.dep.yml │ ├── LOLCODE-grammar-vscode.dep.yml │ ├── Ligo-grammar.dep.yml │ ├── Linker.tmLanguage.dep.yml │ ├── Luau.tmLanguage.dep.yml │ ├── MATLAB-Language-grammar.dep.yml │ ├── MQL5-sublime.dep.yml │ ├── MagicPython.dep.yml │ ├── Modelica.dep.yml │ ├── NSIS.dep.yml │ ├── Nasal.tmbundle.dep.yml │ ├── NimLime.dep.yml │ ├── NovaGrammars.dep.yml │ ├── ObjectScript.tmBundle.dep.yml │ ├── PHP-Twig.tmbundle.dep.yml │ ├── PogoScript.tmbundle.dep.yml │ ├── PowerBuilder.tmbundle.dep.yml │ ├── RDoc.tmbundle.dep.yml │ ├── Racket.dep.yml │ ├── SMT.tmbundle.dep.yml │ ├── Scalate.tmbundle.dep.yml │ ├── Scenic-tmLanguage.dep.yml │ ├── Slash.tmbundle.dep.yml │ ├── Stata.tmbundle.dep.yml │ ├── Stylus.dep.yml │ ├── Sublime-Coq.dep.yml │ ├── Sublime-HTTP.dep.yml │ ├── Sublime-Lasso.dep.yml │ ├── Sublime-Loom.dep.yml │ ├── Sublime-Modula-2.dep.yml │ ├── Sublime-Nit.dep.yml │ ├── Sublime-Pep8.dep.yml │ ├── Sublime-QML.dep.yml │ ├── Sublime-REBOL.dep.yml │ ├── Sublime-Red.dep.yml │ ├── Sublime-SQF-Language.dep.yml │ ├── SublimeBrainfuck.dep.yml │ ├── SublimeClarion.dep.yml │ ├── SublimeEthereum.dep.yml │ ├── SublimeGDB.dep.yml │ ├── SublimePapyrus.dep.yml │ ├── SublimePuppet.dep.yml │ ├── SublimeXtend.dep.yml │ ├── Syntax-highlighting-for-PostCSS.dep.yml │ ├── SystemVerilog.dep.yml │ ├── TLA.dep.yml │ ├── TXL.dep.yml │ ├── Textmate-Gosu-Bundle.dep.yml │ ├── TypeScript-TmLanguage.dep.yml │ ├── UrWeb-Language-Definition.dep.yml │ ├── VBDotNetSyntax.dep.yml │ ├── Vala-TMBundle.dep.yml │ ├── VscodeAdblockSyntax.dep.yml │ ├── WhileySyntaxBundle.dep.yml │ ├── X10.dep.yml │ ├── XojoSyntaxTM.dep.yml │ ├── ZenScript-tmLanguage.dep.yml │ ├── abap-cds-grammar.dep.yml │ ├── abap.tmbundle.dep.yml │ ├── abl-tmlanguage.dep.yml │ ├── actionscript3-tmbundle.dep.yml │ ├── ada.tmbundle.dep.yml │ ├── agda-github-syntax-highlighting.dep.yml │ ├── aidl-language.dep.yml │ ├── ampl.dep.yml │ ├── android-system-tools.dep.yml │ ├── ant.tmbundle.dep.yml │ ├── antlr.tmbundle.dep.yml │ ├── apex-tmLanguage.dep.yml │ ├── api-blueprint-sublime-plugin.dep.yml │ ├── applescript.tmbundle.dep.yml │ ├── asciidoc.tmbundle.dep.yml │ ├── asp-syntax-highlight.dep.yml │ ├── asp.tmbundle.dep.yml │ ├── assembly.dep.yml │ ├── astro.dep.yml │ ├── atom-editorconfig.dep.yml │ ├── atom-firestore-grammar.dep.yml │ ├── atom-fstar.dep.yml │ ├── atom-language-clean.dep.yml │ ├── atom-language-haproxy.dep.yml │ ├── atom-language-innosetup.dep.yml │ ├── atom-language-julia.dep.yml │ ├── atom-language-nextflow.dep.yml │ ├── atom-language-p4.dep.yml │ ├── atom-language-perl6.dep.yml │ ├── atom-language-purescript.dep.yml │ ├── atom-language-stan.dep.yml │ ├── atom-miniyaml.dep.yml │ ├── atom-salt.dep.yml │ ├── ats.dep.yml │ ├── avro.tmLanguage.dep.yml │ ├── awk-sublime.dep.yml │ ├── b-vscode.dep.yml │ ├── ballerina-grammar.dep.yml │ ├── berry-grammar.dep.yml │ ├── bicep.dep.yml │ ├── bikeshed.dep.yml │ ├── blitzmax.dep.yml │ ├── boogie-vscode.dep.yml │ ├── bqn-vscode.dep.yml │ ├── browserslist-vscode.dep.yml │ ├── bruno-ide-extensions.dep.yml │ ├── bst.tmLanguage.dep.yml │ ├── c.tmbundle.dep.yml │ ├── cairo-tm-grammar.dep.yml │ ├── capnproto.tmbundle.dep.yml │ ├── carto-atom.dep.yml │ ├── cds-textmate-grammar.dep.yml │ ├── ceylon-sublimetext.dep.yml │ ├── chapel-tmbundle.dep.yml │ ├── circom-highlighting-vscode.dep.yml │ ├── clarity.tmbundle.dep.yml │ ├── code-peggy-language.dep.yml │ ├── common-lisp-tmlanguage.dep.yml │ ├── conllu-linguist-grammar.dep.yml │ ├── cool-tmbundle.dep.yml │ ├── cpp-qt.tmbundle.dep.yml │ ├── cqlTextMate.dep.yml │ ├── creole.dep.yml │ ├── cron.tmbundle.dep.yml │ ├── csharp-tmLanguage.dep.yml │ ├── cucumber-tmbundle.dep.yml │ ├── cython.dep.yml │ ├── d.tmbundle.dep.yml │ ├── d2-vscode.dep.yml │ ├── dart-syntax-highlight.dep.yml │ ├── daslang-grammar.dep.yml │ ├── data-weave-tmLanguage.dep.yml │ ├── denizenscript-grammar.dep.yml │ ├── desktop.tmbundle.dep.yml │ ├── diff.tmbundle.dep.yml │ ├── dm-syntax.dep.yml │ ├── dylan.tmbundle.dep.yml │ ├── earthfile-grammar.dep.yml │ ├── ec.tmbundle.dep.yml │ ├── ecl-tmLanguage.dep.yml │ ├── edge-vscode.dep.yml │ ├── edgedb-editor-plugin.dep.yml │ ├── eiffel.tmbundle.dep.yml │ ├── ejs-tmbundle.dep.yml │ ├── elixir-tmbundle.dep.yml │ ├── elvish.dep.yml │ ├── factor.dep.yml │ ├── fancy-tmbundle.dep.yml │ ├── firrtl-syntax.dep.yml │ ├── fish-tmbundle.dep.yml │ ├── forth.dep.yml │ ├── fortran.tmbundle.dep.yml │ ├── gap-tmbundle.dep.yml │ ├── gemfile-lock-tmlanguage.dep.yml │ ├── gemini-vscode.dep.yml │ ├── gettext.tmbundle.dep.yml │ ├── gnuplot-tmbundle.dep.yml │ ├── go-tmbundle.dep.yml │ ├── godot-vscode-plugin.dep.yml │ ├── grace.dep.yml │ ├── gradle.tmbundle.dep.yml │ ├── grammar.dep.yml │ ├── graphiql.dep.yml │ ├── graphviz.tmbundle.dep.yml │ ├── groovy.tmbundle.dep.yml │ ├── haxe-TmLanguage.dep.yml │ ├── holyc.tmbundle.dep.yml │ ├── hoon-grammar.dep.yml │ ├── iCalendar-sublime.dep.yml │ ├── ide-tools.dep.yml │ ├── idl.tmbundle.dep.yml │ ├── idris.dep.yml │ ├── imba-linguist-grammar.dep.yml │ ├── ini.tmbundle.dep.yml │ ├── ink-tmlanguage.dep.yml │ ├── io.tmbundle.dep.yml │ ├── ioke-outdated.dep.yml │ ├── ionide-fsgrammar.dep.yml │ ├── ispc.syntax.dep.yml │ ├── jac-vscode.dep.yml │ ├── jade-tmbundle.dep.yml │ ├── jasmin-sublime.dep.yml │ ├── java.tmbundle.dep.yml │ ├── javadoc.tmbundle.dep.yml │ ├── javascript-objective-j.tmbundle.dep.yml │ ├── jflex.tmbundle.dep.yml │ ├── jte-template-syntax-highlight.dep.yml │ ├── kivy-language-grammer.dep.yml │ ├── koka-textmate-grammar.dep.yml │ ├── kusto-sublime.dep.yml │ ├── language-4d.dep.yml │ ├── language-agc.dep.yml │ ├── language-algol60.dep.yml │ ├── language-apl.dep.yml │ ├── language-asl.dep.yml │ ├── language-asn1.dep.yml │ ├── language-basic.dep.yml │ ├── language-batchfile.dep.yml │ ├── language-bh.dep.yml │ ├── language-blade.dep.yml │ ├── language-click.dep.yml │ ├── language-clojure.dep.yml │ ├── language-closure-templates.dep.yml │ ├── language-coffee-script.dep.yml │ ├── language-crystal.dep.yml │ ├── language-csound.dep.yml │ ├── language-css.dep.yml │ ├── language-cwl.dep.yml │ ├── language-debian.dep.yml │ ├── language-dircolors.dep.yml │ ├── language-dsv.dep.yml │ ├── language-emacs-lisp.dep.yml │ ├── language-eml.dep.yml │ ├── language-etc.dep.yml │ ├── language-faust.dep.yml │ ├── language-fontforge.dep.yml │ ├── language-gf.dep.yml │ ├── language-gn.dep.yml │ ├── language-grammars.dep.yml │ ├── language-haml.dep.yml │ ├── language-haskell.dep.yml │ ├── language-hocon.dep.yml │ ├── language-hql.dep.yml │ ├── language-html.dep.yml │ ├── language-hurl.dep.yml │ ├── language-igor.dep.yml │ ├── language-inform7.dep.yml │ ├── language-javascript.dep.yml │ ├── language-jison.dep.yml │ ├── language-jolie.dep.yml │ ├── language-jq.dep.yml │ ├── language-jsoniq.dep.yml │ ├── language-jsonnet.dep.yml │ ├── language-kak.dep.yml │ ├── language-kerboscript.dep.yml │ ├── language-kickstart.dep.yml │ ├── language-kotlin.dep.yml │ ├── language-langium.dep.yml │ ├── language-less.dep.yml │ ├── language-m68k.dep.yml │ ├── language-macaulay2.dep.yml │ ├── language-maxscript.dep.yml │ ├── language-mermaid.dep.yml │ ├── language-meson.dep.yml │ ├── language-msl.dep.yml │ ├── language-ncl.dep.yml │ ├── language-ninja.dep.yml │ ├── language-nunjucks.dep.yml │ ├── language-pan.dep.yml │ ├── language-pcb.dep.yml │ ├── language-povray.dep.yml │ ├── language-property-list.dep.yml │ ├── language-pyret.dep.yml │ ├── language-qasm.dep.yml │ ├── language-reason.dep.yml │ ├── language-reg.dep.yml │ ├── language-regexp.dep.yml │ ├── language-renpy.dep.yml │ ├── language-restructuredtext.dep.yml │ ├── language-ring.dep.yml │ ├── language-roff.dep.yml │ ├── language-rpm-spec.dep.yml │ ├── language-rtf.dep.yml │ ├── language-ruby.dep.yml │ ├── language-sass.dep.yml │ ├── language-sed.dep.yml │ ├── language-shellscript.dep.yml │ ├── language-subtitles.dep.yml │ ├── language-supercollider.dep.yml │ ├── language-texinfo.dep.yml │ ├── language-ti-basic.dep.yml │ ├── language-toc-wow.dep.yml │ ├── language-tools.dep.yml │ ├── language-tsql.dep.yml │ ├── language-turing.dep.yml │ ├── language-typelanguage.dep.yml │ ├── language-viml.dep.yml │ ├── language-wavefront.dep.yml │ ├── language-webassembly.dep.yml │ ├── language-xbase.dep.yml │ ├── language-xcompose.dep.yml │ ├── language-yaml.dep.yml │ ├── language-yang.dep.yml │ ├── latex.tmbundle.dep.yml │ ├── leo-linguist.dep.yml │ ├── linter-lilypond.dep.yml │ ├── liquid-tm-grammar.dep.yml │ ├── lisp.tmbundle.dep.yml │ ├── livescript-vscode.dep.yml │ ├── llvm.tmbundle.dep.yml │ ├── logos.dep.yml │ ├── logtalk.tmbundle.dep.yml │ ├── lua.tmbundle.dep.yml │ ├── m3.dep.yml │ ├── make.tmbundle.dep.yml │ ├── mako-tmbundle.dep.yml │ ├── markdown-tm-language.dep.yml │ ├── marko-tmbundle.dep.yml │ ├── mathematica-tmbundle.dep.yml │ ├── maven.tmbundle.dep.yml │ ├── mediawiki.tmbundle.dep.yml │ ├── mercury-tmlanguage.dep.yml │ ├── metta-textmate-linguist.dep.yml │ ├── mint-vscode.dep.yml │ ├── mlir-grammar.dep.yml │ ├── mojo-syntax.dep.yml │ ├── monkey.dep.yml │ ├── moonbit-tmLanguage.dep.yml │ ├── moonscript-tmbundle.dep.yml │ ├── mps-vscode.dep.yml │ ├── nemerle.tmbundle.dep.yml │ ├── nesC.dep.yml │ ├── nickel.dep.yml │ ├── nix-linguist.dep.yml │ ├── nu-grammar.dep.yml │ ├── nu.tmbundle.dep.yml │ ├── objective-c.tmbundle.dep.yml │ ├── ocaml.tmbundle.dep.yml │ ├── omnetpp-textmate-msg.dep.yml │ ├── omnetpp-textmate-ned.dep.yml │ ├── ooc.tmbundle.dep.yml │ ├── opa.tmbundle.dep.yml │ ├── openscad.tmbundle.dep.yml │ ├── overpassql-tmlanguage.dep.yml │ ├── oz-tmbundle.dep.yml │ ├── pact-atom.dep.yml │ ├── parrot.dep.yml │ ├── pascal.tmbundle.dep.yml │ ├── pawn-sublime-language.dep.yml │ ├── perl.tmbundle.dep.yml │ ├── php-smarty.tmbundle.dep.yml │ ├── php.tmbundle.dep.yml │ ├── pig-latin.dep.yml │ ├── pike-textmate.dep.yml │ ├── pkl.tmbundle.dep.yml │ ├── playground-cj.dep.yml │ ├── polar-grammar.dep.yml │ ├── portugol-grammar.dep.yml │ ├── powershell.dep.yml │ ├── praatvscode.dep.yml │ ├── processing.tmbundle.dep.yml │ ├── python-django.tmbundle.dep.yml │ ├── qsharp.dep.yml │ ├── quake.dep.yml │ ├── quakec-syntax.dep.yml │ ├── r.tmbundle.dep.yml │ ├── rascal-syntax-highlighting.dep.yml │ ├── rascript-syntax.dep.yml │ ├── razor-plus.dep.yml │ ├── rescript-vscode.dep.yml │ ├── rez.tmbundle.dep.yml │ ├── riot-syntax-highlight.dep.yml │ ├── roc-vscode-unofficial.dep.yml │ ├── ros-tmlanguage.dep.yml │ ├── rust-syntax.dep.yml │ ├── rust_hdl_vscode.dep.yml │ ├── sail_vscode.dep.yml │ ├── sas.tmbundle.dep.yml │ ├── scheme.tmbundle.dep.yml │ ├── scilab.tmbundle.dep.yml │ ├── secondlife-lsl.dep.yml │ ├── selinux-policy-languages.dep.yml │ ├── shaders-tmLanguage.dep.yml │ ├── slang-vscode-extension.dep.yml │ ├── slint-tmLanguage.dep.yml │ ├── smali-sublime.dep.yml │ ├── smalltalk-tmbundle.dep.yml │ ├── smithy-vscode.dep.yml │ ├── sourcepawn-vscode.dep.yml │ ├── sprocket-vscode.dep.yml │ ├── sql.tmbundle.dep.yml │ ├── squirrel-language.dep.yml │ ├── st2-zonefile.dep.yml │ ├── standard-ml.tmbundle.dep.yml │ ├── sublime-MuPAD.dep.yml │ ├── sublime-angelscript.dep.yml │ ├── sublime-aspectj.dep.yml │ ├── sublime-autoit.dep.yml │ ├── sublime-befunge.dep.yml │ ├── sublime-boo.dep.yml │ ├── sublime-bsv.dep.yml │ ├── sublime-cirru.dep.yml │ ├── sublime-clips.dep.yml │ ├── sublime-cypher.dep.yml │ ├── sublime-fantom.dep.yml │ ├── sublime-glsl.dep.yml │ ├── sublime-golo.dep.yml │ ├── sublime-lambdapi.dep.yml │ ├── sublime-mask.dep.yml │ ├── sublime-nearley.dep.yml │ ├── sublime-netlinx.dep.yml │ ├── sublime-odin.dep.yml │ ├── sublime-opal.dep.yml │ ├── sublime-pony.dep.yml │ ├── sublime-promela-spin.dep.yml │ ├── sublime-q.dep.yml │ ├── sublime-rexx.dep.yml │ ├── sublime-robot-plugin.dep.yml │ ├── sublime-shen.dep.yml │ ├── sublime-spintools.dep.yml │ ├── sublime-tea.dep.yml │ ├── sublime-terra.dep.yml │ ├── sublime-text-ox.dep.yml │ ├── sublime-zig-language.dep.yml │ ├── sublimeassembly.dep.yml │ ├── sublimeprolog.dep.yml │ ├── sublimetext-cuda-cpp.dep.yml │ ├── sublimetext-nasl.dep.yml │ ├── surrealql-grammar.dep.yml │ ├── svelte-atom.dep.yml │ ├── sway-vscode-plugin.dep.yml │ ├── sweave.tmbundle.dep.yml │ ├── swift-tmlanguage.dep.yml │ ├── syntax-mcfunction.dep.yml │ ├── syntax.dep.yml │ ├── tact-sublime.dep.yml │ ├── tcl.tmbundle.dep.yml │ ├── templ-vscode.dep.yml │ ├── textmate.dep.yml │ ├── textmate.tmbundle.dep.yml │ ├── textproto-grammar.dep.yml │ ├── thrift.tmbundle.dep.yml │ ├── tlv-vscode.dep.yml │ ├── toml.tmbundle.dep.yml │ ├── turtle.tmbundle.dep.yml │ ├── typespec.dep.yml │ ├── typst-grammar.dep.yml │ ├── verilog.tmbundle.dep.yml │ ├── vsc-ember-syntax.dep.yml │ ├── vsc-fennel.dep.yml │ ├── vsc-language-1c-bsl.dep.yml │ ├── vscode-TalonScript.dep.yml │ ├── vscode-aiken.dep.yml │ ├── vscode-antlers-language-server.dep.yml │ ├── vscode-apache.dep.yml │ ├── vscode-bitbake.dep.yml │ ├── vscode-brightscript-language.dep.yml │ ├── vscode-c3.dep.yml │ ├── vscode-caddyfile.dep.yml │ ├── vscode-cadence.dep.yml │ ├── vscode-cmake-tools.dep.yml │ ├── vscode-codeql.dep.yml │ ├── vscode-cue.dep.yml │ ├── vscode-curry.dep.yml │ ├── vscode-dune.dep.yml │ ├── vscode-euphoria.dep.yml │ ├── vscode-fastly-vcl.dep.yml │ ├── vscode-flatbuffers.dep.yml │ ├── vscode-fluent.dep.yml │ ├── vscode-gcode-syntax.dep.yml │ ├── vscode-gedcom.dep.yml │ ├── vscode-gleam.dep.yml │ ├── vscode-go-template.dep.yml │ ├── vscode-go.dep.yml │ ├── vscode-hack.dep.yml │ ├── vscode-hy.dep.yml │ ├── vscode-ibmi-languages.dep.yml │ ├── vscode-janet.dep.yml │ ├── vscode-jest.dep.yml │ ├── vscode-jsonc-syntax-highlighting.dep.yml │ ├── vscode-just.dep.yml │ ├── vscode-kcl.dep.yml │ ├── vscode-kdl.dep.yml │ ├── vscode-kolmafia-ash.dep.yml │ ├── vscode-lean.dep.yml │ ├── vscode-lean4.dep.yml │ ├── vscode-liquidsoap.dep.yml │ ├── vscode-livecodescript.dep.yml │ ├── vscode-minizinc.dep.yml │ ├── vscode-monkey-c.dep.yml │ ├── vscode-motoko.dep.yml │ ├── vscode-move-syntax.dep.yml │ ├── vscode-nginx.dep.yml │ ├── vscode-noir.dep.yml │ ├── vscode-opa.dep.yml │ ├── vscode-pddl.dep.yml │ ├── vscode-plantuml.dep.yml │ ├── vscode-prisma.dep.yml │ ├── vscode-procfile.dep.yml │ ├── vscode-proto3.dep.yml │ ├── vscode-python.dep.yml │ ├── vscode-rbs-syntax.dep.yml │ ├── vscode-ron.dep.yml │ ├── vscode-ruby-slim.dep.yml │ ├── vscode-scala-syntax.dep.yml │ ├── vscode-singularity.dep.yml │ ├── vscode-slice.dep.yml │ ├── vscode-teal.dep.yml │ ├── vscode-tmdl.dep.yml │ ├── vscode-tree-sitter-query.dep.yml │ ├── vscode-vba.dep.yml │ ├── vscode-vcard.dep.yml │ ├── vscode-vento.dep.yml │ ├── vscode-vlang.dep.yml │ ├── vscode-wit.dep.yml │ ├── vscode-wren.dep.yml │ ├── vscode-yara.dep.yml │ ├── vscode-zil-language.dep.yml │ ├── vscode.dep.yml │ ├── vscode_cobol.dep.yml │ ├── vscode_mikrotik_routeros_script.dep.yml │ ├── wgsl-analyzer.dep.yml │ ├── witcherscript-grammar.dep.yml │ ├── wollok-sublime.dep.yml │ ├── xc.tmbundle.dep.yml │ ├── xmake-lua.tmbundle.dep.yml │ ├── xml.tmbundle.dep.yml │ ├── zeek-sublime.dep.yml │ ├── zenstack.dep.yml │ └── zephir-sublime.dep.yml └── grammar/ └── abap-cds-grammar.txt