-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathLockd.dfm
1207 lines (1207 loc) · 38.9 KB
/
Lockd.dfm
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
object F3: TF3
Left = 0
Top = 0
BorderStyle = bsToolWindow
Caption =
'Locking Arbitrage_ 2 Leg Lock Hidden Forex Trading Software '#1575#1604#1575 +
#1587#1605' '#1575#1604#1603#1604#1610' '#1604#1604#1575#1587#1578#1585#1575#1578#1580#1610#1577' '#1575#1582#1601#1575#1569' '#1608#1602#1578' '#1587#1585#1610#1575#1606' '#1575#1604#1589#1601#1602#1577' '#1604#1571#1603#1579#1585' '#1605#1606' 5 '#1583#1602#1575#1574#1602' + ' +
#1593#1583#1583' '#1575#1604#1606#1602#1575#1591' '#1575#1604#1585#1575#1576#1581#1577' '#1575#1608' '#1575#1604#1582#1575#1587#1585#1577' '#1575#1603#1576#1585' '#1575#1610#1590#1575
ClientHeight = 517
ClientWidth = 983
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
PixelsPerInch = 96
TextHeight = 13
object LabelState: TLabel
Left = 143
Top = 397
Width = 10
Height = 13
Caption = '-1'
end
object PageControl1: TPageControl
Left = 0
Top = 0
Width = 164
Height = 517
ActivePage = TabSheet1
Align = alLeft
TabOrder = 0
object TabSheet1: TTabSheet
Caption = 'Home'
object Label2: TLabel
Left = 3
Top = 33
Width = 89
Height = 13
Caption = 'Tick Max Of Chart '
end
object Label24: TLabel
Left = 44
Top = 57
Width = 48
Height = 13
Caption = 'Fast Feed'
end
object Label25: TLabel
Left = 3
Top = 113
Width = 132
Height = 13
Caption = 'Slow Feed 1 For Sell Orders'
end
object Label26: TLabel
Left = 3
Top = 185
Width = 137
Height = 13
Caption = 'Slow Feed 2 For Buy Orders '
end
object Label41: TLabel
Left = 62
Top = 132
Width = 92
Height = 13
Caption = #1610#1578#1605' '#1575#1585#1587#1575#1604' '#1589#1601#1602#1577' '#1576#1610#1593
end
object Label42: TLabel
Left = 51
Top = 204
Width = 102
Height = 13
Caption = #1610#1578#1605' '#1575#1585#1587#1575#1604' '#1589#1601#1602#1577' '#1588#1585#1575#1569
end
object Button1: TButton
Left = 102
Top = 3
Width = 51
Height = 18
Caption = 'Resfrech'
TabOrder = 0
end
object Edit1: TEdit
Left = 98
Top = 30
Width = 40
Height = 21
NumbersOnly = True
TabOrder = 1
Text = '100'
end
object FastList: TComboBox
Left = 3
Top = 76
Width = 131
Height = 21
Hint = 'Fast Symbol'
AutoCloseUp = True
ParentShowHint = False
ShowHint = True
TabOrder = 2
Text = 'Fast Symbol'
StyleElements = [seFont, seBorder]
OnEnter = FastListEnter
Items.Strings = (
#1593#1576#1583' '#1602#1575#1583#1585' '
#1605#1581#1605#1583' '
#1575#1604#1593#1580#1575#1604
#1608#1607#1585#1575#1606#1610' '
#1605#1587#1578#1594#1575#1606#1605#1610' '
#1587#1591#1575#1610#1601#1610)
end
object SlowList1: TComboBox
Left = 3
Top = 146
Width = 130
Height = 21
Hint = 'Slow Symbol'
ParentShowHint = False
ShowHint = True
TabOrder = 3
Text = 'Slow Symbol'
Items.Strings = (
#1593#1576#1583' '#1602#1575#1583#1585' '
#1605#1581#1605#1583' '
#1575#1604#1593#1580#1575#1604)
end
object SlowList2: TComboBox
Left = 3
Top = 218
Width = 130
Height = 21
Hint = 'Slow Symbol'
ParentShowHint = False
ShowHint = True
TabOrder = 4
Text = 'Slow Symbol'
Items.Strings = (
#1593#1576#1583' '#1602#1575#1583#1585' '
#1605#1581#1605#1583' '
#1575#1604#1593#1580#1575#1604)
end
object GroupBox12: TGroupBox
Left = 1
Top = 399
Width = 153
Height = 78
Caption = 'Sender ID '
TabOrder = 5
object Label35: TLabel
Left = 84
Top = 24
Width = 19
Height = 13
Caption = 'S1 :'
end
object Label36: TLabel
Left = 83
Top = 48
Width = 22
Height = 13
Caption = 'S2 : '
end
object Label37: TLabel
Left = 3
Top = 24
Width = 79
Height = 13
Caption = 'Slow Broker Port'
end
object Label38: TLabel
Left = 3
Top = 48
Width = 79
Height = 13
Caption = 'Slow Broker Port'
end
object Portc1: TEdit
Left = 109
Top = 21
Width = 41
Height = 21
MaxLength = 5
NumbersOnly = True
TabOrder = 0
Text = '27401'
OnChange = Portc1Change
end
object Portc2: TEdit
Left = 109
Top = 48
Width = 41
Height = 21
MaxLength = 5
NumbersOnly = True
TabOrder = 1
Text = '27501'
OnChange = Portc2Change
end
end
end
object TabSheet2: TTabSheet
Caption = 'Config'
ImageIndex = 1
object Label7: TLabel
Left = 3
Top = 54
Width = 40
Height = 13
Caption = 'Profit($)'
end
object Label13: TLabel
Left = 137
Top = 59
Width = 16
Height = 13
Caption = '/10'
end
object Label6: TLabel
Left = 3
Top = 80
Width = 62
Height = 13
Caption = 'iSignals Max:'
end
object Label15: TLabel
Left = 3
Top = 106
Width = 59
Height = 13
Caption = 'Time To Run'
end
object Label16: TLabel
Left = 90
Top = 104
Width = 5
Height = 16
Caption = ':'
Color = clBackground
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
ParentColor = False
ParentFont = False
end
object Label17: TLabel
Left = 120
Top = 104
Width = 5
Height = 16
Caption = ':'
Color = clBackground
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
ParentColor = False
ParentFont = False
end
object Label5: TLabel
Left = 115
Top = 473
Width = 38
Height = 13
Caption = #1605#1604#1575#1581#1592#1577' '
end
object Label23: TLabel
Left = 16
Top = 472
Width = 90
Height = 13
Caption = '1m=60s=60000ms'
end
object GroupBox2: TGroupBox
Left = 3
Top = 3
Width = 74
Height = 42
Caption = ' Max/Min '
TabOrder = 0
object Edit7: TEdit
Left = 39
Top = 16
Width = 30
Height = 21
TabOrder = 0
Text = '-700'
end
object Edit2: TEdit
Left = 3
Top = 16
Width = 30
Height = 21
TabOrder = 1
Text = '700'
end
end
object Edit6: TEdit
Left = 91
Top = 54
Width = 42
Height = 21
Hint = '60/10 =6.0$'
MaxLength = 4
NumbersOnly = True
ParentShowHint = False
ShowHint = True
TabOrder = 1
Text = '30'
TextHint = '60/10 =6.0$'
end
object Edit5: TEdit
Left = 90
Top = 78
Width = 42
Height = 21
NumbersOnly = True
TabOrder = 2
Text = '10'
end
object Edit8: TEdit
Left = 68
Top = 104
Width = 20
Height = 21
Hint = 'H'
Ctl3D = True
MaxLength = 2
NumbersOnly = True
ParentCtl3D = False
ParentShowHint = False
ShowHint = True
TabOrder = 3
Text = '06'
end
object Edit9: TEdit
Left = 98
Top = 104
Width = 20
Height = 21
Hint = 'M'
Ctl3D = True
MaxLength = 2
NumbersOnly = True
ParentCtl3D = False
ParentShowHint = False
ShowHint = True
TabOrder = 4
Text = '00'
end
object Edit10: TEdit
Left = 127
Top = 104
Width = 20
Height = 21
Hint = 'S'
MaxLength = 2
NumbersOnly = True
ParentShowHint = False
ShowHint = True
TabOrder = 5
Text = '00'
end
object GroupBox4: TGroupBox
Left = 3
Top = 320
Width = 144
Height = 137
Caption = ' Trades Info '
TabOrder = 6
object Label18: TLabel
Left = 3
Top = 18
Width = 47
Height = 13
Caption = 'Lot Size : '
end
object Label19: TLabel
Left = 81
Top = 16
Width = 5
Height = 19
Caption = ','
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object Label20: TLabel
Left = 12
Top = 43
Width = 126
Height = 13
Caption = 'Comment Slow Broker 1 : '
end
object Label3: TLabel
Left = 12
Top = 91
Width = 126
Height = 13
Caption = 'Comment Slow Broker 2 : '
end
object Edit11: TEdit
Left = 61
Top = 16
Width = 20
Height = 21
Hint = 'H'
Ctl3D = True
MaxLength = 2
NumbersOnly = True
ParentCtl3D = False
ParentShowHint = False
ShowHint = True
TabOrder = 0
Text = '1'
end
object Edit12: TEdit
Left = 87
Top = 16
Width = 17
Height = 21
Hint = 'H'
Ctl3D = True
MaxLength = 1
NumbersOnly = True
ParentCtl3D = False
ParentShowHint = False
ShowHint = True
TabOrder = 1
Text = '0'
end
object Edit13: TEdit
Left = 17
Top = 62
Width = 109
Height = 21
TabOrder = 2
Text = 'Play1'
end
object Edit4: TEdit
Left = 17
Top = 110
Width = 109
Height = 21
TabOrder = 3
Text = 'Play2'
end
end
object GroupBox1: TGroupBox
Left = 4
Top = 189
Width = 150
Height = 44
Caption = 'Time Close =>New Lockd ms '
Enabled = False
TabOrder = 7
object Edit15: TEdit
Left = 13
Top = 17
Width = 55
Height = 21
Enabled = False
NumbersOnly = True
TabOrder = 0
Text = '180000'
end
object Edit16: TEdit
Left = 85
Top = 17
Width = 55
Height = 21
Enabled = False
NumbersOnly = True
TabOrder = 1
Text = '300000'
end
end
object GroupBox3: TGroupBox
Left = 3
Top = 247
Width = 150
Height = 44
Caption = 'Time Lockd=>New shot ms '
TabOrder = 8
object Label43: TLabel
Left = 86
Top = 20
Width = 50
Height = 13
Caption = 'millisecond'
end
object Edit17: TEdit
Left = 25
Top = 18
Width = 55
Height = 21
NumbersOnly = True
TabOrder = 0
Text = '300000'
end
end
object GroupBox9: TGroupBox
Left = 22
Top = 132
Width = 111
Height = 44
Caption = 'Shooting Time...! ms '
TabOrder = 9
object Edit14: TEdit
Left = 24
Top = 17
Width = 49
Height = 21
NumbersOnly = True
TabOrder = 0
Text = '2000'
end
end
object GroupBox10: TGroupBox
Left = 78
Top = 3
Width = 75
Height = 42
Caption = 'Spread Alow'
Enabled = False
TabOrder = 10
object Edit3: TEdit
Left = 21
Top = 16
Width = 30
Height = 21
Enabled = False
TabOrder = 0
Text = '200'
end
end
end
object TabSheet3: TTabSheet
Caption = 'View'
ImageIndex = 2
object Button2: TButton
Left = 18
Top = 10
Width = 79
Height = 20
Caption = 'Test Connection '
TabOrder = 0
OnClick = Button2Click
end
object Button3: TButton
Left = 102
Top = 10
Width = 51
Height = 20
Caption = 'Strat'
TabOrder = 1
OnClick = Button3Click
end
object GroupBox7: TGroupBox
Left = 1
Top = 36
Width = 153
Height = 93
TabOrder = 2
object Hunting: TRadioButton
Left = 4
Top = 8
Width = 57
Height = 17
Caption = 'Hunting'
Checked = True
TabOrder = 0
TabStop = True
end
object Catching: TRadioButton
Left = 69
Top = 8
Width = 82
Height = 17
Caption = 'Catching Up'
TabOrder = 1
end
object CheckBox2: TCheckBox
Left = 13
Top = 40
Width = 48
Height = 17
Caption = 'Sell 1'
TabOrder = 2
end
object CheckBox3: TCheckBox
Left = 13
Top = 63
Width = 48
Height = 17
Caption = 'Buy 1'
Enabled = False
TabOrder = 3
end
object CheckBox4: TCheckBox
Left = 85
Top = 40
Width = 52
Height = 17
Caption = 'Sell 2'
Enabled = False
TabOrder = 4
end
object CheckBox5: TCheckBox
Left = 85
Top = 63
Width = 54
Height = 17
Caption = 'Buy 2'
TabOrder = 5
end
end
object GroupBox5: TGroupBox
Left = 3
Top = 135
Width = 150
Height = 82
Caption = ' Ordes Shoting Stats '
TabOrder = 3
object Label11: TLabel
Left = 15
Top = 18
Width = 58
Height = 13
Caption = 'Profits ($) : '
end
object Label12: TLabel
Left = 110
Top = 18
Width = 24
Height = 13
Caption = '2200'
end
object Label4: TLabel
Left = 15
Top = 37
Width = 89
Height = 13
Caption = 'iSignals Received :'
end
object Label14: TLabel
Left = 110
Top = 37
Width = 6
Height = 13
Caption = '0'
end
object Label9: TLabel
Left = 15
Top = 56
Width = 32
Height = 13
Caption = 'Time : '
end
object Label10: TLabel
Left = 110
Top = 56
Width = 24
Height = 13
Caption = '2200'
end
end
object GroupBox6: TGroupBox
Left = 3
Top = 432
Width = 150
Height = 57
Caption = 'Running Time '
TabOrder = 4
object Label21: TLabel
Left = 15
Top = 24
Width = 6
Height = 13
Caption = '0'
end
object label90: TLabel
Left = 99
Top = 24
Width = 6
Height = 13
Caption = '0'
end
object Label22: TLabel
Left = 65
Top = 18
Width = 49
Height = 23
Caption = '/ '
Font.Charset = DEFAULT_CHARSET
Font.Color = clMenuHighlight
Font.Height = -19
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
end
object GroupBox11: TGroupBox
Left = 4
Top = 223
Width = 150
Height = 122
Caption = ' Orders Stats '
TabOrder = 5
object Label27: TLabel
Left = 15
Top = 42
Width = 67
Height = 13
Caption = 'Profits($) 2 : '
end
object Label28: TLabel
Left = 112
Top = 42
Width = 24
Height = 13
Caption = '2200'
end
object Label39: TLabel
Left = 15
Top = 23
Width = 67
Height = 13
Caption = 'Profits($) 1 : '
end
object Label40: TLabel
Left = 112
Top = 23
Width = 24
Height = 13
Caption = '2200'
end
object Label29: TLabel
Left = 15
Top = 77
Width = 100
Height = 13
Caption = 'Time For Each Action'
end
object Label30: TLabel
Left = 58
Top = 96
Width = 24
Height = 13
Caption = '2200'
end
end
object Button4: TButton
Left = 108
Top = 416
Width = 45
Height = 17
Caption = 'CloseAll'
TabOrder = 6
OnClick = Button4Click
end
end
end
object Chart1: TChart
Left = 164
Top = 0
Width = 819
Height = 517
BackWall.Pen.Visible = False
Border.Color = clGreen
Border.EndStyle = esFlat
BottomWall.Brush.Gradient.EndColor = clSilver
BottomWall.Brush.Gradient.StartColor = clGray
BottomWall.Brush.Gradient.Visible = True
BottomWall.Pen.Color = clGray
BottomWall.Size = 4
Gradient.Direction = gdFromTopLeft
Gradient.EndColor = clWhite
Gradient.StartColor = clSilver
Gradient.Visible = True
LeftWall.Brush.Gradient.EndColor = clSilver
LeftWall.Brush.Gradient.StartColor = clGray
LeftWall.Brush.Gradient.Visible = True
LeftWall.Color = clWhite
LeftWall.Pen.Color = clGray
LeftWall.Size = 4
ScrollMouseButton = mbLeft
Title.Text.Strings = (
' ')
BottomAxis.Grid.Color = 14540253
BottomAxis.Grid.SmallDots = True
BottomAxis.LabelsFormat.Font.Color = clGray
BottomAxis.LabelsFormat.Font.Height = -9
BottomAxis.LabelStyle = talValue
Frame.Visible = False
LeftAxis.Grid.Color = 14540253
LeftAxis.LabelsFormat.Font.Color = clGray
LeftAxis.LabelsFormat.Font.Height = -9
LeftAxis.LabelStyle = talValue
Panning.MouseWheel = pmwNone
View3D = False
Zoom.Animated = True
Zoom.MouseButton = mbRight
Zoom.UpLeftZooms = True
ZoomWheel = pmwNormal
Align = alClient
BevelWidth = 2
Color = clWhite
TabOrder = 1
OnMouseEnter = Chart1MouseEnter
DefaultCanvas = 'TGDIPlusCanvas'
PrintMargins = (
15
33
15
33)
ColorPaletteIndex = 2
object Label1: TLabel
Left = 216
Top = 4
Width = 81
Height = 13
Caption = 'Name Of Chart 1'
Font.Charset = DEFAULT_CHARSET
Font.Color = clMenuHighlight
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object Label8: TLabel
Left = 216
Top = 23
Width = 81
Height = 13
Caption = 'Neme Of Chart 2'
Font.Charset = DEFAULT_CHARSET
Font.Color = 8421631
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object Label33: TLabel
Left = 152
Top = 4
Width = 55
Height = 13
Caption = 'Fast Broker'
end
object Label34: TLabel
Left = 152
Top = 23
Width = 56
Height = 13
Caption = 'Slow Broker'
end
object LS: TLabel
Left = 6
Top = 498
Width = 10
Height = 13
Caption = '-1'
end
object CheckBox1: TCheckBox
Left = 1062
Top = 0
Width = 51
Height = 17
Caption = 'Of'
Checked = True
State = cbChecked
TabOrder = 0
end
object GroupBox8: TGroupBox
Left = 752
Top = 480
Width = 70
Height = 51
Caption = 'Dif Gap'
TabOrder = 1
object Chart3: TChart
Left = 2
Top = 15
Width = 66
Height = 34
SubTitle.Picture.Data = {
07544269746D6170360C0000424D360C00000000000036000000280000002000
0000200000000100180000000000000C00000000000000000000000000000000
0000EEC973EECE7CEDCE7DEBCD75EECE7DEFD388EED58CEED490F1D794F3D997
F4DA98F2D795EFD58FF1D691F2D692F1D491F1D592EFD894EDD692F1D896F2D7
99F3DA9CF3D99EF0D694EDD182EECE76EDCA71EDCC75EFCF7EEECF7DEECC76EE
CB71EDCE7DF1D68FEFD48DECCF7AF0CD79F1CF81ECD186F4DA98F4DFAAF7E5B8
F6E1ADF5DD9FF7DB9FF6DB9BF5DC9BF3DA9CF5DBA1F7DEA6F6DFABF4E1AAF8E2
ABF3DDA6F5DEACF5DFA9F3D894EDD285EED184ECD287F2D996F0D894F0D083ED
CE7AEECE7EF1D58FEED58DEDD184EFCF78F0CD74EDCE7EF0D693F7E3B0F7E6BC
F6E1B0F6DFA1F8DCA1F4D998F1D896F6DC9EF8DDA4F7DDA8F6E4B7F6E6BBF6E5
B3F4E0AAF5DFADF4DFA8F2D896EED388EFD58CF2D895F5DE9FF0D894EECE81EE
CD7EEFD082F1D48AF0D58BEDD082EBCD76ECCA71F1D388F3DA98F6DFA7F9E3AC
F9E0AAF6DE9FF2D795F2D794F4DA9CF8DDA6F5DCA1F6DC9FF8E5B3F7E7BCF6E5
B9F7E7B4F6E1AEF7DEA5F2D795F0D385F0D389F5DB99F5DDA2F3D997F0D083ED
CD7CEFD289EDCE81EECF81EECF7DEDCE74EECD71EBD182F1DA97F7DFA8F5E0A8
F7E0ACF1DCA1F4DB99EFD692F5DDA6F7E0B0F3DDA3F4DA99F4E0AAF7E7B8F8E8
B9F4E6B5F5E3B4F5DFA9F4DA9AF1D38AEFD081EED28AF1D898F1D794EED389EF
D288EED68DEFD080EDCE7CF0CE7CEDC96BEFC868F0CF7FF3DA97F6DDA7F3DEA5
F5E1ADF8E4B2F7DFAAF5DDA7F8DFAAF7DEA8F4DD9CF3DA98F6E2ABF7E7B6F5E4
B2F5E2AEF5DEA9F5DB9FF2D795F2D58BEFCF7AEED282F0D892F3DB97EDD790EF
D593EDD58AEFCF7EEFCD75F0CA74EBC55EEBC561EDCC78EFD28AF6DA9DF4DB9D
F6E0A8F9E6B8F5E5B8F6E6BBF7E6B4F5E0ABF6DEA6F8DFA6F6E0A8F7E2ABF6DE
A8F5DDA4F3DC9DF1D796EFD591EDD48AF1CD7AEDCD7AF1D792F4DA9DF0D895F1
D694F0D07EEEC768EDC15BEBC057E7BE52EAC159EFC668EDCD78F0D288F1D68F
F6DEA2F7E3B1F7E8BDF7E7BFF4E6B8F6E6B7F7E4B3F8E0ADF4DC9CF4DB98F5DE
A2F6E0A7F3DB9FF6DB9CF7DEA0F0D794EFD185EED384F2D792F7DDA3F5DC9DF1
D792EECA6DE9BE4DE5B63DE7BB47E8BC4FE8BE54ECC35EF1C969EECA71F1D080
F5D794F5DFA6F7E5B9F5E6B9F5E9BFF7E6BDF4E0ABF6DEA7F4DA9CEFD891F1D8
96F5DC9BF4DB9DF4DCA4F7DDA1F2DA97F1D897F0D794EFD792F3DDA3F3DDA0EF
D591F0C662E8BA47E5B83EE5BC47E7BE50EEC15BEDC461EEC566EFCC71EECD78
EFD185F5DCA0F7E5B5F7E8BDF8E8C1F8E6B6F6E0AAF4DDA2F1D896F1D691F0D6
8FEED38CF2D796F5DCA0F4DB9EF6DC9FF8DEA6F4DCA0F3DB9CF7DFACF6DDA8EF
D38BEFC562E7BE51E8BD4DE8BD50ECC159EEC35EEFC765EEC867F0CD72F2CF7B
F0CF82F3D995F7E3AFF6E8BFF6E5BCF6E0A8F7DDA4F4DB9EF1D795F1D691EFD5
8BEFD58BF1D691F4D898F6DCA2F8E0A9F6DEADF5DEA7F4DDA1F7E0A8F5DDA4F1
D487EDC769EDC55EE9BE57E7BD53E8BF53EAC057ECC45EEDC869EECC71EDCC74
EED07EF5DC99F7E0ABF7E7BBF5E2AFF3D99AF5DB9DF6DB9CF3D996F2D793F1D8
90F0D78EF0D690F1D695F6DEA7F5E7BEF6E6BCF7E2AFF8DFA6F4DEA8F6DFA8F0
D58EEDCF7AEFC96BF0C567EAC25BE7BF51E9BD52EBC25AF1CB70F0CE74ECCE75
EFD388F6DCA6F8E2ACF8E4B3F5DD9FF0D590F1D998F2D896F0D68FF1D594F2D7
93F0D590F2D695F6DB9EF4DEAAF6E6B9F5E9BEF5E1B2F8DFAAF5E3B0F5E0ACF0
D899EED486EFCF7CEECB73EEC86AECC25AECC35BEEC766EFCC75F1D185EFD48D
F4DA98F7DEA5F6E1ACF7E1ABF4D795EDD589EED68FF1D48DEFD183F0D286F1D3
88F2D58DF2D79AF4DEAAF7E2ADF4E2B0F5E4B7F7E5B6F8E5B6F7E7BAF7E0ACF6
DC9BF3DA9AF1D797F1D694F0D187EFCE79ECC96EEEC96FEFCE7CF1D58DF5DB9C
F6DDA1F3DFA4F8E0A9F7DEA6F2D693EDD384F0D384F0D07EECCB72EDCD74EECD
78EFCF7EF2D48DF3D99CF6DFA7F7E2ADF8E2ADF7E3B1FAE7BAF6E7B9F7E0ACFA
DEA1F5E0ADF4E1B1F6E1ADF4DA9BF2D591EDD181EFCD7AEECE7EEFCE7FF1D58E
F6DC9DF2DDA4F5DDA0F4DA9AEFD38DEED080F0CE76EEC970ECC970EECD78F1CB
73EFC869F0CE79F0D58BF2D99AF4DDA5F6DEA7F4DDA6F7E2ADF8E4B1F7E1ADF5
DDA5F6E6B4F8E7BFF7E6B9F4E0A7F5DBA1F2D896EDD083EECE79F0CC72ECCC79
EED284EED790F1D896F2D691F0D187EFCC79EEC769EBC25FEDC767EFCB6EEFC7
6DEDC562EDC86BEECF80EFD690F3DA9BF4DA9CF3DA9CF5DEA4F7DEA7F7DEA7F5
DDA7F4E3B0F6E7C3F8E9C2F4E5B4F7E3B0F5DDA5EFD58DEFCB73EEC665EFCC72
EFCE7CF2D68EEED38BEFD286F0CE78ECC765E9C155EABE53EBC158EDC25DEFC5
66F0C663EDC565F0CD79F0D488F0D48CEFD38AF0D693F4DCA2F9DFA6F5DBA0F5
DBA5F8E3B3F7EACAFAECCBF6E6BDF7E5B4F5DDA6F2D792F0D184EECA72EECA6D
EFCB71EECC79F0D080EFCF7AEDC463EABF55E8BD4DEABD50E6BB47E9BD4FECC1
5AEFC563EEC669EECB75EED081EED082EFD184F2D797F9E1AEF5DDA3F4DA9BF5
DB9FF8E7BEF9F1D7FBEED3F7E4BBF8E0ADF8E2AEF3DA98EFD690ECD58EEFD384
EECD7AECC869EDC669ECC664E8BD4DE7B945E9B944E7B944E7BB42E9BD4BE8BE
54EDC45FEDC666EECB71EECD7AEFD388EFD791F5DC9FF7DEAAF3DBA1F4D99BF6
DCA2F4E9BDFBEED1F9EBC9F6E5B7F8E2ABF9DFA6F6DD9FF3D898F7DDA5F8DC9E
EED083EEC666EBC159EBBE52E8B63BEAB632E8B536E9B942E7BB4BE6BA47EBBF
52EEC25CEFC767EECC76F0D17EF1D68EEFD893F4DA9BF5DBA1F5DCA3F1DA99F4
DCA8F6E3B0F5E4B3F9E7BCF8E6B8F6E3AFF2D89DF6DCA2F7DDA8F7E2AFF3DA9D
EDCF82EEC565EBC159E6BB49E7B433E8B22FE6B73DE7BC4BE7BB4BE6B946E9BD
50EDC35DEFC96CEFD07EF0D58CF3D894F2D68FF0D38AF2D58EF6DC9DF4DDA4F7
DEA8F4DEA0F4DEA5F8E4B4F8E6B7F4E1AEF6DFA8F6E0ABF6E3B0F8E5B6F2DDA3
EFD389EFC769EBC259E6BA47E7B434E7B12EE7B943E6BD50E4BB4BE6BC47E7BD
4FECC25BEBC465F0CF7BF0D68FF2D896EFD185EBCC7AEECF7EF0D790F1DAA2F7
DDA3F3D999F5DFA9F7E3B5F8E6BBF7E7BEF8EBC7F6E8BEF5E3B0F6E0AFF3DEA2
F0D48BEFCA70EAC359E8BD49E6B940E8B63DE7BB4CE4BC4CE3BC48E6B941E7BB
46EABF51ECC35EEFC76BEECF7CF0D389F0CF81EDCC76EECB6FEFCD77F2D388F1
D693F5D89BF7E2AFF8E5BAF7E7C1F9EDCFF9EED2F8E8C0F8E2B1F7DFAAF0D897
EFD489F0CF78EFC86AEDC25CE6BB4DE9BE50EAC15CEABF57E9BF53E9BE50E4BC
4BE5BD4FEDC35DF1C661F0CA6CEFCB75EFCB72F0CD74F1CC72F0CB70EECD77EE
D286F1D68FF5DFA9F9E9C1F5EBC5FAF0D4F8EFD1F7E8BDF5E0ABF2DA9FEFD693
EFD488EED07AEDCE79EFCB75ECC35DECC25BEEC561EEC667EEC361EDC55EE7BF
52E6BD4FE9C157EAC258ECC35EEDC460EDC668F0CD74EFCD77EEC76BEFC668F0
CC77EED07FF1D897F6E2AEF9EAC5F9F1D4FAF1D4F8E8BEF5DFA4F0D795F1D58C
F0D083EED07FEDD07FEECE78EFCA70EEC566F0C563EEC668F0C564EDC461EAC1
57E7BD51E9C157E7BE54E7BD51E7BD51E9C058EBC460EAC663EBC157E9BE52ED
C565ECC96EF0D489F3DA9BF7E2B7F4EBC7FBF2D6F6E4B6F2DA9BF2D794F0D38D
EFD083F0CE78F0CF7EEFCD79F0CC72F0CA6DEAC056E9BC4DE8BE4FEABF57EEC4
5DEAC058EDC258ECC157E7BC4EE8BD52E9BD52E7BD4FE6BD4EE7B843E5B944E9
C257EDC96CF0D387F2D895F4DDA4F7E6BAF9EDCBF7E5B6F3D99DF1D692F0D58B
F3D68AEDCF7DEFCF7EECD287F0CD7CEDC763E7BE4DE8B945E8BA42E8BC4FEBC3
59EDC55DEBC25BEBC25BE9BF59EDC35CE7BD54E7BB4BE6BA42E4B639E6BA43EA
C359EDC86CEFD284F0D68DEFD890F8E1AFF7E6BFF7E3B3F5DCA2EFD48DEDD181
EED184ECD286F0D790F1D58BEECA6FEBC459E9BF55E5BC4FE5BA46E7BC4DE8C0
54EDC55DECC461F0C866F0C569EEC461EDC35EEBBE4EE7B73CE7B940E9BD50EB
C35DF1C86DEECC78ECCF7DECD285F3DB9DF7E0ACF3DCA1F1D898EED187EDCE79
EECE7AF1D386EFD68EF1D285EECA6FEAC561ECC563EBC35BEBC055E9C053E8BE
55EAC460ECCA6BF0CC72EEC567EDC35BEFC562ECC055E7B946E9BD4CECC25AED
C460F0C567F1C86CF2CE74F0CF82EED284F2D48DEFD58EEED48BEFD083F1D180
EED284EFD48DEED68AEFD084F0CF7DEECF77F0D080EED07DEECD78EECD71EDCC
72EFCE7BEFD183EDCD82F2C96DEEC35FEDC35CEAC15AECC25CEEC360EFC362ED
C362}
Title.Picture.Data = {
07544269746D6170360C0000424D360C00000000000036000000280000002000
0000200000000100180000000000000C00000000000000000000000000000000
00000B37E40940F0023EDF023BCA0335C10031C20236D00137DD0039E90643FA