forked from SteamDatabase/FileDetectionRuleSets
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_NonMatchingTests.txt
More file actions
1410 lines (1410 loc) · 25 KB
/
_NonMatchingTests.txt
File metadata and controls
1410 lines (1410 loc) · 25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
.
/
\
$
^
.UnityPlayer.dll
UnityPlayer.dlll
UUnityPlayer.dll
SuperUnityEngine.dll
global-metadata.dat
il2cpp/global-metadata.dat
data_1rc
data1.rc
fdata.1rc
dataf.1rc
data.f1rc
data.1rcf
notactuallylime.ndll
notactuallylime-legacy.dll
notactuallylime-legacy.ndll
notactuallyfna.dll
fna.dllwhoops
entry.dll
libsentry.dl
sentry.dl
sentry_dll
sub/dir/notactuallyfna.dll
sub/dir/fna.dllwhoops
fx_core_dll
abylon.js
babylon.j
babylon_js
lib_babylon
notrelatedto.babylo
notrelatedto_babylon
SomeEngine/Binaries/ThirdParty
e_chunk_000.pak
re_chunk_000.pa
re_chunk_000_pak
Engine/Binaries/ThirdPartySomething
blahrpg_rt.exe
sub/blahrpg_rt.exe
cs2conf1.dll
cs2conf_dll
cs2conf.dlll
CChromaEditorLibrary641.dll
CChromaEditorLibrary1.dll
GFeSDK_dll
FeSDK.dll
GFeSDK.dl
rgssad
rvproj2
Microsoft_Xbox_Services_141_GDK_C_Thunks.ded
XGamingRuntimeThunks.del
XGamingRuntime.dle
XCurl.dll2323
AwesomeGame.argssad
AwesomeGame.arvproj2
AwesomeGame.rgssadf
AwesomeGame.rvproj2f
ARGSS104E.dll
argss102j.dll
argss102e.dll
Sub/Folder/ARGSS104E.dll
CgS_2019.dll
SDK.x4_219.dll
Sub/Folder/argss102j.dll
Sub/Folder/argss102e.dll
data_xp3
notreallydata.xp3
data.xp3aisjdosadjods
fkrflash.dll
krflash/
Binaries/Win64Whatever
GFSDK_sasdasWorks
probably_not_GFSDK_HairWorks
GeforceSDK_HaerW0rks
lua5.4.dl
iblua50.so
lua50_dll
sdsd_lua
dEngine.BuildInfo.dll
dclientlauncherg.exe
clientlauncherg32.exe
clientlauncherg_exe
dEngine.BuildInfo_Win32_retail.dll
dEngine.BuildInfo_Win32_retail_dll.dll
dEngine.BuildInfo_Win64_retail.dll
dEngine.BuildInfo_Win64_retail_dll.dll
fBox2D.dll
fbox2d.dll
fbox2d.txt
fbox2d.wasm
fbox2d.wasm.js
Box2D.fdll
box2d.fdll
box2d.ftxt
box2d.fwasm
box2d.fwasm.js
box2d.wasm.fjs
Box2D.dllf
box2d.dllf
box2d.txtf
box2d.wasmf
box2d.wasmf.js
box2d.wasm.jsf
box2d-wasm.js
box2d_wasm.js
box2d/wasm.js
init_ovl
init.ovll
nit.ovl
common_ovl
common.ovll
ommon.ovl
libhl.dlll
libhl.soo
libhl_so
libhl_dll
lib_burst_generated_dll
rotobuf
protobu
Data/Config/User.cfg1
Data/Config/User-cfg
ddata/Config/User.cfg
Data/Config/user.lua1
Data/Config/user-lua
ddata/Config/user.lua1
lib_burst_generated.png
lib_burst_generated_so
data_pie
data.wii
adata.pie
Bundle/bundlemain.bundle
Bundle/bundlemain_mbundle
launcher/bundle/bundlemain.mbundle
acknex_dll
acknex_wdf
acknex.dlll
acknex.wdff
shared/shader.gar.bak
1acknex.dll
1acknex.wdf
lib_burst_generated.soo
febexsdek-20113.dll
fbxsdek-1337.dll
lib_burst_generatedd.dll
flexRelease_x128.dll
flexRelease_x64_dll
lib_burst_generated.dlll
llib_burst_generated.dlll
Engine.BuildInfo.dlld
Engine.BuildInfo_Win32_retail.dlld
Engine.BuildInfo_Win32_retail_dll.dlld
Engine.BuildInfo_Win64_retail.dlld
dowser_exe
adowser.exe
dowser.exee
Engine.BuildInfo_Win64_retail_dll.dlld
EnginexBuildInfo.dll
EnginexBuildInfo_Win32_retail.dll
EnginexBuildInfo_Win32_retail_dll.dll
EnginexBuildInfo_Win64_retail.dll
EnginexBuildInfo_Win64_retail_dll.dll
Engine.BuildInfoxdll
Engine.BuildInfo_Win32_retailxdll
Engine.BuildInfo_Win32_retail_dllxdll
Engine.BuildInfo_Win64_retailxdll
Engine.BuildInfo_Win64_retail_dllxdll
Runtime_Win64_retail_BuildSettings
Runtime_Win64_retail.BuildSetting
untime_Win64_retail.BuildSettings
BugTrap.dl
BugTrap_dll
BugTrap-x6.dll
BugTrapN.dll
ugTrap.dll
Unity.Entities.dlll
TotallyAwesomium.dll
Awesomium.dlls
Awesomium_dll
totally_awesomium_process.exe
awesomium_process.rexe
awesomium_process.exec
awesomiumprocess.exe
awesomium-process.exe
awesomium-process_exe
awesomium_processor.exe
biter.dll
Arbiter.dl
Arbiter_dll
RRenoirCore.WindowsDesktop.dll
CCohtml.WindowsDesktop.dll
udioPluginDissonance.dll
AudioPluginDissonance_dll
AudioPluginDissonance.dllxxx
RenoirCore.WindowsDesktop.dlll
cohtml.WindowsDesktop.dlll
RenoirCore.WindowsDesktop_dll
cohtml.WindowsDesktop_dll
CCoherentUIGT.dll
CoherentUIGT.dlll
CoherentUIGT_dll
SuperUnity.Entities.dll
Unity.Entitie.dll
Unity_Entities_dll
StreamingAssets/Scenes/
StreamingAssets/EntityScene/
notGFSDK_TXAA
GFSDK_AATX
GFSDK_TAXA
sl_common_dll
streamline_comm0n.dll
sl_common.dll
TrueSkyPluginRender_MT.dl
rueSkyPluginRender_MT.dll
TrueSkyPluginRender_MT_dll
StreamingSets/SubScenes/
StreamingAsset/EntityScenes/
Unity.Rendering.Hybrid.dlll
SuperUnity.Rendering.Hybrid.dll
Unity.Rendering.Hybrids.dll
Unity.Render.Hybrids.dll
libeay32.dl
ssleay32.dl
ibeay32.dll
sleay32.dll
redscript
w2script
edscripts
2scripts
NRD_dll
abcNRD.dll
NRD.dllabc
libeay32_dll
ssleay32_dll
yrano.js
tyrano.j
tyrano_js
tyrano.jss
tyrano_data.sav
_tyrano_data.savv
_tyrano_data_sav
_tyrano-data.av
_tyrano-data.sa
FreeImage.dl
FreeImage.s
folder/soundbankinfo.xml
soundbankinfo.xml
myprojectfile.wfppro
myprojectfile_wfpproj
sounds/notasoundbank_bnk
sounds/notasoundbank.bnks
sounds/notasound_wem
sounds/notasound.wems
.sstk
.stkk
.sttk
reeImage.dll
reeImage.so
FreeImage_dll
FreeImage_so
bakinengine.dl
bakinengine_dll
kinengine.dll
Unity_Rendering_Hybrid.dll
phaser.dl
haser.dll
phaser_dll
ui.hdllf
ffalcoengine.dll
falcoengine_dll
falcoengine.dl
falcoengine.dlll
athEngine.dll
PathEngine.dl
PathEngine_dll
Mirror_dll
Mirror.dl
somethingFishnet.Runtime.dll
Fishnet.Runtime_dll
Fishnet.Runtime.dllWhoopsie
libsodium.dl
ibsodium.dll
libsodium_dll
uv.hdllf
smackw32.dl
mackw32.dll
smackw32_dll
Sub/ui.hdllf
zstd.dl
std.dll
zstd_dll
Sub/uv.hdllf
fnRuntimeSdk.dll
GfnRuntimeSdk.dl
data/behaviors.mbs
assets/data/behaviors_mbs
assets/data/behaviors.m
lwjgl.dl
lwjgl.ja
lwjgl_dll
lwjgl_jar
lwjgl64_dll
wjgl.dll
wjgl.jar
lwjgl6.dll
libogg.0.dyli
libogg.dl
libogg.so.
libogg_64.dl
ogg.dl
ibogg.0.dylib
ibogg.dll
ibogg.so.0
ibogg_64.dll
gg.dll
libogg_0_dylib
libogg_dll
libogg_so_0
libogg_64_dll
ogg_dll
Rayne.dl
Rayne_dll
ayne.dll
Stride_Core_dll
Stride.Core_dll
Xenko_Core_dll
Xenko.Core_dll
NotStride.Core.dll
NXenko.Core.dll
GfnRuntimeSdk_dll
EAappInstaller.ex
AappInstaller.exe
EAappInstaller_exe
ui.hdllollipop
uv.hdllollipop
APRT_RT.exe
wgcs_api.ex
gcs_api.exe
wgcs_api_exe
Update_wiz
resource_pff
UUpdate.wiz
Rresource.pff
Update.wizz
resource.pfff
CachedShaders_D3D12_gro
CachedShaders_D3D12.gr
RPT_RT.exeeee
xaudio2_9redist.dl
audio2_9redist.dll
xaudio2_9redist_dll
ajs/rpg_core.js
js/rpg_core.jssss
js/rmmz_core.jssss
ajs/rmmz_core.js
Sub/Folder/RPT_RT.exeeee
Sub/Folder/js/rpg_core.jssss
Sub/Folder/www/js/rpg_core.jsss
Sub/Folder/js/rmmz_core.jsss
Lib/renpy.stuff
Core.dll
S2Core_dll
S2Core.dl
globalgamemanagers.asset
globalgamemanager.assets
globalgamemanagersassets
Gglobalgamemanagersassets
bchmark.dl
chmark.dll
bchmark_dll
oaremote_plugin.dl
aremote_plugin.dll
oaremote_plugin_dll
renpy.stuff
data.dcpcp
testxem
ass.dll
assflac.dll
assmidi.dll
ibbass.dylib
ibbass.so
bass.dl
bassflac.dl
bassmidi.dl
libbass.dyli
libbass.s
bass_dll
bassflac_dll
bassmidi_dll
libbass_dylib
libbass_so
libpanda
panda.dll
libanda.dll
libpanda_dll
ode_post_gfx.ff
ommon.ff
ommon_zm.ff
iw_00.wd
code_post_gfx_ff
common_ff
common_zm_ff
iw_00_iwd
code_post_gfx.f
common.f
common_zm.f
iw_00.iw
commonzm.ff
common_m.ff
.xemtest
bytecode.by
ytecode.byc
bytecode_byc
fdata.dcp
bytecode.rpybeer
Sub/Folder/bytecode.rpybeer
acsetup.cfgoof
Sub/Folder/acsetup.cfgoof
pacsetup.cfg
/jme-core
/jme3-cor
/me3-core
natives_blob.bink
fnatives_blob.bin
Sub/Folder/natives_blob.bink
Bin32/CryD3DCompilerStub.dllk
CryD3DCompilerStub.dllk
SCryD3DCompilerStub.dll
SlimDX.dl
SlimDX_dll
limDX.dll
ideros.dll
gidros.dll
gidero.dll
Adobe AIRCRAFT
Adobe AIRCRAFT/Versions
Adobe AIRCRAFT/Versions/1.0
Adobe AIRCRAFT/Versions/1.0/Adobe AIR.dll
Adobe AIRCRAFT/Versions/1.0/Adobe AIR.dllppff
FAdobe AIR
FAdobe AIR/Versions
FAdobe AIR/Versions/1.0
FAdobe AIR/Versions/1.0/Adobe AIR.dll
FFlatRedBall.
FlatRedBall_
FlatReBall.
love.dllfdfd
granny2.dl
ranny2.dll
granny2_dll
granny2_x64.dl
ranny2_x64.dll
granny2_x64_dll
pfdfdflove.dll
Sub/Folder/love.dllfdfdfdf
SGODOT_LICENSE.txt
GODOT_LICENESE.txtf
libqodot.dllfdfdf
core/gameinfo.gii
core/gameinfoogi
ggameinfoogi
bsppack.dlll
bsppack-dll
binbsppack.dll
chunk0_rpkg
chunk0.rpk
chunk0.pkg
system/vgui.dll
vgui.dlll
vgui-dll
vgui2.dll
mss16.dl
mss32.dl
mss64.dl
ss16.dll
ss32.dll
ss64.dll
mss16_dll
mss32_dll
mss64_dll
hltv.exe
nvngx_dlssddll
nvngx_dlss.dlli
envngx_dlss.dll
igxess.dlls
libxess.dl
libxessdl
ess.dll
ggcloud.dll
gcloudd.dll
gcloud.dllexp
OpenImageDenoisexdll
OpenImageDenoise
fbnEngine.dl
fbnEngine_dll
bnEngine.dll
_CommonRedist/FXNA/4.0/installscript.vdf
FXNA/4.0/installscript.vdf
PCTouchHelper.dl
PCTouchHelper_dll
CTouchHelper.dll
sub/dir/CTouchHelper.dll
sub/dir/PCTouchHelper_dll
sub/dir/PCTouchHelper.dl
_CommonRedist/FXNA
.esf
startpos.esf
nepnep2.dll
nep2.dller
data/campaigns/episodic_1/startpos_esf
data/campaigns/episodic_1/startpos.esff
XSDL.dll
xsdl.dll
SDL.dllk
sdl.dllk
/sfml2
/2sfml-
/sfl-
something.tlkfff
something.biffff
something.pckf
something.luaf
something.tocf
something.casf
something.sbffdfdf
something_cas
something_toc
something_sbf
something.scrf
something.uf
something.wadf
something.bspf
something.iqmf
fdosbox
FDOSBOX
fDosbox
fdosbox.exe
FDOSBOX.exe
dosbox.exef
v8.dlll
v8_dll
v7v8.dll
gaijin_downloader_exe
gaijin_downloader.ex
_downloader.exe
rGame.dll
xrGame.dl
xrGame_dll
scummvm.exef
fscummvm.exe
LICENSE.electron.txtf
fLICENSE.electron.txt
node.dllk
fnode.dll
libnode_dylib
ibnode.dylib
libnode.dylibb
.as
_asr
.sr
ootstrap.cfg
bootstrap.cf
bootstrap_cfg
pytho.dll
pythonxdll
python.dl
/sub/dir/python1234.dll
FVisionaireConfigurationTool.exe
VisionaireConfigurationTool.exef
VisionaireConfigurationTool.exe/
AGIDATA.OVLTINE
DFDFAGIDATA.OVL
HMIDET.386dfdf
BUILD.EXEf
buildlic.txtf
COMMIT.DATf
FHMIDET.386dfdf
FBUILD.EXEf
GAME.CONf
fbuildlic.txtf
fCOMMIT.DATf
sub/dir/HMIDET.386f
sub/dir/BUILD.EXEf
sub/dir/GAME.CONf
sub/dir/buildlic.txtf
sub/dir/FHMIDET.386
sub/dir/FBUILD.EXE
sub/dir/Fbuildlic.txt
sub/dir/FGAME.CON
sub/dir/FCOMMIT.DAT
/FCon
FCon
/iFCon.
iFCon.
Randgrid.sy
andgrid.sys
Randgrid_sys
Dat/C
Data/C5
Data/C4.pa
Data/C4.ak
Data/C4_pak
Xors3d.dl
Xors3d_dll
ors3d.dll
neacsafer.sys
notneacsafe.sys
FChromeEngine2.dll
FChromeEngine3.dll
FChromEd.exe
ision.dll
vision.dl
vision_dll
ision71.dll
vision71.dl
vision71_dll
ision90.dll
vision90.dl
vision90_dll
ision80.dll
vision80.dl
vision80_dll
ision100.dll
vision100.dl
vision100_dll
vision138.dll
sub/dir/FChromeEngine2.dll
sub/dir/FChromeEngine3.dll
sub/dir/FChromEd.exe
ChromeEngine2.dllf
ChromeEngine3.dllf
ChromEd.exef
sub/dir/ChromeEngine2.dllf
sub/dir/ChromeEngine3.dllf
sub/dir/ChromEd.exef
vtt.dll
nvtt_dll
nvtt.dl
fcry3dengine.dll
fCry3DEngine.dll
fCryRenderD3D11.dll
fCryRenderD3D12.dll
Noessis.dll
fCryRenderVulkan.dll
fCryD3DCompilerStub.dll
fengine.pak
sub/dir/fcry3dengine.dll
sub/dir/fCry3DEngine.dll
sub/dir/fCryRenderD3D11.dll
sub/dir/fCryRenderD3D12.dll
sub/dir/fCryRenderVulkan.dll
sub/dir/fCryD3DCompilerStub.dll
sub/dir/fengine.pak
something.cryf
cry3dengine.dllf
Cry3DEngine.dllf
CryRenderD3D11.dllf
CryRenderD3D12.dllf
CryRenderVulkan.dllf
CryD3DCompilerStub.dllf
engine.pakf
sub/dir/something.cryf
sub/dir/cry3dengine.dllf
sub/dir/Cry3DEngine.dllf
sub/dir/CryRenderD3D11.dllf
sub/dir/CryRenderD3D12.dllf
sub/dir/CryRenderVulkan.dllf
sub/dir/CryD3DCompilerStub.dllf
sub/dir/engine.pakf
TP3Helper.ex
P3Helper.exe
TP3Helper_exe
data.wink
some/dir/data.wink
fdata.win
some/dir/fdata.win
options.inif
some/dir/options.inif
foptions.ini
some/dir/foptions.ini
Data/MapData.wolff
Data/BasicData.wolff
Data.wolff
MapData.wolff
something.swfk
some/dir/something.swfk
something.jsk
some/dir/something.jsk
pixi.jsk
sub/dir/pixi.jsk
package.nwk
sub/dir/package.nwk
spackage.nw
SIERRA.EXEF
sub/dir/SIERRA.EXEF
FSIERRA.EXE
FVSWAP.WL6
base/SVSWAP.WL6
VVVVSWAP.BS6
SVSWAP.VSI
VSWAP
_ktsl2asbin
_ktsl2stbin
.ktsl2asbinf
.ktsl2stbinf
.ktslasbin
.ktslstbin
firrKlang.dll
irrKlang.dllf
irrKlangf.dll
irrKlang.fdll
/irrKlang32bit.dll
/irrKlangNET4.dll
/irrKlang_.dll
/irrKlang_dll
AAntiCheat.Installer.exe
fEAAntiCheat.Installer.exe
EAAntiCheat.Installer.exef
EAAntiCheat.Installer.ex
EAAntiCheat.Installer_exe
something.cfgf
some/dir/something.cfgf
something.pk34
some/dir/something.pk34
baseq2f
baseq2f/models
baseq2f/pics
baseq2f/st
fbaseq2
fbaseq2/pak0.pk2
fbaseq2/pak1.pk1
fbaseq2/models
fbaseq2/pics
fbaseq2/st
Server/Modi.dll
/mod_io
/odio
/COMMON_POD
/STARTUP_POD
/COMMON.PODD
/STARTUP.PODD
/CCOMMON.POD
/SSTARTUP.POD
deluxe/assets/tiled/overworld/decor_tsx
fmdata/Default.tmxx
deluxe/assets/tiled/overworld/decor.ttsx
fmdata/Default.tdx
fglhexen
data1/fglhexen
data1/fglhexen/NFarrow.ms2
data1/fglhexen/a_blast.ms2
fglquake
Id1/fglquake
Id1/fglquake/15to8.pal
Id1/fglquake/armor.ms2
Id1/fglquake/backpack.ms2
glhexenf
data1/glhexenf
data1/glhexenf/NFarrow.ms2
data1/glhexenf/a_blast.ms2
glquakef
Id1/glquakef
Id1/glquakef/15to8.pal
Id1/glquakef/armor.ms2
Id1/glquakef/backpack.ms2
snd_whatever.oggf
snd_a.oggf
sub/folder/snd_whatever.oggf
sub/folder/snd_a.oggf
snd_whatever.ogg
asnd_a.ogg
sub/folder/asnd_whatever.ogg
sub/folder/asnd_a.ogg
sndf_whatever.ogg
sndf_a.ogg
sub/folder/sndf_whatever.ogg
sub/folder/sndf_a.ogg
snd_.ogg
sub/folder/snd_.ogg
HShield/HSInst_dll
HShield/HSInst
HSInst.dll
/anvngx_dlss.dll
/nvngx_dlss.dlla
/nvngx_dlss_dll
/asl.dlss.dll
/sl.dlss.dlla
/sl.dlss_dll
resources/app/app/gdjs-evtsext_
resources/app/app/gdjsevtsext__achievements__unlockachievement-func.js
resources/app/app/gdjsevtsext__camerashake__camerashake-func.js
resources/app/app/ggdjs-evtsext__achievements__unlockachievement-func.js
resources/app/app/ggdjs-evtsext__camerashake__camerashake-func.js
GDCpp.dlll
GDCpp_dll
GGDCpp.dll
fNadeo.ini
Nadeof
Nadeo.f
Nadeo.init
/Nadeo.ini
data.podf
sub/dir/data.podf
something.rimf
sub/dir/something.rimf
something.tgaf
sub/dir/something.tgaf
fdata.pod
sub/dir/fdata.pod
something.fpfp
sub/dir/something.fpfp
something.pfpf
sub/dir/something.pfpf
something.hdllf
sub/dir/something.hdllf
something.fhdll
sub/dir/something.fhdll
GameData/VS2EN/runtime.rt
GameData/VS2EN/runtime_rts
GameData/VS2EN/time.rts
RobocraftClient_Data/Plugins/audiopluginresonanceaudio.dl
armello_Data/Plugins/x86_64/resonanceaudio.dl
RobocraftClient_Data/Plugins/audiopluginresonanceaudio_dll
armello_Data/Plugins/x86_64/resonanceaudio_dll
RobocraftClient_Data/Plugins/udiopluginresonanceaudio.dll
armello_Data/Plugins/x86_64/esonanceaudio.dll
/ts3client
/ts3client_win32
/ts3client_win.dll
s3client.
s3client_win32.
rts3client.dll
rts3client_win32.dll
Outsider_Strategist/data.dt
Outsider_Strategist/data_dts
Outsider_Strategist/ata.dts
Microsoft.FXna.Framework.XmlSerializers.dll
sub/dir/Microsoft.FXna.Framework.XmlSerializers.dll
fxnafx31_redist.msi
sub/dir/fxnafx31_redist.msi
Microsoft.Xnaf.Framework.XmlSerializers.dll
sub/dir/Microsoft.Xnaf.Framework.XmlSerializers.dll
xnaffx31_redist.msi
sub/dir/xnaffx31_redist.msi
something.streamedf
something.fstreamed
streamed
something.mega2f
something.fmega2f
something.texdbff
something_texdb
textdb
mega2
something.pk4f
something.fpk4
pk4
/default_archcfg
efault.archcfg
default.archcf
Data/Wads/Additive0_39764.Phyref.D3D11x64.gz
Data/Wads/Additive0_39764.FPhyre.D3D11x64.gz
plugin/KAGParserExf.dll
plugin/KAGParserEx.dllf
plugin/FKAGParserEx.dll
something.pyf
sub/dir/something.pyf
fmus_brubus.ogg
fmus_bsid_fanfare.ogg
fmus_buildmode.ogg
fmus_creature_evolve.ogg
fmus_cutscene_final_theme1.ogg
fmus_cutscene_final_theme2.ogg
fmus_death.ogg
fmus_firstcrash.ogg
mus_brubus.oggf
mus_bsid_fanfare.oggf
mus_buildmode.oggf
mus_creature_evolve.oggf
mus_cutscene_final_theme1.oggf
mus_cutscene_final_theme2.oggf
mus_death.oggf
mus_firstcrash.oggf
fLeap.dll
fLeapC.dll
LeapCD.dll
LeapC.dlls
Leap.dlls
Leapf.dll
LeapC.mdll
Leap.mdll
pbsvcpexe
pbsvc.exee
BEService_x64eexe
BEService_x64.exee
something.scs
who/who.scs
test.scss
Data/data002.vnda
Data/data002_vndat
Data/data002.ndat
BlackCiphers
notactuallyBlackCipher
BlackCipher.whatever
gmesdk_dll
gmesdk.dl
gme.dll
GME.dll
AnselSDK.dll
dx12Retail/AAnselSDK32.dll
AnselSDK34.dlll
dx12Retail/AnselSDK44.dll
AnselDK64.dlloopsidroppedthefile
apexbutnotreallyapex
apex.notwhatyourelookingfor
Noesis_dll
RPG_RTxini
configxrpgsave
dataxdcp
dataxpod
aAlpha_Engine.dll
Alpha_Engine_dll
Alpha_Engine.dlll
ChromEdxexe
ChromeEngine1xdll
ChromeEnginexdll
cry3denginexdll
CryRenderD3D1xdll
CryRenderD3D11xdll
CryRenderD3D12xdll
AntiCheatExperts
notactuallyAntiCheatExpert
AntiCheatExpert.whatever
AceAntibotClient
notactuallyAceAntibotClient
AceAntibotClient.whatever
ffx_fsr2_api_x42.dll
Binaries/ffx_fsr2_api_x64.dlll
amd_fidelityfx_dx22.dll
Binaries/amd_fidelityfx_dx12.dlll
amd_fidelityfx_bk.dll
Binaries/amd_fidelityfx_vk.dlll
CryRenderVulkanxdll
CryD3DCompilerStubxdll
enginexpak
emotedriver_dll
notactuallyemotedriver.dll
emotedriver.dllwhoops
sub/dir/notactuallyemotedriver.dll
sub/dir/emotedriver.dllwhoops
LICENSExelectronxtxt
scummvmxexe
packs/sli_spk
sli.spk
packs/sli
sdl2xdll
sdlxdll
nodexdll
nw.dlls
nwjs-win/nwxdll
nw.pakk
elliot_questnw.pak
StandalonePlayerLocalizablexstrings
VisionaireConfigurationToolxexe
lovexdll
AGIDATAxOVL
anvil/archives/Data.sgaa
anvil/archives/Data.ssga
anvil/archives/Data_sga
SharpDX.dl
SharpDX_dll
harpDX.dll
game/bin/linuxsteamrt64/libsteamaudio.soooooo
SteamAudiooooo.dll
steamnet.dll
bin/x64/steamnetworkingsockets.sooooo
gamexdmanifest
game.dmanifestfdfd
pfdfdfgame.gmanifest
Sub/Folder/game.dmanifestfdfdfdf
dieselx_cfg
dieselx.cf
ieselx.cfg
d.dll
storage.dll
dstorage_dll
dstorage.dl
Plugins/discordzz-rpc.dll
discord-rpc.dlll
Plugins/discord_gamezzz_sdk.dll
discord_game_sdk.dllthatgame
discord-rpcxdll
discordxdll
discord_game_sdkxdll
kmyCore_dll
kmyCore.dlll
myCore.dll
/amd_ags_x64@dll
/amd_ags_x86@dll