-
Notifications
You must be signed in to change notification settings - Fork 71
/
exe_blacklist.txt
executable file
·30660 lines (30660 loc) · 743 KB
/
exe_blacklist.txt
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
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz
&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz
(7mYD+Es
)f)+1S
*<")QH
*<")QH
-<"l9t
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
GGHPXNT,
GGHPXNT,
Generic RGB Profile
ICC_PROFILE
K(M&$R(.1
LStf+]
LStf+]
Microsoft Macintosh Word
Microsoft Word 97-2004 Document
Normal.dotm
Ssd+r]
Ssd+r]
Uczt`u
Um$u>4k
Word.Document.8
[Content_Types].xml
[Content_Types].xml
[Content_Types].xmlPK
[Content_Types].xmlPK
_rels/.rels
_rels/.rels
_rels/.relsPK
_rels/.relsPK
docProps/app.xml
docProps/app.xmlPK
docProps/core.xml
docProps/core.xmlPK
docProps/thumbnail.jpeg
mntrRGB XYZ
sHImTrr5
tN'ahY
theme/theme/_rels/themeManager.xml.rels
theme/theme/_rels/themeManager.xml.relsPK
theme/theme/theme1.xml
theme/theme/theme1.xmlPK
theme/theme/themeManager.xml
theme/theme/themeManager.xmlPK
word/_rels/document.xml.rels
word/_rels/document.xml.relsPK
word/document.xml
word/document.xmlPK
word/fontTable.xml
word/fontTable.xmlPK
word/settings.xml
word/settings.xmlPK
word/styles.xml
word/styles.xmlPK
word/stylesWithEffects.xml
word/stylesWithEffects.xmlPK
word/theme/theme1.xml
word/theme/theme1.xmlPK
word/webSettings.xml
word/webSettings.xmlPK
x#@dm0
x#@dmxR
x#@dyp
x#@dyp
This program cannot be run in DOS mode.
@.rdata
@.data
.rdata
@.relocnew HsvColor(hsc.Hue, hsc.Saturation, ts).ToColor());
new HsvColor(hsc.Hue, ts, hsc.Value).ToColor());
new HsvColor(ts, hsc.Saturation, hsc.Value).ToColor());
CurrentPixel = ColorBgra.FromColor(
CurrentPixel.B = (byte)theresult;
CurrentPixel.G = (byte)theresult;
CurrentPixel.R = (byte)theresult;
IfCanDo = false;
IfCanDo = true;
hsc = HsvColor.FromColor(CurrentPixel.ToColor());
theresult = 255 - thesource;
theresult = thesource * tds;
theresult = thesource + tds;
theresult = thesource - tds;
theresult = thesource;
ts = ((int)((double)theresult * 1.4));
ts = ((int)((double)theresult / 2.55));
case 1:
case 2:
case 3:
case 4:
case 5:
default:
if (tds != thesource)
if (tds < thesource)
if (tds == thesource)
if (tds > thesource)
theresult = 0;
theresult = 255;
HsvColor hsc;
case 0:
case 1:
case 2:
case 3:
else if (theresult < 0)
if (theresult > 255)
int theresult;
switch (id.Condition)
switch (id.Var1)
td = ((double)dstArgs.Height) / 255;
td = ((double)dstArgs.Width) / 255;
td = ((double)x) / td;
td = ((double)y) / td;
tds = ((int)((double)ts * 1.4));
tds = ((int)((double)ts * 3.6));
tds = (int)CurrentPixel.B;
tds = (int)CurrentPixel.G;
tds = (int)CurrentPixel.R;
tds = (int)td;
tds = id.TheCustom;
tds = ran.Next(255);
thesource = ((int)((double)ts * 2.55));
thesource = ((int)((double)ts / 1.4));
thesource = (int)CurrentPixel.B;
thesource = (int)CurrentPixel.G;
thesource = (int)CurrentPixel.R;
thesource = (int)td;
thesource = id.TheCustom;
thesource = ran.Next(255);
ts = HsvColor.FromColor(CurrentPixel.ToColor()).Hue;
ts = HsvColor.FromColor(CurrentPixel.ToColor()).Saturation;
ts = HsvColor.FromColor(CurrentPixel.ToColor()).Value;
IfCanDo = true;
case 1:
case 2:
case 3:
case 4:
case 5:
case 6:
case 7:
case 8:
case 9:
default:
if (IfCanDo == true)
switch (id.Condition)
InstructDef id = (InstructDef)thesteps[count];
InstructDef id = new InstructDef();
double td;
else if (id.ActionType == 1)
else if (id.ActionType == 2)
id.ActionType = int.Parse(ar[tcount].ToString());
id.Condition = int.Parse(ar[tcount + 2].ToString());
id.TheCustom = int.Parse(ar[tcount + 4].ToString());
id.Var1 = int.Parse(ar[tcount + 1].ToString());
id.Var2 = int.Parse(ar[tcount + 3].ToString());
if (id.ActionType == 0)
int tds;
int thesource;
int ts;
switch (id.Var1)
switch (id.Var2)
thesteps.Add(id);
ArrayList thesteps = new ArrayList();
ColorBgra CurrentPixel = srcArgs.Surface[x, y];
bool IfCanDo = true;
dstArgs.Surface[x, y] = CurrentPixel;
for (int count = 0; count < thesteps.Count; count++)
for (int tcount = 0; tcount < ar.Count; tcount+=5)
ar.Add("");
ar[curpos] = ar[curpos].ToString() + thecode[count].ToString();
curpos++;
for (int x = r.Left; x < r.Right; x++)
level="asInvoker"
see also, -agentlib:jdwp=help and -agentlib:hprof=help
uiAccess="false"
A %c separated list of directories, JAR archives,
The default VM is %s%s
and ZIP archives to search for class files.
disable assertions
disable system assertions
enable assertions
enable system assertions
enable verbose output
include/exclude user private JREs in the version search
load Java programming language agent, see java.lang.instrument
load native agent library <libname>, e.g. -agentlib:hprof
load native agent library by full pathname
require the specified version to run
set a system property
show splash screen with specified image
<requestedExecutionLevel
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
Rectangle r = rois[i];
else if (count != thecode.Length - 1)
for (int y = r.Top; y < r.Bottom; y++)
if (thecode[count] != '|')
level="asInvoker"
return "{PLUGINDISPLAYNAME}";
return new Bitmap(16, 16);
return {THESUBMENUNAME}
uiAccess="false"
level="asInvoker"
uiAccess="false"
: base(EffectPlugin.StaticName, EffectPlugin.StaticIcon, EffectPlugin.StaticSubMenuName,
<!--Windows 7-->
</requestedPrivileges>
<requestedExecutionLevel
<requestedExecutionLevel level="asInvoker" uiAccess="false"></requestedExecutionLevel>
<requestedExecutionLevel level="requireAdministrator" uiAccess="false"></requestedExecutionLevel>
<requestedPrivileges>
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
Delete 'Programmable'
Delete 'TypeLib'
EffectFlags.None)
LocalServer32 = s '%MODULE%'
RenderArgs srcArgs, Rectangle[] rois, int startIndex, int length)
String thecode = "{THEPLUGINCODE}";
ar = new ArrayList();
ar.Add("");
for (int count = 0; count < thecode.Length; count++)
for (int i = startIndex; i < length; i++)
int curpos = 0;
language="*"
name="Microsoft.Windows.Common-Controls"
processorArchitecture="AMD64"
processorArchitecture="X86"
processorArchitecture="amd64"
publicKeyToken="6595b64144ccf1df"
type="win32"
val AppID = s '{A9D431C2-6D56-4727-9690-ADBE66B9184A}'
val DllSurrogate = s ''
version="6.0.0.0"
(to execute a class)
(to execute a jar file)
level="asInvoker"
level="requireAdministrator"
uiAccess="false"/>
</requestedPrivileges>
<requestedPrivileges>
--tarball <tarball> --tarball-fd <fd>
: PaintDotNet.Effects.Effect
</application>
</requestedPrivileges>
</security>
<application>
<assemblyIdentity
<requestedExecutionLevel
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
<requestedExecutionLevel level="asInvoker" uiAccess="false"></requestedExecutionLevel>
<requestedExecutionLevel level="requireAdministrator" uiAccess="false"></requestedExecutionLevel>
<requestedExecutionLevel level='asInvoker' uiAccess='false' />
<requestedPrivileges>
<security>
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
ArrayList ar;
Delete '{A137EF16-7BAA-4D2D-8BFD-7FCE6D5A1D57}'
ForceRemove '%APPID%' = s 'MsMpComExports'
ForceRemove {A9D431C2-6D56-4727-9690-ADBE66B9184A} = s 'Windows Media Player Encoder Helper Class'
ForceRemove {AEE3E4A8-EF01-4024-A0F1-809D9B096E14} = s 'Windows Media Player Encoder Helper Class'
Random ran = new Random();
language="*"
name="Microsoft.Windows.Common-Controls"
processorArchitecture="*"
protected override void OnSetRenderInfo(EffectConfigToken parameters, RenderArgs dstArgs, RenderArgs srcArgs)
public EffectPlugin()
public int ActionType = 0;
public int Condition = 0;
public int TheCustom = 0;
public int Var1 = 0;
public int Var2 = 0;
public override void Render(EffectConfigToken parameters, RenderArgs dstArgs,
public static Bitmap StaticIcon
public static string StaticName
public static string StaticSubMenuName
publicKeyToken="6595b64144ccf1df"
type="win32"
version="6.0.0.0"
</security>
<!--The ID below indicates application support for Windows 7 -->
<!--The ID below indicates application support for Windows Vista -->
</requestedPrivileges>
</security>
<assemblyIdentity
<assemblyIdentity type="win32" name="Microsoft.VC80.CRT" version="8.0.50608.0" processorArchitecture="amd64" publicKeyToken="1fc8b3b9a1e18e3b"></assemblyIdentity>
<assemblyIdentity type="win32" name="Microsoft.VC80.CRT" version="8.0.50727.4053" processorArchitecture="amd64" publicKeyToken="1fc8b3b9a1e18e3b"></assemblyIdentity>
<assemblyIdentity type="win32" name="Microsoft.VC80.CRT" version="8.0.50727.762" processorArchitecture="amd64" publicKeyToken="1fc8b3b9a1e18e3b"></assemblyIdentity>
<assemblyIdentity type="win32" name="Microsoft.VC90.CRT" version="9.0.21022.8" processorArchitecture="amd64" publicKeyToken="1fc8b3b9a1e18e3b"></assemblyIdentity>
<assemblyIdentity type="win32" name="Microsoft.VC90.CRT" version="9.0.21022.8" processorArchitecture="x86" publicKeyToken="1fc8b3b9a1e18e3b"></assemblyIdentity>
<assemblyIdentity type="win32" name="Microsoft.VC90.CRT" version="9.0.30729.1" processorArchitecture="amd64" publicKeyToken="1fc8b3b9a1e18e3b"></assemblyIdentity>
<assemblyIdentity type="win32" name="Microsoft.VC90.CRT" version="9.0.30729.4148" processorArchitecture="amd64" publicKeyToken="1fc8b3b9a1e18e3b"></assemblyIdentity>
<assemblyIdentity type="win32" name="Microsoft.VC90.CRT" version="9.0.30729.4148" processorArchitecture="x86" publicKeyToken="1fc8b3b9a1e18e3b"></assemblyIdentity>
<assemblyIdentity type='win32' name='Microsoft.VC90.CRT' version='9.0.21022.8' processorArchitecture='amd64' publicKeyToken='1fc8b3b9a1e18e3b' />
<dpiAware>true</dpiAware>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<requestedPrivileges>
<security>
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"></supportedOS>
name="VMware.VMware.vsocklib"
processorArchitecture="X86"
processorArchitecture="amd64"
type="win32"
version="1.0.0.0"
name="Canon.IJ.DriverInstallerAssistant"
name="java-rmi.exe"
name="jp2launcher.exe"
name="keytool.exe"
name="kinit.exe"
name="klist.exe"
name="ktab.exe"
name="orbd.exe"
name="pack200.exe"
name="policytool.exe"
name="rmid.exe"
name="rmiregistry.exe"
name="servertool.exe"
name="ssvagent.exe"
name="tnameserv.exe"
name="unpack200.exe"
processorArchitecture="X86"
processorArchitecture="amd64"
type="win32"/>
-? -help print this help message
-D<name>=<value>
-X print help on non-standard options
-agentlib:<libname>[=<options>]
-agentpath:<pathname>[=<options>]
-classpath <class search path of directories and zip/jar files>
-cp <class search path of directories and zip/jar files>
-da[:<packagename>...|:<classname>]
-disableassertions[:<packagename>...|:<classname>]
-dsa | -disablesystemassertions
-ea[:<packagename>...|:<classname>]
-enableassertions[:<packagename>...|:<classname>]
-esa | -enablesystemassertions
-javaagent:<jarpath>[=<options>]
-jre-restrict-search | -jre-no-restrict-search
-showversion print product version and continue
-splash:<imagepath>
-verbose[:class|gc|jni]
-version print product version and exit
-version:<value>
</application>
</asmv3:windowsSettings>
</compatibility>
</dependency>
</dependentAssembly>
</security>
</trustInfo>
<application>
<asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<dependency>
<dependentAssembly>
<security>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
EHCI_CMD_ASYNC_SCHED_ENABLE
EHCI_CMD_ASYNC_SCHED_PARK_ENABLE
EHCI_CMD_ASYNC_SCHED_PARK_MODE_COUNT %d
EHCI_CMD_FRAME_LIST_SIZE %d
EHCI_CMD_INTERRUPT_THRESHOLD %d
EHCI_CMD_INT_ON_ADVANCE_DOORBELL
EHCI_CMD_PERIODIC_SCHED_ENABLE
EHCI_CMD_RESET
EHCI_CMD_RUN
EHCI_CMD_SOFT_RESET
EHCI_INTR_ENABLE_ASYNC_ADVANCE
EHCI_INTR_ENABLE_ERROR
EHCI_INTR_ENABLE_FRAME_LIST_ROLLOVER
EHCI_INTR_ENABLE_HOST_SYSTEM_ERROR
EHCI_INTR_ENABLE_PORT_CHANGE
EHCI_INTR_ENABLE_THRESHOLD
EHCI_STATUS_ASYNC_SCHED
EHCI_STATUS_ERROR_INT
EHCI_STATUS_FRAME_LIST_ROLLOVER
EHCI_STATUS_HCHALTED
EHCI_STATUS_HOST_SYSTEM_ERROR
EHCI_STATUS_INT_ON_ASYNC_ADV
EHCI_STATUS_PERIOD_SCHED
EHCI_STATUS_PORT_CHANGE_DETECT
EHCI_STATUS_RECLAMATION
EHCI_STATUS_THRESHOLD_INT
Failed tests:
Host path %lS, map name %lS, writable %d
Host path '%ls', map name '%ls', %s, automount=%s, create_symlinks=%s
Illegal bits set %x!!
MIB84668
Mapped to handle %d.
NoRemove AppID
NoRemove CLSID
NoRemove TypeLib
[EffectCategory(EffectCategory.Effect)]
argv[%2d] = '%s'
cleanup --base-dir <dir>
install --base-dir <dir> --cert-dir <dir> --name <name> \
name: %s vmType: %s alias: %s
name: %s vmType: %s server_class: %s
name="Company.VirtualPrinters.drvui"
name="Microsoft.MSE.MSESysprep"
name="Microsoft.Windows.MediaPlayer.WMPEnc"
name="Microsoft.Windows.MultiMedia.wmpnssui"
option[%2d] = '%s'
processorArchitecture="AMD64"
processorArchitecture="amd64"
public class EffectPlugin
public class InstructDef
type="win32"
type="win32"/>
uninstall --base-dir <dir> --name <name>
version="5.1.0.0"
!!!""""###$$$%%%%&&&''''((()))****+++,,-----..///0000111222223344455556667778888999:::;;;;<<<====>>>???@@@@AAABBBCCCCDDDEEEEFFFGGGHHHHIIIJJKKKKKLLM
!!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyyzzz{{{|||}}}~~~
$$$%%%'''(((---222555666777888999:::;;;BBBDDDHHHKKKOOOPPPSSSTTTUUU\\\]]]ccciiikkklllmmmrrrxxxzzz{{{
$$$&&&(((///555>>>AAAJJJLLLNNNOOOQQQSSSZZZggghhhjjjwww
</trustInfo>
<assemblyIdentity
<description>"VSockets Library"</description>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
or %s [-options] -jar jarfile [args...]
!""##$$%&&'(())**+,,--../00122334456678899::;<<==>>?@@ABBCCDDEFFGHHIIJJKLLMMNNOPPQRRSSTTUVVWWXYYZZ[[\]]^^__`aabccddeefgghhiijkklmmnnoopqqrssttuuvwwxxyyz{{|}}~~
2006, Ed Harvey
2006, Michael J. Sepcot
2006-2008, Ed Harvey
2007 by BoltBait
2007, MadJik (Jean-Claude JAY)
2007, Michael J. Sepcot
2008, MadJik (Jean-Claude JAY)
2008-2010, Ed Harvey
<!-- Identify the application security requirements. -->
</asmv3:application>
</compatibility>
</dependency>
</trustInfo>
<asmv3:application xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
<assemblyIdentity
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
<assemblyIdentity version="1.0.0.0" name="wlcrdpsystem"></assemblyIdentity>
<assemblyIdentity version="1.0.0.0" name="wlcrdpuser"></assemblyIdentity>
<assemblyIdentity version="1.0.0.0" processorArchitecture="X86" name="SweepDocs.exe" type="win32"></assemblyIdentity>
<assemblyIdentity version="2.0.0.70"
<assemblyIdentity version="6.0.260.3"
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<dependency>
<description>Canon IJ Driver Installer Assistant</description>
<description>Description of your application</description>
<description>Java(TM) SE Runtime Environment SSV Agent Process.</description>
<description>Java(TM) SE Runtime Environment java-rmi Process.</description>
<description>Java(TM) SE Runtime Environment keytool Process.</description>
<description>Java(TM) SE Runtime Environment kinit Process.</description>
<description>Java(TM) SE Runtime Environment klist Process.</description>
<description>Java(TM) SE Runtime Environment ktab Process.</description>
<description>Java(TM) SE Runtime Environment orbd Process.</description>
<description>Java(TM) SE Runtime Environment pack200 Process.</description>
<description>Java(TM) SE Runtime Environment policytool Process.</description>
<description>Java(TM) SE Runtime Environment rmid Process.</description>
<description>Java(TM) SE Runtime Environment rmiregistry Process.</description>
<description>Java(TM) SE Runtime Environment servertool Process.</description>
<description>Java(TM) SE Runtime Environment tnameserv Process.</description>
<description>Java(TM) SE Runtime Environment unpack200 Process.</description>
<description>Java(tm) SE Launcher for Java Plug-In.</description>
<description>Microsoft Security Client Sysprep module</description>
<item key="Average Blur" lang="">Average Blur</item>
<item key="B" lang="">Vertical: Bottom</item>
<item key="B" lang="nl">Vertikaal: Onderaan</item>
<item key="B" lang="ru">
<item key="Blur Radius" lang="">Blur Radius</item>
<item key="Blur Radius" lang="nl">Straal vervaging</item>
<item key="Blur Radius" lang="ru">
<item key="Bottom Left Color" lang="">Bottom Left Color</item>
<item key="Bottom Left Color" lang="nl">Kleur links beneden</item>
<item key="Bottom Left Color" lang="ru">
<item key="Bottom Right Color" lang="">Bottom Right Color</item>
<item key="Bottom Right Color" lang="nl">Kleur rechts beneden</item>
<item key="Bottom Right Color" lang="ru">
<item key="CB" lang="">Center Both</item>
<item key="CB" lang="nl">Centreer Beide</item>
<item key="CB" lang="ru">
<item key="CH" lang="">Center Horizontally</item>
<item key="CH" lang="nl">Centreer Horizontaal</item>
<item key="CH" lang="ru">
<item key="CV" lang="">Center Vertically</item>
<item key="CV" lang="nl">Centreer Vertikaal</item>
<item key="CV" lang="ru">
<item key="Color Accent" lang="">Color Accent</item>
<item key="Color Accent" lang="nl">Kleur Accent</item>
<item key="Color" lang="">Color</item>
<item key="Color" lang="nl">Kleur</item>
<item key="Color" lang="ru">
<item key="Cyanotype" lang="">Cyanotype</item>
<item key="Cyanotype" lang="ru">
<item key="Drop Shadow" lang="">Drop Shadow</item>
<item key="Drop Shadow" lang="nl">Schaduw (Drop Shadow)</item>
<item key="Drop Shadow" lang="ru">Drop Shadow (
<item key="Duotone Ink" lang="">Duotone Ink on Paper</item>
<item key="Duotone Light" lang="">Duotone Light</item>
<item key="Fade Edge" lang="">Fade Edge</item>
<item key="Fade Edge" lang="nl">Randen tanen (Fade Edge)</item>
<item key="Fade Edge" lang="ru">
<item key="Gradient" lang="">Gradient</item>
<item key="Gradient" lang="ru">
<item key="Gridlines" lang="">Gridlines</item>
<item key="Gridlines" lang="nl">Rasterlijnen</item>
<item key="Gridlines" lang="ru">
<item key="HS" lang="">Horizontal spacing</item>
<item key="HS" lang="nl">Horizontale afstand</item>
<item key="HS" lang="ru">
<item key="Horizontal Midpoint" lang="">Horizontal Midpoint</item>
<item key="Horizontal Midpoint" lang="nl">Horizontaal midden</item>
<item key="Horizontal Midpoint" lang="ru">
<item key="Ink Color 1" lang="">Ink Color 1</item>
<item key="Ink Color 1" lang="nl">Inkt Kleur 1</item>
<item key="Ink Color 1" lang="ru">
<item key="Ink Color 2" lang="">Ink Color 2</item>
<item key="Ink Color 2" lang="nl">Inkt Kleur 2</item>
<item key="Ink Color 2" lang="ru">
<item key="Intensity" lang="">Intensity</item>
<item key="Intensity" lang="nl">Intensiteit</item>
<item key="Intensity" lang="ru">
<item key="Keep original image" lang="">Keep original image</item>
<item key="Keep original image" lang="nl">Behoud oorspronkelijk beeld</item>
<item key="Keep original image" lang="ru">
<item key="L" lang="">Horizontal: Left</item>
<item key="L" lang="nl">Horizontaal: Links</item>
<item key="L" lang="ru">
<item key="Light Color 1" lang="">Light Color 1</item>
<item key="Light Color 1" lang="nl">Licht Kleur 1</item>
<item key="Light Color 1" lang="ru">
<item key="Light Color 2" lang="">Light Color 2</item>
<item key="Light Color 2" lang="nl">Licht Kleur 2</item>
<item key="Light Color 2" lang="ru">
<item key="MLD" lang="">Image will look like printed in black on colored paper. Select the paper color. Light colors work better.</item>
<item key="MLD" lang="nl">Het beeld zal er uit zien zoals gedrukt met zwarte inkt op gekleurd papier. Kies de kleur van het papier. Lichte kleuren geven betere resultaten.</item>
<item key="MLD" lang="ru">
<item key="MPD" lang="">Image will look like printed in a single color on white paper. Select the ink color. Dark colors work better.</item>
<item key="MPD" lang="nl">Het beeld zal er uit zien zoals gedrukt met gekleurde inkt op wit papier. Kies de kleur van de inkt. Donkere kleuren geven betere resultaten</item>
<item key="MPD" lang="ru">
<item key="Monochrome Light" lang="">Grayscale on Colored Paper</item>
<item key="Monochrome Light" lang="nl">Grijstinten op gekleurd papier</item>
<item key="Monochrome Light" lang="ru">
<item key="Monochrome Paint" lang="">Monochrome Ink on Paper</item>
<item key="Monochrome Paint" lang="nl">Gekleurde inkt op wit papier</item>
<item key="Monochrome Paint" lang="ru">
<item key="OA" lang="">Object Align</item>
<item key="OA" lang="nl">Object Aligneren</item>
<item key="OA" lang="ru">Object Align</item>
<item key="Object" lang="">Object</item>
<item key="Offset X" lang="">Offset X</item>
<item key="Offset X" lang="nl">Horizontale verplaatsing</item>
<item key="Offset X" lang="ru">
<item key="Offset Y" lang="">Offset Y</item>
<item key="Offset Y" lang="nl">Verticale verplaatsing</item>
<item key="Offset Y" lang="ru">
<item key="Options" lang="">Options</item>
<item key="Options" lang="nl">Opties</item>
<item key="Options" lang="ru">
<item key="Power" lang="">Power</item>
<item key="Power" lang="nl">Macht</item>
<item key="Power" lang="ru">
<item key="R" lang="">Horizontal: Right</item>
<item key="R" lang="nl">Horizontaal: Rechts</item>
<item key="R" lang="ru">
<item key="Radius" lang="">Radius</item>
<item key="Radius" lang="nl">Straal</item>
<item key="Radius" lang="ru">
<item key="Sepia" lang="">Sepia 2</item>
<item key="Sepia" lang="ru">
<item key="Shadow Color" lang="">Shadow Color</item>
<item key="Shadow Color" lang="nl">Schaduw kleur</item>
<item key="Shadow Color" lang="ru">
<item key="Shadow Opacity" lang="">Shadow Opacity</item>
<item key="Shadow Opacity" lang="nl">Schaduw ondoorzichtigheid</item>
<item key="Shadow Opacity" lang="ru">
<item key="Smart Blur" lang="">Smart Blur</item>
<item key="Strength" lang="">Strength</item>
<item key="Strength" lang="nl">Sterkte</item>
<item key="Strength" lang="ru">
<item key="T" lang="">Vertical: Top</item>
<item key="T" lang="nl">Vertikaal: Bovenaan</item>
<item key="T" lang="ru">
<item key="Tolerance" lang="">Tolerance</item>
<item key="Tolerance" lang="nl">Tolerantie</item>
<item key="Tolerance" lang="ru">
<item key="Top Left Color" lang="">Top Left Color</item>
<item key="Top Left Color" lang="nl">Kleur links boven</item>
<item key="Top Left Color" lang="ru">
<item key="Top Right Color" lang="">Top Right Color</item>
<item key="Top Right Color" lang="nl">Kleur rechts boven</item>
<item key="Top Right Color" lang="ru">
<item key="Use high quality dithering" lang="">Use high quality dithering</item>
<item key="Use high quality dithering" lang="nl">Gebruik dithering van hoge kwaliteit</item>
<item key="Use high quality dithering" lang="ru">
<item key="VS" lang="">Vertical spacing</item>
<item key="VS" lang="nl">Verticale afstand</item>
<item key="VS" lang="ru">
<item key="Vertical Midpoint" lang="">Vertical Midpoint</item>
<item key="Vertical Midpoint" lang="nl">Vertikaal midden</item>
<item key="Vertical Midpoint" lang="ru">
<item key="Widening Radius" lang="">Widening Radius</item>
<item key="Widening Radius" lang="nl">Straal verbreeding</item>
<item key="Widening Radius" lang="ru">
<item key="Width" lang="">Width</item>
<item key="Width" lang="nl">Breedte</item>
<item key="Width" lang="ru">
<item key="download?" lang="">Do you want to download them now?</item>
<item key="download?" lang="nl">Wil je ze nu downloaden?</item>
<item key="download?" lang="ru">
<item key="newVersion" lang="">A new version of Kris Vandermotten's Paint.NET Effects is available.</item>
<item key="newVersion" lang="nl">Er is een nieuwe versie van Kris Vandermotten's Paint.NET Effects beschikbaar.</item>
<item key="newVersion" lang="ru">
<item key="title" lang="">Kris Vandermotten's Paint.NET Effects</item>
<item key="title" lang="ru">
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
[getCurrent] System Error:
[getGroups] GetTokenInformation error [%d]:
[getGroups] Got TokenGroups info
[getGroups] group %d: %s
[getImpersonationToken] DuplicateToken error [%d]:
[getImpersonationToken] OpenProcessToken error [%d]:
[getImpersonationToken] token = %d
[getPrimaryGroup] GetTokenInformation error [%d]:
[getPrimaryGroup] Got TokenPrimaryGroup info
[getPrimaryGroup] primaryGroup: %s
[getToken] OpenProcessToken error [%d]:
[getToken] OpenThreadToken error [%d]:
[getToken] got user access token
[getUser] GetTokenInformation error [%d]:
[getUser] Got TokenUser info
[getUser] LookupAccountName error [%d]:
[getUser] LookupAccountSid error [%d]:
[getUser] domainSid: %s
[getUser] userName: %s, domainName = %s
[getUser] userSid: %s
is a synonym for the "%s" VM [deprecated]
to select the "%s" VM
!"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~
!"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~
!"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~
$$$/Filters/Categories/Blur=Blur
(Cyanotype)</item>
(Fade Edge)</item>
(Grayscale on Colored Paper)</item>
(Monochrome Ink on Paper)</item>
(X)</item>
(Y)</item>
(c) 2011 MadJik
- Gradient</item>
- Gridlines</item>
.NET Framework
/s "%s"
/s /u "%s"
0$0(0,0004080<0@0D0H0L0P0T0X0\0`0d0h0l0p0x0|0
1</item>
2 (Sepia 2)</item>
2006 Frank Blumenberg
2006 Microsoft Corporation. All Rights Reserved.
2006 Rick Brewster, Chris Crosetto, Dennis Dietrich, Tom Jackson, Michael Kelsey, Brandon Ortiz, Craig Taylor, Chris Trevino, and Luke Walker. Portions Copyright
2007 Kerri Shotts
2007 dotPDN LLC, Rick Brewster. All Rights Reserved.
2008 Zach Walker
2008-2010 Kris Vandermotten
2009 Zach Walker
2010 MP4 Builder Team
2010 MadJik
2010 MadJik (Jean-Claude Jay)
2010 Niel Wagensommer
2010 Scott Stringer (aka Ego Eram Reputo)
2010 Zach Walker
2011 dotPDN LLC, Rick Brewster, and past contributors. All Rights Reserved.
2</item>
57996172c7f532741091a94124a92d0e0
:^p2}FFd
<((<XF:FXggggggggggggggggggggggggggggggggggggggggggggggggg
AGTPAtga
A\_^][I
A]A\_][I
A]A\_^[
A]A\_^]
A^A]A\_^
A^A]A\_^][
A^A]A\_^][H
A_A]A\_^
A_A]A\_^][
A_A^A]A\_
A_A^A]A\_H
A_A^A]A\_^]
A_A^_^]
Adam Gaskins
Alexander Belousov
Anthony Aziz
Base Class Array'
Base Class Descriptor at (
Black and White Converter Plugin
BleekII
BoltBait
BoltBait 2008
Class Hierarchy Descriptor'
ColorTarget Plugin for Paint.NET
ColorTargetV13.PluginSupportInfo
Complete Object Locator'
Cookies
Copyright
Creates a heat map from an image
David Koloski
David Wilson
Dell Inc. 2008
DescriptionW
DescriptionWX
DescriptionWh
Draw with Custom Brushes Mini...
Ego Eram Reputo
Evan Olds 2007
Evan Wallace
EyeshineEffect.PluginSupportInfo
GoldenCrystal 2008
HighPassEffect.PluginSupportInfo
Hindol <hindol.adhya@gmail.com>
HorizontalSliderThumbHoverBorder *
Inkjet System Development Center1
Intel 2008
InvertAlpha Plugin for Paint.NET
Itso (Christo Tsvetanov) 2009
Jens Thuresson 2010
Jotaf (Jo
Kris Vandermotten 2008
Kris'a Vandermotten'a.</item>
Kris'a Vandermotten'a</item>
Lomography Plugin for Paint.NET.
Madmik3 2004
Max Anselm
Michael Baker
Microsoft 2006
Microsoft 2007
Microsoft 2009
Microsoft 2010
Microsoft Code Verification Root0
Microsoft Corporation. All rights reserved.
Mike Ryan
Neil Cassidy
Nick Allmaker
Niel Wagensommer
OtherFarm
Paint.NET
Peron_321
Person_321
Philipp Sch
RXP MIB8xEdR
RXP MIB8yTrW
RXPMIB8MIB8yTdR
Radobot
Randell
Robert Nix 2006
Ryan Petrich 2007
Scott Stringer
Scott Stringer 2008
Scott Stringer aka EER
Sean Allred <Vermiculus>
Sebastian Nibisz 2009
SelectionTools.PluginSupportInfo
Simon Brown 2008
Simon Brown 2009
Simon Brown 2009 Portions
Simon Brown 2010
Simon Brown 2011
Simon Brown, 2007
SpecularEffect.PluginSupportInfo
Spikehead777
StarGlowEffect.PluginSupportInfo
Stuart Radforth
Tanel R
TargetPanelV10.PluginSupportInfo
The type {0} must implement {1}.
Threw an EXCEPTION during
Threw an unknown EXCEPTION during
TileFillFromClipboard.Properties
Toli Cuturicu 2007-2008
Transitional_Brush for Paint.NET
Type Descriptor'
Tzach Shabtay
UntitledEffect.PluginSupportInfo
WaveTextEffect.PluginSupportInfo
WhichSymbol Plugin for Paint.NET
Windows XP 64-bit Edition Version 2003 or newer should be used.
XCPMIB8MIB8xEdR
XCPMIB8MIB8yTdR
XCPMIB8MIB8yTrW
Yves Vander Haeghen
class="
clock ticks.
delete[]
enormator
http://crl.verisign.com/pca3.crl0
http://crl.verisign.com/pca3.crl0)
importmod
inSelector
inflate 1.1.3 Copyright 1995-1998 Mark Adler
jsonchiu
jxp 2009
name: '$$$/Average/DialogName/AboutAverage=About Average',
name: '$$$/Clouds/DialogName/AboutClouds=About Clouds and Difference Clouds',
name: '$$$/NTSCColors/DialogName/AboutNTSCColors=About NTSC Colors',
name: '$$$/PBM/DialogName/AboutPBM=About Portable Bit Map File Format',
name: '$$$/PCX/DialogName/AboutPCX=About PCX File Format',
name: '$$$/Pixar/DialogName/AboutPixar=About Pixar File Format',
name: '$$$/Plugins/Lizards/WIAWizard/DialogName/AboutWIAWizard=About WIA Support',
name: '$$$/Solarize/DialogName/AboutSolarize=About Solarize',
person_321
selector
style="left:%lfin; top:%lfin;"
tEXtCreationTime
test(s) failed.
test(s) were run.
the Crab Nebula
what() returned
will now restart.
win_dialog_type: standard_plugin_about )
!! : VNET adapter MTU defaulted to 1500.
!! : device enumeration error, %s
!! : failed to disable adapter %s
!! : failed to enable adapter %s
!! : get_fwd - failed to obtain interface mtu
!! : get_fwd - failed to obtain local interface
!! : get_fwd - invalid ppp/slip interface name
!! : get_fwd - sendarp retry exceeded
!! : get_fwd - unable to allocate vfwd entry
!! : no arp entry for dst : %s
!! : no arp entry for src : %s
!! : pfkey address size mismatch
!! : pfkey key size mismatch ( %i < %i )
!! : unable to locate adapter %s
!!!"""HHHJJJKKKMMMOOOSSSZZZ[[[]]]^^^```bbbdddfffkkkmmmpppuuuyyyzzz|||
!"!%%),
!)DKSYbhlo
!7!'5("<"(5(,<,0002224447771<14:4<<<>>>
!@#$%^&*()_+=-{}[]:;
!BurninateEffect.PluginSupportInfo
!ColorStretchV10.PluginSupportInfo
!D$$!D$(H
!D$(I!C
!EigenBlurEffect.PluginSupportInfo
!Erode Dilate plugin for Paint.NET
!HorizontalSliderTrackNormalBorder
!IImeAsyncWordCommentSetupper
!IVSTOContainerControlWWW
!Image and photo editing software.
!KillColorEffect.PluginSupportInfo
!LandscapeEffect.PluginSupportInfo
!LightningEffect.PluginSupportInfo
!Magenta (-100) 0 (100) Green
!Make Transparent Paint.NET Effect
!MetallizeEffect.PluginSupportInfo
!Mexican_Hat_Edgedetect.Properties
!N!*@)(K)*L)#S#&Q&#X +P+)X)5H51R17z
!OverlinerEffect.PluginSupportInfo
!Richmn
!SoundwaveEffect.PluginSupportInfo
!System.Web.DynamicData.Design.dll
!This program cannot be run in DOS mode.
!Vignette1Effect.PluginSupportInfo
!adErrIllegalOperationWWW
!pbstrStopDebugEventCompleteNameW
!pyrochild.effects.common.Gradient
!s<]!in
"!!&!#(!"+#!,##-%#.&%.&'2(&4*&9-+8.,7.2656:1496><5:??AG8,J;/S;(Z;)[D8lH1}T;MHJXJCWOP\\]bTMaUPvXBt]Hz[F~_Goa\saXtievjhvlkunk{xy
""""""""(
"""""""(
""""""(
"""%%%&&&))),,,111;;;<<<
"##q||,uI
"$$$/Filters/Categories/Video=Video
"%s" %s
"%s" -docbase %s %s
"%s" /H%08X
"'*.GINTX]bf
"*#""#*8000008H;;;;;;HLHHHHHLXXXXXXggggggggggggggg
"0-030>0D0O0U0^0g0s0}0
"0J011D1R1d1r1
"2""%""2@.((((.@9=444=9FF@@FFXXTXXgggggggggg
"2-D Perlin Noise - Cloud Generator
"@8zqt7
"A blend mode effect for Paint.NET.
"Align Plugin for Paint.NET Effects
"C:\depot\workarea\adobe3d_cs4\shared\agf\psinitial\testapp\build\Win32\Debug\Testapp5.exe" -qtserver
"CircleTextEffect.PluginSupportInfo
"Copyright
"Copyright (c) 1997 Microsoft Corp.1
"Copyright (c) 2000 Microsoft Corp.1#0!
"EdHarvey.Edfects.PluginSupportInfo
"GaussianBlurPlus.PluginSupportInfo
"GlobalSign Time Stamping Authority0
"HorizontalSliderThumbPressedBorder
"It deleted my hard drive" - Gateway tech support caller
"It was cool for about 3 days" - CNET
"LomographyEffect.PluginSupportInfo
"Mildly useful" - N.Y. Times
"MyWPFControls.ThumbnailRadioButton
"OutlineSelection.PluginSupportInfo
"Paint.NET v2.72 StylusReader class
"RGB_Remap4Effect.PluginSupportInfo
"RemoveBrightDark.PluginSupportInfo
"RotateTextEffect.PluginSupportInfo
"Scott Stringer aka Ego Eram Reputo
"SegmentImage Plugin for Paint.NET.
"SliderPointedThumbDisabledGeometry
"SpiralTextEffect.PluginSupportInfo
"The term 'Matte' is copyrighted by the Recording Industry Association of America. Change the name to something neutral such as 'Eighth order transmogrification / transparency region selector' or you will be sued." - RIAA
"VeriSign Time Stamping Services CA
"VeriSign Time Stamping Services CA0
"VerticalSliderThumbHoverBackground (
"coltoalphaadv Plugin for Paint.NET
"edgemasterEffect.PluginSupportInfo
"http://crl.globalsign.net/Root.crl0
"http://crl.globalsign.net/root.crl0
"http://crl.verisign.com/tss-ca.crl0
"kill_colorEffect.PluginSupportInfo
"m_connection->OpenRequest" failed
"nn;;;;nn;;;;nn;;;;nn;;;;nnn
"nnnnnnnnnnnnnnnnnnnnnnnnnnn
"plStateWl
# Made with Adobe Photoshop
######Logging started. Version=%s.%s StartSystemTime:%04d-%02d-%02d-%02d%02d%02d.%03d StartLocalTime:%04d-%02d-%02d-%02d%02d%02d.%03d PID=0x%0x TID=0x%0x ContinuedFrom=%S
######Will continue log in file %S
#$$$/AETE/Common/Photoshop=Photoshop
#%+-2::::511%!
#%+115:N:5/$
#%02X%02X%02X
#'(+,/0.-*)&%$"!
#'SetContainedControlW
#(g"),wfJ
#(lA&&Gmmllllm
#(lm[*mmmmmmmm
#(lnnnnnnnnnlm
#*1892+$
#*lA&&Gmmmmmmm
#*lnW*nnnnmmmm
#,),*&gU|
#00002DFF
#190032FF
#1900FF00
#19FF0000
#1@1''1@X@<0<@XgXPLLPXggggggggggggggggggggggggggggg
#2C628B
#333333
#3C7FB1
#4C8BB4
#500055FF
#5000FF25
#50FF0000
#5EB4E3
#?RADIANCE
#B0DFF8
#B70060FF
#B751FF00
#B7FF0000
#B8E2F9
#B8E4FA
#CatalogW
#ColorModuloEffect.PluginSupportInfo
#ColorTargetV13 Plugin for Paint.NET
#Copyright
#Copyright (c) 2009, Daniel Plaisted
#D6D5D5
#DesktopBackgroundPreview.Properties
#Diagonal Lines Plugin for Paint.NET
#F%)hIt
#F0EFEF
#FF000000
#FF000E5F8
#FF00106D$
#FF0026FF
#FF0031FF
#FF0050FF
#FF00FF02
#FF00FF1B
#FF00FF1B$
#FF115BFF$
#FF138E00$
#FF1448018
#FF2F2F2F
#FF5F00008
#FF730000$
#FF929292$
#FFA4BEF3
#FFAEB1AF
#FFC4C4C4
#FFCECECE
#FFE7EAEA
#FFF4F4F4
#FFFF0000
#FFFF0000#
#FFFF0000$
#FFFF0808
#FFFFFFFF$
#GreyscaleWPF.SliderTextBoxConverter
#Hexagonal Grid Plugin for Paint.NET
#Move vertical (-500 to 500, dft=0)
#Outline Object plugin for Paint.NET
#PerspectiveEffect.PluginSupportInfo
#RedEyeQuickFix Plugin for Paint.NET
#Strings
#TargetPanelV10 Plugin for Paint.NET