-
Notifications
You must be signed in to change notification settings - Fork 1
/
CuckooFeatures.arff
3416 lines (3416 loc) · 806 KB
/
CuckooFeatures.arff
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
@relation test
@attribute instanceID_original {SeaDuke_32,HammerDuke_27,PinchDuke_25,MiniDuke_31,OnionDuke_26,NETEAGLE_36,ORANGEADE_40,SPACESHIP_38,MILKMAID_66,SHIPSHAPE_34,DoubleFantasy_59,EquationDrug_44,GRAYFISH_68,Fanny_49,FannyWorm_48,Tavdig_52,Nautilius_56,Uroburos_54,Kazuar_55,Carbon_53,sofacyA_17,sofacyB_18,xtunnel_23,XAgent-WIN_22,sednit-kit_15,manitsme_10,starsypound_12,newsreel_11,tabmsgsql_13,tarsip-eclipse_14}
@attribute 'apiTF 0=[NtQueryValueKey]' numeric
@attribute 'apiTF 1=[NtClose]' numeric
@attribute 'apiTF 2=[NtCreateFile]' numeric
@attribute 'apiTF 3=[RegOpenKeyExW]' numeric
@attribute 'apiTF 4=[WSAStartup]' numeric
@attribute 'apiTF 5=[NtFreeVirtualMemory]' numeric
@attribute 'apiTF 6=[NtDuplicateObject]' numeric
@attribute 'apiTF 7=[LdrGetProcedureAddress]' numeric
@attribute 'apiTF 8=[GetSystemInfo]' numeric
@attribute 'apiTF 9=[SetUnhandledExceptionFilter]' numeric
@attribute 'apiTF 10=[RegQueryValueExW]' numeric
@attribute 'apiTF 11=[NtReadFile]' numeric
@attribute 'apiTF 12=[RegOpenKeyExA]' numeric
@attribute 'apiTF 13=[NtOpenKey]' numeric
@attribute 'apiTF 14=[NtResumeThread]' numeric
@attribute 'apiTF 15=[RegCloseKey]' numeric
@attribute 'apiTF 16=[NtCreateThreadEx]' numeric
@attribute 'apiTF 17=[NtAllocateVirtualMemory]' numeric
@attribute 'apiTF 18=[LdrLoadDll]' numeric
@attribute 'apiTF 19=[SetFilePointer]' numeric
@attribute 'apiTF 20=[RegQueryValueExA]' numeric
@attribute 'apiTF 21=[GetSystemTimeAsFileTime]' numeric
@attribute 'apiTF 22=[LdrGetDllHandle]' numeric
@attribute 'apiTF 23=[NtOpenFile]' numeric
@attribute 'apiTF 24=[NtQuerySystemInformation]' numeric
@attribute 'apiTF 25=[RegCreateKeyExW]' numeric
@attribute 'apiTF 26=[gethostbyname]' numeric
@attribute 'apiTF 27=[GetFileType]' numeric
@attribute 'apiTF 28=[GlobalMemoryStatusEx]' numeric
@attribute 'apiTF 29=[NtDelayExecution]' numeric
@attribute 'apiTF 30=[RegSetValueExA]' numeric
@attribute 'apiTF 31=[UuidCreate]' numeric
@attribute 'apiTF 32=[getaddrinfo]' numeric
@attribute 'apiTF 33=[InternetConnectA]' numeric
@attribute 'apiTF 34=[NtCreateMutant]' numeric
@attribute 'apiTF 35=[HttpOpenRequestA]' numeric
@attribute 'apiTF 36=[NtOpenThread]' numeric
@attribute 'apiTF 37=[CreateThread]' numeric
@attribute 'apiTF 38=[CoInitializeEx]' numeric
@attribute 'apiTF 39=[OpenServiceA]' numeric
@attribute 'apiTF 40=[RegCreateKeyExA]' numeric
@attribute 'apiTF 41=[LdrUnloadDll]' numeric
@attribute 'apiTF 42=[NtDeviceIoControlFile]' numeric
@attribute 'apiTF 43=[HttpSendRequestA]' numeric
@attribute 'apiTF 44=[CoUninitialize]' numeric
@attribute 'apiTF 45=[InternetQueryOptionA]' numeric
@attribute 'apiTF 46=[NtQueryKey]' numeric
@attribute 'apiTF 47=[InternetOpenA]' numeric
@attribute 'apiTF 48=[InternetCloseHandle]' numeric
@attribute 'apiTF 49=[OpenSCManagerA]' numeric
@attribute 'apiTF 50=[InternetCrackUrlA]' numeric
@attribute 'apiTF 51=[ReadProcessMemory]' numeric
@attribute 'apiTF 52=[CoCreateInstance]' numeric
@attribute 'apiTF 53=[GetFileAttributesW]' numeric
@attribute 'apiTF 54=[CreateProcessInternalW]' numeric
@attribute 'apiTF 55=[GetSystemDirectoryA]' numeric
@attribute 'apiTF 56=[NtWriteFile]' numeric
@attribute 'apiTF 57=[FindFirstFileExW]' numeric
@attribute 'apiTF 58=[LoadStringA]' numeric
@attribute 'apiTF 59=[InternetOpenUrlA]' numeric
@attribute 'apiTF 60=[NtOpenKeyEx]' numeric
@attribute 'apiTF 61=[NtTerminateProcess]' numeric
@attribute 'apiTF 62=[GetComputerNameA]' numeric
@attribute 'apiTF 63=[connect]' numeric
@attribute 'apiTF 64=[MessageBoxTimeoutW]' numeric
@attribute 'apiTF 65=[CreateActCtxW]' numeric
@attribute 'apiTF 66=[NtProtectVirtualMemory]' numeric
@attribute 'apiTF 67=[LoadStringW]' numeric
@attribute 'apiTF 68=[SetErrorMode]' numeric
@attribute 'apiTF 69=[HttpOpenRequestW]' numeric
@attribute 'apiTF 70=[InternetSetOptionA]' numeric
@attribute 'apiTF 71=[InternetOpenW]' numeric
@attribute 'apiTF 72=[GetFileAttributesExW]' numeric
@attribute 'apiTF 73=[NtMapViewOfSection]' numeric
@attribute 'apiTF 74=[SizeofResource]' numeric
@attribute 'apiTF 75=[GetVolumeNameForVolumeMountPointW]' numeric
@attribute 'apiTF 76=[RegEnumKeyW]' numeric
@attribute 'apiTF 77=[GetNativeSystemInfo]' numeric
@attribute 'apiTF 78=[FindResourceW]' numeric
@attribute 'apiTF 79=[OleInitialize]' numeric
@attribute 'apiTF 80=[GetFileSizeEx]' numeric
@attribute 'apiTF 81=[LoadResource]' numeric
@attribute 'apiTF 82=[GetSystemWindowsDirectoryW]' numeric
@attribute 'apiTF 83=[NtCreateSection]' numeric
@attribute 'apiTF 84=[NtQueryDirectoryFile]' numeric
@attribute 'apiTF 85=[NtOpenProcess]' numeric
@attribute 'apiTF 86=[NtQueryInformationFile]' numeric
@attribute 'apiTF 87=[NtOpenSection]' numeric
@attribute 'apiTF 88=[CreateDirectoryW]' numeric
@attribute 'apiTF 89=[GetFileInformationByHandleEx]' numeric
@attribute 'apiTF 90=[GetVolumePathNamesForVolumeNameW]' numeric
@attribute 'apiTF 91=[GetSystemDirectoryW]' numeric
@attribute 'apiTF 92=[NtUnmapViewOfSection]' numeric
@attribute 'apiTF 93=[NtOpenMutant]' numeric
@attribute 'apiTF 94=[__exception__]' numeric
@attribute 'apiTF 95=[GetCursorPos]' numeric
@attribute 'apiTF 96=[RegQueryInfoKeyW]' numeric
@attribute 'apiTF 97=[GetShortPathNameW]' numeric
@attribute 'apiTF 98=[CreateRemoteThread]' numeric
@attribute 'apiTF 99=[DrawTextExW]' numeric
@attribute 'apiTF 100=[GetForegroundWindow]' numeric
@attribute 'apiTF 101=[NtOpenDirectoryObject]' numeric
@attribute 'apiTF 102=[RegEnumValueW]' numeric
@attribute 'apiTF 103=[GetKeyState]' numeric
@attribute 'apiTF 104=[GetSystemMetrics]' numeric
@attribute 'apiTF 105=[Process32NextW]' numeric
@attribute 'apiTF 106=[SetFileAttributesW]' numeric
@attribute 'apiTF 107=[RegSetValueExW]' numeric
@attribute 'apiTF 108=[Process32FirstW]' numeric
@attribute 'apiTF 109=[CreateToolhelp32Snapshot]' numeric
@attribute 'apiTF 110=[DeleteFileW]' numeric
@attribute 'apiTF 111=[IsDebuggerPresent]' numeric
@attribute 'apiTF 112=[FindResourceA]' numeric
@attribute 'apiTF 113=[SetFileTime]' numeric
@attribute 'apiTF 114=[NtQueryAttributesFile]' numeric
@attribute 'apiTF 115=[CopyFileA]' numeric
@attribute 'apiTF 116=[GetTempPathW]' numeric
@attribute 'apiTF 117=[WriteConsoleW]' numeric
@attribute 'apiTF 118=[GetVolumePathNameW]' numeric
@attribute 'apiTF 119=[RegEnumKeyExA]' numeric
@attribute 'apiTF 120=[NtCreateKey]' numeric
@attribute 'apiTF 121=[GetTimeZoneInformation]' numeric
@attribute 'apiTF 122=[SHGetSpecialFolderLocation]' numeric
@attribute 'apiTF 123=[SetWindowsHookExA]' numeric
@attribute 'apiTF 124=[LookupPrivilegeValueW]' numeric
@attribute 'apiTF 125=[FindResourceExW]' numeric
@attribute 'apiTF 126=[GetUserNameA]' numeric
@attribute 'apiTF 127=[GetFileSize]' numeric
@attribute 'apiTF 128=[RegEnumValueA]' numeric
@attribute 'modulesTF 129=[lsass.exe]' numeric
@attribute 'modulesTF 130=[ntdll.dll]' numeric
@attribute 'modulesTF 131=[kernel32.dll]' numeric
@attribute 'modulesTF 132=[KERNELBASE.dll]' numeric
@attribute 'modulesTF 133=[msvcrt.dll]' numeric
@attribute 'modulesTF 134=[RPCRT4.dll]' numeric
@attribute 'modulesTF 135=[SspiSrv.dll]' numeric
@attribute 'modulesTF 136=[lsasrv.dll]' numeric
@attribute 'modulesTF 137=[sechost.dll]' numeric
@attribute 'modulesTF 138=[SspiCli.dll]' numeric
@attribute 'modulesTF 139=[ADVAPI32.dll]' numeric
@attribute 'modulesTF 140=[USER32.dll]' numeric
@attribute 'modulesTF 141=[GDI32.dll]' numeric
@attribute 'modulesTF 142=[LPK.dll]' numeric
@attribute 'modulesTF 143=[USP10.dll]' numeric
@attribute 'modulesTF 144=[SAMSRV.dll]' numeric
@attribute 'modulesTF 145=[cryptdll.dll]' numeric
@attribute 'modulesTF 146=[MSASN1.dll]' numeric
@attribute 'modulesTF 147=[wevtapi.dll]' numeric
@attribute 'modulesTF 148=[IMM32.DLL]' numeric
@attribute 'modulesTF 149=[MSCTF.dll]' numeric
@attribute 'modulesTF 150=[cngaudit.dll]' numeric
@attribute 'modulesTF 151=[AUTHZ.dll]' numeric
@attribute 'modulesTF 152=[ncrypt.dll]' numeric
@attribute 'modulesTF 153=[bcrypt.dll]' numeric
@attribute 'modulesTF 154=[msprivs.DLL]' numeric
@attribute 'modulesTF 155=[netjoin.dll]' numeric
@attribute 'modulesTF 156=[negoexts.DLL]' numeric
@attribute 'modulesTF 157=[Secur32.dll]' numeric
@attribute 'modulesTF 158=[cryptbase.dll]' numeric
@attribute 'modulesTF 159=[kerberos.DLL]' numeric
@attribute 'modulesTF 160=[CRYPTSP.dll]' numeric
@attribute 'modulesTF 161=[WS2_32.dll]' numeric
@attribute 'modulesTF 162=[NSI.dll]' numeric
@attribute 'modulesTF 163=[mswsock.dll]' numeric
@attribute 'modulesTF 164=[wship6.dll]' numeric
@attribute 'modulesTF 165=[msv1_0.DLL]' numeric
@attribute 'modulesTF 166=[netlogon.DLL]' numeric
@attribute 'modulesTF 167=[DNSAPI.dll]' numeric
@attribute 'modulesTF 168=[logoncli.dll]' numeric
@attribute 'modulesTF 169=[schannel.DLL]' numeric
@attribute 'modulesTF 170=[CRYPT32.dll]' numeric
@attribute 'modulesTF 171=[wdigest.DLL]' numeric
@attribute 'modulesTF 172=[rsaenh.dll]' numeric
@attribute 'modulesTF 173=[tspkg.DLL]' numeric
@attribute 'modulesTF 174=[pku2u.DLL]' numeric
@attribute 'modulesTF 175=[bcryptprimitives.dll]' numeric
@attribute 'modulesTF 176=[RpcRtRemote.dll]' numeric
@attribute 'modulesTF 177=[efslsaext.dll]' numeric
@attribute 'modulesTF 178=[scecli.DLL]' numeric
@attribute 'modulesTF 179=[credssp.dll]' numeric
@attribute 'modulesTF 180=[WINSTA.dll]' numeric
@attribute 'modulesTF 181=[wshtcpip.dll]' numeric
@attribute 'modulesTF 182=[IPHLPAPI.DLL]' numeric
@attribute 'modulesTF 183=[WINNSI.DLL]' numeric
@attribute 'modulesTF 184=[netutils.dll]' numeric
@attribute 'modulesTF 185=[USERENV.dll]' numeric
@attribute 'modulesTF 186=[profapi.dll]' numeric
@attribute 'modulesTF 187=[samcli.dll]' numeric
@attribute 'modulesTF 188=[SAMLIB.dll]' numeric
@attribute 'modulesTF 189=[dssenh.dll]' numeric
@attribute 'modulesTF 190=[GPAPI.dll]' numeric
@attribute 'modulesTF 191=[certpoleng.dll]' numeric
@attribute 'modulesTF 192=[wkscli.dll]' numeric
@attribute 'modulesTF 193=[monitor-x86.dll]' numeric
@attribute 'modulesTF 194=[iertutil.dll]' numeric
@attribute 'modulesTF 195=[Normaliz.dll]' numeric
@attribute 'modulesTF 196=[urlmon.dll]' numeric
@attribute 'modulesTF 197=[WININET.dll]' numeric
@attribute 'modulesTF 198=[SHLWAPI.dll]' numeric
@attribute 'modulesTF 199=[OLEAUT32.dll]' numeric
@attribute 'modulesTF 200=[ole32.dll]' numeric
@attribute 'modulesTF 201=[MSVCP60.dll]' numeric
@attribute 'modulesTF 202=[SHELL32.dll]' numeric
@attribute 'modulesTF 203=[MSVCRT.dll]' numeric
@attribute 'modulesTF 204=[cmd.exe]' numeric
@attribute 'modulesTF 205=[WINBRAND.dll]' numeric
@attribute 'modulesTF 206=[rundll32.exe]' numeric
@attribute 'modulesTF 207=[imagehlp.dll]' numeric
@attribute 'modulesTF 208=[apphelp.dll]' numeric
@attribute 'modulesTF 209=[AcLayers.DLL]' numeric
@attribute 'modulesTF 210=[MPR.dll]' numeric
@attribute 'modulesTF 211=[WINSPOOL.DRV]' numeric
@attribute 'modulesTF 212=[comctl32.dll]' numeric
@attribute 'modulesTF 213=[FXSRESM.DLL]' numeric
@attribute 'modulesTF 214=[AUDIOSES.DLL]' numeric
@attribute 'modulesTF 215=[msacm32.drv]' numeric
@attribute 'modulesTF 216=[bthprops.cpl]' numeric
@attribute 'modulesTF 217=[wer.dll]' numeric
@attribute 'modulesTF 218=[actxprxy.dll]' numeric
@attribute 'modulesTF 219=[rasman.dll]' numeric
@attribute 'modulesTF 220=[eappcfg.dll]' numeric
@attribute 'modulesTF 221=[wscinterop.dll]' numeric
@attribute 'modulesTF 222=[WindowsCodecs.dll]' numeric
@attribute 'modulesTF 223=[OneX.DLL]' numeric
@attribute 'modulesTF 224=[PSAPI.DLL]' numeric
@attribute 'modulesTF 225=[CRYPTBASE.dll]' numeric
@attribute 'modulesTF 226=[NLSLexicons0009.dll]' numeric
@attribute 'modulesTF 227=[ieframe.dll]' numeric
@attribute 'modulesTF 228=[werconcpl.dll]' numeric
@attribute 'modulesTF 229=[Explorer.EXE]' numeric
@attribute 'modulesTF 230=[wwapi.dll]' numeric
@attribute 'modulesTF 231=[OLEACC.dll]' numeric
@attribute 'modulesTF 232=[UxTheme.dll]' numeric
@attribute 'modulesTF 233=[midimap.dll]' numeric
@attribute 'modulesTF 234=[stobject.dll]' numeric
@attribute 'modulesTF 235=[wercplsupport.dll]' numeric
@attribute 'modulesTF 236=[thumbcache.dll]' numeric
@attribute 'modulesTF 237=[van.dll]' numeric
@attribute 'modulesTF 238=[PortableDeviceApi.dll]' numeric
@attribute 'modulesTF 239=[gdiplus.dll]' numeric
@attribute 'modulesTF 240=[framedynos.dll]' numeric
@attribute 'modulesTF 241=[PortableDeviceTypes.dll]' numeric
@attribute 'modulesTF 242=[DUser.dll]' numeric
@attribute 'modulesTF 243=[msxml6.dll]' numeric
@attribute 'modulesTF 244=[RASAPI32.dll]' numeric
@attribute 'modulesTF 245=[ATL.DLL]' numeric
@attribute 'modulesTF 246=[WSCAPI.dll]' numeric
@attribute 'modulesTF 247=[timedate.cpl]' numeric
@attribute 'modulesTF 248=[srchadmin.dll]' numeric
@attribute 'modulesTF 249=[SearchFolder.dll]' numeric
@attribute 'modulesTF 250=[tiptsf.dll]' numeric
@attribute 'modulesTF 251=[NaturalLanguage6.dll]' numeric
@attribute 'modulesTF 252=[wscui.cpl]' numeric
@attribute 'modulesTF 253=[wlanhlp.dll]' numeric
@attribute 'modulesTF 254=[DUI70.dll]' numeric
@attribute 'modulesTF 255=[POWRPROF.dll]' numeric
@attribute 'modulesTF 256=[cscobj.dll]' numeric
@attribute 'modulesTF 257=[WWanMM.dll]' numeric
@attribute 'modulesTF 258=[SndVolSSO.DLL]' numeric
@attribute 'modulesTF 259=[shdocvw.dll]' numeric
@attribute 'modulesTF 260=[QUtil.dll]' numeric
@attribute 'modulesTF 261=[davclnt.dll]' numeric
@attribute 'modulesTF 262=[CLBCatQ.DLL]' numeric
@attribute 'modulesTF 263=[netprofm.dll]' numeric
@attribute 'modulesTF 264=[dhcpcsvc.DLL]' numeric
@attribute 'modulesTF 265=[WINTRUST.dll]' numeric
@attribute 'modulesTF 266=[msiltcfg.dll]' numeric
@attribute 'modulesTF 267=[mssprxy.dll]' numeric
@attribute 'modulesTF 268=[VERSION.dll]' numeric
@attribute 'modulesTF 269=[AVRT.dll]' numeric
@attribute 'modulesTF 270=[VBoxMRXNP.dll]' numeric
@attribute 'modulesTF 271=[shacct.dll]' numeric
@attribute 'modulesTF 272=[NLSData0009.dll]' numeric
@attribute 'modulesTF 273=[XmlLite.dll]' numeric
@attribute 'modulesTF 274=[srvcli.dll]' numeric
@attribute 'modulesTF 275=[CSCAPI.dll]' numeric
@attribute 'modulesTF 276=[PROPSYS.dll]' numeric
@attribute 'modulesTF 277=[netshell.dll]' numeric
@attribute 'modulesTF 278=[CFGMGR32.dll]' numeric
@attribute 'modulesTF 279=[EhStorShell.dll]' numeric
@attribute 'modulesTF 280=[CRYPTUI.dll]' numeric
@attribute 'modulesTF 281=[hcproviders.dll]' numeric
@attribute 'modulesTF 282=[drprov.dll]' numeric
@attribute 'modulesTF 283=[DEVRTL.dll]' numeric
@attribute 'modulesTF 284=[cscui.dll]' numeric
@attribute 'modulesTF 285=[pnidui.dll]' numeric
@attribute 'modulesTF 286=[SETUPAPI.dll]' numeric
@attribute 'modulesTF 287=[SSPICLI.DLL]' numeric
@attribute 'modulesTF 288=[WLDAP32.dll]' numeric
@attribute 'modulesTF 289=[nlaapi.dll]' numeric
@attribute 'modulesTF 290=[imapi2.dll]' numeric
@attribute 'modulesTF 291=[FXSAPI.dll]' numeric
@attribute 'modulesTF 292=[msi.dll]' numeric
@attribute 'modulesTF 293=[hgcpl.dll]' numeric
@attribute 'modulesTF 294=[HID.DLL]' numeric
@attribute 'modulesTF 295=[slc.dll]' numeric
@attribute 'modulesTF 296=[ntlanman.dll]' numeric
@attribute 'modulesTF 297=[eappprxy.dll]' numeric
@attribute 'modulesTF 298=[NetworkExplorer.dll]' numeric
@attribute 'modulesTF 299=[dxp.dll]' numeric
@attribute 'modulesTF 300=[MLANG.dll]' numeric
@attribute 'modulesTF 301=[ntshrui.dll]' numeric
@attribute 'modulesTF 302=[ieproxy.dll]' numeric
@attribute 'modulesTF 303=[Syncreg.dll]' numeric
@attribute 'modulesTF 304=[wpdshserviceobj.dll]' numeric
@attribute 'modulesTF 305=[prnfldr.dll]' numeric
@attribute 'modulesTF 306=[SyncCenter.dll]' numeric
@attribute 'modulesTF 307=[WlanMM.dll]' numeric
@attribute 'modulesTF 308=[AltTab.dll]' numeric
@attribute 'modulesTF 309=[ksuser.dll]' numeric
@attribute 'modulesTF 310=[wdmaud.drv]' numeric
@attribute 'modulesTF 311=[EhStorAPI.dll]' numeric
@attribute 'modulesTF 312=[dwmapi.dll]' numeric
@attribute 'modulesTF 313=[RasMM.dll]' numeric
@attribute 'modulesTF 314=[ntmarta.dll]' numeric
@attribute 'modulesTF 315=[MsftEdit.dll]' numeric
@attribute 'modulesTF 316=[BatMeter.dll]' numeric
@attribute 'modulesTF 317=[DAVHLPR.dll]' numeric
@attribute 'modulesTF 318=[CSCDLL.dll]' numeric
@attribute 'modulesTF 319=[IMM32.dll]' numeric
@attribute 'modulesTF 320=[msls31.dll]' numeric
@attribute 'modulesTF 321=[WTSAPI32.dll]' numeric
@attribute 'modulesTF 322=[authui.dll]' numeric
@attribute 'modulesTF 323=[IconCodecService.dll]' numeric
@attribute 'modulesTF 324=[es.dll]' numeric
@attribute 'modulesTF 325=[ehSSO.dll]' numeric
@attribute 'modulesTF 326=[QAgent.dll]' numeric
@attribute 'modulesTF 327=[MSACM32.dll]' numeric
@attribute 'modulesTF 328=[WINMM.dll]' numeric
@attribute 'modulesTF 329=[wlanutil.dll]' numeric
@attribute 'modulesTF 330=[LINKINFO.dll]' numeric
@attribute 'modulesTF 331=[dhcpcsvc6.DLL]' numeric
@attribute 'modulesTF 332=[SXS.DLL]' numeric
@attribute 'modulesTF 333=[DEVOBJ.dll]' numeric
@attribute 'modulesTF 334=[tquery.dll]' numeric
@attribute 'modulesTF 335=[gameux.dll]' numeric
@attribute 'modulesTF 336=[Wlanapi.dll]' numeric
@attribute 'modulesTF 337=[MMDevApi.dll]' numeric
@attribute 'modulesTF 338=[provsvc.dll]' numeric
@attribute 'modulesTF 339=[UIAnimation.dll]' numeric
@attribute 'modulesTF 340=[fxsst.dll]' numeric
@attribute 'modulesTF 341=[wwanapi.dll]' numeric
@attribute 'modulesTF 342=[Actioncenter.dll]' numeric
@attribute 'modulesTF 343=[msxml3.dll]' numeric
@attribute 'modulesTF 344=[StructuredQuery.dll]' numeric
@attribute 'modulesTF 345=[npmproxy.dll]' numeric
@attribute 'modulesTF 346=[EXPLORERFRAME.dll]' numeric
@attribute 'modulesTF 347=[ccPrxy.exe]' numeric
@attribute 'modulesTF 348=[MFC42.DLL]' numeric
@attribute 'modulesTF 349=[odbcint.dll]' numeric
@attribute 'modulesTF 350=[MILKMAID_7b8402ae691806a69d6d532041ce33bee1cf13108366692325581db2de418d42.exe]' numeric
@attribute 'modulesTF 351=[ODBC32.dll]' numeric
@attribute 'modulesTF 352=[WININET.DLL]' numeric
@attribute 'modulesTF 353=[USER32.DLL]' numeric
@attribute 'modulesTF 354=[WSOCK32.DLL]' numeric
@attribute 'modulesTF 355=[NETEAGLE_1cd3b3df8cdf83f6a44439cd9ab18114c235e8a0ed1c9d73285ab671e2b14161.exe]' numeric
@attribute 'modulesTF 356=[WS2_32.DLL]' numeric
@attribute 'modulesTF 357=[COMDLG32.DLL]' numeric
@attribute 'modulesTF 358=[iphlpapi.dll]' numeric
@attribute 'regTF 359=[IESQMMUTEX_0_208]' numeric
@attribute 'regTF 360=[letusgohtppmmv2.0.0.1]' numeric
@attribute 'regTF 361=[prkMtx]' numeric
@attribute 'mutexesTF 362=[RASMANCS]' numeric
@attribute 'mutexesTF 363=[Progid]' numeric
@attribute 'mutexesTF 364=[ProxyStubClsid32]' numeric
@attribute 'mutexesTF 365=[SystemSetupInProgress]' numeric
@attribute 'mutexesTF 366=[OleAut]' numeric
@attribute 'mutexesTF 367=[ConsoleTracingMask]' numeric
@attribute 'mutexesTF 368=[EnableConsoleTracing]' numeric
@attribute 'mutexesTF 369=[{BCD1DE7E-2DB1-418B-B047-4A74E101F8C1}]' numeric
@attribute 'mutexesTF 370=[{26656EAA-54EB-4E6F-8F85-4F0EF901A406}]' numeric
@attribute 'mutexesTF 371=[InprocHandler32]' numeric
@attribute 'mutexesTF 372=[DNSClient]' numeric
@attribute 'mutexesTF 373=[Tracing]' numeric
@attribute 'mutexesTF 374=[{DE014A9B-96F4-4C2E-AB79-BAD56607FC33}]' numeric
@attribute 'mutexesTF 375=[Parameters]' numeric
@attribute 'mutexesTF 376=[DnsClient]' numeric
@attribute 'mutexesTF 377=[{8A40A45D-055C-4B62-ABD7-6D613E2CEAEC}]' numeric
@attribute 'mutexesTF 378=[FileDirectory]' numeric
@attribute 'mutexesTF 379=[OOBEInProgress]' numeric
@attribute 'mutexesTF 380=[ComputerName]' numeric
@attribute 'mutexesTF 381=[MaxRpcSize]' numeric
@attribute 'mutexesTF 382=[Domain]' numeric
@attribute 'mutexesTF 383=[EnableFileTracing]' numeric
@attribute 'mutexesTF 384=[CEIPEnable]' numeric
@attribute 'mutexesTF 385=[{2A1C9EB2-DF62-4154-B800-63278FCB8037}]' numeric
@attribute 'mutexesTF 386=[InprocServer32]' numeric
@attribute 'mutexesTF 387=[{B196B286-BAB4-101A-B69C-00AA00341D07}]' numeric
@attribute 'mutexesTF 388=[ThreadingModel]' numeric
@attribute 'mutexesTF 389=[(Default)]' numeric
@attribute 'mutexesTF 390=[MaxFileSize]' numeric
@attribute 'mutexesTF 391=[InprocHandler]' numeric
@attribute 'mutexesTF 392=[FileTracingMask]' numeric
@attribute 'mutexesTF 393=[TreatAs]' numeric
@attribute 'mutexesTF 394=[Wpad]' numeric
@attribute 'mutexesTF 395=[{55272A00-42CB-11CE-8135-00AA004BB851}]' numeric
@attribute 'mutexesTF 396=[Hostname]' numeric
@attribute 'mutexesTF 397=[Rpc]' numeric
@attribute 'mutexesTF 398=[00000409]' numeric
@attribute 'mutexesTF 399=[EnableExtensions]' numeric
@attribute 'mutexesTF 400=[AutoRun]' numeric
@attribute 'mutexesTF 401=[Disable]' numeric
@attribute 'mutexesTF 402=[DefaultColor]' numeric
@attribute 'mutexesTF 403=[User Agent]' numeric
@attribute 'mutexesTF 404=[Internet Settings]' numeric
@attribute 'mutexesTF 405=[PathCompletionChar]' numeric
@attribute 'mutexesTF 406=[DelayedExpansion]' numeric
@attribute 'mutexesTF 407=[CompletionChar]' numeric
@attribute 'mutexesTF 408=[DisableUNCCheck]' numeric
@attribute 'mutexesTF 409=[1]' numeric
@attribute 'mutexesTF 410=[en-US]' numeric
@attribute 'mutexesTF 411=[{00021500-0000-0000-C000-000000000046}]' numeric
@attribute 'mutexesTF 412=[EnableShareDenyNone]' numeric
@attribute 'mutexesTF 413=[{00021401-0000-0000-C000-000000000046}]' numeric
@attribute 'mutexesTF 414=[System.NamespaceCLSID]' numeric
@attribute 'mutexesTF 415=[NoOplock]' numeric
@attribute 'mutexesTF 416=[IsShortcut]' numeric
@attribute 'mutexesTF 417=[DisableProcessIsolation]' numeric
@attribute 'mutexesTF 418=[UseOutOfProcHandlerCache]' numeric
@attribute 'mutexesTF 419=[UserChoice]' numeric
@attribute 'mutexesTF 420=[lnkfile]' numeric
@attribute 'mutexesTF 421=[UseInProcHandlerCache]' numeric
@attribute 'mutexesTF 422=[OpenWithProgids]' numeric
@attribute 'mutexesTF 423=[.lnk]' numeric
@attribute 'mutexesTF 424=[CurVer]' numeric
@attribute 'mutexesTF 425=[DisableMetaFiles]' numeric
@attribute 'mutexesTF 426=[{28636AA6-953D-11D2-B5D6-00C04FD918D0} 6]' numeric
@attribute 'mutexesTF 427=[{20D04FE0-3AEA-1069-A2D8-08002B30309D}]' numeric
@attribute 'mutexesTF 428=[]' numeric
@attribute 'mutexesTF 429=[Policy]' numeric
@attribute 'mutexesTF 430=[RegisteredOrganization]' numeric
@attribute 'mutexesTF 431=[RegisteredOwner]' numeric
@attribute 'mutexesTF 432=[{77032DAA-B7F2-101B-A1F0-01C29183BCA1}]' numeric
@attribute 'mutexesTF 433=[Status]' numeric
@attribute 'mutexesTF 434=[Version]' numeric
@attribute 'mutexesTF 435=[Explorer]' numeric
@attribute 'mutexesTF 436=[ccPrxy.exe]' numeric
@attribute 'mutexesTF 437=[Directory]' numeric
@attribute 'mutexesTF 438=[AppData]' numeric
@attribute 'mutexesTF 439=[CurrentVersion]' numeric
@attribute 'mutexesTF 440=[Personal]' numeric
@attribute 'mutexesTF 441=[Stream]' numeric
@attribute 'mutexesTF 442=[MILKMAID_7b8402ae691806a69d6d532041ce33bee1cf13108366692325581db2de418d42.exe]' numeric
@attribute 'mutexesTF 443=[Desktop]' numeric
@attribute 'mutexesTF 444=[NETEAGLE_1cd3b3df8cdf83f6a44439cd9ab18114c235e8a0ed1c9d73285ab671e2b14161.exe]' numeric
@attribute 'stringsTF 445=[!This program cannot be run in DOS mode.]' numeric
@attribute 'stringsTF 446=[KERNEL32.DLL]' numeric
@attribute 'stringsTF 447=[USER32.dll]' numeric
@attribute 'stringsTF 448=[WS2_32.dll]' numeric
@attribute 'stringsTF 449=[LoadLibraryA]' numeric
@attribute 'stringsTF 450=[GetProcAddress]' numeric
@attribute 'stringsTF 451=[VirtualProtect]' numeric
@attribute 'stringsTF 452=[VirtualAlloc]' numeric
@attribute 'stringsTF 453=[VirtualFree]' numeric
@attribute 'stringsTF 454=[ExitProcess]' numeric
@attribute 'stringsTF 455=[MessageBoxA]' numeric
@attribute 'stringsTF 456=[GetStdHandle]' numeric
@attribute 'stringsTF 457=[^SSSSS]' numeric
@attribute 'stringsTF 458=[HtHu4j]' numeric
@attribute 'stringsTF 459=[.reloc]' numeric
@attribute 'stringsTF 460=[`eh vector vbase copy constructor iterator]' numeric
@attribute 'stringsTF 461=[PPPPPPPP]' numeric
@attribute 'stringsTF 462=[ H]' numeric
@attribute 'stringsTF 463=[`local vftable constructor closure]' numeric
@attribute 'stringsTF 464=[DeleteCriticalSection]' numeric
@attribute 'stringsTF 465=[`eh vector destructor iterator]' numeric
@attribute 'stringsTF 466=[Monday]' numeric
@attribute 'stringsTF 467=[GetActiveWindow]' numeric
@attribute 'stringsTF 468=[TlsGetValue]' numeric
@attribute 'stringsTF 469=[`dynamic atexit destructor for ]' numeric
@attribute 'stringsTF 470=[InternetSetOptionA]' numeric
@attribute 'stringsTF 471=[LCMapStringW]' numeric
@attribute 'stringsTF 472=[`vector constructor iterator]' numeric
@attribute 'stringsTF 473=[Please contact the applications support team for more information.]' numeric
@attribute 'stringsTF 474=[RtlUnwind]' numeric
@attribute 'stringsTF 475=[UTF-16LE]' numeric
@attribute 'stringsTF 476=[^WWWWW]' numeric
@attribute 'stringsTF 477=[Microsoft Visual C++ Runtime Library]' numeric
@attribute 'stringsTF 478=[LCMapStringA]' numeric
@attribute 'stringsTF 479=[ Base Class Descriptor at (]' numeric
@attribute 'stringsTF 480=[LeaveCriticalSection]' numeric
@attribute 'stringsTF 481=[SetEndOfFile]' numeric
@attribute 'stringsTF 482=[urlmon.dll]' numeric
@attribute 'stringsTF 483=[HttpEndRequestA]' numeric
@attribute 'stringsTF 484=[November]' numeric
@attribute 'stringsTF 485=[- floating point support not loaded]' numeric
@attribute 'stringsTF 486=[ ]' numeric
@attribute 'stringsTF 487=[CreateThread]' numeric
@attribute 'stringsTF 488=[Wednesday]' numeric
@attribute 'stringsTF 489=[Tuesday]' numeric
@attribute 'stringsTF 490=[WININET.dll]' numeric
@attribute 'stringsTF 491=[- not enough space for arguments]' numeric
@attribute 'stringsTF 492=[GetModuleFileNameA]' numeric
@attribute 'stringsTF 493=[`vbtable]' numeric
@attribute 'stringsTF 494=[__cdecl]' numeric
@attribute 'stringsTF 495=[`managed vector constructor iterator]' numeric
@attribute 'stringsTF 496=[ADVAPI32.dll]' numeric
@attribute 'stringsTF 497=[CorExitProcess]' numeric
@attribute 'stringsTF 498=[__thiscall]' numeric
@attribute 'stringsTF 499=[`eh vector constructor iterator]' numeric
@attribute 'stringsTF 500=[TerminateProcess]' numeric
@attribute 'stringsTF 501=[- not enough space for _onexit/atexit table]' numeric
@attribute 'stringsTF 502=[`eh vector copy constructor iterator]' numeric
@attribute 'stringsTF 503=[.?AVbad_exception@std@@]' numeric
@attribute 'stringsTF 504=[.?AVlength_error@std@@]' numeric
@attribute 'stringsTF 505=[ntdll.dll]' numeric
@attribute 'stringsTF 506=[`local vftable]' numeric
@attribute 'stringsTF 507=[xppwpp]' numeric
@attribute 'stringsTF 508=[`default constructor closure]' numeric
@attribute 'stringsTF 509=[Runtime Error!]' numeric
@attribute 'stringsTF 510=[JanFebMarAprMayJunJulAugSepOctNovDec]' numeric
@attribute 'stringsTF 511=[vector<T> too long]' numeric
@attribute 'stringsTF 512=[GetCommandLineA]' numeric
@attribute 'stringsTF 513=[GetCurrentThreadId]' numeric
@attribute 'stringsTF 514=[HttpSendRequestA]' numeric
@attribute 'stringsTF 515=[`vftable]' numeric
@attribute 'stringsTF 516=[Program: ]' numeric
@attribute 'stringsTF 517=[`dynamic initializer for ]' numeric
@attribute 'stringsTF 518=[SetLastError]' numeric
@attribute 'stringsTF 519=[`vector destructor iterator]' numeric
@attribute 'stringsTF 520=[`omni callsig]' numeric
@attribute 'stringsTF 521=[NtQuerySystemInformation]' numeric
@attribute 'stringsTF 522=[ !"#$%&()*+-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ\^_`abcdefghijklmnopqrstuvwxyz{|}~]' numeric
@attribute 'stringsTF 523=[Friday]' numeric
@attribute 'stringsTF 524=[ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/]' numeric
@attribute 'stringsTF 525=[SunMonTueWedThuFriSat]' numeric
@attribute 'stringsTF 526=[<+t(<-t$:]' numeric
@attribute 'stringsTF 527=[`vector vbase constructor iterator]' numeric
@attribute 'stringsTF 528=[CompareStringW]' numeric
@attribute 'stringsTF 529=[Unknown exception]' numeric
@attribute 'stringsTF 530=[ !"#$%&()*+-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ\^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~]' numeric
@attribute 'stringsTF 531=[1#QNAN]' numeric
@attribute 'stringsTF 532=[This application has requested the Runtime to terminate it in an unusual way.]' numeric
@attribute 'stringsTF 533=[\cmd.exe]' numeric
@attribute 'stringsTF 534=[.?AVexception@std@@]' numeric
@attribute 'stringsTF 535=[CompareStringA]' numeric
@attribute 'stringsTF 536=[September]' numeric
@attribute 'stringsTF 537=[TlsSetValue]' numeric
@attribute 'stringsTF 538=[GetLastActivePopup]' numeric
@attribute 'stringsTF 539=[- not enough space for environment]' numeric
@attribute 'stringsTF 540=[`local static thread guard]' numeric
@attribute 'stringsTF 541=[__ptr64]' numeric
@attribute 'stringsTF 542=[InternetCloseHandle]' numeric
@attribute 'stringsTF 543=[runtime error ]' numeric
@attribute 'stringsTF 544=[GetFileType]' numeric
@attribute 'stringsTF 545=[DisconnectNamedPipe]' numeric
@attribute 'stringsTF 546=[TlsFree]' numeric
@attribute 'stringsTF 547=[InitializeCriticalSection]' numeric
@attribute 'stringsTF 548=[FlsFree]' numeric
@attribute 'stringsTF 549=[`vector deleting destructor]' numeric
@attribute 'stringsTF 550=[- Attempt to use MSIL code from this assembly during native code initialization]' numeric
@attribute 'stringsTF 551=[bad allocation]' numeric
@attribute 'stringsTF 552=[ReadFile]' numeric
@attribute 'stringsTF 553=[ new]' numeric
@attribute 'stringsTF 554=[TlsAlloc]' numeric
@attribute 'stringsTF 555=[`scalar deleting destructor]' numeric
@attribute 'stringsTF 556=[HeapSize]' numeric
@attribute 'stringsTF 557=[`.rdata]' numeric
@attribute 'stringsTF 558=[LookupAccountSidA]' numeric
@attribute 'stringsTF 559=[DecodePointer]' numeric
@attribute 'stringsTF 560=[bad exception]' numeric
@attribute 'stringsTF 561=[GetEnvironmentStringsW]' numeric
@attribute 'stringsTF 562=[__fastcall]' numeric
@attribute 'stringsTF 563=[GetCurrentProcess]' numeric
@attribute 'stringsTF 564=[GetConsoleCP]' numeric
@attribute 'stringsTF 565=[SetEvent]' numeric
@attribute 'stringsTF 566=[Saturday]' numeric
@attribute 'stringsTF 567=[CreateEventA]' numeric
@attribute 'stringsTF 568=[invalid map/set<T> iterator]' numeric
@attribute 'stringsTF 569=[An application has made an attempt to load the C runtime library incorrectly.]' numeric
@attribute 'stringsTF 570=[.?AVout_of_range@std@@]' numeric
@attribute 'stringsTF 571=[ delete]' numeric
@attribute 'stringsTF 572=[SING error]' numeric
@attribute 'stringsTF 573=[invalid string position]' numeric
@attribute 'stringsTF 574=[`managed vector destructor iterator]' numeric
@attribute 'stringsTF 575=[Thursday]' numeric
@attribute 'stringsTF 576=[@.data]' numeric
@attribute 'stringsTF 577=[ !"#$%&()*+-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz\^_`abcdefghijklmnopqrstuvwxyz{|}~]' numeric
@attribute 'stringsTF 578=[SeDebugPrivilege]' numeric
@attribute 'stringsTF 579=[ Type Descriptor]' numeric
@attribute 'stringsTF 580=[- Attempt to initialize the CRT more than once.]' numeric
@attribute 'stringsTF 581=[- unable to initialize heap]' numeric
@attribute 'stringsTF 582=[`string]' numeric
@attribute 'stringsTF 583=[ Class Hierarchy Descriptor]' numeric
@attribute 'stringsTF 584=[SetUnhandledExceptionFilter]' numeric
@attribute 'stringsTF 585=[InternetQueryDataAvailable]' numeric
@attribute 'stringsTF 586=[operator]' numeric
@attribute 'stringsTF 587=[ ((((( H]' numeric
@attribute 'stringsTF 588=[1#SNAN]' numeric
@attribute 'stringsTF 589=[- not enough space for stdio initialization]' numeric
@attribute 'stringsTF 590=[0SSSSS]' numeric
@attribute 'stringsTF 591=[InternetWriteFile]' numeric
@attribute 'stringsTF 592=[SetStdHandle]' numeric
@attribute 'stringsTF 593=[QueryPerformanceCounter]' numeric
@attribute 'stringsTF 594=[EncodePointer]' numeric
@attribute 'stringsTF 595=[GetCPInfo]' numeric
@attribute 'stringsTF 596=[UQPXYY]' numeric
@attribute 'stringsTF 597=[GetStartupInfoA]' numeric
@attribute 'stringsTF 598=[__restrict]' numeric
@attribute 'stringsTF 599=[abcdefghijklmnopqrstuvwxyz]' numeric
@attribute 'stringsTF 600=[<program name unknown>]' numeric
@attribute 'stringsTF 601=[`vbase destructor]' numeric
@attribute 'stringsTF 602=[- pure virtual function call]' numeric
@attribute 'stringsTF 603=[GetProcessWindowStation]' numeric
@attribute 'stringsTF 604=[ delete]' numeric
@attribute 'stringsTF 605=[DOMAIN error]' numeric
@attribute 'stringsTF 606=[;t$v-]' numeric
@attribute 'stringsTF 607=[__stdcall]' numeric
@attribute 'stringsTF 608=[HttpOpenRequestA]' numeric
@attribute 'stringsTF 609=[__unaligned]' numeric
@attribute 'stringsTF 610=[December]' numeric
@attribute 'stringsTF 611=[ h(((( H]' numeric
@attribute 'stringsTF 612=[deque<T> too long]' numeric
@attribute 'stringsTF 613=[August]' numeric
@attribute 'stringsTF 614=[`virtual displacement map]' numeric
@attribute 'stringsTF 615=[UnhandledExceptionFilter]' numeric
@attribute 'stringsTF 616=[OpenProcessToken]' numeric
@attribute 'stringsTF 617=[`managed vector copy constructor iterator]' numeric
@attribute 'stringsTF 618=[InternetOpenA]' numeric
@attribute 'stringsTF 619=[- unexpected heap error]' numeric
@attribute 'stringsTF 620=[GetTimeZoneInformation]' numeric
@attribute 'stringsTF 621=[FlsGetValue]' numeric
@attribute 'stringsTF 622=[GetTokenInformation]' numeric
@attribute 'stringsTF 623=[LookupPrivilegeValueA]' numeric
@attribute 'stringsTF 624=[0A@@Ju]' numeric
@attribute 'stringsTF 625=[.?AVlogic_error@std@@]' numeric
@attribute 'stringsTF 626=[8VVVVV]' numeric
@attribute 'stringsTF 627=[SetCurrentDirectoryA]' numeric
@attribute 'stringsTF 628=[- unexpected multithread lock error]' numeric
@attribute 'stringsTF 629=[GetCurrentDirectoryA]' numeric
@attribute 'stringsTF 630=[`udt returning]' numeric
@attribute 'stringsTF 631=[GetSystemDirectoryA]' numeric
@attribute 'stringsTF 632=[- unable to open console device]' numeric
@attribute 'stringsTF 633=[GetVersionExA]' numeric
@attribute 'stringsTF 634=[GetCurrentProcessId]' numeric
@attribute 'stringsTF 635=[InternetQueryOptionA]' numeric
@attribute 'stringsTF 636=[mscoree.dll]' numeric
@attribute 'stringsTF 637=[CreateProcessA]' numeric
@attribute 'stringsTF 638=[WriteFile]' numeric
@attribute 'stringsTF 639=[`h`hhh]' numeric
@attribute 'stringsTF 640=[GetConsoleOutputCP]' numeric
@attribute 'stringsTF 641=[GetLastError]' numeric
@attribute 'stringsTF 642=[=/>H>O>W>\>`>d>]' numeric
@attribute 'stringsTF 643=[GetStringTypeA]' numeric
@attribute 'stringsTF 644=[This indicates a bug in your application. It is most likely the result of calling an MSIL-compiled (/clr) function from a native constructor or from DllMain.]' numeric
@attribute 'stringsTF 645=[HeapCreate]' numeric
@attribute 'stringsTF 646=[ConnectNamedPipe]' numeric
@attribute 'stringsTF 647=[`vcall]' numeric
@attribute 'stringsTF 648=[`placement delete closure]' numeric
@attribute 'stringsTF 649=[CreateFileA]' numeric
@attribute 'stringsTF 650=[January]' numeric
@attribute 'stringsTF 651=[HeapReAlloc]' numeric
@attribute 'stringsTF 652=[HttpAddRequestHeadersA]' numeric
@attribute 'stringsTF 653=[GetProcessHeap]' numeric
@attribute 'stringsTF 654=[GetStringTypeW]' numeric
@attribute 'stringsTF 655=[GetOEMCP]' numeric
@attribute 'stringsTF 656=[__clrcall]' numeric
@attribute 'stringsTF 657=[October]' numeric
@attribute 'stringsTF 658=[FreeEnvironmentStringsA]' numeric
@attribute 'stringsTF 659=[ Complete Object Locator]' numeric
@attribute 'stringsTF 660=[`local static guard]' numeric
@attribute 'stringsTF 661=[GetPrivateProfileStringA]' numeric
@attribute 'stringsTF 662=[`h````]' numeric
@attribute 'stringsTF 663=[0;0m0t0x0|0]' numeric
@attribute 'stringsTF 664=[- not enough space for lowio initialization]' numeric
@attribute 'stringsTF 665=[MM/dd/yy]' numeric
@attribute 'stringsTF 666=[ABCDEFGHIJKLMNOPQRSTUVWXYZ]' numeric
@attribute 'stringsTF 667=[MultiByteToWideChar]' numeric
@attribute 'stringsTF 668=[PeekNamedPipe]' numeric
@attribute 'stringsTF 669=[InterlockedDecrement]' numeric
@attribute 'stringsTF 670=[HeapAlloc]' numeric
@attribute 'stringsTF 671=[ExitThread]' numeric
@attribute 'stringsTF 672=[GAIsProcessorFeaturePresent]' numeric
@attribute 'stringsTF 673=[AdjustTokenPrivileges]' numeric
@attribute 'stringsTF 674=[GetACP]' numeric
@attribute 'stringsTF 675=[D$PWVU]' numeric
@attribute 'stringsTF 676=[QQSVWd]' numeric
@attribute 'stringsTF 677=[WaitForSingleObject]' numeric
@attribute 'stringsTF 678=[- not enough space for locale information]' numeric
@attribute 'stringsTF 679=[HttpQueryInfoA]' numeric
@attribute 'stringsTF 680=[__based(]' numeric
@attribute 'stringsTF 681=[(null)]' numeric
@attribute 'stringsTF 682=[.?AVbad_alloc@std@@]' numeric
@attribute 'stringsTF 683=[; ;$;(;;0;4;8;<;@;D;H;L;P;T;X;\;`;d;h;l;p;t;x;|;]' numeric
@attribute 'stringsTF 684=[FlushFileBuffers]' numeric
@attribute 'stringsTF 685=[InitializeCriticalSectionAndSpinCount]' numeric
@attribute 'stringsTF 686=[TerminateThread]' numeric
@attribute 'stringsTF 687=[WideCharToMultiByte]' numeric
@attribute 'stringsTF 688=[USER32.DLL]' numeric
@attribute 'stringsTF 689=[GetSystemTimeAsFileTime]' numeric
@attribute 'stringsTF 690=[`typeof]' numeric
@attribute 'stringsTF 691=[WritePrivateProfileStringA]' numeric
@attribute 'stringsTF 692=[default]' numeric
@attribute 'stringsTF 693=[HH:mm:ss]' numeric
@attribute 'stringsTF 694=[`vector copy constructor iterator]' numeric
@attribute 'stringsTF 695=[`vector vbase copy constructor iterator]' numeric
@attribute 'stringsTF 696=[__pascal]' numeric
@attribute 'stringsTF 697=[WriteConsoleA]' numeric
@attribute 'stringsTF 698=[GetTickCount]' numeric
@attribute 'stringsTF 699=[InternetConnectA]' numeric
@attribute 'stringsTF 700=[HttpSendRequestExA]' numeric
@attribute 'stringsTF 701=[InternetReadFile]' numeric
@attribute 'stringsTF 702=[IsDebuggerPresent]' numeric
@attribute 'stringsTF 703=[`copy constructor closure]' numeric
@attribute 'stringsTF 704=[t+WWVPV]' numeric
@attribute 'stringsTF 705=[GetUserObjectInformationA]' numeric
@attribute 'stringsTF 706=[Sunday]' numeric
@attribute 'stringsTF 707=[CONOUT$]' numeric
@attribute 'stringsTF 708=[GetModuleHandleW]' numeric
@attribute 'stringsTF 709=[map/set<T> too long]' numeric
@attribute 'stringsTF 710=[SetFilePointer]' numeric
@attribute 'stringsTF 711=[UNICODE]' numeric
@attribute 'stringsTF 712=[SetHandleCount]' numeric
@attribute 'stringsTF 713=[URLDownloadToFileA]' numeric
@attribute 'stringsTF 714=[<at9<rt<wt]' numeric
@attribute 'stringsTF 715=[FlsAlloc]' numeric
@attribute 'stringsTF 716=[- CRT not initialized]' numeric
@attribute 'stringsTF 717=[IsValidCodePage]' numeric
@attribute 'stringsTF 718=[HTTP/1.0]' numeric
@attribute 'stringsTF 719=[This indicates a bug in your application.]' numeric
@attribute 'stringsTF 720=[ Base Class Array]' numeric
@attribute 'stringsTF 721=[`placement delete closure]' numeric
@attribute 'stringsTF 722=[GetConsoleMode]' numeric
@attribute 'stringsTF 723=[GetEnvironmentStrings]' numeric
@attribute 'stringsTF 724=[+t HHt]' numeric
@attribute 'stringsTF 725=[InterlockedIncrement]' numeric
@attribute 'stringsTF 726=[TLOSS error]' numeric
@attribute 'stringsTF 727=[xpxxxx]' numeric
@attribute 'stringsTF 728=[_VVVVV]' numeric
@attribute 'stringsTF 729=[GetModuleHandleA]' numeric
@attribute 'stringsTF 730=[KERNEL32]' numeric
@attribute 'stringsTF 731=[FreeEnvironmentStringsW]' numeric
@attribute 'stringsTF 732=[- not enough space for thread data]' numeric
@attribute 'stringsTF 733=[HHtXHHt]' numeric
@attribute 'stringsTF 734=[GetLocaleInfoA]' numeric
@attribute 'stringsTF 735=[HeapFree]' numeric
@attribute 'stringsTF 736=[CreatePipe]' numeric
@attribute 'stringsTF 737=[string too long]' numeric
@attribute 'stringsTF 738=[KERNEL32.dll]' numeric
@attribute 'stringsTF 739=[CloseHandle]' numeric
@attribute 'stringsTF 740=[tR99u2]' numeric
@attribute 'stringsTF 741=[dddd MMMM dd yyyy]' numeric
@attribute 'stringsTF 742=[OpenProcess]' numeric
@attribute 'stringsTF 743=[>>?D?H?L?P?]' numeric
@attribute 'stringsTF 744=[j@j ^V]' numeric
@attribute 'stringsTF 745=[`eh vector vbase constructor iterator]' numeric
@attribute 'stringsTF 746=[.?AVtype_info@@]' numeric
@attribute 'stringsTF 747=[FlsSetValue]' numeric
@attribute 'stringsTF 748=[CreateNamedPipeA]' numeric
@attribute 'stringsTF 749=[RaiseException]' numeric
@attribute 'stringsTF 750=[WriteConsoleW]' numeric
@attribute 'stringsTF 751=[EnterCriticalSection]' numeric
@attribute 'stringsTF 752=[February]' numeric
@attribute 'stringsTF 753=[printf]' numeric
@attribute 'stringsTF 754=[malloc]' numeric
@attribute 'stringsTF 755=[__dllonexit]' numeric
@attribute 'stringsTF 756=[remove]' numeric
@attribute 'stringsTF 757=[_onexit]' numeric
@attribute 'stringsTF 758=[Content-Type: application/x-www-form-urlencoded]' numeric
@attribute 'stringsTF 759=[GetShortPathNameA]' numeric
@attribute 'stringsTF 760=[LegalTrademarks]' numeric
@attribute 'stringsTF 761=[FileDescription]' numeric
@attribute 'stringsTF 762=[FileVersion]' numeric
@attribute 'stringsTF 763=[__p__fmode]' numeric
@attribute 'stringsTF 764=[ProductName]' numeric
@attribute 'stringsTF 765=[strstr]' numeric
@attribute 'stringsTF 766=[FindNextFileA]' numeric
@attribute 'stringsTF 767=[/c del ]' numeric
@attribute 'stringsTF 768=[__CxxFrameHandler]' numeric
@attribute 'stringsTF 769=[PrivateBuild]' numeric
@attribute 'stringsTF 770=[CompanyName]' numeric
@attribute 'stringsTF 771=[strncmp]' numeric
@attribute 'stringsTF 772=[ShellExecuteA]' numeric
@attribute 'stringsTF 773=[__p___initenv]' numeric
@attribute 'stringsTF 774=[MSVCP60.dll]' numeric
@attribute 'stringsTF 775=[FindFirstFileA]' numeric
@attribute 'stringsTF 776=[lstrcatA]' numeric
@attribute 'stringsTF 777=[windir]' numeric
@attribute 'stringsTF 778=[DeleteFileA]' numeric
@attribute 'stringsTF 779=[GetLocalTime]' numeric
@attribute 'stringsTF 780=[fflush]' numeric
@attribute 'stringsTF 781=[_controlfp]' numeric
@attribute 'stringsTF 782=[lstrcpyA]' numeric
@attribute 'stringsTF 783=[strftime]' numeric
@attribute 'stringsTF 784=[OriginalFilename]' numeric
@attribute 'stringsTF 785=[GetEnvironmentVariableA]' numeric
@attribute 'stringsTF 786=[GetExitCodeProcess]' numeric
@attribute 'stringsTF 787=[_except_handler3]' numeric
@attribute 'stringsTF 788=[VarFileInfo]' numeric
@attribute 'stringsTF 789=[WinExec]' numeric
@attribute 'stringsTF 790=[_XcptFilter]' numeric
@attribute 'stringsTF 791=[InternetCrackUrlA]' numeric
@attribute 'stringsTF 792=[letusgohtppmmv2.0.0.1]' numeric
@attribute 'stringsTF 793=[CopyFileA]' numeric
@attribute 'stringsTF 794=[Translation]' numeric
@attribute 'stringsTF 795=[VS_VERSION_INFO]' numeric
@attribute 'stringsTF 796=[fwrite]' numeric
@attribute 'stringsTF 797=[MSVCRT.dll]' numeric
@attribute 'stringsTF 798=[SpecialBuild]' numeric
@attribute 'stringsTF 799=[sprintf]' numeric
@attribute 'stringsTF 800=[__set_app_type]' numeric
@attribute 'stringsTF 801=[__p__commode]' numeric
@attribute 'stringsTF 802=[_initterm]' numeric
@attribute 'stringsTF 803=[Comments]' numeric
@attribute 'stringsTF 804=[InternalName]' numeric
@attribute 'stringsTF 805=[fclose]' numeric
@attribute 'stringsTF 806=[CreateMutexA]' numeric
@attribute 'stringsTF 807=[localtime]' numeric
@attribute 'stringsTF 808=[ProductVersion]' numeric
@attribute 'stringsTF 809=[__setusermatherr]' numeric
@attribute 'stringsTF 810=[CreateToolhelp32Snapshot]' numeric
@attribute 'stringsTF 811=[connect]' numeric
@attribute 'stringsTF 812=[_adjust_fdiv]' numeric
@attribute 'stringsTF 813=[__getmainargs]' numeric
@attribute 'stringsTF 814=[LegalCopyright]' numeric
@attribute 'stringsTF 815=[ComSpec]' numeric
@attribute 'stringsTF 816=[Process32Next]' numeric
@attribute 'stringsTF 817=[SHELL32.dll]' numeric
@attribute 'stringsTF 818=[GetTempPathA]' numeric
@attribute 'stringsTF 819=[040904b0]' numeric
@attribute 'stringsTF 820=[StringFileInfo]' numeric
@attribute 'stringsTF 821=[GlobalFree]' numeric
@attribute 'stringsTF 822=[system]' numeric
@attribute 'stringsTF 823=[Process32First]' numeric
@attribute 'stringsTF 824=[strtok]' numeric
@attribute 'stringsTF 825=[HTTP/1.1]' numeric
@attribute 'stringsTF 826=[FreeLibrary]' numeric
@attribute 'stringsTF 827=[LoadStringA]' numeric
@attribute 'stringsTF 828=[InternetOpenUrlA]' numeric
@attribute 'stringsTF 829=[GetCurrentThread]' numeric
@attribute 'stringsTF 830=[??2@YAPAXI@Z]' numeric
@attribute 'stringsTF 831=[GetExitCodeThread]' numeric
@attribute 'stringsTF 832=[User Agent]' numeric
@attribute 'stringsTF 833=[SetPriorityClass]' numeric
@attribute 'stringsTF 834=[strrchr]' numeric
@attribute 'stringsTF 835=[WaitForMultipleObjects]' numeric
@attribute 'stringsTF 836=[strchr]' numeric
@attribute 'stringsTF 837=[SetThreadPriority]' numeric
@attribute 'stringsTF 838=[sscanf]' numeric
@attribute 'stringsTF 839=[RegOpenKeyExA]' numeric
@attribute 'stringsTF 840=[GetFileSize]' numeric
@attribute 'stringsTF 841=[_strnicmp]' numeric
@attribute 'stringsTF 842=[_acmdln]' numeric
@attribute 'stringsTF 843=[RegCloseKey]' numeric
@attribute 'stringsTF 844=[??3@YAXPAX@Z]' numeric
@attribute 'stringsTF 845=[RegQueryValueExA]' numeric
@attribute 'stringsTF 846=[GetComputerNameA]' numeric
@attribute 'stringsTF 847=[T$ QRP]' numeric
@attribute 'stringsTF 848=[DuplicateHandle]' numeric
@attribute 'stringsTF 849=[cmd.exe]' numeric
@attribute 'stringsTF 850=[SetServiceStatus]' numeric
@attribute 'stringsTF 851=[kernel32.dll]' numeric
@attribute 'stringsTF 852=[ResetEvent]' numeric
@attribute 'stringsTF 853=[_^YY]' numeric
@attribute 'stringsTF 854=[@.reloc]' numeric
@attribute 'stringsTF 855=[HeapDestroy]' numeric
@attribute 'stringsTF 856=[ServiceMain]' numeric
@attribute 'stringsTF 857=[SHGetSpecialFolderPathW]' numeric
@attribute 'stringsTF 858=[%s0x%x]' numeric
@attribute 'stringsTF 859=[%s - %lu]' numeric
@attribute 'stringsTF 860=[CryptBinaryToStringA]' numeric
@attribute 'stringsTF 861=[CRYPT32.dll]' numeric
@attribute 'stringsTF 862=[CreateFileW]' numeric
@attribute 'stringsTF 863=[RegCreateKeyExA]' numeric
@attribute 'stringsTF 864=[lstrlenA]' numeric
@attribute 'stringsTF 865=[VerSetConditionMask]' numeric
@attribute 'stringsTF 866=[ Microsoft Corporation. All rights reserved.]' numeric
@attribute 'stringsTF 867=[IsBadWritePtr]' numeric
@attribute 'stringsTF 868=[SSSSSS]' numeric
@attribute 'stringsTF 869=[Microsoft]' numeric
@attribute 'stringsTF 870=[Microsoft Corporation]' numeric
@attribute 'stringsTF 871=[GetPrivateProfileStringW]' numeric
@attribute 'stringsTF 872=[TranslateMessage]' numeric
@attribute 'stringsTF 873=[GetSystemInfo]' numeric
@attribute 'stringsTF 874=[ExpandEnvironmentStringsA]' numeric
@attribute 'stringsTF 875=[wsprintfW]' numeric
@attribute 'stringsTF 876=[DllGetClassObject]' numeric
@attribute 'stringsTF 877=[7 7$7(77074787<7@7D7H7L7P7T7X7\7`7d7h7l7p7t7x7|7]' numeric
@attribute 'stringsTF 878=[SSSSSSS]' numeric
@attribute 'stringsTF 879=[VerifyVersionInfoW]' numeric
@attribute 'stringsTF 880=[WPWj@Wj]' numeric
@attribute 'stringsTF 881=[ Operating System]' numeric
@attribute 'stringsTF 882=[wsprintfA]' numeric
@attribute 'stringsTF 883=[DllCanUnloadNow]' numeric
@attribute 'stringsTF 884=[ObtainUserAgentString]' numeric
@attribute 'stringsTF 885=[lstrcmpiA]' numeric
@attribute 'stringsTF 886=[t8Ht+Ht]' numeric
@attribute 'stringsTF 887=[IsWow64Process]' numeric
@attribute 'stringsTF 888=[DisableThreadLibraryCalls]' numeric
@attribute 'stringsTF 889=[RegSetValueExA]' numeric
@attribute 'stringsTF 890=[DllUnregisterServer]' numeric
@attribute 'stringsTF 891=[ Windows]' numeric
@attribute 'stringsTF 892=[bRS8yYQ0APq9xfzC]' numeric
@attribute 'stringsTF 893=[DllRegisterServer]' numeric
@attribute 'stringsTF 894=[GetVolumeInformationA]' numeric
@attribute 'stringsTF 895=[CreateDirectoryA]' numeric
@attribute 'stringsTF 896=[CryptStringToBinaryA]' numeric
@attribute 'stringsTF 897=[a?TU"M]' numeric
@attribute 'stringsTF 898=[GetSystemMetrics]' numeric
@attribute 'stringsTF 899=[LoadLibraryW]' numeric
@attribute 'stringsTF 900=[t*=RCC]' numeric
@attribute 'stringsTF 901=[GetStartupInfoW]' numeric
@attribute 'stringsTF 902=[CreateProcessW]' numeric
@attribute 'stringsTF 903=[<table>]' numeric
@attribute 'stringsTF 904=[t=MOC]' numeric
@attribute 'stringsTF 905=[ShellExecuteW]' numeric
@attribute 'stringsTF 906=[URPQQh]' numeric
@attribute 'stringsTF 907=[nKERNEL32.DLL]' numeric
@attribute 'stringsTF 908=[- abort() has been called]' numeric
@attribute 'stringsTF 909=[gdiplus.dll]' numeric
@attribute 'stringsTF 910=[GetTempPathW]' numeric
@attribute 'stringsTF 911=[InternetOpenW]' numeric
@attribute 'stringsTF 912=[WUSER32.DLL]' numeric
@attribute 'stringsTF 913=[t"SS9 u]' numeric
@attribute 'stringsTF 914=[DispatchMessageW]' numeric
@attribute 'stringsTF 915=[ReleaseMutex]' numeric
@attribute 'stringsTF 916=[list<T> too long]' numeric
@attribute 'stringsTF 917=[;7|G;p]' numeric
@attribute 'stringsTF 918=[GetModuleBaseNameW]' numeric
@attribute 'stringsTF 919=[CreateMutexW]' numeric
@attribute 'stringsTF 920=[HttpQueryInfoW]' numeric
@attribute 'stringsTF 921=[888X8x8]' numeric
@attribute 'stringsTF 922=[IsProcessorFeaturePresent]' numeric
@attribute 'stringsTF 923=[GetCursorPos]' numeric
@attribute 'stringsTF 924=[GDI32.dll]' numeric
@attribute 'stringsTF 925=[FileTimeToSystemTime]' numeric
@attribute 'stringsTF 926=[HttpOpenRequestW]' numeric
@attribute 'stringsTF 927=[MessageBoxW]' numeric
@attribute 'stringsTF 928=[GetVolumeInformationW]' numeric
@attribute 'stringsTF 929=[__eabi]' numeric
@attribute 'stringsTF 930=[GetModuleFileNameExW]' numeric
@attribute 'stringsTF 931=[SelectObject]' numeric
@attribute 'stringsTF 932=[InterlockedExchange]' numeric
@attribute 'stringsTF 933=[GetWindowThreadProcessId]' numeric
@attribute 'stringsTF 934=[PSAPI.DLL]' numeric
@attribute 'stringsTF 935=[GetMessageW]' numeric
@attribute 'stringsTF 936=[ole32.dll]' numeric
@attribute 'stringsTF 937=[040904E4]' numeric
@attribute 'stringsTF 938=[ADVAPI32.DLL]' numeric
@attribute 'stringsTF 939=[GetForegroundWindow]' numeric
@attribute 'stringsTF 940=[FindFirstFileW]' numeric
@attribute 'stringsTF 941=[GetUserObjectInformationW]' numeric
@attribute 'stringsTF 942=[GetModuleFileNameW]' numeric
@attribute 'stringsTF 943=[FindClose]' numeric
@attribute 'stringsTF 944=[DeleteFileW]' numeric
@attribute 'stringsTF 945=[FindNextFileW]' numeric
@attribute 'stringsTF 946=[not enough memory]' numeric
@attribute 'stringsTF 947=[FlushProcessWriteBuffers]' numeric
@attribute 'stringsTF 948=[GetDateFormatEx]' numeric
@attribute 'stringsTF 949=[GetCurrentProcessorNumber]' numeric
@attribute 'stringsTF 950=[GetTimeFormatEx]' numeric
@attribute 'stringsTF 951=[CreateSymbolicLinkW]' numeric
@attribute 'stringsTF 952=[CAMELLIA-128-CBC]' numeric
@attribute 'stringsTF 953=[WaitForThreadpoolTimerCallbacks]' numeric
@attribute 'stringsTF 954=[AES-128-CBC]' numeric
@attribute 'stringsTF 955=[CreateSemaphoreExW]' numeric
@attribute 'stringsTF 956=[SetDefaultDllDirectories]' numeric
@attribute 'stringsTF 957=[CreateThreadpoolTimer]' numeric
@attribute 'stringsTF 958=[GetLogicalProcessorInformation]' numeric
@attribute 'stringsTF 959=[SHA256]' numeric
@attribute 'stringsTF 960=[GetCurrentPackageId]' numeric
@attribute 'stringsTF 961=[127.0.0.1]' numeric
@attribute 'stringsTF 962=[no message]' numeric
@attribute 'stringsTF 963=[DES-EDE3-CBC]' numeric
@attribute 'stringsTF 964=[CompareStringEx]' numeric
@attribute 'stringsTF 965=[DES-CBC]' numeric
@attribute 'stringsTF 966=[LCMapStringEx]' numeric
@attribute 'stringsTF 967=[IsValidLocaleName]' numeric
@attribute 'stringsTF 968=[GetLocaleInfoEx]' numeric
@attribute 'stringsTF 969=[AES-256-CBC]' numeric
@attribute 'stringsTF 970=[SHA384]' numeric
@attribute 'stringsTF 971=[D7q/;M]' numeric
@attribute 'stringsTF 972=[EnumSystemLocalesEx]' numeric
@attribute 'stringsTF 973=[CloseThreadpoolWait]' numeric
@attribute 'stringsTF 974=[SetThreadStackGuarantee]' numeric
@attribute 'stringsTF 975=[FreeLibraryWhenCallbackReturns]' numeric
@attribute 'stringsTF 976=[CAMELLIA-256-CBC]' numeric
@attribute 'stringsTF 977=[SetThreadpoolWait]' numeric
@attribute 'stringsTF 978=[InitializeCriticalSectionEx]' numeric
@attribute 'stringsTF 979=[GetUserDefaultLocaleName]' numeric
@attribute 'stringsTF 980=[SetThreadpoolTimer]' numeric
@attribute 'stringsTF 981=[timed out]' numeric
@attribute 'stringsTF 982=[YY_^]' numeric
@attribute 'stringsTF 983=[CreateThreadpoolWait]' numeric
@attribute 'stringsTF 984=[unknown]' numeric
@attribute 'stringsTF 985=[CloseThreadpoolTimer]' numeric
@attribute 'stringsTF 986=[lstrlenW]' numeric
@attribute 'stringsTF 987=[SizeofResource]' numeric
@attribute 'stringsTF 988=[LocalFree]' numeric
@attribute 'stringsTF 989=[LockResource]' numeric
@attribute 'stringsTF 990=[LocalAlloc]' numeric
@attribute 'stringsTF 991=[FindResourceW]' numeric
@attribute 'stringsTF 992=[GetEnvironmentVariableW]' numeric
@attribute 'stringsTF 993=[LoadResource]' numeric
@attribute 'stringsTF 994=[ main sort initialise ...]' numeric
@attribute 'stringsTF 995=[~?Pa w]' numeric
@attribute 'stringsTF 996=[CONFIG_ERROR]' numeric
@attribute 'stringsTF 997=[strcat]' numeric