gitextract_wcou_a2z/ ├── BuildVersion.cs ├── LICENSE ├── README.md ├── RaptorDB/ │ ├── AssemblyInfo.cs │ ├── DataTypes/ │ │ └── DataTypes.cs │ ├── Global.cs │ ├── Helper/ │ │ ├── Container.cs │ │ ├── MGRB.cs │ │ └── WAHBitarray2.cs │ ├── Indexes/ │ │ ├── BitmapIndex.cs │ │ ├── Cache.cs │ │ ├── Hoot.cs │ │ ├── IIndex.cs │ │ ├── ITokenizer.cs │ │ ├── IndexFile.cs │ │ ├── Indexes.cs │ │ ├── MGIndex.cs │ │ └── tokenizer.cs │ ├── Properties/ │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── REST/ │ │ ├── aWebServer.cs │ │ └── rdbRest.cs │ ├── RaptorDB.cs │ ├── RaptorDB.csproj │ ├── RaptorDBServer.cs │ ├── Replication/ │ │ ├── Configuration.cs │ │ ├── Packets.cs │ │ ├── Readme.txt │ │ ├── ReplicationClient.cs │ │ ├── ReplicationServer.cs │ │ └── msg.txt │ ├── Storage/ │ │ ├── KeyStore.cs │ │ ├── KeyStoreHF.cs │ │ ├── StorageFile.cs │ │ ├── StorageFileHF.cs │ │ └── StringHF.cs │ ├── Views/ │ │ ├── Dynamic.cs │ │ ├── LINQQuery.cs │ │ ├── TaskQueue.cs │ │ ├── ViewHandler.cs │ │ ├── ViewManager.cs │ │ └── apimapper.cs │ ├── WEB/ │ │ ├── bundle.css │ │ ├── bundle.js │ │ ├── global.css │ │ └── index.html │ └── cron/ │ ├── CronDaemon.cs │ ├── CronJob.cs │ └── CronSchedule.cs ├── RaptorDB.Common/ │ ├── DataTypes.cs │ ├── FieldDescriptor.cs │ ├── IRaptorDB.cs │ ├── Interfaces.cs │ ├── LINQString.cs │ ├── Logger.cs │ ├── MiniLZO.cs │ ├── MurMurHash2.cs │ ├── NetworkClient.cs │ ├── Packets.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── RaptorDB.Common.csproj │ ├── RaptorDBClient.cs │ ├── SafeDictionary.cs │ ├── View.cs │ ├── ZipStorer.cs │ ├── fastBinaryJSON/ │ │ ├── BJSON.cs │ │ ├── BJsonParser.cs │ │ ├── BJsonSerializer.cs │ │ ├── Helper.cs │ │ └── dynamic.cs │ └── fastJSON/ │ ├── Formatter.cs │ ├── Getters.cs │ ├── Helper.cs │ ├── JSON.cs │ ├── JsonParser.cs │ ├── JsonSerializer.cs │ ├── Reflection.cs │ └── dynamic.cs ├── RaptorDBCore/ │ ├── RaptorDB/ │ │ └── RaptorDB.csproj │ ├── RaptorDb.Common/ │ │ └── RaptorDb.Common.csproj │ └── test/ │ ├── sample.cs │ └── test.csproj ├── RaptorDBServer/ │ ├── Installer.cs │ ├── Program.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── RaptorDBServer.csproj │ ├── Service1.Designer.cs │ ├── Service1.cs │ └── Service1.resx ├── RaptorDBTest.sln ├── RaptorDB_Doc.nuspec ├── RaptorDbCore.sln ├── Tools/ │ └── buildversion.ncs ├── Views/ │ ├── Class1.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── ServerSide.cs │ └── Views.csproj ├── WebStudio/ │ ├── README.md │ ├── build.cmd │ ├── deploy.cmd │ ├── package.json │ ├── rollup.config.js │ └── src/ │ ├── App.svelte │ ├── UI/ │ │ ├── Button.svelte │ │ ├── Modal.svelte │ │ ├── datatable.svelte │ │ └── nav.svelte │ ├── debug.js │ ├── global.css │ ├── index.html │ ├── main.js │ └── pages/ │ ├── dochistory.svelte │ ├── docsearch.svelte │ ├── docview.svelte │ ├── help.svelte │ ├── hfbrowser.svelte │ ├── query.svelte │ ├── schema.svelte │ ├── sysconfig.svelte │ └── sysinfo.svelte ├── build.cmd ├── datagridbinding/ │ ├── Form1.resources │ ├── Program.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── datagridbinding.csproj │ ├── frmMain.Designer.cs │ ├── frmMain.cs │ ├── frmMain.resx │ ├── frmStartup.Designer.cs │ ├── frmStartup.cs │ └── frmStartup.resx ├── history.txt ├── raptordb.snk ├── test script/ │ ├── run.cmd │ └── sample.cs ├── testing/ │ ├── AssemblyInfo.cs │ ├── Class1.cs │ ├── program.cs │ └── tests.csproj ├── testing.view └── vbTestConsole/ ├── App.config ├── Module1.vb ├── My Project/ │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings └── vbtestconsole.vbproj