gitextract_tk66xfku/ ├── .dockerignore ├── .github/ │ ├── FUNDING.yml │ ├── renovate.json │ └── workflows/ │ ├── spm.yml │ └── test.yml ├── .gitignore ├── .swiftpm/ │ └── xcode/ │ └── package.xcworkspace/ │ └── contents.xcworkspacedata ├── .vscode/ │ ├── launch.json │ └── settings.json ├── CODE_OF_CONDUCT.md ├── DEPLOYMENT.md ├── Dockerfile ├── LICENSE ├── Package.resolved ├── Package.swift ├── Public/ │ ├── css/ │ │ ├── balloon.css │ │ ├── common.css │ │ ├── editor.css │ │ ├── lookup.css │ │ ├── popover.css │ │ ├── table.css │ │ ├── tree_view.css │ │ └── trivia.css │ ├── error.html │ ├── favicons/ │ │ ├── browserconfig.xml │ │ └── site.webmanifest │ ├── index.html │ ├── index.js │ ├── js/ │ │ ├── app.js │ │ ├── balloon.js │ │ ├── debounce.js │ │ ├── editor.js │ │ ├── icon.js │ │ ├── lookup_view.js │ │ ├── popover.js │ │ ├── statistics_view.js │ │ ├── structure_view.js │ │ ├── tree_view.js │ │ ├── trivia_view.js │ │ └── websocket.js │ ├── robots.txt │ └── scss/ │ └── default.scss ├── README.md ├── Resources/ │ └── parsers/ │ ├── 50800/ │ │ ├── .swiftpm/ │ │ │ └── xcode/ │ │ │ └── package.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ ├── Package.resolved │ │ ├── Package.swift │ │ ├── Sources/ │ │ │ └── parser/ │ │ │ ├── Main.swift │ │ │ ├── SyntaxParser.swift │ │ │ ├── SyntaxResponse.swift │ │ │ ├── TokenVisitor.swift │ │ │ ├── TreeNode.swift │ │ │ └── Version.swift │ │ └── Tests/ │ │ └── Tests/ │ │ ├── Fixtures/ │ │ │ ├── test-1-1.html │ │ │ ├── test-1-1.json │ │ │ ├── test-1-2.html │ │ │ ├── test-1-2.json │ │ │ ├── test-1-3.html │ │ │ ├── test-1-3.json │ │ │ ├── test-1-4.html │ │ │ ├── test-1-4.json │ │ │ ├── test-1-5.html │ │ │ ├── test-1-5.json │ │ │ ├── test-1-6.html │ │ │ ├── test-1-6.json │ │ │ ├── test-2-1.html │ │ │ ├── test-2-1.json │ │ │ ├── test-2-2.html │ │ │ ├── test-2-2.json │ │ │ ├── test-2-3.html │ │ │ ├── test-2-3.json │ │ │ ├── test-2-4.html │ │ │ ├── test-2-4.json │ │ │ ├── test-2-5.html │ │ │ ├── test-2-5.json │ │ │ ├── test-2-6.html │ │ │ └── test-2-6.json │ │ └── Tests.swift │ ├── 50900/ │ │ ├── .swiftpm/ │ │ │ └── xcode/ │ │ │ └── package.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ ├── Package.resolved │ │ ├── Package.swift │ │ ├── Sources/ │ │ │ └── parser/ │ │ │ ├── SyntaxParser.swift │ │ │ ├── TokenVisitor.swift │ │ │ └── Version.swift │ │ └── Tests/ │ │ └── Tests/ │ │ └── Fixtures/ │ │ ├── test-1-1.html │ │ ├── test-1-1.json │ │ ├── test-1-2.html │ │ ├── test-1-2.json │ │ ├── test-1-3.html │ │ ├── test-1-3.json │ │ ├── test-1-4.html │ │ ├── test-1-4.json │ │ ├── test-1-5.html │ │ ├── test-1-5.json │ │ ├── test-1-6.html │ │ ├── test-1-6.json │ │ ├── test-2-1.html │ │ ├── test-2-1.json │ │ ├── test-2-2.html │ │ ├── test-2-2.json │ │ ├── test-2-3.html │ │ ├── test-2-3.json │ │ ├── test-2-4.html │ │ ├── test-2-4.json │ │ ├── test-2-5.html │ │ ├── test-2-5.json │ │ ├── test-2-6.html │ │ └── test-2-6.json │ ├── 51000/ │ │ ├── .swiftpm/ │ │ │ └── xcode/ │ │ │ └── package.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ ├── Package.resolved │ │ ├── Package.swift │ │ ├── Sources/ │ │ │ └── parser/ │ │ │ └── Version.swift │ │ └── Tests/ │ │ └── Tests/ │ │ └── Fixtures/ │ │ ├── test-1-1.html │ │ ├── test-1-1.json │ │ ├── test-1-2.html │ │ ├── test-1-2.json │ │ ├── test-1-3.html │ │ ├── test-1-3.json │ │ ├── test-1-4.html │ │ ├── test-1-4.json │ │ ├── test-1-5.html │ │ ├── test-1-5.json │ │ ├── test-1-6.html │ │ ├── test-1-6.json │ │ ├── test-2-1.html │ │ ├── test-2-1.json │ │ ├── test-2-2.html │ │ ├── test-2-2.json │ │ ├── test-2-3.html │ │ ├── test-2-3.json │ │ ├── test-2-4.html │ │ ├── test-2-4.json │ │ ├── test-2-5.html │ │ ├── test-2-5.json │ │ ├── test-2-6.html │ │ └── test-2-6.json │ ├── 60000/ │ │ ├── Package.resolved │ │ ├── Package.swift │ │ ├── Sources/ │ │ │ └── parser/ │ │ │ └── Version.swift │ │ └── Tests/ │ │ └── Tests/ │ │ └── Fixtures/ │ │ ├── test-1-1.html │ │ ├── test-1-1.json │ │ ├── test-1-2.html │ │ ├── test-1-2.json │ │ ├── test-1-3.html │ │ ├── test-1-3.json │ │ ├── test-1-4.html │ │ ├── test-1-4.json │ │ ├── test-1-5.html │ │ ├── test-1-5.json │ │ ├── test-1-6.html │ │ ├── test-1-6.json │ │ ├── test-2-1.html │ │ ├── test-2-1.json │ │ ├── test-2-2.html │ │ ├── test-2-2.json │ │ ├── test-2-3.html │ │ ├── test-2-3.json │ │ ├── test-2-4.html │ │ ├── test-2-4.json │ │ ├── test-2-5.html │ │ ├── test-2-5.json │ │ ├── test-2-6.html │ │ └── test-2-6.json │ ├── 60100/ │ │ ├── .swiftpm/ │ │ │ └── xcode/ │ │ │ └── package.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ ├── Package.resolved │ │ ├── Package.swift │ │ ├── Sources/ │ │ │ └── parser/ │ │ │ └── Version.swift │ │ └── Tests/ │ │ └── Tests/ │ │ └── Fixtures/ │ │ ├── test-1-1.html │ │ ├── test-1-1.json │ │ ├── test-1-2.html │ │ ├── test-1-2.json │ │ ├── test-1-3.html │ │ ├── test-1-3.json │ │ ├── test-1-4.html │ │ ├── test-1-4.json │ │ ├── test-1-5.html │ │ ├── test-1-5.json │ │ ├── test-1-6.html │ │ ├── test-1-6.json │ │ ├── test-2-1.html │ │ ├── test-2-1.json │ │ ├── test-2-2.html │ │ ├── test-2-2.json │ │ ├── test-2-3.html │ │ ├── test-2-3.json │ │ ├── test-2-4.html │ │ ├── test-2-4.json │ │ ├── test-2-5.html │ │ ├── test-2-5.json │ │ ├── test-2-6.html │ │ └── test-2-6.json │ ├── 60200/ │ │ ├── .swiftpm/ │ │ │ └── xcode/ │ │ │ └── package.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ ├── Package.resolved │ │ ├── Package.swift │ │ ├── Sources/ │ │ │ └── parser/ │ │ │ └── Version.swift │ │ └── Tests/ │ │ └── Tests/ │ │ └── Fixtures/ │ │ ├── test-1-1.html │ │ ├── test-1-1.json │ │ ├── test-1-2.html │ │ ├── test-1-2.json │ │ ├── test-1-3.html │ │ ├── test-1-3.json │ │ ├── test-1-4.html │ │ ├── test-1-4.json │ │ ├── test-1-5.html │ │ ├── test-1-5.json │ │ ├── test-1-6.html │ │ ├── test-1-6.json │ │ ├── test-2-1.html │ │ ├── test-2-1.json │ │ ├── test-2-2.html │ │ ├── test-2-2.json │ │ ├── test-2-3.html │ │ ├── test-2-3.json │ │ ├── test-2-4.html │ │ ├── test-2-4.json │ │ ├── test-2-5.html │ │ ├── test-2-5.json │ │ ├── test-2-6.html │ │ └── test-2-6.json │ ├── 60300/ │ │ ├── .swiftpm/ │ │ │ └── xcode/ │ │ │ └── package.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ ├── Package.resolved │ │ ├── Package.swift │ │ ├── Sources/ │ │ │ └── parser/ │ │ │ └── Version.swift │ │ └── Tests/ │ │ └── Tests/ │ │ └── Fixtures/ │ │ ├── test-1-1.html │ │ ├── test-1-1.json │ │ ├── test-1-2.html │ │ ├── test-1-2.json │ │ ├── test-1-3.html │ │ ├── test-1-3.json │ │ ├── test-1-4.html │ │ ├── test-1-4.json │ │ ├── test-1-5.html │ │ ├── test-1-5.json │ │ ├── test-1-6.html │ │ ├── test-1-6.json │ │ ├── test-2-1.html │ │ ├── test-2-1.json │ │ ├── test-2-2.html │ │ ├── test-2-2.json │ │ ├── test-2-3.html │ │ ├── test-2-3.json │ │ ├── test-2-4.html │ │ ├── test-2-4.json │ │ ├── test-2-5.html │ │ ├── test-2-5.json │ │ ├── test-2-6.html │ │ └── test-2-6.json │ └── trunk/ │ ├── .swiftpm/ │ │ └── xcode/ │ │ └── package.xcworkspace/ │ │ └── contents.xcworkspacedata │ ├── Package.resolved │ ├── Package.swift │ ├── Sources/ │ │ └── parser/ │ │ └── Version.swift │ └── Tests/ │ └── Tests/ │ └── Fixtures/ │ ├── test-1-1.html │ ├── test-1-1.json │ ├── test-1-2.html │ ├── test-1-2.json │ ├── test-1-3.html │ ├── test-1-3.json │ ├── test-1-4.html │ ├── test-1-4.json │ ├── test-1-5.html │ ├── test-1-5.json │ ├── test-1-6.html │ ├── test-1-6.json │ ├── test-2-1.html │ ├── test-2-1.json │ ├── test-2-2.html │ ├── test-2-2.json │ ├── test-2-3.html │ ├── test-2-3.json │ ├── test-2-4.html │ ├── test-2-4.json │ ├── test-2-5.html │ ├── test-2-5.json │ ├── test-2-6.html │ └── test-2-6.json ├── SECURITY.md ├── Sources/ │ └── App/ │ ├── Middlewares/ │ │ ├── CommonErrorMiddleware.swift │ │ └── CustomHeaderMiddleware.swift │ ├── configure.swift │ ├── entrypoint.swift │ └── routes.swift ├── Tests/ │ └── AppTests/ │ └── AppTests.swift ├── build_pasers.sh ├── deploy/ │ └── Dockerfile ├── dev/ │ ├── .gitignore │ ├── index.js │ ├── package.json │ └── xml-formatter/ │ ├── .eslintignore │ ├── .eslintrc.json │ ├── .gitignore │ ├── .npmignore │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── publish.sh │ ├── src/ │ │ ├── index.d.ts │ │ └── index.ts │ ├── test/ │ │ ├── .eslintrc.json │ │ ├── browser/ │ │ │ ├── README.md │ │ │ └── index.html │ │ ├── data1/ │ │ │ ├── xml1-input.xml │ │ │ ├── xml1-output.xml │ │ │ ├── xml2-input.xml │ │ │ ├── xml2-output.xml │ │ │ ├── xml3-input.xml │ │ │ ├── xml3-output.xml │ │ │ ├── xml4-input.xml │ │ │ └── xml4-output.xml │ │ ├── data10/ │ │ │ ├── xml1-input.xml │ │ │ └── xml1-output.xml │ │ ├── data11/ │ │ │ ├── xml1-input.xml │ │ │ ├── xml1-output.xml │ │ │ ├── xml2-input.xml │ │ │ └── xml2-output.xml │ │ ├── data12/ │ │ │ ├── xml1-input.xml │ │ │ └── xml1-output.xml │ │ ├── data13/ │ │ │ ├── xml1-input.xml │ │ │ └── xml1-output.xml │ │ ├── data14/ │ │ │ ├── xml1-input.xml │ │ │ └── xml1-output.xml │ │ ├── data2/ │ │ │ ├── xml1-input.xml │ │ │ ├── xml1-output.xml │ │ │ ├── xml2-input.xml │ │ │ ├── xml2-output.xml │ │ │ ├── xml3-input.xml │ │ │ ├── xml3-output.xml │ │ │ ├── xml4-input.xml │ │ │ └── xml4-output.xml │ │ ├── data3/ │ │ │ ├── xml1-input.xml │ │ │ ├── xml1-output.xml │ │ │ ├── xml2-input.xml │ │ │ ├── xml2-output.xml │ │ │ ├── xml3-input.xml │ │ │ ├── xml3-output.xml │ │ │ ├── xml4-input.xml │ │ │ ├── xml4-output.xml │ │ │ ├── xml5-input.xml │ │ │ ├── xml5-output.xml │ │ │ ├── xml6-input.xml │ │ │ ├── xml6-output.xml │ │ │ ├── xml7-input.xml │ │ │ └── xml7-output.xml │ │ ├── data4/ │ │ │ ├── xml1-input.xml │ │ │ ├── xml1-output.xml │ │ │ ├── xml2-input.xml │ │ │ ├── xml2-output.xml │ │ │ ├── xml3-input.xml │ │ │ ├── xml3-output.xml │ │ │ ├── xml4-input.xml │ │ │ ├── xml4-output.xml │ │ │ ├── xml5-input.xml │ │ │ └── xml5-output.xml │ │ ├── data5/ │ │ │ ├── xml1-input.xml │ │ │ └── xml1-output.xml │ │ ├── data6/ │ │ │ ├── xml1-input.xml │ │ │ ├── xml1-output.xml │ │ │ ├── xml2-input.xml │ │ │ └── xml2-output.xml │ │ ├── data7/ │ │ │ ├── xml1-input.xml │ │ │ └── xml1-output.xml │ │ ├── data8/ │ │ │ ├── xml1-input.xml │ │ │ └── xml1-output.xml │ │ ├── data9/ │ │ │ ├── xml1-input.xml │ │ │ ├── xml1-output.xml │ │ │ ├── xml2-input.xml │ │ │ ├── xml2-output.xml │ │ │ ├── xml3-input.xml │ │ │ ├── xml3-output.xml │ │ │ ├── xml4-input.xml │ │ │ └── xml4-output.xml │ │ └── index.ts │ └── tsconfig.json ├── package.json ├── webpack.common.js ├── webpack.dev.js └── webpack.prod.js