Changeset 1085

Show
Ignore:
Timestamp:
05/01/08 16:09:34 (4 years ago)
Author:
jwoithe
Message:

MOTU: Name channel pair control widgets in mixer. Disable channel pair widgets for the moment since they are not implemented.
MOTU: In mixer python glue code, renamed pan object handlers to generic control handlers since they can be used for more than just the pan controls.
Fix minor grammar issues in registration dialog.
In registration module, ensure the ffado configuration directory exists before trying to save information into it. The test is still a bit rough and could be made more robust.
ffadomixer: explicitly set the size of the toplevel tab widget to that of the mixer it contains. Without this for me on Qt 3.3.8 the ffado mixer window is created way too small. The solution is a bit hacky and could possibly do with refinement.
ffadomixer: don't include the generic mixer controls for MOTU devices since they don't give us anything useful yet and could be a source of confusion for users.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/libffado/doc/motu_firewire_protocol.txt

    r1064 r1085  
    1 Notes on the MOTU Traveler/828MkII firewire protocol 
    2 ==================================================== 
     1Notes on the firewire protocol used by MOTU audio devices 
     2========================================================= 
    33 
    44Author: Jonathan Woithe 
    5 Document version: 20080428-1 
     5Document version: 20080501-1 
    66 
    77 
     
    5656packet) and 0x488 at 4x rates (giving 32 blocks per iso data packet). 
    5757 
    58 The traveler usually becomes the IRM on the firewire bus it is plugged into; 
     58The Traveler usually becomes the IRM on the firewire bus it is plugged into; 
    5959when functioning as the IRM it also broadcasts "cycle start" packets on a 
    6060regular basis as would be expected. These appear to be as per ieee1394-1995.  
     
    3493490x00000009 for Traveler).  Therefore the best bet at this stage appears to be  
    350350a probe for a vendor ID of 0x000001f2 with one of the above version values 
    351 in the unit directory of the config ROM. 
     351in the unit directory of the config ROM.  Unit directory versions for MOTU 
     352hardware are as follows: 
     353 
     354  0x00000001 = The original 828 
     355  0x00000003 = 828 Mk 2 
     356  0x00000005 = 896HD 
     357  0x00000009 = Traveler 
     358  0x0000000d = Ultralite 
     359  0x0000000f = 8pre 
    352360 
    353361Alternatively one could probe for registers known to exist on only one of 
    354 the interfaces.  The trim gain / 20 dB pad status register (0x0c1c) is an 
    355 obvious choice since these features are only present on the Traveler.  At 
    356 this stage however this seems to be unnecessary. 
     362the interfaces.  The trim gain / 20 dB pad status register (0x0c1c) for 
     363example can be used to differentiate a Traveler from an 828Mk2 since these 
     364features are only present on the Traveler.  At this stage however the unit 
     365version number is probably sufficient and far less complicated in the long 
     366run. 
    357367 
    358368 
     
    657667Bits 9-8 specify the mode of the optical input port: 
    658668  00 = off, 01 = ADAT, 10 = TOSLink (numbers given are in binary) 
    659 Register 0xb10 also plays a role in setting the optical input port mode. 
     669The "TOSLink" option is not available on the 896HD.  Register 0xb10 also 
     670plays a role in setting the optical input port mode. 
    660671 
    661672Bits 11-10 specify the mode of the optical output port in the same way 
     
    863874 
    864875 
    865 Gain and pan value-dB mappings 
    866 ============================== 
     876Gain and pan value-dB mappings for the Traveler 
     877=============================================== 
    867878 
    868879The following gain map runs from 0x00 (-inf) to 0x80 (0 dB).  The dB values 
  • trunk/libffado/support/mixer/ffadomixer.in

    r1070 r1085  
    285285        if vendorId == 0x1f2: 
    286286            thisdev=(vendorId, 0x00000000) 
     287            # At present the generic mixer doesn't give anything useful for 
     288            # MOTU devices.  We'll ignore it for now. 
     289            use_generic = False 
    287290 
    288291        found_panel = False 
     
    301304                print mixerapp 
    302305                exec('tmp = '+mixerapp+'( mw )') 
     306                mixersize = tmp.size() 
    303307                mw.addTab( tmp, mixerapp ) 
     308                # At this point adjustSize() resizes the top level tab 
     309                # widget to the size of just the tab bar, curiously enough.  
     310                # Exploit this to obtain the height of the tab bar so we can 
     311                # size the based on the mixer size but allowing for the 
     312                # top-level tab bar. 
     313                mw.adjustSize() 
     314                tabsize = mw.size() 
     315                mw.resize(mixersize + QSize(0, tabsize.height())) 
    304316                tmp.hw = ControlInterface(server, basepath+'/DeviceManager/'+path) 
    305317                tmp.configrom = cfgrom 
     
    323335    if mw.count() > 0: 
    324336        mw.show() 
     337 
    325338        QObject.connect(app,SIGNAL("lastWindowClosed()"),app,SLOT("quit()")) 
    326339 
  • trunk/libffado/support/mixer/ffado_regdialog.ui

    r1077 r1085  
    378378<p>In order to collect usage statistics we would like to send some information 
    379379about your system to ffado.org. It is very important for us to have good usage statistics. 
    380 This to convince vendors that Linux users do exist. This is where you as a user can help  
     380This is to convince vendors that Linux users do exist and is where you as a user can help  
    381381the project.</p> 
    382382 
  • trunk/libffado/support/mixer/ffado_registration.py

    r1077 r1085  
    149149                elif dlg.choice == "nosend": 
    150150                    pass 
    151         # write the updated config 
     151        # write the updated config.  Make sure the destination path exists first. 
     152        cpath = os.path.dirname(self.config_filename) 
     153        # This test should be more robust but it will do for most cases. 
     154        if (not(os.path.exists(cpath))): 
     155                os.makedirs(cpath, 0755) 
    152156        f = open(self.config_filename, "w+") 
    153157        self.parser.write(f) 
  • trunk/libffado/support/mixer/mixer_motu.py

    r1064 r1085  
    3636        self.hw.setDiscrete(self.ChannelFaders[sender][0], vol) 
    3737 
    38     # public slot: channel pan 
    39     def updatePan(self, a0): 
    40         sender = self.sender() 
    41         pan = a0 
    42         print "setting %s channel pan to %d" % (self.ChannelPans[sender][0], pan
    43         self.hw.setDiscrete(self.ChannelPans[sender][0], pan
     38    # public slot: a generic multivalue control 
     39    def updateControl(self, a0): 
     40        sender = self.sender() 
     41        val = a0 
     42        print "setting %s control to %d" % (self.Controls[sender][0], val
     43        self.hw.setDiscrete(self.Controls[sender][0], val
    4444 
    4545    # public slot: generic binary switch 
     
    8282            } 
    8383 
    84         self.ChannelPans={ 
     84        self.Controls={ 
    8585            self.mix1ana1_pan:   ['/Mixer/Mix1/Ana1_pan'], 
    8686            self.mix1ana2_pan:   ['/Mixer/Mix1/Ana2_pan'], 
     
    107107            self.mix1ana7_mute:  ['/Mixer/Mix1/Ana7_mute'], 
    108108            self.mix1ana8_mute:  ['/Mixer/Mix1/Ana8_mute'], 
    109             self.mix1_mute:  ['/Mixer/Mix1/Mix_mute'], 
    110109            self.mix1ana1_solo:  ['/Mixer/Mix1/Ana1_solo'], 
    111110            self.mix1ana2_solo:  ['/Mixer/Mix1/Ana2_solo'], 
     
    116115            self.mix1ana7_solo:  ['/Mixer/Mix1/Ana7_solo'], 
    117116            self.mix1ana8_solo:  ['/Mixer/Mix1/Ana8_solo'], 
     117            self.mix1_mute:      ['/Mixer/Mix1/Mix_mute'], 
    118118            self.ana1_pad:       ['/Mixer/Control/Ana1_pad'], 
    119119            self.ana2_pad:       ['/Mixer/Control/Ana2_pad'], 
     
    128128            self.ana7_boost:     ['/Mixer/Control/Ana7_boost'], 
    129129            self.ana8_boost:     ['/Mixer/Control/Ana8_boost'], 
     130        } 
     131 
     132        # Ultimately these may be rolled into the BinarySwitches controls, 
     133        # but since they aren't implemented and therefore need to be 
     134        # disabled it's easier to keep them separate for the moment. 
     135        self.PairSwitches={ 
     136            self.mix1ana1_2_pair:   ['Mixer/Mix1/Ana1_2_pair'], 
     137            self.mix1ana3_4_pair:   ['Mixer/Mix1/Ana3_4_pair'], 
     138            self.mix1ana5_6_pair:   ['Mixer/Mix1/Ana5_6_pair'], 
     139            self.mix1ana7_8_pair:   ['Mixer/Mix1/Ana7_8_pair'], 
     140            self.mix1aes1_2_pair:   ['Mixer/Mix1/Aes1_2_pair'], 
     141            self.mix1adat1_2_pair:  ['Mixer/Mix1/Adat1_2_pair'], 
     142            self.mix1adat3_4_pair:  ['Mixer/Mix1/Adat3_4_pair'], 
     143            self.mix1adat5_6_pair:  ['Mixer/Mix1/Adat5_6_pair'], 
     144            self.mix1adat7_8_pair:  ['Mixer/Mix1/Adat7_8_pair'], 
     145            self.mix1spdif1_2_pair: ['Mixer/Mix1/Spdif1_2_pair'], 
    130146        } 
    131147 
     
    210226            QObject.connect(ctrl, SIGNAL('valueChanged(int)'), self.updateFader) 
    211227 
    212         for ctrl, info in self.ChannelPans.iteritems(): 
     228        for ctrl, info in self.Controls.iteritems(): 
    213229            if (not(ctrl.isEnabled())): 
    214230                continue 
    215231            pan = self.hw.getDiscrete(info[0]) 
    216             print "%s channel pan is %d" % (info[0] , pan) 
     232            print "%s control is %d" % (info[0] , pan) 
    217233            ctrl.setValue(pan) 
    218             QObject.connect(ctrl, SIGNAL('valueChanged(int)'), self.updatePan) 
     234            QObject.connect(ctrl, SIGNAL('valueChanged(int)'), self.updateControl) 
     235 
     236        # Disable the channel pair controls since they aren't yet implemented 
     237        for ctrl, info in self.PairSwitches.iteritems(): 
     238            print "%s control is not implemented yet: disabling" % (info[0]) 
     239            ctrl.setEnabled(False) 
    219240 
    220241        for ctrl, info in self.BinarySwitches.iteritems(): 
  • trunk/libffado/support/mixer/mixer_motu.ui

    r1064 r1085  
    3131        </rect> 
    3232    </property> 
     33    <property name="sizePolicy"> 
     34        <sizepolicy> 
     35            <hsizetype>5</hsizetype> 
     36            <vsizetype>5</vsizetype> 
     37            <horstretch>0</horstretch> 
     38            <verstretch>0</verstretch> 
     39        </sizepolicy> 
     40    </property> 
     41    <property name="sizeIncrement"> 
     42        <size> 
     43            <width>0</width> 
     44            <height>0</height> 
     45        </size> 
     46    </property> 
     47    <property name="baseSize"> 
     48        <size> 
     49            <width>0</width> 
     50            <height>0</height> 
     51        </size> 
     52    </property> 
    3353    <property name="caption"> 
    3454        <string>MOTU </string> 
    3555    </property> 
    36     <widget class="QTabWidget"> 
    37         <property name="name"> 
    38             <cstring>tabWidget2</cstring> 
    39         </property> 
    40         <property name="geometry"> 
    41             <rect> 
    42                 <x>190</x> 
    43                 <y>10</y> 
    44                 <width>600</width> 
    45                 <height>740</height> 
    46             </rect> 
    47         </property> 
    48         <widget class="QWidget"> 
    49             <property name="name"> 
    50                 <cstring>tab</cstring> 
    51             </property> 
    52             <attribute name="title"> 
    53                 <string>Mix 1</string> 
    54             </attribute> 
    55             <widget class="QGroupBox"> 
    56                 <property name="name"> 
    57                     <cstring>groupBox1_3_3</cstring> 
    58                 </property> 
    59                 <property name="geometry"> 
    60                     <rect> 
    61                         <x>480</x> 
    62                         <y>0</y> 
    63                         <width>110</width> 
    64                         <height>310</height> 
    65                     </rect> 
    66                 </property> 
    67                 <property name="title"> 
    68                     <string>Output</string> 
    69                 </property> 
    70                 <widget class="QLabel"> 
    71                     <property name="name"> 
    72                         <cstring>textLabel1_2_2_11_3</cstring> 
    73                     </property> 
    74                     <property name="geometry"> 
    75                         <rect> 
    76                             <x>40</x> 
    77                             <y>80</y> 
    78                             <width>30</width> 
    79                             <height>22</height> 
    80                         </rect> 
    81                     </property> 
    82                     <property name="font"> 
    83                         <font> 
    84                             <pointsize>9</pointsize> 
    85                         </font> 
    86                     </property> 
    87                     <property name="text"> 
    88                         <string>Mute</string> 
    89                     </property> 
    90                     <property name="alignment"> 
    91                         <set>AlignCenter</set> 
    92                     </property> 
    93                 </widget> 
    94                 <widget class="QLabel"> 
    95                     <property name="name"> 
    96                         <cstring>textLabel2_2_3_3</cstring> 
    97                     </property> 
    98                     <property name="geometry"> 
    99                         <rect> 
    100                             <x>20</x> 
    101                             <y>280</y> 
    102                             <width>79</width> 
    103                             <height>22</height> 
    104                         </rect> 
    105                     </property> 
    106                     <property name="text"> 
    107                         <string>Mix output</string> 
    108                     </property> 
    109                     <property name="alignment"> 
    110                         <set>AlignCenter</set> 
    111                     </property> 
    112                 </widget> 
    113                 <widget class="QLabel"> 
    114                     <property name="name"> 
    115                         <cstring>textLabel1_2_11_3</cstring> 
    116                     </property> 
    117                     <property name="geometry"> 
    118                         <rect> 
    119                             <x>20</x> 
    120                             <y>130</y> 
    121                             <width>64</width> 
    122                             <height>22</height> 
    123                         </rect> 
    124                     </property> 
    125                     <property name="font"> 
    126                         <font> 
    127                             <pointsize>9</pointsize> 
    128                         </font> 
    129                     </property> 
    130                     <property name="text"> 
    131                         <string>Destination</string> 
    132                     </property> 
    133                     <property name="alignment"> 
    134                         <set>AlignCenter</set> 
    135                     </property> 
    136                 </widget> 
    137                 <widget class="QSlider"> 
    138                     <property name="name"> 
    139                         <cstring>mix1_fader</cstring> 
    140                     </property> 
    141                     <property name="geometry"> 
    142                         <rect> 
    143                             <x>40</x> 
    144                             <y>160</y> 
    145                             <width>30</width> 
    146                             <height>120</height> 
    147                         </rect> 
    148                     </property> 
    149                     <property name="minValue"> 
    150                         <number>0</number> 
    151                     </property> 
    152                     <property name="maxValue"> 
    153                         <number>128</number> 
    154                     </property> 
    155                     <property name="lineStep"> 
    156                         <number>1</number> 
    157                     </property> 
    158                     <property name="pageStep"> 
    159                         <number>10</number> 
    160                     </property> 
    161                     <property name="value"> 
    162                         <number>128</number> 
    163                     </property> 
    164                     <property name="orientation"> 
    165                         <enum>Vertical</enum> 
    166                     </property> 
    167                     <property name="tickmarks"> 
    168                         <enum>Both</enum> 
    169                     </property> 
    170                     <property name="tickInterval"> 
    171                         <number>10</number> 
    172                     </property> 
    173                 </widget> 
    174                 <widget class="QCheckBox"> 
    175                     <property name="name"> 
    176                         <cstring>mix1_mute</cstring> 
    177                     </property> 
    178                     <property name="geometry"> 
    179                         <rect> 
    180                             <x>50</x> 
    181                             <y>60</y> 
    182                             <width>20</width> 
    183                             <height>26</height> 
    184                         </rect> 
    185                     </property> 
    186                     <property name="sizePolicy"> 
    187                         <sizepolicy> 
    188                             <hsizetype>1</hsizetype> 
    189                             <vsizetype>0</vsizetype> 
    190                             <horstretch>0</horstretch> 
    191                             <verstretch>0</verstretch> 
    192                         </sizepolicy> 
    193                     </property> 
    194                     <property name="font"> 
    195                         <font> 
    196                             <pointsize>9</pointsize> 
    197                         </font> 
    198                     </property> 
    199                     <property name="text"> 
    200                         <string></string> 
    201                     </property> 
    202                 </widget> 
    203                 <widget class="QComboBox"> 
    204                     <item> 
    205                         <property name="text"> 
    206                             <string>Disabled</string> 
    207                         </property> 
    208                     </item> 
    209                     <item> 
    210                         <property name="text"> 
    211                             <string>Phones</string> 
    212                         </property> 
    213                     </item> 
    214                     <item> 
    215                         <property name="text"> 
    216                             <string>Analog 1-2</string> 
    217                         </property> 
    218                     </item> 
    219                     <item> 
    220                         <property name="text"> 
    221                             <string>Analog 3-4</string> 
    222                         </property> 
    223                     </item> 
    224                     <item> 
    225                         <property name="text"> 
    226                             <string>Analog 5-6</string> 
    227                         </property> 
    228                     </item> 
    229                     <item> 
    230                         <property name="text"> 
    231                             <string>Analog 7-8</string> 
    232                         </property> 
    233                     </item> 
    234                     <item> 
    235                         <property name="text"> 
    236                             <string>AES/EBU</string> 
    237                         </property> 
    238                     </item> 
    239                     <item> 
    240                         <property name="text"> 
    241                             <string>SPDIF</string> 
    242                         </property> 
    243                     </item> 
    244                     <item> 
    245                         <property name="text"> 
    246                             <string>ADAT 1-2</string> 
    247                         </property> 
    248                     </item> 
    249                     <item> 
    250                         <property name="text"> 
    251                             <string>ADAT 3-4</string> 
    252                         </property> 
    253                     </item> 
    254                     <item> 
    255                         <property name="text"> 
    256                             <string>ADAT 5-6</string> 
    257                         </property> 
    258                     </item> 
    259                     <item> 
    260                         <property name="text"> 
    261                             <string>ADAT 7-8</string> 
    262                         </property> 
    263                     </item> 
    264                     <property name="name"> 
    265                         <cstring>mix1_dest</cstring> 
    266                     </property> 
    267                     <property name="geometry"> 
    268                         <rect> 
    269                             <x>10</x> 
    270                             <y>110</y> 
    271                             <width>90</width> 
    272                             <height>21</height> 
    273                         </rect> 
    274                     </property> 
    275                     <property name="font"> 
    276                         <font> 
    277                             <pointsize>9</pointsize> 
    278                         </font> 
    279                     </property> 
    280                 </widget> 
    281             </widget> 
    282             <widget class="QGroupBox"> 
    283                 <property name="name"> 
    284                     <cstring>groupBox1</cstring> 
    285                 </property> 
    286                 <property name="geometry"> 
    287                     <rect> 
    288                         <x>10</x> 
    289                         <y>0</y> 
    290                         <width>330</width> 
    291                         <height>340</height> 
    292                     </rect> 
    293                 </property> 
    294                 <property name="title"> 
    295                     <string>Analog</string> 
    296                 </property> 
    297                 <widget class="QLabel"> 
    298                     <property name="name"> 
    299                         <cstring>textLabel1_2_3</cstring> 
    300                     </property> 
    301                     <property name="geometry"> 
    302                         <rect> 
    303                             <x>50</x> 
    304                             <y>130</y> 
    305                             <width>30</width> 
    306                             <height>22</height> 
    307                         </rect> 
    308                     </property> 
    309                     <property name="font"> 
    310                         <font> 
    311                             <pointsize>9</pointsize> 
    312                         </font> 
    313                     </property> 
    314                     <property name="text"> 
    315                         <string>Pan</string> 
    316                     </property> 
    317                     <property name="alignment"> 
    318                         <set>AlignCenter</set> 
    319                     </property> 
    320                 </widget> 
    321                 <widget class="QLabel"> 
    322                     <property name="name"> 
    323                         <cstring>textLabel1_2_4</cstring> 
    324                     </property> 
    325                     <property name="geometry"> 
    326                         <rect> 
    327                             <x>90</x> 
    328                             <y>130</y> 
    329                             <width>30</width> 
    330                             <height>22</height> 
    331                         </rect> 
    332                     </property> 
    333                     <property name="font"> 
    334                         <font> 
    335                             <pointsize>9</pointsize> 
    336                         </font> 
    337                     </property> 
    338                     <property name="text"> 
    339                         <string>Pan</string> 
    340                     </property> 
    341                     <property name="alignment"> 
    342                         <set>AlignCenter</set> 
    343                     </property> 
    344                 </widget> 
    345                 <widget class="QLabel"> 
    346                     <property name="name"> 
    347                         <cstring>textLabel1_2_5</cstring> 
    348                     </property> 
    349                     <property name="geometry"> 
    350                         <rect> 
    351                             <x>130</x> 
    352                             <y>130</y> 
    353                             <width>30</width> 
    354                             <height>22</height> 
    355                         </rect> 
    356                     </property> 
    357                     <property name="font"> 
    358                         <font> 
    359                             <pointsize>9</pointsize> 
    360                         </font> 
    361                     </property> 
    362                     <property name="text"> 
    363                         <string>Pan</string> 
    364                     </property> 
    365                     <property name="alignment"> 
    366                         <set>AlignCenter</set> 
    367                     </property> 
    368                 </widget> 
    369                 <widget class="QLabel"> 
    370                     <property name="name"> 
    371                         <cstring>textLabel1_2_6</cstring> 
    372                     </property> 
    373                     <property name="geometry"> 
    374                         <rect> 
    375                             <x>170</x> 
    376                             <y>130</y> 
    377                             <width>30</width> 
    378                             <height>22</height> 
    379                         </rect> 
    380                     </property> 
    381                     <property name="font"> 
    382                         <font> 
    383                             <pointsize>9</pointsize> 
    384                         </font> 
    385                     </property> 
    386                     <property name="text"> 
    387                         <string>Pan</string> 
    388                     </property> 
    389                     <property name="alignment"> 
    390                         <set>AlignCenter</set> 
    391                     </property> 
    392                 </widget> 
    393                 <widget class="QLabel"> 
    394                     <property name="name"> 
    395                         <cstring>textLabel1_2_7</cstring> 
    396                     </property> 
    397                     <property name="geometry"> 
    398                         <rect> 
    399                             <x>210</x> 
    400                             <y>130</y> 
    401                             <width>30</width> 
    402                             <height>22</height> 
    403                         </rect> 
    404                     </property> 
    405                     <property name="font"> 
    406                         <font> 
    407                             <pointsize>9</pointsize> 
    408                         </font> 
    409                     </property> 
    410                     <property name="text"> 
    411                         <string>Pan</string> 
    412                     </property> 
    413                     <property name="alignment"> 
    414                         <set>AlignCenter</set> 
    415                     </property> 
    416                 </widget> 
    417                 <widget class="QLabel"> 
    418                     <property name="name"> 
    419                         <cstring>textLabel1_2_8</cstring> 
    420                     </property> 
    421                     <property name="geometry"> 
    422                         <rect> 
    423                             <x>250</x> 
    424                             <y>130</y> 
    425                             <width>30</width> 
    426                             <height>22</height> 
    427                         </rect> 
    428                     </property> 
    429                     <property name="font"> 
    430                         <font> 
    431                             <pointsize>9</pointsize> 
    432                         </font> 
    433                     </property> 
    434                     <property name="text"> 
    435                         <string>Pan</string> 
    436                     </property> 
    437                     <property name="alignment"> 
    438                         <set>AlignCenter</set> 
    439                     </property> 
    440                 </widget> 
    441                 <widget class="QLabel"> 
    442                     <property name="name"> 
    443                         <cstring>textLabel1_2_9</cstring> 
    444                     </property> 
    445                     <property name="geometry"> 
    446                         <rect> 
    447                             <x>290</x> 
    448                             <y>130</y> 
    449                             <width>30</width> 
    450                             <height>22</height> 
    451                         </rect> 
    452                     </property> 
    453                     <property name="font"> 
    454                         <font> 
    455                             <pointsize>9</pointsize> 
    456                         </font> 
    457                     </property> 
    458                     <property name="text"> 
    459                         <string>Pan</string> 
    460                     </property> 
    461                     <property name="alignment"> 
    462                         <set>AlignCenter</set> 
    463                     </property> 
    464                 </widget> 
    465                 <widget class="QLabel"> 
    466                     <property name="name"> 
    467                         <cstring>textLabel1_2_2_3</cstring> 
    468                     </property> 
    469                     <property name="geometry"> 
    470                         <rect> 
    471                             <x>50</x> 
    472                             <y>80</y> 
    473                             <width>30</width> 
    474                             <height>22</height> 
    475                         </rect> 
    476                     </property> 
    477                     <property name="font"> 
    478                         <font> 
    479                             <pointsize>9</pointsize> 
    480                         </font> 
    481                     </property> 
    482                     <property name="text"> 
    483                         <string>Mute</string> 
    484                     </property> 
    485                     <property name="alignment"> 
    486                         <set>AlignCenter</set> 
    487                     </property> 
    488                 </widget> 
    489                 <widget class="QLabel"> 
    490                     <property name="name"> 
    491                         <cstring>textLabel1_2_2_4</cstring> 
    492                     </property> 
    493                     <property name="geometry"> 
    494                         <rect> 
    495                             <x>90</x> 
    496                             <y>80</y> 
    497                             <width>30</width> 
    498                             <height>22</height> 
    499                         </rect> 
    500                     </property> 
    501                     <property name="font"> 
    502                         <font> 
    503                             <pointsize>9</pointsize> 
    504                         </font> 
    505                     </property> 
    506                     <property name="text"> 
    507                         <string>Mute</string> 
    508                     </property> 
    509                     <property name="alignment"> 
    510                         <set>AlignCenter</set> 
    511                     </property> 
    512                 </widget> 
    513                 <widget class="QLabel"> 
    514                     <property name="name"> 
    515                         <cstring>textLabel1_2_2_5</cstring> 
    516                     </property> 
    517                     <property name="geometry"> 
    518                         <rect> 
    519                             <x>130</x> 
    520                             <y>80</y> 
    521                             <width>30</width> 
    522                             <height>22</height> 
    523                         </rect> 
    524                     </property> 
    525                     <property name="font"> 
    526                         <font> 
    527                             <pointsize>9</pointsize> 
    528                         </font> 
    529                     </property> 
    530                     <property name="text"> 
    531                         <string>Mute</string> 
    532                     </property> 
    533                     <property name="alignment"> 
    534                         <set>AlignCenter</set> 
    535                     </property> 
    536                 </widget> 
    537                 <widget class="QLabel"> 
    538                     <property name="name"> 
    539                         <cstring>textLabel1_2_2_6</cstring> 
    540                     </property> 
    541                     <property name="geometry"> 
    542                         <rect> 
    543                             <x>170</x> 
    544                             <y>80</y> 
    545                             <width>30</width> 
    546                             <height>22</height> 
    547                         </rect> 
    548                     </property> 
    549                     <property name="font"> 
    550                         <font> 
    551                             <pointsize>9</pointsize> 
    552                         </font> 
    553                     </property> 
    554                     <property name="text"> 
    555                         <string>Mute</string> 
    556                     </property> 
    557                     <property name="alignment"> 
    558                         <set>AlignCenter</set> 
    559                     </property> 
    560                 </widget> 
    561                 <widget class="QLabel"> 
    562                     <property name="name"> 
    563                         <cstring>textLabel1_2_2_7</cstring> 
    564                     </property> 
    565                     <property name="geometry"> 
    566                         <rect> 
    567                             <x>210</x> 
    568                             <y>80</y> 
    569                             <width>30</width> 
    570                             <height>22</height> 
    571                         </rect> 
    572                     </property> 
    573                     <property name="font"> 
    574                         <font> 
    575                             <pointsize>9</pointsize> 
    576                         </font> 
    577                     </property> 
    578                     <property name="text"> 
    579                         <string>Mute</string> 
    580                     </property> 
    581                     <property name="alignment"> 
    582                         <set>AlignCenter</set> 
    583                     </property> 
    584                 </widget> 
    585                 <widget class="QLabel"> 
    586                     <property name="name"> 
    587                         <cstring>textLabel1_2_2_8</cstring> 
    588                     </property> 
    589                     <property name="geometry"> 
    590                         <rect> 
    591                             <x>250</x> 
    592                             <y>80</y> 
    593                             <width>30</width> 
    594                             <height>22</height> 
    595                         </rect> 
    596                     </property> 
    597                     <property name="font"> 
    598                         <font> 
    599                             <pointsize>9</pointsize> 
    600                         </font> 
    601                     </property> 
    602                     <property name="text"> 
    603                         <string>Mute</string> 
    604                     </property> 
    605                     <property name="alignment"> 
    606                         <set>AlignCenter</set> 
    607                     </property> 
    608                 </widget> 
    609                 <widget class="QLabel"> 
    610                     <property name="name"> 
    611                         <cstring>textLabel1_2_2_9</cstring> 
    612                     </property> 
    613                     <property name="geometry"> 
    614                         <rect> 
    615                             <x>290</x> 
    616                             <y>80</y> 
    617                             <width>30</width> 
    618                             <height>22</height> 
    619                         </rect> 
    620                     </property> 
    621                     <property name="font"> 
    622                         <font> 
    623                             <pointsize>9</pointsize> 
    624                         </font> 
    625                     </property> 
    626                     <property name="text"> 
    627                         <string>Mute</string> 
    628                     </property> 
    629                     <property name="alignment"> 
    630                         <set>AlignCenter</set> 
    631                     </property> 
    632                 </widget> 
    633                 <widget class="QLabel"> 
    634                     <property name="name"> 
    635                         <cstring>textLabel1_2_2_2</cstring> 
    636                     </property> 
    637                     <property name="geometry"> 
    638                         <rect> 
    639                             <x>10</x> 
    640                             <y>40</y> 
    641                             <width>30</width> 
    642                             <height>22</height> 
    643                         </rect> 
    644                     </property> 
    645                     <property name="font"> 
    646                         <font> 
    647                             <pointsize>9</pointsize> 
    648                         </font> 
    649                     </property> 
    650                     <property name="text"> 
    651                         <string>Solo</string> 
    652                     </property> 
    653                     <property name="alignment"> 
    654                         <set>AlignCenter</set> 
    655                     </property> 
    656                 </widget> 
    657                 <widget class="QLabel"> 
    658                     <property name="name"> 
    659                         <cstring>textLabel1_2_2_2_2</cstring> 
    660                     </property> 
    661                     <property name="geometry"> 
    662                         <rect> 
    663                             <x>50</x> 
    664                             <y>40</y> 
    665                             <width>30</width> 
    666                             <height>22</height> 
    667                         </rect> 
    668                     </property> 
    669                     <property name="font"> 
    670                         <font> 
    671                             <pointsize>9</pointsize> 
    672                         </font> 
    673                     </property> 
    674                     <property name="text"> 
    675                         <string>Solo</string> 
    676                     </property> 
    677                     <property name="alignment"> 
    678                         <set>AlignCenter</set> 
    679                     </property> 
    680                 </widget> 
    681                 <widget class="QLabel"> 
    682                     <property name="name"> 
    683                         <cstring>textLabel1_2_2_2_3</cstring> 
    684                     </property> 
    685                     <property name="geometry"> 
    686                         <rect> 
    687                             <x>90</x> 
    688                             <y>40</y> 
    689                             <width>30</width> 
    690                             <height>22</height> 
    691                         </rect> 
    692                     </property> 
    693                     <property name="font"> 
    694                         <font> 
    695                             <pointsize>9</pointsize> 
    696                         </font> 
    697                     </property> 
    698                     <property name="text"> 
    699                         <string>Solo</string> 
    700                     </property> 
    701                     <property name="alignment"> 
    702                         <set>AlignCenter</set> 
    703                     </property> 
    704                 </widget> 
    705                 <widget class="QLabel"> 
    706                     <property name="name"> 
    707                         <cstring>textLabel1_2_2_2_4</cstring> 
    708                     </property> 
    709                     <property name="geometry"> 
    710                         <rect> 
    711                             <x>130</x> 
    712                             <y>40</y> 
    713                             <width>30</width> 
    714                             <height>22</height> 
    715                         </rect> 
    716                     </property> 
    717                     <property name="font"> 
    718                         <font> 
    719                             <pointsize>9</pointsize> 
    720                         </font> 
    721                     </property> 
    722                     <property name="text"> 
    723                         <string>Solo</string> 
    724                     </property> 
    725                     <property name="alignment"> 
    726                         <set>AlignCenter</set> 
    727                     </property> 
    728                 </widget> 
    729                 <widget class="QLabel"> 
    730                     <property name="name"> 
    731                         <cstring>textLabel1_2_2_2_5</cstring> 
    732                     </property> 
    733                     <property name="geometry"> 
    734                         <rect> 
    735                             <x>170</x> 
    736                             <y>40</y> 
    737                             <width>30</width> 
    738                             <height>22</height> 
    739                         </rect> 
    740                     </property> 
    741                     <property name="font"> 
    742                         <font> 
    743                             <pointsize>9</pointsize> 
    744                         </font> 
    745                     </property> 
    746                     <property name="text"> 
    747                         <string>Solo</string> 
    748                     </property> 
    749                     <property name="alignment"> 
    750                         <set>AlignCenter</set> 
    751                     </property> 
    752                 </widget> 
    753                 <widget class="QLabel"> 
    754                     <property name="name"> 
    755                         <cstring>textLabel1_2_2_2_6</cstring> 
    756                     </property> 
    757                     <property name="geometry"> 
    758                         <rect> 
    759                             <x>210</x> 
    760                             <y>40</y> 
    761                             <width>30</width> 
    762                             <height>22</height> 
    763                         </rect> 
    764                     </property> 
    765                     <property name="font"> 
    766                         <font> 
    767                             <pointsize>9</pointsize> 
    768                         </font> 
    769                     </property> 
    770                     <property name="text"> 
    771                         <string>Solo</string> 
    772                     </property> 
    773                     <property name="alignment"> 
    774                         <set>AlignCenter</set> 
    775                     </property> 
    776                 </widget> 
    777                 <widget class="QLabel"> 
    778                     <property name="name"> 
    779                         <cstring>textLabel1_2_2_2_7</cstring> 
    780                     </property> 
    781                     <property name="geometry"> 
    782                         <rect> 
    783                             <x>250</x> 
    784                             <y>40</y> 
    785                             <width>30</width> 
    786                             <height>22</height> 
    787                         </rect> 
    788                     </property> 
    789                     <property name="font"> 
    790                         <font> 
    791                             <pointsize>9</pointsize> 
    792                         </font> 
    793                     </property> 
    794                     <property name="text"> 
    795                         <string>Solo</string> 
    796                     </property> 
    797                     <property name="alignment"> 
    798                         <set>AlignCenter</set> 
    799                     </property> 
    800                 </widget> 
    801                 <widget class="QLabel"> 
    802                     <property name="name"> 
    803                         <cstring>textLabel1_2_2_2_8</cstring> 
    804                     </property> 
    805                     <property name="geometry"> 
    806                         <rect> 
    807                             <x>290</x> 
    808                             <y>40</y> 
    809                             <width>30</width> 
    810                             <height>22</height> 
    811                         </rect> 
    812                     </property> 
    813                     <property name="font"> 
    814                         <font> 
    815                             <pointsize>9</pointsize> 
    816                         </font> 
    817                     </property> 
    818                     <property name="text"> 
    819                         <string>Solo</string> 
    820                     </property> 
    821                     <property name="alignment"> 
    822                         <set>AlignCenter</set> 
    823                     </property> 
    824                 </widget> 
    825                 <widget class="QLabel"> 
    826                     <property name="name"> 
    827                         <cstring>textLabel1_2_2</cstring> 
    828                     </property> 
    829                     <property name="geometry"> 
    830                         <rect> 
    831                             <x>10</x> 
    832                             <y>80</y> 
    833                             <width>30</width> 
    834                             <height>22</height> 
    835                         </rect> 
    836                     </property> 
    837                     <property name="font"> 
    838                         <font> 
    839                             <pointsize>9</pointsize> 
    840                         </font> 
    841                     </property> 
    842                     <property name="text"> 
    843                         <string>Mute</string> 
    844                     </property> 
    845                     <property name="alignment"> 
    846                         <set>AlignCenter</set> 
    847                     </property> 
    848                 </widget> 
    849                 <widget class="QLabel"> 
    850                     <property name="name"> 
    851                         <cstring>textLabel2_3</cstring> 
    852                     </property> 
    853                     <property name="geometry"> 
    854                         <rect> 
    855                             <x>90</x> 
    856                             <y>280</y> 
    857                             <width>30</width> 
    858                             <height>22</height> 
    859                         </rect> 
    860                     </property> 
    861                     <property name="text"> 
    862                         <string>3</string> 
    863                     </property> 
    864                     <property name="alignment"> 
    865                         <set>AlignCenter</set> 
    866                     </property> 
    867                 </widget> 
    868                 <widget class="QLabel"> 
    869                     <property name="name"> 
    870                         <cstring>textLabel2_4</cstring> 
    871                     </property> 
    872                     <property name="geometry"> 
    873                         <rect> 
    874                             <x>130</x> 
    875                             <y>280</y> 
    876                             <width>30</width> 
    877                             <height>22</height> 
    878                         </rect> 
    879                     </property> 
    880                     <property name="text"> 
    881                         <string>4</string> 
    882                     </property> 
    883                     <property name="alignment"> 
    884                         <set>AlignCenter</set> 
    885                     </property> 
    886                 </widget> 
    887                 <widget class="QLabel"> 
    888                     <property name="name"> 
    889                         <cstring>textLabel2_5</cstring> 
    890                     </property> 
    891                     <property name="geometry"> 
    892                         <rect> 
    893                             <x>170</x> 
    894                             <y>280</y> 
    895                             <width>30</width> 
    896                             <height>22</height> 
    897                         </rect> 
    898                     </property> 
    899                     <property name="text"> 
    900                         <string>5</string> 
    901                     </property> 
    902                     <property name="alignment"> 
    903                         <set>AlignCenter</set> 
    904                     </property> 
    905                 </widget> 
    906                 <widget class="QLabel"> 
    907                     <property name="name"> 
    908                         <cstring>textLabel2_6</cstring> 
    909                     </property> 
    910                     <property name="geometry"> 
    911                         <rect> 
    912                             <x>210</x> 
    913                             <y>280</y> 
    914                             <width>30</width> 
    915                             <height>22</height> 
    916                         </rect> 
    917                     </property> 
    918                     <property name="text"> 
    919                         <string>6</string> 
    920                     </property> 
    921                     <property name="alignment"> 
    922                         <set>AlignCenter</set> 
    923                     </property> 
    924                 </widget> 
    925                 <widget class="QLabel"> 
    926                     <property name="name"> 
    927                         <cstring>textLabel2_7</cstring> 
    928                     </property> 
    929                     <property name="geometry"> 
    930                         <rect> 
    931                             <x>250</x> 
    932                             <y>280</y> 
    933                             <width>30</width> 
    934                             <height>22</height> 
    935                         </rect> 
    936                     </property> 
    937                     <property name="text"> 
    938                         <string>7</string> 
    939                     </property> 
    940                     <property name="alignment"> 
    941                         <set>AlignCenter</set> 
    942                     </property> 
    943                 </widget> 
    944                 <widget class="QLabel"> 
    945                     <property name="name"> 
    946                         <cstring>textLabel2_8</cstring> 
    947                     </property> 
    948                     <property name="geometry"> 
    949                         <rect> 
    950                             <x>290</x> 
    951                             <y>280</y> 
    952                             <width>30</width> 
    953                             <height>22</height> 
    954                         </rect> 
    955                     </property> 
    956                     <property name="text"> 
    957                         <string>8</string> 
    958                     </property> 
    959                     <property name="alignment"> 
    960                         <set>AlignCenter</set> 
    961                     </property> 
    962                 </widget> 
    963                 <widget class="QSlider"> 
    964                     <property name="name"> 
    965                         <cstring>mix1ana2_fader</cstring> 
    966                     </property> 
    967                     <property name="geometry"> 
    968                         <rect> 
    969                             <x>50</x> 
    970                             <y>160</y> 
    971                             <width>30</width> 
    972                             <height>120</height> 
    973                         </rect> 
    974                     </property> 
    975                     <property name="minValue"> 
    976                         <number>0</number> 
    977                     </property> 
    978                     <property name="maxValue"> 
    979                         <number>128</number> 
    980                     </property> 
    981                     <property name="lineStep"> 
    982                         <number>1</number> 
    983                     </property> 
    984                     <property name="pageStep"> 
    985                         <number>10</number> 
    986                     </property> 
    987                     <property name="value"> 
    988                         <number>128</number> 
    989                     </property> 
    990                     <property name="orientation"> 
    991                         <enum>Vertical</enum> 
    992                     </property> 
    993                     <property name="tickmarks"> 
    994                         <enum>Both</enum> 
    995                     </property> 
    996                     <property name="tickInterval"> 
    997                         <number>10</number> 
    998                     </property> 
    999                 </widget> 
    1000                 <widget class="QSlider"> 
    1001                     <property name="name"> 
    1002                         <cstring>mix1ana3_fader</cstring> 
    1003                     </property> 
    1004                     <property name="geometry"> 
    1005                         <rect> 
    1006                             <x>90</x> 
    1007                             <y>160</y> 
    1008                             <width>30</width> 
    1009                             <height>120</height> 
    1010                         </rect> 
    1011                     </property> 
    1012                     <property name="minValue"> 
    1013                         <number>0</number> 
    1014                     </property> 
    1015                     <property name="maxValue"> 
    1016                         <number>128</number> 
    1017                     </property> 
    1018                     <property name="lineStep"> 
    1019                         <number>1</number> 
    1020                     </property> 
    1021                     <property name="pageStep"> 
    1022                         <number>10</number> 
    1023                     </property> 
    1024                     <property name="value"> 
    1025                         <number>128</number> 
    1026                     </property> 
    1027                     <property name="orientation"> 
    1028                         <enum>Vertical</enum> 
    1029                     </property> 
    1030                     <property name="tickmarks"> 
    1031                         <enum>Both</enum> 
    1032                     </property> 
    1033                     <property name="tickInterval"> 
    1034                         <number>10</number> 
    1035                     </property> 
    1036                 </widget> 
    1037                 <widget class="QSlider"> 
    1038                     <property name="name"> 
    1039                         <cstring>mix1ana4_fader</cstring> 
    1040                     </property> 
    1041                     <property name="geometry"> 
    1042                         <rect> 
    1043                             <x>130</x> 
    1044                             <y>160</y> 
    1045                             <width>30</width> 
    1046                             <height>120</height> 
    1047                         </rect> 
    1048                     </property> 
    1049                     <property name="minValue"> 
    1050                         <number>0</number> 
    1051                     </property> 
    1052                     <property name="maxValue"> 
    1053                         <number>128</number> 
    1054                     </property> 
    1055                     <property name="lineStep"> 
    1056                         <number>1</number> 
    1057                     </property> 
    1058                     <property name="pageStep"> 
    1059                         <number>10</number> 
    1060                     </property> 
    1061                     <property name="value"> 
    1062                         <number>128</number> 
    1063                     </property> 
    1064                     <property name="orientation"> 
    1065                         <enum>Vertical</enum> 
    1066                     </property> 
    1067                     <property name="tickmarks"> 
    1068                         <enum>Both</enum> 
    1069                     </property> 
    1070                     <property name="tickInterval"> 
    1071                         <number>10</number> 
    1072                     </property> 
    1073                 </widget> 
    1074                 <widget class="QSlider"> 
    1075                     <property name="name"> 
    1076                         <cstring>mix1ana5_fader</cstring> 
    1077                     </property> 
    1078                     <property name="geometry"> 
    1079                         <rect> 
    1080                             <x>170</x> 
    1081                             <y>160</y> 
    1082                             <width>30</width> 
    1083                             <height>120</height> 
    1084                         </rect> 
    1085                     </property> 
    1086                     <property name="minValue"> 
    1087                         <number>0</number> 
    1088                     </property> 
    1089                     <property name="maxValue"> 
    1090                         <number>128</number> 
    1091                     </property> 
    1092                     <property name="lineStep"> 
    1093                         <number>1</number> 
    1094                     </property> 
    1095                     <property name="pageStep"> 
    1096                         <number>10</number> 
    1097                     </property> 
    1098                     <property name="value"> 
    1099                         <number>128</number> 
    1100                     </property> 
    1101                     <property name="orientation"> 
    1102                         <enum>Vertical</enum> 
    1103                     </property> 
    1104                     <property name="tickmarks"> 
    1105                         <enum>Both</enum> 
    1106                     </property> 
    1107                     <property name="tickInterval"> 
    1108                         <number>10</number> 
    1109                     </property> 
    1110                 </widget> 
    1111                 <widget class="QSlider"> 
    1112                     <property name="name"> 
    1113                         <cstring>mix1ana6_fader</cstring> 
    1114                     </property> 
    1115                     <property name="geometry"> 
    1116                         <rect> 
    1117                             <x>210</x> 
    1118                             <y>160</y> 
    1119                             <width>30</width> 
    1120                             <height>120</height> 
    1121                         </rect> 
    1122                     </property> 
    1123                     <property name="minValue"> 
    1124                         <number>0</number> 
    1125                     </property> 
    1126                     <property name="maxValue"> 
    1127                         <number>128</number> 
    1128                     </property> 
    1129                     <property name="lineStep"> 
    1130                         <number>1</number> 
    1131                     </property> 
    1132                     <property name="pageStep"> 
    1133                         <number>10</number> 
    1134                     </property> 
    1135                     <property name="value"> 
    1136                         <number>128</number> 
    1137                     </property> 
    1138                     <property name="orientation"> 
    1139                         <enum>Vertical</enum> 
    1140                     </property> 
    1141                     <property name="tickmarks"> 
    1142                         <enum>Both</enum> 
    1143                     </property> 
    1144                     <property name="tickInterval"> 
    1145                         <number>10</number> 
    1146                     </property> 
    1147                 </widget> 
    1148                 <widget class="QSlider"> 
    1149                     <property name="name"> 
    1150                         <cstring>mix1ana7_fader</cstring> 
    1151                     </property> 
    1152                     <property name="geometry"> 
    1153                         <rect> 
    1154                             <x>250</x> 
    1155                             <y>160</y> 
    1156                             <width>30</width> 
    1157                             <height>120</height> 
    1158                         </rect> 
    1159                     </property> 
    1160                     <property name="minValue"> 
    1161                         <number>0</number> 
    1162                     </property> 
    1163                     <property name="maxValue"> 
    1164                         <number>128</number> 
    1165                     </property> 
    1166                     <property name="lineStep"> 
    1167                         <number>1</number> 
    1168                     </property> 
    1169                     <property name="pageStep"> 
    1170                         <number>10</number> 
    1171                     </property> 
    1172                     <property name="value"> 
    1173                         <number>128</number> 
    1174                     </property> 
    1175                     <property name="orientation"> 
    1176                         <enum>Vertical</enum> 
    1177                     </property> 
    1178                     <property name="tickmarks"> 
    1179                         <enum>Both</enum> 
    1180                     </property> 
    1181                     <property name="tickInterval"> 
    1182                         <number>10</number> 
    1183                     </property> 
    1184                 </widget> 
    1185                 <widget class="QSlider"> 
    1186                     <property name="name"> 
    1187                         <cstring>mix1ana8_fader</cstring> 
    1188                     </property> 
    1189                     <property name="geometry"> 
    1190                         <rect> 
    1191                             <x>290</x> 
    1192                             <y>160</y> 
    1193                             <width>30</width> 
    1194                             <height>120</height> 
    1195                         </rect> 
    1196                     </property> 
    1197                     <property name="minValue"> 
    1198                         <number>0</number> 
    1199                     </property> 
    1200                     <property name="maxValue"> 
    1201                         <number>128</number> 
    1202                     </property> 
    1203                     <property name="lineStep"> 
    1204                         <number>1</number> 
    1205                     </property> 
    1206                     <property name="pageStep"> 
    1207                         <number>10</number> 
    1208                     </property> 
    1209                     <property name="value"> 
    1210                         <number>128</number> 
    1211                     </property> 
    1212                     <property name="orientation"> 
    1213                         <enum>Vertical</enum> 
    1214                     </property> 
    1215                     <property name="tickmarks"> 
    1216                         <enum>Both</enum> 
    1217                     </property> 
    1218                     <property name="tickInterval"> 
    1219                         <number>10</number> 
    1220                     </property> 
    1221                 </widget> 
    1222                 <widget class="QDial"> 
    1223                     <property name="name"> 
    1224                         <cstring>mix1ana2_pan</cstring> 
    1225                     </property> 
    1226                     <property name="geometry"> 
    1227                         <rect> 
    1228                             <x>50</x> 
    1229                             <y>100</y> 
    1230                             <width>30</width> 
    1231                             <height>30</height> 
    1232                         </rect> 
    1233                     </property> 
    1234                     <property name="minValue"> 
    1235                         <number>-64</number> 
    1236                     </property> 
    1237                     <property name="maxValue"> 
    1238                         <number>64</number> 
    1239                     </property> 
    1240                 </widget> 
    1241                 <widget class="QDial"> 
    1242                     <property name="name"> 
    1243                         <cstring>mix1ana3_pan</cstring> 
    1244                     </property> 
    1245                     <property name="geometry"> 
    1246                         <rect> 
    1247                             <x>90</x> 
    1248                             <y>100</y> 
    1249                             <width>30</width> 
    1250                             <height>30</height> 
    1251                         </rect> 
    1252                     </property> 
    1253                     <property name="minValue"> 
    1254                         <number>-64</number> 
    1255                     </property> 
    1256                     <property name="maxValue"> 
    1257                         <number>64</number> 
    1258                     </property> 
    1259                 </widget> 
    1260                 <widget class="QDial"> 
    1261                     <property name="name"> 
    1262                         <cstring>mix1ana4_pan</cstring> 
    1263                     </property> 
    1264                     <property name="geometry"> 
    1265                         <rect> 
    1266                             <x>130</x> 
    1267                             <y>100</y> 
    1268                             <width>30</width> 
    1269                             <height>30</height> 
    1270                         </rect> 
    1271                     </property> 
    1272                     <property name="minValue"> 
    1273                         <number>-64</number> 
    1274                     </property> 
    1275                     <property name="maxValue"> 
    1276                         <number>64</number> 
    1277                     </property> 
    1278                 </widget> 
    1279                 <widget class="QDial"> 
    1280                     <property name="name"> 
    1281                         <cstring>mix1ana5_pan</cstring> 
    1282                     </property> 
    1283                     <property name="geometry"> 
    1284                         <rect> 
    1285                             <x>170</x> 
    1286                             <y>100</y> 
    1287                             <width>30</width> 
    1288                             <height>30</height> 
    1289                         </rect> 
    1290                     </property> 
    1291                     <property name="minValue"> 
    1292                         <number>-64</number> 
    1293                     </property> 
    1294                     <property name="maxValue"> 
    1295                         <number>64</number> 
    1296                     </property> 
    1297                 </widget> 
    1298                 <widget class="QDial"> 
    1299                     <property name="name"> 
    1300                         <cstring>mix1ana6_pan</cstring> 
    1301                     </property> 
    1302                     <property name="geometry"> 
    1303                         <rect> 
    1304                             <x>210</x> 
    1305                             <y>100</y> 
    1306                             <width>30</width> 
    1307                             <height>30</height> 
    1308                         </rect> 
    1309                     </property> 
    1310                     <property name="minValue"> 
    1311                         <number>-64</number> 
    1312                     </property> 
    1313                     <property name="maxValue"> 
    1314                         <number>64</number> 
    1315                     </property> 
    1316                 </widget> 
    1317                 <widget class="QDial"> 
    1318                     <property name="name"> 
    1319                         <cstring>mix1ana7_pan</cstring> 
    1320                     </property> 
    1321                     <property name="geometry"> 
    1322                         <rect> 
    1323                             <x>250</x> 
    1324                             <y>100</y> 
    1325                             <width>30</width> 
    1326                             <height>30</height> 
    1327                         </rect> 
    1328                     </property> 
    1329                     <property name="minValue"> 
    1330                         <number>-64</number> 
    1331                     </property> 
    1332                     <property name="maxValue"> 
    1333                         <number>64</number> 
    1334                     </property> 
    1335                 </widget> 
    1336                 <widget class="QDial"> 
    1337                     <property name="name"> 
    1338                         <cstring>mix1ana8_pan</cstring> 
    1339                     </property> 
    1340                     <property name="geometry"> 
    1341                         <rect> 
    1342                             <x>290</x> 
    1343                             <y>100</y> 
    1344                             <width>30</width> 
    1345                             <height>30</height> 
    1346                         </rect> 
    1347                     </property> 
    1348                     <property name="minValue"> 
    1349                         <number>-64</number> 
    1350                     </property> 
    1351                     <property name="maxValue"> 
    1352                         <number>64</number> 
    1353                     </property> 
    1354                 </widget> 
    1355                 <widget class="QCheckBox"> 
    1356                     <property name="name"> 
    1357                         <cstring>mix1ana1_mute</cstring> 
    1358                     </property> 
    1359                     <property name="geometry"> 
    1360                         <rect> 
    1361                             <x>20</x> 
    1362                             <y>60</y> 
    1363                             <width>20</width> 
    1364                             <height>26</height> 
    1365                         </rect> 
    1366                     </property> 
    1367                     <property name="sizePolicy"> 
    1368                         <sizepolicy> 
    1369                             <hsizetype>1</hsizetype> 
    1370                             <vsizetype>0</vsizetype> 
    1371                             <horstretch>0</horstretch> 
    1372                             <verstretch>0</verstretch> 
    1373                         </sizepolicy> 
    1374                     </property> 
    1375                     <property name="font"> 
    1376                         <font> 
    1377                             <pointsize>9</pointsize> 
    1378                         </font> 
    1379                     </property> 
    1380                     <property name="text"> 
    1381                         <string></string> 
    1382                     </property> 
    1383                 </widget> 
    1384                 <widget class="QCheckBox"> 
    1385                     <property name="name"> 
    1386                         <cstring>mix1ana2_mute</cstring> 
    1387                     </property> 
    1388                     <property name="geometry"> 
    1389                         <rect> 
    1390                             <x>60</x> 
    1391                             <y>60</y> 
    1392                             <width>20</width> 
    1393                             <height>26</height> 
    1394                         </rect> 
    1395                     </property> 
    1396                     <property name="sizePolicy"> 
    1397                         <sizepolicy> 
    1398                             <hsizetype>1</hsizetype> 
    1399                             <vsizetype>0</vsizetype> 
    1400                             <horstretch>0</horstretch> 
    1401                             <verstretch>0</verstretch> 
    1402                         </sizepolicy> 
    1403                     </property> 
    1404                     <property name="font"> 
    1405                         <font> 
    1406                             <pointsize>9</pointsize> 
    1407                         </font> 
    1408                     </property> 
    1409                     <property name="text"> 
    1410                         <string></string> 
    1411                     </property> 
    1412                 </widget> 
    1413                 <widget class="QCheckBox"> 
    1414                     <property name="name"> 
    1415                         <cstring>mix1ana3_mute</cstring> 
    1416                     </property> 
    1417                     <property name="geometry"> 
    1418                         <rect> 
    1419                             <x>100</x> 
    1420                             <y>60</y> 
    1421                             <width>20</width> 
    1422                             <height>26</height> 
    1423                         </rect> 
    1424                     </property> 
    1425                     <property name="sizePolicy"> 
    1426                         <sizepolicy> 
    1427                             <hsizetype>1</hsizetype> 
    1428                             <vsizetype>0</vsizetype> 
    1429                             <horstretch>0</horstretch> 
    1430                             <verstretch>0</verstretch> 
    1431                         </sizepolicy> 
    1432                     </property> 
    1433                     <property name="font"> 
    1434                         <font> 
    1435                             <pointsize>9</pointsize> 
    1436                         </font> 
    1437                     </property> 
    1438                     <property name="text"> 
    1439                         <string></string> 
    1440                     </property> 
    1441                 </widget> 
    1442                 <widget class="QCheckBox"> 
    1443                     <property name="name"> 
    1444                         <cstring>mix1ana4_mute</cstring> 
    1445                     </property> 
    1446                     <property name="geometry"> 
    1447                         <rect> 
    1448                             <x>140</x> 
    1449                             <y>60</y> 
    1450                             <width>20</width> 
    1451                             <height>26</height> 
    1452                         </rect> 
    1453                     </property> 
    1454                     <property name="sizePolicy"> 
    1455                         <sizepolicy> 
    1456                             <hsizetype>1</hsizetype> 
    1457                             <vsizetype>0</vsizetype> 
    1458                             <horstretch>0</horstretch> 
    1459                             <verstretch>0</verstretch> 
    1460                         </sizepolicy> 
    1461                     </property> 
    1462                     <property name="font"> 
    1463                         <font> 
    1464                             <pointsize>9</pointsize> 
    1465                         </font> 
    1466                     </property> 
    1467                     <property name="text"> 
    1468                         <string></string> 
    1469                     </property> 
    1470                 </widget> 
    1471                 <widget class="QCheckBox"> 
    1472                     <property name="name"> 
    1473                         <cstring>mix1ana5_mute</cstring> 
    1474                     </property> 
    1475                     <property name="geometry"> 
    1476                         <rect> 
    1477                             <x>180</x> 
    1478                             <y>60</y> 
    1479                             <width>20</width> 
    1480                             <height>26</height> 
    1481                         </rect> 
    1482                     </property> 
    1483                     <property name="sizePolicy"> 
    1484                         <sizepolicy> 
    1485                             <hsizetype>1</hsizetype> 
    1486                             <vsizetype>0</vsizetype> 
    1487                             <horstretch>0</horstretch> 
    1488                             <verstretch>0</verstretch> 
    1489                         </sizepolicy> 
    1490                     </property> 
    1491                     <property name="font"> 
    1492                         <font> 
    1493                             <pointsize>9</pointsize> 
    1494                         </font> 
    1495                     </property> 
    1496                     <property name="text"> 
    1497                         <string></string> 
    1498                     </property> 
    1499                 </widget> 
    1500                 <widget class="QCheckBox"> 
    1501                     <property name="name"> 
    1502                         <cstring>mix1ana6_mute</cstring> 
    1503                     </property> 
    1504                     <property name="geometry"> 
    1505                         <rect> 
    1506                             <x>220</x> 
    1507                             <y>60</y> 
    1508                             <width>20</width> 
    1509                             <height>26</height> 
    1510                         </rect> 
    1511                     </property> 
    1512                     <property name="sizePolicy"> 
    1513                         <sizepolicy> 
    1514                             <hsizetype>1</hsizetype> 
    1515                             <vsizetype>0</vsizetype> 
    1516                             <horstretch>0</horstretch> 
    1517                             <verstretch>0</verstretch> 
    1518                         </sizepolicy> 
    1519                     </property> 
    1520                     <property name="font"> 
    1521                         <font> 
    1522                             <pointsize>9</pointsize> 
    1523                         </font> 
    1524                     </property> 
    1525                     <property name="text"> 
    1526                         <string></string> 
    1527                     </property> 
    1528                 </widget> 
    1529                 <widget class="QCheckBox"> 
    1530                     <property name="name"> 
    1531                         <cstring>mix1ana7_mute</cstring> 
    1532                     </property> 
    1533                     <property name="geometry"> 
    1534                         <rect> 
    1535                             <x>260</x> 
    1536                             <y>60</y> 
    1537                             <width>20</width> 
    1538                             <height>26</height> 
    1539                         </rect> 
    1540                     </property> 
    1541                     <property name="sizePolicy"> 
    1542                         <sizepolicy> 
    1543                             <hsizetype>1</hsizetype> 
    1544                             <vsizetype>0</vsizetype> 
    1545                             <horstretch>0</horstretch> 
    1546                             <verstretch>0</verstretch> 
    1547                         </sizepolicy> 
    1548                     </property> 
    1549                     <property name="font"> 
    1550                         <font> 
    1551                             <pointsize>9</pointsize> 
    1552                         </font> 
    1553                     </property> 
    1554                     <property name="text"> 
    1555                         <string></string> 
    1556                     </property> 
    1557                 </widget> 
    1558                 <widget class="QCheckBox"> 
    1559                     <property name="name"> 
    1560                         <cstring>mix1ana8_mute</cstring> 
    1561                     </property> 
    1562                     <property name="geometry"> 
    1563                         <rect> 
    1564                             <x>300</x> 
    1565                             <y>60</y> 
    1566                             <width>20</width> 
    1567                             <height>26</height> 
    1568                         </rect> 
    1569                     </property> 
    1570                     <property name="sizePolicy"> 
    1571                         <sizepolicy> 
    1572                             <hsizetype>1</hsizetype> 
    1573                             <vsizetype>0</vsizetype> 
    1574                             <horstretch>0</horstretch> 
    1575                             <verstretch>0</verstretch> 
    1576                         </sizepolicy> 
    1577                     </property> 
    1578                     <property name="font"> 
    1579                         <font> 
    1580                             <pointsize>9</pointsize> 
    1581                         </font> 
    1582                     </property> 
    1583                     <property name="text"> 
    1584                         <string></string> 
    1585                     </property> 
    1586                 </widget> 
    1587                 <widget class="QCheckBox"> 
    1588                     <property name="name"> 
    1589                         <cstring>mix1ana1_solo</cstring> 
    1590                     </property> 
    1591                     <property name="geometry"> 
    1592                         <rect> 
    1593                             <x>20</x> 
    1594                             <y>20</y> 
    1595                             <width>20</width> 
    1596                             <height>26</height> 
    1597                         </rect> 
    1598                     </property> 
    1599                     <property name="sizePolicy"> 
    1600                         <sizepolicy> 
    1601                             <hsizetype>1</hsizetype> 
    1602                             <vsizetype>0</vsizetype> 
    1603                             <horstretch>0</horstretch> 
    1604                             <verstretch>0</verstretch> 
    1605                         </sizepolicy> 
    1606                     </property> 
    1607                     <property name="font"> 
    1608                         <font> 
    1609                             <pointsize>9</pointsize> 
    1610                         </font> 
    1611                     </property> 
    1612                     <property name="text"> 
    1613                         <string></string> 
    1614                     </property> 
    1615                 </widget> 
    1616                 <widget class="QCheckBox"> 
    1617                     <property name="name"> 
    1618                         <cstring>mix1ana2_solo</cstring> 
    1619                     </property> 
    1620                     <property name="geometry"> 
    1621                         <rect> 
    1622                             <x>60</x> 
    1623                             <y>20</y> 
    1624                             <width>20</width> 
    1625                             <height>26</height> 
    1626                         </rect> 
    1627                     </property> 
    1628                     <property name="sizePolicy"> 
    1629                         <sizepolicy> 
    1630                             <hsizetype>1</hsizetype> 
    1631                             <vsizetype>0</vsizetype> 
    1632                             <horstretch>0</horstretch> 
    1633                             <verstretch>0</verstretch> 
    1634                         </sizepolicy> 
    1635                     </property> 
    1636                     <property name="font"> 
    1637                         <font> 
    1638                             <pointsize>9</pointsize> 
    1639                         </font> 
    1640                     </property> 
    1641                     <property name="text"> 
    1642                         <string></string> 
    1643                     </property> 
    1644                 </widget> 
    1645                 <widget class="QCheckBox"> 
    1646                     <property name="name"> 
    1647                         <cstring>mix1ana3_solo</cstring> 
    1648                     </property> 
    1649                     <property name="geometry"> 
    1650                         <rect> 
    1651                             <x>100</x> 
    1652                             <y>20</y> 
    1653                             <width>20</width> 
    1654                             <height>26</height> 
    1655                         </rect> 
    1656                     </property> 
    1657                     <property name="sizePolicy"> 
    1658                         <sizepolicy> 
    1659                             <hsizetype>1</hsizetype> 
    1660                             <vsizetype>0</vsizetype> 
    1661                             <horstretch>0</horstretch> 
    1662                             <verstretch>0</verstretch> 
    1663                         </sizepolicy> 
    1664                     </property> 
    1665                     <property name="font"> 
    1666                         <font> 
    1667                             <pointsize>9</pointsize> 
    1668                         </font> 
    1669                     </property> 
    1670                     <property name="text"> 
    1671                         <string></string> 
    1672                     </property> 
    1673                 </widget> 
    1674                 <widget class="QCheckBox"> 
    1675                     <property name="name"> 
    1676                         <cstring>mix1ana4_solo</cstring> 
    1677                     </property> 
    1678                     <property name="geometry"> 
    1679                         <rect> 
    1680                             <x>140</x> 
    1681                             <y>20</y> 
    1682                             <width>20</width> 
    1683                             <height>26</height> 
    1684                         </rect> 
    1685                     </property> 
    1686                     <property name="sizePolicy"> 
    1687                         <sizepolicy> 
    1688                             <hsizetype>1</hsizetype> 
    1689                             <vsizetype>0</vsizetype> 
    1690                             <horstretch>0</horstretch> 
    1691                             <verstretch>0</verstretch> 
    1692                         </sizepolicy> 
    1693                     </property> 
    1694                     <property name="font"> 
    1695                         <font> 
    1696                             <pointsize>9</pointsize> 
    1697                         </font> 
    1698                     </property> 
    1699                     <property name="text"> 
    1700                         <string></string> 
    1701                     </property> 
    1702                 </widget> 
    1703                 <widget class="QCheckBox"> 
    1704                     <property name="name"> 
    1705                         <cstring>mix1ana5_solo</cstring> 
    1706                     </property> 
    1707                     <property name="geometry"> 
    1708                         <rect> 
    1709                             <x>180</x> 
    1710                             <y>20</y> 
    1711                             <width>20</width> 
    1712                             <height>26</height> 
    1713                         </rect> 
    1714                     </property> 
    1715                     <property name="sizePolicy"> 
    1716                         <sizepolicy> 
    1717                             <hsizetype>1</hsizetype> 
    1718                             <vsizetype>0</vsizetype> 
    1719                             <horstretch>0</horstretch> 
    1720                             <verstretch>0</verstretch> 
    1721                         </sizepolicy> 
    1722                     </property> 
    1723                     <property name="font"> 
    1724                         <font> 
    1725                             <pointsize>9</pointsize> 
    1726                         </font> 
    1727                     </property> 
    1728                     <property name="text"> 
    1729                         <string></string> 
    1730                     </property> 
    1731                 </widget> 
    1732                 <widget class="QCheckBox"> 
    1733                     <property name="name"> 
    1734                         <cstring>mix1ana6_solo</cstring> 
    1735                     </property> 
    1736                     <property name="geometry"> 
    1737                         <rect> 
    1738                             <x>220</x> 
    1739                             <y>20</y> 
    1740                             <width>20</width> 
    1741                             <height>26</height> 
    1742                         </rect> 
    1743                     </property> 
    1744                     <property name="sizePolicy"> 
    1745                         <sizepolicy> 
    1746                             <hsizetype>1</hsizetype> 
    1747                             <vsizetype>0</vsizetype> 
    1748                             <horstretch>0</horstretch> 
    1749                             <verstretch>0</verstretch> 
    1750                         </sizepolicy> 
    1751                     </property> 
    1752                     <property name="font"> 
    1753                         <font> 
    1754                             <pointsize>9</pointsize> 
    1755                         </font> 
    1756                     </property> 
    1757                     <property name="text"> 
    1758                         <string></string> 
    1759                     </property> 
    1760                 </widget> 
    1761                 <widget class="QCheckBox"> 
    1762                     <property name="name"> 
    1763                         <cstring>mix1ana7_solo</cstring> 
    1764                     </property> 
    1765                     <property name="geometry"> 
    1766                         <rect> 
    1767                             <x>260</x> 
    1768                             <y>20</y> 
    1769                             <width>20</width> 
    1770                             <height>26</height> 
    1771                         </rect> 
    1772                     </property> 
    1773                     <property name="sizePolicy"> 
    1774                         <sizepolicy> 
    1775                             <hsizetype>1</hsizetype> 
    1776                             <vsizetype>0</vsizetype> 
    1777                             <horstretch>0</horstretch> 
    1778                             <verstretch>0</verstretch> 
    1779                         </sizepolicy> 
    1780                     </property> 
    1781                     <property name="font"> 
    1782                         <font> 
    1783                             <pointsize>9</pointsize> 
    1784                         </font> 
    1785                     </property> 
    1786                     <property name="text"> 
    1787                         <string></string> 
    1788                     </property> 
    1789                 </widget> 
    1790                 <widget class="QCheckBox"> 
    1791                     <property name="name"> 
    1792                         <cstring>mix1ana8_solo</cstring> 
    1793                     </property> 
    1794                     <property name="geometry"> 
    1795                         <rect> 
    1796                             <x>300</x> 
    1797                             <y>20</y> 
    1798                             <width>20</width> 
    1799                             <height>26</height> 
    1800                         </rect> 
    1801                     </property> 
    1802                     <property name="sizePolicy"> 
    1803                         <sizepolicy> 
    1804                             <hsizetype>1</hsizetype> 
    1805                             <vsizetype>0</vsizetype> 
    1806                             <horstretch>0</horstretch> 
    1807                             <verstretch>0</verstretch> 
    1808                         </sizepolicy> 
    1809                     </property> 
    1810                     <property name="font"> 
    1811                         <font> 
    1812                             <pointsize>9</pointsize> 
    1813                         </font> 
    1814                     </property> 
    1815                     <property name="text"> 
    1816                         <string></string> 
    1817                     </property> 
    1818                 </widget> 
    1819                 <widget class="QDial"> 
    1820                     <property name="name"> 
    1821                         <cstring>mix1ana1_pan</cstring> 
    1822                     </property> 
    1823                     <property name="geometry"> 
    1824                         <rect> 
    1825                             <x>10</x> 
    1826                             <y>100</y> 
    1827                             <width>30</width> 
    1828                             <height>30</height> 
    1829                         </rect> 
    1830                     </property> 
    1831                     <property name="minValue"> 
    1832                         <number>-64</number> 
    1833                     </property> 
    1834                     <property name="maxValue"> 
    1835                         <number>64</number> 
    1836                     </property> 
    1837                 </widget> 
    1838                 <widget class="QLabel"> 
    1839                     <property name="name"> 
    1840                         <cstring>textLabel1_2</cstring> 
    1841                     </property> 
    1842                     <property name="geometry"> 
    1843                         <rect> 
    1844                             <x>10</x> 
    1845                             <y>130</y> 
    1846                             <width>30</width> 
    1847                             <height>22</height> 
    1848                         </rect> 
    1849                     </property> 
    1850                     <property name="font"> 
    1851                         <font> 
    1852                             <pointsize>9</pointsize> 
    1853                         </font> 
    1854                     </property> 
    1855                     <property name="text"> 
    1856                         <string>Pan</string> 
    1857                     </property> 
    1858                     <property name="alignment"> 
    1859                         <set>AlignCenter</set> 
    1860                     </property> 
    1861                 </widget> 
    1862                 <widget class="QSlider"> 
    1863                     <property name="name"> 
    1864                         <cstring>mix1ana1_fader</cstring> 
    1865                     </property> 
    1866                     <property name="geometry"> 
    1867                         <rect> 
    1868                             <x>10</x> 
    1869                             <y>160</y> 
    1870                             <width>30</width> 
    1871                             <height>120</height> 
    1872                         </rect> 
    1873                     </property> 
    1874                     <property name="minValue"> 
    1875                         <number>0</number> 
    1876                     </property> 
    1877                     <property name="maxValue"> 
    1878                         <number>128</number> 
    1879                     </property> 
    1880                     <property name="lineStep"> 
    1881                         <number>1</number> 
    1882                     </property> 
    1883                     <property name="pageStep"> 
    1884                         <number>10</number> 
    1885                     </property> 
    1886                     <property name="value"> 
    1887                         <number>128</number> 
    1888                     </property> 
    1889                     <property name="orientation"> 
    1890                         <enum>Vertical</enum> 
    1891                     </property> 
    1892                     <property name="tickmarks"> 
    1893                         <enum>Both</enum> 
    1894                     </property> 
    1895                     <property name="tickInterval"> 
    1896                         <number>10</number> 
    1897                     </property> 
    1898                 </widget> 
    1899                 <widget class="QLabel"> 
    1900                     <property name="name"> 
    1901                         <cstring>textLabel2</cstring> 
    1902                     </property> 
    1903                     <property name="geometry"> 
    1904                         <rect> 
    1905                             <x>10</x> 
    1906                             <y>280</y> 
    1907                             <width>30</width> 
    1908                             <height>22</height> 
    1909                         </rect> 
    1910                     </property> 
    1911                     <property name="text"> 
    1912                         <string>1</string> 
    1913                     </property> 
    1914                     <property name="alignment"> 
    1915                         <set>AlignCenter</set> 
    1916                     </property> 
    1917                 </widget> 
    1918                 <widget class="QLabel"> 
    1919                     <property name="name"> 
    1920                         <cstring>textLabel2_2</cstring> 
    1921                     </property> 
    1922                     <property name="geometry"> 
    1923                         <rect> 
    1924                             <x>50</x> 
    1925                             <y>280</y> 
    1926                             <width>30</width> 
    1927                             <height>22</height> 
    1928                         </rect> 
    1929                     </property> 
    1930                     <property name="text"> 
    1931                         <string>2</string> 
    1932                     </property> 
    1933                     <property name="alignment"> 
    1934                         <set>AlignCenter</set> 
    1935                     </property> 
    1936                 </widget> 
    1937                 <widget class="QCheckBox"> 
    1938                     <property name="name"> 
    1939                         <cstring>mix1ana1_mute_2_2</cstring> 
    1940                     </property> 
    1941                     <property name="geometry"> 
    1942                         <rect> 
    1943                             <x>40</x> 
    1944                             <y>290</y> 
    1945                             <width>20</width> 
    1946                             <height>26</height> 
    1947                         </rect> 
    1948                     </property> 
    1949                     <property name="sizePolicy"> 
    1950                         <sizepolicy> 
    1951                             <hsizetype>1</hsizetype> 
    1952                             <vsizetype>0</vsizetype> 
    1953                             <horstretch>0</horstretch> 
    1954                             <verstretch>0</verstretch> 
    1955                         </sizepolicy> 
    1956                     </property> 
    1957                     <property name="font"> 
    1958                         <font> 
    1959                             <pointsize>9</pointsize> 
    1960                         </font> 
    1961                     </property> 
    1962                     <property name="text"> 
    1963                         <string></string> 
    1964                     </property> 
    1965                 </widget> 
    1966                 <widget class="QCheckBox"> 
    1967                     <property name="name"> 
    1968                         <cstring>mix1ana1_mute_2_2_3</cstring> 
    1969                     </property> 
    1970                     <property name="geometry"> 
    1971                         <rect> 
    1972                             <x>200</x> 
    1973                             <y>290</y> 
    1974                             <width>20</width> 
    1975                             <height>26</height> 
    1976                         </rect> 
    1977                     </property> 
    1978                     <property name="sizePolicy"> 
    1979                         <sizepolicy> 
    1980                             <hsizetype>1</hsizetype> 
    1981                             <vsizetype>0</vsizetype> 
    1982                             <horstretch>0</horstretch> 
    1983                             <verstretch>0</verstretch> 
    1984                         </sizepolicy> 
    1985                     </property> 
    1986                     <property name="font"> 
    1987                         <font> 
    1988                             <pointsize>9</pointsize> 
    1989                         </font> 
    1990                     </property> 
    1991                     <property name="text"> 
    1992                         <string></string> 
    1993                     </property> 
    1994                 </widget> 
    1995                 <widget class="QCheckBox"> 
    1996                     <property name="name"> 
    1997                         <cstring>mix1ana1_mute_2_2_2</cstring> 
    1998                     </property> 
    1999                     <property name="geometry"> 
    2000                         <rect> 
    2001                             <x>120</x> 
    2002                             <y>290</y> 
    2003                             <width>20</width> 
    2004                             <height>26</height> 
    2005                         </rect> 
    2006                     </property> 
    2007                     <property name="sizePolicy"> 
    2008                         <sizepolicy> 
    2009                             <hsizetype>1</hsizetype> 
    2010                             <vsizetype>0</vsizetype> 
    2011                             <horstretch>0</horstretch> 
    2012                             <verstretch>0</verstretch> 
    2013                         </sizepolicy> 
    2014                     </property> 
    2015                     <property name="font"> 
    2016                         <font> 
    2017                             <pointsize>9</pointsize> 
    2018                         </font> 
    2019                     </property> 
    2020                     <property name="text"> 
    2021                         <string></string> 
    2022                     </property> 
    2023                 </widget> 
    2024                 <widget class="QLabel"> 
    2025                     <property name="name"> 
    2026                         <cstring>textLabel1_2_2_14_2</cstring> 
    2027                     </property> 
    2028                     <property name="geometry"> 
    2029                         <rect> 
    2030                             <x>110</x> 
    2031                             <y>310</y> 
    2032                             <width>30</width> 
    2033                             <height>22</height> 
    2034                         </rect> 
    2035                     </property> 
    2036                     <property name="font"> 
    2037                         <font> 
    2038                             <pointsize>9</pointsize> 
    2039                         </font> 
    2040                     </property> 
    2041                     <property name="text"> 
    2042                         <string>Pair</string> 
    2043                     </property> 
    2044                     <property name="alignment"> 
    2045                         <set>AlignCenter</set> 
    2046                     </property> 
    2047                 </widget> 
    2048                 <widget class="QLabel"> 
    2049                     <property name="name"> 
    2050                         <cstring>textLabel1_2_2_14_3</cstring> 
    2051                     </property> 
    2052                     <property name="geometry"> 
    2053                         <rect> 
    2054                             <x>190</x> 
    2055                             <y>310</y> 
    2056                             <width>30</width> 
    2057                             <height>22</height> 
    2058                         </rect> 
    2059                     </property> 
    2060                     <property name="font"> 
    2061                         <font> 
    2062                             <pointsize>9</pointsize> 
    2063                         </font> 
    2064                     </property> 
    2065                     <property name="text"> 
    2066                         <string>Pair</string> 
    2067                     </property> 
    2068                     <property name="alignment"> 
    2069                         <set>AlignCenter</set> 
    2070                     </property> 
    2071                 </widget> 
    2072                 <widget class="QLabel"> 
    2073                     <property name="name"> 
    2074                         <cstring>textLabel1_2_2_14_4</cstring> 
    2075                     </property> 
    2076                     <property name="geometry"> 
    2077                         <rect> 
    2078                             <x>270</x> 
    2079                             <y>310</y> 
    2080                             <width>30</width> 
    2081                             <height>22</height> 
    2082                         </rect> 
    2083                     </property> 
    2084                     <property name="font"> 
    2085                         <font> 
    2086                             <pointsize>9</pointsize> 
    2087                         </font> 
    2088                     </property> 
    2089                     <property name="text"> 
    2090                         <string>Pair</string> 
    2091                     </property> 
    2092                     <property name="alignment"> 
    2093                         <set>AlignCenter</set> 
    2094                     </property> 
    2095                 </widget> 
    2096                 <widget class="QCheckBox"> 
    2097                     <property name="name"> 
    2098                         <cstring>mix1ana1_mute_2_2_4</cstring> 
    2099                     </property> 
    2100                     <property name="geometry"> 
    2101                         <rect> 
    2102                             <x>280</x> 
    2103                             <y>290</y> 
    2104                             <width>20</width> 
    2105                             <height>26</height> 
    2106                         </rect> 
    2107                     </property> 
    2108                     <property name="sizePolicy"> 
    2109                         <sizepolicy> 
    2110                             <hsizetype>1</hsizetype> 
    2111                             <vsizetype>0</vsizetype> 
    2112                             <horstretch>0</horstretch> 
    2113                             <verstretch>0</verstretch> 
    2114                         </sizepolicy> 
    2115                     </property> 
    2116                     <property name="font"> 
    2117                         <font> 
    2118                             <pointsize>9</pointsize> 
    2119                         </font> 
    2120                     </property> 
    2121                     <property name="text"> 
    2122                         <string></string> 
    2123                     </property> 
    2124                 </widget> 
    2125                 <widget class="QLabel"> 
    2126                     <property name="name"> 
    2127                         <cstring>textLabel1_2_2_14</cstring> 
    2128                     </property> 
    2129                     <property name="geometry"> 
    2130                         <rect> 
    2131                             <x>30</x> 
    2132                             <y>310</y> 
    2133                             <width>30</width> 
    2134                             <height>22</height> 
    2135                         </rect> 
    2136                     </property> 
    2137                     <property name="font"> 
    2138                         <font> 
    2139                             <pointsize>9</pointsize> 
    2140                         </font> 
    2141                     </property> 
    2142                     <property name="text"> 
    2143                         <string>Pair</string> 
    2144                     </property> 
    2145                     <property name="alignment"> 
    2146                         <set>AlignCenter</set> 
    2147                     </property> 
    2148                 </widget> 
    2149             </widget> 
    2150             <widget class="QGroupBox"> 
    2151                 <property name="name"> 
    2152                     <cstring>mix1_aes_group</cstring> 
    2153                 </property> 
    2154                 <property name="geometry"> 
    2155                     <rect> 
    2156                         <x>360</x> 
    2157                         <y>0</y> 
    2158                         <width>100</width> 
    2159                         <height>340</height> 
    2160                     </rect> 
    2161                 </property> 
    2162                 <property name="title"> 
    2163                     <string>AES/EBU</string> 
    2164                 </property> 
    2165                 <widget class="QCheckBox"> 
    2166                     <property name="name"> 
    2167                         <cstring>checkBox1_2_3</cstring> 
    2168                     </property> 
    2169                     <property name="geometry"> 
    2170                         <rect> 
    2171                             <x>20</x> 
    2172                             <y>20</y> 
    2173                             <width>20</width> 
    2174                             <height>26</height> 
    2175                         </rect> 
    2176                     </property> 
    2177                     <property name="sizePolicy"> 
    2178                         <sizepolicy> 
    2179                             <hsizetype>1</hsizetype> 
    2180                             <vsizetype>0</vsizetype> 
    2181                             <horstretch>0</horstretch> 
    2182                             <verstretch>0</verstretch> 
    2183                         </sizepolicy> 
    2184                     </property> 
    2185                     <property name="font"> 
    2186                         <font> 
    2187                             <pointsize>9</pointsize> 
    2188                         </font> 
    2189                     </property> 
    2190                     <property name="text"> 
    2191                         <string></string> 
    2192                     </property> 
    2193                 </widget> 
    2194                 <widget class="QLabel"> 
    2195                     <property name="name"> 
    2196                         <cstring>textLabel1_2_11</cstring> 
    2197                     </property> 
    2198                     <property name="geometry"> 
    2199                         <rect> 
    2200                             <x>10</x> 
    2201                             <y>130</y> 
    2202                             <width>30</width> 
    2203                             <height>22</height> 
    2204                         </rect> 
    2205                     </property> 
    2206                     <property name="font"> 
    2207                         <font> 
    2208                             <pointsize>9</pointsize> 
    2209                         </font> 
    2210                     </property> 
    2211                     <property name="text"> 
    2212                         <string>Pan</string> 
    2213                     </property> 
    2214                     <property name="alignment"> 
    2215                         <set>AlignCenter</set> 
    2216                     </property> 
    2217                 </widget> 
    2218                 <widget class="QLabel"> 
    2219                     <property name="name"> 
    2220                         <cstring>textLabel1_2_3_3</cstring> 
    2221                     </property> 
    2222                     <property name="geometry"> 
    2223                         <rect> 
    2224                             <x>50</x> 
    2225                             <y>130</y> 
    2226                             <width>30</width> 
    2227                             <height>22</height> 
    2228                         </rect> 
    2229                     </property> 
    2230                     <property name="font"> 
    2231                         <font> 
    2232                             <pointsize>9</pointsize> 
    2233                         </font> 
    2234                     </property> 
    2235                     <property name="text"> 
    2236                         <string>Pan</string> 
    2237                     </property> 
    2238                     <property name="alignment"> 
    2239                         <set>AlignCenter</set> 
    2240                     </property> 
    2241                 </widget> 
    2242                 <widget class="QDial"> 
    2243                     <property name="name"> 
    2244                         <cstring>dial2_10</cstring> 
    2245                     </property> 
    2246                     <property name="geometry"> 
    2247                         <rect> 
    2248                             <x>10</x> 
    2249                             <y>100</y> 
    2250                             <width>30</width> 
    2251                             <height>30</height> 
    2252                         </rect> 
    2253                     </property> 
    2254                     <property name="minValue"> 
    2255                         <number>-64</number> 
    2256                     </property> 
    2257                     <property name="maxValue"> 
    2258                         <number>64</number> 
    2259                     </property> 
    2260                 </widget> 
    2261                 <widget class="QLabel"> 
    2262                     <property name="name"> 
    2263                         <cstring>textLabel1_2_2_11</cstring> 
    2264                     </property> 
    2265                     <property name="geometry"> 
    2266                         <rect> 
    2267                             <x>10</x> 
    2268                             <y>80</y> 
    2269                             <width>30</width> 
    2270                             <height>22</height> 
    2271                         </rect> 
    2272                     </property> 
    2273                     <property name="font"> 
    2274                         <font> 
    2275                             <pointsize>9</pointsize> 
    2276                         </font> 
    2277                     </property> 
    2278                     <property name="text"> 
    2279                         <string>Mute</string> 
    2280                     </property> 
    2281                     <property name="alignment"> 
    2282                         <set>AlignCenter</set> 
    2283                     </property> 
    2284                 </widget> 
    2285                 <widget class="QCheckBox"> 
    2286                     <property name="name"> 
    2287                         <cstring>checkBox1_18</cstring> 
    2288                     </property> 
    2289                     <property name="geometry"> 
    2290                         <rect> 
    2291                             <x>20</x> 
    2292                             <y>60</y> 
    2293                             <width>20</width> 
    2294                             <height>26</height> 
    2295                         </rect> 
    2296                     </property> 
    2297                     <property name="sizePolicy"> 
    2298                         <sizepolicy> 
    2299                             <hsizetype>1</hsizetype> 
    2300                             <vsizetype>0</vsizetype> 
    2301                             <horstretch>0</horstretch> 
    2302                             <verstretch>0</verstretch> 
    2303                         </sizepolicy> 
    2304                     </property> 
    2305                     <property name="font"> 
    2306                         <font> 
    2307                             <pointsize>9</pointsize> 
    2308                         </font> 
    2309                     </property> 
    2310                     <property name="text"> 
    2311                         <string></string> 
    2312                     </property> 
    2313                 </widget> 
    2314                 <widget class="QCheckBox"> 
    2315                     <property name="name"> 
    2316                         <cstring>checkBox1_3_3</cstring> 
    2317                     </property> 
    2318                     <property name="geometry"> 
    2319                         <rect> 
    2320                             <x>60</x> 
    2321                             <y>60</y> 
    2322                             <width>20</width> 
    2323                             <height>26</height> 
    2324                         </rect> 
    2325                     </property> 
    2326                     <property name="sizePolicy"> 
    2327                         <sizepolicy> 
    2328                             <hsizetype>1</hsizetype> 
    2329                             <vsizetype>0</vsizetype> 
    2330                             <horstretch>0</horstretch> 
    2331                             <verstretch>0</verstretch> 
    2332                         </sizepolicy> 
    2333                     </property> 
    2334                     <property name="font"> 
    2335                         <font> 
    2336                             <pointsize>9</pointsize> 
    2337                         </font> 
    2338                     </property> 
    2339                     <property name="text"> 
    2340                         <string></string> 
    2341                     </property> 
    2342                 </widget> 
    2343                 <widget class="QCheckBox"> 
    2344                     <property name="name"> 
    2345                         <cstring>checkBox1_10_3</cstring> 
    2346                     </property> 
    2347                     <property name="geometry"> 
    2348                         <rect> 
    2349                             <x>60</x> 
    2350                             <y>20</y> 
    2351                             <width>20</width> 
    2352                             <height>26</height> 
    2353                         </rect> 
    2354                     </property> 
    2355                     <property name="sizePolicy"> 
    2356                         <sizepolicy> 
    2357                             <hsizetype>1</hsizetype> 
    2358                             <vsizetype>0</vsizetype> 
    2359                             <horstretch>0</horstretch> 
    2360                             <verstretch>0</verstretch> 
    2361                         </sizepolicy> 
    2362                     </property> 
    2363                     <property name="font"> 
    2364                         <font> 
    2365                             <pointsize>9</pointsize> 
    2366                         </font> 
    2367                     </property> 
    2368                     <property name="text"> 
    2369                         <string></string> 
    2370                     </property> 
    2371                 </widget> 
    2372                 <widget class="QLabel"> 
    2373                     <property name="name"> 
    2374                         <cstring>textLabel1_2_2_2_10</cstring> 
    2375                     </property> 
    2376                     <property name="geometry"> 
    2377                         <rect> 
    2378                             <x>10</x> 
    2379                             <y>40</y> 
    2380                             <width>30</width> 
    2381                             <height>22</height> 
    2382                         </rect> 
    2383                     </property> 
    2384                     <property name="font"> 
    2385                         <font> 
    2386                             <pointsize>9</pointsize> 
    2387                         </font> 
    2388                     </property> 
    2389                     <property name="text"> 
    2390                         <string>Solo</string> 
    2391                     </property> 
    2392                     <property name="alignment"> 
    2393                         <set>AlignCenter</set> 
    2394                     </property> 
    2395                 </widget> 
    2396                 <widget class="QLabel"> 
    2397                     <property name="name"> 
    2398                         <cstring>textLabel1_2_2_2_2_3</cstring> 
    2399                     </property> 
    2400                     <property name="geometry"> 
    2401                         <rect> 
    2402                             <x>50</x> 
    2403                             <y>40</y> 
    2404                             <width>30</width> 
    2405                             <height>22</height> 
    2406                         </rect> 
    2407                     </property> 
    2408                     <property name="font"> 
    2409                         <font> 
    2410                             <pointsize>9</pointsize> 
    2411                         </font> 
    2412                     </property> 
    2413                     <property name="text"> 
    2414                         <string>Solo</string> 
    2415                     </property> 
    2416                     <property name="alignment"> 
    2417                         <set>AlignCenter</set> 
    2418                     </property> 
    2419                 </widget> 
    2420                 <widget class="QLabel"> 
    2421                     <property name="name"> 
    2422                         <cstring>textLabel1_2_2_3_3</cstring> 
    2423                     </property> 
    2424                     <property name="geometry"> 
    2425                         <rect> 
    2426                             <x>50</x> 
    2427                             <y>80</y> 
    2428                             <width>30</width> 
    2429                             <height>22</height> 
    2430                         </rect> 
    2431                     </property> 
    2432                     <property name="font"> 
    2433                         <font> 
    2434                             <pointsize>9</pointsize> 
    2435                         </font> 
    2436                     </property> 
    2437                     <property name="text"> 
    2438                         <string>Mute</string> 
    2439                     </property> 
    2440                     <property name="alignment"> 
    2441                         <set>AlignCenter</set> 
    2442                     </property> 
    2443                 </widget> 
    2444                 <widget class="QLabel"> 
    2445                     <property name="name"> 
    2446                         <cstring>textLabel2_10</cstring> 
    2447                     </property> 
    2448                     <property name="geometry"> 
    2449                         <rect> 
    2450                             <x>10</x> 
    2451                             <y>280</y> 
    2452                             <width>30</width> 
    2453                             <height>22</height> 
    2454                         </rect> 
    2455                     </property> 
    2456                     <property name="text"> 
    2457                         <string>1</string> 
    2458                     </property> 
    2459                     <property name="alignment"> 
    2460                         <set>AlignCenter</set> 
    2461                     </property> 
    2462                 </widget> 
    2463                 <widget class="QSlider"> 
    2464                     <property name="name"> 
    2465                         <cstring>sldFB1_10</cstring> 
    2466                     </property> 
    2467                     <property name="geometry"> 
    2468                         <rect> 
    2469                             <x>10</x> 
    2470                             <y>160</y> 
    2471                             <width>30</width> 
    2472                             <height>120</height> 
    2473                         </rect> 
    2474                     </property> 
    2475                     <property name="minValue"> 
    2476                         <number>0</number> 
    2477                     </property> 
    2478                     <property name="maxValue"> 
    2479                         <number>128</number> 
    2480                     </property> 
    2481                     <property name="lineStep"> 
    2482                         <number>1</number> 
    2483                     </property> 
    2484                     <property name="pageStep"> 
    2485                         <number>10</number> 
    2486                     </property> 
    2487                     <property name="value"> 
    2488                         <number>128</number> 
    2489                     </property> 
    2490                     <property name="orientation"> 
    2491                         <enum>Vertical</enum> 
    2492                     </property> 
    2493                     <property name="tickmarks"> 
    2494                         <enum>Both</enum> 
    2495                     </property> 
    2496                     <property name="tickInterval"> 
    2497                         <number>10</number> 
    2498                     </property> 
    2499                 </widget> 
    2500                 <widget class="QSlider"> 
    2501                     <property name="name"> 
    2502                         <cstring>sldFB1_2_3</cstring> 
    2503                     </property> 
    2504                     <property name="geometry"> 
    2505                         <rect> 
    2506                             <x>50</x> 
    2507                             <y>160</y> 
    2508                             <width>30</width> 
    2509                             <height>120</height> 
    2510                         </rect> 
    2511                     </property> 
    2512                     <property name="minValue"> 
    2513                         <number>0</number> 
    2514                     </property> 
    2515                     <property name="maxValue"> 
    2516                         <number>128</number> 
    2517                     </property> 
    2518                     <property name="lineStep"> 
    2519                         <number>1</number> 
    2520                     </property> 
    2521                     <property name="pageStep"> 
    2522                         <number>10</number> 
    2523                     </property> 
    2524                     <property name="value"> 
    2525                         <number>128</number> 
    2526                     </property> 
    2527                     <property name="orientation"> 
    2528                         <enum>Vertical</enum> 
    2529                     </property> 
    2530                     <property name="tickmarks"> 
    2531                         <enum>Both</enum> 
    2532                     </property> 
    2533                     <property name="tickInterval"> 
    2534                         <number>10</number> 
    2535                     </property> 
    2536                 </widget> 
    2537                 <widget class="QLabel"> 
    2538                     <property name="name"> 
    2539                         <cstring>textLabel2_2_3</cstring> 
    2540                     </property> 
    2541                     <property name="geometry"> 
    2542                         <rect> 
    2543                             <x>50</x> 
    2544                             <y>280</y> 
    2545                             <width>30</width> 
    2546                             <height>22</height> 
    2547                         </rect> 
    2548                     </property> 
    2549                     <property name="text"> 
    2550                         <string>2</string> 
    2551                     </property> 
    2552                     <property name="alignment"> 
    2553                         <set>AlignCenter</set> 
    2554                     </property> 
    2555                 </widget> 
    2556                 <widget class="QDial"> 
    2557                     <property name="name"> 
    2558                         <cstring>dial2_2_3</cstring> 
    2559                     </property> 
    2560                     <property name="geometry"> 
    2561                         <rect> 
    2562                             <x>50</x> 
    2563                             <y>100</y> 
    2564                             <width>30</width> 
    2565                             <height>30</height> 
    2566                         </rect> 
    2567                     </property> 
    2568                     <property name="minValue"> 
    2569                         <number>-64</number> 
    2570                     </property> 
    2571                     <property name="maxValue"> 
    2572                         <number>64</number> 
    2573                     </property> 
    2574                 </widget> 
    2575                 <widget class="QCheckBox"> 
    2576                     <property name="name"> 
    2577                         <cstring>mix1ana1_mute_2_2_4_2</cstring> 
    2578                     </property> 
    2579                     <property name="geometry"> 
    2580                         <rect> 
    2581                             <x>40</x> 
    2582                             <y>290</y> 
    2583                             <width>20</width> 
    2584                             <height>26</height> 
    2585                         </rect> 
    2586                     </property> 
    2587                     <property name="sizePolicy"> 
    2588                         <sizepolicy> 
    2589                             <hsizetype>1</hsizetype> 
    2590                             <vsizetype>0</vsizetype> 
    2591                             <horstretch>0</horstretch> 
    2592                             <verstretch>0</verstretch> 
    2593                         </sizepolicy> 
    2594                     </property> 
    2595                     <property name="font"> 
    2596                         <font> 
    2597                             <pointsize>9</pointsize> 
    2598                         </font> 
    2599                     </property> 
    2600                     <property name="text"> 
    2601                         <string></string> 
    2602                     </property> 
    2603                 </widget> 
    2604                 <widget class="QLabel"> 
    2605                     <property name="name"> 
    2606                         <cstring>textLabel1_2_2_14_7</cstring> 
    2607                     </property> 
    2608                     <property name="geometry"> 
    2609                         <rect> 
    2610                             <x>30</x> 
    2611                             <y>310</y> 
    2612                             <width>30</width> 
    2613                             <height>22</height> 
    2614                         </rect> 
    2615                     </property> 
    2616                     <property name="font"> 
    2617                         <font> 
    2618                             <pointsize>9</pointsize> 
    2619                         </font> 
    2620                     </property> 
    2621                     <property name="text"> 
    2622                         <string>Pair</string> 
    2623                     </property> 
    2624                     <property name="alignment"> 
    2625                         <set>AlignCenter</set> 
    2626                     </property> 
    2627                 </widget> 
    2628             </widget> 
    2629             <widget class="QGroupBox"> 
    2630                 <property name="name"> 
    2631                     <cstring>mix1_spdif_group</cstring> 
    2632                 </property> 
    2633                 <property name="geometry"> 
    2634                     <rect> 
    2635                         <x>360</x> 
    2636                         <y>350</y> 
    2637                         <width>100</width> 
    2638                         <height>340</height> 
    2639                     </rect> 
    2640                 </property> 
    2641                 <property name="title"> 
    2642                     <string>SPDIF</string> 
    2643                 </property> 
    2644                 <widget class="QCheckBox"> 
    2645                     <property name="name"> 
    2646                         <cstring>checkBox1_2_3_2</cstring> 
    2647                     </property> 
    2648                     <property name="geometry"> 
    2649                         <rect> 
    2650                             <x>20</x> 
    2651                             <y>20</y> 
    2652                             <width>20</width> 
    2653                             <height>26</height> 
    2654                         </rect> 
    2655                     </property> 
    2656                     <property name="sizePolicy"> 
    2657                         <sizepolicy> 
    2658                             <hsizetype>1</hsizetype> 
    2659                             <vsizetype>0</vsizetype> 
    2660                             <horstretch>0</horstretch> 
    2661                             <verstretch>0</verstretch> 
    2662                         </sizepolicy> 
    2663                     </property> 
    2664                     <property name="font"> 
    2665                         <font> 
    2666                             <pointsize>9</pointsize> 
    2667                         </font> 
    2668                     </property> 
    2669                     <property name="text"> 
    2670                         <string></string> 
    2671                     </property> 
    2672                 </widget> 
    2673                 <widget class="QLabel"> 
    2674                     <property name="name"> 
    2675                         <cstring>textLabel1_2_11_2</cstring> 
    2676                     </property> 
    2677                     <property name="geometry"> 
    2678                         <rect> 
    2679                             <x>10</x> 
    2680                             <y>130</y> 
    2681                             <width>30</width> 
    2682                             <height>22</height> 
    2683                         </rect> 
    2684                     </property> 
    2685                     <property name="font"> 
    2686                         <font> 
    2687                             <pointsize>9</pointsize> 
    2688                         </font> 
    2689                     </property> 
    2690                     <property name="text"> 
    2691                         <string>Pan</string> 
    2692                     </property> 
    2693                     <property name="alignment"> 
    2694                         <set>AlignCenter</set> 
    2695                     </property> 
    2696                 </widget> 
    2697                 <widget class="QLabel"> 
    2698                     <property name="name"> 
    2699                         <cstring>textLabel1_2_3_3_2</cstring> 
    2700                     </property> 
    2701                     <property name="geometry"> 
    2702                         <rect> 
    2703                             <x>50</x> 
    2704                             <y>130</y> 
    2705                             <width>30</width> 
    2706                             <height>22</height> 
    2707                         </rect> 
    2708                     </property> 
    2709                     <property name="font"> 
    2710                         <font> 
    2711                             <pointsize>9</pointsize> 
    2712                         </font> 
    2713                     </property> 
    2714                     <property name="text"> 
    2715                         <string>Pan</string> 
    2716                     </property> 
    2717                     <property name="alignment"> 
    2718                         <set>AlignCenter</set> 
    2719                     </property> 
    2720                 </widget> 
    2721                 <widget class="QDial"> 
    2722                     <property name="name"> 
    2723                         <cstring>dial2_10_2</cstring> 
    2724                     </property> 
    2725                     <property name="geometry"> 
    2726                         <rect> 
    2727                             <x>10</x> 
    2728                             <y>100</y> 
    2729                             <width>30</width> 
    2730                             <height>30</height> 
    2731                         </rect> 
    2732                     </property> 
    2733                     <property name="minValue"> 
    2734                         <number>-64</number> 
    2735                     </property> 
    2736                     <property name="maxValue"> 
    2737                         <number>64</number> 
    2738                     </property> 
    2739                 </widget> 
    2740                 <widget class="QDial"> 
    2741                     <property name="name"> 
    2742                         <cstring>dial2_2_3_2</cstring> 
    2743                     </property> 
    2744                     <property name="geometry"> 
    2745                         <rect> 
    2746                             <x>50</x> 
    2747                             <y>100</y> 
    2748                             <width>30</width> 
    2749                             <height>30</height> 
    2750                         </rect> 
    2751                     </property> 
    2752                     <property name="minValue"> 
    2753                         <number>-64</number> 
    2754                     </property> 
    2755                     <property name="maxValue"> 
    2756                         <number>64</number> 
    2757                     </property> 
    2758                 </widget> 
    2759                 <widget class="QLabel"> 
    2760                     <property name="name"> 
    2761                         <cstring>textLabel1_2_2_11_2</cstring> 
    2762                     </property> 
    2763                     <property name="geometry"> 
    2764                         <rect> 
    2765                             <x>10</x> 
    2766                             <y>80</y> 
    2767                             <width>30</width> 
    2768                             <height>22</height> 
    2769                         </rect> 
    2770                     </property> 
    2771                     <property name="font"> 
    2772                         <font> 
    2773                             <pointsize>9</pointsize> 
    2774                         </font> 
    2775                     </property> 
    2776                     <property name="text"> 
    2777                         <string>Mute</string> 
    2778                     </property> 
    2779                     <property name="alignment"> 
    2780                         <set>AlignCenter</set> 
    2781                     </property> 
    2782                 </widget> 
    2783                 <widget class="QCheckBox"> 
    2784                     <property name="name"> 
    2785                         <cstring>checkBox1_18_2</cstring> 
    2786                     </property> 
    2787                     <property name="geometry"> 
    2788                         <rect> 
    2789                             <x>20</x> 
    2790                             <y>60</y> 
    2791                             <width>20</width> 
    2792                             <height>26</height> 
    2793                         </rect> 
    2794                     </property> 
    2795                     <property name="sizePolicy"> 
    2796                         <sizepolicy> 
    2797                             <hsizetype>1</hsizetype> 
    2798                             <vsizetype>0</vsizetype> 
    2799                             <horstretch>0</horstretch> 
    2800                             <verstretch>0</verstretch> 
    2801                         </sizepolicy> 
    2802                     </property> 
    2803                     <property name="font"> 
    2804                         <font> 
    2805                             <pointsize>9</pointsize> 
    2806                         </font> 
    2807                     </property> 
    2808                     <property name="text"> 
    2809                         <string></string> 
    2810                     </property> 
    2811                 </widget> 
    2812                 <widget class="QCheckBox"> 
    2813                     <property name="name"> 
    2814                         <cstring>checkBox1_3_3_2</cstring> 
    2815                     </property> 
    2816                     <property name="geometry"> 
    2817                         <rect> 
    2818                             <x>60</x> 
    2819                             <y>60</y> 
    2820                             <width>20</width> 
    2821                             <height>26</height> 
    2822                         </rect> 
    2823                     </property> 
    2824                     <property name="sizePolicy"> 
    2825                         <sizepolicy> 
    2826                             <hsizetype>1</hsizetype> 
    2827                             <vsizetype>0</vsizetype> 
    2828                             <horstretch>0</horstretch> 
    2829                             <verstretch>0</verstretch> 
    2830                         </sizepolicy> 
    2831                     </property> 
    2832                     <property name="font"> 
    2833                         <font> 
    2834                             <pointsize>9</pointsize> 
    2835                         </font> 
    2836                     </property> 
    2837                     <property name="text"> 
    2838                         <string></string> 
    2839                     </property> 
    2840                 </widget> 
    2841                 <widget class="QCheckBox"> 
    2842                     <property name="name"> 
    2843                         <cstring>checkBox1_10_3_2</cstring> 
    2844                     </property> 
    2845                     <property name="geometry"> 
    2846                         <rect> 
    2847                             <x>60</x> 
    2848                             <y>20</y> 
    2849                             <width>20</width> 
    2850                             <height>26</height> 
    2851                         </rect> 
    2852                     </property> 
    2853                     <property name="sizePolicy"> 
    2854                         <sizepolicy> 
    2855                             <hsizetype>1</hsizetype> 
    2856                             <vsizetype>0</vsizetype> 
    2857                             <horstretch>0</horstretch> 
    2858                             <verstretch>0</verstretch> 
    2859                         </sizepolicy> 
    2860                     </property> 
    2861                     <property name="font"> 
    2862                         <font> 
    2863                             <pointsize>9</pointsize> 
    2864                         </font> 
    2865                     </property> 
    2866                     <property name="text"> 
    2867                         <string></string> 
    2868                     </property> 
    2869                 </widget> 
    2870                 <widget class="QLabel"> 
    2871                     <property name="name"> 
    2872                         <cstring>textLabel1_2_2_2_10_2</cstring> 
    2873                     </property> 
    2874                     <property name="geometry"> 
    2875                         <rect> 
    2876                             <x>10</x> 
    2877                             <y>40</y> 
    2878                             <width>30</width> 
    2879                             <height>22</height> 
    2880                         </rect> 
    2881                     </property> 
    2882                     <property name="font"> 
    2883                         <font> 
    2884                             <pointsize>9</pointsize> 
    2885                         </font> 
    2886                     </property> 
    2887                     <property name="text"> 
    2888                         <string>Solo</string> 
    2889                     </property> 
    2890                     <property name="alignment"> 
    2891                         <set>AlignCenter</set> 
    2892                     </property> 
    2893                 </widget> 
    2894                 <widget class="QLabel"> 
    2895                     <property name="name"> 
    2896                         <cstring>textLabel1_2_2_2_2_3_2</cstring> 
    2897                     </property> 
    2898                     <property name="geometry"> 
    2899                         <rect> 
    2900                             <x>50</x> 
    2901                             <y>40</y> 
    2902                             <width>30</width> 
    2903                             <height>22</height> 
    2904                         </rect> 
    2905                     </property> 
    2906                     <property name="font"> 
    2907                         <font> 
    2908                             <pointsize>9</pointsize> 
    2909                         </font> 
    2910                     </property> 
    2911                     <property name="text"> 
    2912                         <string>Solo</string> 
    2913                     </property> 
    2914                     <property name="alignment"> 
    2915                         <set>AlignCenter</set> 
    2916                     </property> 
    2917                 </widget> 
    2918                 <widget class="QLabel"> 
    2919                     <property name="name"> 
    2920                         <cstring>textLabel2_10_2</cstring> 
    2921                     </property> 
    2922                     <property name="geometry"> 
    2923                         <rect> 
    2924                             <x>10</x> 
    2925                             <y>280</y> 
    2926                             <width>30</width> 
    2927                             <height>22</height> 
    2928                         </rect> 
    2929                     </property> 
    2930                     <property name="text"> 
    2931                         <string>1</string> 
    2932                     </property> 
    2933                     <property name="alignment"> 
    2934                         <set>AlignCenter</set> 
    2935                     </property> 
    2936                 </widget> 
    2937                 <widget class="QSlider"> 
    2938                     <property name="name"> 
    2939                         <cstring>sldFB1_10_2</cstring> 
    2940                     </property> 
    2941                     <property name="geometry"> 
    2942                         <rect> 
    2943                             <x>10</x> 
    2944                             <y>160</y> 
    2945                             <width>30</width> 
    2946                             <height>120</height> 
    2947                         </rect> 
    2948                     </property> 
    2949                     <property name="minValue"> 
    2950                         <number>0</number> 
    2951                     </property> 
    2952                     <property name="maxValue"> 
    2953                         <number>128</number> 
    2954                     </property> 
    2955                     <property name="lineStep"> 
    2956                         <number>1</number> 
    2957                     </property> 
    2958                     <property name="pageStep"> 
    2959                         <number>10</number> 
    2960                     </property> 
    2961                     <property name="value"> 
    2962                         <number>128</number> 
    2963                     </property> 
    2964                     <property name="orientation"> 
    2965                         <enum>Vertical</enum> 
    2966                     </property> 
    2967                     <property name="tickmarks"> 
    2968                         <enum>Both</enum> 
    2969                     </property> 
    2970                     <property name="tickInterval"> 
    2971                         <number>10</number> 
    2972                     </property> 
    2973                 </widget> 
    2974                 <widget class="QSlider"> 
    2975                     <property name="name"> 
    2976                         <cstring>sldFB1_2_3_2</cstring> 
    2977                     </property> 
    2978                     <property name="geometry"> 
    2979                         <rect> 
    2980                             <x>50</x> 
    2981                             <y>160</y> 
    2982                             <width>30</width> 
    2983                             <height>120</height> 
    2984                         </rect> 
    2985                     </property> 
    2986                     <property name="minValue"> 
    2987                         <number>0</number> 
    2988                     </property> 
    2989                     <property name="maxValue"> 
    2990                         <number>128</number> 
    2991                     </property> 
    2992                     <property name="lineStep"> 
    2993                         <number>1</number> 
    2994                     </property> 
    2995                     <property name="pageStep"> 
    2996                         <number>10</number> 
    2997                     </property> 
    2998                     <property name="value"> 
    2999                         <number>128</number> 
    3000                     </property> 
    3001                     <property name="orientation"> 
    3002                         <enum>Vertical</enum> 
    3003                     </property> 
    3004                     <property name="tickmarks"> 
    3005                         <enum>Both</enum> 
    3006                     </property> 
    3007                     <property name="tickInterval"> 
    3008                         <number>10</number> 
    3009                     </property> 
    3010                 </widget> 
    3011                 <widget class="QLabel"> 
    3012                     <property name="name"> 
    3013                         <cstring>textLabel1_2_2_3_3_2</cstring> 
    3014                     </property> 
    3015                     <property name="geometry"> 
    3016                         <rect> 
    3017                             <x>50</x> 
    3018                             <y>80</y> 
    3019                             <width>30</width> 
    3020                             <height>22</height> 
    3021                         </rect> 
    3022                     </property> 
    3023                     <property name="font"> 
    3024                         <font> 
    3025                             <pointsize>9</pointsize> 
    3026                         </font> 
    3027                     </property> 
    3028                     <property name="text"> 
    3029                         <string>Mute</string> 
    3030                     </property> 
    3031                     <property name="alignment"> 
    3032                         <set>AlignCenter</set> 
    3033                     </property> 
    3034                 </widget> 
    3035                 <widget class="QLabel"> 
    3036                     <property name="name"> 
    3037                         <cstring>textLabel2_2_3_2</cstring> 
    3038                     </property> 
    3039                     <property name="geometry"> 
    3040                         <rect> 
    3041                             <x>50</x> 
    3042                             <y>280</y> 
    3043                             <width>30</width> 
    3044                             <height>22</height> 
    3045                         </rect> 
    3046                     </property> 
    3047                     <property name="text"> 
    3048                         <string>2</string> 
    3049                     </property> 
    3050                     <property name="alignment"> 
    3051                         <set>AlignCenter</set> 
    3052                     </property> 
    3053                 </widget> 
    3054                 <widget class="QCheckBox"> 
    3055                     <property name="name"> 
    3056                         <cstring>mix1ana1_mute_2_2_4_3</cstring> 
    3057                     </property> 
    3058                     <property name="geometry"> 
    3059                         <rect> 
    3060                             <x>40</x> 
    3061                             <y>290</y> 
    3062                             <width>20</width> 
    3063                             <height>26</height> 
    3064                         </rect> 
    3065                     </property> 
    3066                     <property name="sizePolicy"> 
    3067                         <sizepolicy> 
    3068                             <hsizetype>1</hsizetype> 
    3069                             <vsizetype>0</vsizetype> 
    3070                             <horstretch>0</horstretch> 
    3071                             <verstretch>0</verstretch> 
    3072                         </sizepolicy> 
    3073                     </property> 
    3074                     <property name="font"> 
    3075                         <font> 
    3076                             <pointsize>9</pointsize> 
    3077                         </font> 
    3078                     </property> 
    3079                     <property name="text"> 
    3080                         <string></string> 
    3081                     </property> 
    3082                 </widget> 
    3083                 <widget class="QLabel"> 
    3084                     <property name="name"> 
    3085                         <cstring>textLabel1_2_2_14_6</cstring> 
    3086                     </property> 
    3087                     <property name="geometry"> 
    3088                         <rect> 
    3089                             <x>30</x> 
    3090                             <y>310</y> 
    3091                             <width>30</width> 
    3092                             <height>22</height> 
    3093                         </rect> 
    3094                     </property> 
    3095                     <property name="font"> 
    3096                         <font> 
    3097                             <pointsize>9</pointsize> 
    3098                         </font> 
    3099                     </property> 
    3100                     <property name="text"> 
    3101                         <string>Pair</string> 
    3102                     </property> 
    3103                     <property name="alignment"> 
    3104                         <set>AlignCenter</set> 
    3105                     </property> 
    3106                 </widget> 
    3107             </widget> 
    3108             <widget class="QGroupBox"> 
    3109                 <property name="name"> 
    3110                     <cstring>mix1_adat_group</cstring> 
    3111                 </property> 
    3112                 <property name="geometry"> 
    3113                     <rect> 
    3114                         <x>10</x> 
    3115                         <y>350</y> 
    3116                         <width>330</width> 
    3117                         <height>340</height> 
    3118                     </rect> 
    3119                 </property> 
    3120                 <property name="title"> 
    3121                     <string>ADAT</string> 
    3122                 </property> 
    3123                 <widget class="QCheckBox"> 
    3124                     <property name="name"> 
    3125                         <cstring>checkBox1_2_2</cstring> 
    3126                     </property> 
    3127                     <property name="geometry"> 
    3128                         <rect> 
    3129                             <x>20</x> 
    3130                             <y>20</y> 
    3131                             <width>20</width> 
    3132                             <height>26</height> 
    3133                         </rect> 
    3134                     </property> 
    3135                     <property name="sizePolicy"> 
    3136                         <sizepolicy> 
    3137                             <hsizetype>1</hsizetype> 
    3138                             <vsizetype>0</vsizetype> 
    3139                             <horstretch>0</horstretch> 
    3140                             <verstretch>0</verstretch> 
    3141                         </sizepolicy> 
    3142                     </property> 
    3143                     <property name="font"> 
    3144                         <font> 
    3145                             <pointsize>9</pointsize> 
    3146                         </font> 
    3147                     </property> 
    3148                     <property name="text"> 
    3149                         <string></string> 
    3150                     </property> 
    3151                 </widget> 
    3152                 <widget class="QLabel"> 
    3153                     <property name="name"> 
    3154                         <cstring>textLabel2_9</cstring> 
    3155                     </property> 
    3156                     <property name="geometry"> 
    3157                         <rect> 
    3158                             <x>10</x> 
    3159                             <y>280</y> 
    3160                             <width>30</width> 
    3161                             <height>22</height> 
    3162                         </rect> 
    3163                     </property> 
    3164                     <property name="text"> 
    3165                         <string>1</string> 
    3166                     </property> 
    3167                     <property name="alignment"> 
    3168                         <set>AlignCenter</set> 
    3169                     </property> 
    3170                 </widget> 
    3171                 <widget class="QLabel"> 
    3172                     <property name="name"> 
    3173                         <cstring>textLabel1_2_10</cstring> 
    3174                     </property> 
    3175                     <property name="geometry"> 
    3176                         <rect> 
    3177                             <x>10</x> 
    3178                             <y>130</y> 
    3179                             <width>30</width> 
    3180                             <height>22</height> 
    3181                         </rect> 
    3182                     </property> 
    3183                     <property name="font"> 
    3184                         <font> 
    3185                             <pointsize>9</pointsize> 
    3186                         </font> 
    3187                     </property> 
    3188                     <property name="text"> 
    3189                         <string>Pan</string> 
    3190                     </property> 
    3191                     <property name="alignment"> 
    3192                         <set>AlignCenter</set> 
    3193                     </property> 
    3194                 </widget> 
    3195                 <widget class="QLabel"> 
    3196                     <property name="name"> 
    3197                         <cstring>textLabel1_2_3_2</cstring> 
    3198                     </property> 
    3199                     <property name="geometry"> 
    3200                         <rect> 
    3201                             <x>50</x> 
    3202                             <y>130</y> 
    3203                             <width>30</width> 
    3204                             <height>22</height> 
    3205                         </rect> 
    3206                     </property> 
    3207                     <property name="font"> 
    3208                         <font> 
    3209                             <pointsize>9</pointsize> 
    3210                         </font> 
    3211                     </property> 
    3212                     <property name="text"> 
    3213                         <string>Pan</string> 
    3214                     </property> 
    3215                     <property name="alignment"> 
    3216                         <set>AlignCenter</set> 
    3217                     </property> 
    3218                 </widget> 
    3219                 <widget class="QLabel"> 
    3220                     <property name="name"> 
    3221                         <cstring>textLabel1_2_4_2</cstring> 
    3222                     </property> 
    3223                     <property name="geometry"> 
    3224                         <rect> 
    3225                             <x>90</x> 
    3226                             <y>130</y> 
    3227                             <width>30</width> 
    3228                             <height>22</height> 
    3229                         </rect> 
    3230                     </property> 
    3231                     <property name="font"> 
    3232                         <font> 
    3233                             <pointsize>9</pointsize> 
    3234                         </font> 
    3235                     </property> 
    3236                     <property name="text"> 
    3237                         <string>Pan</string> 
    3238                     </property> 
    3239                     <property name="alignment"> 
    3240                         <set>AlignCenter</set> 
    3241                     </property> 
    3242                 </widget> 
    3243                 <widget class="QLabel"> 
    3244                     <property name="name"> 
    3245                         <cstring>textLabel1_2_5_2</cstring> 
    3246                     </property> 
    3247                     <property name="geometry"> 
    3248                         <rect> 
    3249                             <x>130</x> 
    3250                             <y>130</y> 
    3251                             <width>30</width> 
    3252                             <height>22</height> 
    3253                         </rect> 
    3254                     </property> 
    3255                     <property name="font"> 
    3256                         <font> 
    3257                             <pointsize>9</pointsize> 
    3258                         </font> 
    3259                     </property> 
    3260                     <property name="text"> 
    3261                         <string>Pan</string> 
    3262                     </property> 
    3263                     <property name="alignment"> 
    3264                         <set>AlignCenter</set> 
    3265                     </property> 
    3266                 </widget> 
    3267                 <widget class="QDial"> 
    3268                     <property name="name"> 
    3269                         <cstring>dial2_9</cstring> 
    3270                     </property> 
    3271                     <property name="geometry"> 
    3272                         <rect> 
    3273                             <x>10</x> 
    3274                             <y>100</y> 
    3275                             <width>30</width> 
    3276                             <height>30</height> 
    3277                         </rect> 
    3278                     </property> 
    3279                     <property name="minValue"> 
    3280                         <number>-64</number> 
    3281                     </property> 
    3282                     <property name="maxValue"> 
    3283                         <number>64</number> 
    3284                     </property> 
    3285                 </widget> 
    3286                 <widget class="QDial"> 
    3287                     <property name="name"> 
    3288                         <cstring>dial2_2_2</cstring> 
    3289                     </property> 
    3290                     <property name="geometry"> 
    3291                         <rect> 
    3292                             <x>50</x> 
    3293                             <y>100</y> 
    3294                             <width>30</width> 
    3295                             <height>30</height> 
    3296                         </rect> 
    3297                     </property> 
    3298                     <property name="minValue"> 
    3299                         <number>-64</number> 
    3300                     </property> 
    3301                     <property name="maxValue"> 
    3302                         <number>64</number> 
    3303                     </property> 
    3304                 </widget> 
    3305                 <widget class="QDial"> 
    3306                     <property name="name"> 
    3307                         <cstring>dial2_3_2</cstring> 
    3308                     </property> 
    3309                     <property name="geometry"> 
    3310                         <rect> 
    3311                             <x>90</x> 
    3312                             <y>100</y> 
    3313                             <width>30</width> 
    3314                             <height>30</height> 
    3315                         </rect> 
    3316                     </property> 
    3317                     <property name="minValue"> 
    3318                         <number>-64</number> 
    3319                     </property> 
    3320                     <property name="maxValue"> 
    3321                         <number>64</number> 
    3322                     </property> 
    3323                 </widget> 
    3324                 <widget class="QDial"> 
    3325                     <property name="name"> 
    3326                         <cstring>dial2_4_2</cstring> 
    3327                     </property> 
    3328                     <property name="geometry"> 
    3329                         <rect> 
    3330                             <x>130</x> 
    3331                             <y>100</y> 
    3332                             <width>30</width> 
    3333                             <height>30</height> 
    3334                         </rect> 
    3335                     </property> 
    3336                     <property name="minValue"> 
    3337                         <number>-64</number> 
    3338                     </property> 
    3339                     <property name="maxValue"> 
    3340                         <number>64</number> 
    3341                     </property> 
    3342                 </widget> 
    3343                 <widget class="QLabel"> 
    3344                     <property name="name"> 
    3345                         <cstring>textLabel1_2_2_10</cstring> 
    3346                     </property> 
    3347                     <property name="geometry"> 
    3348                         <rect> 
    3349                             <x>10</x> 
    3350                             <y>80</y> 
    3351                             <width>30</width> 
    3352                             <height>22</height> 
    3353                         </rect> 
    3354                     </property> 
    3355                     <property name="font"> 
    3356                         <font> 
    3357                             <pointsize>9</pointsize> 
    3358                         </font> 
    3359                     </property> 
    3360                     <property name="text"> 
    3361                         <string>Mute</string> 
    3362                     </property> 
    3363                     <property name="alignment"> 
    3364                         <set>AlignCenter</set> 
    3365                     </property> 
    3366                 </widget> 
    3367                 <widget class="QLabel"> 
    3368                     <property name="name"> 
    3369                         <cstring>textLabel1_2_2_3_2</cstring> 
    3370                     </property> 
    3371                     <property name="geometry"> 
    3372                         <rect> 
    3373                             <x>50</x> 
    3374                             <y>80</y> 
    3375                             <width>30</width> 
    3376                             <height>22</height> 
    3377                         </rect> 
    3378                     </property> 
    3379                     <property name="font"> 
    3380                         <font> 
    3381                             <pointsize>9</pointsize> 
    3382                         </font> 
    3383                     </property> 
    3384                     <property name="text"> 
    3385                         <string>Mute</string> 
    3386                     </property> 
    3387                     <property name="alignment"> 
    3388                         <set>AlignCenter</set> 
    3389                     </property> 
    3390                 </widget> 
    3391                 <widget class="QLabel"> 
    3392                     <property name="name"> 
    3393                         <cstring>textLabel1_2_2_4_2</cstring> 
    3394                     </property> 
    3395                     <property name="geometry"> 
    3396                         <rect> 
    3397                             <x>90</x> 
    3398                             <y>80</y> 
    3399                             <width>30</width> 
    3400                             <height>22</height> 
    3401                         </rect> 
    3402                     </property> 
    3403                     <property name="font"> 
    3404                         <font> 
    3405                             <pointsize>9</pointsize> 
    3406                         </font> 
    3407                     </property> 
    3408                     <property name="text"> 
    3409                         <string>Mute</string> 
    3410                     </property> 
    3411                     <property name="alignment"> 
    3412                         <set>AlignCenter</set> 
    3413                     </property> 
    3414                 </widget> 
    3415                 <widget class="QLabel"> 
    3416                     <property name="name"> 
    3417                         <cstring>textLabel1_2_2_5_2</cstring> 
    3418                     </property> 
    3419                     <property name="geometry"> 
    3420                         <rect> 
    3421                             <x>130</x> 
    3422                             <y>80</y> 
    3423                             <width>30</width> 
    3424                             <height>22</height> 
    3425                         </rect> 
    3426                     </property> 
    3427                     <property name="font"> 
    3428                         <font> 
    3429                             <pointsize>9</pointsize> 
    3430                         </font> 
    3431                     </property> 
    3432                     <property name="text"> 
    3433                         <string>Mute</string> 
    3434                     </property> 
    3435                     <property name="alignment"> 
    3436                         <set>AlignCenter</set> 
    3437                     </property> 
    3438                 </widget> 
    3439                 <widget class="QCheckBox"> 
    3440                     <property name="name"> 
    3441                         <cstring>checkBox1_17</cstring> 
    3442                     </property> 
    3443                     <property name="geometry"> 
    3444                         <rect> 
    3445                             <x>20</x> 
    3446                             <y>60</y> 
    3447                             <width>20</width> 
    3448                             <height>26</height> 
    3449                         </rect> 
    3450                     </property> 
    3451                     <property name="sizePolicy"> 
    3452                         <sizepolicy> 
    3453                             <hsizetype>1</hsizetype> 
    3454                             <vsizetype>0</vsizetype> 
    3455                             <horstretch>0</horstretch> 
    3456                             <verstretch>0</verstretch> 
    3457                         </sizepolicy> 
    3458                     </property> 
    3459                     <property name="font"> 
    3460                         <font> 
    3461                             <pointsize>9</pointsize> 
    3462                         </font> 
    3463                     </property> 
    3464                     <property name="text"> 
    3465                         <string></string> 
    3466                     </property> 
    3467                 </widget> 
    3468                 <widget class="QCheckBox"> 
    3469                     <property name="name"> 
    3470                         <cstring>checkBox1_3_2</cstring> 
    3471                     </property> 
    3472                     <property name="geometry"> 
    3473                         <rect> 
    3474                             <x>60</x> 
    3475                             <y>60</y> 
    3476                             <width>20</width> 
    3477                             <height>26</height> 
    3478                         </rect> 
    3479                     </property> 
    3480                     <property name="sizePolicy"> 
    3481                         <sizepolicy> 
    3482                             <hsizetype>1</hsizetype> 
    3483                             <vsizetype>0</vsizetype> 
    3484                             <horstretch>0</horstretch> 
    3485                             <verstretch>0</verstretch> 
    3486                         </sizepolicy> 
    3487                     </property> 
    3488                     <property name="font"> 
    3489                         <font> 
    3490                             <pointsize>9</pointsize> 
    3491                         </font> 
    3492                     </property> 
    3493                     <property name="text"> 
    3494                         <string></string> 
    3495                     </property> 
    3496                 </widget> 
    3497                 <widget class="QCheckBox"> 
    3498                     <property name="name"> 
    3499                         <cstring>checkBox1_4_2</cstring> 
    3500                     </property> 
    3501                     <property name="geometry"> 
    3502                         <rect> 
    3503                             <x>100</x> 
    3504                             <y>60</y> 
    3505                             <width>20</width> 
    3506                             <height>26</height> 
    3507                         </rect> 
    3508                     </property> 
    3509                     <property name="sizePolicy"> 
    3510                         <sizepolicy> 
    3511                             <hsizetype>1</hsizetype> 
    3512                             <vsizetype>0</vsizetype> 
    3513                             <horstretch>0</horstretch> 
    3514                             <verstretch>0</verstretch> 
    3515                         </sizepolicy> 
    3516                     </property> 
    3517                     <property name="font"> 
    3518                         <font> 
    3519                             <pointsize>9</pointsize> 
    3520                         </font> 
    3521                     </property> 
    3522                     <property name="text"> 
    3523                         <string></string> 
    3524                     </property> 
    3525                 </widget> 
    3526                 <widget class="QCheckBox"> 
    3527                     <property name="name"> 
    3528                         <cstring>checkBox1_5_2</cstring> 
    3529                     </property> 
    3530                     <property name="geometry"> 
    3531                         <rect> 
    3532                             <x>140</x> 
    3533                             <y>60</y> 
    3534                             <width>20</width> 
    3535                             <height>26</height> 
    3536                         </rect> 
    3537                     </property> 
    3538                     <property name="sizePolicy"> 
    3539                         <sizepolicy> 
    3540                             <hsizetype>1</hsizetype> 
    3541                             <vsizetype>0</vsizetype> 
    3542                             <horstretch>0</horstretch> 
    3543                             <verstretch>0</verstretch> 
    3544                         </sizepolicy> 
    3545                     </property> 
    3546                     <property name="font"> 
    3547                         <font> 
    3548                             <pointsize>9</pointsize> 
    3549                         </font> 
    3550                     </property> 
    3551                     <property name="text"> 
    3552                         <string></string> 
    3553                     </property> 
    3554                 </widget> 
    3555                 <widget class="QCheckBox"> 
    3556                     <property name="name"> 
    3557                         <cstring>checkBox1_10_2</cstring> 
    3558                     </property> 
    3559                     <property name="geometry"> 
    3560                         <rect> 
    3561                             <x>60</x> 
    3562                             <y>20</y> 
    3563                             <width>20</width> 
    3564                             <height>26</height> 
    3565                         </rect> 
    3566                     </property> 
    3567                     <property name="sizePolicy"> 
    3568                         <sizepolicy> 
    3569                             <hsizetype>1</hsizetype> 
    3570                             <vsizetype>0</vsizetype> 
    3571                             <horstretch>0</horstretch> 
    3572                             <verstretch>0</verstretch> 
    3573                         </sizepolicy> 
    3574                     </property> 
    3575                     <property name="font"> 
    3576                         <font> 
    3577                             <pointsize>9</pointsize> 
    3578                         </font> 
    3579                     </property> 
    3580                     <property name="text"> 
    3581                         <string></string> 
    3582                     </property> 
    3583                 </widget> 
    3584                 <widget class="QCheckBox"> 
    3585                     <property name="name"> 
    3586                         <cstring>checkBox1_11_2</cstring> 
    3587                     </property> 
    3588                     <property name="geometry"> 
    3589                         <rect> 
    3590                             <x>100</x> 
    3591                             <y>20</y> 
    3592                             <width>20</width> 
    3593                             <height>26</height> 
    3594                         </rect> 
    3595                     </property> 
    3596                     <property name="sizePolicy"> 
    3597                         <sizepolicy> 
    3598                             <hsizetype>1</hsizetype> 
    3599                             <vsizetype>0</vsizetype> 
    3600                             <horstretch>0</horstretch> 
    3601                             <verstretch>0</verstretch> 
    3602                         </sizepolicy> 
    3603                     </property> 
    3604                     <property name="font"> 
    3605                         <font> 
    3606                             <pointsize>9</pointsize> 
    3607                         </font> 
    3608                     </property> 
    3609                     <property name="text"> 
    3610                         <string></string> 
    3611                     </property> 
    3612                 </widget> 
    3613                 <widget class="QCheckBox"> 
    3614                     <property name="name"> 
    3615                         <cstring>checkBox1_12_2</cstring> 
    3616                     </property> 
    3617                     <property name="geometry"> 
    3618                         <rect> 
    3619                             <x>140</x> 
    3620                             <y>20</y> 
    3621                             <width>20</width> 
    3622                             <height>26</height> 
    3623                         </rect> 
    3624                     </property> 
    3625                     <property name="sizePolicy"> 
    3626                         <sizepolicy> 
    3627                             <hsizetype>1</hsizetype> 
    3628                             <vsizetype>0</vsizetype> 
    3629                             <horstretch>0</horstretch> 
    3630                             <verstretch>0</verstretch> 
    3631                         </sizepolicy> 
    3632                     </property> 
    3633                     <property name="font"> 
    3634                         <font> 
    3635                             <pointsize>9</pointsize> 
    3636                         </font> 
    3637                     </property> 
    3638                     <property name="text"> 
    3639                         <string></string> 
    3640                     </property> 
    3641                 </widget> 
    3642                 <widget class="QLabel"> 
    3643                     <property name="name"> 
    3644                         <cstring>textLabel1_2_2_2_9</cstring> 
    3645                     </property> 
    3646                     <property name="geometry"> 
    3647                         <rect> 
    3648                             <x>10</x> 
    3649                             <y>40</y> 
    3650                             <width>30</width> 
    3651                             <height>22</height> 
    3652                         </rect> 
    3653                     </property> 
    3654                     <property name="font"> 
    3655                         <font> 
    3656                             <pointsize>9</pointsize> 
    3657                         </font> 
    3658                     </property> 
    3659                     <property name="text"> 
    3660                         <string>Solo</string> 
    3661                     </property> 
    3662                     <property name="alignment"> 
    3663                         <set>AlignCenter</set> 
    3664                     </property> 
    3665                 </widget> 
    3666                 <widget class="QLabel"> 
    3667                     <property name="name"> 
    3668                         <cstring>textLabel1_2_2_2_2_2</cstring> 
    3669                     </property> 
    3670                     <property name="geometry"> 
    3671                         <rect> 
    3672                             <x>50</x> 
    3673                             <y>40</y> 
    3674                             <width>30</width> 
    3675                             <height>22</height> 
    3676                         </rect> 
    3677                     </property> 
    3678                     <property name="font"> 
    3679                         <font> 
    3680                             <pointsize>9</pointsize> 
    3681                         </font> 
    3682                     </property> 
    3683                     <property name="text"> 
    3684                         <string>Solo</string> 
    3685                     </property> 
    3686                     <property name="alignment"> 
    3687                         <set>AlignCenter</set> 
    3688                     </property> 
    3689                 </widget> 
    3690                 <widget class="QLabel"> 
    3691                     <property name="name"> 
    3692                         <cstring>textLabel1_2_2_2_3_2</cstring> 
    3693                     </property> 
    3694                     <property name="geometry"> 
    3695                         <rect> 
    3696                             <x>90</x> 
    3697                             <y>40</y> 
    3698                             <width>30</width> 
    3699                             <height>22</height> 
    3700                         </rect> 
    3701                     </property> 
    3702                     <property name="font"> 
    3703                         <font> 
    3704                             <pointsize>9</pointsize> 
    3705                         </font> 
    3706                     </property> 
    3707                     <property name="text"> 
    3708                         <string>Solo</string> 
    3709                     </property> 
    3710                     <property name="alignment"> 
    3711                         <set>AlignCenter</set> 
    3712                     </property> 
    3713                 </widget> 
    3714                 <widget class="QLabel"> 
    3715                     <property name="name"> 
    3716                         <cstring>textLabel1_2_2_2_4_2</cstring> 
    3717                     </property> 
    3718                     <property name="geometry"> 
    3719                         <rect> 
    3720                             <x>130</x> 
    3721                             <y>40</y> 
    3722                             <width>30</width> 
    3723                             <height>22</height> 
    3724                         </rect> 
    3725                     </property> 
    3726                     <property name="font"> 
    3727                         <font> 
    3728                             <pointsize>9</pointsize> 
    3729                         </font> 
    3730                     </property> 
    3731                     <property name="text"> 
    3732                         <string>Solo</string> 
    3733                     </property> 
    3734                     <property name="alignment"> 
    3735                         <set>AlignCenter</set> 
    3736                     </property> 
    3737                 </widget> 
    3738                 <widget class="QLabel"> 
    3739                     <property name="name"> 
    3740                         <cstring>textLabel2_2_2</cstring> 
    3741                     </property> 
    3742                     <property name="geometry"> 
    3743                         <rect> 
    3744                             <x>50</x> 
    3745                             <y>280</y> 
    3746                             <width>30</width> 
    3747                             <height>22</height> 
    3748                         </rect> 
    3749                     </property> 
    3750                     <property name="text"> 
    3751                         <string>2</string> 
    3752                     </property> 
    3753                     <property name="alignment"> 
    3754                         <set>AlignCenter</set> 
    3755                     </property> 
    3756                 </widget> 
    3757                 <widget class="QLabel"> 
    3758                     <property name="name"> 
    3759                         <cstring>textLabel2_3_2</cstring> 
    3760                     </property> 
    3761                     <property name="geometry"> 
    3762                         <rect> 
    3763                             <x>90</x> 
    3764                             <y>280</y> 
    3765                             <width>30</width> 
    3766                             <height>22</height> 
    3767                         </rect> 
    3768                     </property> 
    3769                     <property name="text"> 
    3770                         <string>3</string> 
    3771                     </property> 
    3772                     <property name="alignment"> 
    3773                         <set>AlignCenter</set> 
    3774                     </property> 
    3775                 </widget> 
    3776                 <widget class="QLabel"> 
    3777                     <property name="name"> 
    3778                         <cstring>textLabel2_4_2</cstring> 
    3779                     </property> 
    3780                     <property name="geometry"> 
    3781                         <rect> 
    3782                             <x>130</x> 
    3783                             <y>280</y> 
    3784                             <width>30</width> 
    3785                             <height>22</height> 
    3786                         </rect> 
    3787                     </property> 
    3788                     <property name="text"> 
    3789                         <string>4</string> 
    3790                     </property> 
    3791                     <property name="alignment"> 
    3792                         <set>AlignCenter</set> 
    3793                     </property> 
    3794                 </widget> 
    3795                 <widget class="QSlider"> 
    3796                     <property name="name"> 
    3797                         <cstring>sldFB1_2_2</cstring> 
    3798                     </property> 
    3799                     <property name="geometry"> 
    3800                         <rect> 
    3801                             <x>50</x> 
    3802                             <y>160</y> 
    3803                             <width>30</width> 
    3804                             <height>120</height> 
    3805                         </rect> 
    3806                     </property> 
    3807                     <property name="minValue"> 
    3808                         <number>0</number> 
    3809                     </property> 
    3810                     <property name="maxValue"> 
    3811                         <number>128</number> 
    3812                     </property> 
    3813                     <property name="lineStep"> 
    3814                         <number>1</number> 
    3815                     </property> 
    3816                     <property name="pageStep"> 
    3817                         <number>10</number> 
    3818                     </property> 
    3819                     <property name="value"> 
    3820                         <number>128</number> 
    3821                     </property> 
    3822                     <property name="orientation"> 
    3823                         <enum>Vertical</enum> 
    3824                     </property> 
    3825                     <property name="tickmarks"> 
    3826                         <enum>Both</enum> 
    3827                     </property> 
    3828                     <property name="tickInterval"> 
    3829                         <number>10</number> 
    3830                     </property> 
    3831                 </widget> 
    3832                 <widget class="QSlider"> 
    3833                     <property name="name"> 
    3834                         <cstring>sldFB1_3_2</cstring> 
    3835                     </property> 
    3836                     <property name="geometry"> 
    3837                         <rect> 
    3838                             <x>90</x> 
    3839                             <y>160</y> 
    3840                             <width>30</width> 
    3841                             <height>120</height> 
    3842                         </rect> 
    3843                     </property> 
    3844                     <property name="minValue"> 
    3845                         <number>0</number> 
    3846                     </property> 
    3847                     <property name="maxValue"> 
    3848                         <number>128</number> 
    3849                     </property> 
    3850                     <property name="lineStep"> 
    3851                         <number>1</number> 
    3852                     </property> 
    3853                     <property name="pageStep"> 
    3854                         <number>10</number> 
    3855                     </property> 
    3856                     <property name="value"> 
    3857                         <number>128</number> 
    3858                     </property> 
    3859                     <property name="orientation"> 
    3860                         <enum>Vertical</enum> 
    3861                     </property> 
    3862                     <property name="tickmarks"> 
    3863                         <enum>Both</enum> 
    3864                     </property> 
    3865                     <property name="tickInterval"> 
    3866                         <number>10</number> 
    3867                     </property> 
    3868                 </widget> 
    3869                 <widget class="QSlider"> 
    3870                     <property name="name"> 
    3871                         <cstring>sldFB1_4_2</cstring> 
    3872                     </property> 
    3873                     <property name="geometry"> 
    3874                         <rect> 
    3875                             <x>130</x> 
    3876                             <y>160</y> 
    3877                             <width>30</width> 
    3878                             <height>120</height> 
    3879                         </rect> 
    3880                     </property> 
    3881                     <property name="minValue"> 
    3882                         <number>0</number> 
    3883                     </property> 
    3884                     <property name="maxValue"> 
    3885                         <number>128</number> 
    3886                     </property> 
    3887                     <property name="lineStep"> 
    3888                         <number>1</number> 
    3889                     </property> 
    3890                     <property name="pageStep"> 
    3891                         <number>10</number> 
    3892                     </property> 
    3893                     <property name="value"> 
    3894                         <number>128</number> 
    3895                     </property> 
    3896                     <property name="orientation"> 
    3897                         <enum>Vertical</enum> 
    3898                     </property> 
    3899                     <property name="tickmarks"> 
    3900                         <enum>Both</enum> 
    3901                     </property> 
    3902                     <property name="tickInterval"> 
    3903                         <number>10</number> 
    3904                     </property> 
    3905                 </widget> 
    3906                 <widget class="QSlider"> 
    3907                     <property name="name"> 
    3908                         <cstring>sldFB1_9</cstring> 
    3909                     </property> 
    3910                     <property name="geometry"> 
    3911                         <rect> 
    3912                             <x>10</x> 
    3913                             <y>160</y> 
    3914                             <width>30</width> 
    3915                             <height>120</height> 
    3916                         </rect> 
    3917                     </property> 
    3918                     <property name="minValue"> 
    3919                         <number>0</number> 
    3920                     </property> 
    3921                     <property name="maxValue"> 
    3922                         <number>128</number> 
    3923                     </property> 
    3924                     <property name="lineStep"> 
    3925                         <number>1</number> 
    3926                     </property> 
    3927                     <property name="pageStep"> 
    3928                         <number>10</number> 
    3929                     </property> 
    3930                     <property name="value"> 
    3931                         <number>128</number> 
    3932                     </property> 
    3933                     <property name="orientation"> 
    3934                         <enum>Vertical</enum> 
    3935                     </property> 
    3936                     <property name="tickmarks"> 
    3937                         <enum>Both</enum> 
    3938                     </property> 
    3939                     <property name="tickInterval"> 
    3940                         <number>10</number> 
    3941                     </property> 
    3942                 </widget> 
    3943                 <widget class="QGroupBox"> 
    3944                     <property name="name"> 
    3945                         <cstring>mix1_adat58_group</cstring> 
    3946                     </property> 
    3947                     <property name="geometry"> 
    3948                         <rect> 
    3949                             <x>168</x> 
    3950                             <y>18</y> 
    3951                             <width>150</width> 
    3952                             <height>310</height> 
    3953                         </rect> 
    3954                     </property> 
    3955                     <property name="frameShape"> 
    3956                         <enum>NoFrame</enum> 
    3957                     </property> 
    3958                     <property name="title"> 
    3959                         <string></string> 
    3960                     </property> 
    3961                     <widget class="QLabel"> 
    3962                         <property name="name"> 
    3963                             <cstring>textLabel1_2_9_2</cstring> 
    3964                         </property> 
    3965                         <property name="geometry"> 
    3966                             <rect> 
    3967                                 <x>122</x> 
    3968                                 <y>112</y> 
    3969                                 <width>30</width> 
    3970                                 <height>22</height> 
    3971                             </rect> 
    3972                         </property> 
    3973                         <property name="font"> 
    3974                             <font> 
    3975                                 <pointsize>9</pointsize> 
    3976                             </font> 
    3977                         </property> 
    3978                         <property name="text"> 
    3979                             <string>Pan</string> 
    3980                         </property> 
    3981                         <property name="alignment"> 
    3982                             <set>AlignCenter</set> 
    3983                         </property> 
    3984                     </widget> 
    3985                     <widget class="QDial"> 
    3986                         <property name="name"> 
    3987                             <cstring>dial2_8_2</cstring> 
    3988                         </property> 
    3989                         <property name="geometry"> 
    3990                             <rect> 
    3991                                 <x>122</x> 
    3992                                 <y>82</y> 
    3993                                 <width>30</width> 
    3994                                 <height>30</height> 
    3995                             </rect> 
    3996                         </property> 
    3997                         <property name="minValue"> 
    3998                             <number>-64</number> 
    3999                         </property> 
    4000                         <property name="maxValue"> 
    4001                             <number>64</number> 
    4002                         </property> 
    4003                     </widget> 
    4004                     <widget class="QLabel"> 
    4005                         <property name="name"> 
    4006                             <cstring>textLabel1_2_2_9_2</cstring> 
    4007                         </property> 
    4008                         <property name="geometry"> 
    4009                             <rect> 
    4010                                 <x>122</x> 
    4011                                 <y>62</y> 
    4012                                 <width>30</width> 
    4013                                 <height>22</height> 
    4014                             </rect> 
    4015                         </property> 
    4016                         <property name="font"> 
    4017                             <font> 
    4018                                 <pointsize>9</pointsize> 
    4019                             </font> 
    4020                         </property> 
    4021                         <property name="text"> 
    4022                             <string>Mute</string> 
    4023                         </property> 
    4024                         <property name="alignment"> 
    4025                             <set>AlignCenter</set> 
    4026                         </property> 
    4027                     </widget> 
    4028                     <widget class="QCheckBox"> 
    4029                         <property name="name"> 
    4030                             <cstring>checkBox1_9_2</cstring> 
    4031                         </property> 
    4032                         <property name="geometry"> 
    4033                             <rect> 
    4034                                 <x>132</x> 
    4035                                 <y>42</y> 
    4036                                 <width>20</width> 
    4037                                 <height>26</height> 
    4038                             </rect> 
    4039                         </property> 
    4040                         <property name="sizePolicy"> 
    4041                             <sizepolicy> 
    4042                                 <hsizetype>1</hsizetype> 
    4043                                 <vsizetype>0</vsizetype> 
    4044                                 <horstretch>0</horstretch> 
    4045                                 <verstretch>0</verstretch> 
    4046                             </sizepolicy> 
    4047                         </property> 
    4048                         <property name="font"> 
    4049                             <font> 
    4050                                 <pointsize>9</pointsize> 
    4051                             </font> 
    4052                         </property> 
    4053                         <property name="text"> 
    4054                             <string></string> 
    4055                         </property> 
    4056                     </widget> 
    4057                     <widget class="QCheckBox"> 
    4058                         <property name="name"> 
    4059                             <cstring>checkBox1_16_2</cstring> 
    4060                         </property> 
    4061                         <property name="geometry"> 
    4062                             <rect> 
    4063                                 <x>132</x> 
    4064                                 <y>2</y> 
    4065                                 <width>20</width> 
    4066                                 <height>26</height> 
    4067                             </rect> 
    4068                         </property> 
    4069                         <property name="sizePolicy"> 
    4070                             <sizepolicy> 
    4071                                 <hsizetype>1</hsizetype> 
    4072                                 <vsizetype>0</vsizetype> 
    4073                                 <horstretch>0</horstretch> 
    4074                                 <verstretch>0</verstretch> 
    4075                             </sizepolicy> 
    4076                         </property> 
    4077                         <property name="font"> 
    4078                             <font> 
    4079                                 <pointsize>9</pointsize> 
    4080                             </font> 
    4081                         </property> 
    4082                         <property name="text"> 
    4083                             <string></string> 
    4084                         </property> 
    4085                     </widget> 
    4086                     <widget class="QLabel"> 
    4087                         <property name="name"> 
    4088                             <cstring>textLabel1_2_2_2_8_2</cstring> 
    4089                         </property> 
    4090                         <property name="geometry"> 
    4091                             <rect> 
    4092                                 <x>122</x> 
    4093                                 <y>22</y> 
    4094                                 <width>30</width> 
    4095                                 <height>22</height> 
    4096                             </rect> 
    4097                         </property> 
    4098                         <property name="font"> 
    4099                             <font> 
    4100                                 <pointsize>9</pointsize> 
    4101                             </font> 
    4102                         </property> 
    4103                         <property name="text"> 
    4104                             <string>Solo</string> 
    4105                         </property> 
    4106                         <property name="alignment"> 
    4107                             <set>AlignCenter</set> 
    4108                         </property> 
    4109                     </widget> 
    4110                     <widget class="QLabel"> 
    4111                         <property name="name"> 
    4112                             <cstring>textLabel2_8_2</cstring> 
    4113                         </property> 
    4114                         <property name="geometry"> 
    4115                             <rect> 
    4116                                 <x>122</x> 
    4117                                 <y>262</y> 
    4118                                 <width>30</width> 
    4119                                 <height>22</height> 
    4120                             </rect> 
    4121                         </property> 
    4122                         <property name="text"> 
    4123                             <string>8</string> 
    4124                         </property> 
    4125                         <property name="alignment"> 
    4126                             <set>AlignCenter</set> 
    4127                         </property> 
    4128                     </widget> 
    4129                     <widget class="QSlider"> 
    4130                         <property name="name"> 
    4131                             <cstring>sldFB1_8_2</cstring> 
    4132                         </property> 
    4133                         <property name="geometry"> 
    4134                             <rect> 
    4135                                 <x>122</x> 
    4136                                 <y>142</y> 
    4137                                 <width>30</width> 
    4138                                 <height>120</height> 
    4139                             </rect> 
    4140                         </property> 
    4141                         <property name="minValue"> 
    4142                             <number>0</number> 
    4143                         </property> 
    4144                         <property name="maxValue"> 
    4145                             <number>128</number> 
    4146                         </property> 
    4147                         <property name="lineStep"> 
    4148                             <number>1</number> 
    4149                         </property> 
    4150                         <property name="pageStep"> 
    4151                             <number>10</number> 
    4152                         </property> 
    4153                         <property name="value"> 
    4154                             <number>128</number> 
    4155                         </property> 
    4156                         <property name="orientation"> 
    4157                             <enum>Vertical</enum> 
    4158                         </property> 
    4159                         <property name="tickmarks"> 
    4160                             <enum>Both</enum> 
    4161                         </property> 
    4162                         <property name="tickInterval"> 
    4163                             <number>10</number> 
    4164                         </property> 
    4165                     </widget> 
    4166                     <widget class="QLabel"> 
    4167                         <property name="name"> 
    4168                             <cstring>textLabel2_5_2</cstring> 
    4169                         </property> 
    4170                         <property name="geometry"> 
    4171                             <rect> 
    4172                                 <x>2</x> 
    4173                                 <y>262</y> 
    4174                                 <width>30</width> 
    4175                                 <height>22</height> 
    4176                             </rect> 
    4177                         </property> 
    4178                         <property name="text"> 
    4179                             <string>5</string> 
    4180                         </property> 
    4181                         <property name="alignment"> 
    4182                             <set>AlignCenter</set> 
    4183                         </property> 
    4184                     </widget> 
    4185                     <widget class="QLabel"> 
    4186                         <property name="name"> 
    4187                             <cstring>textLabel2_7_2</cstring> 
    4188                         </property> 
    4189                         <property name="geometry"> 
    4190                             <rect> 
    4191                                 <x>82</x> 
    4192                                 <y>262</y> 
    4193                                 <width>30</width> 
    4194                                 <height>22</height> 
    4195                             </rect> 
    4196                         </property> 
    4197                         <property name="text"> 
    4198                             <string>7</string> 
    4199                         </property> 
    4200                         <property name="alignment"> 
    4201                             <set>AlignCenter</set> 
    4202                         </property> 
    4203                     </widget> 
    4204                     <widget class="QLabel"> 
    4205                         <property name="name"> 
    4206                             <cstring>textLabel2_6_2</cstring> 
    4207                         </property> 
    4208                         <property name="geometry"> 
    4209                             <rect> 
    4210                                 <x>42</x> 
    4211                                 <y>262</y> 
    4212                                 <width>30</width> 
    4213                                 <height>22</height> 
    4214                             </rect> 
    4215                         </property> 
    4216                         <property name="text"> 
    4217                             <string>6</string> 
    4218                         </property> 
    4219                         <property name="alignment"> 
    4220                             <set>AlignCenter</set> 
    4221                         </property> 
    4222                     </widget> 
    4223                     <widget class="QSlider"> 
    4224                         <property name="name"> 
    4225                             <cstring>sldFB1_5_2</cstring> 
    4226                         </property> 
    4227                         <property name="geometry"> 
    4228                             <rect> 
    4229                                 <x>2</x> 
    4230                                 <y>142</y> 
    4231                                 <width>30</width> 
    4232                                 <height>120</height> 
    4233                             </rect> 
    4234                         </property> 
    4235                         <property name="minValue"> 
    4236                             <number>0</number> 
    4237                         </property> 
    4238                         <property name="maxValue"> 
    4239                             <number>128</number> 
    4240                         </property> 
    4241                         <property name="lineStep"> 
    4242                             <number>1</number> 
    4243                         </property> 
    4244                         <property name="pageStep"> 
    4245                             <number>10</number> 
    4246                         </property> 
    4247                         <property name="value"> 
    4248                             <number>128</number> 
    4249                         </property> 
    4250                         <property name="orientation"> 
    4251                             <enum>Vertical</enum> 
    4252                         </property> 
    4253                         <property name="tickmarks"> 
    4254                             <enum>Both</enum> 
    4255                         </property> 
    4256                         <property name="tickInterval"> 
    4257                             <number>10</number> 
    4258                         </property> 
    4259                     </widget> 
    4260                     <widget class="QSlider"> 
    4261                         <property name="name"> 
    4262                             <cstring>sldFB1_6_2</cstring> 
    4263                         </property> 
    4264                         <property name="geometry"> 
    4265                             <rect> 
    4266                                 <x>42</x> 
    4267                                 <y>142</y> 
    4268                                 <width>30</width> 
    4269                                 <height>120</height> 
    4270                             </rect> 
    4271                         </property> 
    4272                         <property name="minValue"> 
    4273                             <number>0</number> 
    4274                         </property> 
    4275                         <property name="maxValue"> 
    4276                             <number>128</number> 
    4277                         </property> 
    4278                         <property name="lineStep"> 
    4279                             <number>1</number> 
    4280                         </property> 
    4281                         <property name="pageStep"> 
    4282                             <number>10</number> 
    4283                         </property> 
    4284                         <property name="value"> 
    4285                             <number>128</number> 
    4286                         </property> 
    4287                         <property name="orientation"> 
    4288                             <enum>Vertical</enum> 
    4289                         </property> 
    4290                         <property name="tickmarks"> 
    4291                             <enum>Both</enum> 
    4292                         </property> 
    4293                         <property name="tickInterval"> 
    4294                             <number>10</number> 
    4295                         </property> 
    4296                     </widget> 
    4297                     <widget class="QSlider"> 
    4298                         <property name="name"> 
    4299                             <cstring>sldFB1_7_2</cstring> 
    4300                         </property> 
    4301                         <property name="geometry"> 
    4302                             <rect> 
    4303                                 <x>82</x> 
    4304                                 <y>142</y> 
    4305                                 <width>30</width> 
    4306                                 <height>120</height> 
    4307                             </rect> 
    4308                         </property> 
    4309                         <property name="minValue"> 
    4310                             <number>0</number> 
    4311                         </property> 
    4312                         <property name="maxValue"> 
    4313                             <number>128</number> 
    4314                         </property> 
    4315                         <property name="lineStep"> 
    4316                             <number>1</number> 
    4317                         </property> 
    4318                         <property name="pageStep"> 
    4319                             <number>10</number> 
    4320                         </property> 
    4321                         <property name="value"> 
    4322                             <number>128</number> 
    4323                         </property> 
    4324                         <property name="orientation"> 
    4325                             <enum>Vertical</enum> 
    4326                         </property> 
    4327                         <property name="tickmarks"> 
    4328                             <enum>Both</enum> 
    4329                         </property> 
    4330                         <property name="tickInterval"> 
    4331                             <number>10</number> 
    4332                         </property> 
    4333                     </widget> 
    4334                     <widget class="QLabel"> 
    4335                         <property name="name"> 
    4336                             <cstring>textLabel1_2_6_2</cstring> 
    4337                         </property> 
    4338                         <property name="geometry"> 
    4339                             <rect> 
    4340                                 <x>2</x> 
    4341                                 <y>112</y> 
    4342                                 <width>30</width> 
    4343                                 <height>22</height> 
    4344                             </rect> 
    4345                         </property> 
    4346                         <property name="font"> 
    4347                             <font> 
    4348                                 <pointsize>9</pointsize> 
    4349                             </font> 
    4350                         </property> 
    4351                         <property name="text"> 
    4352                             <string>Pan</string> 
    4353                         </property> 
    4354                         <property name="alignment"> 
    4355                             <set>AlignCenter</set> 
    4356                         </property> 
    4357                     </widget> 
    4358                     <widget class="QLabel"> 
    4359                         <property name="name"> 
    4360                             <cstring>textLabel1_2_7_2</cstring> 
    4361                         </property> 
    4362                         <property name="geometry"> 
    4363                             <rect> 
    4364                                 <x>42</x> 
    4365                                 <y>112</y> 
    4366                                 <width>30</width> 
    4367                                 <height>22</height> 
    4368                             </rect> 
    4369                         </property> 
    4370                         <property name="font"> 
    4371                             <font> 
    4372                                 <pointsize>9</pointsize> 
    4373                             </font> 
    4374                         </property> 
    4375                         <property name="text"> 
    4376                             <string>Pan</string> 
    4377                         </property> 
    4378                         <property name="alignment"> 
    4379                             <set>AlignCenter</set> 
    4380                         </property> 
    4381                     </widget> 
    4382                     <widget class="QLabel"> 
    4383                         <property name="name"> 
    4384                             <cstring>textLabel1_2_8_2</cstring> 
    4385                         </property> 
    4386                         <property name="geometry"> 
    4387                             <rect> 
    4388                                 <x>82</x> 
    4389                                 <y>112</y> 
    4390                                 <width>30</width> 
    4391                                 <height>22</height> 
    4392                             </rect> 
    4393                         </property> 
    4394                         <property name="font"> 
    4395                             <font> 
    4396                                 <pointsize>9</pointsize> 
    4397                             </font> 
    4398                         </property> 
    4399                         <property name="text"> 
    4400                             <string>Pan</string> 
    4401                         </property> 
    4402                         <property name="alignment"> 
    4403                             <set>AlignCenter</set> 
    4404                         </property> 
    4405                     </widget> 
    4406                     <widget class="QDial"> 
    4407                         <property name="name"> 
    4408                             <cstring>dial2_5_2</cstring> 
    4409                         </property> 
    4410                         <property name="geometry"> 
    4411                             <rect> 
    4412                                 <x>2</x> 
    4413                                 <y>82</y> 
    4414                                 <width>30</width> 
    4415                                 <height>30</height> 
    4416                             </rect> 
    4417                         </property> 
    4418                         <property name="minValue"> 
    4419                             <number>-64</number> 
    4420                         </property> 
    4421                         <property name="maxValue"> 
    4422                             <number>64</number> 
    4423                         </property> 
    4424                     </widget> 
    4425                     <widget class="QDial"> 
    4426                         <property name="name"> 
    4427                             <cstring>dial2_6_2</cstring> 
    4428                         </property> 
    4429                         <property name="geometry"> 
    4430                             <rect> 
    4431                                 <x>42</x> 
    4432                                 <y>82</y> 
    4433                                 <width>30</width> 
    4434                                 <height>30</height> 
    4435                             </rect> 
    4436                         </property> 
    4437                         <property name="minValue"> 
    4438                             <number>-64</number> 
    4439                         </property> 
    4440                         <property name="maxValue"> 
    4441                             <number>64</number> 
    4442                         </property> 
    4443                     </widget> 
    4444                     <widget class="QDial"> 
    4445                         <property name="name"> 
    4446                             <cstring>dial2_7_2</cstring> 
    4447                         </property> 
    4448                         <property name="geometry"> 
    4449                             <rect> 
    4450                                 <x>82</x> 
    4451                                 <y>82</y> 
    4452                                 <width>30</width> 
    4453                                 <height>30</height> 
    4454                             </rect> 
    4455                         </property> 
    4456                         <property name="minValue"> 
    4457                             <number>-64</number> 
    4458                         </property> 
    4459                         <property name="maxValue"> 
    4460                             <number>64</number> 
    4461                         </property> 
    4462                     </widget> 
    4463                     <widget class="QLabel"> 
    4464                         <property name="name"> 
    4465                             <cstring>textLabel1_2_2_6_2</cstring> 
    4466                         </property> 
    4467                         <property name="geometry"> 
    4468                             <rect> 
    4469                                 <x>2</x> 
    4470                                 <y>62</y> 
    4471                                 <width>30</width> 
    4472                                 <height>22</height> 
    4473                             </rect> 
    4474                         </property> 
    4475                         <property name="font"> 
    4476                             <font> 
    4477                                 <pointsize>9</pointsize> 
    4478                             </font> 
    4479                         </property> 
    4480                         <property name="text"> 
    4481                             <string>Mute</string> 
    4482                         </property> 
    4483                         <property name="alignment"> 
    4484                             <set>AlignCenter</set> 
    4485                         </property> 
    4486                     </widget> 
    4487                     <widget class="QLabel"> 
    4488                         <property name="name"> 
    4489                             <cstring>textLabel1_2_2_7_2</cstring> 
    4490                         </property> 
    4491                         <property name="geometry"> 
    4492                             <rect> 
    4493                                 <x>42</x> 
    4494                                 <y>62</y> 
    4495                                 <width>30</width> 
    4496                                 <height>22</height> 
    4497                             </rect> 
    4498                         </property> 
    4499                         <property name="font"> 
    4500                             <font> 
    4501                                 <pointsize>9</pointsize> 
    4502                             </font> 
    4503                         </property> 
    4504                         <property name="text"> 
    4505                             <string>Mute</string> 
    4506                         </property> 
    4507                         <property name="alignment"> 
    4508                             <set>AlignCenter</set> 
    4509                         </property> 
    4510                     </widget> 
    4511                     <widget class="QLabel"> 
    4512                         <property name="name"> 
    4513                             <cstring>textLabel1_2_2_8_2</cstring> 
    4514                         </property> 
    4515                         <property name="geometry"> 
    4516                             <rect> 
    4517                                 <x>82</x> 
    4518                                 <y>62</y> 
    4519                                 <width>30</width> 
    4520                                 <height>22</height> 
    4521                             </rect> 
    4522                         </property> 
    4523                         <property name="font"> 
    4524                             <font> 
    4525                                 <pointsize>9</pointsize> 
    4526                             </font> 
    4527                         </property> 
    4528                         <property name="text"> 
    4529                             <string>Mute</string> 
    4530                         </property> 
    4531                         <property name="alignment"> 
    4532                             <set>AlignCenter</set> 
    4533                         </property> 
    4534                     </widget> 
    4535                     <widget class="QCheckBox"> 
    4536                         <property name="name"> 
    4537                             <cstring>checkBox1_6_2</cstring> 
    4538                         </property> 
    4539                         <property name="geometry"> 
    4540                             <rect> 
    4541                                 <x>12</x> 
    4542                                 <y>42</y> 
    4543                                 <width>20</width> 
    4544                                 <height>26</height> 
    4545                             </rect> 
    4546                         </property> 
    4547                         <property name="sizePolicy"> 
    4548                             <sizepolicy> 
    4549                                 <hsizetype>1</hsizetype> 
    4550                                 <vsizetype>0</vsizetype> 
    4551                                 <horstretch>0</horstretch> 
    4552                                 <verstretch>0</verstretch> 
    4553                             </sizepolicy> 
    4554                         </property> 
    4555                         <property name="font"> 
    4556                             <font> 
    4557                                 <pointsize>9</pointsize> 
    4558                             </font> 
    4559                         </property> 
    4560                         <property name="text"> 
    4561                             <string></string> 
    4562                         </property> 
    4563                     </widget> 
    4564                     <widget class="QCheckBox"> 
    4565                         <property name="name"> 
    4566                             <cstring>checkBox1_7_2</cstring> 
    4567                         </property> 
    4568                         <property name="geometry"> 
    4569                             <rect> 
    4570                                 <x>52</x> 
    4571                                 <y>42</y> 
    4572                                 <width>20</width> 
    4573                                 <height>26</height> 
    4574                             </rect> 
    4575                         </property> 
    4576                         <property name="sizePolicy"> 
    4577                             <sizepolicy> 
    4578                                 <hsizetype>1</hsizetype> 
    4579                                 <vsizetype>0</vsizetype> 
    4580                                 <horstretch>0</horstretch> 
    4581                                 <verstretch>0</verstretch> 
    4582                             </sizepolicy> 
    4583                         </property> 
    4584                         <property name="font"> 
    4585                             <font> 
    4586                                 <pointsize>9</pointsize> 
    4587                             </font> 
    4588                         </property> 
    4589                         <property name="text"> 
    4590                             <string></string> 
    4591                         </property> 
    4592                     </widget> 
    4593                     <widget class="QCheckBox"> 
    4594                         <property name="name"> 
    4595                             <cstring>checkBox1_8_2</cstring> 
    4596                         </property> 
    4597                         <property name="geometry"> 
    4598                             <rect> 
    4599                                 <x>92</x> 
    4600                                 <y>42</y> 
    4601                                 <width>20</width> 
    4602                                 <height>26</height> 
    4603                             </rect> 
    4604                         </property> 
    4605                         <property name="sizePolicy"> 
    4606                             <sizepolicy> 
    4607                                 <hsizetype>1</hsizetype> 
    4608                                 <vsizetype>0</vsizetype> 
    4609                                 <horstretch>0</horstretch> 
    4610                                 <verstretch>0</verstretch> 
    4611                             </sizepolicy> 
    4612                         </property> 
    4613                         <property name="font"> 
    4614                             <font> 
    4615                                 <pointsize>9</pointsize> 
    4616                             </font> 
    4617                         </property> 
    4618                         <property name="text"> 
    4619                             <string></string> 
    4620                         </property> 
    4621                     </widget> 
    4622                     <widget class="QCheckBox"> 
    4623                         <property name="name"> 
    4624                             <cstring>checkBox1_13_2</cstring> 
    4625                         </property> 
    4626                         <property name="geometry"> 
    4627                             <rect> 
    4628                                 <x>12</x> 
    4629                                 <y>2</y> 
    4630                                 <width>20</width> 
    4631                                 <height>26</height> 
    4632                             </rect> 
    4633                         </property> 
    4634                         <property name="sizePolicy"> 
    4635                             <sizepolicy> 
    4636                                 <hsizetype>1</hsizetype> 
    4637                                 <vsizetype>0</vsizetype> 
    4638                                 <horstretch>0</horstretch> 
    4639                                 <verstretch>0</verstretch> 
    4640                             </sizepolicy> 
    4641                         </property> 
    4642                         <property name="font"> 
    4643                             <font> 
    4644                                 <pointsize>9</pointsize> 
    4645                             </font> 
    4646                         </property> 
    4647                         <property name="text"> 
    4648                             <string></string> 
    4649                         </property> 
    4650                     </widget> 
    4651                     <widget class="QCheckBox"> 
    4652                         <property name="name"> 
    4653                             <cstring>checkBox1_14_2</cstring> 
    4654                         </property> 
    4655                         <property name="geometry"> 
    4656                             <rect> 
    4657                                 <x>52</x> 
    4658                                 <y>2</y> 
    4659                                 <width>20</width> 
    4660                                 <height>26</height> 
    4661                             </rect> 
    4662                         </property> 
    4663                         <property name="sizePolicy"> 
    4664                             <sizepolicy> 
    4665                                 <hsizetype>1</hsizetype> 
    4666                                 <vsizetype>0</vsizetype> 
    4667                                 <horstretch>0</horstretch> 
    4668                                 <verstretch>0</verstretch> 
    4669                             </sizepolicy> 
    4670                         </property> 
    4671                         <property name="font"> 
    4672                             <font> 
    4673                                 <pointsize>9</pointsize> 
    4674                             </font> 
    4675                         </property> 
    4676                         <property name="text"> 
    4677                             <string></string> 
    4678                         </property> 
    4679                     </widget> 
    4680                     <widget class="QCheckBox"> 
    4681                         <property name="name"> 
    4682                             <cstring>checkBox1_15_2</cstring> 
    4683                         </property> 
    4684                         <property name="geometry"> 
    4685                             <rect> 
    4686                                 <x>92</x> 
    4687                                 <y>2</y> 
    4688                                 <width>20</width> 
    4689                                 <height>26</height> 
    4690                             </rect> 
    4691                         </property> 
    4692                         <property name="sizePolicy"> 
    4693                             <sizepolicy> 
    4694                                 <hsizetype>1</hsizetype> 
    4695                                 <vsizetype>0</vsizetype> 
    4696                                 <horstretch>0</horstretch> 
    4697                                 <verstretch>0</verstretch> 
    4698                             </sizepolicy> 
    4699                         </property> 
    4700                         <property name="font"> 
    4701                             <font> 
    4702                                 <pointsize>9</pointsize> 
    4703                             </font> 
    4704                         </property> 
    4705                         <property name="text"> 
    4706                             <string></string> 
    4707                         </property> 
    4708                     </widget> 
    4709                     <widget class="QLabel"> 
    4710                         <property name="name"> 
    4711                             <cstring>textLabel1_2_2_2_5_2</cstring> 
    4712                         </property> 
    4713                         <property name="geometry"> 
    4714                             <rect> 
    4715                                 <x>2</x> 
    4716                                 <y>22</y> 
    4717                                 <width>30</width> 
    4718                                 <height>22</height> 
    4719                             </rect> 
    4720                         </property> 
    4721                         <property name="font"> 
    4722                             <font> 
    4723                                 <pointsize>9</pointsize> 
    4724                             </font> 
    4725                         </property> 
    4726                         <property name="text"> 
    4727                             <string>Solo</string> 
    4728                         </property> 
    4729                         <property name="alignment"> 
    4730                             <set>AlignCenter</set> 
    4731                         </property> 
    4732                     </widget> 
    4733                     <widget class="QLabel"> 
    4734                         <property name="name"> 
    4735                             <cstring>textLabel1_2_2_2_6_2</cstring> 
    4736                         </property> 
    4737                         <property name="geometry"> 
    4738                             <rect> 
    4739                                 <x>42</x> 
    4740                                 <y>22</y> 
    4741                                 <width>30</width> 
    4742                                 <height>22</height> 
    4743                             </rect> 
    4744                         </property> 
    4745                         <property name="font"> 
    4746                             <font> 
    4747                                 <pointsize>9</pointsize> 
    4748                             </font> 
    4749                         </property> 
    4750                         <property name="text"> 
    4751                             <string>Solo</string> 
    4752                         </property> 
    4753                         <property name="alignment"> 
    4754                             <set>AlignCenter</set> 
    4755                         </property> 
    4756                     </widget> 
    4757                     <widget class="QLabel"> 
    4758                         <property name="name"> 
    4759                             <cstring>textLabel1_2_2_2_7_2</cstring> 
    4760                         </property> 
    4761                         <property name="geometry"> 
    4762                             <rect> 
    4763                                 <x>82</x> 
    4764                                 <y>22</y> 
    4765                                 <width>30</width> 
    4766                                 <height>22</height> 
    4767                             </rect> 
    4768                         </property> 
    4769                         <property name="font"> 
    4770                             <font> 
    4771                                 <pointsize>9</pointsize> 
    4772                             </font> 
    4773                         </property> 
    4774                         <property name="text"> 
    4775                             <string>Solo</string> 
    4776                         </property> 
    4777                         <property name="alignment"> 
    4778                             <set>AlignCenter</set> 
    4779                         </property> 
    4780                     </widget> 
    4781                     <widget class="QCheckBox"> 
    4782                         <property name="name"> 
    4783                             <cstring>mix1ana1_mute_2_2_9_4</cstring> 
    4784                         </property> 
    4785                         <property name="geometry"> 
    4786                             <rect> 
    4787                                 <x>110</x> 
    4788                                 <y>270</y> 
    4789                                 <width>20</width> 
    4790                                 <height>26</height> 
    4791                             </rect> 
    4792                         </property> 
    4793                         <property name="sizePolicy"> 
    4794                             <sizepolicy> 
    4795                                 <hsizetype>1</hsizetype> 
    4796                                 <vsizetype>0</vsizetype> 
    4797                                 <horstretch>0</horstretch> 
    4798                                 <verstretch>0</verstretch> 
    4799                             </sizepolicy> 
    4800                         </property> 
    4801                         <property name="font"> 
    4802                             <font> 
    4803                                 <pointsize>9</pointsize> 
    4804                             </font> 
    4805                         </property> 
    4806                         <property name="text"> 
    4807                             <string></string> 
    4808                         </property> 
    4809                     </widget> 
    4810                     <widget class="QCheckBox"> 
    4811                         <property name="name"> 
    4812                             <cstring>mix1ana1_mute_2_2_9_3</cstring> 
    4813                         </property> 
    4814                         <property name="geometry"> 
    4815                             <rect> 
    4816                                 <x>30</x> 
    4817                                 <y>270</y> 
    4818                                 <width>20</width> 
    4819                                 <height>26</height> 
    4820                             </rect> 
    4821                         </property> 
    4822                         <property name="sizePolicy"> 
    4823                             <sizepolicy> 
    4824                                 <hsizetype>1</hsizetype> 
    4825                                 <vsizetype>0</vsizetype> 
    4826                                 <horstretch>0</horstretch> 
    4827                                 <verstretch>0</verstretch> 
    4828                             </sizepolicy> 
    4829                         </property> 
    4830                         <property name="font"> 
    4831                             <font> 
    4832                                 <pointsize>9</pointsize> 
    4833                             </font> 
    4834                         </property> 
    4835                         <property name="text"> 
    4836                             <string></string> 
    4837                         </property> 
    4838                     </widget> 
    4839                     <widget class="QLabel"> 
    4840                         <property name="name"> 
    4841                             <cstring>textLabel1_2_2_14_5_3</cstring> 
    4842                         </property> 
    4843                         <property name="geometry"> 
    4844                             <rect> 
    4845                                 <x>20</x> 
    4846                                 <y>290</y> 
    4847                                 <width>30</width> 
    4848                                 <height>22</height> 
    4849                             </rect> 
    4850                         </property> 
    4851                         <property name="font"> 
    4852                             <font> 
    4853                                 <pointsize>9</pointsize> 
    4854                             </font> 
    4855                         </property> 
    4856                         <property name="text"> 
    4857                             <string>Pair</string> 
    4858                         </property> 
    4859                         <property name="alignment"> 
    4860                             <set>AlignCenter</set> 
    4861                         </property> 
    4862                     </widget> 
    4863                     <widget class="QLabel"> 
    4864                         <property name="name"> 
    4865                             <cstring>textLabel1_2_2_14_5_4</cstring> 
    4866                         </property> 
    4867                         <property name="geometry"> 
    4868                             <rect> 
    4869                                 <x>100</x> 
    4870                                 <y>290</y> 
    4871                                 <width>30</width> 
    4872                                 <height>22</height> 
    4873                             </rect> 
    4874                         </property> 
    4875                         <property name="font"> 
    4876                             <font> 
    4877                                 <pointsize>9</pointsize> 
    4878                             </font> 
    4879                         </property> 
    4880                         <property name="text"> 
    4881                             <string>Pair</string> 
    4882                         </property> 
    4883                         <property name="alignment"> 
    4884                             <set>AlignCenter</set> 
    4885                         </property> 
    4886                     </widget> 
    4887                 </widget> 
    4888                 <widget class="QCheckBox"> 
    4889                     <property name="name"> 
    4890                         <cstring>mix1ana1_mute_2_2_9</cstring> 
    4891                     </property> 
    4892                     <property name="geometry"> 
    4893                         <rect> 
    4894                             <x>40</x> 
    4895                             <y>290</y> 
    4896                             <width>20</width> 
    4897                             <height>26</height> 
    4898                         </rect> 
    4899                     </property> 
    4900                     <property name="sizePolicy"> 
    4901                         <sizepolicy> 
    4902                             <hsizetype>1</hsizetype> 
    4903                             <vsizetype>0</vsizetype> 
    4904                             <horstretch>0</horstretch> 
    4905                             <verstretch>0</verstretch> 
    4906                         </sizepolicy> 
    4907                     </property> 
    4908                     <property name="font"> 
    4909                         <font> 
    4910                             <pointsize>9</pointsize> 
    4911                         </font> 
    4912                     </property> 
    4913                     <property name="text"> 
    4914                         <string></string> 
    4915                     </property> 
    4916                 </widget> 
    4917                 <widget class="QCheckBox"> 
    4918                     <property name="name"> 
    4919                         <cstring>mix1ana1_mute_2_2_9_2</cstring> 
    4920                     </property> 
    4921                     <property name="geometry"> 
    4922                         <rect> 
    4923                             <x>120</x> 
    4924                             <y>290</y> 
    4925                             <width>20</width> 
    4926                             <height>26</height> 
    4927                         </rect> 
    4928                     </property> 
    4929                     <property name="sizePolicy"> 
    4930                         <sizepolicy> 
    4931                             <hsizetype>1</hsizetype> 
    4932                             <vsizetype>0</vsizetype> 
    4933                             <horstretch>0</horstretch> 
    4934                             <verstretch>0</verstretch> 
    4935                         </sizepolicy> 
    4936                     </property> 
    4937                     <property name="font"> 
    4938                         <font> 
    4939                             <pointsize>9</pointsize> 
    4940                         </font> 
    4941                     </property> 
    4942                     <property name="text"> 
    4943                         <string></string> 
    4944                     </property> 
    4945                 </widget> 
    4946                 <widget class="QLabel"> 
    4947                     <property name="name"> 
    4948                         <cstring>textLabel1_2_2_14_5</cstring> 
    4949                     </property> 
    4950                     <property name="geometry"> 
    4951                         <rect> 
    4952                             <x>30</x> 
    4953                             <y>310</y> 
    4954                             <width>30</width> 
    4955                             <height>22</height> 
    4956                         </rect> 
    4957                     </property> 
    4958                     <property name="font"> 
    4959                         <font> 
    4960                             <pointsize>9</pointsize> 
    4961                         </font> 
    4962                     </property> 
    4963                     <property name="text"> 
    4964                         <string>Pair</string> 
    4965                     </property> 
    4966                     <property name="alignment"> 
    4967                         <set>AlignCenter</set> 
    4968                     </property> 
    4969                 </widget> 
    4970                 <widget class="QLabel"> 
    4971                     <property name="name"> 
    4972                         <cstring>textLabel1_2_2_14_5_2</cstring> 
    4973                     </property> 
    4974                     <property name="geometry"> 
    4975                         <rect> 
    4976                             <x>110</x> 
    4977                             <y>310</y> 
    4978                             <width>30</width> 
    4979                             <height>22</height> 
    4980                         </rect> 
    4981                     </property> 
    4982                     <property name="font"> 
    4983                         <font> 
    4984                             <pointsize>9</pointsize> 
    4985                         </font> 
    4986                     </property> 
    4987                     <property name="text"> 
    4988                         <string>Pair</string> 
    4989                     </property> 
    4990                     <property name="alignment"> 
    4991                         <set>AlignCenter</set> 
    4992                     </property> 
    4993                 </widget> 
    4994             </widget> 
    4995         </widget> 
    4996         <widget class="QWidget"> 
    4997             <property name="name"> 
    4998                 <cstring>tab</cstring> 
    4999             </property> 
    5000             <attribute name="title"> 
    5001                 <string>Mix 2</string> 
    5002             </attribute> 
    5003         </widget> 
    5004         <widget class="QWidget"> 
    5005             <property name="name"> 
    5006                 <cstring>TabPage</cstring> 
    5007             </property> 
    5008             <attribute name="title"> 
    5009                 <string>Mix 3</string> 
    5010             </attribute> 
    5011         </widget> 
    5012         <widget class="QWidget"> 
    5013             <property name="name"> 
    5014                 <cstring>TabPage</cstring> 
    5015             </property> 
    5016             <attribute name="title"> 
    5017                 <string>Mix 4</string> 
    5018             </attribute> 
    5019         </widget> 
    5020     </widget> 
    502156    <widget class="QGroupBox"> 
    502257        <property name="name"> 
     
    62711306        </widget> 
    62721307    </widget> 
     1308    <widget class="QTabWidget"> 
     1309        <property name="name"> 
     1310            <cstring>tabWidget2</cstring> 
     1311        </property> 
     1312        <property name="geometry"> 
     1313            <rect> 
     1314                <x>190</x> 
     1315                <y>10</y> 
     1316                <width>600</width> 
     1317                <height>740</height> 
     1318            </rect> 
     1319        </property> 
     1320        <widget class="QWidget"> 
     1321            <property name="name"> 
     1322                <cstring>tab</cstring> 
     1323            </property> 
     1324            <attribute name="title"> 
     1325                <string>Mix 1</string> 
     1326            </attribute> 
     1327            <widget class="QGroupBox"> 
     1328                <property name="name"> 
     1329                    <cstring>groupBox1_3_3</cstring> 
     1330                </property> 
     1331                <property name="geometry"> 
     1332                    <rect> 
     1333                        <x>480</x> 
     1334                        <y>0</y> 
     1335                        <width>110</width> 
     1336                        <height>310</height> 
     1337                    </rect> 
     1338                </property> 
     1339                <property name="title"> 
     1340                    <string>Output</string> 
     1341                </property> 
     1342                <widget class="QLabel"> 
     1343                    <property name="name"> 
     1344                        <cstring>textLabel1_2_2_11_3</cstring> 
     1345                    </property> 
     1346                    <property name="geometry"> 
     1347                        <rect> 
     1348                            <x>40</x> 
     1349                            <y>80</y> 
     1350                            <width>30</width> 
     1351                            <height>22</height> 
     1352                        </rect> 
     1353                    </property> 
     1354                    <property name="font"> 
     1355                        <font> 
     1356                            <pointsize>9</pointsize> 
     1357                        </font> 
     1358                    </property> 
     1359                    <property name="text"> 
     1360                        <string>Mute</string> 
     1361                    </property> 
     1362                    <property name="alignment"> 
     1363                        <set>AlignCenter</set> 
     1364                    </property> 
     1365                </widget> 
     1366                <widget class="QLabel"> 
     1367                    <property name="name"> 
     1368                        <cstring>textLabel2_2_3_3</cstring> 
     1369                    </property> 
     1370                    <property name="geometry"> 
     1371                        <rect> 
     1372                            <x>20</x> 
     1373                            <y>280</y> 
     1374                            <width>79</width> 
     1375                            <height>22</height> 
     1376                        </rect> 
     1377                    </property> 
     1378                    <property name="text"> 
     1379                        <string>Mix output</string> 
     1380                    </property> 
     1381                    <property name="alignment"> 
     1382                        <set>AlignCenter</set> 
     1383                    </property> 
     1384                </widget> 
     1385                <widget class="QLabel"> 
     1386                    <property name="name"> 
     1387                        <cstring>textLabel1_2_11_3</cstring> 
     1388                    </property> 
     1389                    <property name="geometry"> 
     1390                        <rect> 
     1391                            <x>20</x> 
     1392                            <y>130</y> 
     1393                            <width>64</width> 
     1394                            <height>22</height> 
     1395                        </rect> 
     1396                    </property> 
     1397                    <property name="font"> 
     1398                        <font> 
     1399                            <pointsize>9</pointsize> 
     1400                        </font> 
     1401                    </property> 
     1402                    <property name="text"> 
     1403                        <string>Destination</string> 
     1404                    </property> 
     1405                    <property name="alignment"> 
     1406                        <set>AlignCenter</set> 
     1407                    </property> 
     1408                </widget> 
     1409                <widget class="QSlider"> 
     1410                    <property name="name"> 
     1411                        <cstring>mix1_fader</cstring> 
     1412                    </property> 
     1413                    <property name="geometry"> 
     1414                        <rect> 
     1415                            <x>40</x> 
     1416                            <y>160</y> 
     1417                            <width>30</width> 
     1418                            <height>120</height> 
     1419                        </rect> 
     1420                    </property> 
     1421                    <property name="minValue"> 
     1422                        <number>0</number> 
     1423                    </property> 
     1424                    <property name="maxValue"> 
     1425                        <number>128</number> 
     1426                    </property> 
     1427                    <property name="lineStep"> 
     1428                        <number>1</number> 
     1429                    </property> 
     1430                    <property name="pageStep"> 
     1431                        <number>10</number> 
     1432                    </property> 
     1433                    <property name="value"> 
     1434                        <number>128</number> 
     1435                    </property> 
     1436                    <property name="orientation"> 
     1437                        <enum>Vertical</enum> 
     1438                    </property> 
     1439                    <property name="tickmarks"> 
     1440                        <enum>Both</enum> 
     1441                    </property> 
     1442                    <property name="tickInterval"> 
     1443                        <number>10</number> 
     1444                    </property> 
     1445                </widget> 
     1446                <widget class="QCheckBox"> 
     1447                    <property name="name"> 
     1448                        <cstring>mix1_mute</cstring> 
     1449                    </property> 
     1450                    <property name="geometry"> 
     1451                        <rect> 
     1452                            <x>50</x> 
     1453                            <y>60</y> 
     1454                            <width>20</width> 
     1455                            <height>26</height> 
     1456                        </rect> 
     1457                    </property> 
     1458                    <property name="sizePolicy"> 
     1459                        <sizepolicy> 
     1460                            <hsizetype>1</hsizetype> 
     1461                            <vsizetype>0</vsizetype> 
     1462                            <horstretch>0</horstretch> 
     1463                            <verstretch>0</verstretch> 
     1464                        </sizepolicy> 
     1465                    </property> 
     1466                    <property name="font"> 
     1467                        <font> 
     1468                            <pointsize>9</pointsize> 
     1469                        </font> 
     1470                    </property> 
     1471                    <property name="text"> 
     1472                        <string></string> 
     1473                    </property> 
     1474                </widget> 
     1475                <widget class="QComboBox"> 
     1476                    <item> 
     1477                        <property name="text"> 
     1478                            <string>Disabled</string> 
     1479                        </property> 
     1480                    </item> 
     1481                    <item> 
     1482                        <property name="text"> 
     1483                            <string>Phones</string> 
     1484                        </property> 
     1485                    </item> 
     1486                    <item> 
     1487                        <property name="text"> 
     1488                            <string>Analog 1-2</string> 
     1489                        </property> 
     1490                    </item> 
     1491                    <item> 
     1492                        <property name="text"> 
     1493                            <string>Analog 3-4</string> 
     1494                        </property> 
     1495                    </item> 
     1496                    <item> 
     1497                        <property name="text"> 
     1498                            <string>Analog 5-6</string> 
     1499                        </property> 
     1500                    </item> 
     1501                    <item> 
     1502                        <property name="text"> 
     1503                            <string>Analog 7-8</string> 
     1504                        </property> 
     1505                    </item> 
     1506                    <item> 
     1507                        <property name="text"> 
     1508                            <string>AES/EBU</string> 
     1509                        </property> 
     1510                    </item> 
     1511                    <item> 
     1512                        <property name="text"> 
     1513                            <string>SPDIF</string> 
     1514                        </property> 
     1515                    </item> 
     1516                    <item> 
     1517                        <property name="text"> 
     1518                            <string>ADAT 1-2</string> 
     1519                        </property> 
     1520                    </item> 
     1521                    <item> 
     1522                        <property name="text"> 
     1523                            <string>ADAT 3-4</string> 
     1524                        </property> 
     1525                    </item> 
     1526                    <item> 
     1527                        <property name="text"> 
     1528                            <string>ADAT 5-6</string> 
     1529                        </property> 
     1530                    </item> 
     1531                    <item> 
     1532                        <property name="text"> 
     1533                            <string>ADAT 7-8</string> 
     1534                        </property> 
     1535                    </item> 
     1536                    <property name="name"> 
     1537                        <cstring>mix1_dest</cstring> 
     1538                    </property> 
     1539                    <property name="geometry"> 
     1540                        <rect> 
     1541                            <x>10</x> 
     1542                            <y>110</y> 
     1543                            <width>90</width> 
     1544                            <height>21</height> 
     1545                        </rect> 
     1546                    </property> 
     1547                    <property name="font"> 
     1548                        <font> 
     1549                            <pointsize>9</pointsize> 
     1550                        </font> 
     1551                    </property> 
     1552                </widget> 
     1553            </widget> 
     1554            <widget class="QGroupBox"> 
     1555                <property name="name"> 
     1556                    <cstring>groupBox1</cstring> 
     1557                </property> 
     1558                <property name="geometry"> 
     1559                    <rect> 
     1560                        <x>10</x> 
     1561                        <y>0</y> 
     1562                        <width>330</width> 
     1563                        <height>340</height> 
     1564                    </rect> 
     1565                </property> 
     1566                <property name="title"> 
     1567                    <string>Analog</string> 
     1568                </property> 
     1569                <widget class="QLabel"> 
     1570                    <property name="name"> 
     1571                        <cstring>textLabel1_2_3</cstring> 
     1572                    </property> 
     1573                    <property name="geometry"> 
     1574                        <rect> 
     1575                            <x>50</x> 
     1576                            <y>130</y> 
     1577                            <width>30</width> 
     1578                            <height>22</height> 
     1579                        </rect> 
     1580                    </property> 
     1581                    <property name="font"> 
     1582                        <font> 
     1583                            <pointsize>9</pointsize> 
     1584                        </font> 
     1585                    </property> 
     1586                    <property name="text"> 
     1587                        <string>Pan</string> 
     1588                    </property> 
     1589                    <property name="alignment"> 
     1590                        <set>AlignCenter</set> 
     1591                    </property> 
     1592                </widget> 
     1593                <widget class="QLabel"> 
     1594                    <property name="name"> 
     1595                        <cstring>textLabel1_2_4</cstring> 
     1596                    </property> 
     1597                    <property name="geometry"> 
     1598                        <rect> 
     1599                            <x>90</x> 
     1600                            <y>130</y> 
     1601                            <width>30</width> 
     1602                            <height>22</height> 
     1603                        </rect> 
     1604                    </property> 
     1605                    <property name="font"> 
     1606                        <font> 
     1607                            <pointsize>9</pointsize> 
     1608                        </font> 
     1609                    </property> 
     1610                    <property name="text"> 
     1611                        <string>Pan</string> 
     1612                    </property> 
     1613                    <property name="alignment"> 
     1614                        <set>AlignCenter</set> 
     1615                    </property> 
     1616                </widget> 
     1617                <widget class="QLabel"> 
     1618                    <property name="name"> 
     1619                        <cstring>textLabel1_2_5</cstring> 
     1620                    </property> 
     1621                    <property name="geometry"> 
     1622                        <rect> 
     1623                            <x>130</x> 
     1624                            <y>130</y> 
     1625                            <width>30</width> 
     1626                            <height>22</height> 
     1627                        </rect> 
     1628                    </property> 
     1629                    <property name="font"> 
     1630                        <font> 
     1631                            <pointsize>9</pointsize> 
     1632                        </font> 
     1633                    </property> 
     1634                    <property name="text"> 
     1635                        <string>Pan</string> 
     1636                    </property> 
     1637                    <property name="alignment"> 
     1638                        <set>AlignCenter</set> 
     1639                    </property> 
     1640                </widget> 
     1641                <widget class="QLabel"> 
     1642                    <property name="name"> 
     1643                        <cstring>textLabel1_2_6</cstring> 
     1644                    </property> 
     1645                    <property name="geometry"> 
     1646                        <rect> 
     1647                            <x>170</x> 
     1648                            <y>130</y> 
     1649                            <width>30</width> 
     1650                            <height>22</height> 
     1651                        </rect> 
     1652                    </property> 
     1653                    <property name="font"> 
     1654                        <font> 
     1655                            <pointsize>9</pointsize> 
     1656                        </font> 
     1657                    </property> 
     1658                    <property name="text"> 
     1659                        <string>Pan</string> 
     1660                    </property> 
     1661                    <property name="alignment"> 
     1662                        <set>AlignCenter</set> 
     1663                    </property> 
     1664                </widget> 
     1665                <widget class="QLabel"> 
     1666                    <property name="name"> 
     1667                        <cstring>textLabel1_2_7</cstring> 
     1668                    </property> 
     1669                    <property name="geometry"> 
     1670                        <rect> 
     1671                            <x>210</x> 
     1672                            <y>130</y> 
     1673                            <width>30</width> 
     1674                            <height>22</height> 
     1675                        </rect> 
     1676                    </property> 
     1677                    <property name="font"> 
     1678                        <font> 
     1679                            <pointsize>9</pointsize> 
     1680                        </font> 
     1681                    </property> 
     1682                    <property name="text"> 
     1683                        <string>Pan</string> 
     1684                    </property> 
     1685                    <property name="alignment"> 
     1686                        <set>AlignCenter</set> 
     1687                    </property> 
     1688                </widget> 
     1689                <widget class="QLabel"> 
     1690                    <property name="name"> 
     1691                        <cstring>textLabel1_2_8</cstring> 
     1692                    </property> 
     1693                    <property name="geometry"> 
     1694                        <rect> 
     1695                            <x>250</x> 
     1696                            <y>130</y> 
     1697                            <width>30</width> 
     1698                            <height>22</height> 
     1699                        </rect> 
     1700                    </property> 
     1701                    <property name="font"> 
     1702                        <font> 
     1703                            <pointsize>9</pointsize> 
     1704                        </font> 
     1705                    </property> 
     1706                    <property name="text"> 
     1707                        <string>Pan</string> 
     1708                    </property> 
     1709                    <property name="alignment"> 
     1710                        <set>AlignCenter</set> 
     1711                    </property> 
     1712                </widget> 
     1713                <widget class="QLabel"> 
     1714                    <property name="name"> 
     1715                        <cstring>textLabel1_2_9</cstring> 
     1716                    </property> 
     1717                    <property name="geometry"> 
     1718                        <rect> 
     1719                            <x>290</x> 
     1720                            <y>130</y> 
     1721                            <width>30</width> 
     1722                            <height>22</height> 
     1723                        </rect> 
     1724                    </property> 
     1725                    <property name="font"> 
     1726                        <font> 
     1727                            <pointsize>9</pointsize> 
     1728                        </font> 
     1729                    </property> 
     1730                    <property name="text"> 
     1731                        <string>Pan</string> 
     1732                    </property> 
     1733                    <property name="alignment"> 
     1734                        <set>AlignCenter</set> 
     1735                    </property> 
     1736                </widget> 
     1737                <widget class="QLabel"> 
     1738                    <property name="name"> 
     1739                        <cstring>textLabel1_2_2_3</cstring> 
     1740                    </property> 
     1741                    <property name="geometry"> 
     1742                        <rect> 
     1743                            <x>50</x> 
     1744                            <y>80</y> 
     1745                            <width>30</width> 
     1746                            <height>22</height> 
     1747                        </rect> 
     1748                    </property> 
     1749                    <property name="font"> 
     1750                        <font> 
     1751                            <pointsize>9</pointsize> 
     1752                        </font> 
     1753                    </property> 
     1754                    <property name="text"> 
     1755                        <string>Mute</string> 
     1756                    </property> 
     1757                    <property name="alignment"> 
     1758                        <set>AlignCenter</set> 
     1759                    </property> 
     1760                </widget> 
     1761                <widget class="QLabel"> 
     1762                    <property name="name"> 
     1763                        <cstring>textLabel1_2_2_4</cstring> 
     1764                    </property> 
     1765                    <property name="geometry"> 
     1766                        <rect> 
     1767                            <x>90</x> 
     1768                            <y>80</y> 
     1769                            <width>30</width> 
     1770                            <height>22</height> 
     1771                        </rect> 
     1772                    </property> 
     1773                    <property name="font"> 
     1774                        <font> 
     1775                            <pointsize>9</pointsize> 
     1776                        </font> 
     1777                    </property> 
     1778                    <property name="text"> 
     1779                        <string>Mute</string> 
     1780                    </property> 
     1781                    <property name="alignment"> 
     1782                        <set>AlignCenter</set> 
     1783                    </property> 
     1784                </widget> 
     1785                <widget class="QLabel"> 
     1786                    <property name="name"> 
     1787                        <cstring>textLabel1_2_2_5</cstring> 
     1788                    </property> 
     1789                    <property name="geometry"> 
     1790                        <rect> 
     1791                            <x>130</x> 
     1792                            <y>80</y> 
     1793                            <width>30</width> 
     1794                            <height>22</height> 
     1795                        </rect> 
     1796                    </property> 
     1797                    <property name="font"> 
     1798                        <font> 
     1799                            <pointsize>9</pointsize> 
     1800                        </font> 
     1801                    </property> 
     1802                    <property name="text"> 
     1803                        <string>Mute</string> 
     1804                    </property> 
     1805                    <property name="alignment"> 
     1806                        <set>AlignCenter</set> 
     1807                    </property> 
     1808                </widget> 
     1809                <widget class="QLabel"> 
     1810                    <property name="name"> 
     1811                        <cstring>textLabel1_2_2_6</cstring> 
     1812                    </property> 
     1813                    <property name="geometry"> 
     1814                        <rect> 
     1815                            <x>170</x> 
     1816                            <y>80</y> 
     1817                            <width>30</width> 
     1818                            <height>22</height> 
     1819                        </rect> 
     1820                    </property> 
     1821                    <property name="font"> 
     1822                        <font> 
     1823                            <pointsize>9</pointsize> 
     1824                        </font> 
     1825                    </property> 
     1826                    <property name="text"> 
     1827                        <string>Mute</string> 
     1828                    </property> 
     1829                    <property name="alignment"> 
     1830                        <set>AlignCenter</set> 
     1831                    </property> 
     1832                </widget> 
     1833                <widget class="QLabel"> 
     1834                    <property name="name"> 
     1835                        <cstring>textLabel1_2_2_7</cstring> 
     1836                    </property> 
     1837                    <property name="geometry"> 
     1838                        <rect> 
     1839                            <x>210</x> 
     1840                            <y>80</y> 
     1841                            <width>30</width> 
     1842                            <height>22</height> 
     1843                        </rect> 
     1844                    </property> 
     1845                    <property name="font"> 
     1846                        <font> 
     1847                            <pointsize>9</pointsize> 
     1848                        </font> 
     1849                    </property> 
     1850                    <property name="text"> 
     1851                        <string>Mute</string> 
     1852                    </property> 
     1853                    <property name="alignment"> 
     1854                        <set>AlignCenter</set> 
     1855                    </property> 
     1856                </widget> 
     1857                <widget class="QLabel"> 
     1858                    <property name="name"> 
     1859                        <cstring>textLabel1_2_2_8</cstring> 
     1860                    </property> 
     1861                    <property name="geometry"> 
     1862                        <rect> 
     1863                            <x>250</x> 
     1864                            <y>80</y> 
     1865                            <width>30</width> 
     1866                            <height>22</height> 
     1867                        </rect> 
     1868                    </property> 
     1869                    <property name="font"> 
     1870                        <font> 
     1871                            <pointsize>9</pointsize> 
     1872                        </font> 
     1873                    </property> 
     1874                    <property name="text"> 
     1875                        <string>Mute</string> 
     1876                    </property> 
     1877                    <property name="alignment"> 
     1878                        <set>AlignCenter</set> 
     1879                    </property> 
     1880                </widget> 
     1881                <widget class="QLabel"> 
     1882                    <property name="name"> 
     1883                        <cstring>textLabel1_2_2_9</cstring> 
     1884                    </property> 
     1885                    <property name="geometry"> 
     1886                        <rect> 
     1887                            <x>290</x> 
     1888                            <y>80</y> 
     1889                            <width>30</width> 
     1890                            <height>22</height> 
     1891                        </rect> 
     1892                    </property> 
     1893                    <property name="font"> 
     1894                        <font> 
     1895                            <pointsize>9</pointsize> 
     1896                        </font> 
     1897                    </property> 
     1898                    <property name="text"> 
     1899                        <string>Mute</string> 
     1900                    </property> 
     1901                    <property name="alignment"> 
     1902                        <set>AlignCenter</set> 
     1903                    </property> 
     1904                </widget> 
     1905                <widget class="QLabel"> 
     1906                    <property name="name"> 
     1907                        <cstring>textLabel1_2_2_2</cstring> 
     1908                    </property> 
     1909                    <property name="geometry"> 
     1910                        <rect> 
     1911                            <x>10</x> 
     1912                            <y>40</y> 
     1913                            <width>30</width> 
     1914                            <height>22</height> 
     1915                        </rect> 
     1916                    </property> 
     1917                    <property name="font"> 
     1918                        <font> 
     1919                            <pointsize>9</pointsize> 
     1920                        </font> 
     1921                    </property> 
     1922                    <property name="text"> 
     1923                        <string>Solo</string> 
     1924                    </property> 
     1925                    <property name="alignment"> 
     1926                        <set>AlignCenter</set> 
     1927                    </property> 
     1928                </widget> 
     1929                <widget class="QLabel"> 
     1930                    <property name="name"> 
     1931                        <cstring>textLabel1_2_2_2_2</cstring> 
     1932                    </property> 
     1933                    <property name="geometry"> 
     1934                        <rect> 
     1935                            <x>50</x> 
     1936                            <y>40</y> 
     1937                            <width>30</width> 
     1938                            <height>22</height> 
     1939                        </rect> 
     1940                    </property> 
     1941                    <property name="font"> 
     1942                        <font> 
     1943                            <pointsize>9</pointsize> 
     1944                        </font> 
     1945                    </property> 
     1946                    <property name="text"> 
     1947                        <string>Solo</string> 
     1948                    </property> 
     1949                    <property name="alignment"> 
     1950                        <set>AlignCenter</set> 
     1951                    </property> 
     1952                </widget> 
     1953                <widget class="QLabel"> 
     1954                    <property name="name"> 
     1955                        <cstring>textLabel1_2_2_2_3</cstring> 
     1956                    </property> 
     1957                    <property name="geometry"> 
     1958                        <rect> 
     1959                            <x>90</x> 
     1960                            <y>40</y> 
     1961                            <width>30</width> 
     1962                            <height>22</height> 
     1963                        </rect> 
     1964                    </property> 
     1965                    <property name="font"> 
     1966                        <font> 
     1967                            <pointsize>9</pointsize> 
     1968                        </font> 
     1969                    </property> 
     1970                    <property name="text"> 
     1971                        <string>Solo</string> 
     1972                    </property> 
     1973                    <property name="alignment"> 
     1974                        <set>AlignCenter</set> 
     1975                    </property> 
     1976                </widget> 
     1977                <widget class="QLabel"> 
     1978                    <property name="name"> 
     1979                        <cstring>textLabel1_2_2_2_4</cstring> 
     1980                    </property> 
     1981                    <property name="geometry"> 
     1982                        <rect> 
     1983                            <x>130</x> 
     1984                            <y>40</y> 
     1985                            <width>30</width> 
     1986                            <height>22</height> 
     1987                        </rect> 
     1988                    </property> 
     1989                    <property name="font"> 
     1990                        <font> 
     1991                            <pointsize>9</pointsize> 
     1992                        </font> 
     1993                    </property> 
     1994                    <property name="text"> 
     1995                        <string>Solo</string> 
     1996                    </property> 
     1997                    <property name="alignment"> 
     1998                        <set>AlignCenter</set> 
     1999                    </property> 
     2000                </widget> 
     2001                <widget class="QLabel"> 
     2002                    <property name="name"> 
     2003                        <cstring>textLabel1_2_2_2_5</cstring> 
     2004                    </property> 
     2005                    <property name="geometry"> 
     2006                        <rect> 
     2007                            <x>170</x> 
     2008                            <y>40</y> 
     2009                            <width>30</width> 
     2010                            <height>22</height> 
     2011                        </rect> 
     2012                    </property> 
     2013                    <property name="font"> 
     2014                        <font> 
     2015                            <pointsize>9</pointsize> 
     2016                        </font> 
     2017                    </property> 
     2018                    <property name="text"> 
     2019                        <string>Solo</string> 
     2020                    </property> 
     2021                    <property name="alignment"> 
     2022                        <set>AlignCenter</set> 
     2023                    </property> 
     2024                </widget> 
     2025                <widget class="QLabel"> 
     2026                    <property name="name"> 
     2027                        <cstring>textLabel1_2_2_2_6</cstring> 
     2028                    </property> 
     2029                    <property name="geometry"> 
     2030                        <rect> 
     2031                            <x>210</x> 
     2032                            <y>40</y> 
     2033                            <width>30</width> 
     2034                            <height>22</height> 
     2035                        </rect> 
     2036                    </property> 
     2037                    <property name="font"> 
     2038                        <font> 
     2039                            <pointsize>9</pointsize> 
     2040                        </font> 
     2041                    </property> 
     2042                    <property name="text"> 
     2043                        <string>Solo</string> 
     2044                    </property> 
     2045                    <property name="alignment"> 
     2046                        <set>AlignCenter</set> 
     2047                    </property> 
     2048                </widget> 
     2049                <widget class="QLabel"> 
     2050                    <property name="name"> 
     2051                        <cstring>textLabel1_2_2_2_7</cstring> 
     2052                    </property> 
     2053                    <property name="geometry"> 
     2054                        <rect> 
     2055                            <x>250</x> 
     2056                            <y>40</y> 
     2057                            <width>30</width> 
     2058                            <height>22</height> 
     2059                        </rect> 
     2060                    </property> 
     2061                    <property name="font"> 
     2062                        <font> 
     2063                            <pointsize>9</pointsize> 
     2064                        </font> 
     2065                    </property> 
     2066                    <property name="text"> 
     2067                        <string>Solo</string> 
     2068                    </property> 
     2069                    <property name="alignment"> 
     2070                        <set>AlignCenter</set> 
     2071                    </property> 
     2072                </widget> 
     2073                <widget class="QLabel"> 
     2074                    <property name="name"> 
     2075                        <cstring>textLabel1_2_2_2_8</cstring> 
     2076                    </property> 
     2077                    <property name="geometry"> 
     2078                        <rect> 
     2079                            <x>290</x> 
     2080                            <y>40</y> 
     2081                            <width>30</width> 
     2082                            <height>22</height> 
     2083                        </rect> 
     2084                    </property> 
     2085                    <property name="font"> 
     2086                        <font> 
     2087                            <pointsize>9</pointsize> 
     2088                        </font> 
     2089                    </property> 
     2090                    <property name="text"> 
     2091                        <string>Solo</string> 
     2092                    </property> 
     2093                    <property name="alignment"> 
     2094                        <set>AlignCenter</set> 
     2095                    </property> 
     2096                </widget> 
     2097                <widget class="QLabel"> 
     2098                    <property name="name"> 
     2099                        <cstring>textLabel1_2_2</cstring> 
     2100                    </property> 
     2101                    <property name="geometry"> 
     2102                        <rect> 
     2103                            <x>10</x> 
     2104                            <y>80</y> 
     2105                            <width>30</width> 
     2106                            <height>22</height> 
     2107                        </rect> 
     2108                    </property> 
     2109                    <property name="font"> 
     2110                        <font> 
     2111                            <pointsize>9</pointsize> 
     2112                        </font> 
     2113                    </property> 
     2114                    <property name="text"> 
     2115                        <string>Mute</string> 
     2116                    </property> 
     2117                    <property name="alignment"> 
     2118                        <set>AlignCenter</set> 
     2119                    </property> 
     2120                </widget> 
     2121                <widget class="QLabel"> 
     2122                    <property name="name"> 
     2123                        <cstring>textLabel2_3</cstring> 
     2124                    </property> 
     2125                    <property name="geometry"> 
     2126                        <rect> 
     2127                            <x>90</x> 
     2128                            <y>280</y> 
     2129                            <width>30</width> 
     2130                            <height>22</height> 
     2131                        </rect> 
     2132                    </property> 
     2133                    <property name="text"> 
     2134                        <string>3</string> 
     2135                    </property> 
     2136                    <property name="alignment"> 
     2137                        <set>AlignCenter</set> 
     2138                    </property> 
     2139                </widget> 
     2140                <widget class="QLabel"> 
     2141                    <property name="name"> 
     2142                        <cstring>textLabel2_4</cstring> 
     2143                    </property> 
     2144                    <property name="geometry"> 
     2145                        <rect> 
     2146                            <x>130</x> 
     2147                            <y>280</y> 
     2148                            <width>30</width> 
     2149                            <height>22</height> 
     2150                        </rect> 
     2151                    </property> 
     2152                    <property name="text"> 
     2153                        <string>4</string> 
     2154                    </property> 
     2155                    <property name="alignment"> 
     2156                        <set>AlignCenter</set> 
     2157                    </property> 
     2158                </widget> 
     2159                <widget class="QLabel"> 
     2160                    <property name="name"> 
     2161                        <cstring>textLabel2_5</cstring> 
     2162                    </property> 
     2163                    <property name="geometry"> 
     2164                        <rect> 
     2165                            <x>170</x> 
     2166                            <y>280</y> 
     2167                            <width>30</width> 
     2168                            <height>22</height> 
     2169                        </rect> 
     2170                    </property> 
     2171                    <property name="text"> 
     2172                        <string>5</string> 
     2173                    </property> 
     2174                    <property name="alignment"> 
     2175                        <set>AlignCenter</set> 
     2176                    </property> 
     2177                </widget> 
     2178                <widget class="QLabel"> 
     2179                    <property name="name"> 
     2180                        <cstring>textLabel2_6</cstring> 
     2181                    </property> 
     2182                    <property name="geometry"> 
     2183                        <rect> 
     2184                            <x>210</x> 
     2185                            <y>280</y> 
     2186                            <width>30</width> 
     2187                            <height>22</height> 
     2188                        </rect> 
     2189                    </property> 
     2190                    <property name="text"> 
     2191                        <string>6</string> 
     2192                    </property> 
     2193                    <property name="alignment"> 
     2194                        <set>AlignCenter</set> 
     2195                    </property> 
     2196                </widget> 
     2197                <widget class="QLabel"> 
     2198                    <property name="name"> 
     2199                        <cstring>textLabel2_7</cstring> 
     2200                    </property> 
     2201                    <property name="geometry"> 
     2202                        <rect> 
     2203                            <x>250</x> 
     2204                            <y>280</y> 
     2205                            <width>30</width> 
     2206                            <height>22</height> 
     2207                        </rect> 
     2208                    </property> 
     2209                    <property name="text"> 
     2210                        <string>7</string> 
     2211                    </property> 
     2212                    <property name="alignment"> 
     2213                        <set>AlignCenter</set> 
     2214                    </property> 
     2215                </widget> 
     2216                <widget class="QLabel"> 
     2217                    <property name="name"> 
     2218                        <cstring>textLabel2_8</cstring> 
     2219                    </property> 
     2220                    <property name="geometry"> 
     2221                        <rect> 
     2222                            <x>290</x> 
     2223                            <y>280</y> 
     2224                            <width>30</width> 
     2225                            <height>22</height> 
     2226                        </rect> 
     2227                    </property> 
     2228                    <property name="text"> 
     2229                        <string>8</string> 
     2230                    </property> 
     2231                    <property name="alignment"> 
     2232                        <set>AlignCenter</set> 
     2233                    </property> 
     2234                </widget> 
     2235                <widget class="QSlider"> 
     2236                    <property name="name"> 
     2237                        <cstring>mix1ana2_fader</cstring> 
     2238                    </property> 
     2239                    <property name="geometry"> 
     2240                        <rect> 
     2241                            <x>50</x> 
     2242                            <y>160</y> 
     2243                            <width>30</width> 
     2244                            <height>120</height> 
     2245                        </rect> 
     2246                    </property> 
     2247                    <property name="minValue"> 
     2248                        <number>0</number> 
     2249                    </property> 
     2250                    <property name="maxValue"> 
     2251                        <number>128</number> 
     2252                    </property> 
     2253                    <property name="lineStep"> 
     2254                        <number>1</number> 
     2255                    </property> 
     2256                    <property name="pageStep"> 
     2257                        <number>10</number> 
     2258                    </property> 
     2259                    <property name="value"> 
     2260                        <number>128</number> 
     2261                    </property> 
     2262                    <property name="orientation"> 
     2263                        <enum>Vertical</enum> 
     2264                    </property> 
     2265                    <property name="tickmarks"> 
     2266                        <enum>Both</enum> 
     2267                    </property> 
     2268                    <property name="tickInterval"> 
     2269                        <number>10</number> 
     2270                    </property> 
     2271                </widget> 
     2272                <widget class="QSlider"> 
     2273                    <property name="name"> 
     2274                        <cstring>mix1ana3_fader</cstring> 
     2275                    </property> 
     2276                    <property name="geometry"> 
     2277                        <rect> 
     2278                            <x>90</x> 
     2279                            <y>160</y> 
     2280                            <width>30</width> 
     2281                            <height>120</height> 
     2282                        </rect> 
     2283                    </property> 
     2284                    <property name="minValue"> 
     2285                        <number>0</number> 
     2286                    </property> 
     2287                    <property name="maxValue"> 
     2288                        <number>128</number> 
     2289                    </property> 
     2290                    <property name="lineStep"> 
     2291                        <number>1</number> 
     2292                    </property> 
     2293                    <property name="pageStep"> 
     2294                        <number>10</number> 
     2295                    </property> 
     2296                    <property name="value"> 
     2297                        <number>128</number> 
     2298                    </property> 
     2299                    <property name="orientation"> 
     2300                        <enum>Vertical</enum> 
     2301                    </property> 
     2302                    <property name="tickmarks"> 
     2303                        <enum>Both</enum> 
     2304                    </property> 
     2305                    <property name="tickInterval"> 
     2306                        <number>10</number> 
     2307                    </property> 
     2308                </widget> 
     2309                <widget class="QSlider"> 
     2310                    <property name="name"> 
     2311                        <cstring>mix1ana4_fader</cstring> 
     2312                    </property> 
     2313                    <property name="geometry"> 
     2314                        <rect> 
     2315                            <x>130</x> 
     2316                            <y>160</y> 
     2317                            <width>30</width> 
     2318                            <height>120</height> 
     2319                        </rect> 
     2320                    </property> 
     2321                    <property name="minValue"> 
     2322                        <number>0</number> 
     2323                    </property> 
     2324                    <property name="maxValue"> 
     2325                        <number>128</number> 
     2326                    </property> 
     2327                    <property name="lineStep"> 
     2328                        <number>1</number> 
     2329                    </property> 
     2330                    <property name="pageStep"> 
     2331                        <number>10</number> 
     2332                    </property> 
     2333                    <property name="value"> 
     2334                        <number>128</number> 
     2335                    </property> 
     2336                    <property name="orientation"> 
     2337                        <enum>Vertical</enum> 
     2338                    </property> 
     2339                    <property name="tickmarks"> 
     2340                        <enum>Both</enum> 
     2341                    </property> 
     2342                    <property name="tickInterval"> 
     2343                        <number>10</number> 
     2344                    </property> 
     2345                </widget> 
     2346                <widget class="QSlider"> 
     2347                    <property name="name"> 
     2348                        <cstring>mix1ana5_fader</cstring> 
     2349                    </property> 
     2350                    <property name="geometry"> 
     2351                        <rect> 
     2352                            <x>170</x> 
     2353                            <y>160</y> 
     2354                            <width>30</width> 
     2355                            <height>120</height> 
     2356                        </rect> 
     2357                    </property> 
     2358                    <property name="minValue"> 
     2359                        <number>0</number> 
     2360                    </property> 
     2361                    <property name="maxValue"> 
     2362                        <number>128</number> 
     2363                    </property> 
     2364                    <property name="lineStep"> 
     2365                        <number>1</number> 
     2366                    </property> 
     2367                    <property name="pageStep"> 
     2368                        <number>10</number> 
     2369                    </property> 
     2370                    <property name="value"> 
     2371                        <number>128</number> 
     2372                    </property> 
     2373                    <property name="orientation"> 
     2374                        <enum>Vertical</enum> 
     2375                    </property> 
     2376                    <property name="tickmarks"> 
     2377                        <enum>Both</enum> 
     2378                    </property> 
     2379                    <property name="tickInterval"> 
     2380                        <number>10</number> 
     2381                    </property> 
     2382                </widget> 
     2383                <widget class="QSlider"> 
     2384                    <property name="name"> 
     2385                        <cstring>mix1ana6_fader</cstring> 
     2386                    </property> 
     2387                    <property name="geometry"> 
     2388                        <rect> 
     2389                            <x>210</x> 
     2390                            <y>160</y> 
     2391                            <width>30</width> 
     2392                            <height>120</height> 
     2393                        </rect> 
     2394                    </property> 
     2395                    <property name="minValue"> 
     2396                        <number>0</number> 
     2397                    </property> 
     2398                    <property name="maxValue"> 
     2399                        <number>128</number> 
     2400                    </property> 
     2401                    <property name="lineStep"> 
     2402                        <number>1</number> 
     2403                    </property> 
     2404                    <property name="pageStep"> 
     2405                        <number>10</number> 
     2406                    </property> 
     2407                    <property name="value"> 
     2408                        <number>128</number> 
     2409                    </property> 
     2410                    <property name="orientation"> 
     2411                        <enum>Vertical</enum> 
     2412                    </property> 
     2413                    <property name="tickmarks"> 
     2414                        <enum>Both</enum> 
     2415                    </property> 
     2416                    <property name="tickInterval"> 
     2417                        <number>10</number> 
     2418                    </property> 
     2419                </widget> 
     2420                <widget class="QSlider"> 
     2421                    <property name="name"> 
     2422                        <cstring>mix1ana7_fader</cstring> 
     2423                    </property> 
     2424                    <property name="geometry"> 
     2425                        <rect> 
     2426                            <x>250</x> 
     2427                            <y>160</y> 
     2428                            <width>30</width> 
     2429                            <height>120</height> 
     2430                        </rect> 
     2431                    </property> 
     2432                    <property name="minValue"> 
     2433                        <number>0</number> 
     2434                    </property> 
     2435                    <property name="maxValue"> 
     2436                        <number>128</number> 
     2437                    </property> 
     2438                    <property name="lineStep"> 
     2439                        <number>1</number> 
     2440                    </property> 
     2441                    <property name="pageStep"> 
     2442                        <number>10</number> 
     2443                    </property> 
     2444                    <property name="value"> 
     2445                        <number>128</number> 
     2446                    </property> 
     2447                    <property name="orientation"> 
     2448                        <enum>Vertical</enum> 
     2449                    </property> 
     2450                    <property name="tickmarks"> 
     2451                        <enum>Both</enum> 
     2452                    </property> 
     2453                    <property name="tickInterval"> 
     2454                        <number>10</number> 
     2455                    </property> 
     2456                </widget> 
     2457                <widget class="QSlider"> 
     2458                    <property name="name"> 
     2459                        <cstring>mix1ana8_fader</cstring> 
     2460                    </property> 
     2461                    <property name="geometry"> 
     2462                        <rect> 
     2463                            <x>290</x> 
     2464                            <y>160</y> 
     2465                            <width>30</width> 
     2466                            <height>120</height> 
     2467                        </rect> 
     2468                    </property> 
     2469                    <property name="minValue"> 
     2470                        <number>0</number> 
     2471                    </property> 
     2472                    <property name="maxValue"> 
     2473                        <number>128</number> 
     2474                    </property> 
     2475                    <property name="lineStep"> 
     2476                        <number>1</number> 
     2477                    </property> 
     2478                    <property name="pageStep"> 
     2479                        <number>10</number> 
     2480                    </property> 
     2481                    <property name="value"> 
     2482                        <number>128</number> 
     2483                    </property> 
     2484                    <property name="orientation"> 
     2485                        <enum>Vertical</enum> 
     2486                    </property> 
     2487                    <property name="tickmarks"> 
     2488                        <enum>Both</enum> 
     2489                    </property> 
     2490                    <property name="tickInterval"> 
     2491                        <number>10</number> 
     2492                    </property> 
     2493                </widget> 
     2494                <widget class="QDial"> 
     2495                    <property name="name"> 
     2496                        <cstring>mix1ana2_pan</cstring> 
     2497                    </property> 
     2498                    <property name="geometry"> 
     2499                        <rect> 
     2500                            <x>50</x> 
     2501                            <y>100</y> 
     2502                            <width>30</width> 
     2503                            <height>30</height> 
     2504                        </rect> 
     2505                    </property> 
     2506                    <property name="minValue"> 
     2507                        <number>-64</number> 
     2508                    </property> 
     2509                    <property name="maxValue"> 
     2510                        <number>64</number> 
     2511                    </property> 
     2512                </widget> 
     2513                <widget class="QDial"> 
     2514                    <property name="name"> 
     2515                        <cstring>mix1ana3_pan</cstring> 
     2516                    </property> 
     2517                    <property name="geometry"> 
     2518                        <rect> 
     2519                            <x>90</x> 
     2520                            <y>100</y> 
     2521                            <width>30</width> 
     2522                            <height>30</height> 
     2523                        </rect> 
     2524                    </property> 
     2525                    <property name="minValue"> 
     2526                        <number>-64</number> 
     2527                    </property> 
     2528                    <property name="maxValue"> 
     2529                        <number>64</number> 
     2530                    </property> 
     2531                </widget> 
     2532                <widget class="QDial"> 
     2533                    <property name="name"> 
     2534                        <cstring>mix1ana4_pan</cstring> 
     2535                    </property> 
     2536                    <property name="geometry"> 
     2537                        <rect> 
     2538                            <x>130</x> 
     2539                            <y>100</y> 
     2540                            <width>30</width> 
     2541                            <height>30</height> 
     2542                        </rect> 
     2543                    </property> 
     2544                    <property name="minValue"> 
     2545                        <number>-64</number> 
     2546                    </property> 
     2547                    <property name="maxValue"> 
     2548                        <number>64</number> 
     2549                    </property> 
     2550                </widget> 
     2551                <widget class="QDial"> 
     2552                    <property name="name"> 
     2553                        <cstring>mix1ana5_pan</cstring> 
     2554                    </property> 
     2555                    <property name="geometry"> 
     2556                        <rect> 
     2557                            <x>170</x> 
     2558                            <y>100</y> 
     2559                            <width>30</width> 
     2560                            <height>30</height> 
     2561                        </rect> 
     2562                    </property> 
     2563                    <property name="minValue"> 
     2564                        <number>-64</number> 
     2565                    </property> 
     2566                    <property name="maxValue"> 
     2567                        <number>64</number> 
     2568                    </property> 
     2569                </widget> 
     2570                <widget class="QDial"> 
     2571                    <property name="name"> 
     2572                        <cstring>mix1ana6_pan</cstring> 
     2573                    </property> 
     2574                    <property name="geometry"> 
     2575                        <rect> 
     2576                            <x>210</x> 
     2577                            <y>100</y> 
     2578                            <width>30</width> 
     2579                            <height>30</height> 
     2580                        </rect> 
     2581                    </property> 
     2582                    <property name="minValue"> 
     2583                        <number>-64</number> 
     2584                    </property> 
     2585                    <property name="maxValue"> 
     2586                        <number>64</number> 
     2587                    </property> 
     2588                </widget> 
     2589                <widget class="QDial"> 
     2590                    <property name="name"> 
     2591                        <cstring>mix1ana7_pan</cstring> 
     2592                    </property> 
     2593                    <property name="geometry"> 
     2594                        <rect> 
     2595                            <x>250</x> 
     2596                            <y>100</y> 
     2597                            <width>30</width> 
     2598                            <height>30</height> 
     2599                        </rect> 
     2600                    </property> 
     2601                    <property name="minValue"> 
     2602                        <number>-64</number> 
     2603                    </property> 
     2604                    <property name="maxValue"> 
     2605                        <number>64</number> 
     2606                    </property> 
     2607                </widget> 
     2608                <widget class="QDial"> 
     2609                    <property name="name"> 
     2610                        <cstring>mix1ana8_pan</cstring> 
     2611                    </property> 
     2612                    <property name="geometry"> 
     2613                        <rect> 
     2614                            <x>290</x> 
     2615                            <y>100</y> 
     2616                            <width>30</width> 
     2617                            <height>30</height> 
     2618                        </rect> 
     2619                    </property> 
     2620                    <property name="minValue"> 
     2621                        <number>-64</number> 
     2622                    </property> 
     2623                    <property name="maxValue"> 
     2624                        <number>64</number> 
     2625                    </property> 
     2626                </widget> 
     2627                <widget class="QCheckBox"> 
     2628                    <property name="name"> 
     2629                        <cstring>mix1ana1_mute</cstring> 
     2630                    </property> 
     2631                    <property name="geometry"> 
     2632                        <rect> 
     2633                            <x>20</x> 
     2634                            <y>60</y> 
     2635                            <width>20</width> 
     2636                            <height>26</height> 
     2637                        </rect> 
     2638                    </property> 
     2639                    <property name="sizePolicy"> 
     2640                        <sizepolicy> 
     2641                            <hsizetype>1</hsizetype> 
     2642                            <vsizetype>0</vsizetype> 
     2643                            <horstretch>0</horstretch> 
     2644                            <verstretch>0</verstretch> 
     2645                        </sizepolicy> 
     2646                    </property> 
     2647                    <property name="font"> 
     2648                        <font> 
     2649                            <pointsize>9</pointsize> 
     2650                        </font> 
     2651                    </property> 
     2652                    <property name="text"> 
     2653                        <string></string> 
     2654                    </property> 
     2655                </widget> 
     2656                <widget class="QCheckBox"> 
     2657                    <property name="name"> 
     2658                        <cstring>mix1ana2_mute</cstring> 
     2659                    </property> 
     2660                    <property name="geometry"> 
     2661                        <rect> 
     2662                            <x>60</x> 
     2663                            <y>60</y> 
     2664                            <width>20</width> 
     2665                            <height>26</height> 
     2666                        </rect> 
     2667                    </property> 
     2668                    <property name="sizePolicy"> 
     2669                        <sizepolicy> 
     2670                            <hsizetype>1</hsizetype> 
     2671                            <vsizetype>0</vsizetype> 
     2672                            <horstretch>0</horstretch> 
     2673                            <verstretch>0</verstretch> 
     2674                        </sizepolicy> 
     2675                    </property> 
     2676                    <property name="font"> 
     2677                        <font> 
     2678                            <pointsize>9</pointsize> 
     2679                        </font> 
     2680                    </property> 
     2681                    <property name="text"> 
     2682                        <string></string> 
     2683                    </property> 
     2684                </widget> 
     2685                <widget class="QCheckBox"> 
     2686                    <property name="name"> 
     2687                        <cstring>mix1ana3_mute</cstring> 
     2688                    </property> 
     2689                    <property name="geometry"> 
     2690                        <rect> 
     2691                            <x>100</x> 
     2692                            <y>60</y> 
     2693                            <width>20</width> 
     2694                            <height>26</height> 
     2695                        </rect> 
     2696                    </property> 
     2697                    <property name="sizePolicy"> 
     2698                        <sizepolicy> 
     2699                            <hsizetype>1</hsizetype> 
     2700                            <vsizetype>0</vsizetype> 
     2701                            <horstretch>0</horstretch> 
     2702                            <verstretch>0</verstretch> 
     2703                        </sizepolicy> 
     2704                    </property> 
     2705                    <property name="font"> 
     2706                        <font> 
     2707                            <pointsize>9</pointsize> 
     2708                        </font> 
     2709                    </property> 
     2710                    <property name="text"> 
     2711                        <string></string> 
     2712                    </property> 
     2713                </widget> 
     2714                <widget class="QCheckBox"> 
     2715                    <property name="name"> 
     2716                        <cstring>mix1ana4_mute</cstring> 
     2717                    </property> 
     2718                    <property name="geometry"> 
     2719                        <rect> 
     2720                            <x>140</x> 
     2721                            <y>60</y> 
     2722                            <width>20</width> 
     2723                            <height>26</height> 
     2724                        </rect> 
     2725                    </property> 
     2726                    <property name="sizePolicy"> 
     2727                        <sizepolicy> 
     2728                            <hsizetype>1</hsizetype> 
     2729                            <vsizetype>0</vsizetype> 
     2730                            <horstretch>0</horstretch> 
     2731                            <verstretch>0</verstretch> 
     2732                        </sizepolicy> 
     2733                    </property> 
     2734                    <property name="font"> 
     2735                        <font> 
     2736                            <pointsize>9</pointsize> 
     2737                        </font> 
     2738                    </property> 
     2739                    <property name="text"> 
     2740                        <string></string> 
     2741                    </property> 
     2742                </widget> 
     2743                <widget class="QCheckBox"> 
     2744                    <property name="name"> 
     2745                        <cstring>mix1ana5_mute</cstring> 
     2746                    </property> 
     2747                    <property name="geometry"> 
     2748                        <rect> 
     2749                            <x>180</x> 
     2750                            <y>60</y> 
     2751                            <width>20</width> 
     2752                            <height>26</height> 
     2753                        </rect> 
     2754                    </property> 
     2755                    <property name="sizePolicy"> 
     2756                        <sizepolicy> 
     2757                            <hsizetype>1</hsizetype> 
     2758                            <vsizetype>0</vsizetype> 
     2759                            <horstretch>0</horstretch> 
     2760                            <verstretch>0</verstretch> 
     2761                        </sizepolicy> 
     2762                    </property> 
     2763                    <property name="font"> 
     2764                        <font> 
     2765                            <pointsize>9</pointsize> 
     2766                        </font> 
     2767                    </property> 
     2768                    <property name="text"> 
     2769                        <string></string> 
     2770                    </property> 
     2771                </widget> 
     2772                <widget class="QCheckBox"> 
     2773                    <property name="name"> 
     2774                        <cstring>mix1ana6_mute</cstring> 
     2775                    </property> 
     2776                    <property name="geometry"> 
     2777                        <rect> 
     2778                            <x>220</x> 
     2779                            <y>60</y> 
     2780                            <width>20</width> 
     2781                            <height>26</height> 
     2782                        </rect> 
     2783                    </property> 
     2784                    <property name="sizePolicy"> 
     2785                        <sizepolicy> 
     2786                            <hsizetype>1</hsizetype> 
     2787                            <vsizetype>0</vsizetype> 
     2788                            <horstretch>0</horstretch> 
     2789                            <verstretch>0</verstretch> 
     2790                        </sizepolicy> 
     2791                    </property> 
     2792                    <property name="font"> 
     2793                        <font> 
     2794                            <pointsize>9</pointsize> 
     2795                        </font> 
     2796                    </property> 
     2797                    <property name="text"> 
     2798                        <string></string> 
     2799                    </property> 
     2800                </widget> 
     2801                <widget class="QCheckBox"> 
     2802                    <property name="name"> 
     2803                        <cstring>mix1ana7_mute</cstring> 
     2804                    </property> 
     2805                    <property name="geometry"> 
     2806                        <rect> 
     2807                            <x>260</x> 
     2808                            <y>60</y> 
     2809                            <width>20</width> 
     2810                            <height>26</height> 
     2811                        </rect> 
     2812                    </property> 
     2813                    <property name="sizePolicy"> 
     2814                        <sizepolicy> 
     2815                            <hsizetype>1</hsizetype> 
     2816                            <vsizetype>0</vsizetype> 
     2817                            <horstretch>0</horstretch> 
     2818                            <verstretch>0</verstretch> 
     2819                        </sizepolicy> 
     2820                    </property> 
     2821                    <property name="font"> 
     2822                        <font> 
     2823                            <pointsize>9</pointsize> 
     2824                        </font> 
     2825                    </property> 
     2826                    <property name="text"> 
     2827                        <string></string> 
     2828                    </property> 
     2829                </widget> 
     2830                <widget class="QCheckBox"> 
     2831                    <property name="name"> 
     2832                        <cstring>mix1ana8_mute</cstring> 
     2833                    </property> 
     2834                    <property name="geometry"> 
     2835                        <rect> 
     2836                            <x>300</x> 
     2837                            <y>60</y> 
     2838                            <width>20</width> 
     2839                            <height>26</height> 
     2840                        </rect> 
     2841                    </property> 
     2842                    <property name="sizePolicy"> 
     2843                        <sizepolicy> 
     2844                            <hsizetype>1</hsizetype> 
     2845                            <vsizetype>0</vsizetype> 
     2846                            <horstretch>0</horstretch> 
     2847                            <verstretch>0</verstretch> 
     2848                        </sizepolicy> 
     2849                    </property> 
     2850                    <property name="font"> 
     2851                        <font> 
     2852                            <pointsize>9</pointsize> 
     2853                        </font> 
     2854                    </property> 
     2855                    <property name="text"> 
     2856                        <string></string> 
     2857                    </property> 
     2858                </widget> 
     2859                <widget class="QCheckBox"> 
     2860                    <property name="name"> 
     2861                        <cstring>mix1ana1_solo</cstring> 
     2862                    </property> 
     2863                    <property name="geometry"> 
     2864                        <rect> 
     2865                            <x>20</x> 
     2866                            <y>20</y> 
     2867                            <width>20</width> 
     2868                            <height>26</height> 
     2869                        </rect> 
     2870                    </property> 
     2871                    <property name="sizePolicy"> 
     2872                        <sizepolicy> 
     2873                            <hsizetype>1</hsizetype> 
     2874                            <vsizetype>0</vsizetype> 
     2875                            <horstretch>0</horstretch> 
     2876                            <verstretch>0</verstretch> 
     2877                        </sizepolicy> 
     2878                    </property> 
     2879                    <property name="font"> 
     2880                        <font> 
     2881                            <pointsize>9</pointsize> 
     2882                        </font> 
     2883                    </property> 
     2884                    <property name="text"> 
     2885                        <string></string> 
     2886                    </property> 
     2887                </widget> 
     2888                <widget class="QCheckBox"> 
     2889                    <property name="name"> 
     2890                        <cstring>mix1ana2_solo</cstring> 
     2891                    </property> 
     2892                    <property name="geometry"> 
     2893                        <rect> 
     2894                            <x>60</x> 
     2895                            <y>20</y> 
     2896                            <width>20</width> 
     2897                            <height>26</height> 
     2898                        </rect> 
     2899                    </property> 
     2900                    <property name="sizePolicy"> 
     2901                        <sizepolicy> 
     2902                            <hsizetype>1</hsizetype> 
     2903                            <vsizetype>0</vsizetype> 
     2904                            <horstretch>0</horstretch> 
     2905                            <verstretch>0</verstretch> 
     2906                        </sizepolicy> 
     2907                    </property> 
     2908                    <property name="font"> 
     2909                        <font> 
     2910                            <pointsize>9</pointsize> 
     2911                        </font> 
     2912                    </property> 
     2913                    <property name="text"> 
     2914                        <string></string> 
     2915                    </property> 
     2916                </widget> 
     2917                <widget class="QCheckBox"> 
     2918                    <property name="name"> 
     2919                        <cstring>mix1ana3_solo</cstring> 
     2920                    </property> 
     2921                    <property name="geometry"> 
     2922                        <rect> 
     2923                            <x>100</x> 
     2924                            <y>20</y> 
     2925                            <width>20</width> 
     2926                            <height>26</height> 
     2927                        </rect> 
     2928                    </property> 
     2929                    <property name="sizePolicy"> 
     2930                        <sizepolicy> 
     2931                            <hsizetype>1</hsizetype> 
     2932                            <vsizetype>0</vsizetype> 
     2933                            <horstretch>0</horstretch> 
     2934                            <verstretch>0</verstretch> 
     2935                        </sizepolicy> 
     2936                    </property> 
     2937                    <property name="font"> 
     2938                        <font> 
     2939                            <pointsize>9</pointsize> 
     2940                        </font> 
     2941                    </property> 
     2942                    <property name="text"> 
     2943                        <string></string> 
     2944                    </property> 
     2945                </widget> 
     2946                <widget class="QCheckBox"> 
     2947                    <property name="name"> 
     2948                        <cstring>mix1ana4_solo</cstring> 
     2949                    </property> 
     2950                    <property name="geometry"> 
     2951                        <rect> 
     2952                            <x>140</x> 
     2953                            <y>20</y> 
     2954                            <width>20</width> 
     2955                            <height>26</height> 
     2956                        </rect> 
     2957                    </property> 
     2958                    <property name="sizePolicy"> 
     2959                        <sizepolicy> 
     2960                            <hsizetype>1</hsizetype> 
     2961                            <vsizetype>0</vsizetype> 
     2962                            <horstretch>0</horstretch> 
     2963                            <verstretch>0</verstretch> 
     2964                        </sizepolicy> 
     2965                    </property> 
     2966                    <property name="font"> 
     2967                        <font> 
     2968                            <pointsize>9</pointsize> 
     2969                        </font> 
     2970                    </property> 
     2971                    <property name="text"> 
     2972                        <string></string> 
     2973                    </property> 
     2974                </widget> 
     2975                <widget class="QCheckBox"> 
     2976                    <property name="name"> 
     2977                        <cstring>mix1ana5_solo</cstring> 
     2978                    </property> 
     2979                    <property name="geometry"> 
     2980                        <rect> 
     2981                            <x>180</x> 
     2982                            <y>20</y> 
     2983                            <width>20</width> 
     2984                            <height>26</height> 
     2985                        </rect> 
     2986                    </property> 
     2987                    <property name="sizePolicy"> 
     2988                        <sizepolicy> 
     2989                            <hsizetype>1</hsizetype> 
     2990                            <vsizetype>0</vsizetype> 
     2991                            <horstretch>0</horstretch> 
     2992                            <verstretch>0</verstretch> 
     2993                        </sizepolicy> 
     2994                    </property> 
     2995                    <property name="font"> 
     2996                        <font> 
     2997                            <pointsize>9</pointsize> 
     2998                        </font> 
     2999                    </property> 
     3000                    <property name="text"> 
     3001                        <string></string> 
     3002                    </property> 
     3003                </widget> 
     3004                <widget class="QCheckBox"> 
     3005                    <property name="name"> 
     3006                        <cstring>mix1ana6_solo</cstring> 
     3007                    </property> 
     3008                    <property name="geometry"> 
     3009                        <rect> 
     3010                            <x>220</x> 
     3011                            <y>20</y> 
     3012                            <width>20</width> 
     3013                            <height>26</height> 
     3014                        </rect> 
     3015                    </property> 
     3016                    <property name="sizePolicy"> 
     3017                        <sizepolicy> 
     3018                            <hsizetype>1</hsizetype> 
     3019                            <vsizetype>0</vsizetype> 
     3020                            <horstretch>0</horstretch> 
     3021                            <verstretch>0</verstretch> 
     3022                        </sizepolicy> 
     3023                    </property> 
     3024                    <property name="font"> 
     3025                        <font> 
     3026                            <pointsize>9</pointsize> 
     3027                        </font> 
     3028                    </property> 
     3029                    <property name="text"> 
     3030                        <string></string> 
     3031                    </property> 
     3032                </widget> 
     3033                <widget class="QCheckBox"> 
     3034                    <property name="name"> 
     3035                        <cstring>mix1ana7_solo</cstring> 
     3036                    </property> 
     3037                    <property name="geometry"> 
     3038                        <rect> 
     3039                            <x>260</x> 
     3040                            <y>20</y> 
     3041                            <width>20</width> 
     3042                            <height>26</height> 
     3043                        </rect> 
     3044                    </property> 
     3045                    <property name="sizePolicy"> 
     3046                        <sizepolicy> 
     3047                            <hsizetype>1</hsizetype> 
     3048                            <vsizetype>0</vsizetype> 
     3049                            <horstretch>0</horstretch> 
     3050                            <verstretch>0</verstretch> 
     3051                        </sizepolicy> 
     3052                    </property> 
     3053                    <property name="font"> 
     3054                        <font> 
     3055                            <pointsize>9</pointsize> 
     3056                        </font> 
     3057                    </property> 
     3058                    <property name="text"> 
     3059                        <string></string> 
     3060                    </property> 
     3061                </widget> 
     3062                <widget class="QCheckBox"> 
     3063                    <property name="name"> 
     3064                        <cstring>mix1ana8_solo</cstring> 
     3065                    </property> 
     3066                    <property name="geometry"> 
     3067                        <rect> 
     3068                            <x>300</x> 
     3069                            <y>20</y> 
     3070                            <width>20</width> 
     3071                            <height>26</height> 
     3072                        </rect> 
     3073                    </property> 
     3074                    <property name="sizePolicy"> 
     3075                        <sizepolicy> 
     3076                            <hsizetype>1</hsizetype> 
     3077                            <vsizetype>0</vsizetype> 
     3078                            <horstretch>0</horstretch> 
     3079                            <verstretch>0</verstretch> 
     3080                        </sizepolicy> 
     3081                    </property> 
     3082                    <property name="font"> 
     3083                        <font> 
     3084                            <pointsize>9</pointsize> 
     3085                        </font> 
     3086                    </property> 
     3087                    <property name="text"> 
     3088                        <string></string> 
     3089                    </property> 
     3090                </widget> 
     3091                <widget class="QDial"> 
     3092                    <property name="name"> 
     3093                        <cstring>mix1ana1_pan</cstring> 
     3094                    </property> 
     3095                    <property name="geometry"> 
     3096                        <rect> 
     3097                            <x>10</x> 
     3098                            <y>100</y> 
     3099                            <width>30</width> 
     3100                            <height>30</height> 
     3101                        </rect> 
     3102                    </property> 
     3103                    <property name="minValue"> 
     3104                        <number>-64</number> 
     3105                    </property> 
     3106                    <property name="maxValue"> 
     3107                        <number>64</number> 
     3108                    </property> 
     3109                </widget> 
     3110                <widget class="QLabel"> 
     3111                    <property name="name"> 
     3112                        <cstring>textLabel1_2</cstring> 
     3113                    </property> 
     3114                    <property name="geometry"> 
     3115                        <rect> 
     3116                            <x>10</x> 
     3117                            <y>130</y> 
     3118                            <width>30</width> 
     3119                            <height>22</height> 
     3120                        </rect> 
     3121                    </property> 
     3122                    <property name="font"> 
     3123                        <font> 
     3124                            <pointsize>9</pointsize> 
     3125                        </font> 
     3126                    </property> 
     3127                    <property name="text"> 
     3128                        <string>Pan</string> 
     3129                    </property> 
     3130                    <property name="alignment"> 
     3131                        <set>AlignCenter</set> 
     3132                    </property> 
     3133                </widget> 
     3134                <widget class="QSlider"> 
     3135                    <property name="name"> 
     3136                        <cstring>mix1ana1_fader</cstring> 
     3137                    </property> 
     3138                    <property name="geometry"> 
     3139                        <rect> 
     3140                            <x>10</x> 
     3141                            <y>160</y> 
     3142                            <width>30</width> 
     3143                            <height>120</height> 
     3144                        </rect> 
     3145                    </property> 
     3146                    <property name="minValue"> 
     3147                        <number>0</number> 
     3148                    </property> 
     3149                    <property name="maxValue"> 
     3150                        <number>128</number> 
     3151                    </property> 
     3152                    <property name="lineStep"> 
     3153                        <number>1</number> 
     3154                    </property> 
     3155                    <property name="pageStep"> 
     3156                        <number>10</number> 
     3157                    </property> 
     3158                    <property name="value"> 
     3159                        <number>128</number> 
     3160                    </property> 
     3161                    <property name="orientation"> 
     3162                        <enum>Vertical</enum> 
     3163                    </property> 
     3164                    <property name="tickmarks"> 
     3165                        <enum>Both</enum> 
     3166                    </property> 
     3167                    <property name="tickInterval"> 
     3168                        <number>10</number> 
     3169                    </property> 
     3170                </widget> 
     3171                <widget class="QLabel"> 
     3172                    <property name="name"> 
     3173                        <cstring>textLabel2</cstring> 
     3174                    </property> 
     3175                    <property name="geometry"> 
     3176                        <rect> 
     3177                            <x>10</x> 
     3178                            <y>280</y> 
     3179                            <width>30</width> 
     3180                            <height>22</height> 
     3181                        </rect> 
     3182                    </property> 
     3183                    <property name="text"> 
     3184                        <string>1</string> 
     3185                    </property> 
     3186                    <property name="alignment"> 
     3187                        <set>AlignCenter</set> 
     3188                    </property> 
     3189                </widget> 
     3190                <widget class="QLabel"> 
     3191                    <property name="name"> 
     3192                        <cstring>textLabel2_2</cstring> 
     3193                    </property> 
     3194                    <property name="geometry"> 
     3195                        <rect> 
     3196                            <x>50</x> 
     3197                            <y>280</y> 
     3198                            <width>30</width> 
     3199                            <height>22</height> 
     3200                        </rect> 
     3201                    </property> 
     3202                    <property name="text"> 
     3203                        <string>2</string> 
     3204                    </property> 
     3205                    <property name="alignment"> 
     3206                        <set>AlignCenter</set> 
     3207                    </property> 
     3208                </widget> 
     3209                <widget class="QLabel"> 
     3210                    <property name="name"> 
     3211                        <cstring>textLabel1_2_2_14_2</cstring> 
     3212                    </property> 
     3213                    <property name="geometry"> 
     3214                        <rect> 
     3215                            <x>110</x> 
     3216                            <y>310</y> 
     3217                            <width>30</width> 
     3218                            <height>22</height> 
     3219                        </rect> 
     3220                    </property> 
     3221                    <property name="font"> 
     3222                        <font> 
     3223                            <pointsize>9</pointsize> 
     3224                        </font> 
     3225                    </property> 
     3226                    <property name="text"> 
     3227                        <string>Pair</string> 
     3228                    </property> 
     3229                    <property name="alignment"> 
     3230                        <set>AlignCenter</set> 
     3231                    </property> 
     3232                </widget> 
     3233                <widget class="QLabel"> 
     3234                    <property name="name"> 
     3235                        <cstring>textLabel1_2_2_14_3</cstring> 
     3236                    </property> 
     3237                    <property name="geometry"> 
     3238                        <rect> 
     3239                            <x>190</x> 
     3240                            <y>310</y> 
     3241                            <width>30</width> 
     3242                            <height>22</height> 
     3243                        </rect> 
     3244                    </property> 
     3245                    <property name="font"> 
     3246                        <font> 
     3247                            <pointsize>9</pointsize> 
     3248                        </font> 
     3249                    </property> 
     3250                    <property name="text"> 
     3251                        <string>Pair</string> 
     3252                    </property> 
     3253                    <property name="alignment"> 
     3254                        <set>AlignCenter</set> 
     3255                    </property> 
     3256                </widget> 
     3257                <widget class="QLabel"> 
     3258                    <property name="name"> 
     3259                        <cstring>textLabel1_2_2_14_4</cstring> 
     3260                    </property> 
     3261                    <property name="geometry"> 
     3262                        <rect> 
     3263                            <x>270</x> 
     3264                            <y>310</y> 
     3265                            <width>30</width> 
     3266                            <height>22</height> 
     3267                        </rect> 
     3268                    </property> 
     3269                    <property name="font"> 
     3270                        <font> 
     3271                            <pointsize>9</pointsize> 
     3272                        </font> 
     3273                    </property> 
     3274                    <property name="text"> 
     3275                        <string>Pair</string> 
     3276                    </property> 
     3277                    <property name="alignment"> 
     3278                        <set>AlignCenter</set> 
     3279                    </property> 
     3280                </widget> 
     3281                <widget class="QLabel"> 
     3282                    <property name="name"> 
     3283                        <cstring>textLabel1_2_2_14</cstring> 
     3284                    </property> 
     3285                    <property name="geometry"> 
     3286                        <rect> 
     3287                            <x>30</x> 
     3288                            <y>310</y> 
     3289                            <width>30</width> 
     3290                            <height>22</height> 
     3291                        </rect> 
     3292                    </property> 
     3293                    <property name="font"> 
     3294                        <font> 
     3295                            <pointsize>9</pointsize> 
     3296                        </font> 
     3297                    </property> 
     3298                    <property name="text"> 
     3299                        <string>Pair</string> 
     3300                    </property> 
     3301                    <property name="alignment"> 
     3302                        <set>AlignCenter</set> 
     3303                    </property> 
     3304                </widget> 
     3305                <widget class="QCheckBox"> 
     3306                    <property name="name"> 
     3307                        <cstring>mix1ana1_2_pair</cstring> 
     3308                    </property> 
     3309                    <property name="geometry"> 
     3310                        <rect> 
     3311                            <x>40</x> 
     3312                            <y>290</y> 
     3313                            <width>20</width> 
     3314                            <height>26</height> 
     3315                        </rect> 
     3316                    </property> 
     3317                    <property name="sizePolicy"> 
     3318                        <sizepolicy> 
     3319                            <hsizetype>1</hsizetype> 
     3320                            <vsizetype>0</vsizetype> 
     3321                            <horstretch>0</horstretch> 
     3322                            <verstretch>0</verstretch> 
     3323                        </sizepolicy> 
     3324                    </property> 
     3325                    <property name="font"> 
     3326                        <font> 
     3327                            <pointsize>9</pointsize> 
     3328                        </font> 
     3329                    </property> 
     3330                    <property name="text"> 
     3331                        <string></string> 
     3332                    </property> 
     3333                </widget> 
     3334                <widget class="QCheckBox"> 
     3335                    <property name="name"> 
     3336                        <cstring>mix1ana3_4_pair</cstring> 
     3337                    </property> 
     3338                    <property name="geometry"> 
     3339                        <rect> 
     3340                            <x>120</x> 
     3341                            <y>290</y> 
     3342                            <width>20</width> 
     3343                            <height>26</height> 
     3344                        </rect> 
     3345                    </property> 
     3346                    <property name="sizePolicy"> 
     3347                        <sizepolicy> 
     3348                            <hsizetype>1</hsizetype> 
     3349                            <vsizetype>0</vsizetype> 
     3350                            <horstretch>0</horstretch> 
     3351                            <verstretch>0</verstretch> 
     3352                        </sizepolicy> 
     3353                    </property> 
     3354                    <property name="font"> 
     3355                        <font> 
     3356                            <pointsize>9</pointsize> 
     3357                        </font> 
     3358                    </property> 
     3359                    <property name="text"> 
     3360                        <string></string> 
     3361                    </property> 
     3362                </widget> 
     3363                <widget class="QCheckBox"> 
     3364                    <property name="name"> 
     3365                        <cstring>mix1ana5_6_pair</cstring> 
     3366                    </property> 
     3367                    <property name="geometry"> 
     3368                        <rect> 
     3369                            <x>200</x> 
     3370                            <y>290</y> 
     3371                            <width>20</width> 
     3372                            <height>26</height> 
     3373                        </rect> 
     3374                    </property> 
     3375                    <property name="sizePolicy"> 
     3376                        <sizepolicy> 
     3377                            <hsizetype>1</hsizetype> 
     3378                            <vsizetype>0</vsizetype> 
     3379                            <horstretch>0</horstretch> 
     3380                            <verstretch>0</verstretch> 
     3381                        </sizepolicy> 
     3382                    </property> 
     3383                    <property name="font"> 
     3384                        <font> 
     3385                            <pointsize>9</pointsize> 
     3386                        </font> 
     3387                    </property> 
     3388                    <property name="text"> 
     3389                        <string></string> 
     3390                    </property> 
     3391                </widget> 
     3392                <widget class="QCheckBox"> 
     3393                    <property name="name"> 
     3394                        <cstring>mix1ana7_8_pair</cstring> 
     3395                    </property> 
     3396                    <property name="geometry"> 
     3397                        <rect> 
     3398                            <x>280</x> 
     3399                            <y>290</y> 
     3400                            <width>20</width> 
     3401                            <height>26</height> 
     3402                        </rect> 
     3403                    </property> 
     3404                    <property name="sizePolicy"> 
     3405                        <sizepolicy> 
     3406                            <hsizetype>1</hsizetype> 
     3407                            <vsizetype>0</vsizetype> 
     3408                            <horstretch>0</horstretch> 
     3409                            <verstretch>0</verstretch> 
     3410                        </sizepolicy> 
     3411                    </property> 
     3412                    <property name="font"> 
     3413                        <font> 
     3414                            <pointsize>9</pointsize> 
     3415                        </font> 
     3416                    </property> 
     3417                    <property name="text"> 
     3418                        <string></string> 
     3419                    </property> 
     3420                </widget> 
     3421            </widget> 
     3422            <widget class="QGroupBox"> 
     3423                <property name="name"> 
     3424                    <cstring>mix1_aes_group</cstring> 
     3425                </property> 
     3426                <property name="geometry"> 
     3427                    <rect> 
     3428                        <x>360</x> 
     3429                        <y>0</y> 
     3430                        <width>100</width> 
     3431                        <height>340</height> 
     3432                    </rect> 
     3433                </property> 
     3434                <property name="title"> 
     3435                    <string>AES/EBU</string> 
     3436                </property> 
     3437                <widget class="QCheckBox"> 
     3438                    <property name="name"> 
     3439                        <cstring>checkBox1_2_3</cstring> 
     3440                    </property> 
     3441                    <property name="geometry"> 
     3442                        <rect> 
     3443                            <x>20</x> 
     3444                            <y>20</y> 
     3445                            <width>20</width> 
     3446                            <height>26</height> 
     3447                        </rect> 
     3448                    </property> 
     3449                    <property name="sizePolicy"> 
     3450                        <sizepolicy> 
     3451                            <hsizetype>1</hsizetype> 
     3452                            <vsizetype>0</vsizetype> 
     3453                            <horstretch>0</horstretch> 
     3454                            <verstretch>0</verstretch> 
     3455                        </sizepolicy> 
     3456                    </property> 
     3457                    <property name="font"> 
     3458                        <font> 
     3459                            <pointsize>9</pointsize> 
     3460                        </font> 
     3461                    </property> 
     3462                    <property name="text"> 
     3463                        <string></string> 
     3464                    </property> 
     3465                </widget> 
     3466                <widget class="QLabel"> 
     3467                    <property name="name"> 
     3468                        <cstring>textLabel1_2_11</cstring> 
     3469                    </property> 
     3470                    <property name="geometry"> 
     3471                        <rect> 
     3472                            <x>10</x> 
     3473                            <y>130</y> 
     3474                            <width>30</width> 
     3475                            <height>22</height> 
     3476                        </rect> 
     3477                    </property> 
     3478                    <property name="font"> 
     3479                        <font> 
     3480                            <pointsize>9</pointsize> 
     3481                        </font> 
     3482                    </property> 
     3483                    <property name="text"> 
     3484                        <string>Pan</string> 
     3485                    </property> 
     3486                    <property name="alignment"> 
     3487                        <set>AlignCenter</set> 
     3488                    </property> 
     3489                </widget> 
     3490                <widget class="QLabel"> 
     3491                    <property name="name"> 
     3492                        <cstring>textLabel1_2_3_3</cstring> 
     3493                    </property> 
     3494                    <property name="geometry"> 
     3495                        <rect> 
     3496                            <x>50</x> 
     3497                            <y>130</y> 
     3498                            <width>30</width> 
     3499                            <height>22</height> 
     3500                        </rect> 
     3501                    </property> 
     3502                    <property name="font"> 
     3503                        <font> 
     3504                            <pointsize>9</pointsize> 
     3505                        </font> 
     3506                    </property> 
     3507                    <property name="text"> 
     3508                        <string>Pan</string> 
     3509                    </property> 
     3510                    <property name="alignment"> 
     3511                        <set>AlignCenter</set> 
     3512                    </property> 
     3513                </widget> 
     3514                <widget class="QDial"> 
     3515                    <property name="name"> 
     3516                        <cstring>dial2_10</cstring> 
     3517                    </property> 
     3518                    <property name="geometry"> 
     3519                        <rect> 
     3520                            <x>10</x> 
     3521                            <y>100</y> 
     3522                            <width>30</width> 
     3523                            <height>30</height> 
     3524                        </rect> 
     3525                    </property> 
     3526                    <property name="minValue"> 
     3527                        <number>-64</number> 
     3528                    </property> 
     3529                    <property name="maxValue"> 
     3530                        <number>64</number> 
     3531                    </property> 
     3532                </widget> 
     3533                <widget class="QLabel"> 
     3534                    <property name="name"> 
     3535                        <cstring>textLabel1_2_2_11</cstring> 
     3536                    </property> 
     3537                    <property name="geometry"> 
     3538                        <rect> 
     3539                            <x>10</x> 
     3540                            <y>80</y> 
     3541                            <width>30</width> 
     3542                            <height>22</height> 
     3543                        </rect> 
     3544                    </property> 
     3545                    <property name="font"> 
     3546                        <font> 
     3547                            <pointsize>9</pointsize> 
     3548                        </font> 
     3549                    </property> 
     3550                    <property name="text"> 
     3551                        <string>Mute</string> 
     3552                    </property> 
     3553                    <property name="alignment"> 
     3554                        <set>AlignCenter</set> 
     3555                    </property> 
     3556                </widget> 
     3557                <widget class="QCheckBox"> 
     3558                    <property name="name"> 
     3559                        <cstring>checkBox1_18</cstring> 
     3560                    </property> 
     3561                    <property name="geometry"> 
     3562                        <rect> 
     3563                            <x>20</x> 
     3564                            <y>60</y> 
     3565                            <width>20</width> 
     3566                            <height>26</height> 
     3567                        </rect> 
     3568                    </property> 
     3569                    <property name="sizePolicy"> 
     3570                        <sizepolicy> 
     3571                            <hsizetype>1</hsizetype> 
     3572                            <vsizetype>0</vsizetype> 
     3573                            <horstretch>0</horstretch> 
     3574                            <verstretch>0</verstretch> 
     3575                        </sizepolicy> 
     3576                    </property> 
     3577                    <property name="font"> 
     3578                        <font> 
     3579                            <pointsize>9</pointsize> 
     3580                        </font> 
     3581                    </property> 
     3582                    <property name="text"> 
     3583                        <string></string> 
     3584                    </property> 
     3585                </widget> 
     3586                <widget class="QCheckBox"> 
     3587                    <property name="name"> 
     3588                        <cstring>checkBox1_3_3</cstring> 
     3589                    </property> 
     3590                    <property name="geometry"> 
     3591                        <rect> 
     3592                            <x>60</x> 
     3593                            <y>60</y> 
     3594                            <width>20</width> 
     3595                            <height>26</height> 
     3596                        </rect> 
     3597                    </property> 
     3598                    <property name="sizePolicy"> 
     3599                        <sizepolicy> 
     3600                            <hsizetype>1</hsizetype> 
     3601                            <vsizetype>0</vsizetype> 
     3602                            <horstretch>0</horstretch> 
     3603                            <verstretch>0</verstretch> 
     3604                        </sizepolicy> 
     3605                    </property> 
     3606                    <property name="font"> 
     3607                        <font> 
     3608                            <pointsize>9</pointsize> 
     3609                        </font> 
     3610                    </property> 
     3611                    <property name="text"> 
     3612                        <string></string> 
     3613                    </property> 
     3614                </widget> 
     3615                <widget class="QCheckBox"> 
     3616                    <property name="name"> 
     3617                        <cstring>checkBox1_10_3</cstring> 
     3618                    </property> 
     3619                    <property name="geometry"> 
     3620                        <rect> 
     3621                            <x>60</x> 
     3622                            <y>20</y> 
     3623                            <width>20</width> 
     3624                            <height>26</height> 
     3625                        </rect> 
     3626                    </property> 
     3627                    <property name="sizePolicy"> 
     3628                        <sizepolicy> 
     3629                            <hsizetype>1</hsizetype> 
     3630                            <vsizetype>0</vsizetype> 
     3631                            <horstretch>0</horstretch> 
     3632                            <verstretch>0</verstretch> 
     3633                        </sizepolicy> 
     3634                    </property> 
     3635                    <property name="font"> 
     3636                        <font> 
     3637                            <pointsize>9</pointsize> 
     3638                        </font> 
     3639                    </property> 
     3640                    <property name="text"> 
     3641                        <string></string> 
     3642                    </property> 
     3643                </widget> 
     3644                <widget class="QLabel"> 
     3645                    <property name="name"> 
     3646                        <cstring>textLabel1_2_2_2_10</cstring> 
     3647                    </property> 
     3648                    <property name="geometry"> 
     3649                        <rect> 
     3650                            <x>10</x> 
     3651                            <y>40</y> 
     3652                            <width>30</width> 
     3653                            <height>22</height> 
     3654                        </rect> 
     3655                    </property> 
     3656                    <property name="font"> 
     3657                        <font> 
     3658                            <pointsize>9</pointsize> 
     3659                        </font> 
     3660                    </property> 
     3661                    <property name="text"> 
     3662                        <string>Solo</string> 
     3663                    </property> 
     3664                    <property name="alignment"> 
     3665                        <set>AlignCenter</set> 
     3666                    </property> 
     3667                </widget> 
     3668                <widget class="QLabel"> 
     3669                    <property name="name"> 
     3670                        <cstring>textLabel1_2_2_2_2_3</cstring> 
     3671                    </property> 
     3672                    <property name="geometry"> 
     3673                        <rect> 
     3674                            <x>50</x> 
     3675                            <y>40</y> 
     3676                            <width>30</width> 
     3677                            <height>22</height> 
     3678                        </rect> 
     3679                    </property> 
     3680                    <property name="font"> 
     3681                        <font> 
     3682                            <pointsize>9</pointsize> 
     3683                        </font> 
     3684                    </property> 
     3685                    <property name="text"> 
     3686                        <string>Solo</string> 
     3687                    </property> 
     3688                    <property name="alignment"> 
     3689                        <set>AlignCenter</set> 
     3690                    </property> 
     3691                </widget> 
     3692                <widget class="QLabel"> 
     3693                    <property name="name"> 
     3694                        <cstring>textLabel1_2_2_3_3</cstring> 
     3695                    </property> 
     3696                    <property name="geometry"> 
     3697                        <rect> 
     3698                            <x>50</x> 
     3699                            <y>80</y> 
     3700                            <width>30</width> 
     3701                            <height>22</height> 
     3702                        </rect> 
     3703                    </property> 
     3704                    <property name="font"> 
     3705                        <font> 
     3706                            <pointsize>9</pointsize> 
     3707                        </font> 
     3708                    </property> 
     3709                    <property name="text"> 
     3710                        <string>Mute</string> 
     3711                    </property> 
     3712                    <property name="alignment"> 
     3713                        <set>AlignCenter</set> 
     3714                    </property> 
     3715                </widget> 
     3716                <widget class="QLabel"> 
     3717                    <property name="name"> 
     3718                        <cstring>textLabel2_10</cstring> 
     3719                    </property> 
     3720                    <property name="geometry"> 
     3721                        <rect> 
     3722                            <x>10</x> 
     3723                            <y>280</y> 
     3724                            <width>30</width> 
     3725                            <height>22</height> 
     3726                        </rect> 
     3727                    </property> 
     3728                    <property name="text"> 
     3729                        <string>1</string> 
     3730                    </property> 
     3731                    <property name="alignment"> 
     3732                        <set>AlignCenter</set> 
     3733                    </property> 
     3734                </widget> 
     3735                <widget class="QSlider"> 
     3736                    <property name="name"> 
     3737                        <cstring>sldFB1_10</cstring> 
     3738                    </property> 
     3739                    <property name="geometry"> 
     3740                        <rect> 
     3741                            <x>10</x> 
     3742                            <y>160</y> 
     3743                            <width>30</width> 
     3744                            <height>120</height> 
     3745                        </rect> 
     3746                    </property> 
     3747                    <property name="minValue"> 
     3748                        <number>0</number> 
     3749                    </property> 
     3750                    <property name="maxValue"> 
     3751                        <number>128</number> 
     3752                    </property> 
     3753                    <property name="lineStep"> 
     3754                        <number>1</number> 
     3755                    </property> 
     3756                    <property name="pageStep"> 
     3757                        <number>10</number> 
     3758                    </property> 
     3759                    <property name="value"> 
     3760                        <number>128</number> 
     3761                    </property> 
     3762                    <property name="orientation"> 
     3763                        <enum>Vertical</enum> 
     3764                    </property> 
     3765                    <property name="tickmarks"> 
     3766                        <enum>Both</enum> 
     3767                    </property> 
     3768                    <property name="tickInterval"> 
     3769                        <number>10</number> 
     3770                    </property> 
     3771                </widget> 
     3772                <widget class="QSlider"> 
     3773                    <property name="name"> 
     3774                        <cstring>sldFB1_2_3</cstring> 
     3775                    </property> 
     3776                    <property name="geometry"> 
     3777                        <rect> 
     3778                            <x>50</x> 
     3779                            <y>160</y> 
     3780                            <width>30</width> 
     3781                            <height>120</height> 
     3782                        </rect> 
     3783                    </property> 
     3784                    <property name="minValue"> 
     3785                        <number>0</number> 
     3786                    </property> 
     3787                    <property name="maxValue"> 
     3788                        <number>128</number> 
     3789                    </property> 
     3790                    <property name="lineStep"> 
     3791                        <number>1</number> 
     3792                    </property> 
     3793                    <property name="pageStep"> 
     3794                        <number>10</number> 
     3795                    </property> 
     3796                    <property name="value"> 
     3797                        <number>128</number> 
     3798                    </property> 
     3799                    <property name="orientation"> 
     3800                        <enum>Vertical</enum> 
     3801                    </property> 
     3802                    <property name="tickmarks"> 
     3803                        <enum>Both</enum> 
     3804                    </property> 
     3805                    <property name="tickInterval"> 
     3806                        <number>10</number> 
     3807                    </property> 
     3808                </widget> 
     3809                <widget class="QLabel"> 
     3810                    <property name="name"> 
     3811                        <cstring>textLabel2_2_3</cstring> 
     3812                    </property> 
     3813                    <property name="geometry"> 
     3814                        <rect> 
     3815                            <x>50</x> 
     3816                            <y>280</y> 
     3817                            <width>30</width> 
     3818                            <height>22</height> 
     3819                        </rect> 
     3820                    </property> 
     3821                    <property name="text"> 
     3822                        <string>2</string> 
     3823                    </property> 
     3824                    <property name="alignment"> 
     3825                        <set>AlignCenter</set> 
     3826                    </property> 
     3827                </widget> 
     3828                <widget class="QDial"> 
     3829                    <property name="name"> 
     3830                        <cstring>dial2_2_3</cstring> 
     3831                    </property> 
     3832                    <property name="geometry"> 
     3833                        <rect> 
     3834                            <x>50</x> 
     3835                            <y>100</y> 
     3836                            <width>30</width> 
     3837                            <height>30</height> 
     3838                        </rect> 
     3839                    </property> 
     3840                    <property name="minValue"> 
     3841                        <number>-64</number> 
     3842                    </property> 
     3843                    <property name="maxValue"> 
     3844                        <number>64</number> 
     3845                    </property> 
     3846                </widget> 
     3847                <widget class="QLabel"> 
     3848                    <property name="name"> 
     3849                        <cstring>textLabel1_2_2_14_7</cstring> 
     3850                    </property> 
     3851                    <property name="geometry"> 
     3852                        <rect> 
     3853                            <x>30</x> 
     3854                            <y>310</y> 
     3855                            <width>30</width> 
     3856                            <height>22</height> 
     3857                        </rect> 
     3858                    </property> 
     3859                    <property name="font"> 
     3860                        <font> 
     3861                            <pointsize>9</pointsize> 
     3862                        </font> 
     3863                    </property> 
     3864                    <property name="text"> 
     3865                        <string>Pair</string> 
     3866                    </property> 
     3867                    <property name="alignment"> 
     3868                        <set>AlignCenter</set> 
     3869                    </property> 
     3870                </widget> 
     3871                <widget class="QCheckBox"> 
     3872                    <property name="name"> 
     3873                        <cstring>mix1aes1_2_pair</cstring> 
     3874                    </property> 
     3875                    <property name="geometry"> 
     3876                        <rect> 
     3877                            <x>40</x> 
     3878                            <y>290</y> 
     3879                            <width>20</width> 
     3880                            <height>26</height> 
     3881                        </rect> 
     3882                    </property> 
     3883                    <property name="sizePolicy"> 
     3884                        <sizepolicy> 
     3885                            <hsizetype>1</hsizetype> 
     3886                            <vsizetype>0</vsizetype> 
     3887                            <horstretch>0</horstretch> 
     3888                            <verstretch>0</verstretch> 
     3889                        </sizepolicy> 
     3890                    </property> 
     3891                    <property name="font"> 
     3892                        <font> 
     3893                            <pointsize>9</pointsize> 
     3894                        </font> 
     3895                    </property> 
     3896                    <property name="text"> 
     3897                        <string></string> 
     3898                    </property> 
     3899                </widget> 
     3900            </widget> 
     3901            <widget class="QGroupBox"> 
     3902                <property name="name"> 
     3903                    <cstring>mix1_spdif_group</cstring> 
     3904                </property> 
     3905                <property name="geometry"> 
     3906                    <rect> 
     3907                        <x>360</x> 
     3908                        <y>350</y> 
     3909                        <width>100</width> 
     3910                        <height>340</height> 
     3911                    </rect> 
     3912                </property> 
     3913                <property name="title"> 
     3914                    <string>SPDIF</string> 
     3915                </property> 
     3916                <widget class="QCheckBox"> 
     3917                    <property name="name"> 
     3918                        <cstring>checkBox1_2_3_2</cstring> 
     3919                    </property> 
     3920                    <property name="geometry"> 
     3921                        <rect> 
     3922                            <x>20</x> 
     3923                            <y>20</y> 
     3924                            <width>20</width> 
     3925                            <height>26</height> 
     3926                        </rect> 
     3927                    </property> 
     3928                    <property name="sizePolicy"> 
     3929                        <sizepolicy> 
     3930                            <hsizetype>1</hsizetype> 
     3931                            <vsizetype>0</vsizetype> 
     3932                            <horstretch>0</horstretch> 
     3933                            <verstretch>0</verstretch> 
     3934                        </sizepolicy> 
     3935                    </property> 
     3936                    <property name="font"> 
     3937                        <font> 
     3938                            <pointsize>9</pointsize> 
     3939                        </font> 
     3940                    </property> 
     3941                    <property name="text"> 
     3942                        <string></string> 
     3943                    </property> 
     3944                </widget> 
     3945                <widget class="QLabel"> 
     3946                    <property name="name"> 
     3947                        <cstring>textLabel1_2_11_2</cstring> 
     3948                    </property> 
     3949                    <property name="geometry"> 
     3950                        <rect> 
     3951                            <x>10</x> 
     3952                            <y>130</y> 
     3953                            <width>30</width> 
     3954                            <height>22</height> 
     3955                        </rect> 
     3956                    </property> 
     3957                    <property name="font"> 
     3958                        <font> 
     3959                            <pointsize>9</pointsize> 
     3960                        </font> 
     3961                    </property> 
     3962                    <property name="text"> 
     3963                        <string>Pan</string> 
     3964                    </property> 
     3965                    <property name="alignment"> 
     3966                        <set>AlignCenter</set> 
     3967                    </property> 
     3968                </widget> 
     3969                <widget class="QLabel"> 
     3970                    <property name="name"> 
     3971                        <cstring>textLabel1_2_3_3_2</cstring> 
     3972                    </property> 
     3973                    <property name="geometry"> 
     3974                        <rect> 
     3975                            <x>50</x> 
     3976                            <y>130</y> 
     3977                            <width>30</width> 
     3978                            <height>22</height> 
     3979                        </rect> 
     3980                    </property> 
     3981                    <property name="font"> 
     3982                        <font> 
     3983                            <pointsize>9</pointsize> 
     3984                        </font> 
     3985                    </property> 
     3986                    <property name="text"> 
     3987                        <string>Pan</string> 
     3988                    </property> 
     3989                    <property name="alignment"> 
     3990                        <set>AlignCenter</set> 
     3991                    </property> 
     3992                </widget> 
     3993                <widget class="QDial"> 
     3994                    <property name="name"> 
     3995                        <cstring>dial2_10_2</cstring> 
     3996                    </property> 
     3997                    <property name="geometry"> 
     3998                        <rect> 
     3999                            <x>10</x> 
     4000                            <y>100</y> 
     4001                            <width>30</width> 
     4002                            <height>30</height> 
     4003                        </rect> 
     4004                    </property> 
     4005                    <property name="minValue"> 
     4006                        <number>-64</number> 
     4007                    </property> 
     4008                    <property name="maxValue"> 
     4009                        <number>64</number> 
     4010                    </property> 
     4011                </widget> 
     4012                <widget class="QDial"> 
     4013                    <property name="name"> 
     4014                        <cstring>dial2_2_3_2</cstring> 
     4015                    </property> 
     4016                    <property name="geometry"> 
     4017                        <rect> 
     4018                            <x>50</x> 
     4019                            <y>100</y> 
     4020                            <width>30</width> 
     4021                            <height>30</height> 
     4022                        </rect> 
     4023                    </property> 
     4024                    <property name="minValue"> 
     4025                        <number>-64</number> 
     4026                    </property> 
     4027                    <property name="maxValue"> 
     4028                        <number>64</number> 
     4029                    </property> 
     4030                </widget> 
     4031                <widget class="QLabel"> 
     4032                    <property name="name"> 
     4033                        <cstring>textLabel1_2_2_11_2</cstring> 
     4034                    </property> 
     4035                    <property name="geometry"> 
     4036                        <rect> 
     4037                            <x>10</x> 
     4038                            <y>80</y> 
     4039                            <width>30</width> 
     4040                            <height>22</height> 
     4041                        </rect> 
     4042                    </property> 
     4043                    <property name="font"> 
     4044                        <font> 
     4045                            <pointsize>9</pointsize> 
     4046                        </font> 
     4047                    </property> 
     4048                    <property name="text"> 
     4049                        <string>Mute</string> 
     4050                    </property> 
     4051                    <property name="alignment"> 
     4052                        <set>AlignCenter</set> 
     4053                    </property> 
     4054                </widget> 
     4055                <widget class="QCheckBox"> 
     4056                    <property name="name"> 
     4057                        <cstring>checkBox1_18_2</cstring> 
     4058                    </property> 
     4059                    <property name="geometry"> 
     4060                        <rect> 
     4061                            <x>20</x> 
     4062                            <y>60</y> 
     4063                            <width>20</width> 
     4064                            <height>26</height> 
     4065                        </rect> 
     4066                    </property> 
     4067                    <property name="sizePolicy"> 
     4068                        <sizepolicy> 
     4069                            <hsizetype>1</hsizetype> 
     4070                            <vsizetype>0</vsizetype> 
     4071                            <horstretch>0</horstretch> 
     4072                            <verstretch>0</verstretch> 
     4073                        </sizepolicy> 
     4074                    </property> 
     4075                    <property name="font"> 
     4076                        <font> 
     4077                            <pointsize>9</pointsize> 
     4078                        </font> 
     4079                    </property> 
     4080                    <property name="text"> 
     4081                        <string></string> 
     4082                    </property> 
     4083                </widget> 
     4084                <widget class="QCheckBox"> 
     4085                    <property name="name"> 
     4086                        <cstring>checkBox1_3_3_2</cstring> 
     4087                    </property> 
     4088                    <property name="geometry"> 
     4089                        <rect> 
     4090                            <x>60</x> 
     4091                            <y>60</y> 
     4092                            <width>20</width> 
     4093                            <height>26</height> 
     4094                        </rect> 
     4095                    </property> 
     4096                    <property name="sizePolicy"> 
     4097                        <sizepolicy> 
     4098                            <hsizetype>1</hsizetype> 
     4099                            <vsizetype>0</vsizetype> 
     4100                            <horstretch>0</horstretch> 
     4101                            <verstretch>0</verstretch> 
     4102                        </sizepolicy> 
     4103                    </property> 
     4104                    <property name="font"> 
     4105                        <font> 
     4106                            <pointsize>9</pointsize> 
     4107                        </font> 
     4108                    </property> 
     4109                    <property name="text"> 
     4110                        <string></string> 
     4111                    </property> 
     4112                </widget> 
     4113                <widget class="QCheckBox"> 
     4114                    <property name="name"> 
     4115                        <cstring>checkBox1_10_3_2</cstring> 
     4116                    </property> 
     4117                    <property name="geometry"> 
     4118                        <rect> 
     4119                            <x>60</x> 
     4120                            <y>20</y> 
     4121                            <width>20</width> 
     4122                            <height>26</height> 
     4123                        </rect> 
     4124                    </property> 
     4125                    <property name="sizePolicy"> 
     4126                        <sizepolicy> 
     4127                            <hsizetype>1</hsizetype> 
     4128                            <vsizetype>0</vsizetype> 
     4129                            <horstretch>0</horstretch> 
     4130                            <verstretch>0</verstretch> 
     4131                        </sizepolicy> 
     4132                    </property> 
     4133                    <property name="font"> 
     4134                        <font> 
     4135                            <pointsize>9</pointsize> 
     4136                        </font> 
     4137                    </property> 
     4138                    <property name="text"> 
     4139                        <string></string> 
     4140                    </property> 
     4141                </widget> 
     4142                <widget class="QLabel"> 
     4143                    <property name="name"> 
     4144                        <cstring>textLabel1_2_2_2_10_2</cstring> 
     4145                    </property> 
     4146                    <property name="geometry"> 
     4147                        <rect> 
     4148                            <x>10</x> 
     4149                            <y>40</y> 
     4150                            <width>30</width> 
     4151                            <height>22</height> 
     4152                        </rect> 
     4153                    </property> 
     4154                    <property name="font"> 
     4155                        <font> 
     4156                            <pointsize>9</pointsize> 
     4157                        </font> 
     4158                    </property> 
     4159                    <property name="text"> 
     4160                        <string>Solo</string> 
     4161                    </property> 
     4162                    <property name="alignment"> 
     4163                        <set>AlignCenter</set> 
     4164                    </property> 
     4165                </widget> 
     4166                <widget class="QLabel"> 
     4167                    <property name="name"> 
     4168                        <cstring>textLabel1_2_2_2_2_3_2</cstring> 
     4169                    </property> 
     4170                    <property name="geometry"> 
     4171                        <rect> 
     4172                            <x>50</x> 
     4173                            <y>40</y> 
     4174                            <width>30</width> 
     4175                            <height>22</height> 
     4176                        </rect> 
     4177                    </property> 
     4178                    <property name="font"> 
     4179                        <font> 
     4180                            <pointsize>9</pointsize> 
     4181                        </font> 
     4182                    </property> 
     4183                    <property name="text"> 
     4184                        <string>Solo</string> 
     4185                    </property> 
     4186                    <property name="alignment"> 
     4187                        <set>AlignCenter</set> 
     4188                    </property> 
     4189                </widget> 
     4190                <widget class="QLabel"> 
     4191                    <property name="name"> 
     4192                        <cstring>textLabel2_10_2</cstring> 
     4193                    </property> 
     4194                    <property name="geometry"> 
     4195                        <rect> 
     4196                            <x>10</x> 
     4197                            <y>280</y> 
     4198                            <width>30</width> 
     4199                            <height>22</height> 
     4200                        </rect> 
     4201                    </property> 
     4202                    <property name="text"> 
     4203                        <string>1</string> 
     4204                    </property> 
     4205                    <property name="alignment"> 
     4206                        <set>AlignCenter</set> 
     4207                    </property> 
     4208                </widget> 
     4209                <widget class="QSlider"> 
     4210                    <property name="name"> 
     4211                        <cstring>sldFB1_10_2</cstring> 
     4212                    </property> 
     4213                    <property name="geometry"> 
     4214                        <rect> 
     4215                            <x>10</x> 
     4216                            <y>160</y> 
     4217                            <width>30</width> 
     4218                            <height>120</height> 
     4219                        </rect> 
     4220                    </property> 
     4221                    <property name="minValue"> 
     4222                        <number>0</number> 
     4223                    </property> 
     4224                    <property name="maxValue"> 
     4225                        <number>128</number> 
     4226                    </property> 
     4227                    <property name="lineStep"> 
     4228                        <number>1</number> 
     4229                    </property> 
     4230                    <property name="pageStep"> 
     4231                        <number>10</number> 
     4232                    </property> 
     4233                    <property name="value"> 
     4234                        <number>128</number> 
     4235                    </property> 
     4236                    <property name="orientation"> 
     4237                        <enum>Vertical</enum> 
     4238                    </property> 
     4239                    <property name="tickmarks"> 
     4240                        <enum>Both</enum> 
     4241                    </property> 
     4242                    <property name="tickInterval"> 
     4243                        <number>10</number> 
     4244                    </property> 
     4245                </widget> 
     4246                <widget class="QSlider"> 
     4247                    <property name="name"> 
     4248                        <cstring>sldFB1_2_3_2</cstring> 
     4249                    </property> 
     4250                    <property name="geometry"> 
     4251                        <rect> 
     4252                            <x>50</x> 
     4253                            <y>160</y> 
     4254                            <width>30</width> 
     4255                            <height>120</height> 
     4256                        </rect> 
     4257                    </property> 
     4258                    <property name="minValue"> 
     4259                        <number>0</number> 
     4260                    </property> 
     4261                    <property name="maxValue"> 
     4262                        <number>128</number> 
     4263                    </property> 
     4264                    <property name="lineStep"> 
     4265                        <number>1</number> 
     4266                    </property> 
     4267                    <property name="pageStep"> 
     4268                        <number>10</number> 
     4269                    </property> 
     4270                    <property name="value"> 
     4271                        <number>128</number> 
     4272                    </property> 
     4273                    <property name="orientation"> 
     4274                        <enum>Vertical</enum> 
     4275                    </property> 
     4276                    <property name="tickmarks"> 
     4277                        <enum>Both</enum> 
     4278                    </property> 
     4279                    <property name="tickInterval"> 
     4280                        <number>10</number> 
     4281                    </property> 
     4282                </widget> 
     4283                <widget class="QLabel"> 
     4284                    <property name="name"> 
     4285                        <cstring>textLabel1_2_2_3_3_2</cstring> 
     4286                    </property> 
     4287                    <property name="geometry"> 
     4288                        <rect> 
     4289                            <x>50</x> 
     4290                            <y>80</y> 
     4291                            <width>30</width> 
     4292                            <height>22</height> 
     4293                        </rect> 
     4294                    </property> 
     4295                    <property name="font"> 
     4296                        <font> 
     4297                            <pointsize>9</pointsize> 
     4298                        </font> 
     4299                    </property> 
     4300                    <property name="text"> 
     4301                        <string>Mute</string> 
     4302                    </property> 
     4303                    <property name="alignment"> 
     4304                        <set>AlignCenter</set> 
     4305                    </property> 
     4306                </widget> 
     4307                <widget class="QLabel"> 
     4308                    <property name="name"> 
     4309                        <cstring>textLabel2_2_3_2</cstring> 
     4310                    </property> 
     4311                    <property name="geometry"> 
     4312                        <rect> 
     4313                            <x>50</x> 
     4314                            <y>280</y> 
     4315                            <width>30</width> 
     4316                            <height>22</height> 
     4317                        </rect> 
     4318                    </property> 
     4319                    <property name="text"> 
     4320                        <string>2</string> 
     4321                    </property> 
     4322                    <property name="alignment"> 
     4323                        <set>AlignCenter</set> 
     4324                    </property> 
     4325                </widget> 
     4326                <widget class="QLabel"> 
     4327                    <property name="name"> 
     4328                        <cstring>textLabel1_2_2_14_6</cstring> 
     4329                    </property> 
     4330                    <property name="geometry"> 
     4331                        <rect> 
     4332                            <x>30</x> 
     4333                            <y>310</y> 
     4334                            <width>30</width> 
     4335                            <height>22</height> 
     4336                        </rect> 
     4337                    </property> 
     4338                    <property name="font"> 
     4339                        <font> 
     4340                            <pointsize>9</pointsize> 
     4341                        </font> 
     4342                    </property> 
     4343                    <property name="text"> 
     4344                        <string>Pair</string> 
     4345                    </property> 
     4346                    <property name="alignment"> 
     4347                        <set>AlignCenter</set> 
     4348                    </property> 
     4349                </widget> 
     4350                <widget class="QCheckBox"> 
     4351                    <property name="name"> 
     4352                        <cstring>mix1spdif1_2_pair</cstring> 
     4353                    </property> 
     4354                    <property name="geometry"> 
     4355                        <rect> 
     4356                            <x>40</x> 
     4357                            <y>290</y> 
     4358                            <width>20</width> 
     4359                            <height>26</height> 
     4360                        </rect> 
     4361                    </property> 
     4362                    <property name="sizePolicy"> 
     4363                        <sizepolicy> 
     4364                            <hsizetype>1</hsizetype> 
     4365                            <vsizetype>0</vsizetype> 
     4366                            <horstretch>0</horstretch> 
     4367                            <verstretch>0</verstretch> 
     4368                        </sizepolicy> 
     4369                    </property> 
     4370                    <property name="font"> 
     4371                        <font> 
     4372                            <pointsize>9</pointsize> 
     4373                        </font> 
     4374                    </property> 
     4375                    <property name="text"> 
     4376                        <string></string> 
     4377                    </property> 
     4378                </widget> 
     4379            </widget> 
     4380            <widget class="QGroupBox"> 
     4381                <property name="name"> 
     4382                    <cstring>mix1_adat_group</cstring> 
     4383                </property> 
     4384                <property name="geometry"> 
     4385                    <rect> 
     4386                        <x>10</x> 
     4387                        <y>350</y> 
     4388                        <width>330</width> 
     4389                        <height>340</height> 
     4390                    </rect> 
     4391                </property> 
     4392                <property name="title"> 
     4393                    <string>ADAT</string> 
     4394                </property> 
     4395                <widget class="QCheckBox"> 
     4396                    <property name="name"> 
     4397                        <cstring>checkBox1_2_2</cstring> 
     4398                    </property> 
     4399                    <property name="geometry"> 
     4400                        <rect> 
     4401                            <x>20</x> 
     4402                            <y>20</y> 
     4403                            <width>20</width> 
     4404                            <height>26</height> 
     4405                        </rect> 
     4406                    </property> 
     4407                    <property name="sizePolicy"> 
     4408                        <sizepolicy> 
     4409                            <hsizetype>1</hsizetype> 
     4410                            <vsizetype>0</vsizetype> 
     4411                            <horstretch>0</horstretch> 
     4412                            <verstretch>0</verstretch> 
     4413                        </sizepolicy> 
     4414                    </property> 
     4415                    <property name="font"> 
     4416                        <font> 
     4417                            <pointsize>9</pointsize> 
     4418                        </font> 
     4419                    </property> 
     4420                    <property name="text"> 
     4421                        <string></string> 
     4422                    </property> 
     4423                </widget> 
     4424                <widget class="QLabel"> 
     4425                    <property name="name"> 
     4426                        <cstring>textLabel2_9</cstring> 
     4427                    </property> 
     4428                    <property name="geometry"> 
     4429                        <rect> 
     4430                            <x>10</x> 
     4431                            <y>280</y> 
     4432                            <width>30</width> 
     4433                            <height>22</height> 
     4434                        </rect> 
     4435                    </property> 
     4436                    <property name="text"> 
     4437                        <string>1</string> 
     4438                    </property> 
     4439                    <property name="alignment"> 
     4440                        <set>AlignCenter</set> 
     4441                    </property> 
     4442                </widget> 
     4443                <widget class="QLabel"> 
     4444                    <property name="name"> 
     4445                        <cstring>textLabel1_2_10</cstring> 
     4446                    </property> 
     4447                    <property name="geometry"> 
     4448                        <rect> 
     4449                            <x>10</x> 
     4450                            <y>130</y> 
     4451                            <width>30</width> 
     4452                            <height>22</height> 
     4453                        </rect> 
     4454                    </property> 
     4455                    <property name="font"> 
     4456                        <font> 
     4457                            <pointsize>9</pointsize> 
     4458                        </font> 
     4459                    </property> 
     4460                    <property name="text"> 
     4461                        <string>Pan</string> 
     4462                    </property> 
     4463                    <property name="alignment"> 
     4464                        <set>AlignCenter</set> 
     4465                    </property> 
     4466                </widget> 
     4467                <widget class="QLabel"> 
     4468                    <property name="name"> 
     4469                        <cstring>textLabel1_2_3_2</cstring> 
     4470                    </property> 
     4471                    <property name="geometry"> 
     4472                        <rect> 
     4473                            <x>50</x> 
     4474                            <y>130</y> 
     4475                            <width>30</width> 
     4476                            <height>22</height> 
     4477                        </rect> 
     4478                    </property> 
     4479                    <property name="font"> 
     4480                        <font> 
     4481                            <pointsize>9</pointsize> 
     4482                        </font> 
     4483                    </property> 
     4484                    <property name="text"> 
     4485                        <string>Pan</string> 
     4486                    </property> 
     4487                    <property name="alignment"> 
     4488                        <set>AlignCenter</set> 
     4489                    </property> 
     4490                </widget> 
     4491                <widget class="QLabel"> 
     4492                    <property name="name"> 
     4493                        <cstring>textLabel1_2_4_2</cstring> 
     4494                    </property> 
     4495                    <property name="geometry"> 
     4496                        <rect> 
     4497                            <x>90</x> 
     4498                            <y>130</y> 
     4499                            <width>30</width> 
     4500                            <height>22</height> 
     4501                        </rect> 
     4502                    </property> 
     4503                    <property name="font"> 
     4504                        <font> 
     4505                            <pointsize>9</pointsize> 
     4506                        </font> 
     4507                    </property> 
     4508                    <property name="text"> 
     4509                        <string>Pan</string> 
     4510                    </property> 
     4511                    <property name="alignment"> 
     4512                        <set>AlignCenter</set> 
     4513                    </property> 
     4514                </widget> 
     4515                <widget class="QLabel"> 
     4516                    <property name="name"> 
     4517                        <cstring>textLabel1_2_5_2</cstring> 
     4518                    </property> 
     4519                    <property name="geometry"> 
     4520                        <rect> 
     4521                            <x>130</x> 
     4522                            <y>130</y> 
     4523                            <width>30</width> 
     4524                            <height>22</height> 
     4525                        </rect> 
     4526                    </property> 
     4527                    <property name="font"> 
     4528                        <font> 
     4529                            <pointsize>9</pointsize> 
     4530                        </font> 
     4531                    </property> 
     4532                    <property name="text"> 
     4533                        <string>Pan</string> 
     4534                    </property> 
     4535                    <property name="alignment"> 
     4536                        <set>AlignCenter</set> 
     4537                    </property> 
     4538                </widget> 
     4539                <widget class="QDial"> 
     4540                    <property name="name"> 
     4541                        <cstring>dial2_9</cstring> 
     4542                    </property> 
     4543                    <property name="geometry"> 
     4544                        <rect> 
     4545                            <x>10</x> 
     4546                            <y>100</y> 
     4547                            <width>30</width> 
     4548                            <height>30</height> 
     4549                        </rect> 
     4550                    </property> 
     4551                    <property name="minValue"> 
     4552                        <number>-64</number> 
     4553                    </property> 
     4554                    <property name="maxValue"> 
     4555                        <number>64</number> 
     4556                    </property> 
     4557                </widget> 
     4558                <widget class="QDial"> 
     4559                    <property name="name"> 
     4560                        <cstring>dial2_2_2</cstring> 
     4561                    </property> 
     4562                    <property name="geometry"> 
     4563                        <rect> 
     4564                            <x>50</x> 
     4565                            <y>100</y> 
     4566                            <width>30</width> 
     4567                            <height>30</height> 
     4568                        </rect> 
     4569                    </property> 
     4570                    <property name="minValue"> 
     4571                        <number>-64</number> 
     4572                    </property> 
     4573                    <property name="maxValue"> 
     4574                        <number>64</number> 
     4575                    </property> 
     4576                </widget> 
     4577                <widget class="QDial"> 
     4578                    <property name="name"> 
     4579                        <cstring>dial2_3_2</cstring> 
     4580                    </property> 
     4581                    <property name="geometry"> 
     4582                        <rect> 
     4583                            <x>90</x> 
     4584                            <y>100</y> 
     4585                            <width>30</width> 
     4586                            <height>30</height> 
     4587                        </rect> 
     4588                    </property> 
     4589                    <property name="minValue"> 
     4590                        <number>-64</number> 
     4591                    </property> 
     4592                    <property name="maxValue"> 
     4593                        <number>64</number> 
     4594                    </property> 
     4595                </widget> 
     4596                <widget class="QDial"> 
     4597                    <property name="name"> 
     4598                        <cstring>dial2_4_2</cstring> 
     4599                    </property> 
     4600                    <property name="geometry"> 
     4601                        <rect> 
     4602                            <x>130</x> 
     4603                            <y>100</y> 
     4604                            <width>30</width> 
     4605                            <height>30</height> 
     4606                        </rect> 
     4607                    </property> 
     4608                    <property name="minValue"> 
     4609                        <number>-64</number> 
     4610                    </property> 
     4611                    <property name="maxValue"> 
     4612                        <number>64</number> 
     4613                    </property> 
     4614                </widget> 
     4615                <widget class="QLabel"> 
     4616                    <property name="name"> 
     4617                        <cstring>textLabel1_2_2_10</cstring> 
     4618                    </property> 
     4619                    <property name="geometry"> 
     4620                        <rect> 
     4621                            <x>10</x> 
     4622                            <y>80</y> 
     4623                            <width>30</width> 
     4624                            <height>22</height> 
     4625                        </rect> 
     4626                    </property> 
     4627                    <property name="font"> 
     4628                        <font> 
     4629                            <pointsize>9</pointsize> 
     4630                        </font> 
     4631                    </property> 
     4632                    <property name="text"> 
     4633                        <string>Mute</string> 
     4634                    </property> 
     4635                    <property name="alignment"> 
     4636                        <set>AlignCenter</set> 
     4637                    </property> 
     4638                </widget> 
     4639                <widget class="QLabel"> 
     4640                    <property name="name"> 
     4641                        <cstring>textLabel1_2_2_3_2</cstring> 
     4642                    </property> 
     4643                    <property name="geometry"> 
     4644                        <rect> 
     4645                            <x>50</x> 
     4646                            <y>80</y> 
     4647                            <width>30</width> 
     4648                            <height>22</height> 
     4649                        </rect> 
     4650                    </property> 
     4651                    <property name="font"> 
     4652                        <font> 
     4653                            <pointsize>9</pointsize> 
     4654                        </font> 
     4655                    </property> 
     4656                    <property name="text"> 
     4657                        <string>Mute</string> 
     4658                    </property> 
     4659                    <property name="alignment"> 
     4660                        <set>AlignCenter</set> 
     4661                    </property> 
     4662                </widget> 
     4663                <widget class="QLabel"> 
     4664                    <property name="name"> 
     4665                        <cstring>textLabel1_2_2_4_2</cstring> 
     4666                    </property> 
     4667                    <property name="geometry"> 
     4668                        <rect> 
     4669                            <x>90</x> 
     4670                            <y>80</y> 
     4671                            <width>30</width> 
     4672                            <height>22</height> 
     4673                        </rect> 
     4674                    </property> 
     4675                    <property name="font"> 
     4676                        <font> 
     4677                            <pointsize>9</pointsize> 
     4678                        </font> 
     4679                    </property> 
     4680                    <property name="text"> 
     4681                        <string>Mute</string> 
     4682                    </property> 
     4683                    <property name="alignment"> 
     4684                        <set>AlignCenter</set> 
     4685                    </property> 
     4686                </widget> 
     4687                <widget class="QLabel"> 
     4688                    <property name="name"> 
     4689                        <cstring>textLabel1_2_2_5_2</cstring> 
     4690                    </property> 
     4691                    <property name="geometry"> 
     4692                        <rect> 
     4693                            <x>130</x> 
     4694                            <y>80</y> 
     4695                            <width>30</width> 
     4696                            <height>22</height> 
     4697                        </rect> 
     4698                    </property> 
     4699                    <property name="font"> 
     4700                        <font> 
     4701                            <pointsize>9</pointsize> 
     4702                        </font> 
     4703                    </property> 
     4704                    <property name="text"> 
     4705                        <string>Mute</string> 
     4706                    </property> 
     4707                    <property name="alignment"> 
     4708                        <set>AlignCenter</set> 
     4709                    </property> 
     4710                </widget> 
     4711                <widget class="QCheckBox"> 
     4712                    <property name="name"> 
     4713                        <cstring>checkBox1_17</cstring> 
     4714                    </property> 
     4715                    <property name="geometry"> 
     4716                        <rect> 
     4717                            <x>20</x> 
     4718                            <y>60</y> 
     4719                            <width>20</width> 
     4720                            <height>26</height> 
     4721                        </rect> 
     4722                    </property> 
     4723                    <property name="sizePolicy"> 
     4724                        <sizepolicy> 
     4725                            <hsizetype>1</hsizetype> 
     4726                            <vsizetype>0</vsizetype> 
     4727                            <horstretch>0</horstretch> 
     4728                            <verstretch>0</verstretch> 
     4729                        </sizepolicy> 
     4730                    </property> 
     4731                    <property name="font"> 
     4732                        <font> 
     4733                            <pointsize>9</pointsize> 
     4734                        </font> 
     4735                    </property> 
     4736                    <property name="text"> 
     4737                        <string></string> 
     4738                    </property> 
     4739                </widget> 
     4740                <widget class="QCheckBox"> 
     4741                    <property name="name"> 
     4742                        <cstring>checkBox1_3_2</cstring> 
     4743                    </property> 
     4744                    <property name="geometry"> 
     4745                        <rect> 
     4746                            <x>60</x> 
     4747                            <y>60</y> 
     4748                            <width>20</width> 
     4749                            <height>26</height> 
     4750                        </rect> 
     4751                    </property> 
     4752                    <property name="sizePolicy"> 
     4753                        <sizepolicy> 
     4754                            <hsizetype>1</hsizetype> 
     4755                            <vsizetype>0</vsizetype> 
     4756                            <horstretch>0</horstretch> 
     4757                            <verstretch>0</verstretch> 
     4758                        </sizepolicy> 
     4759                    </property> 
     4760                    <property name="font"> 
     4761                        <font> 
     4762                            <pointsize>9</pointsize> 
     4763                        </font> 
     4764                    </property> 
     4765                    <property name="text"> 
     4766                        <string></string> 
     4767                    </property> 
     4768                </widget> 
     4769                <widget class="QCheckBox"> 
     4770                    <property name="name"> 
     4771                        <cstring>checkBox1_4_2</cstring> 
     4772                    </property> 
     4773                    <property name="geometry"> 
     4774                        <rect> 
     4775                            <x>100</x> 
     4776                            <y>60</y> 
     4777                            <width>20</width> 
     4778                            <height>26</height> 
     4779                        </rect> 
     4780                    </property> 
     4781                    <property name="sizePolicy"> 
     4782                        <sizepolicy> 
     4783                            <hsizetype>1</hsizetype> 
     4784                            <vsizetype>0</vsizetype> 
     4785                            <horstretch>0</horstretch> 
     4786                            <verstretch>0</verstretch> 
     4787                        </sizepolicy> 
     4788                    </property> 
     4789                    <property name="font"> 
     4790                        <font> 
     4791                            <pointsize>9</pointsize> 
     4792                        </font> 
     4793                    </property> 
     4794                    <property name="text"> 
     4795                        <string></string> 
     4796                    </property> 
     4797                </widget> 
     4798                <widget class="QCheckBox"> 
     4799                    <property name="name"> 
     4800                        <cstring>checkBox1_5_2</cstring> 
     4801                    </property> 
     4802                    <property name="geometry"> 
     4803                        <rect> 
     4804                            <x>140</x> 
     4805                            <y>60</y> 
     4806                            <width>20</width> 
     4807                            <height>26</height> 
     4808                        </rect> 
     4809                    </property> 
     4810                    <property name="sizePolicy"> 
     4811                        <sizepolicy> 
     4812                            <hsizetype>1</hsizetype> 
     4813                            <vsizetype>0</vsizetype> 
     4814                            <horstretch>0</horstretch> 
     4815                            <verstretch>0</verstretch> 
     4816                        </sizepolicy> 
     4817                    </property> 
     4818                    <property name="font"> 
     4819                        <font> 
     4820                            <pointsize>9</pointsize> 
     4821                        </font> 
     4822                    </property> 
     4823                    <property name="text"> 
     4824                        <string></string> 
     4825                    </property> 
     4826                </widget> 
     4827                <widget class="QCheckBox"> 
     4828                    <property name="name"> 
     4829                        <cstring>checkBox1_10_2</cstring> 
     4830                    </property> 
     4831                    <property name="geometry"> 
     4832                        <rect> 
     4833                            <x>60</x> 
     4834                            <y>20</y> 
     4835                            <width>20</width> 
     4836                            <height>26</height> 
     4837                        </rect> 
     4838                    </property> 
     4839                    <property name="sizePolicy"> 
     4840                        <sizepolicy> 
     4841                            <hsizetype>1</hsizetype> 
     4842                            <vsizetype>0</vsizetype> 
     4843                            <horstretch>0</horstretch> 
     4844                            <verstretch>0</verstretch> 
     4845                        </sizepolicy> 
     4846                    </property> 
     4847                    <property name="font"> 
     4848                        <font> 
     4849                            <pointsize>9</pointsize> 
     4850                        </font> 
     4851                    </property> 
     4852                    <property name="text"> 
     4853                        <string></string> 
     4854                    </property> 
     4855                </widget> 
     4856                <widget class="QCheckBox"> 
     4857                    <property name="name"> 
     4858                        <cstring>checkBox1_11_2</cstring> 
     4859                    </property> 
     4860                    <property name="geometry"> 
     4861                        <rect> 
     4862                            <x>100</x> 
     4863                            <y>20</y> 
     4864                            <width>20</width> 
     4865                            <height>26</height> 
     4866                        </rect> 
     4867                    </property> 
     4868                    <property name="sizePolicy"> 
     4869                        <sizepolicy> 
     4870                            <hsizetype>1</hsizetype> 
     4871                            <vsizetype>0</vsizetype> 
     4872                            <horstretch>0</horstretch> 
     4873                            <verstretch>0</verstretch> 
     4874                        </sizepolicy> 
     4875                    </property> 
     4876                    <property name="font"> 
     4877                        <font> 
     4878                            <pointsize>9</pointsize> 
     4879                        </font> 
     4880                    </property> 
     4881                    <property name="text"> 
     4882                        <string></string> 
     4883                    </property> 
     4884                </widget> 
     4885                <widget class="QCheckBox"> 
     4886                    <property name="name"> 
     4887                        <cstring>checkBox1_12_2</cstring> 
     4888                    </property> 
     4889                    <property name="geometry"> 
     4890                        <rect> 
     4891                            <x>140</x> 
     4892                            <y>20</y> 
     4893                            <width>20</width> 
     4894                            <height>26</height> 
     4895                        </rect> 
     4896                    </property> 
     4897                    <property name="sizePolicy"> 
     4898                        <sizepolicy> 
     4899                            <hsizetype>1</hsizetype> 
     4900                            <vsizetype>0</vsizetype> 
     4901                            <horstretch>0</horstretch> 
     4902                            <verstretch>0</verstretch> 
     4903                        </sizepolicy> 
     4904                    </property> 
     4905                    <property name="font"> 
     4906                        <font> 
     4907                            <pointsize>9</pointsize> 
     4908                        </font> 
     4909                    </property> 
     4910                    <property name="text"> 
     4911                        <string></string> 
     4912                    </property> 
     4913                </widget> 
     4914                <widget class="QLabel"> 
     4915                    <property name="name"> 
     4916                        <cstring>textLabel1_2_2_2_9</cstring> 
     4917                    </property> 
     4918                    <property name="geometry"> 
     4919                        <rect> 
     4920                            <x>10</x> 
     4921                            <y>40</y> 
     4922                            <width>30</width> 
     4923                            <height>22</height> 
     4924                        </rect> 
     4925                    </property> 
     4926                    <property name="font"> 
     4927                        <font> 
     4928                            <pointsize>9</pointsize> 
     4929                        </font> 
     4930                    </property> 
     4931                    <property name="text"> 
     4932                        <string>Solo</string> 
     4933                    </property> 
     4934                    <property name="alignment"> 
     4935                        <set>AlignCenter</set> 
     4936                    </property> 
     4937                </widget> 
     4938                <widget class="QLabel"> 
     4939                    <property name="name"> 
     4940                        <cstring>textLabel1_2_2_2_2_2</cstring> 
     4941                    </property> 
     4942                    <property name="geometry"> 
     4943                        <rect> 
     4944                            <x>50</x> 
     4945                            <y>40</y> 
     4946                            <width>30</width> 
     4947                            <height>22</height> 
     4948                        </rect> 
     4949                    </property> 
     4950                    <property name="font"> 
     4951                        <font> 
     4952                            <pointsize>9</pointsize> 
     4953                        </font> 
     4954                    </property> 
     4955                    <property name="text"> 
     4956                        <string>Solo</string> 
     4957                    </property> 
     4958                    <property name="alignment"> 
     4959                        <set>AlignCenter</set> 
     4960                    </property> 
     4961                </widget> 
     4962                <widget class="QLabel"> 
     4963                    <property name="name"> 
     4964                        <cstring>textLabel1_2_2_2_3_2</cstring> 
     4965                    </property> 
     4966                    <property name="geometry"> 
     4967                        <rect> 
     4968                            <x>90</x> 
     4969                            <y>40</y> 
     4970                            <width>30</width> 
     4971                            <height>22</height> 
     4972                        </rect> 
     4973                    </property> 
     4974                    <property name="font"> 
     4975                        <font> 
     4976                            <pointsize>9</pointsize> 
     4977                        </font> 
     4978                    </property> 
     4979                    <property name="text"> 
     4980                        <string>Solo</string> 
     4981                    </property> 
     4982                    <property name="alignment"> 
     4983                        <set>AlignCenter</set> 
     4984                    </property> 
     4985                </widget> 
     4986                <widget class="QLabel"> 
     4987                    <property name="name"> 
     4988                        <cstring>textLabel1_2_2_2_4_2</cstring> 
     4989                    </property> 
     4990                    <property name="geometry"> 
     4991                        <rect> 
     4992                            <x>130</x> 
     4993                            <y>40</y> 
     4994                            <width>30</width> 
     4995                            <height>22</height> 
     4996                        </rect> 
     4997                    </property> 
     4998                    <property name="font"> 
     4999                        <font> 
     5000                            <pointsize>9</pointsize> 
     5001                        </font> 
     5002                    </property> 
     5003                    <property name="text"> 
     5004                        <string>Solo</string> 
     5005                    </property> 
     5006                    <property name="alignment"> 
     5007                        <set>AlignCenter</set> 
     5008                    </property> 
     5009                </widget> 
     5010                <widget class="QLabel"> 
     5011                    <property name="name"> 
     5012                        <cstring>textLabel2_2_2</cstring> 
     5013                    </property> 
     5014                    <property name="geometry"> 
     5015                        <rect> 
     5016                            <x>50</x> 
     5017                            <y>280</y> 
     5018                            <width>30</width> 
     5019                            <height>22</height> 
     5020                        </rect> 
     5021                    </property> 
     5022                    <property name="text"> 
     5023                        <string>2</string> 
     5024                    </property> 
     5025                    <property name="alignment"> 
     5026                        <set>AlignCenter</set> 
     5027                    </property> 
     5028                </widget> 
     5029                <widget class="QLabel"> 
     5030                    <property name="name"> 
     5031                        <cstring>textLabel2_3_2</cstring> 
     5032                    </property> 
     5033                    <property name="geometry"> 
     5034                        <rect> 
     5035                            <x>90</x> 
     5036                            <y>280</y> 
     5037                            <width>30</width> 
     5038                            <height>22</height> 
     5039                        </rect> 
     5040                    </property> 
     5041                    <property name="text"> 
     5042                        <string>3</string> 
     5043                    </property> 
     5044                    <property name="alignment"> 
     5045                        <set>AlignCenter</set> 
     5046                    </property> 
     5047                </widget> 
     5048                <widget class="QLabel"> 
     5049                    <property name="name"> 
     5050                        <cstring>textLabel2_4_2</cstring> 
     5051                    </property> 
     5052                    <property name="geometry"> 
     5053                        <rect> 
     5054                            <x>130</x> 
     5055                            <y>280</y> 
     5056                            <width>30</width> 
     5057                            <height>22</height> 
     5058                        </rect> 
     5059                    </property> 
     5060                    <property name="text"> 
     5061                        <string>4</string> 
     5062                    </property> 
     5063                    <property name="alignment"> 
     5064                        <set>AlignCenter</set> 
     5065                    </property> 
     5066                </widget> 
     5067                <widget class="QSlider"> 
     5068                    <property name="name"> 
     5069                        <cstring>sldFB1_2_2</cstring> 
     5070                    </property> 
     5071                    <property name="geometry"> 
     5072                        <rect> 
     5073                            <x>50</x> 
     5074                            <y>160</y> 
     5075                            <width>30</width> 
     5076                            <height>120</height> 
     5077                        </rect> 
     5078                    </property> 
     5079                    <property name="minValue"> 
     5080                        <number>0</number> 
     5081                    </property> 
     5082                    <property name="maxValue"> 
     5083                        <number>128</number> 
     5084                    </property> 
     5085                    <property name="lineStep"> 
     5086                        <number>1</number> 
     5087                    </property> 
     5088                    <property name="pageStep"> 
     5089                        <number>10</number> 
     5090                    </property> 
     5091                    <property name="value"> 
     5092                        <number>128</number> 
     5093                    </property> 
     5094                    <property name="orientation"> 
     5095                        <enum>Vertical</enum> 
     5096                    </property> 
     5097                    <property name="tickmarks"> 
     5098                        <enum>Both</enum> 
     5099                    </property> 
     5100                    <property name="tickInterval"> 
     5101                        <number>10</number> 
     5102                    </property> 
     5103                </widget> 
     5104                <widget class="QSlider"> 
     5105                    <property name="name"> 
     5106                        <cstring>sldFB1_3_2</cstring> 
     5107                    </property> 
     5108                    <property name="geometry"> 
     5109                        <rect> 
     5110                            <x>90</x> 
     5111                            <y>160</y> 
     5112                            <width>30</width> 
     5113                            <height>120</height> 
     5114                        </rect> 
     5115                    </property> 
     5116                    <property name="minValue"> 
     5117                        <number>0</number> 
     5118                    </property> 
     5119                    <property name="maxValue"> 
     5120                        <number>128</number> 
     5121                    </property> 
     5122                    <property name="lineStep"> 
     5123                        <number>1</number> 
     5124                    </property> 
     5125                    <property name="pageStep"> 
     5126                        <number>10</number> 
     5127                    </property> 
     5128                    <property name="value"> 
     5129                        <number>128</number> 
     5130                    </property> 
     5131                    <property name="orientation"> 
     5132                        <enum>Vertical</enum> 
     5133                    </property> 
     5134                    <property name="tickmarks"> 
     5135                        <enum>Both</enum> 
     5136                    </property> 
     5137                    <property name="tickInterval"> 
     5138                        <number>10</number> 
     5139                    </property> 
     5140                </widget> 
     5141                <widget class="QSlider"> 
     5142                    <property name="name"> 
     5143                        <cstring>sldFB1_4_2</cstring> 
     5144                    </property> 
     5145                    <property name="geometry"> 
     5146                        <rect> 
     5147                            <x>130</x> 
     5148                            <y>160</y> 
     5149                            <width>30</width> 
     5150                            <height>120</height> 
     5151                        </rect> 
     5152                    </property> 
     5153                    <property name="minValue"> 
     5154                        <number>0</number> 
     5155                    </property> 
     5156                    <property name="maxValue"> 
     5157                        <number>128</number> 
     5158                    </property> 
     5159                    <property name="lineStep"> 
     5160                        <number>1</number> 
     5161                    </property> 
     5162                    <property name="pageStep"> 
     5163                        <number>10</number> 
     5164                    </property> 
     5165                    <property name="value"> 
     5166                        <number>128</number> 
     5167                    </property> 
     5168                    <property name="orientation"> 
     5169                        <enum>Vertical</enum> 
     5170                    </property> 
     5171                    <property name="tickmarks"> 
     5172                        <enum>Both</enum> 
     5173                    </property> 
     5174                    <property name="tickInterval"> 
     5175                        <number>10</number> 
     5176                    </property> 
     5177                </widget> 
     5178                <widget class="QSlider"> 
     5179                    <property name="name"> 
     5180                        <cstring>sldFB1_9</cstring> 
     5181                    </property> 
     5182                    <property name="geometry"> 
     5183                        <rect> 
     5184                            <x>10</x> 
     5185                            <y>160</y> 
     5186                            <width>30</width> 
     5187                            <height>120</height> 
     5188                        </rect> 
     5189                    </property> 
     5190                    <property name="minValue"> 
     5191                        <number>0</number> 
     5192                    </property> 
     5193                    <property name="maxValue"> 
     5194                        <number>128</number> 
     5195                    </property> 
     5196                    <property name="lineStep"> 
     5197                        <number>1</number> 
     5198                    </property> 
     5199                    <property name="pageStep"> 
     5200                        <number>10</number> 
     5201                    </property> 
     5202                    <property name="value"> 
     5203                        <number>128</number> 
     5204                    </property> 
     5205                    <property name="orientation"> 
     5206                        <enum>Vertical</enum> 
     5207                    </property> 
     5208                    <property name="tickmarks"> 
     5209                        <enum>Both</enum> 
     5210                    </property> 
     5211                    <property name="tickInterval"> 
     5212                        <number>10</number> 
     5213                    </property> 
     5214                </widget> 
     5215                <widget class="QGroupBox"> 
     5216                    <property name="name"> 
     5217                        <cstring>mix1_adat58_group</cstring> 
     5218                    </property> 
     5219                    <property name="geometry"> 
     5220                        <rect> 
     5221                            <x>168</x> 
     5222                            <y>18</y> 
     5223                            <width>150</width> 
     5224                            <height>310</height> 
     5225                        </rect> 
     5226                    </property> 
     5227                    <property name="frameShape"> 
     5228                        <enum>NoFrame</enum> 
     5229                    </property> 
     5230                    <property name="title"> 
     5231                        <string></string> 
     5232                    </property> 
     5233                    <widget class="QLabel"> 
     5234                        <property name="name"> 
     5235                            <cstring>textLabel1_2_9_2</cstring> 
     5236                        </property> 
     5237                        <property name="geometry"> 
     5238                            <rect> 
     5239                                <x>122</x> 
     5240                                <y>112</y> 
     5241                                <width>30</width> 
     5242                                <height>22</height> 
     5243                            </rect> 
     5244                        </property> 
     5245                        <property name="font"> 
     5246                            <font> 
     5247                                <pointsize>9</pointsize> 
     5248                            </font> 
     5249                        </property> 
     5250                        <property name="text"> 
     5251                            <string>Pan</string> 
     5252                        </property> 
     5253                        <property name="alignment"> 
     5254                            <set>AlignCenter</set> 
     5255                        </property> 
     5256                    </widget> 
     5257                    <widget class="QDial"> 
     5258                        <property name="name"> 
     5259                            <cstring>dial2_8_2</cstring> 
     5260                        </property> 
     5261                        <property name="geometry"> 
     5262                            <rect> 
     5263                                <x>122</x> 
     5264                                <y>82</y> 
     5265                                <width>30</width> 
     5266                                <height>30</height> 
     5267                            </rect> 
     5268                        </property> 
     5269                        <property name="minValue"> 
     5270                            <number>-64</number> 
     5271                        </property> 
     5272                        <property name="maxValue"> 
     5273                            <number>64</number> 
     5274                        </property> 
     5275                    </widget> 
     5276                    <widget class="QLabel"> 
     5277                        <property name="name"> 
     5278                            <cstring>textLabel1_2_2_9_2</cstring> 
     5279                        </property> 
     5280                        <property name="geometry"> 
     5281                            <rect> 
     5282                                <x>122</x> 
     5283                                <y>62</y> 
     5284                                <width>30</width> 
     5285                                <height>22</height> 
     5286                            </rect> 
     5287                        </property> 
     5288                        <property name="font"> 
     5289                            <font> 
     5290                                <pointsize>9</pointsize> 
     5291                            </font> 
     5292                        </property> 
     5293                        <property name="text"> 
     5294                            <string>Mute</string> 
     5295                        </property> 
     5296                        <property name="alignment"> 
     5297                            <set>AlignCenter</set> 
     5298                        </property> 
     5299                    </widget> 
     5300                    <widget class="QCheckBox"> 
     5301                        <property name="name"> 
     5302                            <cstring>checkBox1_9_2</cstring> 
     5303                        </property> 
     5304                        <property name="geometry"> 
     5305                            <rect> 
     5306                                <x>132</x> 
     5307                                <y>42</y> 
     5308                                <width>20</width> 
     5309                                <height>26</height> 
     5310                            </rect> 
     5311                        </property> 
     5312                        <property name="sizePolicy"> 
     5313                            <sizepolicy> 
     5314                                <hsizetype>1</hsizetype> 
     5315                                <vsizetype>0</vsizetype> 
     5316                                <horstretch>0</horstretch> 
     5317                                <verstretch>0</verstretch> 
     5318                            </sizepolicy> 
     5319                        </property> 
     5320                        <property name="font"> 
     5321                            <font> 
     5322                                <pointsize>9</pointsize> 
     5323                            </font> 
     5324                        </property> 
     5325                        <property name="text"> 
     5326                            <string></string> 
     5327                        </property> 
     5328                    </widget> 
     5329                    <widget class="QCheckBox"> 
     5330                        <property name="name"> 
     5331                            <cstring>checkBox1_16_2</cstring> 
     5332                        </property> 
     5333                        <property name="geometry"> 
     5334                            <rect> 
     5335                                <x>132</x> 
     5336                                <y>2</y> 
     5337                                <width>20</width> 
     5338                                <height>26</height> 
     5339                            </rect> 
     5340                        </property> 
     5341                        <property name="sizePolicy"> 
     5342                            <sizepolicy> 
     5343                                <hsizetype>1</hsizetype> 
     5344                                <vsizetype>0</vsizetype> 
     5345                                <horstretch>0</horstretch> 
     5346                                <verstretch>0</verstretch> 
     5347                            </sizepolicy> 
     5348                        </property> 
     5349                        <property name="font"> 
     5350                            <font> 
     5351                                <pointsize>9</pointsize> 
     5352                            </font> 
     5353                        </property> 
     5354                        <property name="text"> 
     5355                            <string></string> 
     5356                        </property> 
     5357                    </widget> 
     5358                    <widget class="QLabel"> 
     5359                        <property name="name"> 
     5360                            <cstring>textLabel1_2_2_2_8_2</cstring> 
     5361                        </property> 
     5362                        <property name="geometry"> 
     5363                            <rect> 
     5364                                <x>122</x> 
     5365                                <y>22</y> 
     5366                                <width>30</width> 
     5367                                <height>22</height> 
     5368                            </rect> 
     5369                        </property> 
     5370                        <property name="font"> 
     5371                            <font> 
     5372                                <pointsize>9</pointsize> 
     5373                            </font> 
     5374                        </property> 
     5375                        <property name="text"> 
     5376                            <string>Solo</string> 
     5377                        </property> 
     5378                        <property name="alignment"> 
     5379                            <set>AlignCenter</set> 
     5380                        </property> 
     5381                    </widget> 
     5382                    <widget class="QLabel"> 
     5383                        <property name="name"> 
     5384                            <cstring>textLabel2_8_2</cstring> 
     5385                        </property> 
     5386                        <property name="geometry"> 
     5387                            <rect> 
     5388                                <x>122</x> 
     5389                                <y>262</y> 
     5390                                <width>30</width> 
     5391                                <height>22</height> 
     5392                            </rect> 
     5393                        </property> 
     5394                        <property name="text"> 
     5395                            <string>8</string> 
     5396                        </property> 
     5397                        <property name="alignment"> 
     5398                            <set>AlignCenter</set> 
     5399                        </property> 
     5400                    </widget> 
     5401                    <widget class="QSlider"> 
     5402                        <property name="name"> 
     5403                            <cstring>sldFB1_8_2</cstring> 
     5404                        </property> 
     5405                        <property name="geometry"> 
     5406                            <rect> 
     5407                                <x>122</x> 
     5408                                <y>142</y> 
     5409                                <width>30</width> 
     5410                                <height>120</height> 
     5411                            </rect> 
     5412                        </property> 
     5413                        <property name="minValue"> 
     5414                            <number>0</number> 
     5415                        </property> 
     5416                        <property name="maxValue"> 
     5417                            <number>128</number> 
     5418                        </property> 
     5419                        <property name="lineStep"> 
     5420                            <number>1</number> 
     5421                        </property> 
     5422                        <property name="pageStep"> 
     5423                            <number>10</number> 
     5424                        </property> 
     5425                        <property name="value"> 
     5426                            <number>128</number> 
     5427                        </property> 
     5428                        <property name="orientation"> 
     5429                            <enum>Vertical</enum> 
     5430                        </property> 
     5431                        <property name="tickmarks"> 
     5432                            <enum>Both</enum> 
     5433                        </property> 
     5434                        <property name="tickInterval"> 
     5435                            <number>10</number> 
     5436                        </property> 
     5437                    </widget> 
     5438                    <widget class="QLabel"> 
     5439                        <property name="name"> 
     5440                            <cstring>textLabel2_5_2</cstring> 
     5441                        </property> 
     5442                        <property name="geometry"> 
     5443                            <rect> 
     5444                                <x>2</x> 
     5445                                <y>262</y> 
     5446                                <width>30</width> 
     5447                                <height>22</height> 
     5448                            </rect> 
     5449                        </property> 
     5450                        <property name="text"> 
     5451                            <string>5</string> 
     5452                        </property> 
     5453                        <property name="alignment"> 
     5454                            <set>AlignCenter</set> 
     5455                        </property> 
     5456                    </widget> 
     5457                    <widget class="QLabel"> 
     5458                        <property name="name"> 
     5459                            <cstring>textLabel2_7_2</cstring> 
     5460                        </property> 
     5461                        <property name="geometry"> 
     5462                            <rect> 
     5463                                <x>82</x> 
     5464                                <y>262</y> 
     5465                                <width>30</width> 
     5466                                <height>22</height> 
     5467                            </rect> 
     5468                        </property> 
     5469                        <property name="text"> 
     5470                            <string>7</string> 
     5471                        </property> 
     5472                        <property name="alignment"> 
     5473                            <set>AlignCenter</set> 
     5474                        </property> 
     5475                    </widget> 
     5476                    <widget class="QLabel"> 
     5477                        <property name="name"> 
     5478                            <cstring>textLabel2_6_2</cstring> 
     5479                        </property> 
     5480                        <property name="geometry"> 
     5481                            <rect> 
     5482                                <x>42</x> 
     5483                                <y>262</y> 
     5484                                <width>30</width> 
     5485                                <height>22</height> 
     5486                            </rect> 
     5487                        </property> 
     5488                        <property name="text"> 
     5489                            <string>6</string> 
     5490                        </property> 
     5491                        <property name="alignment"> 
     5492                            <set>AlignCenter</set> 
     5493                        </property> 
     5494                    </widget> 
     5495                    <widget class="QSlider"> 
     5496                        <property name="name"> 
     5497                            <cstring>sldFB1_5_2</cstring> 
     5498                        </property> 
     5499                        <property name="geometry"> 
     5500                            <rect> 
     5501                                <x>2</x> 
     5502                                <y>142</y> 
     5503                                <width>30</width> 
     5504                                <height>120</height> 
     5505                            </rect> 
     5506                        </property> 
     5507                        <property name="minValue"> 
     5508                            <number>0</number> 
     5509                        </property> 
     5510                        <property name="maxValue"> 
     5511                            <number>128</number> 
     5512                        </property> 
     5513                        <property name="lineStep"> 
     5514                            <number>1</number> 
     5515                        </property> 
     5516                        <property name="pageStep"> 
     5517                            <number>10</number> 
     5518                        </property> 
     5519                        <property name="value"> 
     5520                            <number>128</number> 
     5521                        </property> 
     5522                        <property name="orientation"> 
     5523                            <enum>Vertical</enum> 
     5524                        </property> 
     5525                        <property name="tickmarks"> 
     5526                            <enum>Both</enum> 
     5527                        </property> 
     5528                        <property name="tickInterval"> 
     5529                            <number>10</number> 
     5530                        </property> 
     5531                    </widget> 
     5532                    <widget class="QSlider"> 
     5533                        <property name="name"> 
     5534                            <cstring>sldFB1_6_2</cstring> 
     5535                        </property> 
     5536                        <property name="geometry"> 
     5537                            <rect> 
     5538                                <x>42</x> 
     5539                                <y>142</y> 
     5540                                <width>30</width> 
     5541                                <height>120</height> 
     5542                            </rect> 
     5543                        </property> 
     5544                        <property name="minValue"> 
     5545                            <number>0</number> 
     5546                        </property> 
     5547                        <property name="maxValue"> 
     5548                            <number>128</number> 
     5549                        </property> 
     5550                        <property name="lineStep"> 
     5551                            <number>1</number> 
     5552                        </property> 
     5553                        <property name="pageStep"> 
     5554                            <number>10</number> 
     5555                        </property> 
     5556                        <property name="value"> 
     5557                            <number>128</number> 
     5558                        </property> 
     5559                        <property name="orientation"> 
     5560                            <enum>Vertical</enum> 
     5561                        </property> 
     5562                        <property name="tickmarks"> 
     5563                            <enum>Both</enum> 
     5564                        </property> 
     5565                        <property name="tickInterval"> 
     5566                            <number>10</number> 
     5567                        </property> 
     5568                    </widget> 
     5569                    <widget class="QSlider"> 
     5570                        <property name="name"> 
     5571                            <cstring>sldFB1_7_2</cstring> 
     5572                        </property> 
     5573                        <property name="geometry"> 
     5574                            <rect> 
     5575                                <x>82</x> 
     5576                                <y>142</y> 
     5577                                <width>30</width> 
     5578                                <height>120</height> 
     5579                            </rect> 
     5580                        </property> 
     5581                        <property name="minValue"> 
     5582                            <number>0</number> 
     5583                        </property> 
     5584                        <property name="maxValue"> 
     5585                            <number>128</number> 
     5586                        </property> 
     5587                        <property name="lineStep"> 
     5588                            <number>1</number> 
     5589                        </property> 
     5590                        <property name="pageStep"> 
     5591                            <number>10</number> 
     5592                        </property> 
     5593                        <property name="value"> 
     5594                            <number>128</number> 
     5595                        </property> 
     5596                        <property name="orientation"> 
     5597                            <enum>Vertical</enum> 
     5598                        </property> 
     5599                        <property name="tickmarks"> 
     5600                            <enum>Both</enum> 
     5601                        </property> 
     5602                        <property name="tickInterval"> 
     5603                            <number>10</number> 
     5604                        </property> 
     5605                    </widget> 
     5606                    <widget class="QLabel"> 
     5607                        <property name="name"> 
     5608                            <cstring>textLabel1_2_6_2</cstring> 
     5609                        </property> 
     5610                        <property name="geometry"> 
     5611                            <rect> 
     5612                                <x>2</x> 
     5613                                <y>112</y> 
     5614                                <width>30</width> 
     5615                                <height>22</height> 
     5616                            </rect> 
     5617                        </property> 
     5618                        <property name="font"> 
     5619                            <font> 
     5620                                <pointsize>9</pointsize> 
     5621                            </font> 
     5622                        </property> 
     5623                        <property name="text"> 
     5624                            <string>Pan</string> 
     5625                        </property> 
     5626                        <property name="alignment"> 
     5627                            <set>AlignCenter</set> 
     5628                        </property> 
     5629                    </widget> 
     5630                    <widget class="QLabel"> 
     5631                        <property name="name"> 
     5632                            <cstring>textLabel1_2_7_2</cstring> 
     5633                        </property> 
     5634                        <property name="geometry"> 
     5635                            <rect> 
     5636                                <x>42</x> 
     5637                                <y>112</y> 
     5638                                <width>30</width> 
     5639                                <height>22</height> 
     5640                            </rect> 
     5641                        </property> 
     5642                        <property name="font"> 
     5643                            <font> 
     5644                                <pointsize>9</pointsize> 
     5645                            </font> 
     5646                        </property> 
     5647                        <property name="text"> 
     5648                            <string>Pan</string> 
     5649                        </property> 
     5650                        <property name="alignment"> 
     5651                            <set>AlignCenter</set> 
     5652                        </property> 
     5653                    </widget> 
     5654                    <widget class="QLabel"> 
     5655                        <property name="name"> 
     5656                            <cstring>textLabel1_2_8_2</cstring> 
     5657                        </property> 
     5658                        <property name="geometry"> 
     5659                            <rect> 
     5660                                <x>82</x> 
     5661                                <y>112</y> 
     5662                                <width>30</width> 
     5663                                <height>22</height> 
     5664                            </rect> 
     5665                        </property> 
     5666                        <property name="font"> 
     5667                            <font> 
     5668                                <pointsize>9</pointsize> 
     5669                            </font> 
     5670                        </property> 
     5671                        <property name="text"> 
     5672                            <string>Pan</string> 
     5673                        </property> 
     5674                        <property name="alignment"> 
     5675                            <set>AlignCenter</set> 
     5676                        </property> 
     5677                    </widget> 
     5678                    <widget class="QDial"> 
     5679                        <property name="name"> 
     5680                            <cstring>dial2_5_2</cstring> 
     5681                        </property> 
     5682                        <property name="geometry"> 
     5683                            <rect> 
     5684                                <x>2</x> 
     5685                                <y>82</y> 
     5686                                <width>30</width> 
     5687                                <height>30</height> 
     5688                            </rect> 
     5689                        </property> 
     5690                        <property name="minValue"> 
     5691                            <number>-64</number> 
     5692                        </property> 
     5693                        <property name="maxValue"> 
     5694                            <number>64</number> 
     5695                        </property> 
     5696                    </widget> 
     5697                    <widget class="QDial"> 
     5698                        <property name="name"> 
     5699                            <cstring>dial2_6_2</cstring> 
     5700                        </property> 
     5701                        <property name="geometry"> 
     5702                            <rect> 
     5703                                <x>42</x> 
     5704                                <y>82</y> 
     5705                                <width>30</width> 
     5706                                <height>30</height> 
     5707                            </rect> 
     5708                        </property> 
     5709                        <property name="minValue"> 
     5710                            <number>-64</number> 
     5711                        </property> 
     5712                        <property name="maxValue"> 
     5713                            <number>64</number> 
     5714                        </property> 
     5715                    </widget> 
     5716                    <widget class="QDial"> 
     5717                        <property name="name"> 
     5718                            <cstring>dial2_7_2</cstring> 
     5719                        </property> 
     5720                        <property name="geometry"> 
     5721                            <rect> 
     5722                                <x>82</x> 
     5723                                <y>82</y> 
     5724                                <width>30</width> 
     5725                                <height>30</height> 
     5726                            </rect> 
     5727                        </property> 
     5728                        <property name="minValue"> 
     5729                            <number>-64</number> 
     5730                        </property> 
     5731                        <property name="maxValue"> 
     5732                            <number>64</number> 
     5733                        </property> 
     5734                    </widget> 
     5735                    <widget class="QLabel"> 
     5736                        <property name="name"> 
     5737                            <cstring>textLabel1_2_2_6_2</cstring> 
     5738                        </property> 
     5739                        <property name="geometry"> 
     5740                            <rect> 
     5741                                <x>2</x> 
     5742                                <y>62</y> 
     5743                                <width>30</width> 
     5744                                <height>22</height> 
     5745                            </rect> 
     5746                        </property> 
     5747                        <property name="font"> 
     5748                            <font> 
     5749                                <pointsize>9</pointsize> 
     5750                            </font> 
     5751                        </property> 
     5752                        <property name="text"> 
     5753                            <string>Mute</string> 
     5754                        </property> 
     5755                        <property name="alignment"> 
     5756                            <set>AlignCenter</set> 
     5757                        </property> 
     5758                    </widget> 
     5759                    <widget class="QLabel"> 
     5760                        <property name="name"> 
     5761                            <cstring>textLabel1_2_2_7_2</cstring> 
     5762                        </property> 
     5763                        <property name="geometry"> 
     5764                            <rect> 
     5765                                <x>42</x> 
     5766                                <y>62</y> 
     5767                                <width>30</width> 
     5768                                <height>22</height> 
     5769                            </rect> 
     5770                        </property> 
     5771                        <property name="font"> 
     5772                            <font> 
     5773                                <pointsize>9</pointsize> 
     5774                            </font> 
     5775                        </property> 
     5776                        <property name="text"> 
     5777                            <string>Mute</string> 
     5778                        </property> 
     5779                        <property name="alignment"> 
     5780                            <set>AlignCenter</set> 
     5781                        </property> 
     5782                    </widget> 
     5783                    <widget class="QLabel"> 
     5784                        <property name="name"> 
     5785                            <cstring>textLabel1_2_2_8_2</cstring> 
     5786                        </property> 
     5787                        <property name="geometry"> 
     5788                            <rect> 
     5789                                <x>82</x> 
     5790                                <y>62</y> 
     5791                                <width>30</width> 
     5792                                <height>22</height> 
     5793                            </rect> 
     5794                        </property> 
     5795                        <property name="font"> 
     5796                            <font> 
     5797                                <pointsize>9</pointsize> 
     5798                            </font> 
     5799                        </property> 
     5800                        <property name="text"> 
     5801                            <string>Mute</string> 
     5802                        </property> 
     5803                        <property name="alignment"> 
     5804                            <set>AlignCenter</set> 
     5805                        </property> 
     5806                    </widget> 
     5807                    <widget class="QCheckBox"> 
     5808                        <property name="name"> 
     5809                            <cstring>checkBox1_6_2</cstring> 
     5810                        </property> 
     5811                        <property name="geometry"> 
     5812                            <rect> 
     5813                                <x>12</x> 
     5814                                <y>42</y> 
     5815                                <width>20</width> 
     5816                                <height>26</height> 
     5817                            </rect> 
     5818                        </property> 
     5819                        <property name="sizePolicy"> 
     5820                            <sizepolicy> 
     5821                                <hsizetype>1</hsizetype> 
     5822                                <vsizetype>0</vsizetype> 
     5823                                <horstretch>0</horstretch> 
     5824                                <verstretch>0</verstretch> 
     5825                            </sizepolicy> 
     5826                        </property> 
     5827                        <property name="font"> 
     5828                            <font> 
     5829                                <pointsize>9</pointsize> 
     5830                            </font> 
     5831                        </property> 
     5832                        <property name="text"> 
     5833                            <string></string> 
     5834                        </property> 
     5835                    </widget> 
     5836                    <widget class="QCheckBox"> 
     5837                        <property name="name"> 
     5838                            <cstring>checkBox1_7_2</cstring> 
     5839                        </property> 
     5840                        <property name="geometry"> 
     5841                            <rect> 
     5842                                <x>52</x> 
     5843                                <y>42</y> 
     5844                                <width>20</width> 
     5845                                <height>26</height> 
     5846                            </rect> 
     5847                        </property> 
     5848                        <property name="sizePolicy"> 
     5849                            <sizepolicy> 
     5850                                <hsizetype>1</hsizetype> 
     5851                                <vsizetype>0</vsizetype> 
     5852                                <horstretch>0</horstretch> 
     5853                                <verstretch>0</verstretch> 
     5854                            </sizepolicy> 
     5855                        </property> 
     5856                        <property name="font"> 
     5857                            <font> 
     5858                                <pointsize>9</pointsize> 
     5859                            </font> 
     5860                        </property> 
     5861                        <property name="text"> 
     5862                            <string></string> 
     5863                        </property> 
     5864                    </widget> 
     5865                    <widget class="QCheckBox"> 
     5866                        <property name="name"> 
     5867                            <cstring>checkBox1_8_2</cstring> 
     5868                        </property> 
     5869                        <property name="geometry"> 
     5870                            <rect> 
     5871                                <x>92</x> 
     5872                                <y>42</y> 
     5873                                <width>20</width> 
     5874                                <height>26</height> 
     5875                            </rect> 
     5876                        </property> 
     5877                        <property name="sizePolicy"> 
     5878                            <sizepolicy> 
     5879                                <hsizetype>1</hsizetype> 
     5880                                <vsizetype>0</vsizetype> 
     5881                                <horstretch>0</horstretch> 
     5882                                <verstretch>0</verstretch> 
     5883                            </sizepolicy> 
     5884                        </property> 
     5885                        <property name="font"> 
     5886                            <font> 
     5887                                <pointsize>9</pointsize> 
     5888                            </font> 
     5889                        </property> 
     5890                        <property name="text"> 
     5891                            <string></string> 
     5892                        </property> 
     5893                    </widget> 
     5894                    <widget class="QCheckBox"> 
     5895                        <property name="name"> 
     5896                            <cstring>checkBox1_13_2</cstring> 
     5897                        </property> 
     5898                        <property name="geometry"> 
     5899                            <rect> 
     5900                                <x>12</x> 
     5901                                <y>2</y> 
     5902                                <width>20</width> 
     5903                                <height>26</height> 
     5904                            </rect> 
     5905                        </property> 
     5906                        <property name="sizePolicy"> 
     5907                            <sizepolicy> 
     5908                                <hsizetype>1</hsizetype> 
     5909                                <vsizetype>0</vsizetype> 
     5910                                <horstretch>0</horstretch> 
     5911                                <verstretch>0</verstretch> 
     5912                            </sizepolicy> 
     5913                        </property> 
     5914                        <property name="font"> 
     5915                            <font> 
     5916                                <pointsize>9</pointsize> 
     5917                            </font> 
     5918                        </property> 
     5919                        <property name="text"> 
     5920                            <string></string> 
     5921                        </property> 
     5922                    </widget> 
     5923                    <widget class="QCheckBox"> 
     5924                        <property name="name"> 
     5925                            <cstring>checkBox1_14_2</cstring> 
     5926                        </property> 
     5927                        <property name="geometry"> 
     5928                            <rect> 
     5929                                <x>52</x> 
     5930                                <y>2</y> 
     5931                                <width>20</width> 
     5932                                <height>26</height> 
     5933                            </rect> 
     5934                        </property> 
     5935                        <property name="sizePolicy"> 
     5936                            <sizepolicy> 
     5937                                <hsizetype>1</hsizetype> 
     5938                                <vsizetype>0</vsizetype> 
     5939                                <horstretch>0</horstretch> 
     5940                                <verstretch>0</verstretch> 
     5941                            </sizepolicy> 
     5942                        </property> 
     5943                        <property name="font"> 
     5944                            <font> 
     5945                                <pointsize>9</pointsize> 
     5946                            </font> 
     5947                        </property> 
     5948                        <property name="text"> 
     5949                            <string></string> 
     5950                        </property> 
     5951                    </widget> 
     5952                    <widget class="QCheckBox"> 
     5953                        <property name="name"> 
     5954                            <cstring>checkBox1_15_2</cstring> 
     5955                        </property> 
     5956                        <property name="geometry"> 
     5957                            <rect> 
     5958                                <x>92</x> 
     5959                                <y>2</y> 
     5960                                <width>20</width> 
     5961                                <height>26</height> 
     5962                            </rect> 
     5963                        </property> 
     5964                        <property name="sizePolicy"> 
     5965                            <sizepolicy> 
     5966                                <hsizetype>1</hsizetype> 
     5967                                <vsizetype>0</vsizetype> 
     5968                                <horstretch>0</horstretch> 
     5969                                <verstretch>0</verstretch> 
     5970                            </sizepolicy> 
     5971                        </property> 
     5972                        <property name="font"> 
     5973                            <font> 
     5974                                <pointsize>9</pointsize> 
     5975                            </font> 
     5976                        </property> 
     5977                        <property name="text"> 
     5978                            <string></string> 
     5979                        </property> 
     5980                    </widget> 
     5981                    <widget class="QLabel"> 
     5982                        <property name="name"> 
     5983                            <cstring>textLabel1_2_2_2_5_2</cstring> 
     5984                        </property> 
     5985                        <property name="geometry"> 
     5986                            <rect> 
     5987                                <x>2</x> 
     5988                                <y>22</y> 
     5989                                <width>30</width> 
     5990                                <height>22</height> 
     5991                            </rect> 
     5992                        </property> 
     5993                        <property name="font"> 
     5994                            <font> 
     5995                                <pointsize>9</pointsize> 
     5996                            </font> 
     5997                        </property> 
     5998                        <property name="text"> 
     5999                            <string>Solo</string> 
     6000                        </property> 
     6001                        <property name="alignment"> 
     6002                            <set>AlignCenter</set> 
     6003                        </property> 
     6004                    </widget> 
     6005                    <widget class="QLabel"> 
     6006                        <property name="name"> 
     6007                            <cstring>textLabel1_2_2_2_6_2</cstring> 
     6008                        </property> 
     6009                        <property name="geometry"> 
     6010                            <rect> 
     6011                                <x>42</x> 
     6012                                <y>22</y> 
     6013                                <width>30</width> 
     6014                                <height>22</height> 
     6015                            </rect> 
     6016                        </property> 
     6017                        <property name="font"> 
     6018                            <font> 
     6019                                <pointsize>9</pointsize> 
     6020                            </font> 
     6021                        </property> 
     6022                        <property name="text"> 
     6023                            <string>Solo</string> 
     6024                        </property> 
     6025                        <property name="alignment"> 
     6026                            <set>AlignCenter</set> 
     6027                        </property> 
     6028                    </widget> 
     6029                    <widget class="QLabel"> 
     6030                        <property name="name"> 
     6031                            <cstring>textLabel1_2_2_2_7_2</cstring> 
     6032                        </property> 
     6033                        <property name="geometry"> 
     6034                            <rect> 
     6035                                <x>82</x> 
     6036                                <y>22</y> 
     6037                                <width>30</width> 
     6038                                <height>22</height> 
     6039                            </rect> 
     6040                        </property> 
     6041                        <property name="font"> 
     6042                            <font> 
     6043                                <pointsize>9</pointsize> 
     6044                            </font> 
     6045                        </property> 
     6046                        <property name="text"> 
     6047                            <string>Solo</string> 
     6048                        </property> 
     6049                        <property name="alignment"> 
     6050                            <set>AlignCenter</set> 
     6051                        </property> 
     6052                    </widget> 
     6053                    <widget class="QLabel"> 
     6054                        <property name="name"> 
     6055                            <cstring>textLabel1_2_2_14_5_3</cstring> 
     6056                        </property> 
     6057                        <property name="geometry"> 
     6058                            <rect> 
     6059                                <x>20</x> 
     6060                                <y>290</y> 
     6061                                <width>30</width> 
     6062                                <height>22</height> 
     6063                            </rect> 
     6064                        </property> 
     6065                        <property name="font"> 
     6066                            <font> 
     6067                                <pointsize>9</pointsize> 
     6068                            </font> 
     6069                        </property> 
     6070                        <property name="text"> 
     6071                            <string>Pair</string> 
     6072                        </property> 
     6073                        <property name="alignment"> 
     6074                            <set>AlignCenter</set> 
     6075                        </property> 
     6076                    </widget> 
     6077                    <widget class="QLabel"> 
     6078                        <property name="name"> 
     6079                            <cstring>textLabel1_2_2_14_5_4</cstring> 
     6080                        </property> 
     6081                        <property name="geometry"> 
     6082                            <rect> 
     6083                                <x>100</x> 
     6084                                <y>290</y> 
     6085                                <width>30</width> 
     6086                                <height>22</height> 
     6087                            </rect> 
     6088                        </property> 
     6089                        <property name="font"> 
     6090                            <font> 
     6091                                <pointsize>9</pointsize> 
     6092                            </font> 
     6093                        </property> 
     6094                        <property name="text"> 
     6095                            <string>Pair</string> 
     6096                        </property> 
     6097                        <property name="alignment"> 
     6098                            <set>AlignCenter</set> 
     6099                        </property> 
     6100                    </widget> 
     6101                    <widget class="QCheckBox"> 
     6102                        <property name="name"> 
     6103                            <cstring>mix1adat5_6_pair</cstring> 
     6104                        </property> 
     6105                        <property name="geometry"> 
     6106                            <rect> 
     6107                                <x>30</x> 
     6108                                <y>270</y> 
     6109                                <width>20</width> 
     6110                                <height>26</height> 
     6111                            </rect> 
     6112                        </property> 
     6113                        <property name="sizePolicy"> 
     6114                            <sizepolicy> 
     6115                                <hsizetype>1</hsizetype> 
     6116                                <vsizetype>0</vsizetype> 
     6117                                <horstretch>0</horstretch> 
     6118                                <verstretch>0</verstretch> 
     6119                            </sizepolicy> 
     6120                        </property> 
     6121                        <property name="font"> 
     6122                            <font> 
     6123                                <pointsize>9</pointsize> 
     6124                            </font> 
     6125                        </property> 
     6126                        <property name="text"> 
     6127                            <string></string> 
     6128                        </property> 
     6129                    </widget> 
     6130                    <widget class="QCheckBox"> 
     6131                        <property name="name"> 
     6132                            <cstring>mix1adat7_8_pair</cstring> 
     6133                        </property> 
     6134                        <property name="geometry"> 
     6135                            <rect> 
     6136                                <x>110</x> 
     6137                                <y>270</y> 
     6138                                <width>20</width> 
     6139                                <height>26</height> 
     6140                            </rect> 
     6141                        </property> 
     6142                        <property name="sizePolicy"> 
     6143                            <sizepolicy> 
     6144                                <hsizetype>1</hsizetype> 
     6145                                <vsizetype>0</vsizetype> 
     6146                                <horstretch>0</horstretch> 
     6147                                <verstretch>0</verstretch> 
     6148                            </sizepolicy> 
     6149                        </property> 
     6150                        <property name="font"> 
     6151                            <font> 
     6152                                <pointsize>9</pointsize> 
     6153                            </font> 
     6154                        </property> 
     6155                        <property name="text"> 
     6156                            <string></string> 
     6157                        </property> 
     6158                    </widget> 
     6159                </widget> 
     6160                <widget class="QLabel"> 
     6161                    <property name="name"> 
     6162                        <cstring>textLabel1_2_2_14_5</cstring> 
     6163                    </property> 
     6164                    <property name="geometry"> 
     6165                        <rect> 
     6166                            <x>30</x> 
     6167                            <y>310</y> 
     6168                            <width>30</width> 
     6169                            <height>22</height> 
     6170                        </rect> 
     6171                    </property> 
     6172                    <property name="font"> 
     6173                        <font> 
     6174                            <pointsize>9</pointsize> 
     6175                        </font> 
     6176                    </property> 
     6177                    <property name="text"> 
     6178                        <string>Pair</string> 
     6179                    </property> 
     6180                    <property name="alignment"> 
     6181                        <set>AlignCenter</set> 
     6182                    </property> 
     6183                </widget> 
     6184                <widget class="QLabel"> 
     6185                    <property name="name"> 
     6186                        <cstring>textLabel1_2_2_14_5_2</cstring> 
     6187                    </property> 
     6188                    <property name="geometry"> 
     6189                        <rect> 
     6190                            <x>110</x> 
     6191                            <y>310</y> 
     6192                            <width>30</width> 
     6193                            <height>22</height> 
     6194                        </rect> 
     6195                    </property> 
     6196                    <property name="font"> 
     6197                        <font> 
     6198                            <pointsize>9</pointsize> 
     6199                        </font> 
     6200                    </property> 
     6201                    <property name="text"> 
     6202                        <string>Pair</string> 
     6203                    </property> 
     6204                    <property name="alignment"> 
     6205                        <set>AlignCenter</set> 
     6206                    </property> 
     6207                </widget> 
     6208                <widget class="QCheckBox"> 
     6209                    <property name="name"> 
     6210                        <cstring>mix1adat1_2_pair</cstring> 
     6211                    </property> 
     6212                    <property name="geometry"> 
     6213                        <rect> 
     6214                            <x>40</x> 
     6215                            <y>290</y> 
     6216                            <width>20</width> 
     6217                            <height>26</height> 
     6218                        </rect> 
     6219                    </property> 
     6220                    <property name="sizePolicy"> 
     6221                        <sizepolicy> 
     6222                            <hsizetype>1</hsizetype> 
     6223                            <vsizetype>0</vsizetype> 
     6224                            <horstretch>0</horstretch> 
     6225                            <verstretch>0</verstretch> 
     6226                        </sizepolicy> 
     6227                    </property> 
     6228                    <property name="font"> 
     6229                        <font> 
     6230                            <pointsize>9</pointsize> 
     6231                        </font> 
     6232                    </property> 
     6233                    <property name="text"> 
     6234                        <string></string> 
     6235                    </property> 
     6236                </widget> 
     6237                <widget class="QCheckBox"> 
     6238                    <property name="name"> 
     6239                        <cstring>mix1adat3_4_pair</cstring> 
     6240                    </property> 
     6241                    <property name="geometry"> 
     6242                        <rect> 
     6243                            <x>120</x> 
     6244                            <y>290</y> 
     6245                            <width>20</width> 
     6246                            <height>26</height> 
     6247                        </rect> 
     6248                    </property> 
     6249                    <property name="sizePolicy"> 
     6250                        <sizepolicy> 
     6251                            <hsizetype>1</hsizetype> 
     6252                            <vsizetype>0</vsizetype> 
     6253                            <horstretch>0</horstretch> 
     6254                            <verstretch>0</verstretch> 
     6255                        </sizepolicy> 
     6256                    </property> 
     6257                    <property name="font"> 
     6258                        <font> 
     6259                            <pointsize>9</pointsize> 
     6260                        </font> 
     6261                    </property> 
     6262                    <property name="text"> 
     6263                        <string></string> 
     6264                    </property> 
     6265                </widget> 
     6266            </widget> 
     6267        </widget> 
     6268        <widget class="QWidget"> 
     6269            <property name="name"> 
     6270                <cstring>tab</cstring> 
     6271            </property> 
     6272            <attribute name="title"> 
     6273                <string>Mix 2</string> 
     6274            </attribute> 
     6275        </widget> 
     6276        <widget class="QWidget"> 
     6277            <property name="name"> 
     6278                <cstring>TabPage</cstring> 
     6279            </property> 
     6280            <attribute name="title"> 
     6281                <string>Mix 3</string> 
     6282            </attribute> 
     6283        </widget> 
     6284        <widget class="QWidget"> 
     6285            <property name="name"> 
     6286                <cstring>TabPage</cstring> 
     6287            </property> 
     6288            <attribute name="title"> 
     6289                <string>Mix 4</string> 
     6290            </attribute> 
     6291        </widget> 
     6292    </widget> 
    62736293</widget> 
    62746294<includes>