This repository has been archived by the owner on Jul 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path2_Hashcrack.Designer.vb
2673 lines (2669 loc) · 137 KB
/
2_Hashcrack.Designer.vb
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
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
Partial Class Hashcrack
Inherits System.Windows.Forms.Form
'Das Formular überschreibt den Löschvorgang, um die Komponentenliste zu bereinigen.
<System.Diagnostics.DebuggerNonUserCode()>
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
Try
If disposing AndAlso components IsNot Nothing Then
components.Dispose()
End If
Finally
MyBase.Dispose(disposing)
End Try
End Sub
'Wird vom Windows Form-Designer benötigt.
Private components As System.ComponentModel.IContainer
'Hinweis: Die folgende Prozedur ist für den Windows Form-Designer erforderlich.
'Das Bearbeiten ist mit dem Windows Form-Designer möglich.
'Das Bearbeiten mit dem Code-Editor ist nicht möglich.
<System.Diagnostics.DebuggerStepThrough()>
Private Sub InitializeComponent()
Me.components = New System.ComponentModel.Container()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(Hashcrack))
Me.Label7 = New System.Windows.Forms.Label()
Me.SessionTxb = New System.Windows.Forms.TextBox()
Me.Label6 = New System.Windows.Forms.Label()
Me.Label2 = New System.Windows.Forms.Label()
Me.Hashtyp1 = New System.Windows.Forms.TextBox()
Me.Button7 = New System.Windows.Forms.Button()
Me.HashTxb = New System.Windows.Forms.TextBox()
Me.HashtypCBox = New System.Windows.Forms.ComboBox()
Me.OpenFileDialog1 = New System.Windows.Forms.OpenFileDialog()
Me.Hashtyp0 = New System.Windows.Forms.TextBox()
Me.GroupBox15 = New System.Windows.Forms.GroupBox()
Me.BrainOn = New System.Windows.Forms.CheckBox()
Me.MailCheckOn = New System.Windows.Forms.CheckBox()
Me.Label39 = New System.Windows.Forms.Label()
Me.SessionOpenBtn = New System.Windows.Forms.Button()
Me.Label63 = New System.Windows.Forms.Label()
Me.PictureBox12 = New System.Windows.Forms.PictureBox()
Me.PictureBox11 = New System.Windows.Forms.PictureBox()
Me.PictureBox6 = New System.Windows.Forms.PictureBox()
Me.PIMvarTxb1 = New System.Windows.Forms.TextBox()
Me.PIMvarTxb2 = New System.Windows.Forms.TextBox()
Me.PIMstartTxb = New System.Windows.Forms.TextBox()
Me.PIMstopTxb = New System.Windows.Forms.TextBox()
Me.Label30 = New System.Windows.Forms.Label()
Me.Label31 = New System.Windows.Forms.Label()
Me.GroupBox16 = New System.Windows.Forms.GroupBox()
Me.TabPage6 = New System.Windows.Forms.TabPage()
Me.PictureBox4 = New System.Windows.Forms.PictureBox()
Me.PictureBox3 = New System.Windows.Forms.PictureBox()
Me.PictureBox2 = New System.Windows.Forms.PictureBox()
Me.WLMCheck = New System.Windows.Forms.CheckBox()
Me.Label36 = New System.Windows.Forms.Label()
Me.Label37 = New System.Windows.Forms.Label()
Me.Label38 = New System.Windows.Forms.Label()
Me.AutoRuleG = New System.Windows.Forms.TextBox()
Me.Button33 = New System.Windows.Forms.Button()
Me.WorlAutoTxb = New System.Windows.Forms.TextBox()
Me.Label50 = New System.Windows.Forms.Label()
Me.Button32 = New System.Windows.Forms.Button()
Me.Label48 = New System.Windows.Forms.Label()
Me.LanguageCbox = New System.Windows.Forms.ComboBox()
Me.CommandAutoTxb = New System.Windows.Forms.TextBox()
Me.Label47 = New System.Windows.Forms.Label()
Me.HashSpeedCbox = New System.Windows.Forms.ComboBox()
Me.TabPage4 = New System.Windows.Forms.TabPage()
Me.GroupBox14 = New System.Windows.Forms.GroupBox()
Me.Button25 = New System.Windows.Forms.Button()
Me.Button26 = New System.Windows.Forms.Button()
Me.CommandA6Txb = New System.Windows.Forms.TextBox()
Me.GroupBox11 = New System.Windows.Forms.GroupBox()
Me.CharsHyTxb4 = New System.Windows.Forms.TextBox()
Me.CharsHyTxb3 = New System.Windows.Forms.TextBox()
Me.CharsHyTxb2 = New System.Windows.Forms.TextBox()
Me.CharsHyTxb1 = New System.Windows.Forms.TextBox()
Me.Button17 = New System.Windows.Forms.Button()
Me.Button18 = New System.Windows.Forms.Button()
Me.Button19 = New System.Windows.Forms.Button()
Me.Button20 = New System.Windows.Forms.Button()
Me.Button21 = New System.Windows.Forms.Button()
Me.MaskHybCbox = New System.Windows.Forms.ComboBox()
Me.Label24 = New System.Windows.Forms.Label()
Me.Label25 = New System.Windows.Forms.Label()
Me.Label26 = New System.Windows.Forms.Label()
Me.Label27 = New System.Windows.Forms.Label()
Me.Label28 = New System.Windows.Forms.Label()
Me.GroupBox10 = New System.Windows.Forms.GroupBox()
Me.Label23 = New System.Windows.Forms.Label()
Me.CheckBox6 = New System.Windows.Forms.CheckBox()
Me.CheckBox5 = New System.Windows.Forms.CheckBox()
Me.Button30 = New System.Windows.Forms.Button()
Me.WordlHyTxb = New System.Windows.Forms.TextBox()
Me.Label22 = New System.Windows.Forms.Label()
Me.TabPage3 = New System.Windows.Forms.TabPage()
Me.GroupBox13 = New System.Windows.Forms.GroupBox()
Me.Button22 = New System.Windows.Forms.Button()
Me.Button24 = New System.Windows.Forms.Button()
Me.CommandA1Txb = New System.Windows.Forms.TextBox()
Me.GroupBox9 = New System.Windows.Forms.GroupBox()
Me.RuleA1right = New System.Windows.Forms.TextBox()
Me.RuleA1left = New System.Windows.Forms.TextBox()
Me.Label21 = New System.Windows.Forms.Label()
Me.Label20 = New System.Windows.Forms.Label()
Me.GroupBox8 = New System.Windows.Forms.GroupBox()
Me.WordlistA1right = New System.Windows.Forms.TextBox()
Me.WordlistA1left = New System.Windows.Forms.TextBox()
Me.Button16 = New System.Windows.Forms.Button()
Me.Button15 = New System.Windows.Forms.Button()
Me.Label19 = New System.Windows.Forms.Label()
Me.Label18 = New System.Windows.Forms.Label()
Me.TabPage2 = New System.Windows.Forms.TabPage()
Me.GroupBox12 = New System.Windows.Forms.GroupBox()
Me.Button3 = New System.Windows.Forms.Button()
Me.Button8 = New System.Windows.Forms.Button()
Me.CommandA3Txb = New System.Windows.Forms.TextBox()
Me.GroupBox7 = New System.Windows.Forms.GroupBox()
Me.TextBox32 = New System.Windows.Forms.TextBox()
Me.TextBox31 = New System.Windows.Forms.TextBox()
Me.Label17 = New System.Windows.Forms.Label()
Me.Label16 = New System.Windows.Forms.Label()
Me.GroupBox6 = New System.Windows.Forms.GroupBox()
Me.TextBox36 = New System.Windows.Forms.TextBox()
Me.TextBox35 = New System.Windows.Forms.TextBox()
Me.TextBox34 = New System.Windows.Forms.TextBox()
Me.TextBox33 = New System.Windows.Forms.TextBox()
Me.Button14 = New System.Windows.Forms.Button()
Me.Button13 = New System.Windows.Forms.Button()
Me.Button12 = New System.Windows.Forms.Button()
Me.Button11 = New System.Windows.Forms.Button()
Me.Button10 = New System.Windows.Forms.Button()
Me.ComboBox6 = New System.Windows.Forms.ComboBox()
Me.Label11 = New System.Windows.Forms.Label()
Me.Label12 = New System.Windows.Forms.Label()
Me.Label13 = New System.Windows.Forms.Label()
Me.Label14 = New System.Windows.Forms.Label()
Me.Label15 = New System.Windows.Forms.Label()
Me.TabPage1 = New System.Windows.Forms.TabPage()
Me.GroupBox3 = New System.Windows.Forms.GroupBox()
Me.Button2 = New System.Windows.Forms.Button()
Me.Button23 = New System.Windows.Forms.Button()
Me.CommandA0Txb = New System.Windows.Forms.TextBox()
Me.GroupBox2 = New System.Windows.Forms.GroupBox()
Me.Label34 = New System.Windows.Forms.Label()
Me.RuleGA0 = New System.Windows.Forms.TextBox()
Me.Label33 = New System.Windows.Forms.Label()
Me.Label32 = New System.Windows.Forms.Label()
Me.Rule4A0 = New System.Windows.Forms.TextBox()
Me.Button99 = New System.Windows.Forms.Button()
Me.Button4 = New System.Windows.Forms.Button()
Me.Label5 = New System.Windows.Forms.Label()
Me.Label3 = New System.Windows.Forms.Label()
Me.Button5 = New System.Windows.Forms.Button()
Me.Rule3A0 = New System.Windows.Forms.TextBox()
Me.Label4 = New System.Windows.Forms.Label()
Me.Button6 = New System.Windows.Forms.Button()
Me.Rule2A0 = New System.Windows.Forms.TextBox()
Me.Rule1A0 = New System.Windows.Forms.TextBox()
Me.GroupBox1 = New System.Windows.Forms.GroupBox()
Me.Wordlist = New System.Windows.Forms.TextBox()
Me.Button1 = New System.Windows.Forms.Button()
Me.Label1 = New System.Windows.Forms.Label()
Me.TabControl1 = New System.Windows.Forms.TabControl()
Me.TabPage7 = New System.Windows.Forms.TabPage()
Me.Button27 = New System.Windows.Forms.Button()
Me.Button35 = New System.Windows.Forms.Button()
Me.Button34 = New System.Windows.Forms.Button()
Me.CommandBatchTxb = New System.Windows.Forms.TextBox()
Me.TabPage8 = New System.Windows.Forms.TabPage()
Me.GroupBox17 = New System.Windows.Forms.GroupBox()
Me.Label35 = New System.Windows.Forms.Label()
Me.Button28 = New System.Windows.Forms.Button()
Me.HashIdentTxb = New System.Windows.Forms.TextBox()
Me.TabPage5 = New System.Windows.Forms.TabPage()
Me.TextBox66 = New System.Windows.Forms.TextBox()
Me.Button9 = New System.Windows.Forms.Button()
Me.GroupBox5 = New System.Windows.Forms.GroupBox()
Me.Button29 = New System.Windows.Forms.Button()
Me.PictureBox10 = New System.Windows.Forms.PictureBox()
Me.Label62 = New System.Windows.Forms.Label()
Me.EncodingCbox = New System.Windows.Forms.ComboBox()
Me.PictureBox9 = New System.Windows.Forms.PictureBox()
Me.OnlyDevTbx = New System.Windows.Forms.TextBox()
Me.OtherParaTxb = New System.Windows.Forms.TextBox()
Me.Label29 = New System.Windows.Forms.Label()
Me.Label10 = New System.Windows.Forms.Label()
Me.Label9 = New System.Windows.Forms.Label()
Me.Label8 = New System.Windows.Forms.Label()
Me.AbortCbox = New System.Windows.Forms.ComboBox()
Me.WorkloadCbox = New System.Windows.Forms.ComboBox()
Me.GroupBox4 = New System.Windows.Forms.GroupBox()
Me.CheckLog = New System.Windows.Forms.CheckBox()
Me.TimerSekTxb = New System.Windows.Forms.TextBox()
Me.PotfileCbox = New System.Windows.Forms.CheckBox()
Me.CPUCbox = New System.Windows.Forms.CheckBox()
Me.ForceCbox = New System.Windows.Forms.CheckBox()
Me.UpdateCbox = New System.Windows.Forms.CheckBox()
Me.GroupBox20 = New System.Windows.Forms.GroupBox()
Me.Label61 = New System.Windows.Forms.Label()
Me.SpeedAutoExtrak2 = New System.Windows.Forms.TextBox()
Me.SpeedAutoExtrak1 = New System.Windows.Forms.TextBox()
Me.Label51 = New System.Windows.Forms.Label()
Me.Label52 = New System.Windows.Forms.Label()
Me.TextBox61 = New System.Windows.Forms.TextBox()
Me.PictureBox8 = New System.Windows.Forms.PictureBox()
Me.PictureBox7 = New System.Windows.Forms.PictureBox()
Me.Timer1 = New System.Windows.Forms.Timer(Me.components)
Me.PictureBox1 = New System.Windows.Forms.PictureBox()
Me.PictureBox5 = New System.Windows.Forms.PictureBox()
Me.GroupBox15.SuspendLayout()
CType(Me.PictureBox12, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.PictureBox11, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.PictureBox6, System.ComponentModel.ISupportInitialize).BeginInit()
Me.GroupBox16.SuspendLayout()
Me.TabPage6.SuspendLayout()
CType(Me.PictureBox4, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.PictureBox3, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.PictureBox2, System.ComponentModel.ISupportInitialize).BeginInit()
Me.TabPage4.SuspendLayout()
Me.GroupBox14.SuspendLayout()
Me.GroupBox11.SuspendLayout()
Me.GroupBox10.SuspendLayout()
Me.TabPage3.SuspendLayout()
Me.GroupBox13.SuspendLayout()
Me.GroupBox9.SuspendLayout()
Me.GroupBox8.SuspendLayout()
Me.TabPage2.SuspendLayout()
Me.GroupBox12.SuspendLayout()
Me.GroupBox7.SuspendLayout()
Me.GroupBox6.SuspendLayout()
Me.TabPage1.SuspendLayout()
Me.GroupBox3.SuspendLayout()
Me.GroupBox2.SuspendLayout()
Me.GroupBox1.SuspendLayout()
Me.TabControl1.SuspendLayout()
Me.TabPage7.SuspendLayout()
Me.TabPage8.SuspendLayout()
Me.GroupBox17.SuspendLayout()
Me.TabPage5.SuspendLayout()
Me.GroupBox5.SuspendLayout()
CType(Me.PictureBox10, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.PictureBox9, System.ComponentModel.ISupportInitialize).BeginInit()
Me.GroupBox4.SuspendLayout()
Me.GroupBox20.SuspendLayout()
CType(Me.PictureBox8, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.PictureBox7, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.PictureBox5, System.ComponentModel.ISupportInitialize).BeginInit()
Me.SuspendLayout()
'
'Label7
'
Me.Label7.AutoSize = True
Me.Label7.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label7.ForeColor = System.Drawing.SystemColors.InfoText
Me.Label7.Location = New System.Drawing.Point(22, 85)
Me.Label7.Name = "Label7"
Me.Label7.Size = New System.Drawing.Size(100, 16)
Me.Label7.TabIndex = 17
Me.Label7.Text = "Session Name:"
'
'SessionTxb
'
Me.SessionTxb.BackColor = System.Drawing.Color.White
Me.SessionTxb.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.SessionTxb.Location = New System.Drawing.Point(135, 82)
Me.SessionTxb.Name = "SessionTxb"
Me.SessionTxb.Size = New System.Drawing.Size(270, 21)
Me.SessionTxb.TabIndex = 3
'
'Label6
'
Me.Label6.AutoSize = True
Me.Label6.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label6.Location = New System.Drawing.Point(22, 27)
Me.Label6.Name = "Label6"
Me.Label6.Size = New System.Drawing.Size(87, 16)
Me.Label6.TabIndex = 18
Me.Label6.Text = "Target-Hash:"
'
'Label2
'
Me.Label2.AutoSize = True
Me.Label2.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label2.Location = New System.Drawing.Point(22, 56)
Me.Label2.Name = "Label2"
Me.Label2.Size = New System.Drawing.Size(71, 16)
Me.Label2.TabIndex = 3
Me.Label2.Text = "Hash-Typ:"
'
'Hashtyp1
'
Me.Hashtyp1.Location = New System.Drawing.Point(57, 25)
Me.Hashtyp1.Name = "Hashtyp1"
Me.Hashtyp1.Size = New System.Drawing.Size(42, 20)
Me.Hashtyp1.TabIndex = 28
'
'Button7
'
Me.Button7.BackColor = System.Drawing.Color.WhiteSmoke
Me.Button7.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Button7.ForeColor = System.Drawing.SystemColors.InfoText
Me.Button7.Location = New System.Drawing.Point(426, 25)
Me.Button7.Name = "Button7"
Me.Button7.Size = New System.Drawing.Size(110, 24)
Me.Button7.TabIndex = 0
Me.Button7.Text = "Select file"
Me.Button7.UseVisualStyleBackColor = False
'
'HashTxb
'
Me.HashTxb.BackColor = System.Drawing.Color.White
Me.HashTxb.Cursor = System.Windows.Forms.Cursors.IBeam
Me.HashTxb.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.HashTxb.Location = New System.Drawing.Point(136, 26)
Me.HashTxb.Name = "HashTxb"
Me.HashTxb.ReadOnly = True
Me.HashTxb.RightToLeft = System.Windows.Forms.RightToLeft.Yes
Me.HashTxb.Size = New System.Drawing.Size(270, 21)
Me.HashTxb.TabIndex = 1
Me.HashTxb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
'
'HashtypCBox
'
Me.HashtypCBox.BackColor = System.Drawing.Color.White
Me.HashtypCBox.DisplayMember = "Tats"
Me.HashtypCBox.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.HashtypCBox.FormattingEnabled = True
Me.HashtypCBox.Items.AddRange(New Object() {"0_ MD5_#3", "10_ md5($pass.$salt)_#3", "11_ Joomla < 2.5.18_#3", "12_ PostgreSQL_#3", "20_ md5($salt.$pass)_#3", "21_ osCommerce, xt_#3", "22_ Juniper NetScreen/SSG (ScreenOS)_#3", "23_ Skype_#3", "30_ md5(utf16le($pass).$salt)_#3", "40_ md5($salt.utf16le($pass))_#3", "50_ HMAC_#3", "60_ HMAC_#3", "100_ SHA1_#3", "101_ nsldap, SHA_#3", "110_ sha1($pass.$salt)_#3", "111_ nsldaps, SSHA_#3", "112_ Oracle S_#3", "120_ sha1($salt.$pass)_#3", "121_ SMF (Simple Machines Forum) > v1.1_#3", "122_ macOS v10.4, macOS v10.5, MacOS v10.6_#3", "124_ Django (SHA_#3", "125_ ArubaOS_#3", "130_ sha1(utf16le($pass).$salt)_#3", "131_ MSSQL (2000)_#3", "132_ MSSQL (2005)_#3", "133_ PeopleSoft_#3", "140_ sha1($salt.utf16le($pass))_#3", "141_ Episerver 6.x < .NET 4_#3", "150_ HMAC_#2", "160_ HMAC_#2", "200_ MySQL323_#3", "300_ MySQL4.1/MySQL5_#3", "400_ phpass (Iterations_#2", "500_ md5crypt, MD5 (Unix), Cisco_#2", "501_ Juniper IVE (Iterations_#2", "600_ BLAKE2b_#2", "900_ MD4_#3", "1000_ NTLM_#3", "1100_ Domain Cached Credentials (DCC), MS Cache_#3", "1300_ SHA2_#2", "1400_ SHA2_#2", "1410_ sha256($pass.$salt)_#2", "1411_ SSHA_#2", "1420_ sha256($salt.$pass)_#2", "1421_ hMailServer_#2", "1430_ sha256(utf16le($pass).$salt)_#2", "1440_ sha256($salt.utf16le($pass))_#2", "1441_ Episerver 6.x >= .NET 4_#2", "1450_ HMAC_#2", "1460_ HMAC_#2", "1500_ descrypt, DES (Unix), Traditional DES_#2", "1600_ Apache $apr1$ MD5, md5apr1, MD5 (APR) (Iterations_#2", "1700_ SHA2_#2", "1710_ sha512($pass.$salt)_#2", "1711_ SSHA_#2", "1720_ sha512($salt.$pass)_#2", "1722_ macOS v10.7_#2", "1730_ sha512(utf16le($pass).$salt)_#2", "1731_ MSSQL (2012, 2014)_#2", "1740_ sha512($salt.utf16le($pass))_#2", "1750_ HMAC_#2", "1760_ HMAC_#2", "1800_ sha512crypt $6$, SHA512 (Unix) (Iterations_#1", "2100_ Domain Cached Credentials 2 (DCC2), MS Cache 2 (Iterations_#2", "2400_ Cisco_#3", "2410_ Cisco_#3", "2500_ WPA_#2", "2501_ WPA_#2", "2600_ md5(md5($pass))_#3", "2611_ vBulletin < v3.8.5_#3", "2612_ PHPS_#3", "2711_ vBulletin >= v3.8.5_#3", "2811_ MyBB 1.2+, IPB2+ (Invision Power Board)_#3", "3000_ LM_#3", "3100_ Oracle H_#2", "3200_ bcrypt $2*$, Blowfish (Unix) (Iterations_#1", "3710_ md5($salt.md5($pass))_#3", "3711_ MediaWiki B type_#3", "3800_ md5($salt.$pass.$salt)_#3", "3910_ md5(md5($pass).md5($salt))_#3", "4010_ md5($salt.md5($salt.$pass))_#3", "4110_ md5($salt.md5($pass.$salt))_#3", "4300_ md5(strtoupper(md5($pass)))_#3", "4400_ md5(sha1($pass))_#3", "4500_ sha1(sha1($pass))_#2", "4510_ sha1(sha1($pass).$salt)_#2", "4520_ sha1($salt.sha1($pass))_#2", "4521_ Redmine_#2", "4522_ PunBB_#2", "4700_ sha1(md5($pass))_#3", "4710_ sha1(md5($pass).$salt)_#3", "4711_ Huawei sha1(md5($pass).$salt)_#3", "4800_ iSCSI CHAP authentication, MD5(CHAP)_#3", "4900_ sha1($salt.$pass.$salt)_#3", "5100_ Half MD5_#3", "5200_ Password Safe v3 (Iterations_#2", "5300_ IKE_#2", "5400_ IKE_#2", "5500_ NetNTLMv1 / NetNTLMv1+ESS_#3", "5600_ NetNTLMv2_#2", "5700_ Cisco_#3", "5800_ Samsung Android Password/PIN (Iterations_#2", "6000_ RIPEMD_#3", "6100_ Whirlpool_#2", "6211_ TrueCrypt RIPEMD160 + XTS 512 bit (Iterations_#2", "6212_ TrueCrypt RIPEMD160 + XTS 1024 bit (Iterations_#1", "6213_ TrueCrypt RIPEMD160 + XTS 1536 bit (Iterations_#1", "6221_ TrueCrypt SHA512 + XTS 512 bit (Iterations_#2", "6222_ TrueCrypt SHA512 + XTS 1024 bit (Iterations_#1", "6223_ TrueCrypt SHA512 + XTS 1536 bit (Iterations_#1", "6231_ TrueCrypt Whirlpool + XTS 512 bit (Iterations_#1", "6232_ TrueCrypt Whirlpool + XTS 1024 bit (Iterations_#1", "6233_ TrueCrypt Whirlpool + XTS 1536 bit (Iterations_#1", "6241_ TrueCrypt RIPEMD160 + XTS 512 bit + boot_#2", "6242_ TrueCrypt RIPEMD160 + XTS 1024 bit + boot_#1", "6243_ TrueCrypt RIPEMD160 + XTS 1536 bit + boot_#1", "6300_ AIX {smd5} (Iterations_#2", "6400_ AIX {ssha256} (Iterations_#2", "6500_ AIX {ssha512} (Iterations_#2", "6600_ 1Password, agilekeychain (Iterations_#2", "6700_ AIX {ssha1} (Iterations_#2", "6800_ LastPass + LastPass sniffed (Iterations_#2", "6900_ GOST R 34.11_#2", "7000_ FortiGate (FortiOS)_#3", "7100_ macOS v10.8+ (PBKDF2_#2", "7200_ GRUB 2 (Iterations_#2", "7300_ IPMI2 RAKP HMAC_#2", "7400_ sha256crypt $5$, SHA256 (Unix) (Iterations_#1", "7401_ MySQL $A$ (sha256crypt) (Iterations_#1", "7500_ Kerberos 5, etype 23, AS_#2", "7700_ SAP CODVN B (BCODE)_#2", "7701_ SAP CODVN B (BCODE) from RFC_READ_TABLE_#2", "7800_ SAP CODVN F/G (PASSCODE)_#2", "7801_ SAP CODVN F/G (PASSCODE) from RFC_READ_TABLE_#2", "7900_ Drupal7 (Iterations_#1", "8000_ Sybase ASE_#2", "8100_ Citrix NetScaler (SHA1)_#3", "8200_ 1Password, cloudkeychain (Iterations_#1", "8300_ DNSSEC (NSEC3)_#2", "8400_ WBB3 (Woltlab Burning Board)_#2", "8500_ RACF_#2", "8600_ Lotus Notes/Domino 5_#2", "8700_ Lotus Notes/Domino 6_#2", "8800_ Android FDE <= 4.3 (Iterations_#2", "8900_ scrypt (Iterations_#2", "9000_ Password Safe v2 (Iterations_#2", "9100_ Lotus Notes/Domino 8 (Iterations_#2", "9200_ Cisco_#1", "9300_ Cisco_#1", "9400_ MS Office 2007 (Iterations_#1", "9500_ MS Office 2010 (Iterations_#1", "9600_ MS Office 2013 (Iterations_#1", "9700_ MS Office <= 2003 $0/$1, MD5 + RC4_#2", "9710_ MS Office <= 2003 $0/$1, MD5 + RC4_#2", "9720_ MS Office <= 2003 $0/$1, MD5 + RC4_#2", "9800_ MS Office <= 2003 $3/$4, SHA1 + RC4_#2", "9810_ MS Office <= 2003 $3, SHA1 + RC4_#2", "9820_ MS Office <= 2003 $3, SHA1 + RC4_#2", "9900_ Radmin2_#3", "10000_ Django (PBKDF2_#1", "10100_ SipHash_#3", "10200_ CRAM_#3", "10300_ SAP CODVN H (PWDSALTEDHASH) iSSHA_#2", "10400_ PDF 1.1 _#2", "10410_ PDF 1.1 _#2", "10420_ PDF 1.1 _#3", "10500_ PDF 1.4 _#2", "10600_ PDF 1.7 Level 3 (Acrobat 9)_#3", "10700_ PDF 1.7 Level 8 (Acrobat 10 _#1", "10800_ SHA2_#2", "10900_ PBKDF2_#2", "10901_ RedHat 389_#1", "11000_ PrestaShop_#3", "11100_ PostgreSQL CRAM (MD5)_#3", "11200_ MySQL CRAM (SHA1)_#2", "11300_ Bitcoin/Litecoin wallet.dat (Iterations_#1", "11400_ SIP digest authentication (MD5)_#3", "11500_ CRC32_#3", "11600_7zip_#2", "11700_ GOST R 34.11_#2", "11750_ HMAC_#2", "11760_ HMAC_#2", "11800_ GOST R 34.11_#2", "11850_ HMAC_#2", "11860_ HMAC_#2", "11900_ PBKDF2_#2", "12000_ PBKDF2_#2", "12001_ Atlassian (PBKDF2_#2", "12100_ PBKDF2_#2", "12200_ eCryptfs (Iterations_#1", "12300_ Oracle T_#1", "12400_ BSDi Crypt, Extended DES (Iterations_#2", "12500_ RAR3_#1", "12600_ ColdFusion 10+_#2", "12700_ Blockchain, My Wallet (Iterations_#2", "12800_ MS_#2", "12900_ Android FDE (Samsung DEK) (Iterations_#2", "13000_ RAR5 (Iterations_#1", "13100_ Kerberos 5, etype 23, TGS_#2", "13200_ AxCrypt 1 (Iterations_#1", "13300_ AxCrypt 1 in_#3", "13400_ KeePass 1 (AES/Twofish) and KeePass 2 (AES) (Iterations_#1", "13500_ PeopleSoft PS_TOKEN_#3", "13600_ WinZip (Iterations_#2", "13711_ VeraCrypt RIPEMD160 + XTS 512 bit (Iterations_#1", "13712_ VeraCrypt RIPEMD160 + XTS 1024 bit (Iterations_#1", "13713_ VeraCrypt RIPEMD160 + XTS 1536 bit (Iterations_#1", "13721_ VeraCrypt SHA512 + XTS 512 bit (Iterations_#1", "13722_ VeraCrypt SHA512 + XTS 1024 bit (Iterations_#1", "13723_ VeraCrypt SHA512 + XTS 1536 bit (Iterations_#1", "13731_ VeraCrypt Whirlpool + XTS 512 bit (Iterations_#1", "13732_ VeraCrypt Whirlpool + XTS 1024 bit (Iterations_#1", "13733_ VeraCrypt Whirlpool + XTS 1536 bit (Iterations_#1", "13741_ VeraCrypt RIPEMD160 + XTS 512 bit + boot_#1", "13742_ VeraCrypt RIPEMD160 + XTS 1024 bit + boot_#1", "13743_ VeraCrypt RIPEMD160 + XTS 1536 bit + boot_#1", "13751_ VeraCrypt SHA256 + XTS 512 bit (Iterations_#1", "13752_ VeraCrypt SHA256 + XTS 1024 bit (Iterations_#1", "13753_ VeraCrypt SHA256 + XTS 1536 bit (Iterations_#1", "13761_ VeraCrypt SHA256 + XTS 512 bit + boot_#1", "13762_ VeraCrypt SHA256 + XTS 1024 bit + boot_#1", "13763_ VeraCrypt SHA256 + XTS 1536 bit + boot_#1", "13771_ VeraCrypt Streebog_#1", "13772_ VeraCrypt Streebog_#1", "13773_ VeraCrypt Streebog_#1", "13800_ Windows Phone 8+ PIN/password_#2", "13900_ OpenCart_#2", "14000_ DES (PT = $salt, key = $pass)_#3", "14100_ 3DES (PT = $salt, key = $pass)_#2", "14400_ sha1(CX)_#2", "14600_ LUKS (Iterations_#1", "14700_ iTunes backup < 10.0 (Iterations_#1", "14800_ iTunes backup >= 10.0 (Iterations_#1", "14900_ Skip32 (PT = $salt, key = $pass)_#3", "15000_ FileZilla Server >= 0.9.55_#2", "15100_ Juniper/NetBSD sha1crypt (Iterations_#1", "15200_ Blockchain, My Wallet, V2 (Iterations_#2", "15300_ DPAPI masterkey file v1 (Iterations_#1", "15400_ ChaCha20_#3", "15500_ JKS Java Key Store Private Keys (SHA1)_#3", "15600_ Ethereum Wallet, PBKDF2_#2", "15700_ Ethereum Wallet, SCRYPT (Iterations_#1", "15900_ DPAPI masterkey file v2 (Iterations_#1", "16000_ Tripcode_#2", "16100_ TACACS+_#3", "16200_ Apple Secure Notes (Iterations_#1", "16300_ Ethereum Pre_#2", "16400_ CRAM_#3", "16500_ JWT (JSON Web Token)_#2", "16600_ Electrum Wallet (Salt_#2", "16700_ FileVault 2 (Iterations_#1", "16800_ WPA_#2", "16801_ WPA_#2", "16900_ Ansible Vault (Iterations_#1", "17200_ PKZIP (Compressed)_#1", "17210_ PKZIP (Uncompressed)_#2", "17220_ PKZIP (Compressed Multi_#1", "17225_ PKZIP (Mixed Multi_#1", "17230_ PKZIP (Mixed Multi_#3", "17300_ SHA3_#2", "17400_ SHA3_#2", "17500_ SHA3_#2", "17600_ SHA3_#2", "17700_ Keccak_#2", "17800_ Keccak_#2", "17900_ Keccak_#2", "18000_ Keccak_#2", "18100_ TOTP (HMAC_#2", "18200_ Kerberos 5, etype 23, AS_#2", "18300_ Apple File System (APFS) (Iterations_#1", "18400_ Open Document Format (ODF) 1.2 (SHA_#1", "18500_ sha1(md5(md5($pass)))_#2", "18600_ Open Document Format (ODF) 1.1 (SHA_#2", "18700_ Java Object hashCode()_#3", "18800_ Blockchain, My Wallet, Second Password (SHA256) (Iterations_#1", "18900_ Android Backup (Iterations_#1", "19000_ QNX /etc/shadow (MD5) (Iterations_#2", "19100_ QNX /etc/shadow (SHA256) (Iterations_#2", "19200_ QNX /etc/shadow (SHA512) (Iterations_#2", "19300_ sha1($salt1.$pass.$salt2)_#2", "19500_ Ruby on Rails Restful_#2", "19600_ Kerberos 5, etype 17, TGS_#2", "19700_ Kerberos 5, etype 18, TGS_#2", "19800_ Kerberos 5, etype 17, Pre_#2", "19900_ Kerberos 5, etype 18, Pre_#2", "20011_ DiskCryptor SHA512 + XTS 512 bit (Iterations_#2", "20012_ DiskCryptor SHA512 + XTS 1024 bit (Iterations_#1", "20013_ DiskCryptor SHA512 + XTS 1536 bit (Iterations_#1", "20200_ Python passlib pbkdf2_#1", "20300_ Python passlib pbkdf2_#1", "20400_ Python passlib pbkdf2_#1", "20500_ PKZIP Master Key_#3", "20510_ PKZIP Master Key (6 byte optimization)_#3", "20600_ Oracle Transportation Management (SHA256) (Iterations_#2", "20710_ sha256(sha256($pass).$salt)_#2", "20711_ AuthMe sha256_#2", "20800_ sha256(md5($pass))_#2", "20900_ md5(sha1($pass).md5($pass).sha1($pass))_#2", "21000_ BitShares v0.x _#2", "21100_ sha1(md5($pass.$salt))_#3", "21200_ md5(sha1($salt).md5($pass))_#3", "21300_ md5($salt.sha1($salt.$pass))_#2", "21400_ sha256(sha256_bin($pass))_#2", "21500_ SolarWinds Orion (Iterations_#1", "21600_ Web2py pbkdf2_#2", "21700_ Electrum Wallet (Salt_#2", "21800_ Electrum Wallet (Salt_#2", "22000_ WPA_#2", "22001_ WPA_#2", "22100_ BitLocker (Iterations_#1", "22200_ Citrix NetScaler (SHA512)_#2", "22300_ sha256($salt.$pass.$salt)_#2", "22301_ Telegram Mobile App Passcode (SHA256)_#2", "22400_ AES Crypt (SHA256) (Iterations_#1", "22500_ MultiBit Classic .key (MD5)_#2", "22600_ Telegram Desktop App Passcode (PBKDF2_#1", "22700_ MultiBit HD (scrypt) (Iterations_#1", "22911_ RSA/DSA/EC/OpenSSH Private Keys ($0$)_#2", "22921_ RSA/DSA/EC/OpenSSH Private Keys ($6$)_#2", "22931_ RSA/DSA/EC/OpenSSH Private Keys ($1, $3$)_#2", "22941_ RSA/DSA/EC/OpenSSH Private Keys ($4$)_#2", "22951_ RSA/DSA/EC/OpenSSH Private Keys ($5$)_#2", "23001_ SecureZIP AES_#2", "23002_ SecureZIP AES_#2", "23003_ SecureZIP AES_#2", "23100_ Apple Keychain (Iterations_#2", "23200_ XMPP SCRAM PBKDF2_#2", "23300_ Apple iWork (Iterations_#2", "23400_ Bitwarden (Iterations_#1", "23500_ AxCrypt 2 AES_#1", "23600_ AxCrypt 2 AES_#1", "23700_ RAR3_#1", "23800_ RAR3_#1"})
Me.HashtypCBox.Location = New System.Drawing.Point(135, 53)
Me.HashtypCBox.MaxDropDownItems = 20
Me.HashtypCBox.Name = "HashtypCBox"
Me.HashtypCBox.Size = New System.Drawing.Size(271, 23)
Me.HashtypCBox.TabIndex = 2
Me.HashtypCBox.ValueMember = "Tats"
'
'OpenFileDialog1
'
Me.OpenFileDialog1.FileName = "OpenFileDialog1"
'
'Hashtyp0
'
Me.Hashtyp0.Location = New System.Drawing.Point(111, 25)
Me.Hashtyp0.Name = "Hashtyp0"
Me.Hashtyp0.Size = New System.Drawing.Size(42, 20)
Me.Hashtyp0.TabIndex = 4
'
'GroupBox15
'
Me.GroupBox15.BackColor = System.Drawing.Color.Transparent
Me.GroupBox15.Controls.Add(Me.BrainOn)
Me.GroupBox15.Controls.Add(Me.MailCheckOn)
Me.GroupBox15.Controls.Add(Me.Label39)
Me.GroupBox15.Controls.Add(Me.SessionOpenBtn)
Me.GroupBox15.Controls.Add(Me.Label63)
Me.GroupBox15.Controls.Add(Me.PictureBox12)
Me.GroupBox15.Controls.Add(Me.PictureBox11)
Me.GroupBox15.Controls.Add(Me.PictureBox6)
Me.GroupBox15.Controls.Add(Me.Label7)
Me.GroupBox15.Controls.Add(Me.Label6)
Me.GroupBox15.Controls.Add(Me.HashTxb)
Me.GroupBox15.Controls.Add(Me.Button7)
Me.GroupBox15.Controls.Add(Me.SessionTxb)
Me.GroupBox15.Controls.Add(Me.Label2)
Me.GroupBox15.Controls.Add(Me.HashtypCBox)
Me.GroupBox15.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.GroupBox15.Location = New System.Drawing.Point(12, 62)
Me.GroupBox15.Name = "GroupBox15"
Me.GroupBox15.Size = New System.Drawing.Size(542, 171)
Me.GroupBox15.TabIndex = 0
Me.GroupBox15.TabStop = False
Me.GroupBox15.Text = "Hash Settings"
'
'BrainOn
'
Me.BrainOn.AutoSize = True
Me.BrainOn.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.BrainOn.Location = New System.Drawing.Point(135, 138)
Me.BrainOn.Name = "BrainOn"
Me.BrainOn.Size = New System.Drawing.Size(44, 20)
Me.BrainOn.TabIndex = 32
Me.BrainOn.Text = "On"
Me.BrainOn.UseVisualStyleBackColor = True
'
'MailCheckOn
'
Me.MailCheckOn.AutoSize = True
Me.MailCheckOn.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.MailCheckOn.Location = New System.Drawing.Point(135, 112)
Me.MailCheckOn.Name = "MailCheckOn"
Me.MailCheckOn.Size = New System.Drawing.Size(44, 20)
Me.MailCheckOn.TabIndex = 31
Me.MailCheckOn.Text = "On"
Me.MailCheckOn.UseVisualStyleBackColor = True
'
'Label39
'
Me.Label39.AutoSize = True
Me.Label39.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label39.ForeColor = System.Drawing.SystemColors.InfoText
Me.Label39.Location = New System.Drawing.Point(22, 139)
Me.Label39.Name = "Label39"
Me.Label39.Size = New System.Drawing.Size(86, 16)
Me.Label39.TabIndex = 26
Me.Label39.Text = "Brain-Server:"
'
'SessionOpenBtn
'
Me.SessionOpenBtn.BackColor = System.Drawing.Color.WhiteSmoke
Me.SessionOpenBtn.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.SessionOpenBtn.ForeColor = System.Drawing.SystemColors.InfoText
Me.SessionOpenBtn.Location = New System.Drawing.Point(426, 81)
Me.SessionOpenBtn.Name = "SessionOpenBtn"
Me.SessionOpenBtn.Size = New System.Drawing.Size(110, 24)
Me.SessionOpenBtn.TabIndex = 25
Me.SessionOpenBtn.Text = "Open Session"
Me.SessionOpenBtn.UseVisualStyleBackColor = False
'
'Label63
'
Me.Label63.AutoSize = True
Me.Label63.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label63.ForeColor = System.Drawing.SystemColors.InfoText
Me.Label63.Location = New System.Drawing.Point(22, 113)
Me.Label63.Name = "Label63"
Me.Label63.Size = New System.Drawing.Size(75, 16)
Me.Label63.TabIndex = 22
Me.Label63.Text = "Crack-Mail:"
'
'PictureBox12
'
Me.PictureBox12.Image = CType(resources.GetObject("PictureBox12.Image"), System.Drawing.Image)
Me.PictureBox12.Location = New System.Drawing.Point(110, 24)
Me.PictureBox12.Name = "PictureBox12"
Me.PictureBox12.Size = New System.Drawing.Size(24, 27)
Me.PictureBox12.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom
Me.PictureBox12.TabIndex = 21
Me.PictureBox12.TabStop = False
'
'PictureBox11
'
Me.PictureBox11.Image = CType(resources.GetObject("PictureBox11.Image"), System.Drawing.Image)
Me.PictureBox11.Location = New System.Drawing.Point(110, 24)
Me.PictureBox11.Name = "PictureBox11"
Me.PictureBox11.Size = New System.Drawing.Size(24, 27)
Me.PictureBox11.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom
Me.PictureBox11.TabIndex = 20
Me.PictureBox11.TabStop = False
'
'PictureBox6
'
Me.PictureBox6.Cursor = System.Windows.Forms.Cursors.Hand
Me.PictureBox6.Image = CType(resources.GetObject("PictureBox6.Image"), System.Drawing.Image)
Me.PictureBox6.Location = New System.Drawing.Point(110, 54)
Me.PictureBox6.Name = "PictureBox6"
Me.PictureBox6.Size = New System.Drawing.Size(24, 22)
Me.PictureBox6.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom
Me.PictureBox6.TabIndex = 19
Me.PictureBox6.TabStop = False
'
'PIMvarTxb1
'
Me.PIMvarTxb1.Location = New System.Drawing.Point(57, 64)
Me.PIMvarTxb1.Name = "PIMvarTxb1"
Me.PIMvarTxb1.Size = New System.Drawing.Size(45, 20)
Me.PIMvarTxb1.TabIndex = 32
'
'PIMvarTxb2
'
Me.PIMvarTxb2.Location = New System.Drawing.Point(108, 64)
Me.PIMvarTxb2.Name = "PIMvarTxb2"
Me.PIMvarTxb2.Size = New System.Drawing.Size(45, 20)
Me.PIMvarTxb2.TabIndex = 33
'
'PIMstartTxb
'
Me.PIMstartTxb.Location = New System.Drawing.Point(57, 93)
Me.PIMstartTxb.Name = "PIMstartTxb"
Me.PIMstartTxb.Size = New System.Drawing.Size(45, 20)
Me.PIMstartTxb.TabIndex = 35
'
'PIMstopTxb
'
Me.PIMstopTxb.Location = New System.Drawing.Point(108, 93)
Me.PIMstopTxb.Name = "PIMstopTxb"
Me.PIMstopTxb.Size = New System.Drawing.Size(45, 20)
Me.PIMstopTxb.TabIndex = 34
'
'Label30
'
Me.Label30.AutoSize = True
Me.Label30.Location = New System.Drawing.Point(6, 70)
Me.Label30.Name = "Label30"
Me.Label30.Size = New System.Drawing.Size(26, 13)
Me.Label30.TabIndex = 36
Me.Label30.Text = "PIM"
'
'Label31
'
Me.Label31.AutoSize = True
Me.Label31.Location = New System.Drawing.Point(6, 25)
Me.Label31.Name = "Label31"
Me.Label31.Size = New System.Drawing.Size(46, 13)
Me.Label31.TabIndex = 37
Me.Label31.Text = "Hashtyp"
'
'GroupBox16
'
Me.GroupBox16.Controls.Add(Me.PIMvarTxb2)
Me.GroupBox16.Controls.Add(Me.PIMstopTxb)
Me.GroupBox16.Controls.Add(Me.Hashtyp0)
Me.GroupBox16.Controls.Add(Me.PIMstartTxb)
Me.GroupBox16.Controls.Add(Me.PIMvarTxb1)
Me.GroupBox16.Controls.Add(Me.Hashtyp1)
Me.GroupBox16.Controls.Add(Me.Label31)
Me.GroupBox16.Controls.Add(Me.Label30)
Me.GroupBox16.Location = New System.Drawing.Point(648, 287)
Me.GroupBox16.Name = "GroupBox16"
Me.GroupBox16.Size = New System.Drawing.Size(209, 137)
Me.GroupBox16.TabIndex = 42
Me.GroupBox16.TabStop = False
Me.GroupBox16.Text = "Wordlist A0"
'
'TabPage6
'
Me.TabPage6.BackColor = System.Drawing.SystemColors.Window
Me.TabPage6.Controls.Add(Me.PictureBox4)
Me.TabPage6.Controls.Add(Me.PictureBox3)
Me.TabPage6.Controls.Add(Me.PictureBox2)
Me.TabPage6.Controls.Add(Me.WLMCheck)
Me.TabPage6.Controls.Add(Me.Label36)
Me.TabPage6.Controls.Add(Me.Label37)
Me.TabPage6.Controls.Add(Me.Label38)
Me.TabPage6.Controls.Add(Me.AutoRuleG)
Me.TabPage6.Controls.Add(Me.Button33)
Me.TabPage6.Controls.Add(Me.WorlAutoTxb)
Me.TabPage6.Controls.Add(Me.Label50)
Me.TabPage6.Controls.Add(Me.Button32)
Me.TabPage6.Controls.Add(Me.Label48)
Me.TabPage6.Controls.Add(Me.LanguageCbox)
Me.TabPage6.Controls.Add(Me.CommandAutoTxb)
Me.TabPage6.Controls.Add(Me.Label47)
Me.TabPage6.Controls.Add(Me.HashSpeedCbox)
Me.TabPage6.Location = New System.Drawing.Point(4, 25)
Me.TabPage6.Name = "TabPage6"
Me.TabPage6.Padding = New System.Windows.Forms.Padding(3)
Me.TabPage6.Size = New System.Drawing.Size(578, 415)
Me.TabPage6.TabIndex = 5
Me.TabPage6.Text = "Automatic"
'
'PictureBox4
'
Me.PictureBox4.Cursor = System.Windows.Forms.Cursors.Hand
Me.PictureBox4.Image = CType(resources.GetObject("PictureBox4.Image"), System.Drawing.Image)
Me.PictureBox4.Location = New System.Drawing.Point(150, 87)
Me.PictureBox4.Name = "PictureBox4"
Me.PictureBox4.Size = New System.Drawing.Size(24, 19)
Me.PictureBox4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom
Me.PictureBox4.TabIndex = 28
Me.PictureBox4.TabStop = False
'
'PictureBox3
'
Me.PictureBox3.Cursor = System.Windows.Forms.Cursors.Hand
Me.PictureBox3.Image = CType(resources.GetObject("PictureBox3.Image"), System.Drawing.Image)
Me.PictureBox3.Location = New System.Drawing.Point(150, 56)
Me.PictureBox3.Name = "PictureBox3"
Me.PictureBox3.Size = New System.Drawing.Size(24, 19)
Me.PictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom
Me.PictureBox3.TabIndex = 25
Me.PictureBox3.TabStop = False
'
'PictureBox2
'
Me.PictureBox2.Cursor = System.Windows.Forms.Cursors.Hand
Me.PictureBox2.Image = CType(resources.GetObject("PictureBox2.Image"), System.Drawing.Image)
Me.PictureBox2.Location = New System.Drawing.Point(150, 26)
Me.PictureBox2.Name = "PictureBox2"
Me.PictureBox2.Size = New System.Drawing.Size(24, 19)
Me.PictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom
Me.PictureBox2.TabIndex = 24
Me.PictureBox2.TabStop = False
'
'WLMCheck
'
Me.WLMCheck.AutoSize = True
Me.WLMCheck.Checked = True
Me.WLMCheck.CheckState = System.Windows.Forms.CheckState.Checked
Me.WLMCheck.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.WLMCheck.Location = New System.Drawing.Point(191, 90)
Me.WLMCheck.Name = "WLMCheck"
Me.WLMCheck.Size = New System.Drawing.Size(15, 14)
Me.WLMCheck.TabIndex = 27
Me.WLMCheck.UseVisualStyleBackColor = True
'
'Label36
'
Me.Label36.AutoSize = True
Me.Label36.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label36.ForeColor = System.Drawing.SystemColors.InfoText
Me.Label36.Location = New System.Drawing.Point(272, 146)
Me.Label36.Name = "Label36"
Me.Label36.Size = New System.Drawing.Size(167, 16)
Me.Label36.TabIndex = 23
Me.Label36.Text = "(Generate X random rules )"
'
'Label37
'
Me.Label37.AutoSize = True
Me.Label37.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label37.ForeColor = System.Drawing.SystemColors.InfoText
Me.Label37.Location = New System.Drawing.Point(6, 146)
Me.Label37.Name = "Label37"
Me.Label37.Size = New System.Drawing.Size(105, 16)
Me.Label37.TabIndex = 22
Me.Label37.Text = "Generate Rules:"
'
'Label38
'
Me.Label38.AutoSize = True
Me.Label38.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label38.ForeColor = System.Drawing.SystemColors.InfoText
Me.Label38.Location = New System.Drawing.Point(6, 90)
Me.Label38.Name = "Label38"
Me.Label38.Size = New System.Drawing.Size(115, 16)
Me.Label38.TabIndex = 26
Me.Label38.Text = "Target Wordlister:"
'
'AutoRuleG
'
Me.AutoRuleG.BackColor = System.Drawing.Color.White
Me.AutoRuleG.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.AutoRuleG.Location = New System.Drawing.Point(191, 143)
Me.AutoRuleG.Name = "AutoRuleG"
Me.AutoRuleG.RightToLeft = System.Windows.Forms.RightToLeft.No
Me.AutoRuleG.Size = New System.Drawing.Size(75, 22)
Me.AutoRuleG.TabIndex = 14
Me.AutoRuleG.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
'
'Button33
'
Me.Button33.BackColor = System.Drawing.Color.WhiteSmoke
Me.Button33.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Button33.Location = New System.Drawing.Point(461, 115)
Me.Button33.Name = "Button33"
Me.Button33.Size = New System.Drawing.Size(100, 23)
Me.Button33.TabIndex = 1
Me.Button33.Text = "Select file"
Me.Button33.UseVisualStyleBackColor = False
'
'WorlAutoTxb
'
Me.WorlAutoTxb.BackColor = System.Drawing.Color.White
Me.WorlAutoTxb.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.WorlAutoTxb.Location = New System.Drawing.Point(191, 115)
Me.WorlAutoTxb.Name = "WorlAutoTxb"
Me.WorlAutoTxb.RightToLeft = System.Windows.Forms.RightToLeft.Yes
Me.WorlAutoTxb.Size = New System.Drawing.Size(248, 22)
Me.WorlAutoTxb.TabIndex = 12
Me.WorlAutoTxb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
'
'Label50
'
Me.Label50.AutoSize = True
Me.Label50.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label50.Location = New System.Drawing.Point(6, 118)
Me.Label50.Name = "Label50"
Me.Label50.Size = New System.Drawing.Size(60, 16)
Me.Label50.TabIndex = 7
Me.Label50.Text = "Wordlist:"
'
'Button32
'
Me.Button32.BackColor = System.Drawing.Color.WhiteSmoke
Me.Button32.Font = New System.Drawing.Font("Microsoft Sans Serif", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Button32.ForeColor = System.Drawing.SystemColors.Desktop
Me.Button32.Location = New System.Drawing.Point(461, 364)
Me.Button32.Name = "Button32"
Me.Button32.Size = New System.Drawing.Size(100, 33)
Me.Button32.TabIndex = 6
Me.Button32.Text = "START"
Me.Button32.UseVisualStyleBackColor = False
'
'Label48
'
Me.Label48.AutoSize = True
Me.Label48.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label48.Location = New System.Drawing.Point(6, 59)
Me.Label48.Name = "Label48"
Me.Label48.Size = New System.Drawing.Size(115, 16)
Me.Label48.TabIndex = 5
Me.Label48.Text = "Target Language:"
'
'LanguageCbox
'
Me.LanguageCbox.BackColor = System.Drawing.Color.White
Me.LanguageCbox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
Me.LanguageCbox.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.LanguageCbox.FormattingEnabled = True
Me.LanguageCbox.Items.AddRange(New Object() {"Bulgarien", "English", "French", "German", "Greek", "Italian", "Lithuanian", "Polish", "Portuguese", "Russian", "Slovak", "Spanish", "Other"})
Me.LanguageCbox.Location = New System.Drawing.Point(191, 54)
Me.LanguageCbox.MaxDropDownItems = 20
Me.LanguageCbox.Name = "LanguageCbox"
Me.LanguageCbox.Size = New System.Drawing.Size(248, 23)
Me.LanguageCbox.TabIndex = 11
'
'CommandAutoTxb
'
Me.CommandAutoTxb.BackColor = System.Drawing.SystemColors.InfoText
Me.CommandAutoTxb.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.CommandAutoTxb.ForeColor = System.Drawing.SystemColors.Info
Me.CommandAutoTxb.Location = New System.Drawing.Point(9, 182)
Me.CommandAutoTxb.Multiline = True
Me.CommandAutoTxb.Name = "CommandAutoTxb"
Me.CommandAutoTxb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
Me.CommandAutoTxb.Size = New System.Drawing.Size(430, 215)
Me.CommandAutoTxb.TabIndex = 3
'
'Label47
'
Me.Label47.AutoSize = True
Me.Label47.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label47.Location = New System.Drawing.Point(6, 28)
Me.Label47.Name = "Label47"
Me.Label47.Size = New System.Drawing.Size(115, 16)
Me.Label47.TabIndex = 1
Me.Label47.Text = "Hash-Typ Speed:"
'
'HashSpeedCbox
'
Me.HashSpeedCbox.BackColor = System.Drawing.Color.White
Me.HashSpeedCbox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
Me.HashSpeedCbox.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.HashSpeedCbox.FormattingEnabled = True
Me.HashSpeedCbox.Items.AddRange(New Object() {"1", "2", "3"})
Me.HashSpeedCbox.Location = New System.Drawing.Point(191, 25)
Me.HashSpeedCbox.Name = "HashSpeedCbox"
Me.HashSpeedCbox.Size = New System.Drawing.Size(248, 23)
Me.HashSpeedCbox.TabIndex = 10
'
'TabPage4
'
Me.TabPage4.BackColor = System.Drawing.SystemColors.Window
Me.TabPage4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.TabPage4.Controls.Add(Me.GroupBox14)
Me.TabPage4.Controls.Add(Me.GroupBox11)
Me.TabPage4.Controls.Add(Me.GroupBox10)
Me.TabPage4.Location = New System.Drawing.Point(4, 25)
Me.TabPage4.Name = "TabPage4"
Me.TabPage4.Size = New System.Drawing.Size(578, 415)
Me.TabPage4.TabIndex = 3
Me.TabPage4.Text = "Hybrid"
'
'GroupBox14
'
Me.GroupBox14.Controls.Add(Me.Button25)
Me.GroupBox14.Controls.Add(Me.Button26)
Me.GroupBox14.Controls.Add(Me.CommandA6Txb)
Me.GroupBox14.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.GroupBox14.ForeColor = System.Drawing.SystemColors.MenuHighlight
Me.GroupBox14.Location = New System.Drawing.Point(11, 287)
Me.GroupBox14.Name = "GroupBox14"
Me.GroupBox14.Size = New System.Drawing.Size(562, 118)
Me.GroupBox14.TabIndex = 12
Me.GroupBox14.TabStop = False
Me.GroupBox14.Text = "Generate Command"
'
'Button25
'
Me.Button25.BackColor = System.Drawing.Color.WhiteSmoke
Me.Button25.Font = New System.Drawing.Font("Microsoft Sans Serif", 11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Button25.ForeColor = System.Drawing.SystemColors.Desktop
Me.Button25.Location = New System.Drawing.Point(411, 77)
Me.Button25.Name = "Button25"
Me.Button25.Size = New System.Drawing.Size(100, 35)
Me.Button25.TabIndex = 8
Me.Button25.Text = "Batchjob"
Me.Button25.UseVisualStyleBackColor = False
'
'Button26
'
Me.Button26.BackColor = System.Drawing.Color.WhiteSmoke
Me.Button26.Font = New System.Drawing.Font("Microsoft Sans Serif", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Button26.ForeColor = System.Drawing.SystemColors.Desktop
Me.Button26.Location = New System.Drawing.Point(411, 25)
Me.Button26.Name = "Button26"
Me.Button26.Size = New System.Drawing.Size(100, 35)
Me.Button26.TabIndex = 2
Me.Button26.Text = "START"
Me.Button26.UseVisualStyleBackColor = False
'
'CommandA6Txb
'
Me.CommandA6Txb.BackColor = System.Drawing.SystemColors.InfoText
Me.CommandA6Txb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.CommandA6Txb.ForeColor = System.Drawing.SystemColors.ButtonFace
Me.CommandA6Txb.Location = New System.Drawing.Point(6, 25)
Me.CommandA6Txb.Multiline = True
Me.CommandA6Txb.Name = "CommandA6Txb"
Me.CommandA6Txb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
Me.CommandA6Txb.Size = New System.Drawing.Size(393, 87)
Me.CommandA6Txb.TabIndex = 0
'
'GroupBox11
'
Me.GroupBox11.Controls.Add(Me.CharsHyTxb4)
Me.GroupBox11.Controls.Add(Me.CharsHyTxb3)
Me.GroupBox11.Controls.Add(Me.CharsHyTxb2)
Me.GroupBox11.Controls.Add(Me.CharsHyTxb1)
Me.GroupBox11.Controls.Add(Me.Button17)
Me.GroupBox11.Controls.Add(Me.Button18)
Me.GroupBox11.Controls.Add(Me.Button19)
Me.GroupBox11.Controls.Add(Me.Button20)
Me.GroupBox11.Controls.Add(Me.Button21)
Me.GroupBox11.Controls.Add(Me.MaskHybCbox)
Me.GroupBox11.Controls.Add(Me.Label24)
Me.GroupBox11.Controls.Add(Me.Label25)
Me.GroupBox11.Controls.Add(Me.Label26)
Me.GroupBox11.Controls.Add(Me.Label27)
Me.GroupBox11.Controls.Add(Me.Label28)
Me.GroupBox11.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.GroupBox11.ForeColor = System.Drawing.SystemColors.MenuHighlight
Me.GroupBox11.Location = New System.Drawing.Point(11, 103)
Me.GroupBox11.Name = "GroupBox11"
Me.GroupBox11.Size = New System.Drawing.Size(559, 178)
Me.GroupBox11.TabIndex = 11
Me.GroupBox11.TabStop = False
Me.GroupBox11.Text = "Mask Charset Settings"
'
'CharsHyTxb4
'
Me.CharsHyTxb4.BackColor = System.Drawing.Color.White
Me.CharsHyTxb4.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.CharsHyTxb4.Location = New System.Drawing.Point(120, 147)
Me.CharsHyTxb4.Name = "CharsHyTxb4"
Me.CharsHyTxb4.RightToLeft = System.Windows.Forms.RightToLeft.No
Me.CharsHyTxb4.Size = New System.Drawing.Size(269, 21)
Me.CharsHyTxb4.TabIndex = 23
'
'CharsHyTxb3
'
Me.CharsHyTxb3.BackColor = System.Drawing.Color.White
Me.CharsHyTxb3.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.CharsHyTxb3.Location = New System.Drawing.Point(120, 117)
Me.CharsHyTxb3.Name = "CharsHyTxb3"
Me.CharsHyTxb3.RightToLeft = System.Windows.Forms.RightToLeft.No
Me.CharsHyTxb3.Size = New System.Drawing.Size(269, 21)
Me.CharsHyTxb3.TabIndex = 22
'
'CharsHyTxb2
'
Me.CharsHyTxb2.BackColor = System.Drawing.Color.White
Me.CharsHyTxb2.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.CharsHyTxb2.Location = New System.Drawing.Point(120, 87)
Me.CharsHyTxb2.Name = "CharsHyTxb2"
Me.CharsHyTxb2.RightToLeft = System.Windows.Forms.RightToLeft.No
Me.CharsHyTxb2.Size = New System.Drawing.Size(269, 21)
Me.CharsHyTxb2.TabIndex = 21
'
'CharsHyTxb1
'
Me.CharsHyTxb1.BackColor = System.Drawing.Color.White
Me.CharsHyTxb1.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.CharsHyTxb1.Location = New System.Drawing.Point(120, 57)
Me.CharsHyTxb1.Name = "CharsHyTxb1"
Me.CharsHyTxb1.RightToLeft = System.Windows.Forms.RightToLeft.No
Me.CharsHyTxb1.Size = New System.Drawing.Size(269, 21)
Me.CharsHyTxb1.TabIndex = 20
'
'Button17
'
Me.Button17.BackColor = System.Drawing.Color.WhiteSmoke
Me.Button17.ForeColor = System.Drawing.SystemColors.InfoText
Me.Button17.Location = New System.Drawing.Point(411, 145)
Me.Button17.Name = "Button17"
Me.Button17.Size = New System.Drawing.Size(100, 24)
Me.Button17.TabIndex = 5
Me.Button17.Text = "Select file"
Me.Button17.UseVisualStyleBackColor = False
'
'Button18
'
Me.Button18.BackColor = System.Drawing.Color.WhiteSmoke
Me.Button18.ForeColor = System.Drawing.SystemColors.InfoText
Me.Button18.Location = New System.Drawing.Point(411, 116)
Me.Button18.Name = "Button18"
Me.Button18.Size = New System.Drawing.Size(100, 24)
Me.Button18.TabIndex = 4
Me.Button18.Text = "Select file"
Me.Button18.UseVisualStyleBackColor = False
'
'Button19
'
Me.Button19.BackColor = System.Drawing.Color.WhiteSmoke
Me.Button19.ForeColor = System.Drawing.SystemColors.InfoText
Me.Button19.Location = New System.Drawing.Point(411, 87)
Me.Button19.Name = "Button19"
Me.Button19.Size = New System.Drawing.Size(100, 24)
Me.Button19.TabIndex = 3
Me.Button19.Text = "Select file"
Me.Button19.UseVisualStyleBackColor = False
'
'Button20
'
Me.Button20.BackColor = System.Drawing.Color.WhiteSmoke
Me.Button20.ForeColor = System.Drawing.SystemColors.InfoText
Me.Button20.Location = New System.Drawing.Point(411, 56)
Me.Button20.Name = "Button20"
Me.Button20.Size = New System.Drawing.Size(100, 24)
Me.Button20.TabIndex = 2
Me.Button20.Text = "Select file"
Me.Button20.UseVisualStyleBackColor = False
'
'Button21
'
Me.Button21.BackColor = System.Drawing.Color.WhiteSmoke
Me.Button21.ForeColor = System.Drawing.SystemColors.InfoText
Me.Button21.Location = New System.Drawing.Point(411, 24)
Me.Button21.Name = "Button21"
Me.Button21.Size = New System.Drawing.Size(100, 24)
Me.Button21.TabIndex = 1
Me.Button21.Text = "Select file"
Me.Button21.UseVisualStyleBackColor = False
'
'MaskHybCbox
'
Me.MaskHybCbox.BackColor = System.Drawing.Color.White
Me.MaskHybCbox.Cursor = System.Windows.Forms.Cursors.Default
Me.MaskHybCbox.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.MaskHybCbox.FormattingEnabled = True
Me.MaskHybCbox.Items.AddRange(New Object() {"?a?a?a?a?a?a?a?a?a?a", "?d?d?d?d?d?d?d?d?d", "?l?l?l?l?l?l?l?l?l?l", "?u?u?u?u?u?u?u?u?u?u", "?s?s?s?s?s?s?s?s?s?s"})
Me.MaskHybCbox.Location = New System.Drawing.Point(120, 25)
Me.MaskHybCbox.Name = "MaskHybCbox"
Me.MaskHybCbox.RightToLeft = System.Windows.Forms.RightToLeft.No
Me.MaskHybCbox.Size = New System.Drawing.Size(269, 23)
Me.MaskHybCbox.TabIndex = 10
'
'Label24
'
Me.Label24.AutoSize = True
Me.Label24.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label24.ForeColor = System.Drawing.SystemColors.InfoText
Me.Label24.Location = New System.Drawing.Point(13, 33)
Me.Label24.Name = "Label24"
Me.Label24.Size = New System.Drawing.Size(44, 16)
Me.Label24.TabIndex = 5
Me.Label24.Text = "Mask:"
'
'Label25
'
Me.Label25.AutoSize = True
Me.Label25.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label25.ForeColor = System.Drawing.SystemColors.InfoText
Me.Label25.Location = New System.Drawing.Point(13, 63)
Me.Label25.Name = "Label25"
Me.Label25.Size = New System.Drawing.Size(67, 16)
Me.Label25.TabIndex = 6
Me.Label25.Text = "Charset 1:"
'
'Label26
'
Me.Label26.AutoSize = True
Me.Label26.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label26.ForeColor = System.Drawing.SystemColors.InfoText
Me.Label26.Location = New System.Drawing.Point(13, 93)
Me.Label26.Name = "Label26"
Me.Label26.Size = New System.Drawing.Size(67, 16)
Me.Label26.TabIndex = 7
Me.Label26.Text = "Charset 2:"
'
'Label27
'
Me.Label27.AutoSize = True
Me.Label27.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label27.ForeColor = System.Drawing.SystemColors.InfoText
Me.Label27.Location = New System.Drawing.Point(13, 122)
Me.Label27.Name = "Label27"
Me.Label27.Size = New System.Drawing.Size(67, 16)
Me.Label27.TabIndex = 8
Me.Label27.Text = "Charset 3:"
'
'Label28
'
Me.Label28.AutoSize = True
Me.Label28.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label28.ForeColor = System.Drawing.SystemColors.InfoText
Me.Label28.Location = New System.Drawing.Point(13, 153)
Me.Label28.Name = "Label28"
Me.Label28.Size = New System.Drawing.Size(67, 16)
Me.Label28.TabIndex = 9
Me.Label28.Text = "Charset 4:"
'
'GroupBox10
'
Me.GroupBox10.Controls.Add(Me.Label23)
Me.GroupBox10.Controls.Add(Me.CheckBox6)