MainForm.Designer.cs
author StephaneLenclud
Sun, 15 Mar 2015 14:39:21 +0100
changeset 76 831ebeeecfdf
parent 75 e8bb372ae58b
child 78 72885c950813
permissions -rw-r--r--
Copyright and namespace.
StephaneLenclud@76
     1
//
StephaneLenclud@76
     2
// Copyright (C) 2014-2015 Stéphane Lenclud.
StephaneLenclud@76
     3
//
StephaneLenclud@76
     4
// This file is part of SharpLibHid.
StephaneLenclud@76
     5
//
StephaneLenclud@76
     6
// SharpDisplayManager is free software: you can redistribute it and/or modify
StephaneLenclud@76
     7
// it under the terms of the GNU General Public License as published by
StephaneLenclud@76
     8
// the Free Software Foundation, either version 3 of the License, or
StephaneLenclud@76
     9
// (at your option) any later version.
StephaneLenclud@76
    10
//
StephaneLenclud@76
    11
// SharpDisplayManager is distributed in the hope that it will be useful,
StephaneLenclud@76
    12
// but WITHOUT ANY WARRANTY; without even the implied warranty of
StephaneLenclud@76
    13
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
StephaneLenclud@76
    14
// GNU General Public License for more details.
StephaneLenclud@76
    15
//
StephaneLenclud@76
    16
// You should have received a copy of the GNU General Public License
StephaneLenclud@76
    17
// along with SharpDisplayManager.  If not, see <http://www.gnu.org/licenses/>.
StephaneLenclud@76
    18
//
StephaneLenclud@76
    19
StephaneLenclud@76
    20
using System;
StephaneLenclud@60
    21
using System.Collections.Generic;
StephaneLenclud@60
    22
using System.Text;
StephaneLenclud@60
    23
StephaneLenclud@60
    24
namespace RemoteControlSample
StephaneLenclud@60
    25
{
StephaneLenclud@60
    26
    public partial class MainForm
StephaneLenclud@60
    27
    {
StephaneLenclud@60
    28
        #region Windows Form Designer generated code
StephaneLenclud@60
    29
        /// <summary>
StephaneLenclud@60
    30
        /// Required method for Designer support - do not modify
StephaneLenclud@60
    31
        /// the contents of this method with the code editor.
StephaneLenclud@60
    32
        /// </summary>
StephaneLenclud@60
    33
        private void InitializeComponent()
StephaneLenclud@60
    34
        {
StephaneLenclud@60
    35
            this.labelButtonName = new System.Windows.Forms.Label();
StephaneLenclud@60
    36
            this.labelDeviceName = new System.Windows.Forms.Label();
StephaneLenclud@60
    37
            this.buttonClear = new System.Windows.Forms.Button();
StephaneLenclud@60
    38
            this.tabControl = new System.Windows.Forms.TabControl();
StephaneLenclud@60
    39
            this.tabPageMessages = new System.Windows.Forms.TabPage();
StephaneLenclud@60
    40
            this.listViewEvents = new System.Windows.Forms.ListView();
StephaneLenclud@60
    41
            this.columnHeaderUsages = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
StephaneLenclud@60
    42
            this.columnHeaderInputReport = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
StephaneLenclud@60
    43
            this.columnHeaderUsagePage = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
StephaneLenclud@60
    44
            this.columnHeaderUsageCollection = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
StephaneLenclud@60
    45
            this.columnHeaderRepeat = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
StephaneLenclud@60
    46
            this.columnHeaderTime = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
StephaneLenclud@60
    47
            this.tabPageDevices = new System.Windows.Forms.TabPage();
StephaneLenclud@75
    48
            this.buttonRefresh = new System.Windows.Forms.Button();
StephaneLenclud@70
    49
            this.buttonTreeViewExpandAll = new System.Windows.Forms.Button();
StephaneLenclud@70
    50
            this.buttonTreeViewCollapseAll = new System.Windows.Forms.Button();
StephaneLenclud@60
    51
            this.treeViewDevices = new System.Windows.Forms.TreeView();
StephaneLenclud@72
    52
            this.tabPageTests = new System.Windows.Forms.TabPage();
StephaneLenclud@72
    53
            this.textBoxTests = new System.Windows.Forms.TextBox();
StephaneLenclud@67
    54
            this.statusStrip = new System.Windows.Forms.StatusStrip();
StephaneLenclud@67
    55
            this.toolStripStatusLabelDevice = new System.Windows.Forms.ToolStripStatusLabel();
StephaneLenclud@60
    56
            this.tabControl.SuspendLayout();
StephaneLenclud@60
    57
            this.tabPageMessages.SuspendLayout();
StephaneLenclud@60
    58
            this.tabPageDevices.SuspendLayout();
StephaneLenclud@72
    59
            this.tabPageTests.SuspendLayout();
StephaneLenclud@67
    60
            this.statusStrip.SuspendLayout();
StephaneLenclud@60
    61
            this.SuspendLayout();
StephaneLenclud@60
    62
            // 
StephaneLenclud@60
    63
            // labelButtonName
StephaneLenclud@60
    64
            // 
StephaneLenclud@60
    65
            this.labelButtonName.AutoSize = true;
StephaneLenclud@60
    66
            this.labelButtonName.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
StephaneLenclud@61
    67
            this.labelButtonName.Location = new System.Drawing.Point(785, 53);
StephaneLenclud@60
    68
            this.labelButtonName.Name = "labelButtonName";
StephaneLenclud@60
    69
            this.labelButtonName.Size = new System.Drawing.Size(103, 20);
StephaneLenclud@60
    70
            this.labelButtonName.TabIndex = 0;
StephaneLenclud@60
    71
            this.labelButtonName.Text = "Button Name";
StephaneLenclud@60
    72
            // 
StephaneLenclud@60
    73
            // labelDeviceName
StephaneLenclud@60
    74
            // 
StephaneLenclud@60
    75
            this.labelDeviceName.AutoSize = true;
StephaneLenclud@60
    76
            this.labelDeviceName.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
StephaneLenclud@61
    77
            this.labelDeviceName.Location = new System.Drawing.Point(785, 33);
StephaneLenclud@60
    78
            this.labelDeviceName.Name = "labelDeviceName";
StephaneLenclud@60
    79
            this.labelDeviceName.Size = new System.Drawing.Size(103, 20);
StephaneLenclud@60
    80
            this.labelDeviceName.TabIndex = 1;
StephaneLenclud@60
    81
            this.labelDeviceName.Text = "Device Name";
StephaneLenclud@60
    82
            // 
StephaneLenclud@60
    83
            // buttonClear
StephaneLenclud@60
    84
            // 
StephaneLenclud@61
    85
            this.buttonClear.Location = new System.Drawing.Point(813, 6);
StephaneLenclud@60
    86
            this.buttonClear.Name = "buttonClear";
StephaneLenclud@60
    87
            this.buttonClear.Size = new System.Drawing.Size(75, 23);
StephaneLenclud@60
    88
            this.buttonClear.TabIndex = 3;
StephaneLenclud@60
    89
            this.buttonClear.Text = "Clear";
StephaneLenclud@60
    90
            this.buttonClear.UseVisualStyleBackColor = true;
StephaneLenclud@60
    91
            this.buttonClear.Click += new System.EventHandler(this.buttonClear_Click);
StephaneLenclud@60
    92
            // 
StephaneLenclud@60
    93
            // tabControl
StephaneLenclud@60
    94
            // 
StephaneLenclud@67
    95
            this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
StephaneLenclud@67
    96
            | System.Windows.Forms.AnchorStyles.Left)));
StephaneLenclud@60
    97
            this.tabControl.Controls.Add(this.tabPageMessages);
StephaneLenclud@60
    98
            this.tabControl.Controls.Add(this.tabPageDevices);
StephaneLenclud@70
    99
            this.tabControl.Controls.Add(this.tabPageTests);
StephaneLenclud@60
   100
            this.tabControl.Location = new System.Drawing.Point(12, 12);
StephaneLenclud@60
   101
            this.tabControl.Name = "tabControl";
StephaneLenclud@60
   102
            this.tabControl.SelectedIndex = 0;
StephaneLenclud@67
   103
            this.tabControl.Size = new System.Drawing.Size(902, 532);
StephaneLenclud@60
   104
            this.tabControl.TabIndex = 4;
StephaneLenclud@60
   105
            // 
StephaneLenclud@60
   106
            // tabPageMessages
StephaneLenclud@60
   107
            // 
StephaneLenclud@60
   108
            this.tabPageMessages.Controls.Add(this.listViewEvents);
StephaneLenclud@60
   109
            this.tabPageMessages.Controls.Add(this.buttonClear);
StephaneLenclud@60
   110
            this.tabPageMessages.Controls.Add(this.labelDeviceName);
StephaneLenclud@60
   111
            this.tabPageMessages.Controls.Add(this.labelButtonName);
StephaneLenclud@60
   112
            this.tabPageMessages.Location = new System.Drawing.Point(4, 22);
StephaneLenclud@60
   113
            this.tabPageMessages.Name = "tabPageMessages";
StephaneLenclud@60
   114
            this.tabPageMessages.Padding = new System.Windows.Forms.Padding(3);
StephaneLenclud@70
   115
            this.tabPageMessages.Size = new System.Drawing.Size(894, 506);
StephaneLenclud@60
   116
            this.tabPageMessages.TabIndex = 0;
StephaneLenclud@60
   117
            this.tabPageMessages.Text = "Messages";
StephaneLenclud@60
   118
            this.tabPageMessages.UseVisualStyleBackColor = true;
StephaneLenclud@60
   119
            // 
StephaneLenclud@60
   120
            // listViewEvents
StephaneLenclud@60
   121
            // 
StephaneLenclud@60
   122
            this.listViewEvents.Alignment = System.Windows.Forms.ListViewAlignment.Left;
StephaneLenclud@60
   123
            this.listViewEvents.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
StephaneLenclud@60
   124
            | System.Windows.Forms.AnchorStyles.Left)));
StephaneLenclud@60
   125
            this.listViewEvents.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
StephaneLenclud@60
   126
            this.listViewEvents.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
StephaneLenclud@60
   127
            this.columnHeaderUsages,
StephaneLenclud@60
   128
            this.columnHeaderInputReport,
StephaneLenclud@60
   129
            this.columnHeaderUsagePage,
StephaneLenclud@60
   130
            this.columnHeaderUsageCollection,
StephaneLenclud@60
   131
            this.columnHeaderRepeat,
StephaneLenclud@60
   132
            this.columnHeaderTime});
StephaneLenclud@60
   133
            this.listViewEvents.GridLines = true;
StephaneLenclud@60
   134
            this.listViewEvents.Location = new System.Drawing.Point(8, 6);
StephaneLenclud@60
   135
            this.listViewEvents.Name = "listViewEvents";
StephaneLenclud@70
   136
            this.listViewEvents.Size = new System.Drawing.Size(744, 492);
StephaneLenclud@60
   137
            this.listViewEvents.TabIndex = 3;
StephaneLenclud@60
   138
            this.listViewEvents.UseCompatibleStateImageBehavior = false;
StephaneLenclud@60
   139
            this.listViewEvents.View = System.Windows.Forms.View.Details;
StephaneLenclud@60
   140
            // 
StephaneLenclud@60
   141
            // columnHeaderUsages
StephaneLenclud@60
   142
            // 
StephaneLenclud@60
   143
            this.columnHeaderUsages.Text = "Usages";
StephaneLenclud@60
   144
            this.columnHeaderUsages.Width = 180;
StephaneLenclud@60
   145
            // 
StephaneLenclud@60
   146
            // columnHeaderInputReport
StephaneLenclud@60
   147
            // 
StephaneLenclud@60
   148
            this.columnHeaderInputReport.Text = "Input Report";
StephaneLenclud@60
   149
            this.columnHeaderInputReport.Width = 176;
StephaneLenclud@60
   150
            // 
StephaneLenclud@60
   151
            // columnHeaderUsagePage
StephaneLenclud@60
   152
            // 
StephaneLenclud@60
   153
            this.columnHeaderUsagePage.Text = "Usage Page";
StephaneLenclud@60
   154
            this.columnHeaderUsagePage.Width = 87;
StephaneLenclud@60
   155
            // 
StephaneLenclud@60
   156
            // columnHeaderUsageCollection
StephaneLenclud@60
   157
            // 
StephaneLenclud@60
   158
            this.columnHeaderUsageCollection.Text = "Usage Collection";
StephaneLenclud@60
   159
            this.columnHeaderUsageCollection.Width = 134;
StephaneLenclud@60
   160
            // 
StephaneLenclud@60
   161
            // columnHeaderRepeat
StephaneLenclud@60
   162
            // 
StephaneLenclud@60
   163
            this.columnHeaderRepeat.Text = "Repeat";
StephaneLenclud@60
   164
            this.columnHeaderRepeat.Width = 68;
StephaneLenclud@60
   165
            // 
StephaneLenclud@60
   166
            // columnHeaderTime
StephaneLenclud@60
   167
            // 
StephaneLenclud@60
   168
            this.columnHeaderTime.Text = "Time";
StephaneLenclud@60
   169
            this.columnHeaderTime.Width = 76;
StephaneLenclud@60
   170
            // 
StephaneLenclud@60
   171
            // tabPageDevices
StephaneLenclud@60
   172
            // 
StephaneLenclud@72
   173
            this.tabPageDevices.Controls.Add(this.buttonRefresh);
StephaneLenclud@65
   174
            this.tabPageDevices.Controls.Add(this.buttonTreeViewExpandAll);
StephaneLenclud@65
   175
            this.tabPageDevices.Controls.Add(this.buttonTreeViewCollapseAll);
StephaneLenclud@60
   176
            this.tabPageDevices.Controls.Add(this.treeViewDevices);
StephaneLenclud@60
   177
            this.tabPageDevices.Location = new System.Drawing.Point(4, 22);
StephaneLenclud@60
   178
            this.tabPageDevices.Name = "tabPageDevices";
StephaneLenclud@60
   179
            this.tabPageDevices.Padding = new System.Windows.Forms.Padding(3);
StephaneLenclud@67
   180
            this.tabPageDevices.Size = new System.Drawing.Size(894, 506);
StephaneLenclud@60
   181
            this.tabPageDevices.TabIndex = 1;
StephaneLenclud@60
   182
            this.tabPageDevices.Text = "Devices";
StephaneLenclud@60
   183
            this.tabPageDevices.UseVisualStyleBackColor = true;
StephaneLenclud@60
   184
            // 
StephaneLenclud@75
   185
            // buttonRefresh
StephaneLenclud@75
   186
            // 
StephaneLenclud@75
   187
            this.buttonRefresh.Location = new System.Drawing.Point(813, 64);
StephaneLenclud@75
   188
            this.buttonRefresh.Name = "buttonRefresh";
StephaneLenclud@75
   189
            this.buttonRefresh.Size = new System.Drawing.Size(75, 23);
StephaneLenclud@75
   190
            this.buttonRefresh.TabIndex = 3;
StephaneLenclud@75
   191
            this.buttonRefresh.Text = "Refresh";
StephaneLenclud@75
   192
            this.buttonRefresh.UseVisualStyleBackColor = true;
StephaneLenclud@75
   193
            this.buttonRefresh.Click += new System.EventHandler(this.buttonRefresh_Click);
StephaneLenclud@75
   194
            // 
StephaneLenclud@70
   195
            // buttonTreeViewExpandAll
StephaneLenclud@60
   196
            // 
StephaneLenclud@70
   197
            this.buttonTreeViewExpandAll.Location = new System.Drawing.Point(813, 6);
StephaneLenclud@70
   198
            this.buttonTreeViewExpandAll.Name = "buttonTreeViewExpandAll";
StephaneLenclud@70
   199
            this.buttonTreeViewExpandAll.Size = new System.Drawing.Size(75, 23);
StephaneLenclud@70
   200
            this.buttonTreeViewExpandAll.TabIndex = 2;
StephaneLenclud@70
   201
            this.buttonTreeViewExpandAll.Text = "Expand All";
StephaneLenclud@70
   202
            this.buttonTreeViewExpandAll.UseVisualStyleBackColor = true;
StephaneLenclud@70
   203
            this.buttonTreeViewExpandAll.Click += new System.EventHandler(this.buttonTreeViewExpandAll_Click);
StephaneLenclud@60
   204
            // 
StephaneLenclud@65
   205
            // buttonTreeViewCollapseAll
StephaneLenclud@65
   206
            // 
StephaneLenclud@65
   207
            this.buttonTreeViewCollapseAll.Location = new System.Drawing.Point(813, 35);
StephaneLenclud@65
   208
            this.buttonTreeViewCollapseAll.Name = "buttonTreeViewCollapseAll";
StephaneLenclud@65
   209
            this.buttonTreeViewCollapseAll.Size = new System.Drawing.Size(75, 23);
StephaneLenclud@65
   210
            this.buttonTreeViewCollapseAll.TabIndex = 1;
StephaneLenclud@65
   211
            this.buttonTreeViewCollapseAll.Text = "Collapse All";
StephaneLenclud@65
   212
            this.buttonTreeViewCollapseAll.UseVisualStyleBackColor = true;
StephaneLenclud@65
   213
            this.buttonTreeViewCollapseAll.Click += new System.EventHandler(this.buttonTreeViewCollapseAll_Click);
StephaneLenclud@65
   214
            // 
StephaneLenclud@70
   215
            // treeViewDevices
StephaneLenclud@65
   216
            // 
StephaneLenclud@70
   217
            this.treeViewDevices.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
StephaneLenclud@70
   218
            | System.Windows.Forms.AnchorStyles.Left)));
StephaneLenclud@70
   219
            this.treeViewDevices.Location = new System.Drawing.Point(8, 6);
StephaneLenclud@70
   220
            this.treeViewDevices.Name = "treeViewDevices";
StephaneLenclud@70
   221
            this.treeViewDevices.Size = new System.Drawing.Size(713, 492);
StephaneLenclud@70
   222
            this.treeViewDevices.TabIndex = 0;
StephaneLenclud@65
   223
            // 
StephaneLenclud@70
   224
            // tabPageTests
StephaneLenclud@70
   225
            // 
StephaneLenclud@70
   226
            this.tabPageTests.Controls.Add(this.textBoxTests);
StephaneLenclud@70
   227
            this.tabPageTests.Location = new System.Drawing.Point(4, 22);
StephaneLenclud@70
   228
            this.tabPageTests.Name = "tabPageTests";
StephaneLenclud@70
   229
            this.tabPageTests.Size = new System.Drawing.Size(894, 506);
StephaneLenclud@70
   230
            this.tabPageTests.TabIndex = 2;
StephaneLenclud@70
   231
            this.tabPageTests.Text = "Tests";
StephaneLenclud@70
   232
            this.tabPageTests.UseVisualStyleBackColor = true;
StephaneLenclud@70
   233
            // 
StephaneLenclud@70
   234
            // textBoxTests
StephaneLenclud@70
   235
            // 
StephaneLenclud@70
   236
            this.textBoxTests.Location = new System.Drawing.Point(4, 4);
StephaneLenclud@70
   237
            this.textBoxTests.Multiline = true;
StephaneLenclud@70
   238
            this.textBoxTests.Name = "textBoxTests";
StephaneLenclud@70
   239
            this.textBoxTests.Size = new System.Drawing.Size(887, 499);
StephaneLenclud@70
   240
            this.textBoxTests.TabIndex = 0;
StephaneLenclud@70
   241
            // 
StephaneLenclud@72
   242
            // statusStrip
StephaneLenclud@72
   243
            // 
StephaneLenclud@72
   244
            this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
StephaneLenclud@72
   245
            this.toolStripStatusLabelDevice});
StephaneLenclud@72
   246
            this.statusStrip.Location = new System.Drawing.Point(0, 547);
StephaneLenclud@72
   247
            this.statusStrip.Name = "statusStrip";
StephaneLenclud@72
   248
            this.statusStrip.Size = new System.Drawing.Size(935, 22);
StephaneLenclud@72
   249
            this.statusStrip.TabIndex = 5;
StephaneLenclud@72
   250
            this.statusStrip.Text = "statusStrip1";
StephaneLenclud@72
   251
            // 
StephaneLenclud@72
   252
            // toolStripStatusLabelDevice
StephaneLenclud@72
   253
            // 
StephaneLenclud@72
   254
            this.toolStripStatusLabelDevice.Name = "toolStripStatusLabelDevice";
StephaneLenclud@72
   255
            this.toolStripStatusLabelDevice.Size = new System.Drawing.Size(61, 17);
StephaneLenclud@72
   256
            this.toolStripStatusLabelDevice.Text = "No Device";
StephaneLenclud@72
   257
            // 
StephaneLenclud@60
   258
            // MainForm
StephaneLenclud@60
   259
            // 
StephaneLenclud@60
   260
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
StephaneLenclud@60
   261
            this.BackColor = System.Drawing.SystemColors.Control;
StephaneLenclud@67
   262
            this.ClientSize = new System.Drawing.Size(935, 569);
StephaneLenclud@67
   263
            this.Controls.Add(this.statusStrip);
StephaneLenclud@60
   264
            this.Controls.Add(this.tabControl);
StephaneLenclud@60
   265
            this.Name = "MainForm";
StephaneLenclud@75
   266
            this.Text = "HID Demo";
StephaneLenclud@60
   267
            this.Load += new System.EventHandler(this.MainForm_Load);
StephaneLenclud@60
   268
            this.tabControl.ResumeLayout(false);
StephaneLenclud@60
   269
            this.tabPageMessages.ResumeLayout(false);
StephaneLenclud@60
   270
            this.tabPageMessages.PerformLayout();
StephaneLenclud@60
   271
            this.tabPageDevices.ResumeLayout(false);
StephaneLenclud@72
   272
            this.tabPageTests.ResumeLayout(false);
StephaneLenclud@72
   273
            this.tabPageTests.PerformLayout();
StephaneLenclud@67
   274
            this.statusStrip.ResumeLayout(false);
StephaneLenclud@67
   275
            this.statusStrip.PerformLayout();
StephaneLenclud@60
   276
            this.ResumeLayout(false);
StephaneLenclud@67
   277
            this.PerformLayout();
StephaneLenclud@60
   278
StephaneLenclud@60
   279
        }
StephaneLenclud@60
   280
        #endregion Windows Form Designer generated code
StephaneLenclud@60
   281
StephaneLenclud@65
   282
        private System.Windows.Forms.Button buttonTreeViewExpandAll;
StephaneLenclud@65
   283
        private System.Windows.Forms.Button buttonTreeViewCollapseAll;
StephaneLenclud@67
   284
        private System.Windows.Forms.StatusStrip statusStrip;
StephaneLenclud@67
   285
        private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelDevice;
StephaneLenclud@70
   286
        private System.Windows.Forms.TabPage tabPageTests;
StephaneLenclud@70
   287
        private System.Windows.Forms.TextBox textBoxTests;
StephaneLenclud@72
   288
        private System.Windows.Forms.Button buttonRefresh;
StephaneLenclud@65
   289
StephaneLenclud@60
   290
    }
StephaneLenclud@60
   291
}