gitextract_gxavh5fc/ ├── .gitattributes ├── 404.html ├── 404.md ├── CNAME ├── README.md ├── app.fingerprint.js ├── app.js ├── app.modern.css ├── app.modern.fingerprint.css ├── axiom/ │ ├── application_data/ │ │ ├── system/ │ │ │ ├── kernel/ │ │ │ │ ├── core/ │ │ │ │ │ └── bootmgr.js │ │ │ │ ├── environment.js │ │ │ │ ├── fsio/ │ │ │ │ │ ├── fs.compression.js │ │ │ │ │ ├── fs.input.js │ │ │ │ │ └── fs.output.js │ │ │ │ ├── virtualcpu.interruptions.js │ │ │ │ └── virtualcpu.js │ │ │ ├── uiapps/ │ │ │ │ └── core.ui-notepad.js │ │ │ └── vm/ │ │ │ ├── container.js │ │ │ ├── container.memguard.js │ │ │ ├── emulator.instructions.js │ │ │ └── emulator.js │ │ └── webui/ │ │ ├── app.manifest.js │ │ └── app.styles.css │ └── index.html ├── dosx-files/ │ ├── 1 │ ├── spoof-me.txt │ ├── vavilonp-red.txt │ └── x-crpt-lic.txt ├── global/ │ └── dark-blue-md.css ├── gui/ │ ├── index.html │ └── new/ │ └── index.html ├── index.html ├── legacy_tandem/ │ └── viewer/ │ ├── app/ │ │ ├── code/ │ │ │ ├── app.toolbox.events.js │ │ │ ├── app.toolbox.modal.js │ │ │ ├── app.toolbox.navigation.js │ │ │ ├── app.viewer.init.js │ │ │ ├── app.viewer.js │ │ │ ├── app.viewer.loader.js │ │ │ ├── app.viewer.mobile.js │ │ │ └── no-toolbox-viewer/ │ │ │ ├── index.init.js │ │ │ ├── index.loader.js │ │ │ └── index.state.js │ │ └── styles/ │ │ ├── default.app-base.css │ │ ├── default.app-modal-dialogs.css │ │ ├── default.app-viewer-mobile.css │ │ ├── default.app-viewer-no-toolbox.css │ │ ├── default.app-viewer.css │ │ └── default.css │ ├── home/ │ │ └── index.html │ ├── index.db.js │ ├── index.html │ ├── no-toolbox-viewer/ │ │ └── index.html │ └── works/ │ ├── example-astra/ │ │ ├── css/ │ │ │ └── style.css │ │ ├── index.html │ │ └── js/ │ │ └── main.js │ ├── example-cakes/ │ │ └── index.html │ ├── example-designer/ │ │ └── index.html │ ├── example-florist/ │ │ └── index.html │ ├── example-jstd/ │ │ ├── 404.html │ │ ├── app/ │ │ │ ├── i18n.js │ │ │ └── main.js │ │ ├── download/ │ │ │ └── index.html │ │ ├── en/ │ │ │ └── index.html │ │ ├── index.html │ │ ├── ru/ │ │ │ └── index.html │ │ └── styles/ │ │ └── main.css │ ├── example-lawyer/ │ │ └── index.html │ ├── example-nightclub/ │ │ └── index.html │ ├── example-pcbuilder/ │ │ ├── css/ │ │ │ └── style.css │ │ ├── index.html │ │ └── js/ │ │ ├── components.js │ │ └── main.js │ └── example-vpn/ │ └── index.html ├── libs/ │ ├── index.html │ ├── packages/ │ │ └── libsc-in-v3.txt │ ├── server.js │ └── ultra-hash-v3.4.js ├── mov/ │ ├── @my-profile-test/ │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── css/ │ │ ├── animate.css │ │ ├── default-skin/ │ │ │ └── default-skin.css │ │ ├── jquery.mCustomScrollbar.css │ │ ├── photoswipe.css │ │ ├── style-map-variant.css │ │ └── vegas.css │ ├── fonts/ │ │ └── FontAwesome.otf │ ├── html-guard-config.js │ ├── index.html │ └── js/ │ ├── build-src.cmd │ ├── contact-me.js │ ├── debug.cmd │ ├── jquery.mCustomScrollbar.js │ ├── jquery.mousewheel.js │ ├── main.js │ ├── modernizr.custom.js │ ├── mov.js │ ├── photoswipe-ui-default.js │ ├── photoswipe.js │ ├── placeholder.js │ ├── src_mov.js │ ├── vegas-youtube-mobile.js │ └── vegas.js ├── mvn/ │ └── index.html ├── old-website/ │ ├── 404.html │ ├── index.html │ └── res/ │ └── site.html ├── robots.txt ├── ru/ │ └── csharp_с_нуля__курс_для_тех_кто_не_понимает_но_хочет_понять/ │ └── index.html ├── safenova/ │ ├── .server.ps1 │ ├── css/ │ │ └── app.css │ ├── index.html │ └── js/ │ ├── constants.js │ ├── crypto.js │ ├── db.js │ ├── desktop.js │ ├── fileops.js │ ├── home.js │ ├── main.js │ ├── state.js │ └── vfs.js ├── scripts/ │ ├── net8/ │ │ ├── win-debug.txt │ │ └── win-release.txt │ ├── net9/ │ │ ├── win-debug.txt │ │ └── win-release.txt │ └── www/ │ └── js-daemon.js ├── server-0/ │ └── antropove.ru/ │ ├── browserconfig.xml │ ├── index.html │ ├── manifest.json │ ├── robots.txt │ ├── script.js │ ├── script.resources.js │ ├── site.webmanifest │ ├── sitemap.xml │ └── style.css ├── tanki-online-unoff-client/ │ └── TapkiOnline/ │ ├── app/ │ │ └── entry.js │ └── welcome/ │ ├── captcha.html │ ├── index.html │ ├── index_birth.html │ ├── index_old.html │ └── menu.html ├── terminal/ │ ├── index.htm │ ├── modules/ │ │ ├── app.js │ │ ├── context.js │ │ ├── fp-api.js │ │ ├── io-fs.js │ │ └── manifest.js │ └── styles/ │ ├── global.css │ └── themes/ │ ├── cherry.css │ ├── dark.css │ ├── hacker.css │ └── light.css ├── testpool/ │ ├── Import.js │ ├── demo-apps/ │ │ ├── app1/ │ │ │ ├── index.html │ │ │ └── memworker.js │ │ └── ezmath/ │ │ └── index.html │ └── index.html ├── tor-detector.html ├── xss/ │ └── index.html ├── xxx/ │ └── index.html └── yandex_d246819e88468b42.html