diff --git a/CMakeLists.txt b/CMakeLists.txt
index 08120e5296aae810dbd07e046b748748cf240024..b47bbf5c05239938a3489f99d1cb7b20f619359f 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -112,16 +112,16 @@ SET(ringclient_CONTROLLERS
    src/RingWindowController.h
    src/PreferencesWC.mm
    src/PreferencesWC.h
-   src/AccGeneralVC.mm
-   src/AccGeneralVC.h
-   src/AccMediaVC.mm
-   src/AccMediaVC.h
-   src/AccRingVC.mm
-   src/AccRingVC.h
+   src/AccSipGeneralVC.mm
+   src/AccSipGeneralVC.h
    src/AccAdvancedVC.mm
    src/AccAdvancedVC.h
-   src/AccSecurityVC.mm
-   src/AccSecurityVC.h
+   src/AccRingGeneralVC.mm
+   src/AccRingGeneralVC.h
+   src/AccAdvancedSipVC.mm
+   src/AccAdvancedSipVC.h
+   src/AccAdvancedRingVC.mm
+   src/AccAdvancedRingVC.h
    src/CertificateWC.mm
    src/CertificateWC.h
    src/BackupAccountWC.mm
@@ -130,8 +130,6 @@ SET(ringclient_CONTROLLERS
    src/RestoreAccountWC.h
    src/AudioPrefsVC.mm
    src/AudioPrefsVC.h
-   src/AccountsVC.mm
-   src/AccountsVC.h
    src/VideoPrefsVC.mm
    src/VideoPrefsVC.h
    src/GeneralPrefsVC.h
@@ -148,8 +146,6 @@ SET(ringclient_CONTROLLERS
    src/LoadingWCDelegate.h
    src/AbstractLoadingWC.h
    src/AbstractLoadingWC.mm
-   src/AccDevicesVC.mm
-   src/AccDevicesVC.h
    src/ExportPasswordWC.mm
    src/ExportPasswordWC.h
    src/MigrateRingAccountsWC.mm
@@ -179,6 +175,8 @@ SET(ringclient_CONTROLLERS
    src/LrcModelsProtocol.h
    src/AddSIPAccountVC.mm
    src/AddSIPAccountVC.h
+   src/AccountSettingsVC.mm
+   src/AccountSettingsVC.h
 )
 
 SET(ringclient_BACKENDS
@@ -222,6 +220,8 @@ SET(ringclient_VIEWS
    src/views/SendMessagePanel.mm
    src/views/HoverButton.h
    src/views/HoverButton.mm
+   src/views/CenteredClipView.h
+   src/views/CenteredClipView.mm
 )
 
 SET(ringclient_OTHERS
@@ -247,12 +247,11 @@ SET(ringclient_XIBS
    RingWindow
    CurrentCall
    GeneralPrefs
-   Accounts
-   AccGeneral
+   AccSipGeneral
    AccMedia
-   AccRing
-   AccAdvanced
-   AccSecurity
+   AccRingGeneral
+   AccAdvancedSip
+   AccAdvancedRing
    AudioPrefs
    VideoPrefs
    PreferencesWindow
@@ -265,7 +264,6 @@ SET(ringclient_XIBS
    PersonLinker
    Broker
    Conversation
-   AccDevices
    RingWizardLinkAccount
    RingWizardNewAccount
    RingWizardChoose
@@ -279,6 +277,7 @@ SET(ringclient_XIBS
    PasswordChange
    MessageCells
    AddSIPAccountVC
+   AccountSettings
 )
 
 # Icons
diff --git a/src/AccDevicesVC.h b/src/AccAdvancedRingVC.h
similarity index 79%
rename from src/AccDevicesVC.h
rename to src/AccAdvancedRingVC.h
index 3ae4c2d3c0404c72e2ef87e152a59ef8f53b6826..b05a4893291131db0653569bd1c7e13bbd7f08a4 100644
--- a/src/AccDevicesVC.h
+++ b/src/AccAdvancedRingVC.h
@@ -1,6 +1,7 @@
 /*
- *  Copyright (C) 2016 Savoir-faire Linux Inc.
+ *  Copyright (C) 2015-2018 Savoir-faire Linux Inc.
  *  Author: Alexandre Lision <alexandre.lision@savoirfairelinux.com>
+ *  Author: Kateryna Kostiuk <kateryna.kostiuk@savoirfairelinux.com>
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -18,9 +19,8 @@
  */
 
 #import <Cocoa/Cocoa.h>
-#import <account.h>
-@interface AccDevicesVC : NSViewController
+#import "AccAdvancedVC.h"
 
-@property Account* account;
+@interface AccAdvancedRingVC : AccAdvancedVC <NSTextFieldDelegate>
 
 @end
diff --git a/src/AccAdvancedRingVC.mm b/src/AccAdvancedRingVC.mm
new file mode 100644
index 0000000000000000000000000000000000000000..703e109fd5ab67f170848689b5944cdb2e9841d7
--- /dev/null
+++ b/src/AccAdvancedRingVC.mm
@@ -0,0 +1,122 @@
+/*
+ *  Copyright (C) 2015-2018 Savoir-faire Linux Inc.
+ *  Author: Alexandre Lision <alexandre.lision@savoirfairelinux.com>
+ *  Author: Kateryna Kostiuk <kateryna.kostiuk@savoirfairelinux.com>
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; either version 3 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA.
+ */
+#import "AccAdvancedRingVC.h"
+
+//LRC
+#import <api/lrc.h>
+#import <api/newaccountmodel.h>
+#import <api/newdevicemodel.h>
+
+@interface AccAdvancedRingVC () {
+    __unsafe_unretained IBOutlet NSButton *allowIncoming;
+    __unsafe_unretained IBOutlet NSTextField *nameServerField;
+    __unsafe_unretained IBOutlet NSTextField *proxyServerField;
+    __unsafe_unretained IBOutlet NSTextField *bootstrapServerField;
+    __unsafe_unretained IBOutlet NSButton *enableProxyButton;
+}
+@end
+
+@implementation AccAdvancedRingVC
+
+//Tags for views
+const NSInteger  NAME_SERVER_TAG         = 100;
+const NSInteger  PROXY_SERVER_TAG        = 200;
+const NSInteger  BOOTSTRAP_SERVER_TAG    = 300;
+
+-(void) updateView {
+    lrc::api::account::ConfProperties_t accountProperties = self.accountModel->getAccountConfig(self.selectedAccountID);
+    [allowIncoming setState: accountProperties.allowIncoming];
+    [nameServerField setStringValue: @(accountProperties.RingNS.uri.c_str())];
+    [proxyServerField setStringValue:@(accountProperties.proxyServer.c_str())];
+    [bootstrapServerField setStringValue:@(accountProperties.hostname.c_str())];
+    [enableProxyButton setState: accountProperties.proxyEnabled];
+    [proxyServerField setEditable:accountProperties.proxyEnabled];
+}
+
+-(void) viewDidLoad {
+    [super viewDidLoad];
+    [self updateView];
+}
+
+- (void) setSelectedAccount:(std::string) account {
+    [super setSelectedAccount: account];
+    [self updateView];
+}
+
+#pragma mark - Actions
+
+- (IBAction)allowCallFromUnknownPeer:(id)sender {
+    lrc::api::account::ConfProperties_t accountProperties = self.accountModel->getAccountConfig(self.selectedAccountID);
+    if(accountProperties.allowIncoming != [sender state]) {
+        accountProperties.allowIncoming = [sender state];
+        self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+    }
+}
+
+- (IBAction)enableProxy:(id)sender {
+    lrc::api::account::ConfProperties_t accountProperties = self.accountModel->getAccountConfig(self.selectedAccountID);
+    if(accountProperties.proxyEnabled != [sender state]) {
+        accountProperties.proxyEnabled = [sender state];
+        self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+    }
+    [proxyServerField setEditable:[sender state]];
+}
+
+- (IBAction) valueDidChange: (id) sender
+{
+    lrc::api::account::ConfProperties_t accountProperties = self.accountModel->getAccountConfig(self.selectedAccountID);
+
+    switch ([sender tag]) {
+        case NAME_SERVER_TAG:
+            if(accountProperties.RingNS.uri != [[sender stringValue] UTF8String]) {
+                accountProperties.RingNS.uri = [[sender stringValue] UTF8String];
+                self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+            }
+            return;
+        case PROXY_SERVER_TAG:
+            if(accountProperties.proxyServer != [[sender stringValue] UTF8String]) {
+                accountProperties.proxyServer = [[sender stringValue] UTF8String];
+                self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+            }
+            return;
+        case BOOTSTRAP_SERVER_TAG:
+            if(accountProperties.hostname != [[sender stringValue] UTF8String]) {
+                accountProperties.hostname = [[sender stringValue] UTF8String];
+                self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+            }
+            return;
+        default:
+            break;
+    }
+
+    [super valueDidChange:sender];
+}
+
+#pragma mark - NSTextFieldDelegate methods
+
+-(void)controlTextDidChange:(NSNotification *)notif
+{
+    NSTextField *textField = [notif object];
+    NSRange test = [[textField currentEditor] selectedRange];
+
+    [self valueDidChange:textField];
+}
+
+@end
diff --git a/src/AccGeneralVC.h b/src/AccAdvancedSipVC.h
similarity index 79%
rename from src/AccGeneralVC.h
rename to src/AccAdvancedSipVC.h
index 2a7ec82ea826ab5d6e4acc6bc32a697492bbfe19..3982405948afa9eb2a62a0837062c969f2eaeadb 100644
--- a/src/AccGeneralVC.h
+++ b/src/AccAdvancedSipVC.h
@@ -1,6 +1,7 @@
 /*
- *  Copyright (C) 2015-2016 Savoir-faire Linux Inc.
+ *  Copyright (C) 2015-2018 Savoir-faire Linux Inc.
  *  Author: Alexandre Lision <alexandre.lision@savoirfairelinux.com>
+ *  Author: Kateryna Kostiuk <kateryna.kostiuk@savoirfairelinux.com>
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -19,10 +20,8 @@
 
 #import <Cocoa/Cocoa.h>
 
-#import <account.h>
+#import "AccAdvancedVC.h"
 
-@interface AccGeneralVC : NSViewController <NSTextFieldDelegate> {
-
-}
+@interface AccAdvancedSipVC : AccAdvancedVC <NSTextFieldDelegate>
 
 @end
diff --git a/src/AccAdvancedSipVC.mm b/src/AccAdvancedSipVC.mm
new file mode 100644
index 0000000000000000000000000000000000000000..8f11e9734df33233109169ebe41598c5d8056cc3
--- /dev/null
+++ b/src/AccAdvancedSipVC.mm
@@ -0,0 +1,363 @@
+/*
+ *  Copyright (C) 2015-2018 Savoir-faire Linux Inc.
+ *  Author: Alexandre Lision <alexandre.lision@savoirfairelinux.com>
+ *  Author: Kateryna Kostiuk <kateryna.kostiuk@savoirfairelinux.com>
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; either version 3 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA.
+ */
+#define OUTGOING_TLS_SERVER_TAG 0
+#define NEGOTIATION_TIMOUT_TAG 1
+#define REGISTRATION_TAG 2
+#define LOCALPORT_TAG 3
+#define CUSTOM_PORT_TAG 4
+#define CUSTOM_ADDRESS_TAG 5
+#define MINAUDIO_TAG 6
+#define MAXAUDIO_TAG 7
+#define MINVIDEO_TAG 8
+#define MAXVIDEO_TAG 9
+
+#import "AccAdvancedSipVC.h"
+
+//LRC
+#import <api/lrc.h>
+#import <api/newaccountmodel.h>
+
+@interface AccAdvancedSipVC () {
+    __unsafe_unretained IBOutlet NSButton *encryptMediaButton;
+    __unsafe_unretained IBOutlet NSButton *enableSDESButton;
+    __unsafe_unretained IBOutlet NSButton *fallbackEncryptionFailureButton;
+    __unsafe_unretained IBOutlet NSButton *encryptNegotiationButton;
+    __unsafe_unretained IBOutlet NSButton *checkIncomingCertificatesButton;
+    __unsafe_unretained IBOutlet NSButton *checkAnswerCertificatesButton;
+    __unsafe_unretained IBOutlet NSButton *requereIncomingCertificateButton;
+    __unsafe_unretained IBOutlet NSPopUpButton *tlsProtocolsList;
+    __unsafe_unretained IBOutlet NSTextField *outgoingTlsServerNameField;
+    __unsafe_unretained IBOutlet NSStepper *negotiationTimeoutStepper;
+    __unsafe_unretained IBOutlet NSTextField *negotiationTimeoutField;
+    __unsafe_unretained IBOutlet NSStepper *registrationTimeoutStepper;
+    __unsafe_unretained IBOutlet NSTextField *registrationTimeoutField;
+    __unsafe_unretained IBOutlet NSStepper *networkStepper;
+    __unsafe_unretained IBOutlet NSTextField *networkField;
+    __unsafe_unretained IBOutlet NSTextField *customAddressField;
+    __unsafe_unretained IBOutlet NSButton *useCustomAddressButton;
+    __unsafe_unretained IBOutlet NSStepper *customPortStepper;
+    __unsafe_unretained IBOutlet NSTextField *customPortField;
+    __unsafe_unretained IBOutlet NSStepper *minAudioPortStepper;
+    __unsafe_unretained IBOutlet NSStepper *maxAudioPortStepper;
+    __unsafe_unretained IBOutlet NSStepper *minVideoPortStepper;
+    __unsafe_unretained IBOutlet NSStepper *maxVideoPortStepper;
+    __unsafe_unretained IBOutlet NSTextField *minAudioRTPRange;
+    __unsafe_unretained IBOutlet NSTextField *maxAudioRTPRange;
+    __unsafe_unretained IBOutlet NSTextField *minVideoRTPRange;
+    __unsafe_unretained IBOutlet NSTextField *maxVideoRTPRange;
+}
+
+@end
+
+@implementation AccAdvancedSipVC
+
+NSString *TLS_PROTOCOL_DEFAULT = @"Default";
+NSString *TLS_PROTOCOL_TLSv1 = @"TLSv1";
+NSString *TLS_PROTOCOL_TLSv1_1 = @"TLSv1_1";
+NSString *TLS_PROTOCOL_TLSv1_2 = @"TLSv1_2";
+
+@synthesize privateKeyPaswordField;
+@synthesize selectCACertificateButton, selectUserCertificateButton, selectPrivateKeyButton;
+
+- (void)awakeFromNib
+{
+    [super awakeFromNib];
+    [negotiationTimeoutStepper setTag:NEGOTIATION_TIMOUT_TAG];
+    [negotiationTimeoutField setTag:NEGOTIATION_TIMOUT_TAG];
+    [registrationTimeoutStepper setTag:REGISTRATION_TAG];
+    [registrationTimeoutField setTag:REGISTRATION_TAG];
+    [networkStepper setTag:LOCALPORT_TAG];
+    [networkField setTag:LOCALPORT_TAG];
+    [customAddressField setTag: CUSTOM_ADDRESS_TAG];
+    [outgoingTlsServerNameField setTag: OUTGOING_TLS_SERVER_TAG];
+    [customPortStepper setTag: CUSTOM_PORT_TAG];
+    [customPortField setTag: CUSTOM_PORT_TAG];
+    [minAudioPortStepper setTag:MINAUDIO_TAG];
+    [maxAudioPortStepper setTag:MAXAUDIO_TAG];
+    [minVideoPortStepper setTag:MINVIDEO_TAG];
+    [maxVideoPortStepper setTag:MAXVIDEO_TAG];
+    [minAudioRTPRange setTag:MINAUDIO_TAG];
+    [maxAudioRTPRange setTag:MAXAUDIO_TAG];
+    [minVideoRTPRange setTag:MINVIDEO_TAG];
+    [maxVideoRTPRange setTag:MAXVIDEO_TAG];
+}
+
+-(void)viewDidLoad {
+    [super viewDidLoad];
+    NSMenu *tlsMethods = [[NSMenu alloc] initWithTitle:@""];
+    [tlsMethods addItem: [[NSMenuItem alloc] initWithTitle: TLS_PROTOCOL_DEFAULT action:nil keyEquivalent:@""]];
+    [tlsMethods addItem: [[NSMenuItem alloc] initWithTitle: TLS_PROTOCOL_TLSv1 action:nil keyEquivalent:@""]];
+    [tlsMethods addItem: [[NSMenuItem alloc] initWithTitle: TLS_PROTOCOL_TLSv1_1 action:nil keyEquivalent:@""]];
+    [tlsMethods addItem: [[NSMenuItem alloc] initWithTitle: TLS_PROTOCOL_TLSv1_2 action:nil keyEquivalent:@""]];
+    tlsProtocolsList.menu = tlsMethods;
+    [self updateView];
+}
+
+- (void) setSelectedAccount:(std::string) account {
+    [super setSelectedAccount: account];
+    [self updateView];
+}
+
+- (void) updateView {
+    auto accountProperties = self.accountModel->getAccountConfig(self.selectedAccountID);
+    [encryptMediaButton setState: accountProperties.SRTP.enable];
+    [enableSDESButton setState: accountProperties.SRTP.keyExchange == lrc::api::account::KeyExchangeProtocol::SDES ? NSControlStateValueOn : NSControlStateValueOff];
+    [fallbackEncryptionFailureButton setState: accountProperties.SRTP.rtpFallback];
+    [encryptNegotiationButton setState: accountProperties.TLS.enable];
+    [selectCACertificateButton setEnabled: accountProperties.TLS.enable];
+    [selectUserCertificateButton setEnabled: accountProperties.TLS.enable];
+    [selectPrivateKeyButton setEnabled: accountProperties.TLS.enable];
+    [privateKeyPaswordField setEnabled: accountProperties.TLS.enable];
+    [checkIncomingCertificatesButton setState: accountProperties.TLS.verifyServer];
+    [checkAnswerCertificatesButton setState: accountProperties.TLS.verifyClient];
+    [requereIncomingCertificateButton setState: accountProperties.TLS.requireClientCertificate];
+    switch (accountProperties.TLS.method) {
+        case lrc::api::account::TlsMethod::DEFAULT:
+            [tlsProtocolsList selectItemWithTitle:TLS_PROTOCOL_DEFAULT];
+            break;
+        case lrc::api::account::TlsMethod::TLSv1:
+            [tlsProtocolsList selectItemWithTitle:TLS_PROTOCOL_TLSv1];
+            break;
+        case lrc::api::account::TlsMethod::TLSv1_1:
+            [tlsProtocolsList selectItemWithTitle:TLS_PROTOCOL_TLSv1_1];
+            break;
+        case lrc::api::account::TlsMethod::TLSv1_2:
+            [tlsProtocolsList selectItemWithTitle:TLS_PROTOCOL_TLSv1_2];
+            break;
+
+        default:
+            break;
+    }
+    [negotiationTimeoutStepper setIntegerValue: accountProperties.TLS.negotiationTimeoutSec];
+    [negotiationTimeoutField setIntegerValue: accountProperties.TLS.negotiationTimeoutSec];
+    [registrationTimeoutStepper setIntegerValue: accountProperties.Registration.expire];
+    [registrationTimeoutField setIntegerValue: accountProperties.Registration.expire];
+    [networkStepper setIntegerValue: accountProperties.localPort];
+    [networkField setIntegerValue: accountProperties.localPort];
+    [customAddressField setEnabled:!accountProperties.publishedSameAsLocal];
+    [customPortField setEnabled:!accountProperties.publishedSameAsLocal];
+    [customPortStepper setEnabled:!accountProperties.publishedSameAsLocal];
+    [useCustomAddressButton setState:!accountProperties.publishedSameAsLocal];
+    [customPortStepper setIntegerValue: accountProperties.publishedPort];
+    [customPortField setIntegerValue: accountProperties.publishedPort];
+    [customAddressField setStringValue: @(accountProperties.publishedAddress.c_str())];
+    [minAudioPortStepper setIntegerValue: accountProperties.Audio.audioPortMin];
+    [minAudioRTPRange setIntegerValue: accountProperties.Audio.audioPortMin];
+    [maxAudioPortStepper setIntegerValue: accountProperties.Audio.audioPortMax];
+    [maxAudioRTPRange setIntegerValue: accountProperties.Audio.audioPortMax];
+    [minVideoPortStepper setIntegerValue: accountProperties.Video.videoPortMin];
+    [minVideoRTPRange setIntegerValue: accountProperties.Video.videoPortMin];
+    [maxVideoPortStepper setIntegerValue: accountProperties.Video.videoPortMin];
+    [maxVideoRTPRange setIntegerValue: accountProperties.Video.videoPortMin];
+}
+
+#pragma mark - Actions
+
+- (IBAction)toggleEnableSDES:(id)sender {
+    auto accountProperties = self.accountModel->getAccountConfig(self.selectedAccountID);
+    lrc::api::account::KeyExchangeProtocol newState = [sender state] == NSControlStateValueOn ? lrc::api::account::KeyExchangeProtocol::SDES : lrc::api::account::KeyExchangeProtocol::NONE;
+    if(accountProperties.SRTP.keyExchange != newState) {
+        accountProperties.SRTP.keyExchange = newState;
+        self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+    }
+}
+- (IBAction)toggleEncryptMedia:(id)sender {
+    auto accountProperties = self.accountModel->getAccountConfig(self.selectedAccountID);
+    if(accountProperties.SRTP.enable!= [sender state]) {
+        accountProperties.SRTP.enable = [sender state];
+        self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+    }
+}
+- (IBAction)toggleFallbackEncryptionFailure:(id)sender {
+    auto accountProperties = self.accountModel->getAccountConfig(self.selectedAccountID);
+    if(accountProperties.SRTP.rtpFallback != [sender state]) {
+        accountProperties.SRTP.rtpFallback = [sender state];
+        self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+    }
+}
+- (IBAction)toggleEncryptNegotiation:(id)sender {
+    auto accountProperties = self.accountModel->getAccountConfig(self.selectedAccountID);
+    if(accountProperties.TLS.enable != [sender state]) {
+        accountProperties.TLS.enable = [sender state];
+        self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+        [selectCACertificateButton setEnabled: [sender state]];
+        [selectUserCertificateButton setEnabled: [sender state]];
+        [selectPrivateKeyButton setEnabled: [sender state]];
+        [privateKeyPaswordField setEnabled: [sender state]];
+    }
+}
+- (IBAction)toggleVerifyServerCertificate:(id)sender {
+    auto accountProperties = self.accountModel->getAccountConfig(self.selectedAccountID);
+    if(accountProperties.TLS.verifyServer != [sender state]) {
+        accountProperties.TLS.verifyServer = [sender state];
+        self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+    }
+}
+- (IBAction)toggleVerifyClientCertificate:(id)sender {
+    lrc::api::account::ConfProperties_t accountProperties = self.accountModel->getAccountConfig(self.selectedAccountID);
+    if(accountProperties.TLS.verifyClient != [sender state]) {
+        accountProperties.TLS.verifyClient = [sender state];
+        self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+    }
+}
+- (IBAction)toggleCertForIncomingConnection:(id)sender {
+    lrc::api::account::ConfProperties_t accountProperties = self.accountModel->getAccountConfig(self.selectedAccountID);
+    if(accountProperties.TLS.requireClientCertificate != [sender state]) {
+        accountProperties.TLS.requireClientCertificate = [sender state];
+        self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+    }
+}
+
+- (IBAction)enableCustomAddress:(id)sender {
+    lrc::api::account::ConfProperties_t accountProperties = self.accountModel->getAccountConfig(self.selectedAccountID);
+    if(accountProperties.publishedSameAsLocal != ![sender state]) {
+        accountProperties.publishedSameAsLocal = ![sender state];
+        self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+        [customAddressField setEnabled:[sender state]];
+        [customPortField setEnabled:[sender state]];
+        [customPortStepper setEnabled:[sender state]];
+    }
+}
+
+- (IBAction)chooseTlsProtocol:(id)sender {
+    int index = [sender indexOfSelectedItem];
+    if(index < 0) {
+        return;
+    }
+    NSString *title = [[tlsProtocolsList.menu itemAtIndex:index] title];
+    lrc::api::account::TlsMethod method;
+
+    if(title == TLS_PROTOCOL_DEFAULT) {
+        method = lrc::api::account::TlsMethod::DEFAULT;
+    } else if(title == TLS_PROTOCOL_TLSv1) {
+        method = lrc::api::account::TlsMethod::TLSv1;
+    } else if(title == TLS_PROTOCOL_TLSv1_1) {
+        method = lrc::api::account::TlsMethod::TLSv1_1;
+    } else if(title == TLS_PROTOCOL_TLSv1_2) {
+        method = lrc::api::account::TlsMethod::TLSv1_2;
+    } else {
+        return;
+    }
+    auto accountProperties = self.accountModel->getAccountConfig(self.selectedAccountID);
+    if(accountProperties.TLS.method != method) {
+        accountProperties.TLS.method = method;
+        self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+    }
+}
+
+- (IBAction) valueDidChange: (id) sender
+{
+    lrc::api::account::ConfProperties_t accountProperties = self.accountModel->getAccountConfig(self.selectedAccountID);
+
+    switch ([sender tag]) {
+        case OUTGOING_TLS_SERVER_TAG:
+            if(accountProperties.TLS.serverName != [[sender stringValue] UTF8String]) {
+                accountProperties.TLS.serverName = [[sender stringValue] UTF8String];
+                self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+            }
+            return;
+        case NEGOTIATION_TIMOUT_TAG:
+            if(accountProperties.TLS.negotiationTimeoutSec != [[sender stringValue] integerValue]) {
+                accountProperties.TLS.negotiationTimeoutSec = [[sender stringValue] integerValue];
+                self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+                [negotiationTimeoutStepper setIntegerValue: [[sender stringValue] integerValue]];
+                [negotiationTimeoutField setIntegerValue: [[sender stringValue] integerValue]];
+            }
+            return;
+        case REGISTRATION_TAG:
+            if(accountProperties.Registration.expire != [[sender stringValue] integerValue]) {
+                accountProperties.Registration.expire = [[sender stringValue] integerValue];
+                self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+                [registrationTimeoutStepper setIntegerValue: [[sender stringValue] integerValue]];
+                [registrationTimeoutField setIntegerValue: [[sender stringValue] integerValue]];
+            }
+            return;
+        case LOCALPORT_TAG:
+            if(accountProperties.localPort != [[sender stringValue] integerValue]) {
+                accountProperties.localPort = [[sender stringValue] integerValue];
+                self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+                [networkStepper setIntegerValue: [[sender stringValue] integerValue]];
+                [networkField setIntegerValue: [[sender stringValue] integerValue]];
+            }
+            return;
+        case CUSTOM_ADDRESS_TAG:
+            if(accountProperties.publishedAddress != [[sender stringValue] UTF8String]) {
+                NSString *name = [sender stringValue];
+                accountProperties.publishedAddress = [[sender stringValue] UTF8String];
+                self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+            }
+            return;
+        case CUSTOM_PORT_TAG:
+            if(accountProperties.publishedPort != [[sender stringValue] integerValue]) {
+                accountProperties.publishedPort = [[sender stringValue] integerValue];
+                self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+                [customPortStepper setIntegerValue: [[sender stringValue] integerValue]];
+                [customPortField setIntegerValue: [[sender stringValue] integerValue]];
+            }
+            return;
+        case MINAUDIO_TAG:
+            if(accountProperties.Audio.audioPortMin != [[sender stringValue] integerValue]) {
+                accountProperties.Audio.audioPortMin = [[sender stringValue] integerValue];
+                self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+                [minAudioPortStepper setIntegerValue: [[sender stringValue] integerValue]];
+                [minAudioRTPRange setIntegerValue: [[sender stringValue] integerValue]];
+            }
+            return;
+        case MAXAUDIO_TAG:
+            if(accountProperties.Audio.audioPortMax != [[sender stringValue] integerValue]) {
+                accountProperties.Audio.audioPortMax = [[sender stringValue] integerValue];
+                self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+                [maxAudioPortStepper setIntegerValue: [[sender stringValue] integerValue]];
+                [maxAudioRTPRange setIntegerValue: [[sender stringValue] integerValue]];
+            }
+            return;
+        case MINVIDEO_TAG:
+            if(accountProperties.Video.videoPortMin != [[sender stringValue] integerValue]) {
+                accountProperties.Video.videoPortMin = [[sender stringValue] integerValue];
+                self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+                [minVideoPortStepper setIntegerValue: [[sender stringValue] integerValue]];
+                [minVideoRTPRange setIntegerValue: [[sender stringValue] integerValue]];
+            }
+            return;
+        case MAXVIDEO_TAG:
+            if(accountProperties.Video.videoPortMax != [[sender stringValue] integerValue]) {
+                accountProperties.Video.videoPortMax = [[sender stringValue] integerValue];
+                self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+                [maxVideoPortStepper setIntegerValue: [[sender stringValue] integerValue]];
+                [maxVideoRTPRange setIntegerValue: [[sender stringValue] integerValue]];
+            }
+            return;
+        default:
+            break;
+    }
+    [super valueDidChange:sender];
+}
+
+#pragma mark - NSTextFieldDelegate methods
+
+-(void)controlTextDidChange:(NSNotification *)notif
+{
+    NSTextField *textField = [notif object];
+    NSRange test = [[textField currentEditor] selectedRange];
+
+    [self valueDidChange:textField];
+}
+
+@end
diff --git a/src/AccAdvancedVC.h b/src/AccAdvancedVC.h
index f6b132d87cf29c78e1c3615dfe31d244ffb14d50..86709bd1b0f139096eb8ea6deee37b83e13b946a 100644
--- a/src/AccAdvancedVC.h
+++ b/src/AccAdvancedVC.h
@@ -1,6 +1,7 @@
 /*
- *  Copyright (C) 2015-2016 Savoir-faire Linux Inc.
+ *  Copyright (C) 2015-2018 Savoir-faire Linux Inc.
  *  Author: Alexandre Lision <alexandre.lision@savoirfairelinux.com>
+ *  Author: Kateryna Kostiuk <kateryna.kostiuk@savoirfairelinux.com>
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -19,8 +20,21 @@
 
 #import <Cocoa/Cocoa.h>
 
-#import <account.h>
+#import "LrcModelsProtocol.h"
+#include <string>
 
-@interface AccAdvancedVC : NSViewController <NSTextFieldDelegate>
+@protocol AccountAdvancedProtocol
+- (void) setSelectedAccount:(std::string) account;
+@end
+
+@interface AccAdvancedVC : NSViewController <NSTableViewDataSource, NSTableViewDelegate, AccountAdvancedProtocol, LrcModelsProtocol>
+
+@property std::string selectedAccountID;
+@property (unsafe_unretained) IBOutlet NSButton* selectCACertificateButton;
+@property (unsafe_unretained) IBOutlet NSButton* selectUserCertificateButton;
+@property (unsafe_unretained) IBOutlet NSButton* selectPrivateKeyButton;
+@property (unsafe_unretained) IBOutlet NSSecureTextField *privateKeyPaswordField;
+
+- (IBAction) valueDidChange: (id) sender;
 
 @end
diff --git a/src/AccAdvancedVC.mm b/src/AccAdvancedVC.mm
index e1d2592f7a3c733caa447ac9f495584a3fd05be7..39dc7e97bfeeb450fcc3a3d31fbccb44c19d80b1 100644
--- a/src/AccAdvancedVC.mm
+++ b/src/AccAdvancedVC.mm
@@ -1,6 +1,7 @@
 /*
- *  Copyright (C) 2015-2016 Savoir-faire Linux Inc.
+ *  Copyright (C) 2015-2018 Savoir-faire Linux Inc.
  *  Author: Alexandre Lision <alexandre.lision@savoirfairelinux.com>
+ *  Author: Kateryna Kostiuk <kateryna.kostiuk@savoirfairelinux.com>
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -16,288 +17,446 @@
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA.
  */
-#define REGISTRATION_TAG 0
-#define LOCALPORT_TAG 1
-#define STUNURL_TAG 2
-#define PUBLICADDR_TAG 3
-#define PUBLICPORT_TAG 4
-#define MINAUDIO_TAG 5
-#define MAXAUDIO_TAG 6
-#define MINVIDEO_TAG 7
-#define MAXVIDEO_TAG 8
-
-#define TURN_SERVER_TAG     9
-#define TURN_USERNAME_TAG   10
-#define TURN_PASSWORD_TAG   11
-#define TURN_REALM_TAG      12
-
 #import "AccAdvancedVC.h"
 
-///Qt
-#import <qitemselectionmodel.h>
-
-///LRC
-#import <accountmodel.h>
-#import <credentialmodel.h>
-#import <credential.h>
-
+//LRC
+#import <api/lrc.h>
+#import <api/newaccountmodel.h>
+#import <api/newdevicemodel.h>
+#import <api/newcodecmodel.h>
+#import <account.h>
 
 @interface AccAdvancedVC ()
-@property (unsafe_unretained) IBOutlet NSView *registrationContainer;
-@property (unsafe_unretained) IBOutlet NSView *mainContainer;
-
-@property (unsafe_unretained) IBOutlet NSTextField *registrationField;
-@property (unsafe_unretained) IBOutlet NSTextField *localPortField;
-@property (unsafe_unretained) IBOutlet NSButton *isUsingSTUN;
-
-@property (unsafe_unretained) IBOutlet NSTextField *STUNserverURLField;
-@property (unsafe_unretained) IBOutlet NSTextField *minAudioRTPRange;
-@property (unsafe_unretained) IBOutlet NSTextField *maxAudioRTPRange;
-@property (unsafe_unretained) IBOutlet NSTextField *minVideoRTPRange;
-@property (unsafe_unretained) IBOutlet NSTextField *maxVideoRTPRange;
-
-@property (unsafe_unretained) IBOutlet NSButton *isUsingTURN;
-@property (unsafe_unretained) IBOutlet NSTextField *turnServerURL;
-@property (unsafe_unretained) IBOutlet NSTextField *turnUsername;
-@property (unsafe_unretained) IBOutlet NSSecureTextField *turnPassword;
-@property (unsafe_unretained) IBOutlet NSTextField *turnRealm;
-
-@property (unsafe_unretained) IBOutlet NSStepper *registrationStepper;
-@property (unsafe_unretained) IBOutlet NSStepper *localPortStepper;
-@property (unsafe_unretained) IBOutlet NSStepper *minAudioPortStepper;
-@property (unsafe_unretained) IBOutlet NSStepper *maxAudioPortStepper;
-@property (unsafe_unretained) IBOutlet NSStepper *minVideoPortStepper;
-@property (unsafe_unretained) IBOutlet NSStepper *maxVideoPortStepper;
-
-@property (unsafe_unretained) IBOutlet NSMatrix *publishAddrAndPortRadioGroup;
-@property (unsafe_unretained) IBOutlet NSTextField *publishedAddrField;
-@property (unsafe_unretained) IBOutlet NSTextField *publishedPortField;
+
+@property (unsafe_unretained) IBOutlet NSButton* ringtoneSelectionButton;
+@property (unsafe_unretained) IBOutlet NSButton* enableRingtone;
+@property (unsafe_unretained) IBOutlet NSButton* autoAnswer;
+@property (unsafe_unretained) IBOutlet NSButton* toggleUPnPButton;
+@property (unsafe_unretained) IBOutlet NSButton* useTURNButton;
+@property (unsafe_unretained) IBOutlet NSButton* useSTUNButton;
+@property (unsafe_unretained) IBOutlet NSButton *toggleVideoButton;
+@property (unsafe_unretained) IBOutlet NSTableView* audioCodecView;
+@property (unsafe_unretained) IBOutlet NSTableView* videoCodecView;
+@property (unsafe_unretained) IBOutlet NSTextField *turnAddressField;
+@property (unsafe_unretained) IBOutlet NSTextField *turnUsernameField;
+@property (unsafe_unretained) IBOutlet NSSecureTextField *turnPasswordField;
+@property (unsafe_unretained) IBOutlet NSTextField *turnRealmField;
+@property (unsafe_unretained) IBOutlet NSTextField *stunAddressField;
+@property (unsafe_unretained) IBOutlet NSButton *disableVideoButton;
 
 @end
 
 @implementation AccAdvancedVC
-@synthesize registrationField;
-@synthesize localPortField;
-@synthesize isUsingSTUN;
-@synthesize STUNserverURLField;
-@synthesize minAudioRTPRange;
-@synthesize maxAudioRTPRange;
-@synthesize minVideoRTPRange;
-@synthesize maxVideoRTPRange;
-@synthesize registrationStepper;
-@synthesize localPortStepper;
-@synthesize turnPassword, isUsingTURN, turnRealm, turnServerURL, turnUsername;
-@synthesize minAudioPortStepper;
-@synthesize maxAudioPortStepper;
-@synthesize minVideoPortStepper;
-@synthesize maxVideoPortStepper;
-@synthesize publishAddrAndPortRadioGroup;
-@synthesize publishedAddrField;
-@synthesize publishedPortField;
 
-- (void)awakeFromNib
+@synthesize audioCodecView, videoCodecView;
+@synthesize privateKeyPaswordField, turnAddressField, turnUsernameField, turnPasswordField, turnRealmField, stunAddressField;
+@synthesize ringtoneSelectionButton, selectCACertificateButton, selectUserCertificateButton, selectPrivateKeyButton;
+@synthesize enableRingtone, toggleVideoButton, autoAnswer, toggleUPnPButton, useTURNButton, useSTUNButton, disableVideoButton;
+@synthesize accountModel;
+
+NS_ENUM(NSInteger, ButtonsTags) {
+    TAG_RINGTONE = 1,
+    TAG_CA_CERTIFICATE,
+    TAG_USER_CERTIFICATE,
+    TAG_PRIVATE_KEY
+};
+
+NS_ENUM(NSInteger, TextFieldsViews) {
+    PRIVATE_KEY_PASSWORG_TAG = 1,
+    TURN_ADDRESS_TAG,
+    TURN_USERNAME_TAG,
+    TURN_PASSWORD_TAG,
+    TURN_REALM_TAG,
+    STUN_ADDRESS_TAG
+};
+
+NS_ENUM(NSInteger, tablesViews) {
+    AUDIO_CODEC_NAME_TAG = 1,
+    AUDIO_CODEC_SAMPLERATE_TAG,
+    AUDIO_CODEC_ENABLE_TAG,
+    VIDEO_CODEC_NAME_TAG,
+    VIDIO_CODEC_ENABLE_TAG
+};
+
+-(id) initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil accountmodel:(lrc::api::NewAccountModel*) accountModel
 {
-    NSLog(@"INIT Advanced VC");
-    [registrationStepper setTag:REGISTRATION_TAG];
-    [localPortStepper setTag:LOCALPORT_TAG];
-    [minAudioPortStepper setTag:MINAUDIO_TAG];
-    [maxAudioPortStepper setTag:MAXAUDIO_TAG];
-    [minVideoPortStepper setTag:MINVIDEO_TAG];
-    [maxVideoPortStepper setTag:MAXVIDEO_TAG];
-
-    [turnServerURL setTag:TURN_SERVER_TAG];
-    [turnUsername setTag:TURN_USERNAME_TAG];
-    [turnPassword setTag:TURN_PASSWORD_TAG];
-    [turnRealm setTag:TURN_REALM_TAG];
-
-    [registrationField setTag:REGISTRATION_TAG];
-    [localPortField setTag:LOCALPORT_TAG];
-    [minAudioRTPRange setTag:MINAUDIO_TAG];
-    [maxAudioRTPRange setTag:MAXAUDIO_TAG];
-    [minVideoRTPRange setTag:MINVIDEO_TAG];
-    [maxVideoRTPRange setTag:MAXVIDEO_TAG];
-
-    [STUNserverURLField setTag:STUNURL_TAG];
-    [publishedPortField setTag:PUBLICPORT_TAG];
-    [publishedAddrField setTag:PUBLICADDR_TAG];
-
-    QObject::connect(AccountModel::instance().selectionModel(),
-                     &QItemSelectionModel::currentChanged,
-                     [=](const QModelIndex &current, const QModelIndex &previous) {
-                         if(!current.isValid())
-                             return;
-                         [self loadAccount];
-                     });
-
+    if (self =  [self initWithNibName: nibNameOrNil bundle:nibBundleOrNil])
+    {
+        self.accountModel= accountModel;
+    }
+    return self;
 }
 
-- (Account*) currentAccount
+- (void)awakeFromNib
 {
-    auto accIdx = AccountModel::instance().selectionModel()->currentIndex();
-    return AccountModel::instance().getAccountByModelIndex(accIdx);
+    [super awakeFromNib];
+    audioCodecView.delegate = self;
+    audioCodecView.dataSource = self;
+    videoCodecView.delegate = self;
+    videoCodecView.dataSource = self;
+    [disableVideoButton setWantsLayer:YES];
+    disableVideoButton.layer.backgroundColor = [[NSColor colorWithRed:239/255.0 green:239/255.0 blue:239/255.0 alpha:0.3] CGColor];
+    [self setTags];
 }
 
-- (void)loadAccount
-{
-    auto account = [self currentAccount];
+-(void) setTags {
+    [ringtoneSelectionButton setTag: TAG_RINGTONE];
+    [selectCACertificateButton setTag: TAG_CA_CERTIFICATE];
+    [selectUserCertificateButton setTag: TAG_USER_CERTIFICATE];
+    [selectPrivateKeyButton setTag: TAG_PRIVATE_KEY];
+    [privateKeyPaswordField setTag: PRIVATE_KEY_PASSWORG_TAG];
+    [turnAddressField setTag: TURN_ADDRESS_TAG];
+    [turnUsernameField setTag: TURN_USERNAME_TAG];
+    [turnPasswordField setTag: TURN_PASSWORD_TAG];
+    [turnRealmField setTag: TURN_REALM_TAG];
+    [stunAddressField setTag: STUN_ADDRESS_TAG];
+}
 
-    [self updateControlsWithTag:REGISTRATION_TAG];
-    [self updateControlsWithTag:LOCALPORT_TAG];
-    [self updateControlsWithTag:MINAUDIO_TAG];
-    [self updateControlsWithTag:MAXAUDIO_TAG];
-    [self updateControlsWithTag:MINVIDEO_TAG];
-    [self updateControlsWithTag:MAXVIDEO_TAG];
+-(void) update {
+    lrc::api::account::ConfProperties_t accountProperties = self.accountModel->getAccountConfig(self.selectedAccountID);
+    [ringtoneSelectionButton setTitle: [@(accountProperties.Ringtone.ringtonePath.c_str()) lastPathComponent]];
+    [enableRingtone setState :accountProperties.Ringtone.ringtoneEnabled];
+    [autoAnswer setState: accountProperties.autoAnswer];
+    [selectPrivateKeyButton setTitle: [@(accountProperties.TLS.privateKeyFile.c_str()) lastPathComponent]];
+    [selectUserCertificateButton setTitle:[@(accountProperties.TLS.certificateFile.c_str()) lastPathComponent]];
+    [selectCACertificateButton setTitle: [@(accountProperties.TLS.certificateListFile.c_str()) lastPathComponent]];
+    [toggleUPnPButton setState:accountProperties.upnpEnabled];
+    [useTURNButton setState:accountProperties.TURN.enable];
+    [useSTUNButton setState:accountProperties.STUN.enable];
+    [privateKeyPaswordField setStringValue:@(accountProperties.TLS.password.c_str())];
+    [turnAddressField setStringValue:@(accountProperties.TURN.server.c_str())];
+    [turnUsernameField setStringValue:@(accountProperties.TURN.username.c_str())];
+    [turnPasswordField setStringValue:@(accountProperties.TURN.password.c_str())];
+    [turnRealmField setStringValue:@(accountProperties.TURN.realm.c_str())];
+    [stunAddressField setStringValue:@(accountProperties.STUN.server.c_str())];
+    [stunAddressField setEditable:accountProperties.STUN.enable];
+    [turnAddressField setEditable:accountProperties.TURN.enable];
+    [turnUsernameField setEditable:accountProperties.TURN.enable];
+    [turnPasswordField setEditable:accountProperties.TURN.enable];
+    [turnRealmField setEditable:accountProperties.TURN.enable];
+    [disableVideoButton setHidden:accountProperties.Video.videoEnabled];
+    [toggleVideoButton setState:accountProperties.Video.videoEnabled];
+    [videoCodecView setEnabled:accountProperties.Video.videoEnabled];
+    [audioCodecView reloadData];
+    [videoCodecView reloadData];
+}
 
-    [STUNserverURLField setStringValue:account->sipStunServer().toNSString()];
-    [isUsingSTUN setState:account->isSipStunEnabled()?NSOnState:NSOffState];
-    [STUNserverURLField setEnabled:account->isSipStunEnabled()];
+- (void)viewDidLoad {
+    [super viewDidLoad];
+    [self update];
+}
 
-    [isUsingTURN setState:account->isTurnEnabled()?NSOnState:NSOffState];
-    [self toggleTURN:isUsingTURN];
-    [turnServerURL setStringValue:account->turnServer().toNSString()];
+#pragma mark - AccountAdvancedProtocol methods
 
-    auto turnCreds = account->credentialModel()->primaryCredential(Credential::Type::TURN);
+- (void) setSelectedAccount:(std::string) account {
+    self.selectedAccountID = account;
+    [self update];
+}
 
-    [turnUsername setStringValue:turnCreds->username().toNSString()];
-    [turnPassword setStringValue:turnCreds->password().toNSString()];
-    [turnRealm setStringValue:turnCreds->realm().toNSString()];
+#pragma mark - Actions
 
-    if(account->isPublishedSameAsLocal())
-        [publishAddrAndPortRadioGroup selectCellAtRow:0 column:0];
-    else {
-        [publishAddrAndPortRadioGroup selectCellAtRow:1 column:0];
+- (IBAction)autoAnswerCall:(id)sender {
+    lrc::api::account::ConfProperties_t accountProperties = self.accountModel->getAccountConfig(self.selectedAccountID);
+    if( accountProperties.autoAnswer != [sender state]) {
+        accountProperties.autoAnswer = [sender state];
+        self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
     }
+}
 
-    [publishedAddrField setStringValue:account->publishedAddress().toNSString()];
-    [publishedPortField setIntValue:account->publishedPort()];
-    [publishedAddrField setEnabled:!account->isPublishedSameAsLocal()];
-    [publishedPortField setEnabled:!account->isPublishedSameAsLocal()];
-
-    if(account->protocol() == Account::Protocol::RING) {
-        [self.registrationContainer setHidden:YES];
-    } else {
-        [self.registrationContainer setHidden:NO];
+- (IBAction)autoEnableRingtone:(id)sender {
+    lrc::api::account::ConfProperties_t accountProperties = self.accountModel->getAccountConfig(self.selectedAccountID);
+    if(accountProperties.Ringtone.ringtoneEnabled != [sender state]) {
+        accountProperties.Ringtone.ringtoneEnabled = [sender state];
+        self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+        [ringtoneSelectionButton setEnabled:[sender state]];
     }
 }
 
-#pragma mark - NSTextFieldDelegate methods
+- (IBAction)togleUPnP:(id)sender {
+    lrc::api::account::ConfProperties_t accountProperties = self.accountModel->getAccountConfig(self.selectedAccountID);
+    if( accountProperties.upnpEnabled != [sender state]) {
+        accountProperties.upnpEnabled = [sender state];
+        self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+    }
+}
 
--(void)controlTextDidChange:(NSNotification *)notif
-{
-    NSTextField *textField = [notif object];
-    NSRange test = [[textField currentEditor] selectedRange];
+- (IBAction)useTURN:(id)sender {
+    lrc::api::account::ConfProperties_t accountProperties = self.accountModel->getAccountConfig(self.selectedAccountID);
+    if( accountProperties.TURN.enable != [sender state]) {
+        accountProperties.TURN.enable = [sender state];
+        self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+        [turnAddressField setEditable:[sender state]];
+        [turnUsernameField setEditable:[sender state]];
+        [turnPasswordField setEditable:[sender state]];
+        [turnRealmField setEditable:[sender state]];
+    }
+}
 
-    [self valueDidChange:textField];
-    //FIXME: saving account lose focus because in NSTreeController we remove and reinsert row so View selection change
-    [textField.window makeFirstResponder:textField];
-    [[textField currentEditor] setSelectedRange:test];
+- (IBAction)useSTUN:(id)sender {
+    lrc::api::account::ConfProperties_t accountProperties = self.accountModel->getAccountConfig(self.selectedAccountID);
+    if( accountProperties.STUN.enable != [sender state]) {
+        accountProperties.STUN.enable = [sender state];
+        self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+        [stunAddressField setEditable:[sender state]];
+    }
 }
 
-- (IBAction) valueDidChange: (id) sender
-{
+- (IBAction)selectFile:(id)sender {
+    NSOpenPanel *panel = [NSOpenPanel openPanel];
+    [panel setAllowsMultipleSelection:NO];
+    [panel setCanChooseDirectories:NO];
+    [panel setCanChooseFiles:YES];
+    if ([panel runModal] != NSFileHandlingPanelOKButton) return;
+    if ([[panel URLs] lastObject] == nil) return;
+    NSString * path = [[[panel URLs] lastObject] path];
+    lrc::api::account::ConfProperties_t accountProperties = self.accountModel->getAccountConfig(self.selectedAccountID);
     switch ([sender tag]) {
-        case REGISTRATION_TAG:
-            [self currentAccount]->setRegistrationExpire([sender integerValue]);
-            break;
-        case LOCALPORT_TAG:
-            [self currentAccount]->setLocalPort([sender integerValue]);
+        case TAG_RINGTONE:
+            if(accountProperties.Ringtone.ringtonePath != [path UTF8String]) {
+                accountProperties.Ringtone.ringtonePath = [path UTF8String];
+                self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+                [ringtoneSelectionButton setTitle:[path lastPathComponent]];
+            }
             break;
-        case STUNURL_TAG:
-            [self currentAccount]->setSipStunServer([[sender stringValue] UTF8String]);
+        case TAG_CA_CERTIFICATE:
+            if(accountProperties.TLS.certificateListFile != [path UTF8String] ) {
+                accountProperties.TLS.certificateListFile = [path UTF8String];
+                self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+                [selectCACertificateButton setTitle:[path lastPathComponent]];
+            }
             break;
-        case PUBLICADDR_TAG:
-            [self currentAccount]->setPublishedAddress([[sender stringValue] UTF8String]);
+        case TAG_USER_CERTIFICATE:
+            if(accountProperties.TLS.certificateFile != [path UTF8String] ) {
+                accountProperties.TLS.certificateFile = [path UTF8String];
+                self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+                [selectUserCertificateButton setTitle:[path lastPathComponent]];
+            }
             break;
-        case PUBLICPORT_TAG:
-            [self currentAccount]->setPublishedPort([sender integerValue]);
+        case TAG_PRIVATE_KEY:
+            if(accountProperties.TLS.privateKeyFile != [path UTF8String] ) {
+                accountProperties.TLS.privateKeyFile = [path UTF8String];
+                self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+                [selectPrivateKeyButton setTitle:[path lastPathComponent]];
+            }
             break;
-        case MINAUDIO_TAG:
-            [self currentAccount]->setAudioPortMin([sender integerValue]);
-            break;
-        case MAXAUDIO_TAG:
-            [self currentAccount]->setAudioPortMax([sender integerValue]);
-            break;
-        case MINVIDEO_TAG:
-            [self currentAccount]->setVideoPortMin([sender integerValue]);
-            break;
-        case MAXVIDEO_TAG:
-            [self currentAccount]->setVideoPortMax([sender integerValue]);
+    }
+}
+
+- (IBAction)valueDidChange:(id)sender
+{
+    lrc::api::account::ConfProperties_t accountProperties = self.accountModel->getAccountConfig(self.selectedAccountID);
+    switch ([sender tag]) {
+        case PRIVATE_KEY_PASSWORG_TAG:
+            if(accountProperties.TLS.password != [[sender stringValue] UTF8String]) {
+                accountProperties.TLS.password = [[sender stringValue] UTF8String];
+                self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+            }
             break;
-        case TURN_SERVER_TAG:
-            [self currentAccount]->setTurnServer([[sender stringValue] UTF8String]);
+        case TURN_ADDRESS_TAG:
+            if(accountProperties.TURN.server != [[sender stringValue] UTF8String]) {
+                accountProperties.TURN.server = [[sender stringValue] UTF8String];
+                self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+            }
             break;
         case TURN_USERNAME_TAG:
-            [self currentAccount]->credentialModel()->primaryCredential(Credential::Type::TURN)->setUsername([[sender stringValue] UTF8String]);
+            if(accountProperties.TURN.username != [[sender stringValue] UTF8String]) {
+                accountProperties.TURN.username = [[sender stringValue] UTF8String];
+                self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+            }
             break;
         case TURN_PASSWORD_TAG:
-            [self currentAccount]->credentialModel()->primaryCredential(Credential::Type::TURN)->setPassword([[sender stringValue] UTF8String]);
+            if(accountProperties.TURN.password != [[sender stringValue] UTF8String]) {
+                accountProperties.TURN.password = [[sender stringValue] UTF8String];
+                self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+            }
             break;
         case TURN_REALM_TAG:
-            [self currentAccount]->credentialModel()->primaryCredential(Credential::Type::TURN)->setRealm([[sender stringValue] UTF8String]);
+            if(accountProperties.TURN.realm != [[sender stringValue] UTF8String]) {
+                accountProperties.TURN.realm = [[sender stringValue] UTF8String];
+                self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+            }
+            break;
+        case STUN_ADDRESS_TAG:
+            if(accountProperties.STUN.server != [[sender stringValue] UTF8String]) {
+                accountProperties.STUN.server = [[sender stringValue] UTF8String];
+                self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+            }
             break;
         default:
             break;
     }
-    [self updateControlsWithTag:[sender tag]];
 }
 
-- (IBAction)toggleSTUN:(NSButton *)sender
-{
-    [self currentAccount]->setSipStunEnabled([sender state]);
-    [STUNserverURLField setEnabled:[self currentAccount]->isSipStunEnabled()];
+- (IBAction)moveAudioCodecUp:(id)sender {
+    NSInteger row = [audioCodecView selectedRow];
+    if(row < 0) {
+        return;
+    }
+    auto audioCodecs = self.accountModel->getAccountInfo(self.selectedAccountID).codecModel->getAudioCodecs();
+    auto codec = audioCodecs.begin();
+    std::advance(codec, row);
+    if (codec == audioCodecs.end()) {
+        return;
+    }
+    self.accountModel->getAccountInfo(self.selectedAccountID).codecModel->increasePriority(codec->id, false);
+    [audioCodecView reloadData];
+    row = row == 0 ? row: row-1;
+    NSIndexSet *indexSet = [NSIndexSet indexSetWithIndex: row];
+    [audioCodecView selectRowIndexes:indexSet byExtendingSelection: NO];
+    [audioCodecView scrollRowToVisible:row];
 }
 
-- (IBAction)toggleTURN:(id)sender {
-    [self currentAccount]->setTurnEnabled([sender state]);
-    [turnServerURL setEnabled:[sender state]];
-    [turnUsername setEnabled:[sender state]];
-    [turnPassword setEnabled:[sender state]];
-    [turnRealm setEnabled:[sender state]];
+- (IBAction)moveAudioCodecDown:(id)sender {
+    NSInteger row = [audioCodecView selectedRow];
+    if(row < 0) {
+        return;
+    }
+    auto audioCodecs = self.accountModel->getAccountInfo(self.selectedAccountID).codecModel->getAudioCodecs();
+    auto codec = audioCodecs.begin();
+    std::advance(codec, row);
+    if (codec == audioCodecs.end()) {
+        return;
+    }
+    self.accountModel->getAccountInfo(self.selectedAccountID).codecModel->decreasePriority(codec->id, false);
+    [audioCodecView reloadData];
+    row = (row == ([audioCodecView numberOfRows] - 1)) ? row: row+1;
+    NSIndexSet *indexSet = [NSIndexSet indexSetWithIndex: row];
+    [audioCodecView selectRowIndexes:indexSet byExtendingSelection: NO];
+    [audioCodecView scrollRowToVisible:row];
+}
+
+- (IBAction)moveVideoCodecUp:(id)sender {
+    NSInteger row = [videoCodecView selectedRow];
+    if(row < 0) {
+        return;
+    }
+    auto videoCodecs = self.accountModel->getAccountInfo(self.selectedAccountID).codecModel->getVideoCodecs();
+    auto codec = videoCodecs.begin();
+    std::advance(codec, row);
+    if (codec == videoCodecs.end()) {
+        return;
+    }
+    self.accountModel->getAccountInfo(self.selectedAccountID).codecModel->increasePriority(codec->id, YES);
+    [videoCodecView reloadData];
+    row = row == 0 ? row: row-1;
+    NSIndexSet *indexSet = [NSIndexSet indexSetWithIndex: row];
+    [videoCodecView selectRowIndexes:indexSet byExtendingSelection: NO];
+    [videoCodecView scrollRowToVisible:row];
+}
+
+- (IBAction)moveVideoCodecDown:(id)sender {
+    NSInteger row = [videoCodecView selectedRow];
+    if(row < 0) {
+        return;
+    }
+    auto videoCodecs = self.accountModel->getAccountInfo(self.selectedAccountID).codecModel->getVideoCodecs();
+    auto codec = videoCodecs.begin();
+    std::advance(codec, row);
+    if (codec == videoCodecs.end()) {
+        return;
+    }
+    self.accountModel->getAccountInfo(self.selectedAccountID).codecModel->decreasePriority(codec->id, YES);
+    [videoCodecView reloadData];
+    row = row == [videoCodecView numberOfRows] - 1 ? row: row+1;
+    NSIndexSet *indexSet = [NSIndexSet indexSetWithIndex: row];
+    [videoCodecView selectRowIndexes:indexSet byExtendingSelection: NO];
+    [videoCodecView scrollRowToVisible:row];
+}
+
+- (IBAction)toggleVideoEnabled:(id)sender {
+    lrc::api::account::ConfProperties_t accountProperties = self.accountModel->getAccountConfig(self.selectedAccountID);
+    if(accountProperties.Video.videoEnabled != [sender state]) {
+        accountProperties.Video.videoEnabled = [sender state];
+        self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+        [videoCodecView setEnabled:[sender state]];
+        [videoCodecView reloadData];
+        [disableVideoButton setHidden:[sender state]];
+    }
+}
+
+- (IBAction)enableAudioCodec:(id)sender
+{
+    NSInteger row = [audioCodecView rowForView:sender];
+    if(row < 0) {
+        return;
+    }
+    auto audioCodecs = self.accountModel->getAccountInfo(self.selectedAccountID).codecModel->getAudioCodecs();
+    auto codec = audioCodecs.begin();
+    std::advance(codec, row);
+    if (codec != audioCodecs.end() && codec->enabled != [sender state]) {
+        self.accountModel->getAccountInfo(self.selectedAccountID).codecModel->enable(codec->id, [sender state]);
+    }
 }
 
-- (IBAction)didSwitchPublishedAddress:(NSMatrix *)matrix
+- (IBAction)enableVideoCodec:(id)sender
 {
-    NSInteger row = [matrix selectedRow];
-    if(row == 0) {
-        [self currentAccount]->setPublishedSameAsLocal(YES);
-    } else {
-        [self currentAccount]->setPublishedSameAsLocal(NO);
+    NSInteger row = [videoCodecView rowForView:sender];
+    if(row < 0) {
+        return;
+    }
+    auto videoCodecs = self.accountModel->getAccountInfo(self.selectedAccountID).codecModel->getVideoCodecs();
+    auto codec = videoCodecs.begin();
+    std::advance(codec, row);
+    if (codec != videoCodecs.end() && codec->enabled != [sender state]) {
+        self.accountModel->getAccountInfo(self.selectedAccountID).codecModel->enable(codec->id, [sender state]);
     }
-    [publishedAddrField setEnabled:![self currentAccount]->isPublishedSameAsLocal()];
-    [publishedPortField setEnabled:![self currentAccount]->isPublishedSameAsLocal()];
+}
 
+#pragma mark - NSTableViewDelegate methods
+- (NSView *)tableView:(NSTableView *)tableView viewForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row
+{
+    if(tableView == audioCodecView) {
+        NSTableCellView* audioCodecView = [tableView makeViewWithIdentifier:@"TableCellAudioCodecItem" owner:self];
+        NSTextField* nameLabel = [audioCodecView viewWithTag: AUDIO_CODEC_NAME_TAG];
+        NSTextField* samplerateLabel = [audioCodecView viewWithTag: AUDIO_CODEC_SAMPLERATE_TAG];
+        NSButton* codecEnableButton = [audioCodecView viewWithTag: AUDIO_CODEC_ENABLE_TAG];
+        auto audioCodecs = self.accountModel->getAccountInfo(self.selectedAccountID).codecModel->getAudioCodecs();
+        auto codec = audioCodecs.begin();
+        std::advance(codec, row);
+        if (codec != audioCodecs.end()) {
+            [nameLabel setStringValue: @(codec->name.c_str())];
+            [samplerateLabel setStringValue: [@(codec->samplerate.c_str()) stringByAppendingString:@" Hz"]];
+            [codecEnableButton setState:codec->enabled];
+            [codecEnableButton setAction:@selector(enableAudioCodec:)];
+            [codecEnableButton setTarget:self];
+            return audioCodecView;
+        }
+    } else if (tableView == videoCodecView) {
+        NSTableCellView* videoCodecView = [tableView makeViewWithIdentifier:@"TableCellVideoCodecItem" owner:self];
+        NSTextField* nameLabel = [videoCodecView viewWithTag: VIDEO_CODEC_NAME_TAG];
+        NSButton* codecEnableButton = [audioCodecView viewWithTag: VIDIO_CODEC_ENABLE_TAG];
+        nameLabel.textColor = [tableView isEnabled] ? [NSColor labelColor] : [NSColor lightGrayColor];
+        [codecEnableButton setEnabled:[tableView isEnabled]];
+        auto codecs = self.accountModel->getAccountInfo(self.selectedAccountID).codecModel->getVideoCodecs();
+        auto codec = codecs.begin();
+        std::advance(codec, row);
+        if (codec != codecs.end()) {
+            [nameLabel setStringValue: @(codec->name.c_str())];
+            [codecEnableButton setState:codec->enabled];
+            [codecEnableButton setAction:@selector(enableVideoCodec:)];
+            [codecEnableButton setTarget:self];
+            return videoCodecView;
+        }
+    }
 }
 
-- (void) updateControlsWithTag:(NSInteger) tag
+- (NSTableRowView *)tableView:(NSTableView *)tableView rowViewForRow:(NSInteger)row
 {
-    switch (tag) {
-        case REGISTRATION_TAG:
-            [registrationStepper setIntegerValue:[self currentAccount]->registrationExpire()];
-            [registrationField setIntegerValue:[self currentAccount]->registrationExpire()];
-            break;
-        case LOCALPORT_TAG:
-            [localPortStepper setIntegerValue:[self currentAccount]->localPort()];
-            [localPortField setIntegerValue:[self currentAccount]->localPort()];
-            break;
-        case MINAUDIO_TAG:
-            [minAudioPortStepper setIntegerValue:[self currentAccount]->audioPortMin()];
-            [minAudioRTPRange setIntegerValue:[self currentAccount]->audioPortMin()];
-            break;
-        case MAXAUDIO_TAG:
-            [maxAudioPortStepper setIntegerValue:[self currentAccount]->audioPortMax()];
-            [maxAudioRTPRange setIntegerValue:[self currentAccount]->audioPortMax()];
-            break;
-        case MINVIDEO_TAG:
-            [minVideoPortStepper setIntegerValue:[self currentAccount]->videoPortMin()];
-            [minVideoRTPRange setIntegerValue:[self currentAccount]->videoPortMin()];
-            break;
-        case MAXVIDEO_TAG:
-            [maxVideoPortStepper setIntegerValue:[self currentAccount]->videoPortMax()];
-            [maxVideoRTPRange setIntegerValue:[self currentAccount]->videoPortMax()];
-            break;
-        default:
-            break;
+    if(![tableView isEnabled]) {
+        return nil;
+    }
+    return [tableView makeViewWithIdentifier:@"HoverRowView" owner:nil];
+}
+
+#pragma mark - NSTableViewDataSource methods
+
+- (NSInteger)numberOfRowsInTableView:(NSTableView *)tableView {
+    if(tableView == audioCodecView) {
+        return self.accountModel->getAccountInfo(self.selectedAccountID).codecModel->getAudioCodecs().size();
+    } else if (tableView == videoCodecView){
+        return self.accountModel->getAccountInfo(self.selectedAccountID).codecModel->getVideoCodecs().size();
     }
+    return 0;
 }
 
 @end
diff --git a/src/AccDevicesVC.mm b/src/AccDevicesVC.mm
deleted file mode 100644
index a712e88bfe10a9ea2ca2c02ef275cdb3fddb1ad1..0000000000000000000000000000000000000000
--- a/src/AccDevicesVC.mm
+++ /dev/null
@@ -1,134 +0,0 @@
-/*
- *  Copyright (C) 2016 Savoir-faire Linux Inc.
- *  Author: Alexandre Lision <alexandre.lision@savoirfairelinux.com>
- *
- *  This program is free software; you can redistribute it and/or modify
- *  it under the terms of the GNU General Public License as published by
- *  the Free Software Foundation; either version 3 of the License, or
- *  (at your option) any later version.
- *
- *  This program is distributed in the hope that it will be useful,
- *  but WITHOUT ANY WARRANTY; without even the implied warranty of
- *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- *  GNU General Public License for more details.
- *
- *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA.
- */
-
-#import "AccDevicesVC.h"
-
-//Qt
-#import <qitemselectionmodel.h>
-
-//LRC
-#import <accountmodel.h>
-#import <ringdevicemodel.h>
-#import <account.h>
-
-#import "QNSTreeController.h"
-#import "ExportPasswordWC.h"
-
-@interface AccDevicesVC () <ExportPasswordDelegate>
-
-@property QNSTreeController* devicesTreeController;
-@property ExportPasswordWC* passwordWC;
-
-@property (unsafe_unretained) IBOutlet NSOutlineView* deviceDetailsView;
-
-@end
-
-@implementation AccDevicesVC
-
-@synthesize passwordWC;
-
-NSInteger const TAG_NAME        =   100;
-NSInteger const TAG_DEVICE_IDS  =   200;
-
-- (void)awakeFromNib
-{
-    NSLog(@"INIT Devices VC");
-
-    QObject::connect(AccountModel::instance().selectionModel(),
-                     &QItemSelectionModel::currentChanged,
-                     [=](const QModelIndex &current, const QModelIndex &previous) {
-                         if(!current.isValid())
-                             return;
-                         [self loadAccount];
-                     });
-}
-
-
-- (void)loadAccount
-{
-    auto account = AccountModel::instance().selectedAccount();
-    self.devicesTreeController = [[QNSTreeController alloc] initWithQModel:(QAbstractItemModel*)account->ringDeviceModel()];
-    [self.devicesTreeController setAvoidsEmptySelection:NO];
-    [self.devicesTreeController setChildrenKeyPath:@"children"];
-
-    [self.deviceDetailsView bind:@"content" toObject:self.devicesTreeController withKeyPath:@"arrangedObjects" options:nil];
-    [self.deviceDetailsView bind:@"sortDescriptors" toObject:self.devicesTreeController withKeyPath:@"sortDescriptors" options:nil];
-    [self.deviceDetailsView bind:@"selectionIndexPaths" toObject:self.devicesTreeController withKeyPath:@"selectionIndexPaths" options:nil];
-}
-
-- (IBAction)startExportOnRing:(id)sender
-{
-    NSButton* btbAdd = (NSButton *) sender;
-
-    self.account = AccountModel::instance().selectedAccount();
-    [self showPasswordPrompt];
-}
-#pragma mark - Export methods
-
-- (void)showPasswordPrompt
-{
-    auto account = AccountModel::instance().selectedAccount();
-    passwordWC = [[ExportPasswordWC alloc] initWithDelegate:self actionCode:1];
-    [passwordWC setAccount: account];
-#if MAC_OS_X_VERSION_MIN_REQUIRED > MAC_OS_X_VERSION_10_9
-    [self.view.window beginSheet:passwordWC.window completionHandler:nil];
-#else
-    [NSApp beginSheet: passwordWC.window
-       modalForWindow: self.view.window
-        modalDelegate: self
-       didEndSelector: nil
-          contextInfo: nil];
-#endif
-}
-
-
-#pragma mark - NSOutlineViewDelegate methods
-
-- (BOOL)outlineView:(NSOutlineView *)outlineView shouldSelectItem:(id)item
-{
-    return YES;
-}
-
-- (NSTableRowView *)outlineView:(NSOutlineView *)outlineView rowViewForItem:(id)item
-{
-    return [outlineView makeViewWithIdentifier:@"HoverRowView" owner:nil];
-}
-
-- (NSView *)outlineView:(NSOutlineView *)outlineView viewForTableColumn:(NSTableColumn *)tableColumn item:(id)item
-{
-    NSTableView* result = [outlineView makeViewWithIdentifier:@"DeviceView" owner:self];
-
-    QModelIndex qIdx = [self.devicesTreeController toQIdx:((NSTreeNode*)item)];
-    if(!qIdx.isValid())
-        return result;
-
-    NSTextField* nameLabel = [result viewWithTag:TAG_NAME];
-    NSTextField* deviceIDLabel = [result viewWithTag:TAG_DEVICE_IDS];
-
-    auto account = AccountModel::instance().selectedAccount();
-
-    NSString* string = account->ringDeviceModel()->data(qIdx,Qt::DisplayRole).toString().toNSString();
-
-    [nameLabel setStringValue:account->alias().toNSString()];
-    [deviceIDLabel setStringValue:string];
-
-    return result;
-}
-
-@end
diff --git a/src/AccGeneralVC.mm b/src/AccGeneralVC.mm
deleted file mode 100644
index a209136bc8b797e1b3ec116e55d4622d937ad94a..0000000000000000000000000000000000000000
--- a/src/AccGeneralVC.mm
+++ /dev/null
@@ -1,165 +0,0 @@
-/*
- *  Copyright (C) 2015-2016 Savoir-faire Linux Inc.
- *  Author: Alexandre Lision <alexandre.lision@savoirfairelinux.com>
- *
- *  This program is free software; you can redistribute it and/or modify
- *  it under the terms of the GNU General Public License as published by
- *  the Free Software Foundation; either version 3 of the License, or
- *  (at your option) any later version.
- *
- *  This program is distributed in the hope that it will be useful,
- *  but WITHOUT ANY WARRANTY; without even the implied warranty of
- *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- *  GNU General Public License for more details.
- *
- *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA.
- */
-#import "AccGeneralVC.h"
-
-#import <accountmodel.h>
-#import <protocolmodel.h>
-#import <qitemselectionmodel.h>
-
-@interface AccGeneralVC () {
-
-    __unsafe_unretained IBOutlet NSTextField *aliasTextField;
-
-    __unsafe_unretained IBOutlet NSTextField *serverHostTextField;
-    __unsafe_unretained IBOutlet NSTextField *usernameTextField;
-    __unsafe_unretained IBOutlet NSSecureTextField *passwordTextField;
-    NSTextField *clearTextField;
-
-    __unsafe_unretained IBOutlet NSButton *upnpButton;
-    __unsafe_unretained IBOutlet NSButton *autoAnswerButton;
-    __unsafe_unretained IBOutlet NSButton *userAgentButton;
-    __unsafe_unretained IBOutlet NSTextField *userAgentTextField;
-}
-@end
-
-@implementation AccGeneralVC
-
-//Tags for views
-typedef NS_ENUM(NSInteger, TagViews) {
-    ALIAS       = 0,
-    HOSTNAME    = 1,
-    USERNAME    = 2,
-    PASSWORD    = 3,
-    USERAGENT   = 4,
-    DTMF_SIP    = 5,
-    DTMF_RTP    = 6,
-};
-
-- (void)awakeFromNib
-{
-    NSLog(@"INIT General VC");
-    [aliasTextField setTag:TagViews::ALIAS];
-    [serverHostTextField setTag:TagViews::HOSTNAME];
-    [usernameTextField setTag:TagViews::USERNAME];
-    [passwordTextField setTag:TagViews::PASSWORD];
-    [userAgentTextField setTag:TagViews::USERAGENT];
-
-    QObject::connect(AccountModel::instance().selectionModel(),
-                     &QItemSelectionModel::currentChanged,
-                     [=](const QModelIndex &current, const QModelIndex &previous) {
-                         if(!current.isValid())
-                             return;
-                         [self loadAccount];
-                     });
-}
-
-- (IBAction)toggleUpnp:(NSButton *)sender {
-    AccountModel::instance().selectedAccount()->setUpnpEnabled([sender state] == NSOnState);
-}
-
-- (IBAction)toggleAutoAnswer:(NSButton *)sender {
-    AccountModel::instance().selectedAccount()->setAutoAnswer([sender state] == NSOnState);
-}
-
-- (IBAction)toggleCustomAgent:(NSButton *)sender {
-    [userAgentTextField setEnabled:[sender state] == NSOnState];
-    AccountModel::instance().selectedAccount()->setHasCustomUserAgent([sender state] == NSOnState);
-}
-
-- (void)loadAccount
-{
-    auto account = AccountModel::instance().selectedAccount();
-
-    [aliasTextField setStringValue:account->alias().toNSString()];
-    [serverHostTextField setStringValue:account->hostname().toNSString()];
-    [usernameTextField setStringValue:account->username().toNSString()];
-    [passwordTextField setStringValue:account->password().toNSString()];
-    [clearTextField setStringValue:account->password().toNSString()];
-
-    [upnpButton setState:AccountModel::instance().selectedAccount()->isUpnpEnabled()];
-    [userAgentButton setState:AccountModel::instance().selectedAccount()->hasCustomUserAgent()];
-    [userAgentTextField setEnabled:AccountModel::instance().selectedAccount()->hasCustomUserAgent()];
-    [autoAnswerButton setState:AccountModel::instance().selectedAccount()->isAutoAnswer()];
-    [userAgentTextField setStringValue:account->userAgent().toNSString()];
-}
-
-- (IBAction)tryRegistration:(id)sender {
-    AccountModel::instance().selectedAccount() << Account::EditAction::SAVE;
-}
-
-- (IBAction)showPassword:(NSButton *)sender {
-    if (sender.state == NSOnState) {
-        clearTextField = [[NSTextField alloc] initWithFrame:passwordTextField.frame];
-        [clearTextField setTag:passwordTextField.tag];
-        [clearTextField setDelegate:self];
-        [clearTextField setBounds:passwordTextField.bounds];
-        [clearTextField setStringValue:passwordTextField.stringValue];
-        [clearTextField becomeFirstResponder];
-        [self.view addSubview:clearTextField];
-        [passwordTextField setHidden:YES];
-    } else {
-        [passwordTextField setStringValue:clearTextField.stringValue];
-        [passwordTextField setHidden:NO];
-        [clearTextField removeFromSuperview];
-        clearTextField = nil;
-    }
-}
-
-/**
- *  Debug purpose
- */
--(void) dumpFrame:(CGRect) frame WithName:(NSString*) name
-{
-    NSLog(@"frame %@ : %f %f %f %f \n\n",name ,frame.origin.x, frame.origin.y, frame.size.width, frame.size.height);
-}
-
-#pragma mark - NSTextFieldDelegate methods
-
-- (BOOL)control:(NSControl *)control textShouldBeginEditing:(NSText *)fieldEditor
-{
-    return YES;
-}
-
--(void)controlTextDidChange:(NSNotification *)notif
-{
-    NSTextField *textField = [notif object];
-
-    switch ([textField tag]) {
-        case TagViews::ALIAS:
-            AccountModel::instance().selectedAccount()->setAlias([[textField stringValue] UTF8String]);
-            AccountModel::instance().selectedAccount()->setDisplayName([[textField stringValue] UTF8String]);
-            break;
-        case TagViews::HOSTNAME:
-            AccountModel::instance().selectedAccount()->setHostname([[textField stringValue] UTF8String]);
-            break;
-        case TagViews::USERNAME:
-            AccountModel::instance().selectedAccount()->setUsername([[textField stringValue] UTF8String]);
-            break;
-        case TagViews::PASSWORD:
-            AccountModel::instance().selectedAccount()->setPassword([[textField stringValue] UTF8String]);
-            break;
-        case TagViews::USERAGENT:
-            AccountModel::instance().selectedAccount()->setUserAgent([[textField stringValue] UTF8String]);
-            break;
-        default:
-            break;
-    }
-}
-
-@end
diff --git a/src/AccMediaVC.h b/src/AccMediaVC.h
deleted file mode 100644
index 9082adfe1d0786083a8df33ac16ba270f1e246bf..0000000000000000000000000000000000000000
--- a/src/AccMediaVC.h
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- *  Copyright (C) 2015-2016 Savoir-faire Linux Inc.
- *  Author: Alexandre Lision <alexandre.lision@savoirfairelinux.com>
- *
- *  This program is free software; you can redistribute it and/or modify
- *  it under the terms of the GNU General Public License as published by
- *  the Free Software Foundation; either version 3 of the License, or
- *  (at your option) any later version.
- *
- *  This program is distributed in the hope that it will be useful,
- *  but WITHOUT ANY WARRANTY; without even the implied warranty of
- *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- *  GNU General Public License for more details.
- *
- *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA.
- */
-
-#import <Cocoa/Cocoa.h>
-
-#import <account.h>
-
-#import "QNSTreeController.h"
-
-@interface AccMediaVC : NSViewController <NSOutlineViewDelegate>
-
-@end
\ No newline at end of file
diff --git a/src/AccMediaVC.mm b/src/AccMediaVC.mm
deleted file mode 100644
index c1c85298914de3a1ef716c2f80ec21ec28b788d5..0000000000000000000000000000000000000000
--- a/src/AccMediaVC.mm
+++ /dev/null
@@ -1,268 +0,0 @@
-/*
- *  Copyright (C) 2015-2016 Savoir-faire Linux Inc.
- *  Author: Alexandre Lision <alexandre.lision@savoirfairelinux.com>
- *
- *  This program is free software; you can redistribute it and/or modify
- *  it under the terms of the GNU General Public License as published by
- *  the Free Software Foundation; either version 3 of the License, or
- *  (at your option) any later version.
- *
- *  This program is distributed in the hope that it will be useful,
- *  but WITHOUT ANY WARRANTY; without even the implied warranty of
- *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- *  GNU General Public License for more details.
- *
- *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA.
- */
-#import "AccMediaVC.h"
-
-///Qt
-#import <QSortFilterProxyModel>
-#import <qitemselectionmodel.h>
-
-///LRC
-#import <codecmodel.h>
-#import <accountmodel.h>
-#import <ringtonemodel.h>
-#import <ringtone.h>
-
-@interface AccMediaVC ()
-
-@property QNSTreeController* audioTreeController;
-@property QNSTreeController* videoTreeController;
-@property (unsafe_unretained) IBOutlet NSPopUpButton* ringtonePopUpButton;
-@property (unsafe_unretained) IBOutlet NSButton* enableRingtone;
-@property (unsafe_unretained) IBOutlet NSButton* playRingtone;
-@property (unsafe_unretained) IBOutlet NSButton *toggleVideoButton;
-@property (unsafe_unretained) IBOutlet NSOutlineView* audioCodecView;
-@property (unsafe_unretained) IBOutlet NSOutlineView* videoCodecView;
-@property (unsafe_unretained) IBOutlet NSView* videoPanelContainer;
-
-@end
-
-@implementation AccMediaVC
-@synthesize audioTreeController, videoTreeController;
-@synthesize audioCodecView, videoCodecView;
-@synthesize videoPanelContainer;
-@synthesize ringtonePopUpButton, enableRingtone, playRingtone, toggleVideoButton;
-
-NSInteger const TAG_CHECK       =   100;
-NSInteger const TAG_NAME        =   200;
-NSInteger const TAG_DETAILS     =   300;
-
-NSString*  const ID_AUDIO       =   @"audioview";
-NSString*  const ID_VIDEO       =   @"videoview";
-
-- (void) loadView
-{
-    [super loadView];
-    NSLog(@"INIT Media VC");
-    QObject::connect(AccountModel::instance().selectionModel(),
-                     &QItemSelectionModel::currentChanged,
-                     [=](const QModelIndex &current, const QModelIndex &previous) {
-                         if(!current.isValid())
-                             return;
-                         [self loadAccount];
-                     });
-
-    QObject::connect(&RingtoneModel::instance(),
-                     &QAbstractItemModel::dataChanged,
-                     [=](const QModelIndex &current, const QModelIndex &previous) {
-                         if(!current.isValid())
-                             return;
-
-                         NSString* label;
-                         if (!RingtoneModel::instance().isPlaying()) {
-                             label = NSLocalizedString(@"Play", @"Button label");
-                         } else {
-                             label = NSLocalizedString(@"Pause", @"Button label");
-                         }
-                         [playRingtone setTitle:label];
-                     });
-}
-
-- (void)loadAccount
-{
-    // AUDIO
-    [self loadAudioPrefs];
-
-    // VIDEO
-    [self loadVideoPrefs];
-
-}
-
-#pragma Audio Preferences method
-
-- (void) loadAudioPrefs
-{
-    auto account = AccountModel::instance().selectedAccount();
-    audioTreeController = [[QNSTreeController alloc] initWithQModel:account->codecModel()->audioCodecs()];
-    [audioTreeController setAvoidsEmptySelection:NO];
-    [audioTreeController setChildrenKeyPath:@"children"];
-    [audioCodecView bind:@"content" toObject:audioTreeController withKeyPath:@"arrangedObjects" options:nil];
-    [audioCodecView bind:@"sortDescriptors" toObject:audioTreeController withKeyPath:@"sortDescriptors" options:nil];
-    [audioCodecView bind:@"selectionIndexPaths" toObject:audioTreeController withKeyPath:@"selectionIndexPaths" options:nil];
-    [audioCodecView setIdentifier:ID_AUDIO];
-
-    QModelIndex qIdx = RingtoneModel::instance().selectionModel(account)->currentIndex();
-    [ringtonePopUpButton removeAllItems];
-    [ringtonePopUpButton addItemWithTitle:RingtoneModel::instance().data(qIdx, Qt::DisplayRole).toString().toNSString()];
-
-    [enableRingtone setState:account->isRingtoneEnabled()];
-    [ringtonePopUpButton setEnabled:account->isRingtoneEnabled()];
-}
-
-- (IBAction)startStopRingtone:(id)sender {
-    auto qIdx = RingtoneModel::instance().selectionModel(AccountModel::instance().selectedAccount())->currentIndex();
-    RingtoneModel::instance().play(qIdx);
-}
-
-- (IBAction)toggleRingtoneEnabled:(id)sender {
-    AccountModel::instance().selectedAccount()->setRingtoneEnabled([sender state]);
-    [ringtonePopUpButton setEnabled:[sender state]];
-}
-
-- (IBAction)chooseRingtone:(id)sender {
-    int index = [sender indexOfSelectedItem];
-    QModelIndex qIdx = RingtoneModel::instance().index(index, 0);
-    RingtoneModel::instance().selectionModel(AccountModel::instance().selectedAccount())->setCurrentIndex(qIdx, QItemSelectionModel::ClearAndSelect);
-}
-
-- (IBAction)moveAudioCodecUp:(id)sender {
-    if([[audioTreeController selectedNodes] count] > 0) {
-        QModelIndex qIdx = [audioTreeController toQIdx:[audioTreeController selectedNodes][0]];
-        if(!qIdx.isValid())
-            return;
-
-        QMimeData* mime = AccountModel::instance().selectedAccount()->codecModel()->audioCodecs()->mimeData(QModelIndexList() << qIdx);
-        AccountModel::instance().selectedAccount()->codecModel()->audioCodecs()->dropMimeData(mime, Qt::MoveAction, qIdx.row() - 1, 0, QModelIndex());
-    }
-}
-
-- (IBAction)moveAudioCodecDown:(id)sender {
-    if([[audioTreeController selectedNodes] count] > 0) {
-        QModelIndex qIdx = [audioTreeController toQIdx:[audioTreeController selectedNodes][0]];
-        if(!qIdx.isValid())
-            return;
-
-        QMimeData* mime = AccountModel::instance().selectedAccount()->codecModel()->audioCodecs()->mimeData(QModelIndexList() << qIdx);
-        AccountModel::instance().selectedAccount()->codecModel()->audioCodecs()->dropMimeData(mime, Qt::MoveAction, qIdx.row() + 1, 0, QModelIndex());
-    }
-}
-
-- (IBAction)toggleAudioCodec:(NSButton*)sender {
-    NSInteger row = [audioCodecView rowForView:sender];
-    QModelIndex qIdx = AccountModel::instance().selectedAccount()->codecModel()->audioCodecs()->index(row, 0, QModelIndex());
-    AccountModel::instance().selectedAccount()->codecModel()->audioCodecs()->setData(qIdx, sender.state == NSOnState ? Qt::Checked : Qt::Unchecked, Qt::CheckStateRole);
-}
-
-#pragma Video Preferences method
-
--(void) loadVideoPrefs
-{
-    auto account = AccountModel::instance().selectedAccount();
-    videoTreeController = [[QNSTreeController alloc] initWithQModel:account->codecModel()->videoCodecs()];
-    [videoTreeController setAvoidsEmptySelection:NO];
-    [videoTreeController setChildrenKeyPath:@"children"];
-
-    [videoCodecView setIdentifier:ID_VIDEO];
-    [videoCodecView bind:@"content" toObject:videoTreeController withKeyPath:@"arrangedObjects" options:nil];
-    [videoCodecView bind:@"sortDescriptors" toObject:videoTreeController withKeyPath:@"sortDescriptors" options:nil];
-    [videoCodecView bind:@"selectionIndexPaths" toObject:videoTreeController withKeyPath:@"selectionIndexPaths" options:nil];
-    [videoPanelContainer setHidden:!account->isVideoEnabled()];
-    [toggleVideoButton setState:account->isVideoEnabled()?NSOnState:NSOffState];
-
-}
-
-- (IBAction)toggleVideoEnabled:(id)sender {
-    AccountModel::instance().selectedAccount()->setVideoEnabled([sender state] == NSOnState);
-    [videoPanelContainer setHidden:!AccountModel::instance().selectedAccount()->isVideoEnabled()];
-}
-
-- (IBAction)toggleVideoCodec:(NSButton*)sender {
-    NSInteger row = [videoCodecView rowForView:sender];
-    QModelIndex qIdx = AccountModel::instance().selectedAccount()->codecModel()->videoCodecs()->index(row, 0, QModelIndex());
-    AccountModel::instance().selectedAccount()->codecModel()->videoCodecs()->setData(qIdx, sender.state == NSOnState ? Qt::Checked : Qt::Unchecked, Qt::CheckStateRole);
-}
-
-- (IBAction)moveVideoCodecUp:(id)sender {
-
-    if([[videoTreeController selectedNodes] count] > 0) {
-        QModelIndex qIdx = [videoTreeController toQIdx:[videoTreeController selectedNodes][0]];
-        if(!qIdx.isValid())
-            return;
-
-        QMimeData* mime = AccountModel::instance().selectedAccount()->codecModel()->mimeData(QModelIndexList() << qIdx);
-        AccountModel::instance().selectedAccount()->codecModel()->dropMimeData(mime, Qt::MoveAction, qIdx.row() - 1, 0, QModelIndex());
-    }
-}
-
-- (IBAction)moveVideoCodecDown:(id)sender {
-    if([[videoTreeController selectedNodes] count] > 0) {
-        QModelIndex qIdx = [videoTreeController toQIdx:[videoTreeController selectedNodes][0]];
-        if(!qIdx.isValid())
-            return;
-
-        QMimeData* mime = AccountModel::instance().selectedAccount()->codecModel()->mimeData(QModelIndexList() << qIdx);
-        AccountModel::instance().selectedAccount()->codecModel()->dropMimeData(mime, Qt::MoveAction, qIdx.row() + 1, 0, QModelIndex());
-    }
-}
-
-
-#pragma mark - NSOutlineViewDelegate methods
-
-- (BOOL)outlineView:(NSOutlineView *)outlineView shouldSelectItem:(id)item;
-{
-    return YES;
-}
-
-- (NSView *)outlineView:(NSOutlineView *)outlineView viewForTableColumn:(NSTableColumn *)tableColumn item:(id)item
-{
-    NSTableView* result = [outlineView makeViewWithIdentifier:@"CodecView" owner:self];
-
-    QModelIndex qIdx;
-    if ([outlineView.identifier isEqualToString:ID_AUDIO])
-        qIdx = [audioTreeController toQIdx:((NSTreeNode*)item)];
-    else
-        qIdx = [videoTreeController toQIdx:((NSTreeNode*)item)];
-
-    if(!qIdx.isValid())
-        return result;
-    NSTextField* name = [result viewWithTag:TAG_NAME];
-    NSTextField* details = [result viewWithTag:TAG_DETAILS];
-    NSButton* check = [result viewWithTag:TAG_CHECK];
-
-    if ([outlineView.identifier isEqualToString:ID_AUDIO]) {
-        [name setStringValue:AccountModel::instance().selectedAccount()->codecModel()->audioCodecs()->data(qIdx, CodecModel::Role::NAME).toString().toNSString()];
-        [details setStringValue:[NSString stringWithFormat:@"%@ Hz", AccountModel::instance().selectedAccount()->codecModel()->audioCodecs()->data(qIdx, CodecModel::Role::SAMPLERATE).toString().toNSString()]];
-        [check setState:AccountModel::instance().selectedAccount()->codecModel()->audioCodecs()->data(qIdx, Qt::CheckStateRole).value<BOOL>()?NSOnState:NSOffState];
-    } else {
-        [name setStringValue:AccountModel::instance().selectedAccount()->codecModel()->videoCodecs()->data(qIdx, CodecModel::Role::NAME).toString().toNSString()];
-        [check setState:AccountModel::instance().selectedAccount()->codecModel()->videoCodecs()->data(qIdx, Qt::CheckStateRole).value<BOOL>()?NSOnState:NSOffState];
-    }
-
-    return result;
-}
-
-#pragma mark - NSMenuDelegate methods
-
-- (BOOL)menu:(NSMenu *)menu updateItem:(NSMenuItem *)item atIndex:(NSInteger)index shouldCancel:(BOOL)shouldCancel
-{
-    QModelIndex qIdx;
-    qIdx = RingtoneModel::instance().index(index, 0);
-    [item setTitle:RingtoneModel::instance().data(qIdx, Qt::DisplayRole).toString().toNSString()];
-
-    if (qIdx == RingtoneModel::instance().selectionModel(AccountModel::instance().selectedAccount())->currentIndex()) {
-        [ringtonePopUpButton selectItem:item];
-    }
-    return YES;
-}
-
-- (NSInteger)numberOfItemsInMenu:(NSMenu *)menu
-{
-    return RingtoneModel::instance().rowCount();
-}
-
-@end
diff --git a/src/AccSecurityVC.h b/src/AccRingGeneralVC.h
similarity index 59%
rename from src/AccSecurityVC.h
rename to src/AccRingGeneralVC.h
index b77b6ee96ca0672460c2392d28061884f3071b48..974d1abae47dc969b5bc9b047be2cd5a918be3d8 100644
--- a/src/AccSecurityVC.h
+++ b/src/AccRingGeneralVC.h
@@ -1,6 +1,7 @@
 /*
- *  Copyright (C) 2015-2016 Savoir-faire Linux Inc.
+ *  Copyright (C) 2015-2018 Savoir-faire Linux Inc.
  *  Author: Alexandre Lision <alexandre.lision@savoirfairelinux.com>
+ *  Author: Kateryna Kostiuk <kateryna.kostiuk@savoirfairelinux.com>
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -18,7 +19,16 @@
  */
 
 #import <Cocoa/Cocoa.h>
+#import "LrcModelsProtocol.h"
+#import "BackupAccountWC.h"
+#import "RegisterNameWC.h"
+#import "AccountSettingsVC.h"
+#import "PasswordChangeWC.h"
 
-@interface AccSecurityVC : NSViewController<NSMenuDelegate, NSPathControlDelegate, NSOpenSavePanelDelegate>
+@interface AccRingGeneralVC : NSViewController <NSTextFieldDelegate, LrcModelsProtocol, BackupAccountDelegate, RegisterNameDelegate, AccountGeneralProtocol, NSTableViewDelegate, NSTableViewDataSource, PasswordChangeDelegate>
+
+- (void) setSelectedAccount:(std::string) account;
+
+@property (assign)BOOL accountEnabled;
 
 @end
diff --git a/src/AccRingGeneralVC.mm b/src/AccRingGeneralVC.mm
new file mode 100644
index 0000000000000000000000000000000000000000..fb5bdc20d134e21bdd3460030400117893464e56
--- /dev/null
+++ b/src/AccRingGeneralVC.mm
@@ -0,0 +1,546 @@
+/*
+ *  Copyright (C) 2015-2018 Savoir-faire Linux Inc.
+ *  Author: Alexandre Lision <alexandre.lision@savoirfairelinux.com>
+ *  Author: Kateryna Kostiuk <kateryna.kostiuk@savoirfairelinux.com>
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; either version 3 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA.
+ */
+#import "AccRingGeneralVC.h"
+
+//cocoa
+#import <Quartz/Quartz.h>
+
+
+//Qt
+#import <QSize>
+#import <QtMacExtras/qmacfunctions.h>
+#import <QPixmap>
+
+//LRC
+#import <api/lrc.h>
+#import <api/newaccountmodel.h>
+#import <api/newdevicemodel.h>
+#import <interfaces/pixmapmanipulatori.h>
+#import <globalinstances.h>
+
+#import "RegisterNameWC.h"
+#import "RestoreAccountWC.h"
+#import "BackupAccountWC.h"
+#import "views/NSColor+RingTheme.h"
+#import "views/NSImage+Extensions.h"
+#import "views/HoverTableRowView.h"
+#import "ExportPasswordWC.h"
+#import "utils.h"
+
+@interface AccRingGeneralVC ()
+
+@property (unsafe_unretained) IBOutlet NSTextField *displayNameField;
+@property (unsafe_unretained) IBOutlet NSTextField *ringIDField;
+@property (unsafe_unretained) IBOutlet NSTextField *registeredNameField;
+@property (unsafe_unretained) IBOutlet NSButton *registerNameButton;
+@property (unsafe_unretained) IBOutlet NSButton* photoView;
+@property (unsafe_unretained) IBOutlet NSButton* passwordButton;
+@property (unsafe_unretained) IBOutlet NSButton* removeAccountButton;
+@property (unsafe_unretained) IBOutlet NSImageView* addProfilePhotoImage;
+@property (unsafe_unretained) IBOutlet NSTableView* devicesTableView;
+@property (unsafe_unretained) IBOutlet NSTableView* blockedContactsTableView;
+@property (assign) IBOutlet NSLayoutConstraint* buttonRegisterWidthConstraint;
+@property (assign) IBOutlet NSLayoutConstraint* bannedContactHeightConstraint;
+@property (assign) IBOutlet NSLayoutConstraint* advancedButtonMarginConstraint;
+
+
+@property AbstractLoadingWC* accountModal;
+@property PasswordChangeWC* passwordModal;
+@property std::string selectedAccountID;
+
+@end
+
+@implementation AccRingGeneralVC
+
+QMetaObject::Connection deviceAddedSignal;
+QMetaObject::Connection deviceRevokedSignal;
+QMetaObject::Connection deviceUpdatedSignal;
+QMetaObject::Connection contactBlockedSignal;
+QMetaObject::Connection bannedContactsChangedSignal;
+
+
+@synthesize displayNameField;
+@synthesize ringIDField;
+@synthesize registeredNameField;
+@synthesize photoView;
+@synthesize addProfilePhotoImage;
+@synthesize accountModel;
+@synthesize registerNameButton, passwordButton, removeAccountButton;
+@synthesize buttonRegisterWidthConstraint;
+@synthesize accountModal;
+@synthesize delegate;
+@synthesize devicesTableView;
+@synthesize blockedContactsTableView;
+
+
+typedef NS_ENUM(NSInteger, TagViews) {
+    DISPLAYNAME = 100,
+    DEVICE_NAME_TAG = 200,
+    DEVICE_ID_TAG = 300,
+    DEVICE_EDIT_TAG = 400,
+    DEVICE_REVOKE_TAG = 500,
+    BANNED_CONTACT_NAME_TAG = 600,
+    BANNED_CONTACT_ID_TAG = 700,
+    UNBLOCK_CONTACT_TAG = 800
+};
+
+-(id) initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil accountmodel:(lrc::api::NewAccountModel*) accountModel
+{
+    if (self =  [self initWithNibName: nibNameOrNil bundle:nibBundleOrNil])
+    {
+        self.accountModel= accountModel;
+    }
+    return self;
+}
+
+- (void)awakeFromNib
+{
+    [super awakeFromNib];
+    [photoView setBordered:YES];
+    [addProfilePhotoImage setWantsLayer: YES];
+    devicesTableView.delegate = self;
+    devicesTableView.dataSource = self;
+    blockedContactsTableView.delegate = self;
+    blockedContactsTableView.dataSource= self;
+}
+
+- (void)viewDidLoad {
+    [super viewDidLoad];
+    [self updateView];
+}
+
+- (void) setSelectedAccount:(std::string) account {
+    self.selectedAccountID = account;
+    [self connectSignals];
+    [self updateView];
+    [self hideBannedContacts];
+}
+
+-(void) updateView {
+    const auto& account = accountModel->getAccountInfo(self.selectedAccountID);
+    QByteArray ba = QByteArray::fromStdString(account.profileInfo.avatar);
+
+    QVariant photo = GlobalInstances::pixmapManipulator().personPhoto(ba, nil);
+    if(QtMac::toNSImage(qvariant_cast<QPixmap>(photo))) {
+        [photoView setBordered:NO];
+        NSImage *image = QtMac::toNSImage(qvariant_cast<QPixmap>(photo));
+        CGFloat newSize = MIN(image.size.height, image.size.width);
+        image = [image cropImageToSize:CGSizeMake(newSize, newSize)];
+        [photoView setImage: [image roundCorners: image.size.height * 0.5]];
+        [addProfilePhotoImage setHidden:YES];
+    } else {
+        [photoView setImage:nil];
+        [photoView setBordered:YES];
+        [addProfilePhotoImage setHidden:NO];
+    }
+    NSString* displayName = @(account.profileInfo.alias.c_str());
+    [displayNameField setStringValue:displayName];
+    [ringIDField setStringValue:@(account.profileInfo.uri.c_str())];
+    if(account.registeredName.empty()) {
+        [registerNameButton setHidden:NO];
+        buttonRegisterWidthConstraint.constant = 260.0;
+    } else {
+        buttonRegisterWidthConstraint.constant = 0.0;
+        [registerNameButton setHidden:YES];
+    }
+
+    [registeredNameField setStringValue:@(account.registeredName.c_str())];
+
+    lrc::api::account::ConfProperties_t accountProperties = self.accountModel->getAccountConfig(self.selectedAccountID);
+    [passwordButton setTitle:accountProperties.archiveHasPassword ? @"Change password" : @"Create password"];
+    self.accountEnabled = account.enabled;
+
+    NSMutableAttributedString *colorTitle = [[NSMutableAttributedString alloc] initWithAttributedString:[removeAccountButton attributedTitle]];
+    NSRange titleRange = NSMakeRange(0, [colorTitle length]);
+    [colorTitle addAttribute:NSForegroundColorAttributeName value:[NSColor errorColor] range:titleRange];
+    [removeAccountButton setAttributedTitle:colorTitle];
+    [devicesTableView reloadData];
+    [blockedContactsTableView reloadData];
+}
+
+-(void) connectSignals {
+    QObject::disconnect(deviceAddedSignal);
+    QObject::disconnect(deviceRevokedSignal);
+    QObject::disconnect(deviceUpdatedSignal);
+    QObject::disconnect(bannedContactsChangedSignal);
+    deviceAddedSignal = QObject::connect(&*(self.accountModel->getAccountInfo(self.selectedAccountID)).deviceModel,
+                                         &lrc::api::NewDeviceModel::deviceAdded,
+                                         [self] (const std::string &id) {
+                                             [devicesTableView reloadData];
+                                         });
+    deviceRevokedSignal = QObject::connect(&*(self.accountModel->getAccountInfo(self.selectedAccountID)).deviceModel,
+                                           &lrc::api::NewDeviceModel::deviceRevoked,
+                                           [self] (const std::string &id, const lrc::api::NewDeviceModel::Status status) {
+                                               switch (status) {
+                                                   case lrc::api::NewDeviceModel::Status::SUCCESS:
+                                                       [devicesTableView reloadData];
+                                                       break;
+                                                   case lrc::api::NewDeviceModel::Status::WRONG_PASSWORD:
+                                                       [self showAlertWithTitle: @"" andText: @"Device revocation failed with error: Wrong password"];
+                                                       break;
+                                                   case lrc::api::NewDeviceModel::Status::UNKNOWN_DEVICE:
+                                                       [self showAlertWithTitle: @"" andText: @"Device revocation failed with error: Unknown device"];
+                                                       break;
+                                               }
+                                           });
+    deviceUpdatedSignal = QObject::connect(&*(self.accountModel->getAccountInfo(self.selectedAccountID)).deviceModel,
+                                           &lrc::api::NewDeviceModel::deviceUpdated,
+                                           [self] (const std::string &id) {
+                                               [devicesTableView reloadData];
+                                           });
+    bannedContactsChangedSignal = QObject::connect(&*(self.accountModel->getAccountInfo(self.selectedAccountID)).contactModel,
+                                                   &lrc::api::ContactModel::bannedStatusChanged,
+                                                   [self] (const std::string &contactUri, bool banned) {
+                                                       [blockedContactsTableView reloadData];
+                                                   });
+}
+
+-(void) showAlertWithTitle: (NSString *) title andText: (NSString *)text {
+    NSAlert *alert = [[NSAlert alloc] init];
+    [alert addButtonWithTitle:@"OK"];
+    [alert setMessageText:title];
+    [alert setInformativeText:text];
+    [alert runModal];
+}
+
+- (void)pictureTakerDidEnd:(IKPictureTaker *) picker
+                returnCode:(NSInteger) code
+               contextInfo:(void*) contextInfo
+{
+    if (auto outputImage = [picker outputImage]) {
+        auto image = [picker inputImage];
+        CGFloat newSize = MIN(image.size.height, image.size.width);
+        outputImage = [outputImage cropImageToSize:CGSizeMake(newSize, newSize)];
+        [photoView setImage: [outputImage roundCorners: outputImage.size.height * 0.5]];
+        [photoView setBordered:NO];
+        [addProfilePhotoImage setHidden:YES];
+        auto imageToBytes = QByteArray::fromNSData([outputImage TIFFRepresentation]).toBase64();
+        std::string imageToString = std::string(imageToBytes.constData(), imageToBytes.length());
+        self.accountModel->setAvatar(self.selectedAccountID, imageToString);
+    } else if(!photoView.image) {
+        [photoView setBordered:YES];
+        [addProfilePhotoImage setHidden:NO];
+    }
+}
+
+#pragma mark - RegisterNameDelegate methods
+
+- (void) didRegisterName:(NSString *) name withSuccess:(BOOL) success
+{
+    [self.accountModal close];
+    if(!success) {
+        return;
+    }
+
+    if(name.length == 0) {
+        return;
+    }
+    buttonRegisterWidthConstraint.constant = 0.0;
+    [registerNameButton setHidden:YES];
+    [registeredNameField setStringValue:name];
+}
+
+#pragma mark - NSTextFieldDelegate delegate methods
+
+- (void)controlTextDidChange:(NSNotification *)notif
+{
+    NSTextField* textField = [notif object];
+    if (textField.tag != DISPLAYNAME) {
+        return;
+    }
+    NSString* displayName = textField.stringValue;
+
+    [NSObject cancelPreviousPerformRequestsWithTarget:self];
+    self.accountModel->setAlias(self.selectedAccountID, [displayName UTF8String]);
+    lrc::api::account::ConfProperties_t accountProperties = self.accountModel->getAccountConfig(self.selectedAccountID);
+    self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+}
+
+#pragma mark - NSTableViewDataSource methods
+
+- (NSInteger)numberOfRowsInTableView:(NSTableView *)tableView {
+    if(tableView == devicesTableView) {
+        return self.accountModel->getAccountInfo(self.selectedAccountID).deviceModel->getAllDevices().size();
+    } else if (tableView == blockedContactsTableView){
+        return self.accountModel->getAccountInfo(self.selectedAccountID).contactModel->getBannedContacts().size();
+    }
+    return 0;
+}
+
+#pragma mark - NSTableViewDelegate methods
+- (NSView *)tableView:(NSTableView *)tableView viewForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row
+{
+    if(tableView == devicesTableView) {
+        NSTableCellView* deviceView = [tableView makeViewWithIdentifier:@"TableCellDeviceItem" owner:self];
+        NSTextField* nameLabel = [deviceView viewWithTag: DEVICE_NAME_TAG];
+        NSTextField* idLabel = [deviceView viewWithTag: DEVICE_ID_TAG];
+        NSButton* revokeButton = [deviceView viewWithTag: DEVICE_REVOKE_TAG];
+        NSButton* editButton = [deviceView viewWithTag: DEVICE_EDIT_TAG];
+        [editButton setAction:@selector(editDevice:)];
+        [editButton setTarget:self];
+        [revokeButton setAction:@selector(startDeviceRevocation:)];
+        [revokeButton setTarget:self];
+        auto devices = self.accountModel->getAccountInfo(self.selectedAccountID).deviceModel->getAllDevices();
+        auto device = devices.begin();
+
+        std::advance(device, row);
+
+        auto name = device->name;
+        auto deviceID = device->id;
+
+        [nameLabel setStringValue: @(name.c_str())];
+        [idLabel setStringValue: @(deviceID.c_str())];
+        [revokeButton setHidden: device->isCurrent];
+        [editButton setHidden: !device->isCurrent];
+        return deviceView;
+    } else if (tableView == blockedContactsTableView) {
+        NSTableCellView* contactView = [tableView makeViewWithIdentifier:@"TableCellBannedContactItem" owner:self];
+        NSTextField* nameLabel = [contactView viewWithTag: BANNED_CONTACT_NAME_TAG];
+        NSTextField* idLabel = [contactView viewWithTag: BANNED_CONTACT_ID_TAG];
+        NSButton* revokeButton = [contactView viewWithTag: UNBLOCK_CONTACT_TAG];
+        auto contacts = self.accountModel->getAccountInfo(self.selectedAccountID).contactModel->getBannedContacts();
+        auto contactID = contacts.begin();
+        std::advance(contactID, row);
+        [idLabel setStringValue: @(contactID->c_str())];
+        auto contact = self.accountModel->getAccountInfo(self.selectedAccountID).contactModel->getContact([@(contactID->c_str()) UTF8String]);
+        [nameLabel setStringValue: bestNameForContact(contact)];
+        [revokeButton setAction:@selector(unblockContact:)];
+        [revokeButton setTarget:self];
+        return contactView;
+    }
+}
+
+- (CGFloat)tableView:(NSTableView *)tableView heightOfRow:(NSInteger)row
+{
+    if(tableView == devicesTableView) {
+        return tableView.rowHeight;
+    } else if (tableView == blockedContactsTableView) {
+        CGFloat height = self.bannedContactHeightConstraint.constant;
+        if(height == 150) {
+            return 52;
+        } else {
+            return 1;
+        }
+    }
+}
+
+- (NSTableRowView *)tableView:(NSTableView *)tableView rowViewForRow:(NSInteger)row
+{
+    return [tableView makeViewWithIdentifier:@"HoverRowView" owner:nil];
+}
+
+#pragma mark - Actions
+
+- (IBAction)editPhoto:(id)sender
+{
+    auto pictureTaker = [IKPictureTaker pictureTaker];
+
+    [pictureTaker beginPictureTakerSheetForWindow:[self.view window]
+                                     withDelegate:self
+                                   didEndSelector:@selector(pictureTakerDidEnd:returnCode:contextInfo:)
+                                      contextInfo:nil];
+
+}
+
+- (IBAction)startExportOnRing:(id)sender
+{
+    ExportPasswordWC *passwordWC = [[ExportPasswordWC alloc] initWithNibName:@"ExportPasswordWindow" bundle: nil accountmodel: self.accountModel];
+    passwordWC.selectedAccountID = self.selectedAccountID;
+    accountModal = passwordWC;
+    [self.view.window beginSheet: passwordWC.window completionHandler:nil];
+}
+- (IBAction)triggerAdwancedSettings: (NSButton *)sender {
+    [self.delegate triggerAdvancedOptions];
+}
+
+- (IBAction)enableAccount: (NSButton *)sender {
+    const auto& account = accountModel->getAccountInfo(self.selectedAccountID);
+    self.accountModel->enableAccount(self.selectedAccountID, !account.enabled);
+    self.accountEnabled = account.enabled;
+    lrc::api::account::ConfProperties_t accountProperties = self.accountModel->getAccountConfig(self.selectedAccountID);
+    self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+}
+
+- (IBAction)removeAccount:(id)sender
+{
+    NSAlert *alert = [[NSAlert alloc] init];
+    [alert addButtonWithTitle:@"OK"];
+    [alert addButtonWithTitle:@"Cancel"];
+    [alert setMessageText: NSLocalizedString(@"Remove account",
+                                             @"Remove account alert title")];
+    [alert setInformativeText:NSLocalizedString(@"By clicking \"OK\" you will remove this account on this device! This action can not be undone. Also, your registered name can be lost.",
+                                                @"Remove account alert message")];
+
+    if ([alert runModal] == NSAlertFirstButtonReturn) {
+        self.accountModel->removeAccount(self.selectedAccountID);
+    }
+}
+
+- (IBAction)exportAccount:(id)sender
+{
+    BackupAccountWC* passwordWC = [[BackupAccountWC alloc] initWithNibName:@"BackupAccountWindow" bundle: nil accountmodel: self.accountModel];
+    passwordWC.delegate = self;
+    [passwordWC setAllowFileSelection:NO];
+    accountModal = passwordWC;
+    [self.view.window beginSheet:passwordWC.window completionHandler:nil];
+}
+
+- (IBAction)startNameRegistration:(id)sender
+{
+    RegisterNameWC* registerWC = [[RegisterNameWC alloc] initWithNibName:@"RegisterNameWindow" bundle: nil accountmodel: self.accountModel];
+    registerWC.delegate = self;
+    registerWC.selectedAccountID = self.selectedAccountID;
+    self.accountModal = registerWC;
+    [self.view.window beginSheet:registerWC.window completionHandler:nil];
+}
+- (IBAction)changePassword:(id)sender
+{
+    PasswordChangeWC* passwordWC = [[PasswordChangeWC alloc] initWithNibName:@"PasswordChange" bundle: nil accountmodel: self.accountModel];
+    passwordWC.selectedAccountID = self.selectedAccountID;
+    passwordWC.delegate = self;
+    [self.view.window beginSheet:passwordWC.window completionHandler:nil];
+    self.passwordModal = passwordWC;
+}
+
+- (IBAction)showBanned: (NSButton *)sender {
+    CGFloat height = self.bannedContactHeightConstraint.constant;
+    NSRect frame = self.view.frame;
+    if(height == 150) {
+        frame.size.height =  frame.size.height - 150 - 10;
+    } else {
+        frame.size.height =  frame.size.height + 150 + 10;
+    }
+    self.view.frame = frame;
+    [self.delegate updateFrame];
+    CGFloat advancedHeight = self.advancedButtonMarginConstraint.constant;
+    self.advancedButtonMarginConstraint.constant = (height== 2) ? 40 : 30;
+    self.bannedContactHeightConstraint.constant = (height== 2) ? 150 : 2;
+    [[[self.blockedContactsTableView superview] superview] setHidden:![[[self.blockedContactsTableView superview] superview] isHidden]];
+    [blockedContactsTableView reloadData];
+}
+
+-(void) hideBannedContacts {
+    CGFloat height = self.bannedContactHeightConstraint.constant;
+    NSRect frame = self.view.frame;
+    if(height == 150) {
+        [self showBanned:nil];
+    }
+}
+
+- (IBAction)startDeviceRevocation:(NSView*)sender
+{
+    NSInteger row = [devicesTableView rowForView:sender];
+    if(row < 0) {
+        return;
+    }
+    auto devices = self.accountModel->getAccountInfo(self.selectedAccountID).deviceModel->getAllDevices();
+    auto device = devices.begin();
+    std::advance(device, row);
+    if(device == devices.end()) {
+        return;
+    }
+    [self proceedDeviceRevokationAlert:device->id];
+}
+
+- (IBAction)unblockContact:(NSView*)sender
+{
+    NSInteger row = [blockedContactsTableView rowForView:sender];
+    if(row < 0) {
+        return;
+    }
+    auto contacts = self.accountModel->getAccountInfo(self.selectedAccountID).contactModel->getBannedContacts();
+    auto contactID = contacts.begin();
+    std::advance(contactID, row);
+    if(contactID == contacts.end()) {
+        return;
+    }
+    auto contact = self.accountModel->getAccountInfo(self.selectedAccountID).contactModel->getContact([@(contactID->c_str()) UTF8String]);
+    if(!contact.isBanned) {
+        return;
+    }
+    self.accountModel->getAccountInfo(self.selectedAccountID).contactModel->addContact(contact);
+}
+
+- (IBAction)editDevice:(NSView*)sender
+{
+    NSInteger row = [devicesTableView rowForView:sender];
+    if(row < 0) {
+        return;
+    }
+
+    NSTableCellView* deviceView = [devicesTableView viewAtColumn:0 row:row makeIfNecessary:NO];
+    if(!deviceView || ![deviceView isKindOfClass:[NSTableCellView class]]) {
+        return;
+    }
+
+    NSTextField* nameLabel = [deviceView viewWithTag: DEVICE_NAME_TAG];
+    NSButton* editButton = [deviceView viewWithTag: DEVICE_EDIT_TAG];
+    if ([nameLabel isEditable]) {
+        self.accountModel->getAccountInfo(self.selectedAccountID).deviceModel->setCurrentDeviceName([nameLabel.stringValue UTF8String]);
+        [nameLabel setEditable:NO];
+        [self.view.window makeFirstResponder:nil];
+        editButton.image = [NSImage imageNamed:NSImageNameTouchBarComposeTemplate];
+        return;
+    }
+    [nameLabel setEditable:YES];
+    [nameLabel becomeFirstResponder];
+    editButton.image = [NSImage imageNamed:NSImageNameTouchBarDownloadTemplate];
+}
+
+-(void) revokeDeviceWithID: (std::string) deviceID password:(NSString *) password {
+    self.accountModel->getAccountInfo(self.selectedAccountID).deviceModel->revokeDevice(deviceID, [password UTF8String]);
+}
+
+-(void) proceedDeviceRevokationAlert: (std::string) deviceID {
+    NSAlert *alert = [[NSAlert alloc] init];
+    [alert addButtonWithTitle:@"OK"];
+    [alert addButtonWithTitle:@"Cancel"];
+    [alert setMessageText:@"Revoke Device"];
+    [alert setInformativeText:@"Attention! This action could not be undone!"];
+    lrc::api::account::ConfProperties_t accountProperties = self.accountModel->getAccountConfig(self.selectedAccountID);
+    if(accountProperties.archiveHasPassword) {
+        NSSecureTextField *passwordText = [[NSSecureTextField alloc] initWithFrame:NSMakeRect(0, 0, 200, 24)];
+        [passwordText setPlaceholderString:@"Enter password"];
+        [alert setAccessoryView:passwordText];
+        if ([alert runModal] == NSAlertFirstButtonReturn) {
+            [self revokeDeviceWithID:deviceID password:[passwordText stringValue]];
+        }
+    } else {
+        if ([alert runModal] == NSAlertFirstButtonReturn) {
+            [self revokeDeviceWithID:deviceID password:@""];
+        }
+    }
+}
+
+#pragma mark - BackupAccountDelegate methods
+
+-(void) didCompleteExportWithPath:(NSURL*) fileUrl
+{
+    [[NSWorkspace sharedWorkspace] selectFile:fileUrl.path inFileViewerRootedAtPath:@""];
+}
+
+#pragma mark - PasswordChangeDelegate
+
+-(void) paswordCreatedWithSuccess:(BOOL) success
+{
+    [passwordButton setTitle: success ? @"Change password" : @"Create password"];
+}
+
+@end
diff --git a/src/AccRingVC.mm b/src/AccRingVC.mm
deleted file mode 100644
index 8083a68e166c25412486613e51032fda6a2c7d54..0000000000000000000000000000000000000000
--- a/src/AccRingVC.mm
+++ /dev/null
@@ -1,214 +0,0 @@
-/*
- *  Copyright (C) 2015-2016 Savoir-faire Linux Inc.
- *  Author: Alexandre Lision <alexandre.lision@savoirfairelinux.com>
- *
- *  This program is free software; you can redistribute it and/or modify
- *  it under the terms of the GNU General Public License as published by
- *  the Free Software Foundation; either version 3 of the License, or
- *  (at your option) any later version.
- *
- *  This program is distributed in the hope that it will be useful,
- *  but WITHOUT ANY WARRANTY; without even the implied warranty of
- *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- *  GNU General Public License for more details.
- *
- *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA.
- */
-#import "AccRingVC.h"
-
-#import <accountmodel.h>
-#import <qitemselectionmodel.h>
-
-#import "RegisterNameWC.h"
-#import "PasswordChangeWC.h"
-
-@interface AccRingVC () <RegisterNameDelegate>
-
-@property (unsafe_unretained) IBOutlet NSTextField *aliasTextField;
-@property (unsafe_unretained) IBOutlet NSTextField *bootstrapField;
-@property (unsafe_unretained) IBOutlet NSTextField *blockchainField;
-@property (unsafe_unretained) IBOutlet NSTextField *ringIDField;
-@property (unsafe_unretained) IBOutlet NSButton *registerBlockchainNameButton;
-@property (unsafe_unretained) IBOutlet NSTextField *registeredNameField;
-
-@property (unsafe_unretained) IBOutlet NSButton *upnpButton;
-@property (unsafe_unretained) IBOutlet NSButton *autoAnswerButton;
-@property (unsafe_unretained) IBOutlet NSButton *userAgentButton;
-@property (unsafe_unretained) IBOutlet NSTextField *userAgentTextField;
-@property (unsafe_unretained) IBOutlet NSButton *allowUnknown;
-@property (unsafe_unretained) IBOutlet NSButton *allowHistory;
-@property (unsafe_unretained) IBOutlet NSButton *allowContacts;
-
-@property AbstractLoadingWC* accountModal;
-@property PasswordChangeWC* passwordModal;
-
-@end
-
-@implementation AccRingVC
-@synthesize bootstrapField;
-@synthesize ringIDField;
-@synthesize aliasTextField;
-@synthesize blockchainField;
-@synthesize upnpButton;
-@synthesize autoAnswerButton;
-@synthesize userAgentButton;
-@synthesize userAgentTextField;
-@synthesize allowContacts, allowHistory, allowUnknown;
-
-typedef NS_ENUM(NSInteger, TagViews) {
-    ALIAS = 0,
-    HOSTNAME,
-    USERAGENT,
-    BLOCKCHAIN,
-};
-
-- (void)awakeFromNib
-{
-    NSLog(@"INIT Ring VC");
-    [aliasTextField setTag:TagViews::ALIAS];
-    [userAgentTextField setTag:TagViews::USERAGENT];
-    [bootstrapField setTag:TagViews::HOSTNAME];
-    [blockchainField setTag:TagViews::BLOCKCHAIN];
-
-    QObject::connect(AccountModel::instance().selectionModel(),
-                     &QItemSelectionModel::currentChanged,
-                     [=](const QModelIndex &current, const QModelIndex &previous) {
-                         if(!current.isValid())
-                             return;
-                         [self loadAccount];
-                     });
-}
-
-- (void)loadAccount
-{
-    auto account = AccountModel::instance().selectedAccount();
-
-    [self.aliasTextField setStringValue:account->alias().toNSString()];
-
-    [allowUnknown setState:account->allowIncomingFromUnknown()];
-    [allowHistory setState:account->allowIncomingFromHistory()];
-    [allowContacts setState:account->allowIncomingFromContact()];
-
-    [allowHistory setEnabled:!account->allowIncomingFromUnknown()];
-    [allowContacts setEnabled:!account->allowIncomingFromUnknown()];
-
-    [upnpButton setState:account->isUpnpEnabled()];
-    [userAgentButton setState:account->hasCustomUserAgent()];
-    [userAgentTextField setEnabled:account->hasCustomUserAgent()];
-
-    [autoAnswerButton setState:account->isAutoAnswer()];
-    [userAgentTextField setStringValue:account->userAgent().toNSString()];
-
-    [bootstrapField setStringValue:account->hostname().toNSString()];
-    [blockchainField setStringValue:account->nameServiceURL().toNSString()];
-
-    if([account->username().toNSString() isEqualToString:@""]) {
-        [ringIDField setStringValue:NSLocalizedString(@"Reopen account to see your hash",
-                                                    @"Show advice to user")];
-    } else {
-        [ringIDField setStringValue:account->username().toNSString()];
-    }
-
-    [self refreshRegisteredName:account];
-}
-
-- (void) refreshRegisteredName:(Account*) account
-{
-    [self.registerBlockchainNameButton setHidden:!account->registeredName().isEmpty()];
-    [self.registeredNameField setStringValue:account->registeredName().toNSString()];
-}
-
-- (IBAction)startNameRegistration:(id)sender
-{
-    auto registerWC = [[RegisterNameWC alloc] initWithDelegate:self];
-#if MAC_OS_X_VERSION_MIN_REQUIRED > MAC_OS_X_VERSION_10_9
-    [self.view.window beginSheet:registerWC.window completionHandler:nil];
-#else
-    [NSApp beginSheet: registerWC.window
-       modalForWindow: self.view.window
-        modalDelegate: self
-       didEndSelector: nil
-          contextInfo: nil];
-#endif
-    self.accountModal = registerWC;
-}
-
-- (IBAction)changePassword:(id)sender
-{
-    auto passwordWC = [[PasswordChangeWC alloc] initWithAccount:AccountModel::instance().selectedAccount()];
-#if MAC_OS_X_VERSION_MIN_REQUIRED > MAC_OS_X_VERSION_10_9
-    [self.view.window beginSheet:passwordWC.window completionHandler:nil];
-#else
-    [NSApp beginSheet: passwordWC.window
-       modalForWindow: self.view.window
-        modalDelegate: self
-       didEndSelector: nil
-          contextInfo: nil];
-#endif
-    self.passwordModal = passwordWC;
-}
-
-- (IBAction)toggleUpnp:(NSButton *)sender {
-    AccountModel::instance().selectedAccount()->setUpnpEnabled([sender state] == NSOnState);
-}
-
-- (IBAction)toggleAutoAnswer:(NSButton *)sender {
-    AccountModel::instance().selectedAccount()->setAutoAnswer([sender state] == NSOnState);
-}
-
-- (IBAction)toggleCustomAgent:(NSButton *)sender {
-    [self.userAgentTextField setEnabled:[sender state] == NSOnState];
-    AccountModel::instance().selectedAccount()->setHasCustomUserAgent([sender state] == NSOnState);
-}
-
-- (IBAction)toggleAllowFromUnknown:(id)sender {
-    AccountModel::instance().selectedAccount()->setAllowIncomingFromUnknown([sender state] == NSOnState);
-    [allowHistory setEnabled:![sender state] == NSOnState];
-    [allowContacts setEnabled:![sender state] == NSOnState];
-}
-- (IBAction)toggleAllowFromHistory:(id)sender {
-    AccountModel::instance().selectedAccount()->setAllowIncomingFromHistory([sender state] == NSOnState);
-}
-- (IBAction)toggleAllowFromContacts:(id)sender {
-    AccountModel::instance().selectedAccount()->setAllowIncomingFromContact([sender state] == NSOnState);
-}
-
-#pragma mark - NSTextFieldDelegate methods
-
-- (BOOL)control:(NSControl *)control textShouldBeginEditing:(NSText *)fieldEditor
-{
-    return YES;
-}
-
--(void)controlTextDidChange:(NSNotification *)notif
-{
-    NSTextField *textField = [notif object];
-
-    switch ([textField tag]) {
-        case TagViews::ALIAS:
-            AccountModel::instance().selectedAccount()->setAlias([[textField stringValue] UTF8String]);
-            AccountModel::instance().selectedAccount()->setDisplayName([[textField stringValue] UTF8String]);
-            break;
-        case TagViews::HOSTNAME:
-            AccountModel::instance().selectedAccount()->setHostname([[textField stringValue] UTF8String]);
-            break;
-        case TagViews::USERAGENT:
-            AccountModel::instance().selectedAccount()->setUserAgent([[textField stringValue] UTF8String]);
-            break;
-        case TagViews::BLOCKCHAIN:
-            AccountModel::instance().selectedAccount()->setNameServiceURL([[textField stringValue] UTF8String]);
-            break;
-        default:
-            break;
-    }
-}
-
-- (void) didRegisterNameWithSuccess
-{
-    [self.accountModal close];
-    [self refreshRegisteredName:AccountModel::instance().selectedAccount()];
-}
-
-@end
diff --git a/src/AccSecurityVC.mm b/src/AccSecurityVC.mm
deleted file mode 100644
index 3d0a0c20d1e22b83247e965d0a4f422ff71c2d84..0000000000000000000000000000000000000000
--- a/src/AccSecurityVC.mm
+++ /dev/null
@@ -1,446 +0,0 @@
-/*
- *  Copyright (C) 2015-2016 Savoir-faire Linux Inc.
- *  Author: Alexandre Lision <alexandre.lision@savoirfairelinux.com>
- *
- *  This program is free software; you can redistribute it and/or modify
- *  it under the terms of the GNU General Public License as published by
- *  the Free Software Foundation; either version 3 of the License, or
- *  (at your option) any later version.
- *
- *  This program is distributed in the hope that it will be useful,
- *  but WITHOUT ANY WARRANTY; without even the implied warranty of
- *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- *  GNU General Public License for more details.
- *
- *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA.
- */
-#import "AccSecurityVC.h"
-
-#import <QUrl>
-#import <certificate.h>
-#import <tlsmethodmodel.h>
-#import <qitemselectionmodel.h>
-#import <ciphermodel.h>
-#import <accountmodel.h>
-
-#import "QNSTreeController.h"
-#import "CertificateWC.h"
-
-#define COLUMNID_NAME   @"CipherNameColumn"
-#define COLUMNID_STATE  @"CipherStateColumn"
-
-@interface AccSecurityVC () {
-    __unsafe_unretained IBOutlet NSOutlineView *cipherListView;
-    __unsafe_unretained IBOutlet NSButton *useTLS;
-    __unsafe_unretained IBOutlet NSView *tlsContainer;
-    __unsafe_unretained IBOutlet NSLayoutConstraint* tlsContainerHeight;
-
-    __unsafe_unretained IBOutlet NSView *pvkContainer;
-    __unsafe_unretained IBOutlet NSImageView *pvkPasswordValidation;
-
-    __unsafe_unretained IBOutlet NSButton *showUserCertButton;
-    __unsafe_unretained IBOutlet NSButton *showCAButton;
-    __unsafe_unretained IBOutlet NSSecureTextField *pvkPasswordField;
-    __unsafe_unretained IBOutlet NSTextField *outgoingTlsServerName;
-    __unsafe_unretained IBOutlet NSTextField *tlsNegotiationTimeout;
-    __unsafe_unretained IBOutlet NSStepper *tlsNegotiationTimeoutStepper;
-    __unsafe_unretained IBOutlet NSPathControl *caListPathControl;
-    __unsafe_unretained IBOutlet NSPathControl *certificatePathControl;
-    __unsafe_unretained IBOutlet NSPathControl *pvkPathControl;
-    __unsafe_unretained IBOutlet NSPopUpButton *tlsMethodList;
-    __unsafe_unretained IBOutlet NSButton *srtpRTPFallback;
-    __unsafe_unretained IBOutlet NSButton *useSRTP;
-
-    __unsafe_unretained IBOutlet NSButton *verifyCertAsClientButton;
-    __unsafe_unretained IBOutlet NSButton *verifyCertAsServerButton;
-    __unsafe_unretained IBOutlet NSButton *requireCertButton;
-}
-
-@property QNSTreeController *treeController;
-@property CertificateWC* certificateWC;
-
-@end
-
-@implementation AccSecurityVC
-@synthesize treeController;
-@synthesize certificateWC;
-
-// Tags for views
-NS_ENUM(NSInteger, TagViews) {
-    PVK_PASSWORD            = 0,
-    OUTGOING_TLS_SRV_NAME   = 1,
-    TLS_NEGOTIATION         = 2
-};
-
-- (void)awakeFromNib
-{
-    NSLog(@"INIT Security VC");
-    [pvkPasswordField setTag:TagViews::PVK_PASSWORD];
-    [outgoingTlsServerName setTag:TagViews::OUTGOING_TLS_SRV_NAME];
-    [tlsNegotiationTimeoutStepper setTag:TagViews::TLS_NEGOTIATION];
-    [tlsNegotiationTimeout setTag:TagViews::TLS_NEGOTIATION];
-
-    QObject::connect(AccountModel::instance().selectionModel(),
-                     &QItemSelectionModel::currentChanged,
-                     [=](const QModelIndex &current, const QModelIndex &previous) {
-                         if(!current.isValid())
-                             return;
-                         [self loadAccount];
-                     });
-}
-
-- (Account*) currentAccount
-{
-    auto accIdx = AccountModel::instance().selectionModel()->currentIndex();
-    return AccountModel::instance().getAccountByModelIndex(accIdx);
-}
-
-- (void)loadAccount
-{
-    auto account = [self currentAccount];
-
-    [self updateControlsWithTag:TagViews::PVK_PASSWORD];
-    [self updateControlsWithTag:OUTGOING_TLS_SRV_NAME];
-    [self updateControlsWithTag:TagViews::TLS_NEGOTIATION];
-
-    QModelIndex qTlsMethodIdx = account->tlsMethodModel()->selectionModel()->currentIndex();
-    [tlsMethodList removeAllItems];
-    [tlsMethodList addItemWithTitle:qTlsMethodIdx.data(Qt::DisplayRole).toString().toNSString()];
-
-    treeController = [[QNSTreeController alloc] initWithQModel:account->cipherModel()];
-    [treeController setAvoidsEmptySelection:NO];
-    [treeController setAlwaysUsesMultipleValuesMarker:YES];
-    [treeController setChildrenKeyPath:@"children"];
-
-    [cipherListView bind:@"content" toObject:treeController withKeyPath:@"arrangedObjects" options:nil];
-    [cipherListView bind:@"sortDescriptors" toObject:treeController withKeyPath:@"sortDescriptors" options:nil];
-    [cipherListView bind:@"selectionIndexPaths" toObject:treeController withKeyPath:@"selectionIndexPaths" options:nil];
-
-    [useTLS setState:account->isTlsEnabled()];
-    [tlsContainer setHidden:!account->isTlsEnabled()];
-    tlsContainerHeight.constant = (account->isTlsEnabled()) ? 196.0f : 0.0f;
-
-    [useSRTP setState:account->isSrtpEnabled()];
-    [srtpRTPFallback setState:account->isSrtpRtpFallback()];
-    [srtpRTPFallback setEnabled:useSRTP.state];
-
-    if(account->tlsCaListCertificate() != nil) {
-        [caListPathControl setURL:[NSURL fileURLWithPath:account->tlsCaListCertificate()->path().toNSString()]];
-    } else {
-        [caListPathControl setURL:nil];
-    }
-
-    auto tlsCert = account->tlsCertificate();
-
-    if(tlsCert != nil) {
-        [certificatePathControl setURL:[NSURL fileURLWithPath:tlsCert->path().toNSString()]];
-        if(tlsCert->requirePrivateKey()) {
-            [pvkContainer setHidden:NO];
-            if(!account->tlsPrivateKey().isEmpty()) {
-                [pvkPathControl setURL:[NSURL fileURLWithPath:account->tlsPrivateKey().toNSString()]];
-                if (tlsCert->requirePrivateKeyPassword()) {
-                    [pvkPasswordField setHidden:NO];
-                } else
-                    [pvkPasswordField setHidden:YES];
-            } else {
-                [pvkPathControl setURL:nil];
-            }
-        } else {
-            [pvkContainer setHidden:YES];
-        }
-    } else {
-        [certificatePathControl setURL:nil];
-    }
-
-    if (account->tlsCaListCertificate())
-        [showCAButton setHidden:!(account->tlsCaListCertificate()->isValid() == Certificate::CheckValues::PASSED)];
-    else
-        [showCAButton setHidden:YES];
-
-    [verifyCertAsServerButton setState:account->isTlsVerifyServer()];
-    [verifyCertAsClientButton setState:account->isTlsVerifyClient()];
-    [requireCertButton setState:account->isTlsRequireClientCertificate()];
-}
-
-- (IBAction)chooseTlsMethod:(id)sender {
-    int index = [sender indexOfSelectedItem];
-    QModelIndex qIdx = [self currentAccount]->tlsMethodModel()->index(index, 0);
-    [self currentAccount]->tlsMethodModel()->selectionModel()->setCurrentIndex(qIdx, QItemSelectionModel::ClearAndSelect);
-}
-
-- (IBAction)toggleUseTLS:(id)sender {
-    [self currentAccount]->setTlsEnabled([sender state]);
-    [tlsContainer setHidden:![sender state]];
-    tlsContainerHeight.constant = ([sender state]) ? 196.0f : 0.0f;
-}
-
-- (IBAction)toggleUseSRTP:(id)sender {
-    [self currentAccount]->setSrtpEnabled([sender state]);
-    [srtpRTPFallback setEnabled:[sender state]];
-}
-- (IBAction)toggleRTPFallback:(id)sender {
-    [self currentAccount]->setSrtpRtpFallback([sender state]);
-}
-
-- (IBAction)toggleVerifyCertAsClient:(id)sender {
-    [self currentAccount]->setTlsVerifyClient([sender state]);
-}
-
-- (IBAction)toggleVerifyCertServer:(id)sender {
-    [self currentAccount]->setTlsVerifyServer([sender state]);
-}
-
-- (IBAction)toggleRequireCert:(id)sender {
-    [self currentAccount]->setTlsRequireClientCertificate([sender state]);
-}
-
-- (IBAction)toggleCipher:(id)sender {
-    NSInteger row = [sender clickedRow];
-    NSTableColumn *col = [sender tableColumnWithIdentifier:COLUMNID_STATE];
-    NSButtonCell *cell = [col dataCellForRow:row];
-    [self currentAccount]->cipherModel()->setData([self currentAccount]->cipherModel()->index(row, 0, QModelIndex()),
-                                           cell.state == NSOnState ? Qt::Unchecked : Qt::Checked, Qt::CheckStateRole);
-}
-
-- (void) updateControlsWithTag:(NSInteger) tag
-{
-    switch (tag) {
-        case TagViews::PVK_PASSWORD: {
-                [pvkPasswordField setStringValue:[self currentAccount]->tlsPassword().toNSString()];
-                BOOL passMatch = [self currentAccount]->tlsCertificate() &&
-            [self currentAccount]->tlsCertificate()->privateKeyMatch() == Certificate::CheckValues::PASSED;
-                [pvkPasswordValidation setImage:[NSImage imageNamed:passMatch?@"ic_action_accept":@"ic_action_cancel"]];
-            }
-            break;
-        case TagViews::OUTGOING_TLS_SRV_NAME:
-            [outgoingTlsServerName setStringValue:[self currentAccount]->tlsServerName().toNSString()];
-            break;
-        case TagViews::TLS_NEGOTIATION:
-            [tlsNegotiationTimeout setIntegerValue:[self currentAccount]->tlsNegotiationTimeoutSec()];
-            [tlsNegotiationTimeoutStepper setIntegerValue:[self currentAccount]->tlsNegotiationTimeoutSec()];
-            break;
-        default:
-            break;
-    }
-}
-
-#pragma mark - NSTextFieldDelegate methods
-
--(void)controlTextDidChange:(NSNotification *)notif
-{
-    NSTextField *textField = [notif object];
-    NSRange test = [[textField currentEditor] selectedRange];
-
-    [self valueDidChange:textField];
-    //FIXME: saving account lose focus because in NSTreeController we remove and reinsert row so View selction change
-    [textField.window makeFirstResponder:textField];
-    [[textField currentEditor] setSelectedRange:test];
-}
-
-- (IBAction) valueDidChange: (id) sender
-{
-    switch ([sender tag]) {
-        case TagViews::PVK_PASSWORD:
-            [self currentAccount]->setTlsPassword([[sender stringValue] UTF8String]);
-            break;
-        case TagViews::OUTGOING_TLS_SRV_NAME:
-            [self currentAccount]->setTlsServerName([[sender stringValue] UTF8String]);
-            break;
-        case TagViews::TLS_NEGOTIATION:
-            [self currentAccount]->setTlsNegotiationTimeoutSec([sender integerValue]);
-            break;
-        default:
-            break;
-    }
-    [self updateControlsWithTag:[sender tag]];
-}
-
-#pragma mark - NSPathControl delegate methods
-
-- (IBAction)caListPathControlSingleClick:(id)sender
-{
-    NSURL* fileURL;
-    if ([sender isKindOfClass:[NSMenuItem class]]) {
-        fileURL = nil;
-    } else {
-        fileURL = [[sender clickedPathComponentCell] URL];
-    }
-    [self->caListPathControl setURL:fileURL];
-    [self currentAccount]->setTlsCaListCertificate([[fileURL path] UTF8String]);
-
-    if ([self currentAccount]->tlsCaListCertificate()->isValid() == Certificate::CheckValues::PASSED) {
-        [showCAButton setHidden:NO];
-    } else
-        [showCAButton setHidden:YES];
-}
-
-- (IBAction)certificatePathControlSingleClick:(id)sender
-{
-    NSURL* fileURL;
-    if ([sender isKindOfClass:[NSMenuItem class]]) {
-        fileURL = nil;
-    } else {
-        fileURL = [[sender clickedPathComponentCell] URL];
-    }
-    [self->certificatePathControl setURL:fileURL];
-    [self currentAccount]->setTlsCertificate([[fileURL path] UTF8String]);
-
-    auto cert = [self currentAccount]->tlsCertificate();
-
-    if (cert) {
-        [showUserCertButton setHidden:!(cert->isValid() == Certificate::CheckValues::PASSED)];
-        [pvkContainer setHidden:!cert->requirePrivateKey()];
-    } else {
-        [showUserCertButton setHidden:YES];
-        [pvkContainer setHidden:YES];
-    }
-
-}
-
-- (IBAction)pvkFilePathControlSingleClick:(id)sender
-{
-    NSURL* fileURL;
-    if ([sender isKindOfClass:[NSMenuItem class]]) {
-        fileURL = nil;
-    } else {
-        fileURL = [[sender clickedPathComponentCell] URL];
-    }
-    [self currentAccount]->setTlsPrivateKey([[fileURL path] UTF8String]);
-    if([self currentAccount]->tlsCertificate()->requirePrivateKeyPassword()) {
-        [pvkPasswordField setHidden:NO];
-    } else {
-        [pvkPasswordField setHidden:YES];
-    }
-}
-
-- (IBAction)showCA:(id)sender
-{
-    certificateWC = [[CertificateWC alloc] initWithWindowNibName:@"CertificateWindow"];
-    [certificateWC setCertificate:[self currentAccount]->tlsCaListCertificate()];
-#if MAC_OS_X_VERSION_MIN_REQUIRED > MAC_OS_X_VERSION_10_9
-    [self.view.window beginSheet:certificateWC.window completionHandler:nil];
-#else
-    [NSApp beginSheet: certificateWC.window
-       modalForWindow: self.view.window
-        modalDelegate: self
-       didEndSelector: nil
-          contextInfo: nil];
-#endif
-}
-
-- (IBAction)showEndpointCertificate:(id)sender
-{
-    certificateWC = [[CertificateWC alloc] initWithWindowNibName:@"CertificateWindow"];
-    [certificateWC setCertificate:[self currentAccount]->tlsCertificate()];
-#if MAC_OS_X_VERSION_MIN_REQUIRED > MAC_OS_X_VERSION_10_9
-     [self.view.window beginSheet:certificateWC.window completionHandler:nil];
-#else
-     [NSApp beginSheet: certificateWC.window
-        modalForWindow: self.view.window
-         modalDelegate: self
-        didEndSelector: nil
-           contextInfo: nil];
-#endif
-}
-
-#pragma mark - NSPathControlDelegate methods
-
-- (void)pathControl:(NSPathControl *)pathControl willDisplayOpenPanel:(NSOpenPanel *)openPanel
-{
-    NSLog(@"willDisplayOpenPanel");
-    [openPanel setAllowsMultipleSelection:NO];
-    [openPanel setCanChooseDirectories:NO];
-    [openPanel setCanChooseFiles:YES];
-    [openPanel setResolvesAliases:YES];
-
-    if(pathControl == caListPathControl) {
-        [openPanel setTitle:NSLocalizedString(@"Choose a CA list", @"Open panel title")];
-    } else if (pathControl == certificatePathControl) {
-        [openPanel setTitle:NSLocalizedString(@"Choose a certificate", @"Open panel title")];
-    } else {
-        [openPanel setTitle:NSLocalizedString(@"Choose a private key file", @"Open panel title")];
-    }
-
-    [openPanel setPrompt:NSLocalizedString(@"Choose CA", @"Open panel prompt for 'Choose a file'")];
-    [openPanel setDelegate:self];
-}
-
-- (void)pathControl:(NSPathControl *)pathControl willPopUpMenu:(NSMenu *)menu
-{
-    NSMenuItem *item;
-    if(pathControl == caListPathControl) {
-        item = [menu addItemWithTitle:NSLocalizedString(@"Remove value", @"Contextual menu entry")
-                               action:@selector(caListPathControlSingleClick:) keyEquivalent:@""];
-    } else if (pathControl == certificatePathControl) {
-        item = [menu addItemWithTitle:NSLocalizedString(@"Remove value", @"Contextual menu entry")
-                               action:@selector(certificatePathControlSingleClick:) keyEquivalent:@""];
-    } else {
-        item = [menu addItemWithTitle:NSLocalizedString(@"Remove value", @"Contextual menu entry")
-                               action:@selector(pvkFilePathControlSingleClick:) keyEquivalent:@""];
-    }
-    [item setTarget:self]; // or whatever target you want
-}
-
-#pragma mark - NSOpenSavePanelDelegate delegate methods
-
-- (BOOL)panel:(id)sender validateURL:(NSURL *)url error:(NSError **)outError
-{
-    return YES;
-}
-
-#pragma mark - NSMenuDelegate methods
-
-- (BOOL)menu:(NSMenu *)menu updateItem:(NSMenuItem *)item atIndex:(NSInteger)index shouldCancel:(BOOL)shouldCancel
-{
-    auto qIdx = [self currentAccount]->tlsMethodModel()->index(index);
-    [item setTitle:qIdx.data(Qt::DisplayRole).toString().toNSString()];
-    return YES;
-}
-
-- (NSInteger)numberOfItemsInMenu:(NSMenu *)menu
-{
-    return [self currentAccount]->tlsMethodModel()->rowCount();
-}
-
-#pragma mark - NSOutlineViewDelegate methods
-
-- (BOOL)outlineView:(NSOutlineView *)outlineView shouldSelectItem:(id)item;
-{
-    return YES;
-}
-
-- (NSCell *)outlineView:(NSOutlineView *)outlineView dataCellForTableColumn:(NSTableColumn *)tableColumn item:(id)item
-{
-    NSCell *returnCell = [tableColumn dataCell];
-    return returnCell;
-}
-
-- (BOOL)control:(NSControl *)control textShouldEndEditing:(NSText *)fieldEditor
-{
-    if ([[fieldEditor string] length] == 0) {
-        // don't allow empty node names
-        return NO;
-    } else {
-        return YES;
-    }
-}
-
-- (BOOL)outlineView:(NSOutlineView *)outlineView shouldEditTableColumn:(NSTableColumn *)tableColumn item:(id)item
-{
-    return NO;
-}
-
-- (void)outlineView:(NSOutlineView *)olv willDisplayCell:(NSCell*)cell forTableColumn:(NSTableColumn *)tableColumn item:(id)item
-{
-    QModelIndex qIdx = [treeController toQIdx:((NSTreeNode*)item)];
-    if(!qIdx.isValid())
-        return;
-
-    if ([[tableColumn identifier] isEqualToString:COLUMNID_NAME]) {
-        cell.title = qIdx.data(Qt::DisplayRole).toString().toNSString();
-    }
-}
-
-@end
diff --git a/src/AccountsVC.h b/src/AccSipGeneralVC.h
similarity index 72%
rename from src/AccountsVC.h
rename to src/AccSipGeneralVC.h
index 7303aabdfebf7f1f76c698d6120ca74cb359d890..c3a80040e39a0c5dc90cb0386234871ba5c9ed6a 100644
--- a/src/AccountsVC.h
+++ b/src/AccSipGeneralVC.h
@@ -1,6 +1,7 @@
 /*
- *  Copyright (C) 2015-2016 Savoir-faire Linux Inc.
+ *  Copyright (C) 2015-2018 Savoir-faire Linux Inc.
  *  Author: Alexandre Lision <alexandre.lision@savoirfairelinux.com>
+ *  Author: Kateryna Kostiuk <kateryna.kostiuk@savoirfairelinux.com>
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -18,8 +19,12 @@
  */
 
 #import <Cocoa/Cocoa.h>
+
+#import <account.h>
 #import "LrcModelsProtocol.h"
+#import "AccountSettingsVC.h"
 
-@interface AccountsVC : NSViewController <NSOutlineViewDelegate, NSMenuDelegate, LrcModelsProtocol>
+@interface AccSipGeneralVC : NSViewController <NSTextFieldDelegate, LrcModelsProtocol, AccountGeneralProtocol>
+@property (assign)BOOL accountEnabled;
 
 @end
diff --git a/src/AccSipGeneralVC.mm b/src/AccSipGeneralVC.mm
new file mode 100644
index 0000000000000000000000000000000000000000..8746f04ca0c0d877ada7e51485cff335d9c5891e
--- /dev/null
+++ b/src/AccSipGeneralVC.mm
@@ -0,0 +1,255 @@
+/*
+ *  Copyright (C) 2015-2018 Savoir-faire Linux Inc.
+ *  Author: Alexandre Lision <alexandre.lision@savoirfairelinux.com>
+ *  Author: Kateryna Kostiuk <kateryna.kostiuk@savoirfairelinux.com>
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; either version 3 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA.
+ */
+
+//cocoa
+#import <Quartz/Quartz.h>
+
+//Qt
+#import <QSize>
+#import <QtMacExtras/qmacfunctions.h>
+#import <QPixmap>
+
+//LRC
+#import <api/lrc.h>
+#import <api/newaccountmodel.h>
+#import <api/newdevicemodel.h>
+#import <interfaces/pixmapmanipulatori.h>
+#import <globalinstances.h>
+
+#import "AccSipGeneralVC.h"
+#import "views/NSColor+RingTheme.h"
+#import "views/NSImage+Extensions.h"
+
+@interface AccSipGeneralVC ()
+
+@property (unsafe_unretained) IBOutlet NSButton* photoView;
+@property (unsafe_unretained) IBOutlet NSImageView* addProfilePhotoImage;
+@property (unsafe_unretained) IBOutlet NSTextField* displayNameField;
+@property (unsafe_unretained) IBOutlet NSTextField* userNameField;
+@property (unsafe_unretained) IBOutlet NSSecureTextField* passwordField;
+@property (unsafe_unretained) IBOutlet NSTextField* proxyField;
+@property (unsafe_unretained) IBOutlet NSTextField* voicemailField;
+@property (unsafe_unretained) IBOutlet NSTextField* serverField;
+@property (unsafe_unretained) IBOutlet NSButton* removeAccountButton;
+@property (unsafe_unretained) IBOutlet NSButton* editAccountButton;
+@property std::string selectedAccountID;
+
+@end
+
+@implementation AccSipGeneralVC
+
+//Tags for views
+typedef NS_ENUM(NSInteger, TagViews) {
+    DISPLAYNAME = 100
+};
+
+@synthesize accountModel;
+@synthesize delegate;
+@synthesize photoView,addProfilePhotoImage,displayNameField, userNameField, passwordField,proxyField,voicemailField, serverField, removeAccountButton, editAccountButton;
+
+-(id) initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil accountmodel:(lrc::api::NewAccountModel*) accountModel
+{
+    if (self =  [self initWithNibName: nibNameOrNil bundle:nibBundleOrNil])
+    {
+        self.accountModel= accountModel;
+    }
+    return self;
+}
+
+-(void)viewDidLoad {
+    [super viewDidLoad];
+    [photoView setBordered:YES];
+    [addProfilePhotoImage setWantsLayer: YES];
+    [self setEditingMode:NO];
+    [self updateView];
+}
+
+- (void)pictureTakerDidEnd:(IKPictureTaker *) picker
+                returnCode:(NSInteger) code
+               contextInfo:(void*) contextInfo
+{
+    if (auto outputImage = [picker outputImage]) {
+        [photoView setBordered:NO];
+        auto image = [picker inputImage];
+        CGFloat newSize = MIN(image.size.height, image.size.width);
+        outputImage = [outputImage cropImageToSize:CGSizeMake(newSize, newSize)];
+        [photoView setImage: [outputImage roundCorners: outputImage.size.height * 0.5]];
+        [addProfilePhotoImage setHidden:YES];
+        auto imageToBytes = QByteArray::fromNSData([outputImage TIFFRepresentation]).toBase64();
+        std::string imageToString = std::string(imageToBytes.constData(), imageToBytes.length());
+        self.accountModel->setAvatar(self.selectedAccountID, imageToString);
+    } else if(!photoView.image) {
+        [photoView setBordered:YES];
+        [addProfilePhotoImage setHidden:NO];
+    }
+}
+
+#pragma mark - NSTextFieldDelegate methods
+
+- (BOOL)control:(NSControl *)control textShouldBeginEditing:(NSText *)fieldEditor
+{
+    return YES;
+}
+
+- (IBAction)triggerAdwancedSettings: (NSButton *)sender {
+     [self.delegate triggerAdvancedOptions];
+}
+
+- (void) setSelectedAccount:(std::string) account {
+    self.selectedAccountID = account;
+    [self updateView];
+}
+
+-(void)updateView {
+    const auto& account = accountModel->getAccountInfo(self.selectedAccountID);
+    QByteArray ba = QByteArray::fromStdString(account.profileInfo.avatar);
+
+    QVariant photo = GlobalInstances::pixmapManipulator().personPhoto(ba, nil);
+    if(QtMac::toNSImage(qvariant_cast<QPixmap>(photo))) {
+        [photoView setBordered:NO];
+        NSImage *image = QtMac::toNSImage(qvariant_cast<QPixmap>(photo));
+        CGFloat newSize = MIN(image.size.height, image.size.width);
+        image = [image cropImageToSize:CGSizeMake(newSize, newSize)];
+        [photoView setImage: [image roundCorners: image.size.height * 0.5]];
+        [addProfilePhotoImage setHidden:YES];
+    } else {
+        [photoView setImage:nil];
+        [photoView setBordered:YES];
+        [addProfilePhotoImage setHidden:NO];
+    }
+    NSString* displayName = @(account.profileInfo.alias.c_str());
+    [displayNameField setStringValue:displayName];
+
+    NSMutableAttributedString *colorTitle = [[NSMutableAttributedString alloc] initWithAttributedString:[removeAccountButton attributedTitle]];
+    NSRange titleRange = NSMakeRange(0, [colorTitle length]);
+    [colorTitle addAttribute:NSForegroundColorAttributeName value:[NSColor errorColor] range:titleRange];
+    [removeAccountButton setAttributedTitle:colorTitle];
+    lrc::api::account::ConfProperties_t accountProperties = self.accountModel->getAccountConfig(self.selectedAccountID);
+    [passwordField setStringValue: @(accountProperties.password.c_str())];
+    [proxyField setStringValue: @(accountProperties.routeset.c_str())];
+    [userNameField setStringValue: @(accountProperties.username.c_str())];
+    [serverField setStringValue: @(accountProperties.hostname.c_str())];
+    [voicemailField setStringValue: @(accountProperties.mailbox.c_str())];
+    self.accountEnabled = account.enabled;
+}
+
+#pragma mark - Actions
+
+- (IBAction)editPhoto:(id)sender
+{
+    auto pictureTaker = [IKPictureTaker pictureTaker];
+
+    [pictureTaker beginPictureTakerSheetForWindow:[self.view window]
+                                     withDelegate:self
+                                   didEndSelector:@selector(pictureTakerDidEnd:returnCode:contextInfo:)
+                                      contextInfo:nil];
+
+}
+
+- (IBAction)enableAccount: (NSButton *)sender {
+    const auto& account = accountModel->getAccountInfo(self.selectedAccountID);
+    self.accountModel->enableAccount(self.selectedAccountID, !account.enabled);
+    self.accountEnabled = account.enabled;
+    lrc::api::account::ConfProperties_t accountProperties = self.accountModel->getAccountConfig(self.selectedAccountID);
+    self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+}
+
+- (IBAction)removeAccount:(id)sender
+{
+    NSAlert *alert = [[NSAlert alloc] init];
+    [alert addButtonWithTitle:@"OK"];
+    [alert addButtonWithTitle:@"Cancel"];
+    [alert setMessageText: NSLocalizedString(@"Remove account",
+                                             @"Remove account alert title")];
+    [alert setInformativeText:NSLocalizedString(@"By clicking \"OK\" you will remove this account on this device! This action can not be undone. Also, your registered name can be lost.",
+                                                @"Remove account alert message")];
+
+    if ([alert runModal] == NSAlertFirstButtonReturn) {
+        self.accountModel->removeAccount(self.selectedAccountID);
+    }
+}
+
+- (IBAction)changeEditingMode:(id)sender
+{
+    if([userNameField isEditable]) {
+        [self setEditingMode:NO];
+        return;
+    }
+    [self setEditingMode:YES];
+}
+
+-(void) setEditingMode:(BOOL) shouldEdit {
+    [userNameField setEditable:shouldEdit];
+    [passwordField setEditable:shouldEdit];
+    [proxyField setEditable:shouldEdit];
+    [voicemailField setEditable:shouldEdit];
+    [serverField setEditable:shouldEdit];
+    [userNameField setDrawsBackground:!shouldEdit];
+    [passwordField setDrawsBackground:!shouldEdit];
+    [proxyField setDrawsBackground:!shouldEdit];
+    [voicemailField setDrawsBackground:!shouldEdit];
+    [serverField setDrawsBackground:!shouldEdit];
+    [userNameField setBezeled:shouldEdit];
+    [passwordField setBezeled:shouldEdit];
+    [proxyField setBezeled:shouldEdit];
+    [voicemailField setBezeled:shouldEdit];
+    [serverField setBezeled:shouldEdit];
+    if(shouldEdit) {
+        [serverField setBezelStyle:NSTextFieldSquareBezel];
+        [userNameField setBezelStyle:NSTextFieldSquareBezel];
+        [passwordField setBezelStyle:NSTextFieldSquareBezel];
+        [proxyField setBezelStyle:NSTextFieldSquareBezel];
+        [voicemailField setBezelStyle:NSTextFieldSquareBezel];
+        [userNameField becomeFirstResponder];
+        [editAccountButton setTitle:@"Done"];
+        return;
+    }
+    [self saveAccount];
+    [editAccountButton setTitle:@"Edit Account"];
+    [self.view resignFirstResponder];
+}
+
+-(void) saveAccount {
+    lrc::api::account::ConfProperties_t accountProperties = self.accountModel->getAccountConfig(self.selectedAccountID);
+    accountProperties.hostname = [serverField.stringValue UTF8String];
+    accountProperties.password = [passwordField.stringValue UTF8String];
+    accountProperties.username = [userNameField.stringValue UTF8String];
+    accountProperties.routeset = [proxyField.stringValue UTF8String];
+    accountProperties.mailbox = [voicemailField.stringValue UTF8String];
+    self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+}
+
+#pragma mark - NSTextFieldDelegate delegate methods
+
+- (void)controlTextDidChange:(NSNotification *)notif
+{
+    NSTextField* textField = [notif object];
+    if (textField.tag != DISPLAYNAME) {
+        return;
+    }
+    NSString* displayName = textField.stringValue;
+
+    [NSObject cancelPreviousPerformRequestsWithTarget:self];
+    self.accountModel->setAlias(self.selectedAccountID, [displayName UTF8String]);
+    lrc::api::account::ConfProperties_t accountProperties = self.accountModel->getAccountConfig(self.selectedAccountID);
+    self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+}
+
+@end
diff --git a/src/AccountSettingsVC.h b/src/AccountSettingsVC.h
new file mode 100644
index 0000000000000000000000000000000000000000..29e78c72e12d154e76a982eeb889242268139873
--- /dev/null
+++ b/src/AccountSettingsVC.h
@@ -0,0 +1,41 @@
+/*
+ *  Copyright (C) 2018 Savoir-faire Linux Inc.
+ *  Author: Kateryna Kostiuk <kateryna.kostiuk@savoirfairelinux.com>
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; either version 3 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA.
+ */
+
+#import <Cocoa/Cocoa.h>
+#import "LrcModelsProtocol.h"
+#include <string>
+
+@protocol AccountGeneralDelegate <NSObject>
+-(void) triggerAdvancedOptions;
+-(void) updateFrame;
+@end
+
+@protocol AccountGeneralProtocol
+@property (retain, nonatomic) id <AccountGeneralDelegate> delegate;
+- (IBAction)triggerAdwancedSettings: (NSButton *)sender;
+- (void) setSelectedAccount:(std::string) account;
+@end
+
+@interface AccountSettingsVC : NSViewController <LrcModelsProtocol, AccountGeneralDelegate>
+- (void) initFrame;
+- (void) setSelectedAccount:(std::string) account;
+- (void) show;
+-(void) hide;
+
+@end
diff --git a/src/AccountSettingsVC.mm b/src/AccountSettingsVC.mm
new file mode 100644
index 0000000000000000000000000000000000000000..30f36ddb18313ddfeed8d66892e094f937dd5c4d
--- /dev/null
+++ b/src/AccountSettingsVC.mm
@@ -0,0 +1,161 @@
+/*
+ *  Copyright (C) 2018 Savoir-faire Linux Inc.
+ *  Author: Kateryna Kostiuk <kateryna.kostiuk@savoirfairelinux.com>
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; either version 3 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA.
+ */
+
+//LRC
+#import <api/lrc.h>
+#import <api/account.h>
+#import <api/newaccountmodel.h>
+
+#import "views/NSColor+RingTheme.h"
+#import "AccountSettingsVC.h"
+#import "AccRingGeneralVC.h"
+#import "AccSipGeneralVC.h"
+#import "AccAdvancedRingVC.h"
+#import "AccAdvancedSipVC.h"
+
+@interface AccountSettingsVC ()
+
+@property (unsafe_unretained) IBOutlet NSScrollView *containerView;
+@property (unsafe_unretained) IBOutlet NSView *settingsView;
+
+@end
+
+@implementation AccountSettingsVC
+
+std::string selectedAccountID;
+NSViewController <AccountGeneralProtocol>* accountGeneralVC;
+NSViewController <AccountAdvancedProtocol>* accountAdvancedVC;
+AccRingGeneralVC* ringGeneralVC;
+AccSipGeneralVC* sipGeneralVC;
+AccAdvancedRingVC* ringAdvancedVC;
+AccAdvancedSipVC* sipAdvancedVC;
+
+CGFloat const VIEW_INSET = 20;
+
+@synthesize accountModel;
+
+-(id) initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil accountmodel:(lrc::api::NewAccountModel*) accountModel
+{
+    if (self =  [self initWithNibName: nibNameOrNil bundle:nibBundleOrNil])
+    {
+        self.accountModel= accountModel;
+    }
+   ringGeneralVC =  [[AccRingGeneralVC alloc] initWithNibName:@"AccRingGeneral" bundle:nil accountmodel: accountModel];
+   sipGeneralVC =  [[AccSipGeneralVC alloc] initWithNibName:@"AccSipGeneral" bundle:nil accountmodel: accountModel];
+   ringAdvancedVC = [[AccAdvancedRingVC alloc] initWithNibName:@"AccAdvancedRing" bundle:nil accountmodel: accountModel];
+   sipAdvancedVC = [[AccAdvancedSipVC alloc] initWithNibName:@"AccAdvancedSip" bundle:nil accountmodel: accountModel];
+   return self;
+}
+
+- (void)viewDidLoad {
+    [super viewDidLoad];
+    [self.view setWantsLayer:YES];
+    [self.view setLayer:[CALayer layer]];
+    [self.view.layer setBackgroundColor:[NSColor ringGreyHighlight].CGColor];
+    [self.view.layer setCornerRadius:5.0f];
+}
+
+- (void) initFrame
+{
+    [self.view setFrame:self.view.superview.bounds];
+    [self.view setHidden:YES];
+}
+
+- (void) setSelectedAccount:(std::string) account {
+    selectedAccountID = account;
+    const auto& accountInfo = accountModel->getAccountInfo(selectedAccountID);
+    if (accountInfo.profileInfo.type == lrc::api::profile::Type::RING) {
+        accountGeneralVC = ringGeneralVC;
+        accountGeneralVC.delegate = self;
+        accountAdvancedVC = ringAdvancedVC;
+    } else if (accountInfo.profileInfo.type == lrc::api::profile::Type::SIP){
+        accountGeneralVC = sipGeneralVC;
+        accountGeneralVC.delegate = self;
+        accountAdvancedVC = sipAdvancedVC;
+    } else {
+        [self hide];
+        return;
+    }
+    [accountGeneralVC setSelectedAccount: selectedAccountID];
+    [accountAdvancedVC setSelectedAccount: selectedAccountID];
+    [self displayGeneralSettings];
+}
+
+- (void) show {
+    [self.view setHidden:NO];
+    [self displayGeneralSettings];
+}
+
+-(void)displayGeneralSettings {
+    self.containerView.documentView = accountGeneralVC.view;
+    int bottomInset = self.containerView.frame.size.height - accountGeneralVC.view.frame.size.height - VIEW_INSET;
+    self.containerView.contentInsets = NSEdgeInsetsMake(VIEW_INSET, 0, bottomInset, 0);
+}
+
+-(void)displayAllSettings {
+    CGRect settingsFrame = accountGeneralVC.view.frame;
+    settingsFrame.size.height = settingsFrame.size.height + accountAdvancedVC.view.frame.size.height;
+    NSView* container = [[NSView alloc] initWithFrame:settingsFrame];
+    [container addSubview:accountAdvancedVC.view];
+    CGRect generalSettingsFrame = accountGeneralVC.view.frame;
+    generalSettingsFrame.origin.y = accountAdvancedVC.view.frame.size.height;
+    accountGeneralVC.view.frame = generalSettingsFrame;
+    [container addSubview:accountGeneralVC.view];
+    self.containerView.documentView = container;
+    int bottomInset = self.containerView.frame.size.height - accountGeneralVC.view.frame.size.height - accountAdvancedVC.view.frame.size.height - VIEW_INSET;
+    self.containerView.contentInsets = NSEdgeInsetsMake(VIEW_INSET, 0, (bottomInset > 0) ? bottomInset : 0, 0);
+   [self scrollToTopScrollView: self.containerView];
+}
+
+-(void) scrollToTopScrollView: (NSScrollView *) scrollView {
+    NSPoint newScrollOrigin;
+    if ([[scrollView documentView] isFlipped]) {
+        newScrollOrigin=NSMakePoint(0.0,0.0);
+    } else {
+        newScrollOrigin=NSMakePoint(0.0,NSMaxY([[scrollView documentView] frame])
+                                    -NSHeight([[scrollView contentView] bounds]));
+    }
+
+    [[scrollView documentView] scrollPoint:newScrollOrigin];
+}
+
+
+#pragma mark - AccountGeneralDelegate methods
+
+-(void) updateFrame {
+    if (accountAdvancedVC.view.superview == self.containerView.documentView) {
+        [self displayAllSettings];
+        return;
+    }
+    [self displayGeneralSettings];
+}
+
+-(void) triggerAdvancedOptions {
+    if(self.containerView.documentView.frame.size.height == (accountGeneralVC.view.frame.size.height + accountAdvancedVC.view.frame.size.height)) {
+        [self displayGeneralSettings];
+        return;
+    }
+    [self displayAllSettings];
+}
+
+- (void) hide {
+    [self.view setHidden:YES];
+}
+
+@end
diff --git a/src/AccountsVC.mm b/src/AccountsVC.mm
deleted file mode 100644
index fa856cf3376305045e19cb7850b5308ce2a086b6..0000000000000000000000000000000000000000
--- a/src/AccountsVC.mm
+++ /dev/null
@@ -1,447 +0,0 @@
-/*
- *  Copyright (C) 2015-2016 Savoir-faire Linux Inc.
- *  Author: Alexandre Lision <alexandre.lision@savoirfairelinux.com>
- *
- *  This program is free software; you can redistribute it and/or modify
- *  it under the terms of the GNU General Public License as published by
- *  the Free Software Foundation; either version 3 of the License, or
- *  (at your option) any later version.
- *
- *  This program is distributed in the hope that it will be useful,
- *  but WITHOUT ANY WARRANTY; without even the implied warranty of
- *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- *  GNU General Public License for more details.
- *
- *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA.
- */
-
-#import "AccountsVC.h"
-
-// Qt
-#import <QItemSelectionModel>
-#import <QSortFilterProxyModel>
-#import <QtCore/qdir.h>
-#import <QtCore/qstandardpaths.h>
-
-// LRC
-#import <accountmodel.h>
-#import <protocolmodel.h>
-#import <account.h>
-
-#import "QNSTreeController.h"
-#import "AccGeneralVC.h"
-#import "AccMediaVC.h"
-#import "AccAdvancedVC.h"
-#import "AccSecurityVC.h"
-#import "AccRingVC.h"
-#import "AccDevicesVC.h"
-#import "BackupAccountWC.h"
-#import "RestoreAccountWC.h"
-#import "RingWizardWC.h"
-#import "AccBannedContactsVC.h"
-
-@interface AccountsVC () <BackupAccountDelegate, RestoreAccountDelegate>
-
-@property (assign) IBOutlet NSPopUpButton *protocolList;
-
-@property (assign) IBOutlet NSTabView *configPanels;
-@property (retain) IBOutlet NSTabViewItem *generalTabItem;
-@property (retain) IBOutlet NSTabViewItem *mediaTabItem;
-@property (retain) IBOutlet NSTabViewItem *advancedTabItem;
-@property (retain) IBOutlet NSTabViewItem *securityTabItem;
-@property (retain) IBOutlet NSTabViewItem *ringTabItem;
-@property (retain) IBOutlet NSTabViewItem *ringDevicesTabItem;
-@property (retain) IBOutlet NSTabViewItem *bannedListTabItem;
-
-@property QNSTreeController *treeController;
-@property (assign) IBOutlet NSOutlineView *accountsListView;
-@property (assign) IBOutlet NSTabView *accountDetailsView;
-@property (unsafe_unretained) IBOutlet NSButton* exportAccountButton;
-
-@property AccRingVC* ringVC;
-@property AccDevicesVC* devicesVC;
-@property AccGeneralVC* generalVC;
-@property AccMediaVC* audioVC;
-@property AccAdvancedVC* advancedVC;
-@property AccBannedContactsVC* bannedContactsVC;
-@property AccSecurityVC* securityVC;
-@property AbstractLoadingWC* accountModal;
-@property RingWizardWC* wizard;
-
-@end
-
-@implementation AccountsVC
-@synthesize protocolList;
-@synthesize configPanels;
-@synthesize generalTabItem;
-@synthesize mediaTabItem;
-@synthesize advancedTabItem;
-@synthesize securityTabItem;
-@synthesize ringTabItem;
-@synthesize ringDevicesTabItem;
-@synthesize accountsListView;
-@synthesize accountDetailsView;
-@synthesize treeController;
-@synthesize accountModal;
-@synthesize wizard;
-@synthesize bannedListTabItem;
-
-NSInteger const TAG_CHECK       =   100;
-NSInteger const TAG_NAME        =   200;
-NSInteger const TAG_STATUS      =   300;
-NSInteger const TAG_TYPE        =   400;
-
-QMetaObject::Connection accountChangedConnection, selectedAccountChangedConnection, accountTypeChangedConnection;
-
-@synthesize accountModel;
-
-
-- (void)loadView {
-    [super loadView];
-    treeController = [[QNSTreeController alloc] initWithQModel:&AccountModel::instance()];
-    [treeController setAvoidsEmptySelection:NO];
-    [treeController setAlwaysUsesMultipleValuesMarker:YES];
-    [treeController setChildrenKeyPath:@"children"];
-
-    [accountsListView bind:@"content" toObject:treeController withKeyPath:@"arrangedObjects" options:nil];
-    [accountsListView bind:@"sortDescriptors" toObject:treeController withKeyPath:@"sortDescriptors" options:nil];
-    [accountsListView bind:@"selectionIndexPaths" toObject:treeController withKeyPath:@"selectionIndexPaths" options:nil];
-
-    QObject::disconnect(accountChangedConnection);
-    QObject::disconnect(selectedAccountChangedConnection);
-
-    accountChangedConnection = QObject::connect(&AccountModel::instance(),
-                                                &QAbstractItemModel::dataChanged,
-                                                [=](const QModelIndex &topLeft, const QModelIndex &bottomRight) {
-                                                    [accountsListView reloadDataForRowIndexes:
-                                                     [NSIndexSet indexSetWithIndexesInRange:NSMakeRange(topLeft.row(), bottomRight.row() + 1)]
-                                                                                columnIndexes:[NSIndexSet indexSetWithIndexesInRange:NSMakeRange(0, accountsListView.tableColumns.count)]];
-                                                });
-
-    selectedAccountChangedConnection = QObject::connect(AccountModel::instance().selectionModel(),
-                                                        &QItemSelectionModel::currentChanged,
-                                                        [=](const QModelIndex &current, const QModelIndex &previous) {
-                                                            [accountDetailsView setHidden:!current.isValid()];
-                                                            if(!current.isValid()) {
-                                                                [accountsListView deselectAll:nil];
-                                                                return;
-                                                            }
-
-                                                            [treeController setSelectionQModelIndex:current];
-                                                        });
-    AccountModel::instance().selectionModel()->clearCurrentIndex();
-
-
-    QModelIndex qProtocolIdx = AccountModel::instance().protocolModel()->selectionModel()->currentIndex();
-    [self.protocolList addItemWithTitle:
-                           AccountModel::instance().protocolModel()->data(qProtocolIdx, Qt::DisplayRole).toString().toNSString()];
-    QObject::disconnect(accountTypeChangedConnection);
-    accountTypeChangedConnection = QObject::connect(AccountModel::instance().protocolModel()->selectionModel(),
-                                                    &QItemSelectionModel::currentChanged,
-                                                    [=](const QModelIndex &current, const QModelIndex &previous) {
-                                                        if (!current.isValid()) {
-                                                            return;
-                                                        }
-                                                        [protocolList removeAllItems];
-                                                        [protocolList addItemWithTitle:AccountModel::instance().protocolModel()->data(current, Qt::DisplayRole).toString().toNSString()];
-                                                    });
-
-    self.generalVC = [[AccGeneralVC alloc] initWithNibName:@"AccGeneral" bundle:nil];
-    [[self.generalVC view] setFrame:[self.generalTabItem.view frame]];
-    [[self.generalVC view] setBounds:[self.generalTabItem.view bounds]];
-    [self.generalTabItem setView:self.generalVC.view];
-
-    self.audioVC = [[AccMediaVC alloc] initWithNibName:@"AccMedia" bundle:nil];
-    [[self.audioVC view] setFrame:[self.mediaTabItem.view frame]];
-    [[self.audioVC view] setBounds:[self.mediaTabItem.view bounds]];
-    [self.mediaTabItem setView:self.audioVC.view];
-
-    self.advancedVC = [[AccAdvancedVC alloc] initWithNibName:@"AccAdvanced" bundle:nil];
-    [[self.advancedVC view] setFrame:[self.advancedTabItem.view frame]];
-    [[self.advancedVC view] setBounds:[self.advancedTabItem.view bounds]];
-    [self.advancedTabItem setView:self.advancedVC.view];
-
-    self.securityVC = [[AccSecurityVC alloc] initWithNibName:@"AccSecurity" bundle:nil];
-    [[self.securityVC view] setFrame:[self.securityTabItem.view frame]];
-    [[self.securityVC view] setBounds:[self.securityTabItem.view bounds]];
-    [self.securityTabItem setView:self.securityVC.view];
-
-    self.ringVC = [[AccRingVC alloc] initWithNibName:@"AccRing" bundle:nil];
-    [[self.ringVC view] setFrame:[self.ringTabItem.view frame]];
-    [[self.ringVC view] setBounds:[self.ringTabItem.view bounds]];
-    [self.ringTabItem setView:self.ringVC.view];
-
-    self.devicesVC = [[AccDevicesVC alloc] initWithNibName:@"AccDevices" bundle:nil];
-    [[self.devicesVC view] setFrame:[self.ringDevicesTabItem.view frame]];
-    [[self.devicesVC view] setBounds:[self.ringDevicesTabItem.view bounds]];
-    [self.ringDevicesTabItem setView:self.devicesVC.view];
-
-    self.bannedContactsVC = [[AccBannedContactsVC alloc] initWithNibName:@"AccBannedContacts" bundle:nil];
-    [[self.bannedContactsVC view] setFrame:[self.bannedListTabItem.view frame]];
-    [[self.bannedContactsVC view] setBounds:[self.bannedListTabItem.view bounds]];
-    [self.bannedListTabItem setView:self.bannedContactsVC.view];
-}
-
--(id) initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil accountmodel:(lrc::api::NewAccountModel*) accountModel
-{
-    if (self =  [self initWithNibName: nibNameOrNil bundle:nibBundleOrNil])
-    {
-        self.accountModel= accountModel;
-    }
-    return self;
-}
-
-- (void) setupSIPPanels
-{
-    // Start by removing all tabs
-    for(NSTabViewItem* item in configPanels.tabViewItems) {
-        [configPanels removeTabViewItem:item];
-    }
-    [configPanels insertTabViewItem:generalTabItem atIndex:0];
-    [configPanels insertTabViewItem:mediaTabItem atIndex:1];
-    [configPanels insertTabViewItem:advancedTabItem atIndex:2];
-    [configPanels insertTabViewItem:securityTabItem atIndex:3];
-}
-
-- (void) setupRINGPanels
-{
-    // Start by removing all tabs
-    for(NSTabViewItem* item in configPanels.tabViewItems) {
-        [configPanels removeTabViewItem:item];
-    }
-
-    [configPanels insertTabViewItem:ringTabItem atIndex:0];
-    [configPanels insertTabViewItem:ringDevicesTabItem atIndex:1];
-    [configPanels insertTabViewItem:mediaTabItem atIndex:2];
-    [configPanels insertTabViewItem:advancedTabItem atIndex:3];
-    [configPanels insertTabViewItem:bannedListTabItem atIndex:4];
-}
-
-- (IBAction)toggleAccount:(NSButton*)sender {
-    NSInteger row = [accountsListView rowForView:sender];
-    auto accountToToggle = AccountModel::instance().getAccountByModelIndex(AccountModel::instance().index(row));
-    accountToToggle->setEnabled(sender.state);
-    accountToToggle << Account::EditAction::SAVE;
-}
-
-#pragma mark - NSOutlineViewDelegate methods
-
-- (BOOL)outlineView:(NSOutlineView *)outlineView shouldSelectItem:(id)item;
-{
-    return YES;
-}
-
-- (NSTableRowView *)outlineView:(NSOutlineView *)outlineView rowViewForItem:(id)item
-{
-    return [outlineView makeViewWithIdentifier:@"HoverRowView" owner:nil];
-}
-
-- (NSView *)outlineView:(NSOutlineView *)outlineView viewForTableColumn:(NSTableColumn *)tableColumn item:(id)item
-{
-    NSTableView* result = [outlineView makeViewWithIdentifier:@"AccountView" owner:self];
-
-    QModelIndex qIdx = [treeController toQIdx:((NSTreeNode*)item)];
-    if(!qIdx.isValid())
-        return result;
-
-    NSTextField* nameLabel = [result viewWithTag:TAG_NAME];
-    NSTextField* stateLabel = [result viewWithTag:TAG_STATUS];
-    NSButton* checkButton = [result viewWithTag:TAG_CHECK];
-    NSTextField* typeLabel = [result viewWithTag:TAG_TYPE];
-
-    auto account = AccountModel::instance().getAccountByModelIndex(qIdx);
-    auto humanState = account->toHumanStateName();
-
-    [nameLabel setStringValue:account->alias().toNSString()];
-    [stateLabel setStringValue:humanState.toNSString()];
-
-    switch (account->protocol()) {
-        case Account::Protocol::SIP:
-            [typeLabel setStringValue:@"SIP"];
-            break;
-        case Account::Protocol::RING:
-            [typeLabel setStringValue:@"RING"];
-            break;
-        default:
-            break;
-    }
-
-    switch (account->registrationState()) {
-        case Account::RegistrationState::READY:
-            [stateLabel setTextColor:[NSColor colorWithCalibratedRed:116/255.0 green:179/255.0 blue:93/255.0 alpha:1.0]];
-            break;
-        case Account::RegistrationState::TRYING:
-            [stateLabel setTextColor:[NSColor redColor]];
-            break;
-        case Account::RegistrationState::UNREGISTERED:
-            [stateLabel setTextColor:[NSColor blackColor]];
-            break;
-        case Account::RegistrationState::ERROR:
-            [stateLabel setTextColor:[NSColor redColor]];
-            break;
-        default:
-            [stateLabel setTextColor:[NSColor blackColor]];
-            break;
-    }
-
-    [checkButton setState:qIdx.data(Qt::CheckStateRole).value<BOOL>()];
-
-    return result;
-}
-
-- (void)outlineViewSelectionDidChange:(NSNotification *)notification
-{
-    // ask the tree controller for the current selection
-    [self.exportAccountButton setEnabled:[[treeController selectedNodes] count] > 0];
-    if([[treeController selectedNodes] count] > 0) {
-        auto qIdx = [treeController toQIdx:[treeController selectedNodes][0]];
-        //Update details view
-        auto acc = AccountModel::instance().getAccountByModelIndex(qIdx);
-        AccountModel::instance().selectionModel()->setCurrentIndex(qIdx, QItemSelectionModel::ClearAndSelect);
-
-        switch (acc->protocol()) {
-            case Account::Protocol::SIP:
-                [self setupSIPPanels];
-                break;
-            case Account::Protocol::RING:
-                [self setupRINGPanels];
-                break;
-            default:
-                break;
-        }
-
-        [self.accountDetailsView setHidden:NO];
-    } else {
-        AccountModel::instance().selectionModel()->clearCurrentIndex();
-    }
-}
-
-#pragma mark - Delete account
-
-- (IBAction)removeAccount:(id)sender
-{
-    AccountModel::instance().remove(AccountModel::instance().selectedAccount());
-    AccountModel::instance().save();
-}
-
-#pragma mark - Advanced menu methods
-
-- (IBAction)advancedActionsClicked:(NSButton *)sender
-{
-    NSMenu* menu = [[NSMenu alloc] init];
-
-    auto backupItem = [[NSMenuItem alloc] initWithTitle:NSLocalizedString(@"Backup account", @"Contextual menu entry")
-                               action:@selector(backupAccount:)
-                        keyEquivalent:@""];
-
-    if(treeController.selectedNodes.count == 0) {
-        // Use a fake selector, to grey out the Backup entry in the menu
-        [backupItem setAction:@selector(disable:)];
-    }
-
-    [menu insertItem:backupItem atIndex:0];
-
-    [menu insertItemWithTitle:NSLocalizedString(@"Restore account", @"Contextual menu entry")
-                       action:@selector(restoreAccount:)
-                keyEquivalent:@""
-                      atIndex:0];
-
-    [NSMenu popUpContextMenu:menu withEvent:[self forgedEventForButton:sender] forView:(NSButton *)sender];
-}
-
-- (void) backupAccount:(NSMenuItem*) sender
-{
-    auto passwordWC = [[BackupAccountWC alloc] initWithDelegate:self];
-#if MAC_OS_X_VERSION_MIN_REQUIRED > MAC_OS_X_VERSION_10_9
-    [self.view.window beginSheet:passwordWC.window completionHandler:nil];
-#else
-    [NSApp beginSheet: passwordWC.window
-       modalForWindow: self.view.window
-        modalDelegate: self
-       didEndSelector: nil
-          contextInfo: nil];
-#endif
-    [passwordWC setAllowFileSelection:NO];
-    if(treeController.selectedNodes.count > 0) {
-        QStringList accounts;
-        for (id item : [treeController selectedNodes]) {
-            QModelIndex accIdx = [treeController toQIdx:item];
-            accounts << AccountModel::instance().getAccountByModelIndex(accIdx)->id();
-        }
-        [passwordWC setAccounts:accounts];
-    }
-    [passwordWC showWindow:self];
-    accountModal = passwordWC;
-}
-
-- (void) restoreAccount:(NSMenuItem*) sender
-{
-    auto passwordWC = [[RestoreAccountWC alloc] initWithDelegate:self];
-#if MAC_OS_X_VERSION_MIN_REQUIRED > MAC_OS_X_VERSION_10_9
-    [self.view.window beginSheet:passwordWC.window completionHandler:nil];
-#else
-    [NSApp beginSheet: passwordWC.window
-       modalForWindow: self.view.window
-        modalDelegate: self
-       didEndSelector: nil
-          contextInfo: nil];
-#endif
-    [passwordWC setAllowFileSelection:YES];
-    [passwordWC showWindow:self];
-    accountModal = passwordWC;
-}
-
-- (NSEvent*) forgedEventForButton:(NSButton*) button
-{
-    NSRect frame = [button frame];
-    NSPoint menuOrigin = [[button superview]
-                          convertPoint:NSMakePoint(frame.origin.x, frame.origin.y)
-                          toView:nil];
-    return [NSEvent mouseEventWithType:NSLeftMouseDown
-                              location:menuOrigin
-                         modifierFlags:NSLeftMouseDownMask // 0x100
-                             timestamp:0
-                          windowNumber:[[button window] windowNumber]
-                               context:[[button window] graphicsContext]
-                           eventNumber:0
-                            clickCount:1
-                              pressure:1];
-}
-
-
-#pragma mark - Account creation methods
-
-- (IBAction)addAccountClicked:(NSButton *)sender
-{
-    wizard = [[RingWizardWC alloc] initWithNibName:@"RingWizard" bundle: nil accountmodel: self.accountModel];
-    [wizard showChooseWithCancelButton: YES andAdvanced: YES];
-    [self.view.window beginSheet:wizard.window completionHandler:nil];
-    [wizard showWindow:self];
-}
-
-- (void)createSIPAccount:(NSMenuItem*) sender
-{
-    auto acc = AccountModel::instance().add([NSLocalizedString(@"New SIP account", @"User label") UTF8String]);
-    acc->setDisplayName(acc->alias());
-    acc->setProtocol(Account::Protocol::SIP);
-    acc->setDTMFType(DtmfType::OverSip);
-    AccountModel::instance().save();
-}
-
-#pragma mark - BackupAccountDelegate methods
-
--(void) didCompleteExportWithPath:(NSURL*) fileUrl
-{
-    [[NSWorkspace sharedWorkspace] selectFile:fileUrl.path inFileViewerRootedAtPath:@""];
-}
-
-#pragma mark - RestoreAccountDelegate methods
-
--(void) didCompleteImport
-{
-    // Nothing to do here
-}
-
-@end
diff --git a/src/AddSIPAccountVC.mm b/src/AddSIPAccountVC.mm
index 2e3c4f298e5cc0f30e10203139624468e077b5f0..6403fc36f113096597bff51eaad88065746c3c86 100644
--- a/src/AddSIPAccountVC.mm
+++ b/src/AddSIPAccountVC.mm
@@ -28,6 +28,7 @@
 
 //ring
 #import "AddSIPAccountVC.h"
+#import "views/NSImage+Extensions.h"
 
 @interface AddSIPAccountVC () {
     __unsafe_unretained IBOutlet NSButton* photoView;
@@ -103,7 +104,7 @@ NSTimer* timeoutTimer;
                                           QObject::disconnect(accountCreated);
                                           [self.delegate close];
                                       });
-    accountToCreate = self.accountModel->createNewAccount(lrc::api::profile::Type::SIP, [displayName UTF8String]);
+    accountToCreate = self.accountModel->createNewAccount(lrc::api::profile::Type::SIP, [@"SIP" UTF8String]);
 
     timeoutTimer = [NSTimer scheduledTimerWithTimeInterval:5
                                                     target:self
@@ -134,6 +135,9 @@ NSTimer* timeoutTimer;
 {
     if (auto outputImage = [picker outputImage]) {
         [photoView setBordered:NO];
+        auto image = [picker inputImage];
+        CGFloat newSize = MIN(image.size.height, image.size.width);
+        outputImage = [outputImage cropImageToSize:CGSizeMake(newSize, newSize)];
         [photoView setImage:outputImage];
         [addProfilePhotoImage setHidden:YES];
     } else if(!photoView.image) {
diff --git a/src/BackupAccountWC.h b/src/BackupAccountWC.h
index ee0cd42d44b96e407a1d750ffceeead80494f689..b1e1905ca6744b5cd316471dce3ed653cc067417 100644
--- a/src/BackupAccountWC.h
+++ b/src/BackupAccountWC.h
@@ -23,6 +23,7 @@
 
 #import "LoadingWCDelegate.h"
 #import "AbstractLoadingWC.h"
+#import "LrcModelsProtocol.h"
 
 @protocol BackupAccountDelegate <LoadingWCDelegate>
 
@@ -32,41 +33,11 @@
 
 @end
 
-@interface BackupAccountWC : AbstractLoadingWC
-
-- (id)initWithDelegate:(id <LoadingWCDelegate>) del;
+@interface BackupAccountWC : AbstractLoadingWC <LrcModelsProtocol>
 
 /**
  * Allow the NSPathControl of this window to select files or not
  */
 @property (nonatomic) BOOL allowFileSelection;
 
-/**
- * password string contained in passwordField.
- * This is a KVO method to bind the text with the OK Button
- * if password.length is > 0, button is enabled, otherwise disabled
- */
-@property (retain) NSString* password;
-
-/**
- * Object uses to store account to exports
- */
-@property (assign) QStringList accounts;
-
-/**
- * passwordConfirmation string contained in passwordConfirmationField.
- */
-@property (retain) NSString* passwordConfirmation;
-
-/**
- * computed properties calculated by password string contained in
- * passwordField and passwordCOnfirmation string contained
- * inpasswordConfirmationField
- * This is a KVO method to bind the text with the OK Button
- * if password.length is > 0 AND passwordConfirmation.length > 0
- * AND password isEqualsToString passwordCOnfirmationbutton is enabled,
- * otherwise disabled
- */
-@property (readonly) BOOL validatePasswords;
-
 @end
diff --git a/src/BackupAccountWC.mm b/src/BackupAccountWC.mm
index e530d1f92f4b5a349b859da144806d69616bbd35..803ab9485fe4f0675e33040c5d9ef93e98ffcae2 100644
--- a/src/BackupAccountWC.mm
+++ b/src/BackupAccountWC.mm
@@ -19,17 +19,17 @@
 #import "BackupAccountWC.h"
 
 //LRC
-#import <accountmodel.h>
+#import <api/lrc.h>
+#import <api/newaccountmodel.h>
+#import <account.h>
 
 //Ring
 #import "views/ITProgressIndicator.h"
 
 @interface BackupAccountWC() <NSTextFieldDelegate> {
     __unsafe_unretained IBOutlet NSPathControl* path;
-    __unsafe_unretained IBOutlet NSSecureTextField* passwordField;
-    __unsafe_unretained IBOutlet NSSecureTextField* passwordConfirmationField;
     __unsafe_unretained IBOutlet ITProgressIndicator* progressIndicator;
-
+    __unsafe_unretained IBOutlet NSButton* cancelButton;
 }
 
 @end
@@ -39,16 +39,16 @@
         unsigned int didCompleteExport:1;
     } delegateRespondsTo;
 }
-@synthesize accounts;
 
-- (id)initWithDelegate:(id <LoadingWCDelegate>) del
-{
-    return [self initWithDelegate:del actionCode:0];
-}
+@synthesize accountModel;
 
-- (id)initWithDelegate:(id <BackupAccountDelegate>) del actionCode:(NSInteger) code
+-(id) initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil accountmodel:(lrc::api::NewAccountModel*) accountModel
 {
-    return [super initWithWindowNibName:@"BackupAccountWindow" delegate:del actionCode:code];
+    if (self = [self initWithWindowNibName:nibNameOrNil])
+    {
+        self.accountModel= accountModel;
+    }
+    return self;
 }
 
 - (void)windowDidLoad
@@ -65,18 +65,6 @@
     }
 }
 
-- (BOOL)validatePasswords
-{
-    BOOL result = (self.password.length != 0 && [self.password isEqualToString:self.passwordConfirmation]);
-    NSLog(@"ValidatesPasswords : %s", result ? "true" : "false");
-    return result;
-}
-
-+ (NSSet *)keyPathsForValuesAffectingValidatePasswords
-{
-    return [NSSet setWithObjects:@"password", @"passwordConfirmation", nil];
-}
-
 - (void) setAllowFileSelection:(BOOL) b
 {
     _allowFileSelection = b;
@@ -85,20 +73,22 @@
 
 - (IBAction)completeAction:(id)sender
 {
-    auto finalURL = [path.URL URLByAppendingPathComponent:@"accounts.ring"];
+    auto accounts = accountModel->getAccountList();
+    if(accounts.empty()) {
+        return;
+    }
+    auto selectedAccountID = accounts.at(0);
+    auto finalURL = [path.URL URLByAppendingPathComponent:[@"Account_" stringByAppendingString: @(selectedAccountID.c_str())]];
     [self showLoading];
     dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
-        int result = AccountModel::instance().exportAccounts(accounts, finalURL.path.UTF8String, passwordField.stringValue.UTF8String);
-        switch (result) {
-            case 0:
-                if (delegateRespondsTo.didCompleteExport){
-                    [((id<BackupAccountDelegate>)self.delegate) didCompleteExportWithPath:finalURL];
-                }
-                [self close];
-                break;
-            default:{
-                [self showError] ;
-            }break;
+        if (self.accountModel->exportToFile(selectedAccountID, finalURL.path.UTF8String)) {
+            if (delegateRespondsTo.didCompleteExport) {
+                [((id<BackupAccountDelegate>)self.delegate) didCompleteExportWithPath:finalURL];
+            }
+            [self close];
+            [self.window.sheetParent endSheet: self.window];
+        } else {
+            [self showError];
         }
     });
 }
diff --git a/src/ChooseAccountVC.h b/src/ChooseAccountVC.h
index f8a1c272b88378a22a617fff5f6a1325fed1451e..c4da60509e7ad6d576700bacfed05153b79c484c 100644
--- a/src/ChooseAccountVC.h
+++ b/src/ChooseAccountVC.h
@@ -31,14 +31,20 @@ namespace lrc {
     }
 }
 
-@class RingWindowController;
+@protocol ChooseAccountDelegate <NSObject>
+- (void) selectAccount:(const lrc::api::account::Info&)accInfo currentRemoved:(BOOL) removed;
+- (void) allAccountsDeleted;
+- (void) createNewAccount;
+@end
 
 @interface ChooseAccountVC : NSViewController
 
+@property (retain, nonatomic) id <ChooseAccountDelegate> delegate;
+
 @property (readonly) const lrc::api::account::Info& selectedAccount;
 
 -(void) enable;
 -(void) disable;
--(id) initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil model:(const lrc::api::NewAccountModel*) accMdl delegate:(RingWindowController *)mainWindow;
+-(id) initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil model:(lrc::api::NewAccountModel*) accMdl delegate:(id <ChooseAccountDelegate> )mainWindow;
 
 @end
diff --git a/src/ChooseAccountVC.mm b/src/ChooseAccountVC.mm
index fd183e36a180e318f65e4cbe93784cc598fa98b4..b7e27eed708b5f23040fd0977d2974a2ddd91df8 100644
--- a/src/ChooseAccountVC.mm
+++ b/src/ChooseAccountVC.mm
@@ -49,21 +49,19 @@
     __unsafe_unretained IBOutlet NSImageView*   profileImage;
     __unsafe_unretained IBOutlet NSTextField*    accountStatus;
     __unsafe_unretained IBOutlet NSPopUpButton* accountSelectionButton;
-    const lrc::api::NewAccountModel* accMdl_;
+    lrc::api::NewAccountModel* accMdl_;
     AccountSelectionManager* accountSelectionManager_;
-    RingWindowController* delegate;
-
 }
 Boolean menuIsOpen;
 Boolean menuNeedsUpdate;
 NSMenu* accountsMenu;
 NSMenuItem* selectedMenuItem;
 
--(id) initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil model:(const lrc::api::NewAccountModel*) accMdl delegate:(RingWindowController *)mainWindow
+-(id) initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil model:(lrc::api::NewAccountModel*) accMdl delegate:(id <ChooseAccountDelegate> )mainWindow
 {
     accMdl_ = accMdl;
     accountSelectionManager_ = [[AccountSelectionManager alloc] initWithAccountModel:accMdl_];
-    delegate = mainWindow;
+    self.delegate = mainWindow;
     return [self initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
 }
 
@@ -86,7 +84,7 @@ NSMenuItem* selectedMenuItem;
                          [self update];
                          @try {
                              auto& account = [self selectedAccount];
-                             [delegate selectAccount:account];
+                             [self.delegate selectAccount:account currentRemoved: NO];
                          }
                          @catch (NSException * e) {
                              NSLog(@"account selection failed");
@@ -100,10 +98,10 @@ NSMenuItem* selectedMenuItem;
                          }
                          @try {
                              auto& account = [self selectedAccount];
-                             [delegate selectAccount:account];
+                             [self.delegate selectAccount:account currentRemoved: YES];
                          }
                          @catch (NSException * e) {
-                             [delegate allAccountsDeleted];
+                             [self.delegate allAccountsDeleted];
                          }
                          [self update];
                      });
@@ -167,7 +165,7 @@ NSMenuItem* selectedMenuItem;
 
     // create "add a new account" menu item
     NSMenuItem* menuBarItem = [[NSMenuItem alloc]
-                               initWithTitle:@""
+                               initWithTitle:@"Add Account"
                                action:nil
                                keyEquivalent:@""];
     AccountMenuItemView *itemView = [[AccountMenuItemView alloc] initWithFrame:CGRectZero];
@@ -180,7 +178,8 @@ NSMenuItem* selectedMenuItem;
     [itemView.createNewAccount setTarget:self];
     [menuBarItem setView: itemView];
     [accountsMenu addItem: menuBarItem];
-    [[accountSelectionButton itemAtIndex:[accountsMenu numberOfItems] -1] setEnabled:NO];
+    [profileImage setHidden:accList.empty()];
+    [accountStatus setHidden:accList.empty()];
 }
 
 -(void) configureView: (AccountMenuItemView *) itemView forAccount:(const std::string&) accountId {
@@ -195,8 +194,7 @@ NSMenuItem* selectedMenuItem;
     } else {
         [itemView.accountAvatar setImage: [NSImage imageNamed:@"default_avatar_overlay.png"]];
     }
-    BOOL accountNotRegistered = account.status == lrc::api::account::Status::REGISTERED ? NO : YES;
-    [itemView.accountStatus setHidden:accountNotRegistered];
+    [itemView.accountStatus setHidden:!account.enabled];
     switch (account.profileInfo.type) {
         case lrc::api::profile::Type::SIP:
             [itemView.accountTypeLabel setStringValue:@"SIP"];
@@ -214,7 +212,7 @@ NSMenuItem* selectedMenuItem;
 
 - (void)createNewAccount:(id)sender {
     [accountSelectionButton.menu cancelTrackingWithoutAnimation];
-    [delegate createNewAccount];
+    [self.delegate createNewAccount];
 }
 
 -(void) updatePhoto
@@ -232,8 +230,7 @@ NSMenuItem* selectedMenuItem;
         } else {
             [profileImage setImage: [NSImage imageNamed:@"default_avatar_overlay.png"]];
         }
-        BOOL accountNotRegistered = account.status == lrc::api::account::Status::REGISTERED ? NO : YES;
-        [accountStatus setHidden:accountNotRegistered];
+        [accountStatus setHidden:!account.enabled];
     }
     @catch (NSException *ex) {
         NSLog(@"Caught exception %@: %@", [ex name], [ex reason]);
@@ -256,9 +253,6 @@ NSMenuItem* selectedMenuItem;
 - (NSAttributedString*) attributedItemTitleForAccount:(const lrc::api::account::Info&) account {
     NSString* alias = bestNameForAccount(account);
     NSString* userNameString = [self nameForAccount: account];
-    if(![alias isEqualToString:userNameString]) {
-        alias = [NSString stringWithFormat: @"%@\n", alias];
-    }
     NSFont *fontAlias = [NSFont userFontOfSize:14.0];
     NSFont *fontUserName = [NSFont userFontOfSize:11.0];
     NSColor *colorAlias = [NSColor labelColor];
@@ -271,6 +265,15 @@ NSMenuItem* selectedMenuItem;
     NSDictionary *userNameAttrs = [NSDictionary dictionaryWithObjectsAndKeys:fontUserName,NSFontAttributeName,
                                    colorAUserName,NSForegroundColorAttributeName,
                                    paragraphStyle,NSParagraphStyleAttributeName, nil];
+
+    if([alias isEqualToString:userNameString] || [userNameString length] == 0) {
+        paragraphStyle.paragraphSpacingBefore = 20;
+        aliasAttrs = [NSDictionary dictionaryWithObjectsAndKeys:fontAlias,NSFontAttributeName,
+                      colorAlias,NSForegroundColorAttributeName,
+                      paragraphStyle,NSParagraphStyleAttributeName, nil];
+        return [[NSAttributedString alloc] initWithString:alias attributes:aliasAttrs];
+    }
+    alias = [NSString stringWithFormat: @"%@\n", alias];
     NSAttributedString* attributedString = [[NSAttributedString alloc] initWithString:alias attributes:aliasAttrs];
     NSAttributedString* attributedStringSecond= [[NSAttributedString alloc] initWithString:userNameString attributes:userNameAttrs];
     NSMutableAttributedString *result = [[NSMutableAttributedString alloc] init];
@@ -316,7 +319,7 @@ NSMenuItem* selectedMenuItem;
 
     auto& account = accMdl_->getAccountInfo(accList[row]);
     [accountSelectionManager_ setSavedAccount:account];
-    [delegate selectAccount:account];
+    [self.delegate selectAccount:account currentRemoved: NO];
     [self updatePhoto];
 }
 
diff --git a/src/ExportPasswordWC.h b/src/ExportPasswordWC.h
index 3a6560cd10002d43b62dfc99fed2b449989c8473..2ab7c7356a47945151afd0b93983da1dd73ae2ab 100644
--- a/src/ExportPasswordWC.h
+++ b/src/ExportPasswordWC.h
@@ -19,20 +19,13 @@
 
 #import <Cocoa/Cocoa.h>
 
-#import <account.h>
 
 #import "LoadingWCDelegate.h"
 #import "AbstractLoadingWC.h"
+#import "LrcModelsProtocol.h"
+#include <string>
 
-@protocol ExportPasswordDelegate <LoadingWCDelegate>
-
-@optional
-- (void)didCompleteWithPin:(NSString*) path Password:(NSString*) password;
-- (void)didStartWithPassword:(NSString*) password;
-
-@end
-
-@interface ExportPasswordWC : AbstractLoadingWC
+@interface ExportPasswordWC : AbstractLoadingWC <LrcModelsProtocol>
 
 /**
  * password string contained in passwordField.
@@ -40,6 +33,6 @@
  * if password.length is > 0, button is enabled, otherwise disabled
  */
 @property (retain) NSString* password;
-@property (assign) Account* account;
+@property std::string selectedAccountID;
 
 @end
diff --git a/src/ExportPasswordWC.mm b/src/ExportPasswordWC.mm
index 054442e452a27a9b6926f5edb3a67d3b9f96917c..b423b3f4d5b47496c181aa056efb8e6bad709834 100644
--- a/src/ExportPasswordWC.mm
+++ b/src/ExportPasswordWC.mm
@@ -19,7 +19,10 @@
 #import "ExportPasswordWC.h"
 
 //LRC
+#import <api/lrc.h>
+#import <api/newaccountmodel.h>
 #import <account.h>
+#import <api/account.h>
 
 //Ring
 #import "views/ITProgressIndicator.h"
@@ -32,34 +35,19 @@
 @end
 
 @implementation ExportPasswordWC {
-    struct {
-        unsigned int didStart:1;
-        unsigned int didComplete:1;
-    } delegateRespondsTo;
-}
-
-@synthesize account;
-QMetaObject::Connection accountConnection;
-
 
-#pragma mark - Initialize
-- (id)initWithDelegate:(id <ExportPasswordDelegate>) del actionCode:(NSInteger) code
-{
-    return [super initWithWindowNibName:@"ExportPasswordWindow" delegate:del actionCode:code];
 }
 
-- (void)windowDidLoad
-{
-    [super windowDidLoad];
-}
+@synthesize accountModel;
+QMetaObject::Connection accountConnection;
 
-- (void)setDelegate:(id <ExportPasswordDelegate>)aDelegate
+-(id) initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil accountmodel:(lrc::api::NewAccountModel*) accountModel
 {
-    if (super.delegate != aDelegate) {
-        [super setDelegate: aDelegate];
-        delegateRespondsTo.didStart = [aDelegate respondsToSelector:@selector(didStartWithPassword:)];
-        delegateRespondsTo.didComplete = [aDelegate respondsToSelector:@selector(didCompleteWithPin:Password:)];
+    if (self =  [self initWithWindowNibName: nibNameOrNil])
+    {
+        self.accountModel= accountModel;
     }
+    return self;
 }
 
 - (void)showError:(NSString*) errorMessage
@@ -80,44 +68,42 @@ QMetaObject::Connection accountConnection;
 #pragma mark - Events Handlers
 - (IBAction)completeAction:(id)sender
 {
-    // Check to avoid exporting an old account (not supported by daemon)
-    if (account->needsMigration()) {
-        [self showError:NSLocalizedString(@"You have to migrate your account before exporting", @"Error shown to user")];
-    } else {
-        NSString* password = passwordField.stringValue;
-        [self showLoading];
-        QObject::disconnect(accountConnection);
-        accountConnection = QObject::connect(account,
-                                             &Account::exportOnRingEnded,
-                                             [=](Account::ExportOnRingStatus status,const QString &pin) {
-                                                 NSLog(@"Export ended!");
-                                                 switch (status) {
-                                                     case Account::ExportOnRingStatus::SUCCESS:{
-                                                         NSString *nsPin = pin.toNSString();
-                                                         NSLog(@"Export ended with Success, pin is %@",nsPin);
-                                                         [resultField setAttributedStringValue:[self formatPinMessage:nsPin]];
-                                                         [self showFinal];
-                                                     }
-                                                         break;
-                                                     case Account::ExportOnRingStatus::WRONG_PASSWORD:{
-                                                         NSLog(@"Export ended with wrong password");
-                                                         [self showError:NSLocalizedString(@"The password you entered does not unlock this account", @"Error shown to the user" )];
-                                                     }
-                                                         break;
-                                                     case Account::ExportOnRingStatus::NETWORK_ERROR:{
-                                                         NSLog(@"Export ended with NetworkError!");
-                                                         [self showError:NSLocalizedString(@"A network error occured during the export", @"Error shown to the user" )];
-                                                     }
-                                                         break;
-                                                     default:{
-                                                         NSLog(@"Export ended with Unknown status!");
-                                                         [self showError:NSLocalizedString(@"An error occured during the export", @"Error shown to the user" )];
-                                                     }
-                                                         break;
+    NSString* password = passwordField.stringValue;
+    [self showLoading];
+    QObject::disconnect(accountConnection);
+    accountConnection = QObject::connect(self.accountModel,
+                                         &lrc::api::NewAccountModel::exportOnRingEnded,
+                                         [self] (const std::string &accountID, lrc::api::account::ExportOnRingStatus status, const std::string &pin){
+                                             if(accountID.compare(self.selectedAccountID) != 0) {
+                                                 return;
+                                             }
+                                             switch (status) {
+                                                 case lrc::api::account::ExportOnRingStatus::SUCCESS: {
+                                                     NSString *nsPin = @(pin.c_str());
+                                                     NSLog(@"Export ended with Success, pin is %@",nsPin);
+                                                     [resultField setAttributedStringValue:[self formatPinMessage:nsPin]];
+                                                     [self showFinal];
                                                  }
-                                             });
-        account->exportOnRing(QString::fromNSString(password));
-    }
+                                                     break;
+                                                 case lrc::api::account::ExportOnRingStatus::WRONG_PASSWORD:{
+                                                     NSLog(@"Export ended with wrong password");
+                                                     [self showError:NSLocalizedString(@"The password you entered does not unlock this account", @"Error shown to the user" )];
+                                                 }
+                                                     break;
+                                                 case lrc::api::account::ExportOnRingStatus::NETWORK_ERROR:{
+                                                     NSLog(@"Export ended with NetworkError!");
+                                                     [self showError:NSLocalizedString(@"A network error occured during the export", @"Error shown to the user" )];
+                                                 }
+                                                     break;
+                                                 default:{
+                                                     NSLog(@"Export ended with Unknown status!");
+                                                     [self showError:NSLocalizedString(@"An error occured during the export", @"Error shown to the user" )];
+                                                 }
+                                                     break;
+                                             }
+                                              QObject::disconnect(accountConnection);
+                                         });
+    self.accountModel->exportOnRing(self.selectedAccountID, [password UTF8String]);
 }
 
 //TODO: Move String formatting to a dedicated Utility Classes
@@ -130,7 +116,7 @@ QMetaObject::Connection accountConnection;
 
     NSMutableParagraphStyle* mutParaStyle=[[NSMutableParagraphStyle alloc] init];
     [mutParaStyle setAlignment:NSCenterTextAlignment];
-    
+
     [thePin addAttributes:[NSDictionary dictionaryWithObject:mutParaStyle forKey:NSParagraphStyleAttributeName] range:range];
 
     NSMutableAttributedString* infos = [[NSMutableAttributedString alloc] initWithString:NSLocalizedString(@"To complete the processs, you need to open Ring on the new device and choose the option \"Link this device to an account\". Your pin is valid for 10 minutes.","Title shown to user to concat with Pin")];
diff --git a/src/PasswordChangeWC.h b/src/PasswordChangeWC.h
index 2f141b008b5d487e241aa957405d14810c0d7076..59a85b52696347a271071b2f69e60dcb8ce0241e 100644
--- a/src/PasswordChangeWC.h
+++ b/src/PasswordChangeWC.h
@@ -18,10 +18,19 @@
  */
 
 #import <Cocoa/Cocoa.h>
-#import <account.h>
+#import "LrcModelsProtocol.h"
+#include <string>
 
-@interface PasswordChangeWC : NSWindowController <NSTextFieldDelegate>
+@protocol PasswordChangeDelegate
 
--(id)initWithAccount:(Account*)acc;
+@optional
+
+-(void) paswordCreatedWithSuccess:(BOOL) success;
+
+@end
+
+@interface PasswordChangeWC : NSWindowController <NSTextFieldDelegate, LrcModelsProtocol>
+@property std::string selectedAccountID;
+@property (retain, nonatomic) id <PasswordChangeDelegate> delegate;
 
 @end
diff --git a/src/PasswordChangeWC.mm b/src/PasswordChangeWC.mm
index 7331d74ed03fbb37d0f1806e447beddf0d2e8814..dbed71a02b635b44eb9d9fa7f431b33fc0ec80ee 100644
--- a/src/PasswordChangeWC.mm
+++ b/src/PasswordChangeWC.mm
@@ -18,11 +18,12 @@
  */
 
 #import "PasswordChangeWC.h"
-#import <accountmodel.h>
+#import <api/lrc.h>
+#import <api/account.h>
+#import <api/newaccountmodel.h>
 
 @implementation PasswordChangeWC
 {
-    Account* account;
     __unsafe_unretained IBOutlet NSSecureTextField *oldPassword;
     __unsafe_unretained IBOutlet NSSecureTextField *newPassword;
     __unsafe_unretained IBOutlet NSSecureTextField *repeatedPassword;
@@ -34,28 +35,35 @@
     IBOutlet NSPopover *wrongPasswordPopover;
 }
 
--(id)initWithAccount:(Account*)acc
+@synthesize accountModel;
+
+-(id) initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil accountmodel:(lrc::api::NewAccountModel*) accountModel
 {
-    account = acc;
-    return [super initWithWindowNibName:@"PasswordChange"];
+    if (self = [self initWithWindowNibName:nibNameOrNil])
+    {
+        self.accountModel= accountModel;
+    }
+    return self;
 }
 
 -(void)windowDidLoad
 {
     [super windowDidLoad];
-    if (account != nullptr) {
-        const auto hasPassword = account->archiveHasPassword();
+    lrc::api::account::ConfProperties_t accountProperties = self.accountModel->getAccountConfig(self.selectedAccountID);
+    BOOL hasPassword = accountProperties.archiveHasPassword;
 
-        [oldPassword setEnabled:hasPassword];
-        [oldPassword setPlaceholderString:(hasPassword)?@"":NSLocalizedString(@"Account has no password", @"No password on this account text field placeholder")];
-    }
+    [oldPassword setEnabled:hasPassword];
+    [oldPassword setPlaceholderString:(hasPassword)?@"":NSLocalizedString(@"Account has no password", @"No password on this account text field placeholder")];
 }
 
 -(IBAction)accept:(id)sender
 {
-    if (account->changePassword(QString::fromNSString([oldPassword stringValue]), QString::fromNSString([newPassword stringValue])))
-    {
-        AccountModel::instance().save();
+    if (self.accountModel->changeAccountPassword(self.selectedAccountID, [[oldPassword stringValue] UTF8String], [[newPassword stringValue] UTF8String])) {
+        lrc::api::account::ConfProperties_t accountProperties = self.accountModel->getAccountConfig(self.selectedAccountID);
+        BOOL haspassword = ![[newPassword stringValue] isEqualToString:@""];
+        accountProperties.archiveHasPassword = haspassword;
+        self.accountModel->setAccountConfig(self.selectedAccountID, accountProperties);
+        [self.delegate paswordCreatedWithSuccess: haspassword];
         [self close];
     } else {
         [oldPassword setStringValue:@""];
@@ -68,6 +76,11 @@
     [self close];
 }
 
+-(void) close {
+    [NSApp endSheet:self.window];
+    [self.window orderOut:self];
+}
+
 #pragma mark - NSTextFieldDelegate methods
 
 -(void)controlTextDidChange:(NSNotification *)obj
diff --git a/src/PreferencesWC.mm b/src/PreferencesWC.mm
index 6a9b3400ea7298b528918bdeb0112b2dd8388c3b..1f7dea6f391e889ccdb5caa80ba1815fd4f9e0cb 100644
--- a/src/PreferencesWC.mm
+++ b/src/PreferencesWC.mm
@@ -28,7 +28,6 @@
 #import <api/datatransfermodel.h>
 
 //Ring
-#import "AccountsVC.h"
 #import "GeneralPrefsVC.h"
 #import "AudioPrefsVC.h"
 #import "VideoPrefsVC.h"
@@ -42,7 +41,6 @@
 @synthesize dataTransferModel, accountModel, behaviorController;
 
 // Identifiers used in PreferencesWindow.xib for tabs
-static auto const kProfilePrefsIdentifier = @"AccountsPrefsIdentifier";
 static auto const kGeneralPrefsIdentifier = @"GeneralPrefsIdentifier";
 static auto const kAudioPrefsIdentifer    = @"AudioPrefsIdentifer";
 static auto const kVideoPrefsIdentifer    = @"VideoPrefsIdentifer";
@@ -66,12 +64,6 @@ static auto const kVideoPrefsIdentifer    = @"VideoPrefsIdentifer";
     return self;
 }
 
-- (void)windowWillClose:(NSNotification *)notification
-{
-    AccountModel::instance().save();
-    ProfileModel::instance().selectedProfile()->save();
-}
-
 - (IBAction)displayGeneral:(NSToolbarItem *)sender
 {
     [[prefsContainer subviews]
@@ -100,15 +92,6 @@ static auto const kVideoPrefsIdentifer    = @"VideoPrefsIdentifer";
     [prefsContainer addSubview:currentVC.view];
 }
 
-- (IBAction)displayAccounts:(NSToolbarItem *)sender
-{
-    [[prefsContainer subviews]
-    makeObjectsPerformSelector:@selector(removeFromSuperview)];
-    currentVC = [[AccountsVC alloc] initWithNibName:@"Accounts" bundle:nil accountmodel:self.accountModel];
-    [self resizeWindowWithFrame:currentVC.view.frame];
-    [prefsContainer addSubview:currentVC.view];
-}
-
 - (void) resizeWindowWithFrame:(NSRect)fr
 {
     auto frame = [self.window frame];
diff --git a/src/RegisterNameWC.h b/src/RegisterNameWC.h
index ae54e292a78706bcbdceb2539368994aaebfa41b..48d2394d2e11454bdcbea9e47b347563fb355403 100644
--- a/src/RegisterNameWC.h
+++ b/src/RegisterNameWC.h
@@ -17,24 +17,24 @@
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA.
  */
 
-#import <Cocoa/Cocoa.h>
 
 #import "AbstractLoadingWC.h"
 #import "LoadingWCDelegate.h"
+#import "LrcModelsProtocol.h"
+#include <string>
+
 
 @protocol RegisterNameDelegate <LoadingWCDelegate>
 
 @optional
 
-- (void) didRegisterNameWithSuccess;
+- (void) didRegisterName:(NSString *) name withSuccess:(BOOL) success;
 
 @end
 
-@interface RegisterNameWC : AbstractLoadingWC
-
-- (id)initWithDelegate:(id <LoadingWCDelegate>) del;
+@interface RegisterNameWC : AbstractLoadingWC <LrcModelsProtocol>
 
-@property (nonatomic, weak) NSWindowController <RegisterNameDelegate>* delegate;
+@property (nonatomic, weak) NSViewController <RegisterNameDelegate>* delegate;
 
 /**
  * KVO with the registeredNameField
@@ -49,7 +49,8 @@
 /**
  * KVO validators for the UI
  */
-@property (readonly)BOOL isPasswordValid;
 @property (assign)BOOL isUserNameAvailable;
 
+@property std::string selectedAccountID;
+
 @end
diff --git a/src/RegisterNameWC.mm b/src/RegisterNameWC.mm
index 1402fcc450bf925be895a4c908f3bc176abcbc23..9e85fbc6e9d5a338caa6e46329f312aa36a8a2c3 100644
--- a/src/RegisterNameWC.mm
+++ b/src/RegisterNameWC.mm
@@ -17,21 +17,16 @@
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA.
  */
 
-#import "RegisterNameWC.h"
-
+#import <Cocoa/Cocoa.h>
 
-//Cocoa
+#import "RegisterNameWC.h"
+#import "AppDelegate.h"
 
 //LRC
-#import <accountmodel.h>
-#import <QItemSelectionModel>
+#import <api/lrc.h>
+#import <api/newaccountmodel.h>
 #import <account.h>
 
-#import "AppDelegate.h"
-
-@interface RegisterNameWC ()
-@end
-
 @implementation RegisterNameWC
 {
     __unsafe_unretained IBOutlet NSTextField* registeredNameField;
@@ -50,30 +45,26 @@
 
 NSInteger const BLOCKCHAIN_NAME_TAG             = 2;
 
-- (id)initWithDelegate:(id <LoadingWCDelegate>) del
-{
-    return [self initWithDelegate:del actionCode:0];
-}
+@synthesize accountModel;
 
-- (id)initWithDelegate:(id <RegisterNameDelegate>) del actionCode:(NSInteger) code
+-(id) initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil accountmodel:(lrc::api::NewAccountModel*) accountModel
 {
-    return [super initWithWindowNibName:@"RegisterNameWindow" delegate:del actionCode:code];
+    if (self = [self initWithWindowNibName:nibNameOrNil])
+    {
+        self.accountModel= accountModel;
+    }
+    return self;
 }
 
 - (void)windowDidLoad
 {
     [super windowDidLoad];
+    auto accounts = self.accountModel->getAccountList();
     [registeredNameField setTag:BLOCKCHAIN_NAME_TAG];
-    self.registeredName = @"";
     [ivLookupResult setHidden:YES];
     [indicatorLookupResult setHidden:YES];
-}
-
-#pragma mark - Input validation
-
-- (BOOL)isPasswordValid
-{
-    return self.password.length >= 6;
+    self.password = @"";
+    self.registeredName = @"";
 }
 
 #pragma mark - Username validation delegate methods
@@ -164,13 +155,11 @@ NSInteger const BLOCKCHAIN_NAME_TAG             = 2;
                                                }
                                                [self showLookUpAvailable:isAvailable andText: message];
                                                [self onUsernameAvailabilityChangedWithNewAvailability:isAvailable];
-
                                            }
                                            );
 
     //Start the lookup in a second so that the UI dosen't seem to freeze
     BOOL result = NameDirectory::instance().lookupName(nullptr, QString(), QString::fromNSString(usernameWaitingForLookupResult));
-
 }
 
 - (void)controlTextDidChange:(NSNotification *)notif
@@ -204,8 +193,7 @@ NSInteger const BLOCKCHAIN_NAME_TAG             = 2;
     [self showLoading];
     [self setCallback];
 
-    self.isUserNameAvailable = AccountModel::instance().selectedAccount()->registerName(QString::fromNSString(self.password),
-                                                                                        QString::fromNSString(self.registeredName));
+    self.isUserNameAvailable = self.accountModel->registerName(self.selectedAccountID, [self.password UTF8String], [self.registeredName UTF8String]);
     if (!self.isUserNameAvailable) {
         NSLog(@"Could not initialize registerName operation");
         QObject::disconnect(registrationEnded);
@@ -215,23 +203,27 @@ NSInteger const BLOCKCHAIN_NAME_TAG             = 2;
 - (void)setCallback
 {
     QObject::disconnect(registrationEnded);
-    registrationEnded = QObject::connect(AccountModel::instance().selectedAccount(),
-                                         &Account::nameRegistrationEnded,
-                                         [=] (NameDirectory::RegisterNameStatus status,  const QString& name)
-                                         {
-                                             QObject::disconnect(registrationEnded);
-                                             switch(status) {
-                                                 case NameDirectory::RegisterNameStatus::WRONG_PASSWORD:
-                                                 case NameDirectory::RegisterNameStatus::ALREADY_TAKEN:
-                                                 case NameDirectory::RegisterNameStatus::NETWORK_ERROR:
-                                                     [self showError];
+    registrationEnded = QObject::connect(self.accountModel,
+                                         &lrc::api::NewAccountModel::nameRegistrationEnded,
+                                         [self] (const std::string& accountId, lrc::api::account::RegisterNameStatus status, const std::string& name) {
+                                             if(accountId.compare(self.selectedAccountID) != 0) {
+                                                 return;
+                                             }
+                                             switch(status)
+                                             {
+                                                 case lrc::api::account::RegisterNameStatus::SUCCESS: {
+                                                     [self.delegate didRegisterName:  self.registeredName withSuccess: YES];
                                                      break;
-                                                 case NameDirectory::RegisterNameStatus::SUCCESS:
-                                                     [self.delegate didRegisterNameWithSuccess];
-                                                     // Artificial refresh of the model to update the welcome view
-                                                     Q_EMIT AccountModel::instance().dataChanged(QModelIndex(), QModelIndex());
+                                                 }
+                                                 case lrc::api::account::RegisterNameStatus::INVALID_NAME:
+                                                 case lrc::api::account::RegisterNameStatus::WRONG_PASSWORD:
+                                                 case lrc::api::account::RegisterNameStatus::NETWORK_ERROR:
+                                                 case lrc::api::account::RegisterNameStatus::ALREADY_TAKEN: {
+                                                     [self showError];
                                                      break;
+                                                 }
                                              }
+                                             QObject::disconnect(registrationEnded);
                                          });
 }
 
@@ -241,9 +233,5 @@ NSInteger const BLOCKCHAIN_NAME_TAG             = 2;
     return [NSSet setWithObjects: NSStringFromSelector(@selector(isUserNameAvailable)), nil];
 }
 
-+ (NSSet *)keyPathsForValuesAffectingIsPasswordValid
-{
-    return [NSSet setWithObjects:@"password", nil];
-}
 
 @end
diff --git a/src/RingWindowController.h b/src/RingWindowController.h
index a54cfc7edaac6ea567e267300c490f05749c902f..c22a31e6522c7f78869e9013c89c1a7662fd1fb2 100644
--- a/src/RingWindowController.h
+++ b/src/RingWindowController.h
@@ -18,6 +18,7 @@
  */
 #import <Cocoa/Cocoa.h>
 #import "LrcModelsProtocol.h"
+#import "ChooseAccountVC.h"
 
 namespace lrc {
     namespace api {
@@ -27,7 +28,7 @@ namespace lrc {
     }
 }
 
-@interface RingWindowController : NSWindowController <NSSharingServicePickerDelegate, LrcModelsProtocol> {
+@interface RingWindowController : NSWindowController <NSSharingServicePickerDelegate, ChooseAccountDelegate, LrcModelsProtocol> {
     IBOutlet NSView *currentView;
 }
 
@@ -46,14 +47,6 @@ namespace lrc {
 
 - (IBAction)openPreferences:(id)sender;
 
-/**
- * This method is intended to be used by the ChooseAccountVC to signal the fact that
- * the selected account has been changed by user. It will then forward this information
- * to relevant controllers and views.
- * @param accInfo reference to selected account
- */
-- (void) selectAccount:(const lrc::api::account::Info&)accInfo;
-
 /**
  * Method triggered when a panel on the right is closed by user action. It triggers any action needed
  * on itself or other view controllers to react properly to this event.
@@ -74,11 +67,4 @@ namespace lrc {
  */
 -(void) listTypeChanged;
 
-/**
- * Triggered by Choosen account VC when all accounts deleted
- */
--(void)allAccountsDeleted;
-
-- (void) createNewAccount;
-
 @end
diff --git a/src/RingWindowController.mm b/src/RingWindowController.mm
index 2000f30ed1c76472df41f339e00ffa21578109b0..72b5022de95e9ebb35e8ed1fe72efd418fe6583e 100644
--- a/src/RingWindowController.mm
+++ b/src/RingWindowController.mm
@@ -53,9 +53,10 @@
 #import "views/IconButton.h"
 #import "views/NSColor+RingTheme.h"
 #import "views/BackgroundView.h"
-#import "ChooseAccountVC.h"
+#import "views/HoverButton.h"
 #import "utils.h"
 #import "RingWizardWC.h"
+#import "AccountSettingsVC.h"
 
 @interface RingWindowController () <MigrateRingAccountsDelegate, NSToolbarDelegate>
 
@@ -80,6 +81,7 @@
 
     CurrentCallVC* currentCallVC;
     ConversationVC* conversationVC;
+    AccountSettingsVC* settingsVC;
 
     // toolbar menu items
     ChooseAccountVC* chooseAccountVC;
@@ -87,6 +89,7 @@
 
 static NSString* const kPreferencesIdentifier        = @"PreferencesIdentifier";
 NSString* const kChangeAccountToolBarItemIdentifier  = @"ChangeAccountToolBarItemIdentifier";
+NSString* const kOpenAccountToolBarItemIdentifier    = @"OpenAccountToolBarItemIdentifier";
 
 @synthesize dataTransferModel, accountModel, behaviorController;
 @synthesize wizard;
@@ -113,15 +116,19 @@ NSString* const kChangeAccountToolBarItemIdentifier  = @"ChangeAccountToolBarIte
     conversationVC = [[ConversationVC alloc] initWithNibName:@"Conversation" bundle:nil delegate:self];
     // toolbar items
     chooseAccountVC = [[ChooseAccountVC alloc] initWithNibName:@"ChooseAccount" bundle:nil model:self.accountModel delegate:self];
+    settingsVC = [[AccountSettingsVC alloc] initWithNibName:@"AccountSettings" bundle:nil accountmodel:self.accountModel];
     [callView setAutoresizingMask:NSViewWidthSizable | NSViewHeightSizable];
     [[currentCallVC view] setAutoresizingMask:NSViewWidthSizable | NSViewHeightSizable];
     [[conversationVC view] setAutoresizingMask:NSViewWidthSizable | NSViewHeightSizable];
+    [[settingsVC view] setAutoresizingMask:NSViewWidthSizable | NSViewHeightSizable];
 
     [callView addSubview:[currentCallVC view] positioned:NSWindowAbove relativeTo:nil];
     [callView addSubview:[conversationVC view] positioned:NSWindowAbove relativeTo:nil];
+    [self.window.contentView addSubview:[settingsVC view] positioned:NSWindowAbove relativeTo:nil];
 
     [currentCallVC initFrame];
     [conversationVC initFrame];
+    [settingsVC initFrame];
     @try {
         [smartViewVC setConversationModel: [chooseAccountVC selectedAccount].conversationModel.get()];
     }
@@ -138,6 +145,7 @@ NSString* const kChangeAccountToolBarItemIdentifier  = @"ChangeAccountToolBarIte
     NSToolbar *toolbar = self.window.toolbar;
     toolbar.delegate = self;
     [toolbar insertItemWithItemIdentifier:kChangeAccountToolBarItemIdentifier atIndex:1];
+    [toolbar insertItemWithItemIdentifier:kOpenAccountToolBarItemIdentifier atIndex:1];
     // set download folder (default - 'Documents')
     NSString* path = [[NSUserDefaults standardUserDefaults] stringForKey:Preferences::DownloadFolder];
     if (!path || path.length == 0) {
@@ -169,6 +177,7 @@ NSString* const kChangeAccountToolBarItemIdentifier  = @"ChangeAccountToolBarIte
                          [smartViewVC selectConversation: convInfo model:accInfo->conversationModel.get()];
                          [currentCallVC showWithAnimation:false];
                          [conversationVC hideWithAnimation:false];
+                         [self accountSettingsShouldOpen: NO];
                      });
 
     QObject::connect(self.behaviorController,
@@ -187,6 +196,7 @@ NSString* const kChangeAccountToolBarItemIdentifier  = @"ChangeAccountToolBarIte
                          [smartViewVC selectConversation: convInfo model:accInfo->conversationModel.get()];
                          [currentCallVC showWithAnimation:false];
                          [conversationVC hideWithAnimation:false];
+                         [self accountSettingsShouldOpen: NO];
                      });
 
     QObject::connect(self.behaviorController,
@@ -198,6 +208,7 @@ NSString* const kChangeAccountToolBarItemIdentifier  = @"ChangeAccountToolBarIte
                          [smartViewVC selectConversation: convInfo model:accInfo.conversationModel.get()];
                          [conversationVC showWithAnimation:false];
                          [currentCallVC hideWithAnimation:false];
+                         [self accountSettingsShouldOpen: NO];
                      });
 }
 
@@ -405,7 +416,7 @@ NSString* const kChangeAccountToolBarItemIdentifier  = @"ChangeAccountToolBarIte
     [self checkAccountsToMigrate];
 }
 
--(void)selectAccount:(const lrc::api::account::Info&)accInfo
+- (void) selectAccount:(const lrc::api::account::Info&)accInfo currentRemoved:(BOOL) removed
 {
     // If the selected account has been changed, we close any open panel
     if ([smartViewVC setConversationModel:accInfo.conversationModel.get()]) {
@@ -415,6 +426,10 @@ NSString* const kChangeAccountToolBarItemIdentifier  = @"ChangeAccountToolBarIte
 
     // Welcome view informations are also updated
     [self updateRingID];
+    [settingsVC setSelectedAccount:accInfo.id];
+    if (removed) {
+        [self accountSettingsShouldOpen: NO];
+    }
 }
 
 -(void)allAccountsDeleted
@@ -422,6 +437,7 @@ NSString* const kChangeAccountToolBarItemIdentifier  = @"ChangeAccountToolBarIte
     [smartViewVC clearConversationModel];
     [currentCallVC hideWithAnimation:false];
     [conversationVC hideWithAnimation:false];
+    [self accountSettingsShouldOpen: NO];
     [self updateRingID];
 }
 
@@ -438,6 +454,7 @@ NSString* const kChangeAccountToolBarItemIdentifier  = @"ChangeAccountToolBarIte
 -(void) listTypeChanged {
     [conversationVC hideWithAnimation:false];
     [currentCallVC hideWithAnimation:false];
+    [self accountSettingsShouldOpen: NO];
 }
 
 #pragma mark - NSToolbarDelegate
@@ -447,15 +464,79 @@ NSString* const kChangeAccountToolBarItemIdentifier  = @"ChangeAccountToolBarIte
         NSToolbarItem *toolbarItem = [[NSToolbarItem alloc] initWithItemIdentifier:kChangeAccountToolBarItemIdentifier];
         toolbarItem.view = chooseAccountVC.view;
         return toolbarItem;
+    } else if(itemIdentifier == kOpenAccountToolBarItemIdentifier) {
+        NSToolbarItem *toolbarItem = [[NSToolbarItem alloc] initWithItemIdentifier:kOpenAccountToolBarItemIdentifier];
+        HoverButton *openSettingsButton = [[HoverButton alloc] initWithFrame:CGRectMake(0, 0, 28, 28)];
+        openSettingsButton.bgColor = [NSColor clearColor];
+        openSettingsButton.imageColor = [NSColor darkGrayColor];
+        openSettingsButton.hoverColor = [NSColor controlHighlightColor];
+        openSettingsButton.highlightColor = [NSColor lightGrayColor];
+        openSettingsButton.imageInsets = 6;
+        openSettingsButton.title = @"";
+        [openSettingsButton setBordered: NO];
+        [openSettingsButton setTransparent:YES];
+        openSettingsButton.image = [NSImage imageNamed: NSImageNameSmartBadgeTemplate];
+        [openSettingsButton setAction:@selector(openAccountSettings:)];
+        [openSettingsButton setTarget:self];
+        toolbarItem.view = openSettingsButton;
+        return toolbarItem;
     }
     return nil;
 }
 
+- (IBAction)openAccountSettings:(NSButton *)sender
+{
+    if(![settingsVC.view isHidden]) {
+        [self accountSettingsShouldOpen: NO];
+        return;
+    }
+    [self accountSettingsShouldOpen: YES];
+}
+
 - (void) createNewAccount {
+    [self accountSettingsShouldOpen: NO];
+    [currentCallVC hideWithAnimation:false];
+    [conversationVC hideWithAnimation:false];
     wizard = [[RingWizardWC alloc] initWithNibName:@"RingWizard" bundle: nil accountmodel: self.accountModel];
     [wizard showChooseWithCancelButton: YES andAdvanced: YES];
     [self.window beginSheet:wizard.window completionHandler:nil];
-    [wizard showWindow:self];
+}
+
+-(void) accountSettingsShouldOpen: (BOOL) open {
+    if (open) {
+        @try {
+            [settingsVC setSelectedAccount: [chooseAccountVC selectedAccount].id];
+        }
+        @catch (NSException *ex) {
+            NSLog(@"Caught exception %@: %@", [ex name], [ex reason]);
+            return;
+        }
+        [currentCallVC hideWithAnimation:false];
+        [conversationVC hideWithAnimation:false];
+        [settingsVC show];
+    } else {
+        [settingsVC hide];
+    }
+    NSToolbar *toolbar = self.window.toolbar;
+    NSArray *settings = [toolbar items];
+
+    for(NSToolbarItem *toolbarItem in settings) {
+        if (toolbarItem.itemIdentifier == kOpenAccountToolBarItemIdentifier) {
+            HoverButton *openSettingsButton = [[HoverButton alloc] initWithFrame:CGRectMake(0, 0, 28, 28)];
+            openSettingsButton.bgColor = [NSColor clearColor];
+            openSettingsButton.imageColor = [NSColor darkGrayColor];
+            openSettingsButton.hoverColor = [NSColor controlHighlightColor];
+            openSettingsButton.highlightColor = [NSColor lightGrayColor];
+            openSettingsButton.imageInsets = 6;
+            openSettingsButton.title = @"";
+            [openSettingsButton setBordered: NO];
+            [openSettingsButton setTransparent:YES];
+            openSettingsButton.image = open ? [NSImage imageNamed: NSImageNameMenuOnStateTemplate] : [NSImage imageNamed: NSImageNameSmartBadgeTemplate];
+            [openSettingsButton setAction:@selector(openAccountSettings:)];
+            [openSettingsButton setTarget:self];
+            toolbarItem.view = openSettingsButton;
+        }
+    }
 }
 
 @end
diff --git a/src/RingWizardNewAccountVC.mm b/src/RingWizardNewAccountVC.mm
index 0c61cd4b131e6518b7b8f3d289ea796bac786eb8..3fa090bb031171c2e7351e43c2a40df07f5dc9ca 100644
--- a/src/RingWizardNewAccountVC.mm
+++ b/src/RingWizardNewAccountVC.mm
@@ -164,6 +164,9 @@ NSInteger const ERROR_REPEAT_MISMATCH           = -2;
 {
     if (auto outputImage = [picker outputImage]) {
         [photoView setBordered:NO];
+        auto image = [picker inputImage];
+        CGFloat newSize = MIN(image.size.height, image.size.width);
+        outputImage = [outputImage cropImageToSize:CGSizeMake(newSize, newSize)];
         [photoView setImage:outputImage];
         [addProfilePhotoImage setHidden:YES];
     } else if(!photoView.image) {
@@ -271,7 +274,7 @@ NSInteger const ERROR_REPEAT_MISMATCH           = -2;
     [self display:loadingView];
     [progressBar startAnimation:nil];
 
-    accountToCreate = self.accountModel->createNewAccount(lrc::api::profile::Type::RING, [displayNameField.stringValue UTF8String],"",[passwordField.stringValue UTF8String]);
+    accountToCreate = self.accountModel->createNewAccount(lrc::api::profile::Type::RING, [displayNameField.stringValue UTF8String],"",[passwordField.stringValue UTF8String], "");
 }
 
 /**
diff --git a/src/RingWizardWC.mm b/src/RingWizardWC.mm
index e7c21090ef0934dff4eb30606c1e64a6f65b9a5b..1f1a21b0d76454a9cab7a0727cabdf74a18a6258 100644
--- a/src/RingWizardWC.mm
+++ b/src/RingWizardWC.mm
@@ -1,5 +1,5 @@
 /*
- *  Copyright (C) 2015-2016 Savoir-faire Linux Inc.
+ *  Copyright (C) 2015-2018 Savoir-faire Linux Inc.
  *  Author: Alexandre Lision <alexandre.lision@savoirfairelinux.com>
  *  Author: Kateryna Kostiuk <kateryna.kostiuk@savoirfairelinux.com>
  *
@@ -175,6 +175,7 @@
         [self showSIPAccountVC];
     } else {
         [self.window close];
+        [NSApp endSheet:self.window];
         [[NSApplication sharedApplication] removeWindowsItem:self.window];
     }
 }
@@ -185,6 +186,7 @@
 {
     if (success) {
         [self.window close];
+        [NSApp endSheet:self.window];
         [[NSApplication sharedApplication] removeWindowsItem:self.window];
         if (!isCancelable){
             AppDelegate* appDelegate = (AppDelegate *)[[NSApplication sharedApplication] delegate];
@@ -201,6 +203,7 @@
 {
     if (success) {
         [self.window close];
+        [NSApp endSheet:self.window];
         [[NSApplication sharedApplication] removeWindowsItem:self.window];
         if (!isCancelable){
             AppDelegate* appDelegate = (AppDelegate *)[[NSApplication sharedApplication] delegate];
@@ -215,6 +218,7 @@
 
 - (void)close {
     [self.window close];
+    [NSApp endSheet:self.window];
     [[NSApplication sharedApplication] removeWindowsItem:self.window];
 }
 
diff --git a/src/utils.h b/src/utils.h
index 2ca45c9d0fd9bf64b635a966752a3e839a6996f5..144ca9563cd3da8cfd2766c086427c592f3c8704 100755
--- a/src/utils.h
+++ b/src/utils.h
@@ -62,6 +62,22 @@ static inline NSString* bestNameForAccount(const lrc::api::account::Info& accoun
     return @(account.profileInfo.alias.c_str());
 }
 
+static inline NSString* bestIDForContact(const lrc::api::contact::Info& contact)
+{
+    if (!contact.registeredName.empty()) {
+        return [@(contact.registeredName.c_str()) removeEmptyLinesAtBorders];
+    }
+    return [@(contact.profileInfo.uri.c_str()) removeEmptyLinesAtBorders];
+}
+
+static inline NSString* bestNameForContact(const lrc::api::contact::Info& contact)
+{
+    if (contact.profileInfo.alias.empty()) {
+        return bestIDForContact(contact);
+    }
+    return @(contact.profileInfo.alias.c_str());
+}
+
 static inline NSString* bestNameForConversation(const lrc::api::conversation::Info& conv, const lrc::api::ConversationModel& model)
 {
     auto contact = model.owner.contactModel->getContact(conv.participants[0]);
diff --git a/src/AccRingVC.h b/src/views/CenteredClipView.h
similarity index 79%
rename from src/AccRingVC.h
rename to src/views/CenteredClipView.h
index f6b56b1dc952ac33728efb05de4ab74bf574fef9..caa44ea51a285a7e960364657e91c9dd7ee3dcd7 100644
--- a/src/AccRingVC.h
+++ b/src/views/CenteredClipView.h
@@ -1,6 +1,6 @@
 /*
- *  Copyright (C) 2015-2016 Savoir-faire Linux Inc.
- *  Author: Alexandre Lision <alexandre.lision@savoirfairelinux.com>
+ *  Copyright (C) 2018 Savoir-faire Linux Inc.
+ *  Author: Kateryna Kostiuk <kateryna.kostiuk@savoirfairelinux.com>
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -19,8 +19,6 @@
 
 #import <Cocoa/Cocoa.h>
 
-#import <account.h>
+@interface CenteredClipView : NSClipView
 
-@interface AccRingVC : NSViewController <NSTextFieldDelegate>
-
-@end
\ No newline at end of file
+@end
diff --git a/src/views/CenteredClipView.mm b/src/views/CenteredClipView.mm
new file mode 100644
index 0000000000000000000000000000000000000000..cd193c94033055a559e97941805a8f223b1adc28
--- /dev/null
+++ b/src/views/CenteredClipView.mm
@@ -0,0 +1,36 @@
+/*
+ *  Copyright (C) 2018 Savoir-faire Linux Inc.
+ *  Author: Kateryna Kostiuk <kateryna.kostiuk@savoirfairelinux.com>
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; either version 3 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA.
+ */
+
+#import "CenteredClipView.h"
+
+@implementation CenteredClipView
+
+- (NSRect)constrainBoundsRect:(NSRect)proposedClipViewBoundsRect {
+
+    NSRect rect = [super constrainBoundsRect:proposedClipViewBoundsRect];
+    NSView * view = self.documentView;
+    if (view) {
+
+        if (proposedClipViewBoundsRect.size.width > view.frame.size.width) {
+            rect.origin.x = (rect.size.width - view.frame.size.width) / -2.0 ;
+        }
+    }
+    return rect;
+}
+@end
diff --git a/src/views/HoverButton.mm b/src/views/HoverButton.mm
index 086d2ade48b5a4bd34bfc806573b5c1d7df6d72d..de45ee04107bf44b84eedac978f6962b57711520 100644
--- a/src/views/HoverButton.mm
+++ b/src/views/HoverButton.mm
@@ -33,6 +33,18 @@
     self.bgColor = self.mouseOutsideColor;
 }
 
+-(instancetype)initWithFrame:(NSRect)frameRect {
+    self = [super initWithFrame: frameRect];
+    if(!self.hoverColor) {
+        self.hoverColor = [NSColor ringBlue];
+    }
+    if(!self.mouseOutsideColor) {
+        self.mouseOutsideColor = [NSColor clearColor];
+    }
+    self.bgColor = self.mouseOutsideColor;
+    return self;
+}
+
 -(void)mouseEntered:(NSEvent *)theEvent {
     if(self.isEnabled) {
         self.bgColor = self.hoverColor;
@@ -69,12 +81,5 @@
     [super drawRect:dirtyRect];
 }
 
--(void)mouseDown:(NSEvent *)theEvent
-{
-    [super mouseDown:theEvent];
-    if(self.isEnabled) {
-        self.bgColor = self.mouseOutsideColor;
-    }
-}
 
 @end
diff --git a/src/views/IconButton.mm b/src/views/IconButton.mm
index a211fc1aa978a5cecedf35db4adb30eaaf55263f..4002903b531d0460c52863191872bf179ce8f22f 100644
--- a/src/views/IconButton.mm
+++ b/src/views/IconButton.mm
@@ -44,6 +44,23 @@
 
 }
 
+-(instancetype)initWithFrame:(NSRect)frameRect {
+    self = [super initWithFrame: frameRect];
+    if (!self.bgColor) {
+        self.bgColor = [NSColor ringBlue];
+    }
+
+    if (!self.cornerRadius) {
+        self.cornerRadius = @(NSWidth(self.frame) / 2);
+    }
+
+    if (self.imageInsets == 0)
+        self.imageInsets = 8.0f;
+
+    self.pressed = NO;
+    return self;
+}
+
 -(void) setPressed:(BOOL)newVal
 {
     _pressed = newVal;
diff --git a/src/views/NSColor+RingTheme.mm b/src/views/NSColor+RingTheme.mm
index a7a107dfcf82ce39fdadcb8396c7c8c105d0a685..9d1e0bc9e01777da55ba408df21ee9332a866aab 100644
--- a/src/views/NSColor+RingTheme.mm
+++ b/src/views/NSColor+RingTheme.mm
@@ -72,6 +72,9 @@ return [NSColor colorWithCalibratedRed:59/255.0 green:193/255.0 blue:211/255.0 a
 }
 
 - (NSColor *)lightenColorByValue:(float)value {
+    if(![self isKindOfClass:[NSCalibratedRGBColorSpace class]]) {
+        return self;
+    }
     float red = [self redComponent];
     red += value;
 
@@ -85,6 +88,9 @@ return [NSColor colorWithCalibratedRed:59/255.0 green:193/255.0 blue:211/255.0 a
 }
 
 - (NSColor *)darkenColorByValue:(float)value {
+    if(![self isKindOfClass:[NSCalibratedRGBColorSpace class]]) {
+        return self;
+    }
     float red = [self redComponent];
     red -= value;
 
diff --git a/src/views/NSImage+Extensions.h b/src/views/NSImage+Extensions.h
index 0e1d8d837acc5accdb2eaffad034eb6b28f7f34f..d396bf1fda64017f81cccac4dce867fa63e39676 100644
--- a/src/views/NSImage+Extensions.h
+++ b/src/views/NSImage+Extensions.h
@@ -33,4 +33,6 @@
 
 - (NSImage *) imageResizeInsideMax:(CGFloat) dimension;
 
+- (NSImage *) cropImageToSize:(NSSize)newSize;
+
 @end
diff --git a/src/views/NSImage+Extensions.mm b/src/views/NSImage+Extensions.mm
index 01b5a3eb4c5233568fe77d68a61caec7e865af0d..b53c8282c043308ffad7b97f43619dcdf471d834 100644
--- a/src/views/NSImage+Extensions.mm
+++ b/src/views/NSImage+Extensions.mm
@@ -25,6 +25,7 @@
                  newSize:(NSSize)newSize
 {
     auto sourceImage = anImage;
+    NSSize size = anImage.size;
     // Report an error if the source isn't a valid image
     if (![sourceImage isValid]) {
         NSLog(@"Invalid Image");
@@ -74,4 +75,21 @@
     return [NSImage imageResize:self newSize:size];
 }
 
+- (NSImage *) cropImageToSize:(NSSize)newSize {
+    CGImageSourceRef source;
+    NSPoint origin = CGPointMake((self.size.width - newSize.width) * 0.5, (self.size.height - newSize.height) * 0.5);
+
+    source = CGImageSourceCreateWithData((CFDataRef)[self TIFFRepresentation], NULL);
+    CGImageRef imageRef =  CGImageSourceCreateImageAtIndex(source, 0, NULL);
+
+    CGRect sizeToBe = CGRectMake(origin.x, origin.y, newSize.width, newSize.height);
+    CGImageRef croppedImage = CGImageCreateWithImageInRect(imageRef, sizeToBe);
+    NSImage *finalImage = [[NSImage alloc] initWithCGImage:croppedImage size:NSZeroSize];
+    CFRelease(imageRef);
+    CFRelease(croppedImage);
+
+    return finalImage;
+
+}
+
 @end
diff --git a/ui/Base.lproj/AccAdvanced.xib b/ui/Base.lproj/AccAdvanced.xib
deleted file mode 100644
index 6eee32a7349adbb9f766a6a10998cdef375a9f93..0000000000000000000000000000000000000000
--- a/ui/Base.lproj/AccAdvanced.xib
+++ /dev/null
@@ -1,411 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="9532" systemVersion="15D21" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" customObjectInstantitationMethod="direct">
-    <dependencies>
-        <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="9532"/>
-    </dependencies>
-    <objects>
-        <customObject id="-2" userLabel="File's Owner" customClass="AccAdvancedVC">
-            <connections>
-                <outlet property="STUNserverURLField" destination="UzM-52-IoD" id="c9s-CY-ddq"/>
-                <outlet property="isUsingSTUN" destination="Ikz-bh-3CP" id="jVW-qt-Hli"/>
-                <outlet property="isUsingTURN" destination="CgJ-2s-WFF" id="gfh-KT-jEt"/>
-                <outlet property="localPortField" destination="TgP-vt-AeS" id="tUL-iH-syM"/>
-                <outlet property="localPortStepper" destination="e6E-9n-08s" id="gYC-T3-tWa"/>
-                <outlet property="mainContainer" destination="34d-K8-hiB" id="5u5-DX-IZd"/>
-                <outlet property="maxAudioPortStepper" destination="FI1-5p-EcC" id="Ccr-2G-j76"/>
-                <outlet property="maxAudioRTPRange" destination="GOf-0V-pyS" id="Mah-xo-lFA"/>
-                <outlet property="maxVideoPortStepper" destination="uac-nZ-Hcw" id="78s-Ku-9u2"/>
-                <outlet property="maxVideoRTPRange" destination="IJS-5x-riX" id="Qu6-kT-XHO"/>
-                <outlet property="minAudioPortStepper" destination="Bnh-Mc-8kR" id="fwD-ce-ucD"/>
-                <outlet property="minAudioRTPRange" destination="b3n-gl-1th" id="g0l-Xh-drV"/>
-                <outlet property="minVideoPortStepper" destination="caC-em-Z8T" id="6qu-g1-jMF"/>
-                <outlet property="minVideoRTPRange" destination="khU-Ue-Hen" id="zbv-aS-keU"/>
-                <outlet property="publishAddrAndPortRadioGroup" destination="2yz-X7-dVm" id="nYj-hx-kGP"/>
-                <outlet property="publishedAddrField" destination="ryd-ae-UlI" id="LEs-wA-9ZR"/>
-                <outlet property="publishedPortField" destination="dv9-ge-r39" id="8BV-0K-vYH"/>
-                <outlet property="registrationContainer" destination="F2w-xm-Frm" id="1xg-DT-aB2"/>
-                <outlet property="registrationField" destination="Vy9-CY-MrG" id="VIZ-Xh-xgL"/>
-                <outlet property="registrationStepper" destination="A98-ed-6iq" id="9xz-YE-0Oj"/>
-                <outlet property="turnPassword" destination="OK1-QA-m0Z" id="qOF-E1-abK"/>
-                <outlet property="turnRealm" destination="jP7-md-hx7" id="Xpq-kI-hm4"/>
-                <outlet property="turnServerURL" destination="zWk-e5-8Ww" id="nBy-wD-Sda"/>
-                <outlet property="turnUsername" destination="9bG-3W-pDR" id="z5S-lY-tbB"/>
-                <outlet property="view" destination="AbB-UE-K5b" id="4kT-yF-ZLy"/>
-            </connections>
-        </customObject>
-        <customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/>
-        <customObject id="-3" userLabel="Application" customClass="NSObject"/>
-        <customView autoresizesSubviews="NO" id="AbB-UE-K5b">
-            <rect key="frame" x="0.0" y="0.0" width="403" height="513"/>
-            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
-            <subviews>
-                <customView autoresizesSubviews="NO" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="F2w-xm-Frm">
-                    <rect key="frame" x="0.0" y="387" width="403" height="126"/>
-                    <subviews>
-                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="PKT-m2-pyb">
-                            <rect key="frame" x="16" y="99" width="87" height="17"/>
-                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Registration" id="yB5-ET-gBL">
-                                <font key="font" metaFont="systemBold"/>
-                                <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
-                                <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                            </textFieldCell>
-                        </textField>
-                        <stepper horizontalHuggingPriority="750" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="A98-ed-6iq">
-                            <rect key="frame" x="217" y="66" width="19" height="27"/>
-                            <stepperCell key="cell" continuous="YES" alignment="left" maxValue="200" id="3kR-uk-WAl"/>
-                            <connections>
-                                <action selector="valueDidChange:" target="-2" id="eL2-tT-Wdd"/>
-                            </connections>
-                        </stepper>
-                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="5MD-Oa-odZ">
-                            <rect key="frame" x="30" y="72" width="127" height="17"/>
-                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Registration expire" id="fCd-4d-sP0">
-                                <font key="font" metaFont="system"/>
-                                <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
-                                <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                            </textFieldCell>
-                        </textField>
-                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="hjM-Bv-taZ">
-                            <rect key="frame" x="16" y="35" width="125" height="17"/>
-                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Network Interface" id="K9I-vh-jeu">
-                                <font key="font" metaFont="systemBold"/>
-                                <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
-                                <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                            </textFieldCell>
-                        </textField>
-                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="fG9-DY-4e7">
-                            <rect key="frame" x="86" y="8" width="67" height="17"/>
-                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Local port" id="shs-Xm-qnY">
-                                <font key="font" metaFont="system"/>
-                                <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
-                                <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                            </textFieldCell>
-                        </textField>
-                        <stepper horizontalHuggingPriority="750" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="e6E-9n-08s">
-                            <rect key="frame" x="265" y="2" width="19" height="27"/>
-                            <stepperCell key="cell" continuous="YES" alignment="left" maxValue="65534" id="sr0-PX-dXX"/>
-                            <connections>
-                                <action selector="valueDidChange:" target="-2" id="5GF-aO-SNO"/>
-                            </connections>
-                        </stepper>
-                        <textField verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="TgP-vt-AeS">
-                            <rect key="frame" x="164" y="5" width="96" height="22"/>
-                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="x39-hY-AAQ">
-                                <numberFormatter key="formatter" formatterBehavior="default10_4" usesGroupingSeparator="NO" groupingSize="0" minimumIntegerDigits="0" maximumIntegerDigits="42" id="7Cv-xY-6X5">
-                                    <real key="maximum" value="65534"/>
-                                </numberFormatter>
-                                <font key="font" metaFont="system"/>
-                                <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
-                                <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
-                            </textFieldCell>
-                            <connections>
-                                <outlet property="delegate" destination="-2" id="Nw1-aw-EYL"/>
-                            </connections>
-                        </textField>
-                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Kpt-7R-pUj">
-                            <rect key="frame" x="238" y="72" width="55" height="17"/>
-                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="seconds" id="xGw-j0-4ID">
-                                <font key="font" metaFont="system"/>
-                                <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
-                                <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                            </textFieldCell>
-                        </textField>
-                        <textField verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Vy9-CY-MrG">
-                            <rect key="frame" x="164" y="69" width="49" height="22"/>
-                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="rtX-dk-eMQ">
-                                <numberFormatter key="formatter" formatterBehavior="default10_4" usesGroupingSeparator="NO" groupingSize="0" minimumIntegerDigits="0" maximumIntegerDigits="42" id="99r-pE-lsZ"/>
-                                <font key="font" metaFont="system"/>
-                                <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
-                                <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
-                            </textFieldCell>
-                            <connections>
-                                <outlet property="delegate" destination="-2" id="4VF-mH-9oL"/>
-                            </connections>
-                        </textField>
-                    </subviews>
-                </customView>
-                <customView autoresizesSubviews="NO" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="34d-K8-hiB">
-                    <rect key="frame" x="0.0" y="0.0" width="403" height="388"/>
-                    <subviews>
-                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="9Ql-Mh-xsG">
-                            <rect key="frame" x="18" y="360" width="127" height="17"/>
-                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Published Address" id="Qf3-E3-5U6">
-                                <font key="font" metaFont="systemBold"/>
-                                <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
-                                <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                            </textFieldCell>
-                        </textField>
-                        <button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Ikz-bh-3CP">
-                            <rect key="frame" x="64" y="331" width="104" height="18"/>
-                            <buttonCell key="cell" type="check" title="Using STUN" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="gVd-Dw-1B4">
-                                <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
-                                <font key="font" metaFont="system"/>
-                            </buttonCell>
-                            <connections>
-                                <action selector="toggleSTUN:" target="-2" id="bEq-xa-RSk"/>
-                            </connections>
-                        </button>
-                        <textField verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="UzM-52-IoD">
-                            <rect key="frame" x="165" y="329" width="216" height="22"/>
-                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" placeholderString="Server url..." drawsBackground="YES" id="0eY-9x-bAr">
-                                <font key="font" metaFont="system"/>
-                                <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
-                                <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
-                            </textFieldCell>
-                            <connections>
-                                <outlet property="delegate" destination="-2" id="oVM-Gy-EtW"/>
-                            </connections>
-                        </textField>
-                        <matrix verticalHuggingPriority="750" fixedFrame="YES" allowsEmptySelection="NO" autorecalculatesCellSize="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2yz-X7-dVm">
-                            <rect key="frame" x="64" y="283" width="320" height="38"/>
-                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                            <size key="cellSize" width="212" height="18"/>
-                            <size key="intercellSpacing" width="4" height="2"/>
-                            <buttonCell key="prototype" type="radio" title="Radio" imagePosition="left" alignment="left" inset="2" id="fB0-X8-GXk">
-                                <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
-                                <font key="font" metaFont="system"/>
-                            </buttonCell>
-                            <cells>
-                                <column>
-                                    <buttonCell type="radio" title="Same as local parameters" imagePosition="left" alignment="left" state="on" tag="1" inset="2" id="Atv-t7-5YJ">
-                                        <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
-                                        <font key="font" metaFont="system"/>
-                                    </buttonCell>
-                                    <buttonCell type="radio" title="Set published address and port" imagePosition="left" alignment="left" inset="2" id="OL5-DI-aCq">
-                                        <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
-                                        <font key="font" metaFont="system"/>
-                                    </buttonCell>
-                                </column>
-                            </cells>
-                            <connections>
-                                <action selector="didSwitchPublishedAddress:" target="-2" id="Vvb-5M-Kjg"/>
-                            </connections>
-                        </matrix>
-                        <textField verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="ryd-ae-UlI">
-                            <rect key="frame" x="87" y="253" width="187" height="22"/>
-                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="qPj-kN-HbQ">
-                                <font key="font" metaFont="system"/>
-                                <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
-                                <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
-                            </textFieldCell>
-                        </textField>
-                        <textField verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="dv9-ge-r39">
-                            <rect key="frame" x="316" y="253" width="65" height="22"/>
-                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="O4C-1Q-phD">
-                                <font key="font" metaFont="system"/>
-                                <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
-                                <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
-                            </textFieldCell>
-                        </textField>
-                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="bMB-dd-hy0">
-                            <rect key="frame" x="280" y="256" width="30" height="17"/>
-                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Port" id="wl8-YK-M76">
-                                <font key="font" metaFont="system"/>
-                                <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
-                                <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                            </textFieldCell>
-                        </textField>
-                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="vXQ-hF-wyV">
-                            <rect key="frame" x="30" y="256" width="55" height="17"/>
-                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Address" id="sTk-1C-1KO">
-                                <font key="font" metaFont="system"/>
-                                <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
-                                <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                            </textFieldCell>
-                        </textField>
-                        <textField verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="zWk-e5-8Ww">
-                            <rect key="frame" x="165" y="214" width="216" height="22"/>
-                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" placeholderString="Server url..." drawsBackground="YES" id="uzg-09-8vi">
-                                <font key="font" metaFont="system"/>
-                                <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
-                                <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
-                            </textFieldCell>
-                            <connections>
-                                <outlet property="delegate" destination="-2" id="9R6-IL-wRf"/>
-                            </connections>
-                        </textField>
-                        <textField verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="9bG-3W-pDR">
-                            <rect key="frame" x="165" y="188" width="216" height="22"/>
-                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" placeholderString="username..." drawsBackground="YES" id="P7k-xH-2mr">
-                                <font key="font" metaFont="system"/>
-                                <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
-                                <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
-                            </textFieldCell>
-                            <connections>
-                                <outlet property="delegate" destination="-2" id="tcp-NJ-fd4"/>
-                            </connections>
-                        </textField>
-                        <textField verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="jP7-md-hx7">
-                            <rect key="frame" x="165" y="134" width="216" height="22"/>
-                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" placeholderString="realm..." drawsBackground="YES" id="6u9-cM-ep0">
-                                <font key="font" metaFont="system"/>
-                                <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
-                                <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
-                            </textFieldCell>
-                            <connections>
-                                <outlet property="delegate" destination="-2" id="ZIR-yD-k0R"/>
-                            </connections>
-                        </textField>
-                        <button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="CgJ-2s-WFF">
-                            <rect key="frame" x="62" y="216" width="104" height="18"/>
-                            <buttonCell key="cell" type="check" title="Using TURN" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="QS0-TJ-NQh">
-                                <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
-                                <font key="font" metaFont="system"/>
-                            </buttonCell>
-                            <connections>
-                                <action selector="toggleTURN:" target="-2" id="oGs-UR-pQL"/>
-                            </connections>
-                        </button>
-                        <secureTextField verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="OK1-QA-m0Z">
-                            <rect key="frame" x="165" y="161" width="216" height="22"/>
-                            <secureTextFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" borderStyle="bezel" placeholderString="password..." drawsBackground="YES" usesSingleLineMode="YES" id="OR2-la-DUE">
-                                <font key="font" metaFont="system"/>
-                                <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
-                                <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
-                                <allowedInputSourceLocales>
-                                    <string>NSAllRomanInputSourcesLocaleIdentifier</string>
-                                </allowedInputSourceLocales>
-                            </secureTextFieldCell>
-                            <connections>
-                                <outlet property="delegate" destination="-2" id="dHN-dH-92l"/>
-                            </connections>
-                        </secureTextField>
-                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="8By-AB-PoT">
-                            <rect key="frame" x="21" y="109" width="152" height="17"/>
-                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Audio RTP port Range" id="Jho-hi-Mvg">
-                                <font key="font" metaFont="systemBold"/>
-                                <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
-                                <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                            </textFieldCell>
-                        </textField>
-                        <stepper horizontalHuggingPriority="750" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Bnh-Mc-8kR">
-                            <rect key="frame" x="202" y="78" width="19" height="27"/>
-                            <stepperCell key="cell" continuous="YES" alignment="left" maxValue="65534" id="IDZ-ip-UEs"/>
-                            <connections>
-                                <action selector="valueDidChange:" target="-2" id="Daw-BV-Edf"/>
-                            </connections>
-                        </stepper>
-                        <textField verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="b3n-gl-1th">
-                            <rect key="frame" x="101" y="81" width="96" height="22"/>
-                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="fsG-bB-ubb">
-                                <numberFormatter key="formatter" formatterBehavior="default10_4" usesGroupingSeparator="NO" groupingSize="0" minimumIntegerDigits="0" maximumIntegerDigits="42" id="oaP-iC-Alq">
-                                    <real key="maximum" value="65534"/>
-                                </numberFormatter>
-                                <font key="font" metaFont="system"/>
-                                <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
-                                <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
-                            </textFieldCell>
-                            <connections>
-                                <outlet property="delegate" destination="-2" id="mJQ-Rw-fAz"/>
-                            </connections>
-                        </textField>
-                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="cXv-gK-UME">
-                            <rect key="frame" x="67" y="84" width="28" height="17"/>
-                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Min" id="FQ4-fp-Pxj">
-                                <font key="font" metaFont="system"/>
-                                <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
-                                <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                            </textFieldCell>
-                        </textField>
-                        <stepper horizontalHuggingPriority="750" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="FI1-5p-EcC">
-                            <rect key="frame" x="368" y="78" width="19" height="27"/>
-                            <stepperCell key="cell" continuous="YES" alignment="left" maxValue="65534" id="6DL-JU-9vo"/>
-                            <connections>
-                                <action selector="valueDidChange:" target="-2" id="qZ3-R2-m60"/>
-                            </connections>
-                        </stepper>
-                        <textField verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="GOf-0V-pyS">
-                            <rect key="frame" x="267" y="81" width="96" height="22"/>
-                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="rcL-uY-sov">
-                                <numberFormatter key="formatter" formatterBehavior="default10_4" usesGroupingSeparator="NO" groupingSize="0" minimumIntegerDigits="0" maximumIntegerDigits="42" id="nBc-fC-RAm">
-                                    <real key="maximum" value="65534"/>
-                                </numberFormatter>
-                                <font key="font" metaFont="system"/>
-                                <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
-                                <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
-                            </textFieldCell>
-                            <connections>
-                                <outlet property="delegate" destination="-2" id="CfD-13-buD"/>
-                            </connections>
-                        </textField>
-                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="x2Z-q3-aIi">
-                            <rect key="frame" x="233" y="84" width="30" height="17"/>
-                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Max" id="oa2-Pe-6Uw">
-                                <font key="font" metaFont="system"/>
-                                <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
-                                <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                            </textFieldCell>
-                        </textField>
-                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="ZUS-3h-z8V">
-                            <rect key="frame" x="20" y="48" width="150" height="17"/>
-                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Video RTP port Range" id="XA8-Sy-CYG">
-                                <font key="font" metaFont="systemBold"/>
-                                <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
-                                <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                            </textFieldCell>
-                        </textField>
-                        <stepper horizontalHuggingPriority="750" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="caC-em-Z8T">
-                            <rect key="frame" x="201" y="17" width="19" height="27"/>
-                            <stepperCell key="cell" continuous="YES" alignment="left" maxValue="65534" id="uSL-4H-pJJ"/>
-                            <connections>
-                                <action selector="valueDidChange:" target="-2" id="gab-7r-VfC"/>
-                            </connections>
-                        </stepper>
-                        <textField verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="khU-Ue-Hen">
-                            <rect key="frame" x="100" y="20" width="96" height="22"/>
-                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="J1A-gZ-lMv">
-                                <numberFormatter key="formatter" formatterBehavior="default10_4" usesGroupingSeparator="NO" groupingSize="0" minimumIntegerDigits="0" maximumIntegerDigits="42" id="7Vg-kX-7gY">
-                                    <real key="maximum" value="65534"/>
-                                </numberFormatter>
-                                <font key="font" metaFont="system"/>
-                                <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
-                                <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
-                            </textFieldCell>
-                            <connections>
-                                <outlet property="delegate" destination="-2" id="aPt-Wo-7Lr"/>
-                            </connections>
-                        </textField>
-                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="KPh-9i-Qrw">
-                            <rect key="frame" x="66" y="23" width="28" height="17"/>
-                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Min" id="a6W-wm-OmC">
-                                <font key="font" metaFont="system"/>
-                                <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
-                                <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                            </textFieldCell>
-                        </textField>
-                        <stepper horizontalHuggingPriority="750" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="uac-nZ-Hcw">
-                            <rect key="frame" x="367" y="17" width="19" height="27"/>
-                            <stepperCell key="cell" continuous="YES" alignment="left" maxValue="65534" id="heA-0J-Vqe"/>
-                            <connections>
-                                <action selector="valueDidChange:" target="-2" id="uJU-9R-UJR"/>
-                            </connections>
-                        </stepper>
-                        <textField verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="IJS-5x-riX">
-                            <rect key="frame" x="266" y="20" width="96" height="22"/>
-                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="L2A-qa-yTI">
-                                <numberFormatter key="formatter" formatterBehavior="default10_4" usesGroupingSeparator="NO" groupingSize="0" minimumIntegerDigits="0" maximumIntegerDigits="42" id="qXb-fv-xC6">
-                                    <real key="maximum" value="65534"/>
-                                </numberFormatter>
-                                <font key="font" metaFont="system"/>
-                                <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
-                                <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
-                            </textFieldCell>
-                            <connections>
-                                <outlet property="delegate" destination="-2" id="flV-30-UWF"/>
-                            </connections>
-                        </textField>
-                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="bcF-7Z-p3q">
-                            <rect key="frame" x="232" y="23" width="30" height="17"/>
-                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Max" id="dbq-qU-93x">
-                                <font key="font" metaFont="system"/>
-                                <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
-                                <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                            </textFieldCell>
-                        </textField>
-                    </subviews>
-                </customView>
-            </subviews>
-            <point key="canvasLocation" x="127.5" y="476.5"/>
-        </customView>
-    </objects>
-</document>
diff --git a/ui/Base.lproj/AccAdvancedRing.xib b/ui/Base.lproj/AccAdvancedRing.xib
new file mode 100644
index 0000000000000000000000000000000000000000..7e710731b63d1f78d3af8a5e2994bd602129ae07
--- /dev/null
+++ b/ui/Base.lproj/AccAdvancedRing.xib
@@ -0,0 +1,932 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="14113" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES">
+    <dependencies>
+        <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="14113"/>
+        <capability name="box content view" minToolsVersion="7.0"/>
+        <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
+        <capability name="system font weights other than Regular or Bold" minToolsVersion="7.0"/>
+    </dependencies>
+    <objects>
+        <customObject id="-2" userLabel="File's Owner" customClass="AccAdvancedRingVC">
+            <connections>
+                <outlet property="allowIncoming" destination="COO-Od-fza" id="lV0-5v-Ao0"/>
+                <outlet property="audioCodecView" destination="NVP-Sl-oi4" id="nl8-Wx-Dg7"/>
+                <outlet property="autoAnswer" destination="Iwx-oz-bCK" id="S7Q-0z-hev"/>
+                <outlet property="bootstrapServerField" destination="BlY-KQ-RvO" id="nCJ-Mb-Sat"/>
+                <outlet property="disableVideoButton" destination="Qhu-T5-27z" id="BEo-fv-nZZ"/>
+                <outlet property="enableProxyButton" destination="6EV-sb-gfv" id="Vhu-Pz-u1R"/>
+                <outlet property="enableRingtone" destination="7AV-dG-fCE" id="HAp-MT-hfo"/>
+                <outlet property="nameServerField" destination="fLH-ZX-eWQ" id="l5X-Bl-92a"/>
+                <outlet property="privateKeyPaswordField" destination="wRp-ci-ypZ" id="piL-8w-ez6"/>
+                <outlet property="proxyServerField" destination="sXd-7q-hKd" id="Woy-Hc-c0g"/>
+                <outlet property="ringtoneSelectionButton" destination="Qcu-SR-qaS" id="dPI-vw-fQe"/>
+                <outlet property="selectCACertificateButton" destination="GbC-51-5hu" id="S1n-Ch-cgE"/>
+                <outlet property="selectPrivateKeyButton" destination="jpY-zg-3Nb" id="I2T-rv-4KM"/>
+                <outlet property="selectUserCertificateButton" destination="Deq-fN-QHH" id="76g-2F-6Aa"/>
+                <outlet property="stunAddressField" destination="jNT-4j-3de" id="DNW-in-rww"/>
+                <outlet property="toggleUPnPButton" destination="VJ3-C0-3ir" id="0N8-LY-Ift"/>
+                <outlet property="toggleVideoButton" destination="fIl-oJ-Wgd" id="7kB-v1-op2"/>
+                <outlet property="turnAddressField" destination="JeL-QA-0kk" id="6Il-CO-H86"/>
+                <outlet property="turnPasswordField" destination="V1s-ND-hrq" id="l27-SA-6wr"/>
+                <outlet property="turnRealmField" destination="uVQ-Lb-Eb8" id="Aec-qt-8yF"/>
+                <outlet property="turnUsernameField" destination="hg7-Ud-VCi" id="XOG-zq-Eyf"/>
+                <outlet property="useSTUNButton" destination="tTi-FP-cRY" id="6la-yg-ED4"/>
+                <outlet property="useTURNButton" destination="onj-y3-meD" id="ff1-ef-MPg"/>
+                <outlet property="videoCodecView" destination="G70-dr-Lev" id="5Rz-Z8-zvR"/>
+                <outlet property="view" destination="Hz6-mo-xeY" id="zzq-0g-nOy"/>
+            </connections>
+        </customObject>
+        <customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/>
+        <customObject id="-3" userLabel="Application" customClass="NSObject"/>
+        <customView id="Hz6-mo-xeY">
+            <rect key="frame" x="0.0" y="0.0" width="620" height="1421"/>
+            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
+            <subviews>
+                <box boxType="custom" borderType="bezel" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="ZNe-H0-dJk">
+                    <rect key="frame" x="0.0" y="1260" width="620" height="161"/>
+                    <view key="contentView" id="KaI-8h-Y8q">
+                        <rect key="frame" x="1" y="1" width="618" height="159"/>
+                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                        <subviews>
+                            <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="COO-Od-fza">
+                                <rect key="frame" x="38" y="86" width="211" height="18"/>
+                                <buttonCell key="cell" type="check" title="Allow call from untrusted peers" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="1Xr-BO-Pu3">
+                                    <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
+                                    <font key="font" metaFont="system"/>
+                                </buttonCell>
+                                <connections>
+                                    <action selector="allowCallFromUnknownPeer:" target="-2" id="aMN-9g-3ED"/>
+                                </connections>
+                            </button>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="dqM-tx-ynx">
+                                <rect key="frame" x="18" y="122" width="83" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Call settings" id="BIS-Ft-yJn">
+                                    <font key="font" metaFont="systemSemibold" size="13"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="7AV-dG-fCE">
+                                <rect key="frame" x="38" y="18" width="123" height="18"/>
+                                <buttonCell key="cell" type="check" title="Custom ringtone" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="qFq-Yh-2JL">
+                                    <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
+                                    <font key="font" metaFont="system"/>
+                                </buttonCell>
+                                <connections>
+                                    <action selector="autoEnableRingtone:" target="-2" id="MKv-hu-txN"/>
+                                </connections>
+                            </button>
+                            <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Qcu-SR-qaS">
+                                <rect key="frame" x="173" y="10" width="68" height="32"/>
+                                <buttonCell key="cell" type="push" bezelStyle="rounded" image="NSTouchBarFolderTemplate" imagePosition="leading" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="pA7-mc-7MH">
+                                    <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                                    <font key="font" metaFont="systemLight" size="13"/>
+                                </buttonCell>
+                                <connections>
+                                    <action selector="selectFile:" target="-2" id="5Sj-oW-f3r"/>
+                                </connections>
+                            </button>
+                            <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Iwx-oz-bCK">
+                                <rect key="frame" x="38" y="52" width="128" height="18"/>
+                                <buttonCell key="cell" type="check" title="Auto answer calls" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="DSe-Cs-oD6">
+                                    <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
+                                    <font key="font" metaFont="system"/>
+                                </buttonCell>
+                                <connections>
+                                    <action selector="autoAnswerCall:" target="-2" id="YmC-hg-0U7"/>
+                                </connections>
+                            </button>
+                        </subviews>
+                        <constraints>
+                            <constraint firstItem="dqM-tx-ynx" firstAttribute="leading" secondItem="KaI-8h-Y8q" secondAttribute="leading" constant="20" id="31p-Fn-db7"/>
+                            <constraint firstItem="dqM-tx-ynx" firstAttribute="top" secondItem="KaI-8h-Y8q" secondAttribute="top" constant="20" id="90y-tP-vM5"/>
+                            <constraint firstItem="COO-Od-fza" firstAttribute="leading" secondItem="KaI-8h-Y8q" secondAttribute="leading" constant="40" id="Cgb-g6-ZGk"/>
+                            <constraint firstItem="7AV-dG-fCE" firstAttribute="top" secondItem="Iwx-oz-bCK" secondAttribute="bottom" constant="20" id="EvV-Qa-VpP"/>
+                            <constraint firstAttribute="bottom" secondItem="7AV-dG-fCE" secondAttribute="bottom" constant="20" id="K5t-Fk-LvR"/>
+                            <constraint firstItem="7AV-dG-fCE" firstAttribute="leading" secondItem="COO-Od-fza" secondAttribute="leading" id="RjG-CT-kSp"/>
+                            <constraint firstItem="Iwx-oz-bCK" firstAttribute="leading" secondItem="COO-Od-fza" secondAttribute="leading" id="W4s-NX-qJd"/>
+                            <constraint firstItem="Iwx-oz-bCK" firstAttribute="top" secondItem="COO-Od-fza" secondAttribute="bottom" constant="20" id="gzO-Nh-Lb9"/>
+                            <constraint firstItem="Qcu-SR-qaS" firstAttribute="centerY" secondItem="7AV-dG-fCE" secondAttribute="centerY" id="mdp-K6-Pdh"/>
+                            <constraint firstItem="COO-Od-fza" firstAttribute="top" secondItem="dqM-tx-ynx" secondAttribute="bottom" constant="20" id="nxr-d7-AEs"/>
+                            <constraint firstItem="Qcu-SR-qaS" firstAttribute="leading" secondItem="7AV-dG-fCE" secondAttribute="trailing" constant="20" id="uWm-Da-7Z3"/>
+                        </constraints>
+                    </view>
+                    <color key="borderColor" name="controlHighlightColor" catalog="System" colorSpace="catalog"/>
+                    <color key="fillColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                </box>
+                <box boxType="custom" borderType="bezel" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="Ywo-5x-8kh">
+                    <rect key="frame" x="0.0" y="1144" width="620" height="96"/>
+                    <view key="contentView" id="468-K4-aHN">
+                        <rect key="frame" x="1" y="1" width="618" height="94"/>
+                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                        <subviews>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="xba-4j-Fkx">
+                                <rect key="frame" x="18" y="57" width="84" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Name server" id="ID3-Sv-gYY">
+                                    <font key="font" metaFont="systemSemibold" size="13"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="dst-cF-h0o">
+                                <rect key="frame" x="38" y="20" width="54" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Address" id="ZqB-gt-yFt">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField verticalHuggingPriority="750" tag="100" translatesAutoresizingMaskIntoConstraints="NO" id="fLH-ZX-eWQ">
+                                <rect key="frame" x="110" y="20" width="230" height="20"/>
+                                <constraints>
+                                    <constraint firstAttribute="height" constant="20" id="es7-au-a8J"/>
+                                    <constraint firstAttribute="width" constant="230" id="zvU-KR-d2n"/>
+                                </constraints>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" bezelStyle="round" id="nYJ-aa-EH6">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                                <connections>
+                                    <outlet property="delegate" destination="-2" id="RmR-eP-XKH"/>
+                                </connections>
+                            </textField>
+                        </subviews>
+                        <constraints>
+                            <constraint firstItem="dst-cF-h0o" firstAttribute="leading" secondItem="468-K4-aHN" secondAttribute="leading" constant="40" id="0af-dE-Uou"/>
+                            <constraint firstItem="fLH-ZX-eWQ" firstAttribute="leading" secondItem="dst-cF-h0o" secondAttribute="trailing" constant="20" id="L0Z-Rw-BO6"/>
+                            <constraint firstItem="fLH-ZX-eWQ" firstAttribute="bottom" secondItem="dst-cF-h0o" secondAttribute="bottom" id="M0T-3i-his"/>
+                            <constraint firstItem="dst-cF-h0o" firstAttribute="top" secondItem="xba-4j-Fkx" secondAttribute="bottom" constant="20" id="Nkn-Bc-oxe"/>
+                            <constraint firstItem="xba-4j-Fkx" firstAttribute="leading" secondItem="468-K4-aHN" secondAttribute="leading" constant="20" id="ON9-rQ-ByM"/>
+                            <constraint firstAttribute="bottom" secondItem="dst-cF-h0o" secondAttribute="bottom" constant="20" id="QlL-S9-ELv"/>
+                            <constraint firstItem="xba-4j-Fkx" firstAttribute="top" secondItem="468-K4-aHN" secondAttribute="top" constant="20" id="uuD-le-hAv"/>
+                        </constraints>
+                    </view>
+                    <color key="borderColor" name="controlHighlightColor" catalog="System" colorSpace="catalog"/>
+                    <color key="fillColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                </box>
+                <box boxType="custom" borderType="bezel" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="eGX-gk-Zxp">
+                    <rect key="frame" x="0.0" y="994" width="620" height="130"/>
+                    <view key="contentView" id="QnU-yY-uCs">
+                        <rect key="frame" x="1" y="1" width="618" height="128"/>
+                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                        <subviews>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="XWv-rk-HwX">
+                                <rect key="frame" x="18" y="91" width="154" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="OpenDHT configuration" id="xJT-ij-69q">
+                                    <font key="font" metaFont="systemSemibold" size="13"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="TsE-jq-lW3">
+                                <rect key="frame" x="38" y="20" width="64" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Bootstrap" id="YJM-iQ-0lE">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="6EV-sb-gfv">
+                                <rect key="frame" x="38" y="55" width="100" height="18"/>
+                                <buttonCell key="cell" type="check" title="Enable proxy" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="VyP-8T-aNA">
+                                    <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
+                                    <font key="font" metaFont="system"/>
+                                </buttonCell>
+                                <connections>
+                                    <action selector="enableProxy:" target="-2" id="20s-Il-clt"/>
+                                </connections>
+                            </button>
+                            <textField verticalHuggingPriority="750" tag="200" translatesAutoresizingMaskIntoConstraints="NO" id="sXd-7q-hKd">
+                                <rect key="frame" x="156" y="54" width="230" height="20"/>
+                                <constraints>
+                                    <constraint firstAttribute="width" constant="230" id="YRz-P0-ZWZ"/>
+                                    <constraint firstAttribute="height" constant="20" id="j77-pg-Dxu"/>
+                                </constraints>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" bezelStyle="round" id="gkL-8q-b6G">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                                <connections>
+                                    <outlet property="delegate" destination="-2" id="vyD-pJ-Tw3"/>
+                                </connections>
+                            </textField>
+                            <textField verticalHuggingPriority="750" tag="300" translatesAutoresizingMaskIntoConstraints="NO" id="BlY-KQ-RvO">
+                                <rect key="frame" x="156" y="20" width="230" height="20"/>
+                                <constraints>
+                                    <constraint firstAttribute="width" constant="230" id="P9G-2c-MmV"/>
+                                    <constraint firstAttribute="height" constant="20" id="fw7-9i-3Y9"/>
+                                </constraints>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" bezelStyle="round" id="6gj-eP-OrK">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                                <connections>
+                                    <outlet property="delegate" destination="-2" id="3Cx-ff-hHN"/>
+                                </connections>
+                            </textField>
+                        </subviews>
+                        <constraints>
+                            <constraint firstItem="6EV-sb-gfv" firstAttribute="leading" secondItem="QnU-yY-uCs" secondAttribute="leading" constant="40" id="18X-K2-nBK"/>
+                            <constraint firstItem="6EV-sb-gfv" firstAttribute="top" secondItem="XWv-rk-HwX" secondAttribute="bottom" constant="20" id="97k-bk-gR1"/>
+                            <constraint firstItem="BlY-KQ-RvO" firstAttribute="bottom" secondItem="TsE-jq-lW3" secondAttribute="bottom" id="CJR-f8-0fx"/>
+                            <constraint firstItem="TsE-jq-lW3" firstAttribute="leading" secondItem="QnU-yY-uCs" secondAttribute="leading" constant="40" id="Ipq-6H-Gj3"/>
+                            <constraint firstItem="BlY-KQ-RvO" firstAttribute="leading" secondItem="sXd-7q-hKd" secondAttribute="leading" id="VQb-Qd-nkV"/>
+                            <constraint firstItem="sXd-7q-hKd" firstAttribute="centerY" secondItem="6EV-sb-gfv" secondAttribute="centerY" id="XTk-n4-ESN"/>
+                            <constraint firstAttribute="bottom" secondItem="TsE-jq-lW3" secondAttribute="bottom" constant="20" id="g39-LH-y8v"/>
+                            <constraint firstItem="sXd-7q-hKd" firstAttribute="leading" secondItem="6EV-sb-gfv" secondAttribute="trailing" constant="20" id="kU9-El-eQe"/>
+                            <constraint firstItem="XWv-rk-HwX" firstAttribute="leading" secondItem="QnU-yY-uCs" secondAttribute="leading" constant="20" id="nkV-MD-A7R"/>
+                            <constraint firstItem="TsE-jq-lW3" firstAttribute="top" secondItem="6EV-sb-gfv" secondAttribute="bottom" constant="20" id="p4t-8D-hIm"/>
+                            <constraint firstItem="XWv-rk-HwX" firstAttribute="top" secondItem="QnU-yY-uCs" secondAttribute="top" constant="20" id="w58-M0-4yd"/>
+                        </constraints>
+                    </view>
+                    <color key="borderColor" name="controlHighlightColor" catalog="System" colorSpace="catalog"/>
+                    <color key="fillColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                </box>
+                <box boxType="custom" borderType="bezel" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="vYi-gW-MrY">
+                    <rect key="frame" x="0.0" y="768" width="620" height="206"/>
+                    <view key="contentView" id="BmJ-rU-r58">
+                        <rect key="frame" x="1" y="1" width="618" height="204"/>
+                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                        <subviews>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="T1v-As-6g1">
+                                <rect key="frame" x="18" y="167" width="57" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Security" id="Qxp-I4-A7W">
+                                    <font key="font" metaFont="systemSemibold" size="13"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="7nW-fc-D0C">
+                                <rect key="frame" x="38" y="130" width="87" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="CA certificate" id="k7i-pK-JXp">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="GbC-51-5hu">
+                                <rect key="frame" x="182" y="121" width="68" height="32"/>
+                                <buttonCell key="cell" type="push" bezelStyle="rounded" image="NSTouchBarFolderTemplate" imagePosition="left" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="uZ4-7r-qwS">
+                                    <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                                    <font key="font" metaFont="systemLight" size="13"/>
+                                </buttonCell>
+                                <connections>
+                                    <action selector="selectFile:" target="-2" id="BZK-nd-maN"/>
+                                </connections>
+                            </button>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="UkO-SZ-7Pg">
+                                <rect key="frame" x="38" y="93" width="98" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="User certificate" id="LWs-a2-E7f">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Deq-fN-QHH">
+                                <rect key="frame" x="182" y="84" width="68" height="32"/>
+                                <buttonCell key="cell" type="push" bezelStyle="rounded" image="NSTouchBarFolderTemplate" imagePosition="left" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="2eQ-DW-Wxz">
+                                    <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                                    <font key="font" metaFont="systemLight" size="13"/>
+                                </buttonCell>
+                                <connections>
+                                    <action selector="selectFile:" target="-2" id="4SO-1o-52a"/>
+                                </connections>
+                            </button>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="QkE-dm-Gat">
+                                <rect key="frame" x="38" y="56" width="71" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Private key" id="soR-nF-ybe">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="jpY-zg-3Nb">
+                                <rect key="frame" x="182" y="46" width="68" height="32"/>
+                                <buttonCell key="cell" type="push" bezelStyle="rounded" image="NSTouchBarFolderTemplate" imagePosition="left" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="8x1-K0-GC8">
+                                    <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                                    <font key="font" metaFont="systemLight" size="13"/>
+                                </buttonCell>
+                                <connections>
+                                    <action selector="selectFile:" target="-2" id="YiN-eb-OJs"/>
+                                </connections>
+                            </button>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="PdV-TO-zeb">
+                                <rect key="frame" x="38" y="19" width="132" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Private key password" id="YcX-lE-8ug">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="wRp-ci-ypZ" customClass="NSSecureTextField">
+                                <rect key="frame" x="188" y="19" width="230" height="20"/>
+                                <constraints>
+                                    <constraint firstAttribute="height" constant="20" id="2UO-Uz-JCj"/>
+                                    <constraint firstAttribute="width" constant="230" id="bRD-Jb-dy1"/>
+                                </constraints>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" bezelStyle="round" id="0A2-Jb-gPz">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                                <connections>
+                                    <outlet property="delegate" destination="-2" id="Y7C-Vn-vht"/>
+                                </connections>
+                            </textField>
+                        </subviews>
+                        <constraints>
+                            <constraint firstItem="Deq-fN-QHH" firstAttribute="leading" secondItem="GbC-51-5hu" secondAttribute="leading" id="CuN-Le-yiD"/>
+                            <constraint firstItem="jpY-zg-3Nb" firstAttribute="leading" secondItem="GbC-51-5hu" secondAttribute="leading" id="HVL-Fv-64S"/>
+                            <constraint firstItem="GbC-51-5hu" firstAttribute="centerY" secondItem="7nW-fc-D0C" secondAttribute="centerY" id="Lge-cj-hue"/>
+                            <constraint firstItem="PdV-TO-zeb" firstAttribute="leading" secondItem="7nW-fc-D0C" secondAttribute="leading" id="M4N-oQ-DF1"/>
+                            <constraint firstItem="7nW-fc-D0C" firstAttribute="leading" secondItem="BmJ-rU-r58" secondAttribute="leading" constant="40" id="Ssc-ni-K7m"/>
+                            <constraint firstItem="T1v-As-6g1" firstAttribute="top" secondItem="BmJ-rU-r58" secondAttribute="top" constant="20" id="Wn0-c0-wvS"/>
+                            <constraint firstItem="jpY-zg-3Nb" firstAttribute="baseline" secondItem="QkE-dm-Gat" secondAttribute="baseline" id="Xs4-JR-Oan"/>
+                            <constraint firstItem="T1v-As-6g1" firstAttribute="leading" secondItem="BmJ-rU-r58" secondAttribute="leading" constant="20" id="Yj6-Lt-KZz"/>
+                            <constraint firstItem="UkO-SZ-7Pg" firstAttribute="leading" secondItem="7nW-fc-D0C" secondAttribute="leading" id="c0V-nv-z9K"/>
+                            <constraint firstItem="UkO-SZ-7Pg" firstAttribute="top" secondItem="7nW-fc-D0C" secondAttribute="bottom" constant="20" id="cyu-oN-jpd"/>
+                            <constraint firstItem="QkE-dm-Gat" firstAttribute="top" secondItem="UkO-SZ-7Pg" secondAttribute="bottom" constant="20" id="eFW-W0-3TX"/>
+                            <constraint firstItem="wRp-ci-ypZ" firstAttribute="bottom" secondItem="PdV-TO-zeb" secondAttribute="bottom" id="fjI-yp-SpF"/>
+                            <constraint firstItem="7nW-fc-D0C" firstAttribute="top" secondItem="T1v-As-6g1" secondAttribute="bottom" constant="20" id="mMK-xo-Srp"/>
+                            <constraint firstItem="wRp-ci-ypZ" firstAttribute="leading" secondItem="GbC-51-5hu" secondAttribute="leading" id="oFH-i8-glV"/>
+                            <constraint firstItem="Deq-fN-QHH" firstAttribute="centerY" secondItem="UkO-SZ-7Pg" secondAttribute="centerY" id="oXF-HE-Er1"/>
+                            <constraint firstItem="PdV-TO-zeb" firstAttribute="top" secondItem="QkE-dm-Gat" secondAttribute="bottom" constant="20" id="pMJ-ie-tHu"/>
+                            <constraint firstItem="wRp-ci-ypZ" firstAttribute="leading" secondItem="PdV-TO-zeb" secondAttribute="trailing" constant="20" id="s6I-SO-reb"/>
+                            <constraint firstItem="QkE-dm-Gat" firstAttribute="leading" secondItem="7nW-fc-D0C" secondAttribute="leading" id="xgT-L6-n5B"/>
+                        </constraints>
+                    </view>
+                    <constraints>
+                        <constraint firstAttribute="bottom" secondItem="PdV-TO-zeb" secondAttribute="bottom" constant="20" id="af1-6H-Qj5"/>
+                    </constraints>
+                    <color key="borderColor" name="controlHighlightColor" catalog="System" colorSpace="catalog"/>
+                    <color key="fillColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                </box>
+                <box boxType="custom" borderType="bezel" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="sy5-OH-wyB">
+                    <rect key="frame" x="0.0" y="403" width="620" height="345"/>
+                    <view key="contentView" id="qa3-DL-dmV">
+                        <rect key="frame" x="1" y="1" width="618" height="343"/>
+                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                        <subviews>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="h5V-qq-LXA">
+                                <rect key="frame" x="18" y="306" width="84" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Connectivity" id="sVe-iG-OCw">
+                                    <font key="font" metaFont="systemSemibold" size="13"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="QDt-Lq-ZdW">
+                                <rect key="frame" x="38" y="201" width="102" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="(TURN) address" id="8mv-Ia-GM4">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="DvP-Me-If6">
+                                <rect key="frame" x="38" y="164" width="113" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="(TURN) username" id="eMG-uY-bpH">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="vat-6t-ah8">
+                                <rect key="frame" x="38" y="127" width="112" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="(TURN) password" id="gUl-Px-cIJ">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="DcY-OO-WnW">
+                                <rect key="frame" x="38" y="90" width="87" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="(TURN) realm" id="XU0-bl-lDD">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="uVQ-Lb-Eb8">
+                                <rect key="frame" x="198" y="90" width="230" height="20"/>
+                                <constraints>
+                                    <constraint firstAttribute="width" constant="230" id="3k5-R4-k25"/>
+                                    <constraint firstAttribute="height" constant="20" id="8hm-PZ-PNi"/>
+                                </constraints>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" bezelStyle="round" id="ic9-RL-Ysu">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                                <connections>
+                                    <outlet property="delegate" destination="-2" id="aYt-uu-ll3"/>
+                                </connections>
+                            </textField>
+                            <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="VJ3-C0-3ir">
+                                <rect key="frame" x="38" y="270" width="56" height="18"/>
+                                <buttonCell key="cell" type="check" title="UPnP" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="25Q-c1-ld3">
+                                    <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
+                                    <font key="font" metaFont="system"/>
+                                </buttonCell>
+                                <connections>
+                                    <action selector="togleUPnP:" target="-2" id="GI4-no-iKi"/>
+                                </connections>
+                            </button>
+                            <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="onj-y3-meD">
+                                <rect key="frame" x="38" y="236" width="86" height="18"/>
+                                <buttonCell key="cell" type="check" title="Use TURN" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="zPJ-cO-neQ">
+                                    <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
+                                    <font key="font" metaFont="system"/>
+                                </buttonCell>
+                                <connections>
+                                    <action selector="useTURN:" target="-2" id="xsX-sh-zuR"/>
+                                </connections>
+                            </button>
+                            <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="tTi-FP-cRY">
+                                <rect key="frame" x="38" y="54" width="85" height="18"/>
+                                <buttonCell key="cell" type="check" title="Use STUN" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="nqX-Vu-UuA">
+                                    <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
+                                    <font key="font" metaFont="system"/>
+                                </buttonCell>
+                                <connections>
+                                    <action selector="useSTUN:" target="-2" id="ElW-a5-qDv"/>
+                                </connections>
+                            </button>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="e5r-aX-zQa">
+                                <rect key="frame" x="38" y="19" width="102" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="(STUN) address" id="YE4-ry-u07">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="JeL-QA-0kk">
+                                <rect key="frame" x="198" y="201" width="230" height="20"/>
+                                <constraints>
+                                    <constraint firstAttribute="width" constant="230" id="bm0-61-wuj"/>
+                                    <constraint firstAttribute="height" constant="20" id="xC8-VT-ynK"/>
+                                </constraints>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" bezelStyle="round" id="VLD-Rc-hL2">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                                <connections>
+                                    <outlet property="delegate" destination="-2" id="hFb-7r-a9t"/>
+                                </connections>
+                            </textField>
+                            <textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="hg7-Ud-VCi">
+                                <rect key="frame" x="198" y="164" width="230" height="20"/>
+                                <constraints>
+                                    <constraint firstAttribute="height" constant="20" id="0oZ-vV-rgK"/>
+                                    <constraint firstAttribute="width" constant="230" id="Nod-ch-Yo9"/>
+                                </constraints>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" bezelStyle="round" id="AX4-S2-k7R">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                                <connections>
+                                    <outlet property="delegate" destination="-2" id="QTH-kp-FNr"/>
+                                </connections>
+                            </textField>
+                            <textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="V1s-ND-hrq" customClass="NSSecureTextField">
+                                <rect key="frame" x="198" y="127" width="230" height="20"/>
+                                <constraints>
+                                    <constraint firstAttribute="width" constant="230" id="1Bb-NV-1u9"/>
+                                    <constraint firstAttribute="height" constant="20" id="LC2-bW-41m"/>
+                                </constraints>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" bezelStyle="round" id="LDU-PP-yHh">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                                <connections>
+                                    <outlet property="delegate" destination="-2" id="iLZ-fx-MHV"/>
+                                </connections>
+                            </textField>
+                            <textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="jNT-4j-3de">
+                                <rect key="frame" x="198" y="19" width="230" height="20"/>
+                                <constraints>
+                                    <constraint firstAttribute="width" constant="230" id="Ce1-Fg-mgf"/>
+                                    <constraint firstAttribute="height" constant="20" id="Zne-ud-Mai"/>
+                                </constraints>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" bezelStyle="round" id="htM-I1-Rhh">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                                <connections>
+                                    <outlet property="delegate" destination="-2" id="ZxP-Tq-UdK"/>
+                                </connections>
+                            </textField>
+                        </subviews>
+                        <constraints>
+                            <constraint firstItem="DvP-Me-If6" firstAttribute="leading" secondItem="VJ3-C0-3ir" secondAttribute="leading" id="1Ob-MH-0oA"/>
+                            <constraint firstItem="h5V-qq-LXA" firstAttribute="top" secondItem="qa3-DL-dmV" secondAttribute="top" constant="20" id="1Yf-9z-4y6"/>
+                            <constraint firstItem="jNT-4j-3de" firstAttribute="bottom" secondItem="e5r-aX-zQa" secondAttribute="bottom" id="6Ak-Cb-dX5"/>
+                            <constraint firstItem="vat-6t-ah8" firstAttribute="leading" secondItem="VJ3-C0-3ir" secondAttribute="leading" id="6Hr-Kf-Wv4"/>
+                            <constraint firstItem="DvP-Me-If6" firstAttribute="top" secondItem="QDt-Lq-ZdW" secondAttribute="bottom" constant="20" id="6Ye-ZJ-nN8"/>
+                            <constraint firstItem="h5V-qq-LXA" firstAttribute="leading" secondItem="qa3-DL-dmV" secondAttribute="leading" constant="20" id="7YS-08-LEu"/>
+                            <constraint firstItem="QDt-Lq-ZdW" firstAttribute="leading" secondItem="qa3-DL-dmV" secondAttribute="leading" constant="40" id="Bdg-Sm-3He"/>
+                            <constraint firstItem="vat-6t-ah8" firstAttribute="top" secondItem="DvP-Me-If6" secondAttribute="bottom" constant="20" id="HOc-BU-SQZ"/>
+                            <constraint firstItem="uVQ-Lb-Eb8" firstAttribute="bottom" secondItem="DcY-OO-WnW" secondAttribute="bottom" id="JqH-dV-f7m"/>
+                            <constraint firstItem="onj-y3-meD" firstAttribute="leading" secondItem="VJ3-C0-3ir" secondAttribute="leading" id="Ld9-Xk-dLE"/>
+                            <constraint firstItem="JeL-QA-0kk" firstAttribute="bottom" secondItem="QDt-Lq-ZdW" secondAttribute="bottom" id="NWk-wp-Q6J"/>
+                            <constraint firstItem="QDt-Lq-ZdW" firstAttribute="leading" secondItem="VJ3-C0-3ir" secondAttribute="leading" id="SXf-Tn-Zc7"/>
+                            <constraint firstItem="hg7-Ud-VCi" firstAttribute="leading" secondItem="JeL-QA-0kk" secondAttribute="leading" id="U1O-b2-AJG"/>
+                            <constraint firstItem="DvP-Me-If6" firstAttribute="leading" secondItem="QDt-Lq-ZdW" secondAttribute="leading" id="UpN-tv-x7Y"/>
+                            <constraint firstItem="QDt-Lq-ZdW" firstAttribute="top" secondItem="onj-y3-meD" secondAttribute="bottom" constant="20" id="XA6-mw-9VM"/>
+                            <constraint firstItem="V1s-ND-hrq" firstAttribute="bottom" secondItem="vat-6t-ah8" secondAttribute="bottom" id="XGr-I6-7kI"/>
+                            <constraint firstItem="VJ3-C0-3ir" firstAttribute="leading" secondItem="qa3-DL-dmV" secondAttribute="leading" constant="40" id="bKw-nh-4hg"/>
+                            <constraint firstItem="jNT-4j-3de" firstAttribute="leading" secondItem="JeL-QA-0kk" secondAttribute="leading" id="eGF-ve-C76"/>
+                            <constraint firstItem="tTi-FP-cRY" firstAttribute="top" secondItem="DcY-OO-WnW" secondAttribute="bottom" constant="20" id="jKi-He-lp8"/>
+                            <constraint firstItem="vat-6t-ah8" firstAttribute="leading" secondItem="QDt-Lq-ZdW" secondAttribute="leading" id="mcC-Xb-yVA"/>
+                            <constraint firstItem="e5r-aX-zQa" firstAttribute="top" secondItem="tTi-FP-cRY" secondAttribute="bottom" constant="20" id="nZp-ls-0pW"/>
+                            <constraint firstItem="JeL-QA-0kk" firstAttribute="leading" secondItem="QDt-Lq-ZdW" secondAttribute="trailing" constant="60" id="pe6-Vp-cNd"/>
+                            <constraint firstItem="VJ3-C0-3ir" firstAttribute="top" secondItem="h5V-qq-LXA" secondAttribute="bottom" constant="20" id="pvV-Gj-a42"/>
+                            <constraint firstItem="uVQ-Lb-Eb8" firstAttribute="bottom" secondItem="DcY-OO-WnW" secondAttribute="bottom" id="rwg-OC-lU7"/>
+                            <constraint firstItem="tTi-FP-cRY" firstAttribute="leading" secondItem="DcY-OO-WnW" secondAttribute="leading" id="sh6-f2-g8O"/>
+                            <constraint firstItem="DcY-OO-WnW" firstAttribute="top" secondItem="vat-6t-ah8" secondAttribute="bottom" constant="20" id="tDR-jt-bpJ"/>
+                            <constraint firstItem="V1s-ND-hrq" firstAttribute="leading" secondItem="JeL-QA-0kk" secondAttribute="leading" id="tIw-AF-IOI"/>
+                            <constraint firstItem="e5r-aX-zQa" firstAttribute="leading" secondItem="DcY-OO-WnW" secondAttribute="leading" id="tfA-lV-pw2"/>
+                            <constraint firstItem="onj-y3-meD" firstAttribute="top" secondItem="VJ3-C0-3ir" secondAttribute="bottom" constant="20" id="thF-vN-azH"/>
+                            <constraint firstItem="DcY-OO-WnW" firstAttribute="leading" secondItem="VJ3-C0-3ir" secondAttribute="leading" id="u6E-a6-F4p"/>
+                            <constraint firstItem="hg7-Ud-VCi" firstAttribute="bottom" secondItem="DvP-Me-If6" secondAttribute="bottom" id="vNz-zU-faN"/>
+                            <constraint firstItem="uVQ-Lb-Eb8" firstAttribute="leading" secondItem="JeL-QA-0kk" secondAttribute="leading" id="xT1-zJ-S2k"/>
+                            <constraint firstItem="DcY-OO-WnW" firstAttribute="leading" secondItem="QDt-Lq-ZdW" secondAttribute="leading" id="ydb-TT-2zF"/>
+                        </constraints>
+                    </view>
+                    <constraints>
+                        <constraint firstAttribute="bottom" secondItem="e5r-aX-zQa" secondAttribute="bottom" constant="20" id="ePQ-YR-17s"/>
+                    </constraints>
+                    <color key="borderColor" name="controlHighlightColor" catalog="System" colorSpace="catalog"/>
+                    <color key="fillColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                </box>
+                <box boxType="custom" borderType="bezel" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="7eU-EP-4br">
+                    <rect key="frame" x="0.0" y="20" width="300" height="363"/>
+                    <view key="contentView" id="jXZ-6r-fbG">
+                        <rect key="frame" x="1" y="1" width="298" height="361"/>
+                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                        <subviews>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="asr-5v-PFG">
+                                <rect key="frame" x="104" y="324" width="90" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Audio codecs" id="Q4t-zo-brK">
+                                    <font key="font" metaFont="systemSemibold" size="13"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <scrollView autohidesScrollers="YES" horizontalLineScroll="57" horizontalPageScroll="10" verticalLineScroll="57" verticalPageScroll="10" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="oAr-tx-LD3">
+                                <rect key="frame" x="20" y="70" width="258" height="234"/>
+                                <clipView key="contentView" id="HbD-3v-3ZU">
+                                    <rect key="frame" x="1" y="1" width="256" height="232"/>
+                                    <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                                    <subviews>
+                                        <tableView verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" columnSelection="YES" multipleSelection="NO" autosaveColumns="NO" rowHeight="55" rowSizeStyle="automatic" viewBased="YES" id="NVP-Sl-oi4">
+                                            <rect key="frame" x="0.0" y="0.0" width="256" height="232"/>
+                                            <autoresizingMask key="autoresizingMask"/>
+                                            <size key="intercellSpacing" width="3" height="2"/>
+                                            <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                            <color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/>
+                                            <tableColumns>
+                                                <tableColumn identifier="" width="253" minWidth="40" maxWidth="1000" id="fsa-cO-tNU">
+                                                    <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border">
+                                                        <font key="font" metaFont="smallSystem"/>
+                                                        <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
+                                                        <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
+                                                    </tableHeaderCell>
+                                                    <textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" title="Text Cell" id="EyV-Io-d3f">
+                                                        <font key="font" metaFont="system"/>
+                                                        <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                                        <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                                    </textFieldCell>
+                                                    <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/>
+                                                    <prototypeCellViews>
+                                                        <tableCellView identifier="TableCellAudioCodecItem" id="2hv-9N-qsK">
+                                                            <rect key="frame" x="1" y="1" width="253" height="50"/>
+                                                            <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                                                            <subviews>
+                                                                <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" tag="1" translatesAutoresizingMaskIntoConstraints="NO" id="91p-54-Y2r">
+                                                                    <rect key="frame" x="8" y="23" width="4" height="17"/>
+                                                                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" id="mG4-IM-X1E">
+                                                                        <font key="font" metaFont="system"/>
+                                                                        <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                                                        <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                                                    </textFieldCell>
+                                                                </textField>
+                                                                <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" tag="2" translatesAutoresizingMaskIntoConstraints="NO" id="tUm-wW-mj6">
+                                                                    <rect key="frame" x="8" y="7" width="4" height="16"/>
+                                                                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" id="v30-Bq-3PB">
+                                                                        <font key="font" metaFont="systemLight" size="12"/>
+                                                                        <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                                                        <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                                                    </textFieldCell>
+                                                                </textField>
+                                                                <button verticalHuggingPriority="750" tag="3" translatesAutoresizingMaskIntoConstraints="NO" id="5iw-3V-B83">
+                                                                    <rect key="frame" x="223" y="5" width="22" height="18"/>
+                                                                    <buttonCell key="cell" type="check" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="DQY-EO-Gag">
+                                                                        <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
+                                                                        <font key="font" metaFont="system"/>
+                                                                    </buttonCell>
+                                                                </button>
+                                                            </subviews>
+                                                            <constraints>
+                                                                <constraint firstItem="tUm-wW-mj6" firstAttribute="leading" secondItem="2hv-9N-qsK" secondAttribute="leading" constant="10" id="Hub-T2-eZO"/>
+                                                                <constraint firstAttribute="trailing" secondItem="5iw-3V-B83" secondAttribute="trailing" constant="10" id="M76-1j-Tpj"/>
+                                                                <constraint firstItem="5iw-3V-B83" firstAttribute="bottom" secondItem="tUm-wW-mj6" secondAttribute="bottom" id="j8d-28-9MC"/>
+                                                                <constraint firstItem="91p-54-Y2r" firstAttribute="leading" secondItem="2hv-9N-qsK" secondAttribute="leading" constant="10" id="kFn-2q-oB0"/>
+                                                                <constraint firstItem="91p-54-Y2r" firstAttribute="top" secondItem="2hv-9N-qsK" secondAttribute="top" constant="10" id="oNb-tz-klZ"/>
+                                                                <constraint firstItem="tUm-wW-mj6" firstAttribute="top" secondItem="91p-54-Y2r" secondAttribute="bottom" id="w5c-7g-6JH"/>
+                                                            </constraints>
+                                                        </tableCellView>
+                                                        <customView identifier="HoverRowView" id="dyz-id-8om" customClass="HoverTableRowView">
+                                                            <rect key="frame" x="1" y="53" width="253" height="55"/>
+                                                            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
+                                                        </customView>
+                                                    </prototypeCellViews>
+                                                </tableColumn>
+                                            </tableColumns>
+                                        </tableView>
+                                    </subviews>
+                                </clipView>
+                                <constraints>
+                                    <constraint firstAttribute="height" constant="234" id="5gk-pa-wsS"/>
+                                </constraints>
+                                <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="YES" id="SHY-vX-ofB">
+                                    <rect key="frame" x="1" y="217" width="236" height="16"/>
+                                    <autoresizingMask key="autoresizingMask"/>
+                                </scroller>
+                                <scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="NO" id="rhE-Rd-lUD">
+                                    <rect key="frame" x="224" y="17" width="15" height="102"/>
+                                    <autoresizingMask key="autoresizingMask"/>
+                                </scroller>
+                            </scrollView>
+                            <button translatesAutoresizingMaskIntoConstraints="NO" id="ADX-3w-bRT">
+                                <rect key="frame" x="20" y="20" width="30" height="30"/>
+                                <constraints>
+                                    <constraint firstAttribute="height" constant="30" id="8qk-3y-pk8"/>
+                                    <constraint firstAttribute="width" constant="30" id="bzY-rs-Uic"/>
+                                </constraints>
+                                <buttonCell key="cell" type="square" bezelStyle="shadowlessSquare" image="NSTouchBarGoDownTemplate" imagePosition="only" alignment="center" imageScaling="proportionallyUpOrDown" inset="2" id="yrG-Uq-2s2">
+                                    <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                                    <font key="font" metaFont="system"/>
+                                </buttonCell>
+                                <connections>
+                                    <action selector="moveAudioCodecDown:" target="-2" id="8sf-VV-Diq"/>
+                                </connections>
+                            </button>
+                            <button translatesAutoresizingMaskIntoConstraints="NO" id="Uad-ml-Qc6">
+                                <rect key="frame" x="70" y="20" width="30" height="30"/>
+                                <constraints>
+                                    <constraint firstAttribute="height" constant="30" id="dw5-6b-1Yj"/>
+                                    <constraint firstAttribute="width" constant="30" id="ffe-WI-qTN"/>
+                                </constraints>
+                                <buttonCell key="cell" type="square" bezelStyle="shadowlessSquare" image="NSTouchBarGoUpTemplate" imagePosition="only" alignment="center" imageScaling="proportionallyUpOrDown" inset="2" id="lf2-4x-a5L">
+                                    <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                                    <font key="font" metaFont="system"/>
+                                </buttonCell>
+                                <connections>
+                                    <action selector="moveAudioCodecUp:" target="-2" id="iR4-EG-yZE"/>
+                                </connections>
+                            </button>
+                        </subviews>
+                        <constraints>
+                            <constraint firstItem="asr-5v-PFG" firstAttribute="centerX" secondItem="jXZ-6r-fbG" secondAttribute="centerX" id="7Nq-Y4-Prd"/>
+                            <constraint firstItem="Uad-ml-Qc6" firstAttribute="centerY" secondItem="ADX-3w-bRT" secondAttribute="centerY" id="My6-q0-8RF"/>
+                            <constraint firstItem="oAr-tx-LD3" firstAttribute="top" secondItem="asr-5v-PFG" secondAttribute="bottom" constant="20" id="N5J-O5-Zvg"/>
+                            <constraint firstItem="oAr-tx-LD3" firstAttribute="leading" secondItem="jXZ-6r-fbG" secondAttribute="leading" constant="20" id="TTp-9s-eJB"/>
+                            <constraint firstItem="Uad-ml-Qc6" firstAttribute="leading" secondItem="ADX-3w-bRT" secondAttribute="trailing" constant="20" id="d1v-ui-LDC"/>
+                            <constraint firstAttribute="bottom" secondItem="ADX-3w-bRT" secondAttribute="bottom" constant="20" id="eHx-ww-963"/>
+                            <constraint firstItem="ADX-3w-bRT" firstAttribute="leading" secondItem="jXZ-6r-fbG" secondAttribute="leading" constant="20" id="gHe-kn-iaN"/>
+                            <constraint firstAttribute="trailing" secondItem="oAr-tx-LD3" secondAttribute="trailing" constant="20" id="hk2-p6-Qhz"/>
+                            <constraint firstItem="asr-5v-PFG" firstAttribute="top" secondItem="jXZ-6r-fbG" secondAttribute="top" constant="20" id="ir8-Bw-lbk"/>
+                            <constraint firstItem="ADX-3w-bRT" firstAttribute="top" secondItem="oAr-tx-LD3" secondAttribute="bottom" constant="20" id="qrf-eI-r5N"/>
+                        </constraints>
+                    </view>
+                    <constraints>
+                        <constraint firstAttribute="width" constant="300" id="CKH-DF-dFI"/>
+                    </constraints>
+                    <color key="borderColor" name="controlHighlightColor" catalog="System" colorSpace="catalog"/>
+                    <color key="fillColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                </box>
+                <button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="CzN-p5-cY0">
+                    <rect key="frame" x="45" y="-6" width="48" height="48"/>
+                    <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
+                    <buttonCell key="cell" type="square" bezelStyle="shadowlessSquare" imagePosition="only" alignment="center" imageScaling="proportionallyUpOrDown" inset="2" id="dti-8p-H0E">
+                        <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                        <font key="font" metaFont="system"/>
+                    </buttonCell>
+                </button>
+                <box boxType="custom" borderType="bezel" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="K0z-NH-3Cq">
+                    <rect key="frame" x="319" y="20" width="300" height="363"/>
+                    <view key="contentView" id="2Mn-Te-9rM">
+                        <rect key="frame" x="1" y="1" width="298" height="361"/>
+                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                        <subviews>
+                            <box boxType="custom" borderType="none" cornerRadius="4" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="538-we-FTp">
+                                <rect key="frame" x="95" y="321" width="109" height="20"/>
+                                <view key="contentView" id="u5C-Lu-8DW">
+                                    <rect key="frame" x="0.0" y="0.0" width="109" height="20"/>
+                                    <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                                    <subviews>
+                                        <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="fIl-oJ-Wgd">
+                                            <rect key="frame" x="-2" y="1" width="22" height="18"/>
+                                            <buttonCell key="cell" type="check" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="ofb-mf-FRU">
+                                                <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
+                                                <font key="font" metaFont="system"/>
+                                            </buttonCell>
+                                            <connections>
+                                                <action selector="toggleVideoEnabled:" target="-2" id="3f9-cp-X6D"/>
+                                            </connections>
+                                        </button>
+                                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="8wT-3R-bBP">
+                                            <rect key="frame" x="21" y="2" width="90" height="17"/>
+                                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Video codecs" id="Wrh-zD-uh5">
+                                                <font key="font" metaFont="systemSemibold" size="13"/>
+                                                <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                                <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                            </textFieldCell>
+                                        </textField>
+                                    </subviews>
+                                    <constraints>
+                                        <constraint firstItem="fIl-oJ-Wgd" firstAttribute="centerY" secondItem="u5C-Lu-8DW" secondAttribute="centerY" id="FuY-Ki-kpf"/>
+                                        <constraint firstItem="8wT-3R-bBP" firstAttribute="centerY" secondItem="u5C-Lu-8DW" secondAttribute="centerY" id="ISS-Om-weN"/>
+                                        <constraint firstItem="fIl-oJ-Wgd" firstAttribute="leading" secondItem="u5C-Lu-8DW" secondAttribute="leading" id="kC1-Ge-hFU"/>
+                                        <constraint firstItem="8wT-3R-bBP" firstAttribute="leading" secondItem="fIl-oJ-Wgd" secondAttribute="trailing" constant="5" id="mS1-7k-rTD"/>
+                                    </constraints>
+                                </view>
+                                <constraints>
+                                    <constraint firstAttribute="trailing" secondItem="8wT-3R-bBP" secondAttribute="trailing" id="CUX-8x-r6V"/>
+                                    <constraint firstAttribute="height" constant="20" id="oa7-ai-qcB"/>
+                                </constraints>
+                            </box>
+                            <scrollView autohidesScrollers="YES" horizontalLineScroll="57" horizontalPageScroll="10" verticalLineScroll="57" verticalPageScroll="10" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="UTo-FA-QKH">
+                                <rect key="frame" x="20" y="70" width="258" height="234"/>
+                                <clipView key="contentView" copiesOnScroll="NO" id="WSV-03-bGb">
+                                    <rect key="frame" x="1" y="1" width="256" height="232"/>
+                                    <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                                    <subviews>
+                                        <tableView verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" columnSelection="YES" multipleSelection="NO" autosaveColumns="NO" rowHeight="55" rowSizeStyle="automatic" viewBased="YES" id="G70-dr-Lev">
+                                            <rect key="frame" x="0.0" y="0.0" width="256" height="232"/>
+                                            <autoresizingMask key="autoresizingMask"/>
+                                            <size key="intercellSpacing" width="3" height="2"/>
+                                            <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                            <color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/>
+                                            <tableColumns>
+                                                <tableColumn identifier="videoColumn" width="253" minWidth="40" maxWidth="1000" id="rgp-QD-eqz">
+                                                    <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border">
+                                                        <font key="font" metaFont="smallSystem"/>
+                                                        <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
+                                                        <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
+                                                    </tableHeaderCell>
+                                                    <textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" title="Text Cell" id="g8T-u3-MS3">
+                                                        <font key="font" metaFont="system"/>
+                                                        <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                                        <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                                    </textFieldCell>
+                                                    <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/>
+                                                    <prototypeCellViews>
+                                                        <tableCellView identifier="TableCellVideoCodecItem" id="Qpg-Zb-T9n">
+                                                            <rect key="frame" x="1" y="1" width="253" height="50"/>
+                                                            <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                                                            <subviews>
+                                                                <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" tag="4" translatesAutoresizingMaskIntoConstraints="NO" id="om4-gk-lts">
+                                                                    <rect key="frame" x="8" y="17" width="4" height="17"/>
+                                                                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" id="Xa9-B3-omn">
+                                                                        <font key="font" metaFont="system"/>
+                                                                        <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                                                        <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                                                    </textFieldCell>
+                                                                </textField>
+                                                                <button verticalHuggingPriority="750" tag="5" translatesAutoresizingMaskIntoConstraints="NO" id="Jqg-vt-p8h">
+                                                                    <rect key="frame" x="223" y="17" width="22" height="18"/>
+                                                                    <buttonCell key="cell" type="check" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="fc5-w6-QxQ">
+                                                                        <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
+                                                                        <font key="font" metaFont="system"/>
+                                                                    </buttonCell>
+                                                                </button>
+                                                            </subviews>
+                                                            <constraints>
+                                                                <constraint firstItem="Jqg-vt-p8h" firstAttribute="centerY" secondItem="om4-gk-lts" secondAttribute="centerY" id="Zky-BA-5D3"/>
+                                                                <constraint firstItem="om4-gk-lts" firstAttribute="centerY" secondItem="Qpg-Zb-T9n" secondAttribute="centerY" id="jIo-04-kHf"/>
+                                                                <constraint firstItem="om4-gk-lts" firstAttribute="leading" secondItem="Qpg-Zb-T9n" secondAttribute="leading" constant="10" id="k7j-fe-E1c"/>
+                                                                <constraint firstAttribute="trailing" secondItem="Jqg-vt-p8h" secondAttribute="trailing" constant="10" id="kR5-Ms-8Yx"/>
+                                                            </constraints>
+                                                        </tableCellView>
+                                                        <customView identifier="HoverRowView" id="7Rk-d9-r6b" customClass="HoverTableRowView">
+                                                            <rect key="frame" x="1" y="53" width="253" height="55"/>
+                                                            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
+                                                        </customView>
+                                                    </prototypeCellViews>
+                                                </tableColumn>
+                                            </tableColumns>
+                                        </tableView>
+                                    </subviews>
+                                </clipView>
+                                <constraints>
+                                    <constraint firstAttribute="height" constant="234" id="nRV-j7-juG"/>
+                                </constraints>
+                                <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="YES" id="dyi-1h-t85">
+                                    <rect key="frame" x="1" y="217" width="236" height="16"/>
+                                    <autoresizingMask key="autoresizingMask"/>
+                                </scroller>
+                                <scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="NO" id="zjK-A3-0Gt">
+                                    <rect key="frame" x="224" y="17" width="15" height="102"/>
+                                    <autoresizingMask key="autoresizingMask"/>
+                                </scroller>
+                            </scrollView>
+                            <button translatesAutoresizingMaskIntoConstraints="NO" id="Qhu-T5-27z">
+                                <rect key="frame" x="20" y="70" width="258" height="234"/>
+                                <buttonCell key="cell" type="square" bezelStyle="shadowlessSquare" imagePosition="only" alignment="center" imageScaling="proportionallyUpOrDown" inset="2" id="BQE-js-tpi">
+                                    <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                                    <font key="font" metaFont="system"/>
+                                </buttonCell>
+                            </button>
+                            <button translatesAutoresizingMaskIntoConstraints="NO" id="b3l-2o-HjY">
+                                <rect key="frame" x="20" y="20" width="30" height="30"/>
+                                <constraints>
+                                    <constraint firstAttribute="height" constant="30" id="b3b-Eg-F0k"/>
+                                    <constraint firstAttribute="width" constant="30" id="pZw-Nj-xus"/>
+                                </constraints>
+                                <buttonCell key="cell" type="square" bezelStyle="shadowlessSquare" image="NSTouchBarGoDownTemplate" imagePosition="only" alignment="center" imageScaling="proportionallyUpOrDown" inset="2" id="T2m-mF-8xZ">
+                                    <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                                    <font key="font" metaFont="system"/>
+                                </buttonCell>
+                                <connections>
+                                    <action selector="moveVideoCodecDown:" target="-2" id="fhw-UK-hkJ"/>
+                                </connections>
+                            </button>
+                            <button translatesAutoresizingMaskIntoConstraints="NO" id="BCX-Kv-VDH">
+                                <rect key="frame" x="70" y="20" width="30" height="30"/>
+                                <constraints>
+                                    <constraint firstAttribute="height" constant="30" id="6jM-JC-aeJ"/>
+                                    <constraint firstAttribute="width" constant="30" id="VIw-RA-kRe"/>
+                                </constraints>
+                                <buttonCell key="cell" type="square" bezelStyle="shadowlessSquare" image="NSTouchBarGoUpTemplate" imagePosition="only" alignment="center" imageScaling="proportionallyUpOrDown" inset="2" id="btv-a0-wbX">
+                                    <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                                    <font key="font" metaFont="system"/>
+                                </buttonCell>
+                                <connections>
+                                    <action selector="moveVideoCodecUp:" target="-2" id="fl9-TO-Gpd"/>
+                                </connections>
+                            </button>
+                        </subviews>
+                        <constraints>
+                            <constraint firstItem="b3l-2o-HjY" firstAttribute="leading" secondItem="2Mn-Te-9rM" secondAttribute="leading" constant="20" id="2KR-Gu-KjU"/>
+                            <constraint firstItem="538-we-FTp" firstAttribute="top" secondItem="2Mn-Te-9rM" secondAttribute="top" constant="20" id="7Jm-gp-DWk"/>
+                            <constraint firstItem="BCX-Kv-VDH" firstAttribute="centerY" secondItem="b3l-2o-HjY" secondAttribute="centerY" id="7Sa-nf-9jI"/>
+                            <constraint firstItem="538-we-FTp" firstAttribute="centerX" secondItem="2Mn-Te-9rM" secondAttribute="centerX" id="9n3-en-naF"/>
+                            <constraint firstItem="UTo-FA-QKH" firstAttribute="leading" secondItem="2Mn-Te-9rM" secondAttribute="leading" constant="20" id="AJq-r9-P8x"/>
+                            <constraint firstAttribute="trailing" secondItem="UTo-FA-QKH" secondAttribute="trailing" constant="20" id="ASs-6e-wbk"/>
+                            <constraint firstItem="Qhu-T5-27z" firstAttribute="bottom" secondItem="UTo-FA-QKH" secondAttribute="bottom" id="Q73-Mh-LvS"/>
+                            <constraint firstItem="Qhu-T5-27z" firstAttribute="leading" secondItem="UTo-FA-QKH" secondAttribute="leading" id="UMG-yw-zQY"/>
+                            <constraint firstItem="BCX-Kv-VDH" firstAttribute="leading" secondItem="b3l-2o-HjY" secondAttribute="trailing" constant="20" id="eqG-6S-irw"/>
+                            <constraint firstItem="Qhu-T5-27z" firstAttribute="trailing" secondItem="UTo-FA-QKH" secondAttribute="trailing" id="lMT-iM-KDK"/>
+                            <constraint firstAttribute="bottom" secondItem="b3l-2o-HjY" secondAttribute="bottom" constant="20" id="lmk-P7-gEi"/>
+                            <constraint firstItem="Qhu-T5-27z" firstAttribute="top" secondItem="UTo-FA-QKH" secondAttribute="top" id="pJx-KH-yU4"/>
+                            <constraint firstItem="b3l-2o-HjY" firstAttribute="top" secondItem="UTo-FA-QKH" secondAttribute="bottom" constant="20" id="upf-Z6-BPD"/>
+                        </constraints>
+                    </view>
+                    <constraints>
+                        <constraint firstAttribute="width" constant="300" id="aDB-9b-0Yt"/>
+                    </constraints>
+                    <color key="borderColor" name="controlHighlightColor" catalog="System" colorSpace="catalog"/>
+                    <color key="fillColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                </box>
+            </subviews>
+            <constraints>
+                <constraint firstItem="eGX-gk-Zxp" firstAttribute="top" secondItem="Ywo-5x-8kh" secondAttribute="bottom" constant="20" id="0wB-jM-V1d"/>
+                <constraint firstItem="K0z-NH-3Cq" firstAttribute="bottom" secondItem="7eU-EP-4br" secondAttribute="bottom" id="31C-rx-Bn4"/>
+                <constraint firstAttribute="trailing" secondItem="Ywo-5x-8kh" secondAttribute="trailing" id="6Hz-wT-EmH"/>
+                <constraint firstItem="Ywo-5x-8kh" firstAttribute="leading" secondItem="Hz6-mo-xeY" secondAttribute="leading" id="6dD-eh-Bfo"/>
+                <constraint firstAttribute="trailing" secondItem="ZNe-H0-dJk" secondAttribute="trailing" id="7bz-1q-3dZ"/>
+                <constraint firstItem="Ywo-5x-8kh" firstAttribute="top" secondItem="ZNe-H0-dJk" secondAttribute="bottom" constant="20" id="CPJ-2a-zrd"/>
+                <constraint firstItem="K0z-NH-3Cq" firstAttribute="leading" secondItem="jXZ-6r-fbG" secondAttribute="trailing" constant="20" id="PeV-rC-9eB"/>
+                <constraint firstItem="K0z-NH-3Cq" firstAttribute="top" secondItem="7eU-EP-4br" secondAttribute="top" id="UH9-77-fGz"/>
+                <constraint firstAttribute="trailing" secondItem="sy5-OH-wyB" secondAttribute="trailing" id="Vmg-Rw-grA"/>
+                <constraint firstItem="sy5-OH-wyB" firstAttribute="leading" secondItem="Hz6-mo-xeY" secondAttribute="leading" id="aOA-jl-GMX"/>
+                <constraint firstAttribute="trailing" secondItem="eGX-gk-Zxp" secondAttribute="trailing" id="cfW-fl-Ue8"/>
+                <constraint firstItem="ZNe-H0-dJk" firstAttribute="leading" secondItem="Hz6-mo-xeY" secondAttribute="leading" id="eGh-29-jPc"/>
+                <constraint firstItem="vYi-gW-MrY" firstAttribute="leading" secondItem="Hz6-mo-xeY" secondAttribute="leading" id="gWE-Jm-SSN"/>
+                <constraint firstAttribute="bottom" secondItem="7eU-EP-4br" secondAttribute="bottom" constant="20" id="lZ1-he-VYw"/>
+                <constraint firstItem="7eU-EP-4br" firstAttribute="top" secondItem="sy5-OH-wyB" secondAttribute="bottom" constant="20" id="m5L-xx-nuD"/>
+                <constraint firstAttribute="trailing" secondItem="vYi-gW-MrY" secondAttribute="trailing" id="uM0-q4-ABf"/>
+                <constraint firstItem="ZNe-H0-dJk" firstAttribute="top" secondItem="Hz6-mo-xeY" secondAttribute="top" id="ueS-uf-2rP"/>
+                <constraint firstItem="eGX-gk-Zxp" firstAttribute="leading" secondItem="Hz6-mo-xeY" secondAttribute="leading" id="ugC-Xl-Xoy"/>
+                <constraint firstItem="7eU-EP-4br" firstAttribute="leading" secondItem="Hz6-mo-xeY" secondAttribute="leading" id="vTW-5Z-Tqp"/>
+                <constraint firstItem="sy5-OH-wyB" firstAttribute="top" secondItem="vYi-gW-MrY" secondAttribute="bottom" constant="20" id="xb7-gc-OYe"/>
+                <constraint firstItem="vYi-gW-MrY" firstAttribute="top" secondItem="eGX-gk-Zxp" secondAttribute="bottom" constant="20" id="zq8-po-JHl"/>
+            </constraints>
+            <point key="canvasLocation" x="265" y="871.5"/>
+        </customView>
+    </objects>
+    <resources>
+        <image name="NSTouchBarFolderTemplate" width="22" height="30"/>
+        <image name="NSTouchBarGoDownTemplate" width="16" height="30"/>
+        <image name="NSTouchBarGoUpTemplate" width="16" height="30"/>
+    </resources>
+</document>
diff --git a/ui/Base.lproj/AccAdvancedSip.xib b/ui/Base.lproj/AccAdvancedSip.xib
new file mode 100644
index 0000000000000000000000000000000000000000..ab2b8caffe19f0175bb214ba680c819f7bd36d97
--- /dev/null
+++ b/ui/Base.lproj/AccAdvancedSip.xib
@@ -0,0 +1,1339 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="14113" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" customObjectInstantitationMethod="direct">
+    <dependencies>
+        <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="14113"/>
+        <capability name="box content view" minToolsVersion="7.0"/>
+        <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
+        <capability name="system font weights other than Regular or Bold" minToolsVersion="7.0"/>
+    </dependencies>
+    <objects>
+        <customObject id="-2" userLabel="File's Owner" customClass="AccAdvancedSipVC">
+            <connections>
+                <outlet property="audioCodecView" destination="2Rz-hA-d6u" id="FTG-Qc-IVx"/>
+                <outlet property="autoAnswer" destination="aBx-M9-wnx" id="cwy-Vu-MY5"/>
+                <outlet property="checkAnswerCertificatesButton" destination="RwQ-Zt-6Ms" id="qsF-8b-kVd"/>
+                <outlet property="checkIncomingCertificatesButton" destination="vfQ-wE-ZmD" id="4fv-nz-Y4b"/>
+                <outlet property="customAddressField" destination="Lhy-S9-aIO" id="OtQ-u7-ay8"/>
+                <outlet property="customPortField" destination="Toa-eV-Us2" id="e0R-A9-004"/>
+                <outlet property="customPortStepper" destination="fXf-Az-A7P" id="yd8-gH-WzY"/>
+                <outlet property="disableVideoButton" destination="3yP-KT-ImU" id="FQ0-qg-fnH"/>
+                <outlet property="enableRingtone" destination="sOY-lV-fFi" id="aVH-Te-iz1"/>
+                <outlet property="enableSDESButton" destination="xTd-ef-yVL" id="baa-UY-vwQ"/>
+                <outlet property="encryptMediaButton" destination="drd-aR-Qjr" id="VY7-XU-1yr"/>
+                <outlet property="encryptNegotiationButton" destination="ILQ-nZ-PzA" id="5eO-4o-vLO"/>
+                <outlet property="fallbackEncryptionFailureButton" destination="fea-s6-kK4" id="LAx-2S-DPj"/>
+                <outlet property="maxAudioPortStepper" destination="xYF-oT-c1k" id="KEd-hK-dmt"/>
+                <outlet property="maxAudioRTPRange" destination="ZTD-jf-ETX" id="nHY-qa-Z3Z"/>
+                <outlet property="maxVideoPortStepper" destination="iGx-YR-Efs" id="INH-SO-dHe"/>
+                <outlet property="maxVideoRTPRange" destination="yka-j6-lM7" id="CNd-G2-Obw"/>
+                <outlet property="minAudioPortStepper" destination="CJp-f0-CVS" id="AtL-mw-Jgq"/>
+                <outlet property="minAudioRTPRange" destination="fgZ-CW-Fvh" id="HDn-bX-sLR"/>
+                <outlet property="minVideoPortStepper" destination="cBH-m7-dIR" id="Cp2-eP-GsJ"/>
+                <outlet property="minVideoRTPRange" destination="A4B-iN-Uds" id="xDU-el-U87"/>
+                <outlet property="negotiationTimeoutField" destination="IoY-ZS-7VV" id="gR8-vU-F99"/>
+                <outlet property="negotiationTimeoutStepper" destination="RP0-Do-gcb" id="ykQ-DN-3QJ"/>
+                <outlet property="networkField" destination="P42-dO-VBW" id="pAP-kO-bUV"/>
+                <outlet property="networkStepper" destination="MYL-ee-crQ" id="CGI-s4-oQr"/>
+                <outlet property="outgoingTlsServerNameField" destination="MPK-W6-hDH" id="YJz-Gb-4Hi"/>
+                <outlet property="privateKeyPaswordField" destination="P0o-HT-W0W" id="hOG-or-1vY"/>
+                <outlet property="registrationTimeoutField" destination="VBr-DO-zPN" id="gq9-pN-iVG"/>
+                <outlet property="registrationTimeoutStepper" destination="TaV-85-mCI" id="QQA-gG-S8f"/>
+                <outlet property="requereIncomingCertificateButton" destination="Owe-Lu-zR2" id="xJC-nB-oGQ"/>
+                <outlet property="ringtoneSelectionButton" destination="PVN-3m-lNd" id="m3Z-rL-yQw"/>
+                <outlet property="selectCACertificateButton" destination="rkG-dN-0A3" id="7F0-AQ-iW3"/>
+                <outlet property="selectPrivateKeyButton" destination="9Yn-Ph-hn6" id="bj1-r5-wxQ"/>
+                <outlet property="selectUserCertificateButton" destination="Rk8-O0-ciB" id="z6m-ji-oIT"/>
+                <outlet property="stunAddressField" destination="5V3-AP-UfC" id="cX5-tx-gdV"/>
+                <outlet property="tlsProtocolsList" destination="egE-Ir-0cY" id="3R6-h3-sc2"/>
+                <outlet property="toggleUPnPButton" destination="vN2-vR-Md1" id="jps-7k-MAP"/>
+                <outlet property="toggleVideoButton" destination="Xnk-aJ-2Vg" id="5OB-ji-H2J"/>
+                <outlet property="turnAddressField" destination="Nk9-oD-oHY" id="0w0-dN-55k"/>
+                <outlet property="turnPasswordField" destination="H4h-QV-R15" id="5FQ-oa-wct"/>
+                <outlet property="turnRealmField" destination="T3i-ea-2yv" id="shc-AX-X6A"/>
+                <outlet property="turnUsernameField" destination="xgw-BA-zIA" id="0nx-nI-I6S"/>
+                <outlet property="useCustomAddressButton" destination="8Y1-hZ-pq5" id="Tlz-9h-nCP"/>
+                <outlet property="useSTUNButton" destination="dTT-ff-d4E" id="eoC-ZX-bGU"/>
+                <outlet property="useTURNButton" destination="WFm-Xg-Rlu" id="NuY-63-9Sg"/>
+                <outlet property="videoCodecView" destination="LDg-9Z-yNi" id="7eY-Zb-Len"/>
+                <outlet property="view" destination="2pL-ZS-jV2" id="i2J-aV-bRf"/>
+            </connections>
+        </customObject>
+        <customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/>
+        <customObject id="-3" userLabel="Application" customClass="NSObject"/>
+        <customView id="2pL-ZS-jV2">
+            <rect key="frame" x="0.0" y="0.0" width="620" height="1985"/>
+            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
+            <subviews>
+                <box boxType="custom" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="Ppa-zn-w1X">
+                    <rect key="frame" x="0.0" y="1858" width="620" height="127"/>
+                    <view key="contentView" id="626-Ug-faS">
+                        <rect key="frame" x="1" y="1" width="618" height="125"/>
+                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                        <subviews>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="ekW-LY-oqG">
+                                <rect key="frame" x="18" y="88" width="83" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Call settings" id="3Uq-Nb-J1A">
+                                    <font key="font" metaFont="systemSemibold" size="13"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="sOY-lV-fFi">
+                                <rect key="frame" x="38" y="18" width="123" height="18"/>
+                                <buttonCell key="cell" type="check" title="Custom ringtone" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="Nqr-gj-dOH">
+                                    <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
+                                    <font key="font" metaFont="system"/>
+                                </buttonCell>
+                                <connections>
+                                    <action selector="autoEnableRingtone:" target="-2" id="1sT-XI-6hO"/>
+                                </connections>
+                            </button>
+                            <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="PVN-3m-lNd">
+                                <rect key="frame" x="173" y="10" width="68" height="32"/>
+                                <buttonCell key="cell" type="push" bezelStyle="rounded" image="NSTouchBarFolderTemplate" imagePosition="left" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="v2R-Iy-83H">
+                                    <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                                    <font key="font" metaFont="systemLight" size="13"/>
+                                </buttonCell>
+                                <connections>
+                                    <action selector="selectFile:" target="-2" id="IT5-Pv-TLq"/>
+                                </connections>
+                            </button>
+                            <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="aBx-M9-wnx">
+                                <rect key="frame" x="38" y="52" width="128" height="18"/>
+                                <buttonCell key="cell" type="check" title="Auto answer calls" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="3vs-TI-tkg">
+                                    <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
+                                    <font key="font" metaFont="system"/>
+                                </buttonCell>
+                                <connections>
+                                    <action selector="autoAnswerCall:" target="-2" id="Wu8-ax-buG"/>
+                                </connections>
+                            </button>
+                        </subviews>
+                        <constraints>
+                            <constraint firstAttribute="bottom" secondItem="sOY-lV-fFi" secondAttribute="bottom" constant="20" id="1dl-Hr-jTO"/>
+                            <constraint firstItem="ekW-LY-oqG" firstAttribute="top" secondItem="626-Ug-faS" secondAttribute="top" constant="20" id="1nS-ha-tBp"/>
+                            <constraint firstItem="PVN-3m-lNd" firstAttribute="leading" secondItem="sOY-lV-fFi" secondAttribute="trailing" constant="20" id="Diw-ED-Rti"/>
+                            <constraint firstItem="aBx-M9-wnx" firstAttribute="leading" secondItem="626-Ug-faS" secondAttribute="leading" constant="40" id="Dju-nS-MId"/>
+                            <constraint firstItem="ekW-LY-oqG" firstAttribute="leading" secondItem="626-Ug-faS" secondAttribute="leading" constant="20" id="LMP-Pa-23O"/>
+                            <constraint firstItem="sOY-lV-fFi" firstAttribute="top" secondItem="aBx-M9-wnx" secondAttribute="bottom" constant="20" id="fTZ-qL-Xb3"/>
+                            <constraint firstItem="PVN-3m-lNd" firstAttribute="centerY" secondItem="sOY-lV-fFi" secondAttribute="centerY" id="phe-Iv-RqX"/>
+                            <constraint firstItem="sOY-lV-fFi" firstAttribute="leading" secondItem="aBx-M9-wnx" secondAttribute="leading" id="rjI-IH-FBN"/>
+                            <constraint firstItem="aBx-M9-wnx" firstAttribute="top" secondItem="ekW-LY-oqG" secondAttribute="bottom" constant="20" id="sGM-pf-0GL"/>
+                        </constraints>
+                    </view>
+                    <color key="borderColor" name="controlHighlightColor" catalog="System" colorSpace="catalog"/>
+                    <color key="fillColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                </box>
+                <box boxType="custom" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="Zuz-jy-rLn">
+                    <rect key="frame" x="0.0" y="1283" width="620" height="555"/>
+                    <view key="contentView" id="O9m-sm-3kA">
+                        <rect key="frame" x="1" y="1" width="618" height="553"/>
+                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                        <subviews>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="UoT-I6-sec">
+                                <rect key="frame" x="18" y="516" width="57" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Security" id="24s-we-pkD">
+                                    <font key="font" metaFont="systemSemibold" size="13"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Gr6-rE-TTP">
+                                <rect key="frame" x="38" y="343" width="87" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="CA certificate" id="b2y-85-ZHK">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="rkG-dN-0A3">
+                                <rect key="frame" x="137" y="334" width="68" height="32"/>
+                                <buttonCell key="cell" type="push" bezelStyle="rounded" image="NSTouchBarFolderTemplate" imagePosition="left" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="GEh-Lk-vmy">
+                                    <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                                    <font key="font" metaFont="systemLight" size="13"/>
+                                </buttonCell>
+                                <connections>
+                                    <action selector="selectFile:" target="-2" id="XeI-7l-jsn"/>
+                                </connections>
+                            </button>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="D12-bb-8ME">
+                                <rect key="frame" x="38" y="306" width="98" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="User certificate" id="Xp3-bL-3Cs">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Rk8-O0-ciB">
+                                <rect key="frame" x="148" y="297" width="68" height="32"/>
+                                <buttonCell key="cell" type="push" bezelStyle="rounded" image="NSTouchBarFolderTemplate" imagePosition="left" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="X2E-zq-CRT">
+                                    <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                                    <font key="font" metaFont="systemLight" size="13"/>
+                                </buttonCell>
+                                <connections>
+                                    <action selector="selectFile:" target="-2" id="AMG-Zg-ucv"/>
+                                </connections>
+                            </button>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="lQN-0T-lNl">
+                                <rect key="frame" x="38" y="269" width="71" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Private key" id="W9F-Nf-ehp">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="9Yn-Ph-hn6">
+                                <rect key="frame" x="121" y="259" width="68" height="32"/>
+                                <buttonCell key="cell" type="push" bezelStyle="rounded" image="NSTouchBarFolderTemplate" imagePosition="left" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="MDJ-1f-9d5">
+                                    <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                                    <font key="font" metaFont="systemLight" size="13"/>
+                                </buttonCell>
+                                <connections>
+                                    <action selector="selectFile:" target="-2" id="unL-gm-G06"/>
+                                </connections>
+                            </button>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="t0i-3W-NYK">
+                                <rect key="frame" x="38" y="232" width="132" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Private key password" id="72p-GY-gu6">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="P0o-HT-W0W" customClass="NSSecureTextField">
+                                <rect key="frame" x="222" y="232" width="230" height="20"/>
+                                <constraints>
+                                    <constraint firstAttribute="height" constant="20" id="nhm-Ug-vnb"/>
+                                    <constraint firstAttribute="width" constant="230" id="sxw-Zp-ozL"/>
+                                </constraints>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" bezelStyle="round" id="mYs-pD-pXF">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                                <connections>
+                                    <outlet property="delegate" destination="-2" id="qG1-e1-tze"/>
+                                </connections>
+                            </textField>
+                            <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="drd-aR-Qjr">
+                                <rect key="frame" x="38" y="480" width="204" height="18"/>
+                                <buttonCell key="cell" type="check" title="Encrypt media streams(SRTP)" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="vCS-s8-mZI">
+                                    <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
+                                    <font key="font" metaFont="system"/>
+                                </buttonCell>
+                                <connections>
+                                    <action selector="toggleEncryptMedia:" target="-2" id="F2n-mU-nfc"/>
+                                </connections>
+                            </button>
+                            <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="xTd-ef-yVL">
+                                <rect key="frame" x="38" y="446" width="261" height="18"/>
+                                <buttonCell key="cell" type="check" title="Enable SDES for key exchange protocol" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="Qk8-tH-a0l">
+                                    <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
+                                    <font key="font" metaFont="system"/>
+                                </buttonCell>
+                                <connections>
+                                    <action selector="toggleEnableSDES:" target="-2" id="xdQ-ai-8dJ"/>
+                                </connections>
+                            </button>
+                            <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="fea-s6-kK4">
+                                <rect key="frame" x="38" y="412" width="247" height="18"/>
+                                <buttonCell key="cell" type="check" title="Fallback on RTP on encryption failure" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="3rM-KT-bNf">
+                                    <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
+                                    <font key="font" metaFont="system"/>
+                                </buttonCell>
+                                <connections>
+                                    <action selector="toggleFallbackEncryptionFailure:" target="-2" id="Tef-Ge-JGE"/>
+                                </connections>
+                            </button>
+                            <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="ILQ-nZ-PzA">
+                                <rect key="frame" x="38" y="378" width="178" height="18"/>
+                                <buttonCell key="cell" type="check" title="Encrypt negotiation (TLS)" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="vZH-42-mUi">
+                                    <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
+                                    <font key="font" metaFont="system"/>
+                                </buttonCell>
+                                <connections>
+                                    <action selector="toggleEncryptNegotiation:" target="-2" id="6yD-Mb-eUE"/>
+                                </connections>
+                            </button>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="7O9-M4-FN7">
+                                <rect key="frame" x="38" y="195" width="132" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="TLS protocol method" id="zBy-cW-KY3">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <popUpButton verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="egE-Ir-0cY">
+                                <rect key="frame" x="186" y="190" width="76" height="26"/>
+                                <popUpButtonCell key="cell" type="push" title="Item 1" bezelStyle="rounded" alignment="left" lineBreakMode="truncatingTail" state="on" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" selectedItem="8bw-iH-XGl" id="dcE-rf-Tm5">
+                                    <behavior key="behavior" lightByBackground="YES" lightByGray="YES"/>
+                                    <font key="font" metaFont="menu"/>
+                                    <menu key="menu" id="vc4-8p-dBO">
+                                        <items>
+                                            <menuItem title="Item 1" state="on" id="8bw-iH-XGl"/>
+                                            <menuItem title="Item 2" id="OEo-C7-vEh"/>
+                                            <menuItem title="Item 3" id="Mho-w1-ZPJ"/>
+                                        </items>
+                                    </menu>
+                                </popUpButtonCell>
+                                <connections>
+                                    <action selector="chooseTlsProtocol:" target="-2" id="ef9-Pv-KoM"/>
+                                </connections>
+                            </popUpButton>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="lvG-6R-CEt">
+                                <rect key="frame" x="38" y="158" width="166" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Outgoing TLS server name" id="8JD-11-wHZ">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField verticalHuggingPriority="750" tag="100" translatesAutoresizingMaskIntoConstraints="NO" id="MPK-W6-hDH">
+                                <rect key="frame" x="222" y="157" width="230" height="20"/>
+                                <constraints>
+                                    <constraint firstAttribute="height" constant="20" id="AFc-JB-CdK"/>
+                                    <constraint firstAttribute="width" constant="230" id="ung-Eu-ulg"/>
+                                </constraints>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" bezelStyle="round" id="Mrt-9v-Uj4">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                                <connections>
+                                    <outlet property="delegate" destination="-2" id="mE4-59-Uha"/>
+                                </connections>
+                            </textField>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="nTo-2p-xKv">
+                                <rect key="frame" x="38" y="121" width="189" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Negotiation timeout (seconds)" id="dtf-uk-n1B">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="RwQ-Zt-6Ms">
+                                <rect key="frame" x="38" y="51" width="251" height="18"/>
+                                <buttonCell key="cell" type="check" title="Verify answer certificates (client side)" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="WsS-1e-Epm">
+                                    <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
+                                    <font key="font" metaFont="system"/>
+                                </buttonCell>
+                                <connections>
+                                    <action selector="toggleVerifyClientCertificate:" target="-2" id="Rp1-tS-ftu"/>
+                                </connections>
+                            </button>
+                            <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Owe-Lu-zR2">
+                                <rect key="frame" x="38" y="17" width="349" height="18"/>
+                                <buttonCell key="cell" type="check" title="Require a certificate for incoming TLS connections" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="JV8-cY-6vR">
+                                    <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
+                                    <font key="font" metaFont="system" size="14"/>
+                                </buttonCell>
+                                <connections>
+                                    <action selector="toggleCertForIncomingConnection:" target="-2" id="Gnd-Ar-hc5"/>
+                                </connections>
+                            </button>
+                            <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="vfQ-wE-ZmD">
+                                <rect key="frame" x="38" y="85" width="268" height="18"/>
+                                <buttonCell key="cell" type="check" title="Verify incoming sertificates (server side)" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="fyT-bU-m54">
+                                    <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
+                                    <font key="font" metaFont="system"/>
+                                </buttonCell>
+                                <connections>
+                                    <action selector="toggleVerifyServerCertificate:" target="-2" id="LC6-WB-b92"/>
+                                </connections>
+                            </button>
+                            <textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="IoY-ZS-7VV">
+                                <rect key="frame" x="245" y="119" width="100" height="20"/>
+                                <constraints>
+                                    <constraint firstAttribute="height" constant="20" id="dUK-le-Goh"/>
+                                    <constraint firstAttribute="width" constant="100" id="ta2-QL-xwf"/>
+                                </constraints>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" bezelStyle="round" id="mEp-p9-tWW">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                                <connections>
+                                    <outlet property="delegate" destination="-2" id="nQi-D9-DOB"/>
+                                </connections>
+                            </textField>
+                            <stepper horizontalHuggingPriority="750" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="RP0-Do-gcb">
+                                <rect key="frame" x="344" y="115" width="19" height="27"/>
+                                <stepperCell key="cell" continuous="YES" alignment="left" maxValue="65535" id="dsa-z0-WJE"/>
+                                <connections>
+                                    <action selector="valueDidChange:" target="-2" id="1oy-K8-jC3"/>
+                                </connections>
+                            </stepper>
+                        </subviews>
+                        <constraints>
+                            <constraint firstItem="IoY-ZS-7VV" firstAttribute="leading" secondItem="nTo-2p-xKv" secondAttribute="trailing" constant="20" id="2B0-hD-gk7"/>
+                            <constraint firstItem="egE-Ir-0cY" firstAttribute="leading" secondItem="7O9-M4-FN7" secondAttribute="trailing" constant="20" id="78x-7W-uIY"/>
+                            <constraint firstItem="ILQ-nZ-PzA" firstAttribute="leading" secondItem="drd-aR-Qjr" secondAttribute="leading" id="7oI-hm-7hK"/>
+                            <constraint firstItem="UoT-I6-sec" firstAttribute="top" secondItem="O9m-sm-3kA" secondAttribute="top" constant="20" id="9Ja-CU-smm"/>
+                            <constraint firstItem="t0i-3W-NYK" firstAttribute="top" secondItem="lQN-0T-lNl" secondAttribute="bottom" constant="20" id="9vD-vD-qxX"/>
+                            <constraint firstItem="IoY-ZS-7VV" firstAttribute="centerY" secondItem="nTo-2p-xKv" secondAttribute="centerY" id="APn-tb-WyB"/>
+                            <constraint firstItem="fea-s6-kK4" firstAttribute="leading" secondItem="drd-aR-Qjr" secondAttribute="leading" id="DFP-Xj-pl2"/>
+                            <constraint firstItem="vfQ-wE-ZmD" firstAttribute="top" secondItem="nTo-2p-xKv" secondAttribute="bottom" constant="20" id="Gvr-Hj-yd2"/>
+                            <constraint firstItem="Gr6-rE-TTP" firstAttribute="top" secondItem="ILQ-nZ-PzA" secondAttribute="bottom" constant="20" id="I50-SW-Vg3"/>
+                            <constraint firstItem="vfQ-wE-ZmD" firstAttribute="leading" secondItem="nTo-2p-xKv" secondAttribute="leading" id="JyJ-DG-COE"/>
+                            <constraint firstItem="RwQ-Zt-6Ms" firstAttribute="leading" secondItem="nTo-2p-xKv" secondAttribute="leading" id="JzP-4p-ZUk"/>
+                            <constraint firstItem="7O9-M4-FN7" firstAttribute="leading" secondItem="t0i-3W-NYK" secondAttribute="leading" id="LFT-5Q-3gK"/>
+                            <constraint firstItem="Rk8-O0-ciB" firstAttribute="leading" secondItem="D12-bb-8ME" secondAttribute="trailing" constant="20" id="OYa-Ol-CCJ"/>
+                            <constraint firstItem="MPK-W6-hDH" firstAttribute="leading" secondItem="P0o-HT-W0W" secondAttribute="leading" id="PcC-Re-fMr"/>
+                            <constraint firstItem="t0i-3W-NYK" firstAttribute="leading" secondItem="Gr6-rE-TTP" secondAttribute="leading" id="Qlb-nD-mac"/>
+                            <constraint firstItem="xTd-ef-yVL" firstAttribute="top" secondItem="drd-aR-Qjr" secondAttribute="bottom" constant="20" id="QnK-Zw-df6"/>
+                            <constraint firstItem="egE-Ir-0cY" firstAttribute="centerY" secondItem="7O9-M4-FN7" secondAttribute="centerY" id="SJb-3k-dwE"/>
+                            <constraint firstItem="rkG-dN-0A3" firstAttribute="centerY" secondItem="Gr6-rE-TTP" secondAttribute="centerY" id="Sa6-jM-yWz"/>
+                            <constraint firstItem="UoT-I6-sec" firstAttribute="leading" secondItem="O9m-sm-3kA" secondAttribute="leading" constant="20" id="Ste-fM-0Jo"/>
+                            <constraint firstItem="ILQ-nZ-PzA" firstAttribute="top" secondItem="fea-s6-kK4" secondAttribute="bottom" constant="20" id="W6a-Dv-mOr"/>
+                            <constraint firstItem="lQN-0T-lNl" firstAttribute="leading" secondItem="Gr6-rE-TTP" secondAttribute="leading" id="anB-FF-hqF"/>
+                            <constraint firstItem="P0o-HT-W0W" firstAttribute="bottom" secondItem="t0i-3W-NYK" secondAttribute="bottom" id="csK-ej-IAb"/>
+                            <constraint firstItem="MPK-W6-hDH" firstAttribute="leading" secondItem="lvG-6R-CEt" secondAttribute="trailing" constant="20" id="e5h-t1-BKg"/>
+                            <constraint firstItem="RP0-Do-gcb" firstAttribute="leading" secondItem="IoY-ZS-7VV" secondAttribute="trailing" constant="2" id="edS-O2-fSD"/>
+                            <constraint firstItem="9Yn-Ph-hn6" firstAttribute="leading" secondItem="lQN-0T-lNl" secondAttribute="trailing" constant="20" id="egV-ei-3nH"/>
+                            <constraint firstItem="Owe-Lu-zR2" firstAttribute="leading" secondItem="nTo-2p-xKv" secondAttribute="leading" id="euF-4T-5zI"/>
+                            <constraint firstItem="Gr6-rE-TTP" firstAttribute="leading" secondItem="O9m-sm-3kA" secondAttribute="leading" constant="40" id="ezO-E6-2JY"/>
+                            <constraint firstItem="nTo-2p-xKv" firstAttribute="top" secondItem="lvG-6R-CEt" secondAttribute="bottom" constant="20" id="fyY-xP-ivf"/>
+                            <constraint firstItem="lvG-6R-CEt" firstAttribute="leading" secondItem="7O9-M4-FN7" secondAttribute="leading" id="gLd-En-NCG"/>
+                            <constraint firstItem="MPK-W6-hDH" firstAttribute="centerY" secondItem="lvG-6R-CEt" secondAttribute="centerY" id="gQC-yI-aVI"/>
+                            <constraint firstItem="fea-s6-kK4" firstAttribute="top" secondItem="xTd-ef-yVL" secondAttribute="bottom" constant="20" id="ga1-wZ-nvi"/>
+                            <constraint firstItem="rkG-dN-0A3" firstAttribute="leading" secondItem="Gr6-rE-TTP" secondAttribute="trailing" constant="20" id="iHA-hc-WjV"/>
+                            <constraint firstItem="Gr6-rE-TTP" firstAttribute="leading" secondItem="drd-aR-Qjr" secondAttribute="leading" id="igO-VB-dn9"/>
+                            <constraint firstItem="7O9-M4-FN7" firstAttribute="top" secondItem="t0i-3W-NYK" secondAttribute="bottom" constant="20" id="jWf-6L-Z7G"/>
+                            <constraint firstItem="nTo-2p-xKv" firstAttribute="leading" secondItem="lvG-6R-CEt" secondAttribute="leading" id="jkZ-mh-w0W"/>
+                            <constraint firstItem="Owe-Lu-zR2" firstAttribute="top" secondItem="RwQ-Zt-6Ms" secondAttribute="bottom" constant="20" id="jn4-Rq-l7T"/>
+                            <constraint firstItem="xTd-ef-yVL" firstAttribute="leading" secondItem="drd-aR-Qjr" secondAttribute="leading" id="kEK-4w-bhX"/>
+                            <constraint firstItem="9Yn-Ph-hn6" firstAttribute="baseline" secondItem="lQN-0T-lNl" secondAttribute="baseline" id="oSk-LB-ogc"/>
+                            <constraint firstItem="Rk8-O0-ciB" firstAttribute="centerY" secondItem="D12-bb-8ME" secondAttribute="centerY" id="ovZ-vo-YCs"/>
+                            <constraint firstItem="lQN-0T-lNl" firstAttribute="top" secondItem="D12-bb-8ME" secondAttribute="bottom" constant="20" id="pcR-sS-xDc"/>
+                            <constraint firstItem="drd-aR-Qjr" firstAttribute="top" secondItem="UoT-I6-sec" secondAttribute="bottom" constant="20" id="tgL-il-uVb"/>
+                            <constraint firstItem="RP0-Do-gcb" firstAttribute="centerY" secondItem="IoY-ZS-7VV" secondAttribute="centerY" id="txu-bi-0nu"/>
+                            <constraint firstItem="D12-bb-8ME" firstAttribute="top" secondItem="Gr6-rE-TTP" secondAttribute="bottom" constant="20" id="vhG-fL-Q4R"/>
+                            <constraint firstItem="D12-bb-8ME" firstAttribute="leading" secondItem="Gr6-rE-TTP" secondAttribute="leading" id="xBx-jL-qPr"/>
+                            <constraint firstItem="lvG-6R-CEt" firstAttribute="top" secondItem="7O9-M4-FN7" secondAttribute="bottom" constant="20" id="xG6-g2-QCg"/>
+                            <constraint firstItem="RwQ-Zt-6Ms" firstAttribute="top" secondItem="vfQ-wE-ZmD" secondAttribute="bottom" constant="20" id="xMt-fn-P7c"/>
+                        </constraints>
+                    </view>
+                    <constraints>
+                        <constraint firstAttribute="bottom" secondItem="Owe-Lu-zR2" secondAttribute="bottom" constant="20" id="jNF-F2-EkV"/>
+                    </constraints>
+                    <color key="borderColor" name="controlHighlightColor" catalog="System" colorSpace="catalog"/>
+                    <color key="fillColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                </box>
+                <box boxType="custom" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="ekM-Cg-DEo">
+                    <rect key="frame" x="0.0" y="844" width="620" height="419"/>
+                    <view key="contentView" id="YKw-bA-xWM">
+                        <rect key="frame" x="1" y="1" width="618" height="417"/>
+                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                        <subviews>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Oj9-TS-zgt">
+                                <rect key="frame" x="18" y="380" width="84" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Connectivity" id="vpo-fl-9TS">
+                                    <font key="font" metaFont="systemSemibold" size="13"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="O8g-Jx-fcS">
+                                <rect key="frame" x="38" y="201" width="102" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="(TURN) address" id="aYs-wh-Hpr">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="XUh-XC-qcd">
+                                <rect key="frame" x="38" y="164" width="113" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="(TURN) username" id="rMN-Wf-tmp">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="3ii-Pr-gnu">
+                                <rect key="frame" x="38" y="127" width="112" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="(TURN) password" id="xjL-Wb-7VN">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="exC-td-mA0">
+                                <rect key="frame" x="38" y="90" width="87" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="(TURN) realm" id="6eH-la-JbF">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="T3i-ea-2yv">
+                                <rect key="frame" x="169" y="90" width="230" height="20"/>
+                                <constraints>
+                                    <constraint firstAttribute="height" constant="20" id="0dd-c3-9dq"/>
+                                    <constraint firstAttribute="width" constant="230" id="qY5-es-QVj"/>
+                                </constraints>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" bezelStyle="round" id="KcQ-HO-vOe">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="vN2-vR-Md1">
+                                <rect key="frame" x="38" y="270" width="56" height="18"/>
+                                <buttonCell key="cell" type="check" title="UPnP" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="x93-zk-hAW">
+                                    <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
+                                    <font key="font" metaFont="system"/>
+                                </buttonCell>
+                                <connections>
+                                    <action selector="togleUPnP:" target="-2" id="bO0-oN-7dJ"/>
+                                </connections>
+                            </button>
+                            <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="WFm-Xg-Rlu">
+                                <rect key="frame" x="38" y="236" width="86" height="18"/>
+                                <buttonCell key="cell" type="check" title="Use TURN" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="Gwi-Mp-NpZ">
+                                    <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
+                                    <font key="font" metaFont="system"/>
+                                </buttonCell>
+                                <connections>
+                                    <action selector="useTURN:" target="-2" id="a1D-ho-D40"/>
+                                </connections>
+                            </button>
+                            <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="dTT-ff-d4E">
+                                <rect key="frame" x="38" y="54" width="85" height="18"/>
+                                <buttonCell key="cell" type="check" title="Use STUN" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="HRM-FR-1sH">
+                                    <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
+                                    <font key="font" metaFont="system"/>
+                                </buttonCell>
+                                <connections>
+                                    <action selector="useSTUN:" target="-2" id="cp3-Cv-TkP"/>
+                                </connections>
+                            </button>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="vnG-dH-RtH">
+                                <rect key="frame" x="38" y="19" width="102" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="(STUN) address" id="HYt-sW-yd0">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Nk9-oD-oHY">
+                                <rect key="frame" x="169" y="201" width="230" height="20"/>
+                                <constraints>
+                                    <constraint firstAttribute="width" constant="230" id="pUr-qF-BHm"/>
+                                    <constraint firstAttribute="height" constant="20" id="r6M-ew-Ym6"/>
+                                </constraints>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" bezelStyle="round" id="5g0-Nd-Ptp">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="xgw-BA-zIA">
+                                <rect key="frame" x="169" y="164" width="230" height="20"/>
+                                <constraints>
+                                    <constraint firstAttribute="height" constant="20" id="C9S-xB-aDh"/>
+                                    <constraint firstAttribute="width" constant="230" id="CBO-LP-BTf"/>
+                                </constraints>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" bezelStyle="round" id="laV-DS-wae">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="H4h-QV-R15" customClass="NSSecureTextField">
+                                <rect key="frame" x="169" y="127" width="230" height="20"/>
+                                <constraints>
+                                    <constraint firstAttribute="height" constant="20" id="j5V-a2-42t"/>
+                                    <constraint firstAttribute="width" constant="230" id="pWM-vW-Eo3"/>
+                                </constraints>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" bezelStyle="round" id="CQN-CP-bJS">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="5V3-AP-UfC">
+                                <rect key="frame" x="169" y="19" width="230" height="20"/>
+                                <constraints>
+                                    <constraint firstAttribute="width" constant="230" id="8k9-Me-slR"/>
+                                    <constraint firstAttribute="height" constant="20" id="eI3-Zo-Up6"/>
+                                </constraints>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" bezelStyle="round" id="mWt-yj-FVC">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="GCT-Xx-9NL">
+                                <rect key="frame" x="38" y="306" width="113" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Network interface" id="fjH-ej-gEr">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="GV4-YC-gNc">
+                                <rect key="frame" x="38" y="343" width="232" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Registration expire timeout (seconds)" id="2rB-Bv-c9U">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="VBr-DO-zPN">
+                                <rect key="frame" x="288" y="343" width="100" height="20"/>
+                                <constraints>
+                                    <constraint firstAttribute="width" constant="100" id="BBo-ig-gGZ"/>
+                                    <constraint firstAttribute="height" constant="20" id="mBp-iJ-XIC"/>
+                                </constraints>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" bezelStyle="round" id="6KZ-JC-XX7">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                                <connections>
+                                    <outlet property="delegate" destination="-2" id="QcA-Hb-PIM"/>
+                                </connections>
+                            </textField>
+                            <textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="P42-dO-VBW">
+                                <rect key="frame" x="169" y="306" width="100" height="20"/>
+                                <constraints>
+                                    <constraint firstAttribute="height" constant="20" id="4Gj-hr-YnN"/>
+                                    <constraint firstAttribute="width" constant="100" id="F2g-h3-pXo"/>
+                                </constraints>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" bezelStyle="round" id="jre-v9-By2">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                                <connections>
+                                    <outlet property="delegate" destination="-2" id="9oo-hS-Ktf"/>
+                                </connections>
+                            </textField>
+                            <stepper horizontalHuggingPriority="750" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="TaV-85-mCI">
+                                <rect key="frame" x="387" y="340" width="19" height="27"/>
+                                <stepperCell key="cell" continuous="YES" alignment="left" maxValue="65535" id="fow-yQ-gYK"/>
+                                <connections>
+                                    <action selector="valueDidChange:" target="-2" id="S8O-9h-D05"/>
+                                </connections>
+                            </stepper>
+                            <stepper horizontalHuggingPriority="750" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="MYL-ee-crQ">
+                                <rect key="frame" x="268" y="303" width="19" height="27"/>
+                                <stepperCell key="cell" continuous="YES" alignment="left" maxValue="65535" id="n6p-9C-ftc"/>
+                                <connections>
+                                    <action selector="valueDidChange:" target="-2" id="mME-Gr-iMX"/>
+                                </connections>
+                            </stepper>
+                        </subviews>
+                        <constraints>
+                            <constraint firstItem="Oj9-TS-zgt" firstAttribute="top" secondItem="YKw-bA-xWM" secondAttribute="top" constant="20" id="0FQ-Sl-ECI"/>
+                            <constraint firstItem="H4h-QV-R15" firstAttribute="leading" secondItem="Nk9-oD-oHY" secondAttribute="leading" id="1DB-on-hLO"/>
+                            <constraint firstItem="GCT-Xx-9NL" firstAttribute="top" secondItem="GV4-YC-gNc" secondAttribute="bottom" constant="20" id="3Ws-Qk-uOo"/>
+                            <constraint firstItem="GCT-Xx-9NL" firstAttribute="leading" secondItem="GV4-YC-gNc" secondAttribute="leading" id="4Ah-ZL-Gwc"/>
+                            <constraint firstItem="Oj9-TS-zgt" firstAttribute="leading" secondItem="YKw-bA-xWM" secondAttribute="leading" constant="20" id="6vk-yi-KHa"/>
+                            <constraint firstItem="GV4-YC-gNc" firstAttribute="top" secondItem="Oj9-TS-zgt" secondAttribute="bottom" constant="20" id="9wA-HH-hdk"/>
+                            <constraint firstItem="vnG-dH-RtH" firstAttribute="top" secondItem="dTT-ff-d4E" secondAttribute="bottom" constant="20" id="Aa2-Yn-aLV"/>
+                            <constraint firstItem="TaV-85-mCI" firstAttribute="centerY" secondItem="VBr-DO-zPN" secondAttribute="centerY" id="CAt-G3-Icb"/>
+                            <constraint firstItem="TaV-85-mCI" firstAttribute="leading" secondItem="VBr-DO-zPN" secondAttribute="trailing" constant="2" id="CBM-ut-iOS"/>
+                            <constraint firstItem="WFm-Xg-Rlu" firstAttribute="leading" secondItem="vN2-vR-Md1" secondAttribute="leading" id="COT-rp-ZQ1"/>
+                            <constraint firstItem="exC-td-mA0" firstAttribute="leading" secondItem="O8g-Jx-fcS" secondAttribute="leading" id="Cil-Z4-HBi"/>
+                            <constraint firstItem="vnG-dH-RtH" firstAttribute="leading" secondItem="exC-td-mA0" secondAttribute="leading" id="Dcg-th-qoc"/>
+                            <constraint firstItem="T3i-ea-2yv" firstAttribute="leading" secondItem="Nk9-oD-oHY" secondAttribute="leading" id="EbQ-GF-qF4"/>
+                            <constraint firstItem="vN2-vR-Md1" firstAttribute="top" secondItem="GCT-Xx-9NL" secondAttribute="bottom" constant="20" id="EkY-t5-mmd"/>
+                            <constraint firstItem="3ii-Pr-gnu" firstAttribute="leading" secondItem="vN2-vR-Md1" secondAttribute="leading" id="HKD-l9-9o3"/>
+                            <constraint firstItem="MYL-ee-crQ" firstAttribute="centerY" secondItem="P42-dO-VBW" secondAttribute="centerY" id="Hiq-jq-tQA"/>
+                            <constraint firstItem="XUh-XC-qcd" firstAttribute="leading" secondItem="O8g-Jx-fcS" secondAttribute="leading" id="Kar-31-QsF"/>
+                            <constraint firstItem="vN2-vR-Md1" firstAttribute="leading" secondItem="GV4-YC-gNc" secondAttribute="leading" id="MFv-4w-78b"/>
+                            <constraint firstItem="5V3-AP-UfC" firstAttribute="leading" secondItem="Nk9-oD-oHY" secondAttribute="leading" id="OBW-Tm-QiC"/>
+                            <constraint firstItem="XUh-XC-qcd" firstAttribute="top" secondItem="O8g-Jx-fcS" secondAttribute="bottom" constant="20" id="OXI-FZ-Is9"/>
+                            <constraint firstItem="Nk9-oD-oHY" firstAttribute="bottom" secondItem="O8g-Jx-fcS" secondAttribute="bottom" id="Odc-OS-QHL"/>
+                            <constraint firstItem="xgw-BA-zIA" firstAttribute="bottom" secondItem="XUh-XC-qcd" secondAttribute="bottom" id="Q1G-Ng-OeB"/>
+                            <constraint firstItem="dTT-ff-d4E" firstAttribute="leading" secondItem="exC-td-mA0" secondAttribute="leading" id="Rgt-rI-CcQ"/>
+                            <constraint firstItem="O8g-Jx-fcS" firstAttribute="top" secondItem="WFm-Xg-Rlu" secondAttribute="bottom" constant="20" id="SvV-Ol-zkr"/>
+                            <constraint firstItem="exC-td-mA0" firstAttribute="leading" secondItem="vN2-vR-Md1" secondAttribute="leading" id="TfC-Nf-ChR"/>
+                            <constraint firstItem="3ii-Pr-gnu" firstAttribute="top" secondItem="XUh-XC-qcd" secondAttribute="bottom" constant="20" id="V1C-fD-o8q"/>
+                            <constraint firstItem="dTT-ff-d4E" firstAttribute="top" secondItem="exC-td-mA0" secondAttribute="bottom" constant="20" id="VhZ-xg-kbP"/>
+                            <constraint firstItem="vN2-vR-Md1" firstAttribute="leading" secondItem="YKw-bA-xWM" secondAttribute="leading" constant="40" id="cer-NJ-XWC"/>
+                            <constraint firstItem="O8g-Jx-fcS" firstAttribute="leading" secondItem="YKw-bA-xWM" secondAttribute="leading" constant="40" id="cts-Lr-fEE"/>
+                            <constraint firstItem="3ii-Pr-gnu" firstAttribute="leading" secondItem="O8g-Jx-fcS" secondAttribute="leading" id="fDD-en-8v9"/>
+                            <constraint firstItem="T3i-ea-2yv" firstAttribute="bottom" secondItem="exC-td-mA0" secondAttribute="bottom" id="jhM-ze-yfk"/>
+                            <constraint firstItem="XUh-XC-qcd" firstAttribute="leading" secondItem="vN2-vR-Md1" secondAttribute="leading" id="kGB-9C-Qb4"/>
+                            <constraint firstItem="H4h-QV-R15" firstAttribute="bottom" secondItem="3ii-Pr-gnu" secondAttribute="bottom" id="kLM-v0-ERy"/>
+                            <constraint firstItem="O8g-Jx-fcS" firstAttribute="leading" secondItem="vN2-vR-Md1" secondAttribute="leading" id="kUE-xV-1A7"/>
+                            <constraint firstItem="MYL-ee-crQ" firstAttribute="leading" secondItem="P42-dO-VBW" secondAttribute="trailing" constant="2" id="llA-I0-yWU"/>
+                            <constraint firstItem="xgw-BA-zIA" firstAttribute="leading" secondItem="Nk9-oD-oHY" secondAttribute="leading" id="obh-uZ-kpa"/>
+                            <constraint firstItem="5V3-AP-UfC" firstAttribute="bottom" secondItem="vnG-dH-RtH" secondAttribute="bottom" id="pQh-Rf-a77"/>
+                            <constraint firstItem="WFm-Xg-Rlu" firstAttribute="top" secondItem="vN2-vR-Md1" secondAttribute="bottom" constant="20" id="q3q-Td-bya"/>
+                            <constraint firstItem="exC-td-mA0" firstAttribute="top" secondItem="3ii-Pr-gnu" secondAttribute="bottom" constant="20" id="stQ-RD-uJl"/>
+                            <constraint firstItem="T3i-ea-2yv" firstAttribute="bottom" secondItem="exC-td-mA0" secondAttribute="bottom" id="t0P-DL-y8k"/>
+                            <constraint firstItem="P42-dO-VBW" firstAttribute="leading" secondItem="GCT-Xx-9NL" secondAttribute="trailing" constant="20" id="tQU-L9-4VO"/>
+                            <constraint firstItem="P42-dO-VBW" firstAttribute="bottom" secondItem="GCT-Xx-9NL" secondAttribute="bottom" id="w7e-vf-yxR"/>
+                            <constraint firstItem="VBr-DO-zPN" firstAttribute="leading" secondItem="GV4-YC-gNc" secondAttribute="trailing" constant="20" id="wsI-of-IvK"/>
+                            <constraint firstItem="xgw-BA-zIA" firstAttribute="leading" secondItem="XUh-XC-qcd" secondAttribute="trailing" constant="20" id="xIy-uG-BD7"/>
+                            <constraint firstItem="VBr-DO-zPN" firstAttribute="bottom" secondItem="GV4-YC-gNc" secondAttribute="bottom" id="yYQ-1q-PeE"/>
+                        </constraints>
+                    </view>
+                    <constraints>
+                        <constraint firstAttribute="bottom" secondItem="vnG-dH-RtH" secondAttribute="bottom" constant="20" id="xeK-Nm-M8u"/>
+                    </constraints>
+                    <color key="borderColor" name="controlHighlightColor" catalog="System" colorSpace="catalog"/>
+                    <color key="fillColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                </box>
+                <box boxType="custom" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="A31-3Y-z4R">
+                    <rect key="frame" x="0.0" y="657" width="620" height="167"/>
+                    <view key="contentView" id="dWA-TA-MdB">
+                        <rect key="frame" x="1" y="1" width="618" height="165"/>
+                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                        <subviews>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="L1w-Hb-6tO">
+                                <rect key="frame" x="18" y="128" width="121" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Published address" id="ELr-A7-mGE">
+                                    <font key="font" metaFont="systemSemibold" size="13"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="UJW-6B-wXE">
+                                <rect key="frame" x="38" y="57" width="54" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Address" id="Xxr-gl-ukE">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="g8v-zC-zCV">
+                                <rect key="frame" x="38" y="20" width="30" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Port" id="9p9-GR-XKU">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Toa-eV-Us2">
+                                <rect key="frame" x="86" y="20" width="100" height="20"/>
+                                <constraints>
+                                    <constraint firstAttribute="width" constant="100" id="Tba-6E-Cud"/>
+                                    <constraint firstAttribute="height" constant="20" id="qnr-N6-aL4"/>
+                                </constraints>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" bezelStyle="round" id="CeS-VR-vU3">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                                <connections>
+                                    <outlet property="delegate" destination="-2" id="MV3-fY-w65"/>
+                                </connections>
+                            </textField>
+                            <stepper horizontalHuggingPriority="750" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="fXf-Az-A7P">
+                                <rect key="frame" x="185" y="17" width="19" height="27"/>
+                                <stepperCell key="cell" continuous="YES" alignment="left" maxValue="65535" id="7RD-Re-qoB"/>
+                                <connections>
+                                    <action selector="valueDidChange:" target="-2" id="kzx-pt-er8"/>
+                                </connections>
+                            </stepper>
+                            <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="8Y1-hZ-pq5">
+                                <rect key="frame" x="38" y="92" width="201" height="18"/>
+                                <buttonCell key="cell" type="check" title="Use custom address and port" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="nuq-Wl-sfd">
+                                    <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
+                                    <font key="font" metaFont="system"/>
+                                </buttonCell>
+                                <connections>
+                                    <action selector="enableCustomAddress:" target="-2" id="0a1-Bc-r2A"/>
+                                </connections>
+                            </button>
+                            <textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Lhy-S9-aIO">
+                                <rect key="frame" x="110" y="57" width="230" height="20"/>
+                                <constraints>
+                                    <constraint firstAttribute="width" constant="230" id="I6L-r9-FRi"/>
+                                    <constraint firstAttribute="height" constant="20" id="bhg-MK-o48"/>
+                                </constraints>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" bezelStyle="round" id="m0F-fc-Ath">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                                <connections>
+                                    <outlet property="delegate" destination="-2" id="psb-T1-xC6"/>
+                                </connections>
+                            </textField>
+                        </subviews>
+                        <constraints>
+                            <constraint firstItem="g8v-zC-zCV" firstAttribute="leading" secondItem="8Y1-hZ-pq5" secondAttribute="leading" id="1wM-43-joF"/>
+                            <constraint firstItem="8Y1-hZ-pq5" firstAttribute="leading" secondItem="dWA-TA-MdB" secondAttribute="leading" constant="40" id="3yU-aN-xAF"/>
+                            <constraint firstItem="Toa-eV-Us2" firstAttribute="leading" secondItem="g8v-zC-zCV" secondAttribute="trailing" constant="20" id="9Nj-K7-VM5"/>
+                            <constraint firstItem="fXf-Az-A7P" firstAttribute="centerY" secondItem="Toa-eV-Us2" secondAttribute="centerY" id="AV2-sk-Up7"/>
+                            <constraint firstItem="L1w-Hb-6tO" firstAttribute="leading" secondItem="dWA-TA-MdB" secondAttribute="leading" constant="20" id="GaH-mv-Ui3"/>
+                            <constraint firstItem="Lhy-S9-aIO" firstAttribute="leading" secondItem="UJW-6B-wXE" secondAttribute="trailing" constant="20" id="GdC-Dx-Wwf"/>
+                            <constraint firstItem="Toa-eV-Us2" firstAttribute="bottom" secondItem="g8v-zC-zCV" secondAttribute="bottom" id="IHc-O7-iDF"/>
+                            <constraint firstItem="L1w-Hb-6tO" firstAttribute="top" secondItem="dWA-TA-MdB" secondAttribute="top" constant="20" id="MEk-vW-bQE"/>
+                            <constraint firstItem="g8v-zC-zCV" firstAttribute="top" secondItem="UJW-6B-wXE" secondAttribute="bottom" constant="20" id="SM9-4B-Ee2"/>
+                            <constraint firstItem="UJW-6B-wXE" firstAttribute="leading" secondItem="8Y1-hZ-pq5" secondAttribute="leading" id="XBo-mk-yqz"/>
+                            <constraint firstItem="UJW-6B-wXE" firstAttribute="leading" secondItem="dWA-TA-MdB" secondAttribute="leading" constant="40" id="Zl1-yk-Epc"/>
+                            <constraint firstAttribute="bottom" secondItem="g8v-zC-zCV" secondAttribute="bottom" constant="20" id="i3M-uQ-GaN"/>
+                            <constraint firstItem="Lhy-S9-aIO" firstAttribute="bottom" secondItem="UJW-6B-wXE" secondAttribute="bottom" id="kiL-qG-JXW"/>
+                            <constraint firstItem="8Y1-hZ-pq5" firstAttribute="top" secondItem="L1w-Hb-6tO" secondAttribute="bottom" constant="20" id="lxC-ix-Fbb"/>
+                            <constraint firstItem="fXf-Az-A7P" firstAttribute="leading" secondItem="Toa-eV-Us2" secondAttribute="trailing" constant="2" id="pbP-UY-5fw"/>
+                            <constraint firstItem="UJW-6B-wXE" firstAttribute="top" secondItem="8Y1-hZ-pq5" secondAttribute="bottom" constant="20" id="yff-Fx-MSk"/>
+                        </constraints>
+                    </view>
+                    <color key="borderColor" name="controlHighlightColor" catalog="System" colorSpace="catalog"/>
+                    <color key="fillColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                </box>
+                <box boxType="custom" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="cwV-lc-jju">
+                    <rect key="frame" x="0.0" y="274" width="300" height="363"/>
+                    <view key="contentView" id="IbY-sT-yW4">
+                        <rect key="frame" x="1" y="1" width="298" height="361"/>
+                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                        <subviews>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="osV-5h-omr">
+                                <rect key="frame" x="104" y="324" width="90" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Audio codecs" id="Vke-hs-iXz">
+                                    <font key="font" metaFont="systemSemibold" size="13"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <scrollView autohidesScrollers="YES" horizontalLineScroll="57" horizontalPageScroll="10" verticalLineScroll="57" verticalPageScroll="10" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="TNe-in-0Y8">
+                                <rect key="frame" x="20" y="70" width="258" height="234"/>
+                                <clipView key="contentView" id="hf6-xl-LUZ">
+                                    <rect key="frame" x="1" y="1" width="256" height="232"/>
+                                    <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                                    <subviews>
+                                        <tableView verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" columnSelection="YES" multipleSelection="NO" autosaveColumns="NO" rowHeight="55" rowSizeStyle="automatic" viewBased="YES" id="2Rz-hA-d6u">
+                                            <rect key="frame" x="0.0" y="0.0" width="256" height="232"/>
+                                            <autoresizingMask key="autoresizingMask"/>
+                                            <size key="intercellSpacing" width="3" height="2"/>
+                                            <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                            <color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/>
+                                            <tableColumns>
+                                                <tableColumn identifier="" width="253" minWidth="40" maxWidth="1000" id="uKm-dm-acu">
+                                                    <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border">
+                                                        <font key="font" metaFont="smallSystem"/>
+                                                        <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
+                                                        <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
+                                                    </tableHeaderCell>
+                                                    <textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" title="Text Cell" id="RIj-rT-gSd">
+                                                        <font key="font" metaFont="system"/>
+                                                        <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                                        <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                                    </textFieldCell>
+                                                    <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/>
+                                                    <prototypeCellViews>
+                                                        <tableCellView identifier="TableCellAudioCodecItem" id="ulQ-P6-xcE">
+                                                            <rect key="frame" x="1" y="1" width="253" height="50"/>
+                                                            <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                                                            <subviews>
+                                                                <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" tag="1" translatesAutoresizingMaskIntoConstraints="NO" id="5gU-T9-soP">
+                                                                    <rect key="frame" x="8" y="23" width="4" height="17"/>
+                                                                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" id="w28-hI-XpH">
+                                                                        <font key="font" metaFont="system"/>
+                                                                        <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                                                        <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                                                    </textFieldCell>
+                                                                </textField>
+                                                                <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" tag="2" translatesAutoresizingMaskIntoConstraints="NO" id="lCy-rx-Hyp">
+                                                                    <rect key="frame" x="8" y="7" width="4" height="16"/>
+                                                                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" id="Cuh-q7-eh4">
+                                                                        <font key="font" metaFont="systemLight" size="12"/>
+                                                                        <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                                                        <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                                                    </textFieldCell>
+                                                                </textField>
+                                                                <button verticalHuggingPriority="750" tag="3" translatesAutoresizingMaskIntoConstraints="NO" id="c3n-Ly-MJo">
+                                                                    <rect key="frame" x="223" y="5" width="22" height="18"/>
+                                                                    <buttonCell key="cell" type="check" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="ZwY-sj-Dle">
+                                                                        <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
+                                                                        <font key="font" metaFont="system"/>
+                                                                    </buttonCell>
+                                                                </button>
+                                                            </subviews>
+                                                            <constraints>
+                                                                <constraint firstItem="lCy-rx-Hyp" firstAttribute="top" secondItem="5gU-T9-soP" secondAttribute="bottom" id="Jmm-4A-bgx"/>
+                                                                <constraint firstItem="5gU-T9-soP" firstAttribute="top" secondItem="ulQ-P6-xcE" secondAttribute="top" constant="10" id="L8b-Cx-MnC"/>
+                                                                <constraint firstItem="lCy-rx-Hyp" firstAttribute="leading" secondItem="ulQ-P6-xcE" secondAttribute="leading" constant="10" id="UTb-UD-bL0"/>
+                                                                <constraint firstItem="5gU-T9-soP" firstAttribute="leading" secondItem="ulQ-P6-xcE" secondAttribute="leading" constant="10" id="fdO-uM-Bb7"/>
+                                                                <constraint firstAttribute="trailing" secondItem="c3n-Ly-MJo" secondAttribute="trailing" constant="10" id="l0P-pa-1dG"/>
+                                                                <constraint firstItem="c3n-Ly-MJo" firstAttribute="bottom" secondItem="lCy-rx-Hyp" secondAttribute="bottom" id="mlJ-HI-emi"/>
+                                                            </constraints>
+                                                        </tableCellView>
+                                                        <customView identifier="HoverRowView" id="KlT-ey-0Jg" customClass="HoverTableRowView">
+                                                            <rect key="frame" x="1" y="53" width="253" height="55"/>
+                                                            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
+                                                        </customView>
+                                                    </prototypeCellViews>
+                                                </tableColumn>
+                                            </tableColumns>
+                                        </tableView>
+                                    </subviews>
+                                </clipView>
+                                <constraints>
+                                    <constraint firstAttribute="height" constant="234" id="0p8-WN-wM4"/>
+                                </constraints>
+                                <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="YES" id="Ba0-vO-MMF">
+                                    <rect key="frame" x="1" y="217" width="236" height="16"/>
+                                    <autoresizingMask key="autoresizingMask"/>
+                                </scroller>
+                                <scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="NO" id="0ta-9B-BZm">
+                                    <rect key="frame" x="224" y="17" width="15" height="102"/>
+                                    <autoresizingMask key="autoresizingMask"/>
+                                </scroller>
+                            </scrollView>
+                            <button translatesAutoresizingMaskIntoConstraints="NO" id="MNL-tv-RBX">
+                                <rect key="frame" x="20" y="20" width="30" height="30"/>
+                                <constraints>
+                                    <constraint firstAttribute="width" constant="30" id="pyQ-Qn-rkP"/>
+                                    <constraint firstAttribute="height" constant="30" id="vk5-nv-0PY"/>
+                                </constraints>
+                                <buttonCell key="cell" type="square" bezelStyle="shadowlessSquare" image="NSTouchBarGoDownTemplate" imagePosition="only" alignment="center" imageScaling="proportionallyUpOrDown" inset="2" id="sYW-gh-qdL">
+                                    <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                                    <font key="font" metaFont="system"/>
+                                </buttonCell>
+                            </button>
+                            <button translatesAutoresizingMaskIntoConstraints="NO" id="1kN-Si-ACF">
+                                <rect key="frame" x="70" y="20" width="30" height="30"/>
+                                <constraints>
+                                    <constraint firstAttribute="height" constant="30" id="DC1-9G-W9c"/>
+                                    <constraint firstAttribute="width" constant="30" id="rlO-na-7HT"/>
+                                </constraints>
+                                <buttonCell key="cell" type="square" bezelStyle="shadowlessSquare" image="NSTouchBarGoUpTemplate" imagePosition="only" alignment="center" imageScaling="proportionallyUpOrDown" inset="2" id="lG9-zR-WGP">
+                                    <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                                    <font key="font" metaFont="system"/>
+                                </buttonCell>
+                                <connections>
+                                    <action selector="moveAudioCodecUp:" target="-2" id="HPb-pW-bVT"/>
+                                </connections>
+                            </button>
+                        </subviews>
+                        <constraints>
+                            <constraint firstItem="TNe-in-0Y8" firstAttribute="leading" secondItem="IbY-sT-yW4" secondAttribute="leading" constant="20" id="5i0-Do-O8P"/>
+                            <constraint firstAttribute="bottom" secondItem="MNL-tv-RBX" secondAttribute="bottom" constant="20" id="7XY-DU-xIh"/>
+                            <constraint firstItem="1kN-Si-ACF" firstAttribute="centerY" secondItem="MNL-tv-RBX" secondAttribute="centerY" id="E2o-By-0Xa"/>
+                            <constraint firstItem="TNe-in-0Y8" firstAttribute="top" secondItem="osV-5h-omr" secondAttribute="bottom" constant="20" id="Tz9-O7-CF2"/>
+                            <constraint firstItem="MNL-tv-RBX" firstAttribute="leading" secondItem="IbY-sT-yW4" secondAttribute="leading" constant="20" id="VTO-0E-f5J"/>
+                            <constraint firstItem="1kN-Si-ACF" firstAttribute="leading" secondItem="MNL-tv-RBX" secondAttribute="trailing" constant="20" id="Y7J-4Z-zv2"/>
+                            <constraint firstItem="MNL-tv-RBX" firstAttribute="top" secondItem="TNe-in-0Y8" secondAttribute="bottom" constant="20" id="Ze1-Ow-5Ng"/>
+                            <constraint firstItem="osV-5h-omr" firstAttribute="top" secondItem="IbY-sT-yW4" secondAttribute="top" constant="20" id="kck-Eh-nhf"/>
+                            <constraint firstItem="osV-5h-omr" firstAttribute="centerX" secondItem="IbY-sT-yW4" secondAttribute="centerX" id="rxE-kK-0Qa"/>
+                            <constraint firstAttribute="trailing" secondItem="TNe-in-0Y8" secondAttribute="trailing" constant="20" id="s1f-iQ-uIZ"/>
+                        </constraints>
+                    </view>
+                    <constraints>
+                        <constraint firstAttribute="width" constant="300" id="wHU-iX-91g"/>
+                    </constraints>
+                    <color key="borderColor" name="controlHighlightColor" catalog="System" colorSpace="catalog"/>
+                    <color key="fillColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                </box>
+                <box boxType="custom" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="MBR-AC-HFq">
+                    <rect key="frame" x="319" y="274" width="300" height="363"/>
+                    <view key="contentView" id="GCQ-FX-4t9">
+                        <rect key="frame" x="1" y="1" width="298" height="361"/>
+                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                        <subviews>
+                            <box boxType="custom" borderType="none" cornerRadius="4" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="l86-cH-pp8">
+                                <rect key="frame" x="95" y="321" width="109" height="20"/>
+                                <view key="contentView" id="EvP-rO-UwE">
+                                    <rect key="frame" x="0.0" y="0.0" width="109" height="20"/>
+                                    <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                                    <subviews>
+                                        <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Xnk-aJ-2Vg">
+                                            <rect key="frame" x="-2" y="1" width="22" height="18"/>
+                                            <buttonCell key="cell" type="check" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="nfo-xd-hzP">
+                                                <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
+                                                <font key="font" metaFont="system"/>
+                                            </buttonCell>
+                                            <connections>
+                                                <action selector="toggleVideoEnabled:" target="-2" id="yc4-ev-gaZ"/>
+                                            </connections>
+                                        </button>
+                                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="ogP-69-5zZ">
+                                            <rect key="frame" x="21" y="2" width="90" height="17"/>
+                                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Video codecs" id="gJs-aX-7Ox">
+                                                <font key="font" metaFont="systemSemibold" size="13"/>
+                                                <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                                <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                            </textFieldCell>
+                                        </textField>
+                                    </subviews>
+                                    <constraints>
+                                        <constraint firstItem="Xnk-aJ-2Vg" firstAttribute="leading" secondItem="EvP-rO-UwE" secondAttribute="leading" id="5a7-Hj-wFZ"/>
+                                        <constraint firstItem="ogP-69-5zZ" firstAttribute="centerY" secondItem="EvP-rO-UwE" secondAttribute="centerY" id="9mM-ZQ-7pu"/>
+                                        <constraint firstItem="ogP-69-5zZ" firstAttribute="leading" secondItem="Xnk-aJ-2Vg" secondAttribute="trailing" constant="5" id="K2B-Xf-OYS"/>
+                                        <constraint firstItem="Xnk-aJ-2Vg" firstAttribute="centerY" secondItem="EvP-rO-UwE" secondAttribute="centerY" id="nBn-hh-aCc"/>
+                                    </constraints>
+                                </view>
+                                <constraints>
+                                    <constraint firstAttribute="height" constant="20" id="6GF-JH-0nA"/>
+                                    <constraint firstAttribute="trailing" secondItem="ogP-69-5zZ" secondAttribute="trailing" id="B8w-Y3-qVq"/>
+                                </constraints>
+                            </box>
+                            <scrollView autohidesScrollers="YES" horizontalLineScroll="57" horizontalPageScroll="10" verticalLineScroll="57" verticalPageScroll="10" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="TK9-rV-fbS">
+                                <rect key="frame" x="20" y="70" width="258" height="234"/>
+                                <clipView key="contentView" copiesOnScroll="NO" id="DEy-oQ-HGz">
+                                    <rect key="frame" x="1" y="1" width="256" height="232"/>
+                                    <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                                    <subviews>
+                                        <tableView verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" columnSelection="YES" multipleSelection="NO" autosaveColumns="NO" rowHeight="55" rowSizeStyle="automatic" viewBased="YES" id="LDg-9Z-yNi">
+                                            <rect key="frame" x="0.0" y="0.0" width="256" height="232"/>
+                                            <autoresizingMask key="autoresizingMask"/>
+                                            <size key="intercellSpacing" width="3" height="2"/>
+                                            <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                            <color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/>
+                                            <tableColumns>
+                                                <tableColumn identifier="videoColumn" width="253" minWidth="40" maxWidth="1000" id="Zfb-Ff-2UD">
+                                                    <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border">
+                                                        <font key="font" metaFont="smallSystem"/>
+                                                        <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
+                                                        <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
+                                                    </tableHeaderCell>
+                                                    <textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" title="Text Cell" id="jgX-tQ-dIA">
+                                                        <font key="font" metaFont="system"/>
+                                                        <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                                        <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                                    </textFieldCell>
+                                                    <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/>
+                                                    <prototypeCellViews>
+                                                        <tableCellView identifier="TableCellVideoCodecItem" id="AJQ-gQ-CYM">
+                                                            <rect key="frame" x="1" y="1" width="253" height="50"/>
+                                                            <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                                                            <subviews>
+                                                                <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" tag="4" translatesAutoresizingMaskIntoConstraints="NO" id="9u7-iW-u8m">
+                                                                    <rect key="frame" x="8" y="17" width="4" height="17"/>
+                                                                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" id="9JT-Mo-i2i">
+                                                                        <font key="font" metaFont="system"/>
+                                                                        <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                                                        <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                                                    </textFieldCell>
+                                                                </textField>
+                                                                <button verticalHuggingPriority="750" tag="5" translatesAutoresizingMaskIntoConstraints="NO" id="5FI-uT-Eg9">
+                                                                    <rect key="frame" x="223" y="17" width="22" height="18"/>
+                                                                    <buttonCell key="cell" type="check" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="7Ra-Rx-VYM">
+                                                                        <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
+                                                                        <font key="font" metaFont="system"/>
+                                                                    </buttonCell>
+                                                                </button>
+                                                            </subviews>
+                                                            <constraints>
+                                                                <constraint firstItem="9u7-iW-u8m" firstAttribute="leading" secondItem="AJQ-gQ-CYM" secondAttribute="leading" constant="10" id="7C2-rc-3MG"/>
+                                                                <constraint firstItem="5FI-uT-Eg9" firstAttribute="centerY" secondItem="9u7-iW-u8m" secondAttribute="centerY" id="KO9-yG-j10"/>
+                                                                <constraint firstAttribute="trailing" secondItem="5FI-uT-Eg9" secondAttribute="trailing" constant="10" id="cmr-0I-M9x"/>
+                                                                <constraint firstItem="9u7-iW-u8m" firstAttribute="centerY" secondItem="AJQ-gQ-CYM" secondAttribute="centerY" id="cuw-7X-p31"/>
+                                                            </constraints>
+                                                        </tableCellView>
+                                                        <customView identifier="HoverRowView" id="HCw-kt-Qvi" customClass="HoverTableRowView">
+                                                            <rect key="frame" x="1" y="53" width="253" height="55"/>
+                                                            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
+                                                        </customView>
+                                                    </prototypeCellViews>
+                                                </tableColumn>
+                                            </tableColumns>
+                                        </tableView>
+                                    </subviews>
+                                </clipView>
+                                <constraints>
+                                    <constraint firstAttribute="height" constant="234" id="Ie1-uA-KFc"/>
+                                </constraints>
+                                <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="YES" id="6f3-tz-lVA">
+                                    <rect key="frame" x="1" y="217" width="236" height="16"/>
+                                    <autoresizingMask key="autoresizingMask"/>
+                                </scroller>
+                                <scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="NO" id="oWf-ht-xYu">
+                                    <rect key="frame" x="224" y="17" width="15" height="102"/>
+                                    <autoresizingMask key="autoresizingMask"/>
+                                </scroller>
+                            </scrollView>
+                            <button translatesAutoresizingMaskIntoConstraints="NO" id="3yP-KT-ImU">
+                                <rect key="frame" x="20" y="70" width="258" height="234"/>
+                                <buttonCell key="cell" type="square" bezelStyle="shadowlessSquare" imagePosition="only" alignment="center" imageScaling="proportionallyUpOrDown" inset="2" id="Vuy-o9-KYJ">
+                                    <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                                    <font key="font" metaFont="system"/>
+                                </buttonCell>
+                            </button>
+                            <button translatesAutoresizingMaskIntoConstraints="NO" id="QYm-Mt-xrr">
+                                <rect key="frame" x="20" y="20" width="30" height="30"/>
+                                <constraints>
+                                    <constraint firstAttribute="width" constant="30" id="DC1-I8-AeW"/>
+                                    <constraint firstAttribute="height" constant="30" id="kht-55-det"/>
+                                </constraints>
+                                <buttonCell key="cell" type="square" bezelStyle="shadowlessSquare" image="NSTouchBarGoDownTemplate" imagePosition="only" alignment="center" imageScaling="proportionallyUpOrDown" inset="2" id="3bs-Sw-FVX">
+                                    <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                                    <font key="font" metaFont="system"/>
+                                </buttonCell>
+                                <connections>
+                                    <action selector="moveVideoCodecDown:" target="-2" id="2Wi-AI-XSe"/>
+                                </connections>
+                            </button>
+                            <button translatesAutoresizingMaskIntoConstraints="NO" id="zfP-ST-2Sy">
+                                <rect key="frame" x="70" y="20" width="30" height="30"/>
+                                <constraints>
+                                    <constraint firstAttribute="width" constant="30" id="7wM-Qg-Jbg"/>
+                                    <constraint firstAttribute="height" constant="30" id="9td-WH-JUa"/>
+                                </constraints>
+                                <buttonCell key="cell" type="square" bezelStyle="shadowlessSquare" image="NSTouchBarGoUpTemplate" imagePosition="only" alignment="center" imageScaling="proportionallyUpOrDown" inset="2" id="dBy-m4-enI">
+                                    <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                                    <font key="font" metaFont="system"/>
+                                </buttonCell>
+                                <connections>
+                                    <action selector="moveVideoCodecUp:" target="-2" id="vqI-LW-dzI"/>
+                                </connections>
+                            </button>
+                        </subviews>
+                        <constraints>
+                            <constraint firstItem="zfP-ST-2Sy" firstAttribute="leading" secondItem="QYm-Mt-xrr" secondAttribute="trailing" constant="20" id="2FZ-hk-CBE"/>
+                            <constraint firstItem="l86-cH-pp8" firstAttribute="centerX" secondItem="GCQ-FX-4t9" secondAttribute="centerX" id="AJ0-vq-pyB"/>
+                            <constraint firstAttribute="trailing" secondItem="TK9-rV-fbS" secondAttribute="trailing" constant="20" id="DSn-rM-EsD"/>
+                            <constraint firstItem="3yP-KT-ImU" firstAttribute="top" secondItem="TK9-rV-fbS" secondAttribute="top" id="KOJ-tQ-QaL"/>
+                            <constraint firstItem="zfP-ST-2Sy" firstAttribute="centerY" secondItem="QYm-Mt-xrr" secondAttribute="centerY" id="MPS-yz-Qe7"/>
+                            <constraint firstItem="l86-cH-pp8" firstAttribute="top" secondItem="GCQ-FX-4t9" secondAttribute="top" constant="20" id="Rie-BP-PiE"/>
+                            <constraint firstItem="QYm-Mt-xrr" firstAttribute="top" secondItem="TK9-rV-fbS" secondAttribute="bottom" constant="20" id="VlZ-hE-aNv"/>
+                            <constraint firstItem="3yP-KT-ImU" firstAttribute="leading" secondItem="TK9-rV-fbS" secondAttribute="leading" id="g2x-UC-H16"/>
+                            <constraint firstItem="QYm-Mt-xrr" firstAttribute="leading" secondItem="GCQ-FX-4t9" secondAttribute="leading" constant="20" id="gH0-u7-39U"/>
+                            <constraint firstItem="3yP-KT-ImU" firstAttribute="bottom" secondItem="TK9-rV-fbS" secondAttribute="bottom" id="mWD-8B-XOp"/>
+                            <constraint firstAttribute="bottom" secondItem="QYm-Mt-xrr" secondAttribute="bottom" constant="20" id="svs-Gg-VMI"/>
+                            <constraint firstItem="TK9-rV-fbS" firstAttribute="leading" secondItem="GCQ-FX-4t9" secondAttribute="leading" constant="20" id="tc2-4w-qOU"/>
+                            <constraint firstItem="3yP-KT-ImU" firstAttribute="trailing" secondItem="TK9-rV-fbS" secondAttribute="trailing" id="uAf-DH-och"/>
+                        </constraints>
+                    </view>
+                    <constraints>
+                        <constraint firstAttribute="width" constant="300" id="dxj-bU-vaM"/>
+                    </constraints>
+                    <color key="borderColor" name="controlHighlightColor" catalog="System" colorSpace="catalog"/>
+                    <color key="fillColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                </box>
+                <box boxType="custom" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="wyZ-Hb-BNf">
+                    <rect key="frame" x="0.0" y="20" width="620" height="234"/>
+                    <view key="contentView" id="2O1-Si-mOK">
+                        <rect key="frame" x="1" y="1" width="618" height="232"/>
+                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                        <subviews>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="wmC-om-8ey">
+                                <rect key="frame" x="18" y="195" width="251" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="SDP Session Negotiation (ICE Fallback)" id="Jfp-NE-ODd">
+                                    <font key="font" metaFont="systemSemibold" size="13"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="6qO-jl-7lU">
+                                <rect key="frame" x="18" y="168" width="382" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Only used during SDP negotiation in case ICE is not supported" id="cN3-lC-dNM">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Axy-zQ-uSs">
+                                <rect key="frame" x="38" y="131" width="143" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Audio RTP port Range" id="Ogj-NW-fZ9">
+                                    <font key="font" metaFont="systemSemibold" size="13"/>
+                                    <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="z9P-Rk-RQN">
+                                <rect key="frame" x="38" y="94" width="26" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Min" id="nq0-Js-9Cr">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="fgZ-CW-Fvh">
+                                <rect key="frame" x="82" y="94" width="100" height="20"/>
+                                <constraints>
+                                    <constraint firstAttribute="height" constant="20" id="aXQ-Ss-Pwl"/>
+                                    <constraint firstAttribute="width" constant="100" id="f2J-lA-fqR"/>
+                                </constraints>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" bezelStyle="round" id="LNm-BH-bxH">
+                                    <numberFormatter key="formatter" formatterBehavior="default10_4" usesGroupingSeparator="NO" groupingSize="0" minimumIntegerDigits="0" maximumIntegerDigits="42" id="mao-B6-wSU">
+                                        <real key="maximum" value="65534"/>
+                                    </numberFormatter>
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                                <connections>
+                                    <outlet property="delegate" destination="-2" id="T3o-KR-c89"/>
+                                </connections>
+                            </textField>
+                            <stepper horizontalHuggingPriority="750" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="CJp-f0-CVS">
+                                <rect key="frame" x="181" y="91" width="19" height="27"/>
+                                <stepperCell key="cell" continuous="YES" alignment="left" maxValue="65534" id="fb8-Fb-KfF"/>
+                                <connections>
+                                    <action selector="valueDidChange:" target="-2" id="vYd-jk-JPn"/>
+                                </connections>
+                            </stepper>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="hW3-sb-YAE">
+                                <rect key="frame" x="334" y="94" width="30" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Max" id="nh9-3y-CEI">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="ZTD-jf-ETX">
+                                <rect key="frame" x="382" y="94" width="100" height="20"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" bezelStyle="round" id="nyM-Q5-BEk">
+                                    <numberFormatter key="formatter" formatterBehavior="default10_4" usesGroupingSeparator="NO" groupingSize="0" minimumIntegerDigits="0" maximumIntegerDigits="42" id="F8a-qz-lgy">
+                                        <real key="maximum" value="65534"/>
+                                    </numberFormatter>
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                                <connections>
+                                    <outlet property="delegate" destination="-2" id="N0g-p2-ZSP"/>
+                                </connections>
+                            </textField>
+                            <stepper horizontalHuggingPriority="750" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="xYF-oT-c1k">
+                                <rect key="frame" x="481" y="90" width="19" height="27"/>
+                                <stepperCell key="cell" continuous="YES" alignment="left" maxValue="65534" id="Zij-0s-fYN"/>
+                                <connections>
+                                    <action selector="valueDidChange:" target="-2" id="Sda-8q-hfE"/>
+                                </connections>
+                            </stepper>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="9lA-g0-S3N">
+                                <rect key="frame" x="38" y="57" width="143" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Video RTP port Range" id="0cb-ib-oHd">
+                                    <font key="font" metaFont="systemSemibold" size="13"/>
+                                    <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Oxu-Eh-Pc8">
+                                <rect key="frame" x="38" y="20" width="26" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Min" id="0Fh-Sz-TMo">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="A4B-iN-Uds">
+                                <rect key="frame" x="82" y="20" width="100" height="20"/>
+                                <constraints>
+                                    <constraint firstAttribute="height" constant="20" id="bf0-Nk-2mv"/>
+                                    <constraint firstAttribute="width" constant="100" id="gQJ-wR-Nyu"/>
+                                </constraints>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" bezelStyle="round" id="RyI-Xb-NxM">
+                                    <numberFormatter key="formatter" formatterBehavior="default10_4" usesGroupingSeparator="NO" groupingSize="0" minimumIntegerDigits="0" maximumIntegerDigits="42" id="iSL-6F-7N9">
+                                        <real key="maximum" value="65534"/>
+                                    </numberFormatter>
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                                <connections>
+                                    <outlet property="delegate" destination="-2" id="bVK-61-PYx"/>
+                                </connections>
+                            </textField>
+                            <stepper horizontalHuggingPriority="750" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="cBH-m7-dIR">
+                                <rect key="frame" x="181" y="17" width="19" height="27"/>
+                                <stepperCell key="cell" continuous="YES" alignment="left" maxValue="65534" id="1UJ-Yy-aOP"/>
+                                <connections>
+                                    <action selector="valueDidChange:" target="-2" id="k5z-3q-bbb"/>
+                                </connections>
+                            </stepper>
+                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="3bV-kk-vIN">
+                                <rect key="frame" x="334" y="20" width="30" height="17"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Max" id="wq6-KV-8X3">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                            </textField>
+                            <textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="yka-j6-lM7">
+                                <rect key="frame" x="382" y="20" width="100" height="22"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" bezelStyle="round" id="Zvz-tI-X70">
+                                    <numberFormatter key="formatter" formatterBehavior="default10_4" usesGroupingSeparator="NO" groupingSize="0" minimumIntegerDigits="0" maximumIntegerDigits="42" id="FFU-3v-UQ3">
+                                        <real key="maximum" value="65534"/>
+                                    </numberFormatter>
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                                <connections>
+                                    <outlet property="delegate" destination="-2" id="gjE-Xt-sUX"/>
+                                </connections>
+                            </textField>
+                            <stepper horizontalHuggingPriority="750" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="iGx-YR-Efs">
+                                <rect key="frame" x="481" y="18" width="19" height="27"/>
+                                <stepperCell key="cell" continuous="YES" alignment="left" maxValue="65534" id="dhg-QK-CT6"/>
+                                <connections>
+                                    <action selector="valueDidChange:" target="-2" id="WFo-zc-52g"/>
+                                </connections>
+                            </stepper>
+                        </subviews>
+                        <constraints>
+                            <constraint firstItem="3bV-kk-vIN" firstAttribute="centerX" secondItem="hW3-sb-YAE" secondAttribute="centerX" id="27V-Ak-hwG"/>
+                            <constraint firstItem="6qO-jl-7lU" firstAttribute="top" secondItem="wmC-om-8ey" secondAttribute="bottom" constant="10" id="35k-Pr-UjU"/>
+                            <constraint firstItem="A4B-iN-Uds" firstAttribute="bottom" secondItem="Oxu-Eh-Pc8" secondAttribute="bottom" id="49e-Sh-rW3"/>
+                            <constraint firstItem="wmC-om-8ey" firstAttribute="top" secondItem="2O1-Si-mOK" secondAttribute="top" constant="20" id="4CR-qt-enf"/>
+                            <constraint firstItem="xYF-oT-c1k" firstAttribute="leading" secondItem="ZTD-jf-ETX" secondAttribute="trailing" constant="2" id="6ef-JI-orE"/>
+                            <constraint firstItem="xYF-oT-c1k" firstAttribute="centerY" secondItem="ZTD-jf-ETX" secondAttribute="centerY" id="ARJ-Qs-UPA"/>
+                            <constraint firstItem="ZTD-jf-ETX" firstAttribute="bottom" secondItem="hW3-sb-YAE" secondAttribute="bottom" id="Coo-X8-3mw"/>
+                            <constraint firstItem="6qO-jl-7lU" firstAttribute="leading" secondItem="wmC-om-8ey" secondAttribute="leading" id="EwS-tI-lSD"/>
+                            <constraint firstItem="z9P-Rk-RQN" firstAttribute="leading" secondItem="Axy-zQ-uSs" secondAttribute="leading" id="Hgx-9X-jdO"/>
+                            <constraint firstItem="CJp-f0-CVS" firstAttribute="leading" secondItem="fgZ-CW-Fvh" secondAttribute="trailing" constant="2" id="Hiz-lC-q0F"/>
+                            <constraint firstItem="cBH-m7-dIR" firstAttribute="leading" secondItem="A4B-iN-Uds" secondAttribute="trailing" constant="2" id="IBN-fw-ZH2"/>
+                            <constraint firstItem="hW3-sb-YAE" firstAttribute="centerX" secondItem="2O1-Si-mOK" secondAttribute="centerX" constant="40" id="Jt1-TY-vfC"/>
+                            <constraint firstItem="fgZ-CW-Fvh" firstAttribute="bottom" secondItem="z9P-Rk-RQN" secondAttribute="bottom" id="Khn-te-TnX"/>
+                            <constraint firstItem="3bV-kk-vIN" firstAttribute="centerY" secondItem="Oxu-Eh-Pc8" secondAttribute="centerY" id="L9g-8P-Xyg"/>
+                            <constraint firstItem="Axy-zQ-uSs" firstAttribute="top" secondItem="6qO-jl-7lU" secondAttribute="bottom" constant="20" id="LOV-cd-GAd"/>
+                            <constraint firstItem="A4B-iN-Uds" firstAttribute="trailing" secondItem="fgZ-CW-Fvh" secondAttribute="trailing" id="Nj1-zg-nWC"/>
+                            <constraint firstItem="iGx-YR-Efs" firstAttribute="leading" secondItem="yka-j6-lM7" secondAttribute="trailing" constant="2" id="OtV-cb-6Hj"/>
+                            <constraint firstItem="ZTD-jf-ETX" firstAttribute="width" secondItem="fgZ-CW-Fvh" secondAttribute="width" id="Pkc-9K-Zbm"/>
+                            <constraint firstItem="9lA-g0-S3N" firstAttribute="top" secondItem="z9P-Rk-RQN" secondAttribute="bottom" constant="20" id="TIb-fo-v5g"/>
+                            <constraint firstItem="hW3-sb-YAE" firstAttribute="bottom" secondItem="z9P-Rk-RQN" secondAttribute="bottom" id="TW0-1I-Sx1"/>
+                            <constraint firstItem="iGx-YR-Efs" firstAttribute="centerY" secondItem="yka-j6-lM7" secondAttribute="centerY" id="a5M-Gy-z5x"/>
+                            <constraint firstItem="Axy-zQ-uSs" firstAttribute="leading" secondItem="2O1-Si-mOK" secondAttribute="leading" constant="40" id="bpB-6t-HUE"/>
+                            <constraint firstItem="wmC-om-8ey" firstAttribute="leading" secondItem="2O1-Si-mOK" secondAttribute="leading" constant="20" id="diY-sR-MaU"/>
+                            <constraint firstItem="ZTD-jf-ETX" firstAttribute="height" secondItem="fgZ-CW-Fvh" secondAttribute="height" id="eWa-QB-jIB"/>
+                            <constraint firstAttribute="bottom" secondItem="Oxu-Eh-Pc8" secondAttribute="bottom" constant="20" id="f7d-tj-Ru2"/>
+                            <constraint firstItem="ZTD-jf-ETX" firstAttribute="leading" secondItem="hW3-sb-YAE" secondAttribute="trailing" constant="20" id="fWb-N3-pEE"/>
+                            <constraint firstItem="A4B-iN-Uds" firstAttribute="leading" secondItem="fgZ-CW-Fvh" secondAttribute="leading" id="fhb-re-PUs"/>
+                            <constraint firstItem="Oxu-Eh-Pc8" firstAttribute="top" secondItem="9lA-g0-S3N" secondAttribute="bottom" constant="20" id="fl5-TM-oze"/>
+                            <constraint firstItem="cBH-m7-dIR" firstAttribute="centerY" secondItem="A4B-iN-Uds" secondAttribute="centerY" id="i9p-4H-FXN"/>
+                            <constraint firstItem="yka-j6-lM7" firstAttribute="leading" secondItem="ZTD-jf-ETX" secondAttribute="leading" id="lQd-5s-DUp"/>
+                            <constraint firstItem="9lA-g0-S3N" firstAttribute="leading" secondItem="Axy-zQ-uSs" secondAttribute="leading" id="mA5-3E-PSb"/>
+                            <constraint firstItem="CJp-f0-CVS" firstAttribute="centerY" secondItem="fgZ-CW-Fvh" secondAttribute="centerY" id="o1J-rm-GQH"/>
+                            <constraint firstItem="Oxu-Eh-Pc8" firstAttribute="leading" secondItem="z9P-Rk-RQN" secondAttribute="leading" id="ohR-cx-P78"/>
+                            <constraint firstItem="z9P-Rk-RQN" firstAttribute="top" secondItem="Axy-zQ-uSs" secondAttribute="bottom" constant="20" id="t6v-41-sBS"/>
+                            <constraint firstItem="yka-j6-lM7" firstAttribute="trailing" secondItem="ZTD-jf-ETX" secondAttribute="trailing" id="tUs-Bj-rWL"/>
+                            <constraint firstItem="yka-j6-lM7" firstAttribute="bottom" secondItem="3bV-kk-vIN" secondAttribute="bottom" id="tr2-di-XSN"/>
+                            <constraint firstItem="fgZ-CW-Fvh" firstAttribute="leading" secondItem="z9P-Rk-RQN" secondAttribute="trailing" constant="20" id="vMb-el-uDN"/>
+                        </constraints>
+                    </view>
+                    <color key="borderColor" name="controlHighlightColor" catalog="System" colorSpace="catalog"/>
+                    <color key="fillColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                </box>
+            </subviews>
+            <constraints>
+                <constraint firstItem="cwV-lc-jju" firstAttribute="top" secondItem="A31-3Y-z4R" secondAttribute="bottom" constant="20" id="2pu-ac-m0j"/>
+                <constraint firstItem="Zuz-jy-rLn" firstAttribute="top" secondItem="Ppa-zn-w1X" secondAttribute="bottom" constant="20" id="3qf-9g-k7g"/>
+                <constraint firstItem="A31-3Y-z4R" firstAttribute="leading" secondItem="2pL-ZS-jV2" secondAttribute="leading" id="5og-hq-BOm"/>
+                <constraint firstItem="cwV-lc-jju" firstAttribute="leading" secondItem="2pL-ZS-jV2" secondAttribute="leading" id="8wT-YJ-kXA"/>
+                <constraint firstItem="Ppa-zn-w1X" firstAttribute="leading" secondItem="2pL-ZS-jV2" secondAttribute="leading" id="9OE-PR-Q2B"/>
+                <constraint firstItem="Zuz-jy-rLn" firstAttribute="leading" secondItem="2pL-ZS-jV2" secondAttribute="leading" id="FSg-s8-5h4"/>
+                <constraint firstAttribute="trailing" secondItem="Ppa-zn-w1X" secondAttribute="trailing" id="FUZ-WQ-nk4"/>
+                <constraint firstItem="wyZ-Hb-BNf" firstAttribute="trailing" secondItem="A31-3Y-z4R" secondAttribute="trailing" id="GEG-VB-DGC"/>
+                <constraint firstItem="ekM-Cg-DEo" firstAttribute="leading" secondItem="2pL-ZS-jV2" secondAttribute="leading" id="IOt-t1-t7N"/>
+                <constraint firstItem="wyZ-Hb-BNf" firstAttribute="top" secondItem="cwV-lc-jju" secondAttribute="bottom" constant="20" id="N6o-d2-2tR"/>
+                <constraint firstItem="MBR-AC-HFq" firstAttribute="bottom" secondItem="cwV-lc-jju" secondAttribute="bottom" id="NJD-W8-4V4"/>
+                <constraint firstItem="Ppa-zn-w1X" firstAttribute="top" secondItem="2pL-ZS-jV2" secondAttribute="top" id="UPn-Ip-IXo"/>
+                <constraint firstItem="ekM-Cg-DEo" firstAttribute="top" secondItem="Zuz-jy-rLn" secondAttribute="bottom" constant="20" id="d5B-SJ-N8V"/>
+                <constraint firstItem="MBR-AC-HFq" firstAttribute="leading" secondItem="IbY-sT-yW4" secondAttribute="trailing" constant="20" id="fRz-qr-Kqv"/>
+                <constraint firstItem="wyZ-Hb-BNf" firstAttribute="leading" secondItem="cwV-lc-jju" secondAttribute="leading" id="il0-RE-mSB"/>
+                <constraint firstAttribute="trailing" secondItem="Zuz-jy-rLn" secondAttribute="trailing" id="jdD-NF-XLO"/>
+                <constraint firstAttribute="bottom" secondItem="wyZ-Hb-BNf" secondAttribute="bottom" constant="20" id="obo-s9-h2n"/>
+                <constraint firstItem="ekM-Cg-DEo" firstAttribute="trailing" secondItem="Zuz-jy-rLn" secondAttribute="trailing" id="rt8-Zr-mPV"/>
+                <constraint firstItem="A31-3Y-z4R" firstAttribute="top" secondItem="ekM-Cg-DEo" secondAttribute="bottom" constant="20" id="we5-k2-86s"/>
+                <constraint firstItem="A31-3Y-z4R" firstAttribute="trailing" secondItem="ekM-Cg-DEo" secondAttribute="trailing" id="x2C-zj-3dV"/>
+                <constraint firstItem="MBR-AC-HFq" firstAttribute="top" secondItem="cwV-lc-jju" secondAttribute="top" id="zlI-yI-gOh"/>
+            </constraints>
+            <point key="canvasLocation" x="-235" y="889"/>
+        </customView>
+    </objects>
+    <resources>
+        <image name="NSTouchBarFolderTemplate" width="22" height="30"/>
+        <image name="NSTouchBarGoDownTemplate" width="16" height="30"/>
+        <image name="NSTouchBarGoUpTemplate" width="16" height="30"/>
+    </resources>
+</document>
diff --git a/ui/Base.lproj/AccDevices.xib b/ui/Base.lproj/AccDevices.xib
deleted file mode 100644
index 312acfb1af7bcda36a5de014e922b5cb444171b6..0000000000000000000000000000000000000000
--- a/ui/Base.lproj/AccDevices.xib
+++ /dev/null
@@ -1,149 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="11201" systemVersion="16B2553a" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" customObjectInstantitationMethod="direct">
-    <dependencies>
-        <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="11201"/>
-    </dependencies>
-    <objects>
-        <customObject id="-2" userLabel="File's Owner" customClass="AccDevicesVC">
-            <connections>
-                <outlet property="deviceDetailsView" destination="20b-Ji-RbX" id="A3A-w9-0m5"/>
-                <outlet property="view" destination="Hz6-mo-xeY" id="0bl-1N-x8E"/>
-            </connections>
-        </customObject>
-        <customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/>
-        <customObject id="-3" userLabel="Application" customClass="NSObject"/>
-        <customView misplaced="YES" id="Hz6-mo-xeY">
-            <rect key="frame" x="0.0" y="0.0" width="576" height="409"/>
-            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
-            <subviews>
-                <scrollView misplaced="YES" borderType="none" autohidesScrollers="YES" horizontalLineScroll="57" horizontalPageScroll="10" verticalLineScroll="57" verticalPageScroll="10" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Cn2-3f-RfE">
-                    <rect key="frame" x="20" y="134" width="536" height="219"/>
-                    <clipView key="contentView" id="5RD-uP-uce">
-                        <rect key="frame" x="0.0" y="0.0" width="536" height="219"/>
-                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
-                        <subviews>
-                            <outlineView verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" autosaveColumns="NO" rowHeight="55" rowSizeStyle="automatic" viewBased="YES" outlineTableColumn="Sv0-5z-dC2" id="20b-Ji-RbX" customClass="RingOutlineView">
-                                <rect key="frame" x="1" y="0.0" width="536" height="219"/>
-                                <autoresizingMask key="autoresizingMask"/>
-                                <size key="intercellSpacing" width="3" height="2"/>
-                                <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
-                                <color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/>
-                                <tableColumns>
-                                    <tableColumn width="533" minWidth="40" maxWidth="1000" id="Sv0-5z-dC2">
-                                        <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border">
-                                            <font key="font" metaFont="smallSystem"/>
-                                            <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
-                                            <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
-                                        </tableHeaderCell>
-                                        <textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" id="eNP-Qg-jM1">
-                                            <font key="font" metaFont="system"/>
-                                            <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
-                                            <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
-                                        </textFieldCell>
-                                        <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/>
-                                        <prototypeCellViews>
-                                            <tableCellView identifier="DeviceView" id="V2l-Lf-B1r">
-                                                <rect key="frame" x="1" y="1" width="533" height="50"/>
-                                                <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
-                                                <subviews>
-                                                    <textField verticalHuggingPriority="750" tag="200" translatesAutoresizingMaskIntoConstraints="NO" id="mif-hy-cnh" userLabel="Status label">
-                                                        <rect key="frame" x="38" y="6" width="38" height="14"/>
-                                                        <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" placeholderString="Status" id="mAD-1Z-aYB">
-                                                            <font key="font" metaFont="smallSystem"/>
-                                                            <color key="textColor" name="secondaryLabelColor" catalog="System" colorSpace="catalog"/>
-                                                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                                                        </textFieldCell>
-                                                    </textField>
-                                                    <textField verticalHuggingPriority="750" tag="100" setsMaxLayoutWidthAtFirstLayout="YES" translatesAutoresizingMaskIntoConstraints="NO" id="UbS-VO-lii" userLabel="Name label">
-                                                        <rect key="frame" x="38" y="26" width="208" height="21"/>
-                                                        <textFieldCell key="cell" sendsActionOnEndEditing="YES" placeholderString="Name" id="w62-Jz-2tu">
-                                                            <font key="font" metaFont="system" size="17"/>
-                                                            <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
-                                                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                                                        </textFieldCell>
-                                                    </textField>
-                                                </subviews>
-                                                <constraints>
-                                                    <constraint firstItem="UbS-VO-lii" firstAttribute="top" secondItem="V2l-Lf-B1r" secondAttribute="top" constant="3" id="1UM-xz-ZNR"/>
-                                                    <constraint firstItem="mif-hy-cnh" firstAttribute="leading" secondItem="V2l-Lf-B1r" secondAttribute="leading" constant="40" id="CQT-Fu-bgB"/>
-                                                    <constraint firstAttribute="trailing" secondItem="UbS-VO-lii" secondAttribute="trailing" constant="289" id="YkQ-XF-ydv"/>
-                                                    <constraint firstItem="UbS-VO-lii" firstAttribute="top" secondItem="V2l-Lf-B1r" secondAttribute="top" constant="3" id="hCv-J7-Ivx"/>
-                                                    <constraint firstItem="mif-hy-cnh" firstAttribute="top" secondItem="UbS-VO-lii" secondAttribute="bottom" constant="6" id="lKI-61-ssq"/>
-                                                    <constraint firstItem="mif-hy-cnh" firstAttribute="top" secondItem="UbS-VO-lii" secondAttribute="bottom" constant="6" id="vWW-7c-2Hk"/>
-                                                    <constraint firstItem="UbS-VO-lii" firstAttribute="leading" secondItem="V2l-Lf-B1r" secondAttribute="leading" constant="40" id="yh9-rt-7e7"/>
-                                                </constraints>
-                                            </tableCellView>
-                                            <customView identifier="HoverRowView" id="lBd-rL-ixN" customClass="HoverTableRowView">
-                                                <rect key="frame" x="1" y="53" width="533" height="55"/>
-                                                <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
-                                            </customView>
-                                        </prototypeCellViews>
-                                    </tableColumn>
-                                </tableColumns>
-                                <connections>
-                                    <outlet property="delegate" destination="-2" id="Q8m-cE-QXK"/>
-                                </connections>
-                            </outlineView>
-                        </subviews>
-                    </clipView>
-                    <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="YES" id="xKj-nZ-7Mx">
-                        <rect key="frame" x="-8" y="-15" width="0.0" height="15"/>
-                        <autoresizingMask key="autoresizingMask"/>
-                    </scroller>
-                    <scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="NO" id="eiD-YY-HVN">
-                        <rect key="frame" x="-15" y="-8" width="15" height="0.0"/>
-                        <autoresizingMask key="autoresizingMask"/>
-                    </scroller>
-                </scrollView>
-                <textField verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" misplaced="YES" translatesAutoresizingMaskIntoConstraints="NO" id="K8a-3i-BoE">
-                    <rect key="frame" x="18" y="361" width="540" height="34"/>
-                    <constraints>
-                        <constraint firstAttribute="height" constant="34" id="naw-cT-zM2"/>
-                    </constraints>
-                    <textFieldCell key="cell" sendsActionOnEndEditing="YES" title="Use the same Ring account on multiple devices. Below is the list of devices linked to this Ring account" id="kMd-iv-UAy">
-                        <font key="font" metaFont="system"/>
-                        <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
-                        <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                    </textFieldCell>
-                </textField>
-                <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" misplaced="YES" translatesAutoresizingMaskIntoConstraints="NO" id="qbe-Z5-0NO">
-                    <rect key="frame" x="18" y="52" width="540" height="79"/>
-                    <constraints>
-                        <constraint firstAttribute="height" constant="79" id="t9o-hB-b8b"/>
-                    </constraints>
-                    <textFieldCell key="cell" sendsActionOnEndEditing="YES" id="Kzk-fW-9c3">
-                        <font key="font" metaFont="system"/>
-                        <string key="title">To use this account on other devices, you must first expose it on Ring. 
This will generate a PIN code that you must enter on the new device to setup the account. 
The PIN is valid for 10 minutes.</string>
-                        <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
-                        <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                    </textFieldCell>
-                </textField>
-                <button verticalHuggingPriority="750" misplaced="YES" translatesAutoresizingMaskIntoConstraints="NO" id="hbO-OT-jpc">
-                    <rect key="frame" x="155" y="16" width="266" height="32"/>
-                    <buttonCell key="cell" type="push" title="Link another device to this account" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="uDY-qB-G0I">
-                        <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
-                        <font key="font" metaFont="system"/>
-                    </buttonCell>
-                    <connections>
-                        <action selector="startExportOnRing:" target="-2" id="6cr-RZ-7Wi"/>
-                    </connections>
-                </button>
-            </subviews>
-            <constraints>
-                <constraint firstAttribute="trailing" secondItem="K8a-3i-BoE" secondAttribute="trailing" constant="20" symbolic="YES" id="04L-Oh-TeA"/>
-                <constraint firstItem="K8a-3i-BoE" firstAttribute="top" secondItem="Hz6-mo-xeY" secondAttribute="top" constant="14" id="0o1-PJ-Ud6"/>
-                <constraint firstItem="Cn2-3f-RfE" firstAttribute="leading" secondItem="qbe-Z5-0NO" secondAttribute="leading" id="ICB-cT-5Xz"/>
-                <constraint firstItem="K8a-3i-BoE" firstAttribute="leading" secondItem="Cn2-3f-RfE" secondAttribute="leading" id="Jiu-i8-QaL"/>
-                <constraint firstItem="K8a-3i-BoE" firstAttribute="leading" secondItem="Hz6-mo-xeY" secondAttribute="leading" constant="20" symbolic="YES" id="KBt-HF-lOD"/>
-                <constraint firstItem="qbe-Z5-0NO" firstAttribute="centerX" secondItem="hbO-OT-jpc" secondAttribute="centerX" id="PdW-6C-uTd"/>
-                <constraint firstItem="K8a-3i-BoE" firstAttribute="trailing" secondItem="Cn2-3f-RfE" secondAttribute="trailing" id="ZKY-Mr-igx"/>
-                <constraint firstItem="Cn2-3f-RfE" firstAttribute="trailing" secondItem="qbe-Z5-0NO" secondAttribute="trailing" id="dFR-Lf-JS7"/>
-                <constraint firstItem="qbe-Z5-0NO" firstAttribute="top" secondItem="Cn2-3f-RfE" secondAttribute="bottom" constant="3" id="iee-xp-cxF"/>
-                <constraint firstItem="Cn2-3f-RfE" firstAttribute="top" secondItem="Hz6-mo-xeY" secondAttribute="top" constant="56" id="lSL-4E-Z6R"/>
-                <constraint firstItem="hbO-OT-jpc" firstAttribute="top" secondItem="qbe-Z5-0NO" secondAttribute="bottom" constant="8" symbolic="YES" id="lZ8-Oh-xzM"/>
-                <constraint firstAttribute="bottom" secondItem="hbO-OT-jpc" secondAttribute="bottom" constant="23" id="qC8-Vx-X0k"/>
-            </constraints>
-            <point key="canvasLocation" x="377" y="280.5"/>
-        </customView>
-    </objects>
-</document>
diff --git a/ui/Base.lproj/AccGeneral.xib b/ui/Base.lproj/AccGeneral.xib
deleted file mode 100644
index c784c367144df1596574359e5a2e94072242505d..0000000000000000000000000000000000000000
--- a/ui/Base.lproj/AccGeneral.xib
+++ /dev/null
@@ -1,259 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="11762" systemVersion="16D30a" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" customObjectInstantitationMethod="direct">
-    <dependencies>
-        <development version="7000" identifier="xcode"/>
-        <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="11762"/>
-    </dependencies>
-    <objects>
-        <customObject id="-2" userLabel="File's Owner" customClass="AccGeneralVC">
-            <connections>
-                <outlet property="aliasTextField" destination="Ilk-QS-8PT" id="cGv-as-uy7"/>
-                <outlet property="autoAnswerButton" destination="T5L-Hx-tAq" id="ybf-2A-4RV"/>
-                <outlet property="passwordTextField" destination="POs-9R-DUW" id="WQ2-Dn-Yek"/>
-                <outlet property="serverHostTextField" destination="VuA-jX-Kqu" id="LQt-Ti-eBW"/>
-                <outlet property="upnpButton" destination="Rsc-fc-lz8" id="571-Uv-EiD"/>
-                <outlet property="userAgentButton" destination="a4o-bf-KQu" id="BVB-D4-meM"/>
-                <outlet property="userAgentTextField" destination="y8K-Hi-TMC" id="rtz-rP-jdW"/>
-                <outlet property="usernameTextField" destination="0Ej-Lr-p20" id="Lbg-k1-ZSx"/>
-                <outlet property="view" destination="c22-O7-iKe" id="7Iz-V2-xwH"/>
-            </connections>
-        </customObject>
-        <customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/>
-        <customObject id="-3" userLabel="Application" customClass="NSObject"/>
-        <customView id="c22-O7-iKe">
-            <rect key="frame" x="0.0" y="0.0" width="474" height="380"/>
-            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
-            <subviews>
-                <textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="0Ej-Lr-p20">
-                    <rect key="frame" x="171" y="214" width="150" height="22"/>
-                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="6wZ-M4-Cnf">
-                        <font key="font" metaFont="system"/>
-                        <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
-                        <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
-                    </textFieldCell>
-                    <connections>
-                        <outlet property="delegate" destination="-2" id="4Ow-lh-114"/>
-                    </connections>
-                </textField>
-                <secureTextField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="POs-9R-DUW">
-                    <rect key="frame" x="171" y="174" width="150" height="22"/>
-                    <secureTextFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" borderStyle="bezel" drawsBackground="YES" usesSingleLineMode="YES" id="Cvf-pZ-qe0">
-                        <font key="font" metaFont="system"/>
-                        <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
-                        <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
-                        <allowedInputSourceLocales>
-                            <string>NSAllRomanInputSourcesLocaleIdentifier</string>
-                        </allowedInputSourceLocales>
-                    </secureTextFieldCell>
-                    <connections>
-                        <outlet property="delegate" destination="-2" id="SIP-Dy-rFh"/>
-                    </connections>
-                </secureTextField>
-                <textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="VuA-jX-Kqu">
-                    <rect key="frame" x="171" y="254" width="150" height="22"/>
-                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="37d-ck-pa7">
-                        <font key="font" metaFont="system"/>
-                        <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
-                        <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
-                    </textFieldCell>
-                    <connections>
-                        <outlet property="delegate" destination="-2" id="t13-Ex-wlP"/>
-                    </connections>
-                </textField>
-                <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="3ZB-JI-U6Y">
-                    <rect key="frame" x="103" y="179" width="62" height="17"/>
-                    <constraints>
-                        <constraint firstAttribute="width" constant="58" id="yrv-IL-rAt"/>
-                    </constraints>
-                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Password:" id="WCR-30-BX0">
-                        <font key="font" metaFont="system"/>
-                        <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
-                        <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                    </textFieldCell>
-                </textField>
-                <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Btb-K1-phc">
-                    <rect key="frame" x="56" y="257" width="109" height="17"/>
-                    <constraints>
-                        <constraint firstAttribute="width" constant="105" id="aTC-B6-gvC"/>
-                    </constraints>
-                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Server hostname" id="3uy-g0-eCm">
-                        <font key="font" metaFont="system"/>
-                        <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
-                        <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                    </textFieldCell>
-                </textField>
-                <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="1IP-mF-EDC">
-                    <rect key="frame" x="18" y="282" width="81" height="17"/>
-                    <constraints>
-                        <constraint firstAttribute="width" constant="77" id="5XB-yo-8jX"/>
-                    </constraints>
-                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Parameters" id="mlN-YG-fLS">
-                        <font key="font" metaFont="systemBold"/>
-                        <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
-                        <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                    </textFieldCell>
-                </textField>
-                <button translatesAutoresizingMaskIntoConstraints="NO" id="Otd-nX-zTh">
-                    <rect key="frame" x="327" y="176" width="129" height="18"/>
-                    <constraints>
-                        <constraint firstAttribute="width" relation="greaterThanOrEqual" constant="125" id="9X5-dC-041"/>
-                    </constraints>
-                    <buttonCell key="cell" type="check" title="Show password" bezelStyle="regularSquare" imagePosition="left" alignment="left" inset="2" id="UXm-73-BNy">
-                        <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
-                        <font key="font" metaFont="system"/>
-                    </buttonCell>
-                    <connections>
-                        <action selector="showPassword:" target="-2" id="TBj-zE-GcK"/>
-                    </connections>
-                </button>
-                <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="x2R-Ot-MbT">
-                    <rect key="frame" x="323" y="208" width="137" height="32"/>
-                    <constraints>
-                        <constraint firstAttribute="width" relation="greaterThanOrEqual" constant="125" id="YzV-yr-h9S"/>
-                    </constraints>
-                    <buttonCell key="cell" type="push" title="Try Registration" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="21g-eQ-0Sc">
-                        <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
-                        <font key="font" metaFont="system"/>
-                    </buttonCell>
-                    <connections>
-                        <action selector="tryRegistration:" target="-2" id="wfY-tY-fc7"/>
-                    </connections>
-                </button>
-                <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="7fA-3M-fa5">
-                    <rect key="frame" x="98" y="217" width="67" height="17"/>
-                    <constraints>
-                        <constraint firstAttribute="width" constant="63" id="dSc-Pa-3a2"/>
-                    </constraints>
-                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Username" id="4Nm-hw-379">
-                        <font key="font" metaFont="system"/>
-                        <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
-                        <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                    </textFieldCell>
-                </textField>
-                <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" misplaced="YES" translatesAutoresizingMaskIntoConstraints="NO" id="h5v-jy-4zX">
-                    <rect key="frame" x="18" y="343" width="305" height="17"/>
-                    <constraints>
-                        <constraint firstAttribute="width" relation="greaterThanOrEqual" constant="52" id="rNb-Ec-Ks4"/>
-                    </constraints>
-                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Account" id="upU-sL-9i3">
-                        <font key="font" metaFont="systemBold"/>
-                        <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
-                        <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                    </textFieldCell>
-                </textField>
-                <textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Ilk-QS-8PT">
-                    <rect key="frame" x="171" y="315" width="150" height="22"/>
-                    <constraints>
-                        <constraint firstAttribute="width" constant="150" id="3oo-Zi-5Xa"/>
-                    </constraints>
-                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="E5h-w4-Vl2">
-                        <font key="font" metaFont="system"/>
-                        <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
-                        <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
-                    </textFieldCell>
-                    <connections>
-                        <outlet property="delegate" destination="-2" id="P6p-ZD-ZVC"/>
-                    </connections>
-                </textField>
-                <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="7wz-eU-lJh">
-                    <rect key="frame" x="131" y="318" width="34" height="17"/>
-                    <constraints>
-                        <constraint firstAttribute="width" constant="30" id="TpO-qZ-6AX"/>
-                    </constraints>
-                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Alias" id="Mxv-Rt-ON6">
-                        <font key="font" metaFont="system"/>
-                        <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
-                        <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                    </textFieldCell>
-                </textField>
-                <button translatesAutoresizingMaskIntoConstraints="NO" id="T5L-Hx-tAq">
-                    <rect key="frame" x="30" y="110" width="426" height="18"/>
-                    <buttonCell key="cell" type="check" title="Auto-answer calls" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="YMy-QE-7A3">
-                        <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
-                        <font key="font" metaFont="system"/>
-                    </buttonCell>
-                    <connections>
-                        <action selector="toggleAutoAnswer:" target="-2" id="is7-Vh-7Hf"/>
-                    </connections>
-                </button>
-                <button translatesAutoresizingMaskIntoConstraints="NO" id="a4o-bf-KQu">
-                    <rect key="frame" x="30" y="79" width="168" height="18"/>
-                    <constraints>
-                        <constraint firstAttribute="width" relation="greaterThanOrEqual" constant="164" id="jr6-fZ-YC7"/>
-                    </constraints>
-                    <buttonCell key="cell" type="check" title="Use custom user-agent" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="KSm-ZB-4aj">
-                        <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
-                        <font key="font" metaFont="system"/>
-                    </buttonCell>
-                    <connections>
-                        <action selector="toggleCustomAgent:" target="-2" id="kY4-pJ-Wic"/>
-                    </connections>
-                </button>
-                <textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="y8K-Hi-TMC">
-                    <rect key="frame" x="204" y="77" width="131" height="22"/>
-                    <constraints>
-                        <constraint firstAttribute="width" constant="131" id="qbk-dr-u8z"/>
-                    </constraints>
-                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="cv3-cR-i3a">
-                        <font key="font" metaFont="system"/>
-                        <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
-                        <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
-                    </textFieldCell>
-                    <connections>
-                        <outlet property="delegate" destination="-2" id="zr5-l6-osn"/>
-                    </connections>
-                </textField>
-                <button translatesAutoresizingMaskIntoConstraints="NO" id="Rsc-fc-lz8">
-                    <rect key="frame" x="30" y="140" width="426" height="18"/>
-                    <buttonCell key="cell" type="check" title="Upnp enabled" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="N5h-tI-ZLz">
-                        <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
-                        <font key="font" metaFont="system"/>
-                    </buttonCell>
-                    <connections>
-                        <action selector="toggleUpnp:" target="-2" id="pl8-QR-BBc"/>
-                    </connections>
-                </button>
-            </subviews>
-            <constraints>
-                <constraint firstItem="Btb-K1-phc" firstAttribute="leading" secondItem="c22-O7-iKe" secondAttribute="leading" constant="58" id="02j-p1-vc3"/>
-                <constraint firstItem="7wz-eU-lJh" firstAttribute="baseline" secondItem="Ilk-QS-8PT" secondAttribute="baseline" id="0tS-nT-Ad3"/>
-                <constraint firstItem="Ilk-QS-8PT" firstAttribute="trailing" secondItem="VuA-jX-Kqu" secondAttribute="trailing" id="6by-7J-BZq"/>
-                <constraint firstItem="T5L-Hx-tAq" firstAttribute="leading" secondItem="a4o-bf-KQu" secondAttribute="leading" id="86R-RY-X82"/>
-                <constraint firstItem="Rsc-fc-lz8" firstAttribute="leading" secondItem="T5L-Hx-tAq" secondAttribute="leading" id="AEZ-dA-ag4"/>
-                <constraint firstItem="Rsc-fc-lz8" firstAttribute="top" secondItem="POs-9R-DUW" secondAttribute="bottom" constant="18" id="GSg-HW-W8s"/>
-                <constraint firstItem="T5L-Hx-tAq" firstAttribute="top" secondItem="Rsc-fc-lz8" secondAttribute="bottom" constant="16" id="H5c-Bw-EuR"/>
-                <constraint firstItem="POs-9R-DUW" firstAttribute="leading" secondItem="3ZB-JI-U6Y" secondAttribute="trailing" constant="8" id="I7j-dS-1py"/>
-                <constraint firstItem="Rsc-fc-lz8" firstAttribute="trailing" secondItem="T5L-Hx-tAq" secondAttribute="trailing" id="JlA-2p-9dJ"/>
-                <constraint firstItem="x2R-Ot-MbT" firstAttribute="leading" secondItem="Otd-nX-zTh" secondAttribute="leading" id="LeR-6H-gXC"/>
-                <constraint firstItem="a4o-bf-KQu" firstAttribute="baseline" secondItem="y8K-Hi-TMC" secondAttribute="baseline" id="NFa-EB-UB7"/>
-                <constraint firstItem="0Ej-Lr-p20" firstAttribute="top" secondItem="VuA-jX-Kqu" secondAttribute="bottom" constant="18" id="PBZ-M4-5sf"/>
-                <constraint firstItem="POs-9R-DUW" firstAttribute="top" secondItem="0Ej-Lr-p20" secondAttribute="bottom" constant="18" id="QTS-pp-LGa"/>
-                <constraint firstItem="POs-9R-DUW" firstAttribute="baseline" secondItem="Otd-nX-zTh" secondAttribute="baseline" id="QfC-xC-fSj"/>
-                <constraint firstItem="7fA-3M-fa5" firstAttribute="baseline" secondItem="0Ej-Lr-p20" secondAttribute="baseline" id="RcQ-vY-MNR"/>
-                <constraint firstItem="Ilk-QS-8PT" firstAttribute="leading" secondItem="VuA-jX-Kqu" secondAttribute="leading" id="ScZ-ku-Qt6"/>
-                <constraint firstItem="Btb-K1-phc" firstAttribute="top" secondItem="1IP-mF-EDC" secondAttribute="bottom" constant="8" symbolic="YES" id="TAM-s6-qAk"/>
-                <constraint firstItem="Btb-K1-phc" firstAttribute="baseline" secondItem="VuA-jX-Kqu" secondAttribute="baseline" id="a4x-68-V3a"/>
-                <constraint firstItem="VuA-jX-Kqu" firstAttribute="leading" secondItem="Btb-K1-phc" secondAttribute="trailing" constant="8" id="dlB-OY-I2d"/>
-                <constraint firstItem="x2R-Ot-MbT" firstAttribute="leading" secondItem="0Ej-Lr-p20" secondAttribute="trailing" constant="8" symbolic="YES" id="exl-et-srf"/>
-                <constraint firstItem="0Ej-Lr-p20" firstAttribute="leading" secondItem="VuA-jX-Kqu" secondAttribute="leading" id="fSc-SN-jcG"/>
-                <constraint firstItem="Rsc-fc-lz8" firstAttribute="leading" secondItem="c22-O7-iKe" secondAttribute="leading" constant="32" id="fah-vG-Bbw"/>
-                <constraint firstItem="Ilk-QS-8PT" firstAttribute="top" secondItem="h5v-jy-4zX" secondAttribute="bottom" constant="6" id="fm7-AZ-P8e"/>
-                <constraint firstItem="a4o-bf-KQu" firstAttribute="top" secondItem="T5L-Hx-tAq" secondAttribute="bottom" constant="17" id="g8X-uT-844"/>
-                <constraint firstItem="h5v-jy-4zX" firstAttribute="top" secondItem="c22-O7-iKe" secondAttribute="top" constant="20" symbolic="YES" id="gQs-pR-Wa3"/>
-                <constraint firstItem="Ilk-QS-8PT" firstAttribute="leading" secondItem="7wz-eU-lJh" secondAttribute="trailing" constant="8" symbolic="YES" id="gXl-g0-zFa"/>
-                <constraint firstItem="y8K-Hi-TMC" firstAttribute="leading" secondItem="a4o-bf-KQu" secondAttribute="trailing" constant="8" id="joX-fO-ZF6"/>
-                <constraint firstItem="h5v-jy-4zX" firstAttribute="leading" secondItem="c22-O7-iKe" secondAttribute="leading" constant="20" symbolic="YES" id="jvd-5E-ELU"/>
-                <constraint firstItem="VuA-jX-Kqu" firstAttribute="trailing" secondItem="0Ej-Lr-p20" secondAttribute="trailing" id="kvC-h2-4aI"/>
-                <constraint firstItem="POs-9R-DUW" firstAttribute="leading" secondItem="VuA-jX-Kqu" secondAttribute="leading" id="pMK-S0-Fo4"/>
-                <constraint firstItem="Otd-nX-zTh" firstAttribute="leading" secondItem="POs-9R-DUW" secondAttribute="trailing" constant="8" symbolic="YES" id="u5z-hY-991"/>
-                <constraint firstItem="Otd-nX-zTh" firstAttribute="trailing" secondItem="Rsc-fc-lz8" secondAttribute="trailing" id="uS1-sG-02m"/>
-                <constraint firstItem="h5v-jy-4zX" firstAttribute="leading" secondItem="1IP-mF-EDC" secondAttribute="leading" id="vaP-I3-Bar"/>
-                <constraint firstItem="0Ej-Lr-p20" firstAttribute="top" secondItem="x2R-Ot-MbT" secondAttribute="top" id="yff-K0-lVz"/>
-                <constraint firstItem="3ZB-JI-U6Y" firstAttribute="top" secondItem="POs-9R-DUW" secondAttribute="top" id="zTM-fU-L3O"/>
-                <constraint firstItem="VuA-jX-Kqu" firstAttribute="top" secondItem="Ilk-QS-8PT" secondAttribute="bottom" constant="39" id="zXV-S3-dmt"/>
-                <constraint firstItem="0Ej-Lr-p20" firstAttribute="leading" secondItem="7fA-3M-fa5" secondAttribute="trailing" constant="8" id="zhV-Nm-bmz"/>
-            </constraints>
-            <point key="canvasLocation" x="-41" y="37"/>
-        </customView>
-    </objects>
-</document>
diff --git a/ui/Base.lproj/AccMedia.xib b/ui/Base.lproj/AccMedia.xib
index a7e904b0e428dde6a20d790993b579e2d4ffc8eb..031066835cee185b1de4c4c7b17952ca1a95b634 100644
--- a/ui/Base.lproj/AccMedia.xib
+++ b/ui/Base.lproj/AccMedia.xib
@@ -1,10 +1,11 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="9532" systemVersion="15D21" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" customObjectInstantitationMethod="direct">
+<?xml version="1.0" encoding="UTF-8"?>
+<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="14113" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" customObjectInstantitationMethod="direct">
     <dependencies>
-        <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="9532"/>
+        <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="14113"/>
+        <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
     </dependencies>
     <objects>
-        <customObject id="-2" userLabel="File's Owner" customClass="AccMediaVC">
+        <customObject id="-2" userLabel="File's Owner">
             <connections>
                 <outlet property="audioCodecView" destination="Hoj-hM-iTN" id="bAp-p8-i65"/>
                 <outlet property="enableRingtone" destination="Hmk-UR-N3c" id="vlb-nT-QF0"/>
@@ -24,6 +25,7 @@
             <subviews>
                 <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="qs3-sN-wPV">
                     <rect key="frame" x="18" y="361" width="53" height="17"/>
+                    <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
                     <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Codecs" id="biN-bX-qM1">
                         <font key="font" metaFont="systemBold"/>
                         <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
@@ -32,6 +34,7 @@
                 </textField>
                 <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="ipf-oU-a70">
                     <rect key="frame" x="18" y="433" width="72" height="17"/>
+                    <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
                     <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Ringtones" id="aMg-uJ-Krx">
                         <font key="font" metaFont="systemBold"/>
                         <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
@@ -40,6 +43,7 @@
                 </textField>
                 <button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Hmk-UR-N3c">
                     <rect key="frame" x="30" y="399" width="128" height="18"/>
+                    <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
                     <buttonCell key="cell" type="check" title="Enable ringtones" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="KkI-i1-mfY">
                         <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
                         <font key="font" metaFont="system"/>
@@ -50,6 +54,7 @@
                 </button>
                 <popUpButton verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="eWp-24-n2G">
                     <rect key="frame" x="162" y="395" width="144" height="26"/>
+                    <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
                     <popUpButtonCell key="cell" type="push" bezelStyle="rounded" alignment="left" lineBreakMode="truncatingTail" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" id="Gqo-nO-EkC">
                         <behavior key="behavior" lightByBackground="YES" lightByGray="YES"/>
                         <font key="font" metaFont="menu"/>
@@ -65,6 +70,7 @@
                 </popUpButton>
                 <scrollView fixedFrame="YES" autohidesScrollers="YES" horizontalLineScroll="42" horizontalPageScroll="10" verticalLineScroll="42" verticalPageScroll="10" hasVerticalScroller="NO" usesPredominantAxisScrolling="NO" horizontalScrollElasticity="none" translatesAutoresizingMaskIntoConstraints="NO" id="1xr-Cs-qFP">
                     <rect key="frame" x="32" y="81" width="200" height="205"/>
+                    <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
                     <clipView key="contentView" ambiguous="YES" copiesOnScroll="NO" id="cqt-a3-hZH">
                         <rect key="frame" x="1" y="1" width="198" height="203"/>
                         <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
@@ -76,7 +82,7 @@
                                 <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
                                 <color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/>
                                 <tableColumns>
-                                    <tableColumn width="195" minWidth="40" maxWidth="1000" id="CzT-TV-KoW">
+                                    <tableColumn identifier="" width="195" minWidth="40" maxWidth="1000" id="CzT-TV-KoW">
                                         <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border">
                                             <font key="font" metaFont="smallSystem"/>
                                             <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
@@ -95,6 +101,7 @@
                                                 <subviews>
                                                     <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" tag="200" translatesAutoresizingMaskIntoConstraints="NO" id="xSu-Oj-Kce">
                                                         <rect key="frame" x="35" y="20" width="159" height="17"/>
+                                                        <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
                                                         <textFieldCell key="cell" lineBreakMode="truncatingTail" sendsActionOnEndEditing="YES" placeholderString="Name" id="rU5-XQ-Ixc">
                                                             <font key="font" metaFont="system"/>
                                                             <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
@@ -103,6 +110,7 @@
                                                     </textField>
                                                     <button fixedFrame="YES" tag="100" translatesAutoresizingMaskIntoConstraints="NO" id="v16-wU-2zM">
                                                         <rect key="frame" x="1" y="5" width="30" height="30"/>
+                                                        <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
                                                         <buttonCell key="cell" type="check" bezelStyle="regularSquare" imagePosition="overlaps" state="on" inset="2" id="kdp-cm-f6N">
                                                             <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
                                                             <font key="font" metaFont="system"/>
@@ -113,6 +121,7 @@
                                                     </button>
                                                     <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" tag="300" translatesAutoresizingMaskIntoConstraints="NO" id="2FR-NB-tMy">
                                                         <rect key="frame" x="35" y="3" width="159" height="17"/>
+                                                        <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
                                                         <textFieldCell key="cell" lineBreakMode="truncatingTail" sendsActionOnEndEditing="YES" title="details" placeholderString="Frequency" id="dwG-Ro-bIS">
                                                             <font key="font" metaFont="smallSystem"/>
                                                             <color key="textColor" name="secondaryLabelColor" catalog="System" colorSpace="catalog"/>
@@ -129,7 +138,6 @@
                                 </connections>
                             </outlineView>
                         </subviews>
-                        <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
                     </clipView>
                     <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="YES" id="wwL-yp-CBf">
                         <rect key="frame" x="1" y="-15" width="0.0" height="16"/>
@@ -142,6 +150,7 @@
                 </scrollView>
                 <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="sIN-vg-V1h">
                     <rect key="frame" x="305" y="390" width="66" height="32"/>
+                    <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
                     <buttonCell key="cell" type="push" title="Play" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="hHf-uc-NlW">
                         <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
                         <font key="font" metaFont="system"/>
@@ -152,6 +161,7 @@
                 </button>
                 <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="iuV-An-36N">
                     <rect key="frame" x="135" y="294" width="39" height="17"/>
+                    <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
                     <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Audio" id="gzX-Wc-S6g">
                         <font key="font" metaFont="system"/>
                         <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
@@ -160,9 +170,11 @@
                 </textField>
                 <customView fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Y2B-8B-e3u">
                     <rect key="frame" x="240" y="20" width="233" height="266"/>
+                    <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
                     <subviews>
                         <scrollView fixedFrame="YES" autohidesScrollers="YES" horizontalLineScroll="42" horizontalPageScroll="10" verticalLineScroll="42" verticalPageScroll="10" hasVerticalScroller="NO" usesPredominantAxisScrolling="NO" horizontalScrollElasticity="none" translatesAutoresizingMaskIntoConstraints="NO" id="72G-E0-wtX">
                             <rect key="frame" x="13" y="61" width="200" height="205"/>
+                            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
                             <clipView key="contentView" ambiguous="YES" copiesOnScroll="NO" id="oo6-Wd-J44">
                                 <rect key="frame" x="1" y="1" width="198" height="203"/>
                                 <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
@@ -174,7 +186,7 @@
                                         <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
                                         <color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/>
                                         <tableColumns>
-                                            <tableColumn width="195" minWidth="40" maxWidth="1000" id="Xys-sR-hUl">
+                                            <tableColumn identifier="" width="195" minWidth="40" maxWidth="1000" id="Xys-sR-hUl">
                                                 <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border">
                                                     <font key="font" metaFont="smallSystem"/>
                                                     <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
@@ -193,6 +205,7 @@
                                                         <subviews>
                                                             <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" tag="200" translatesAutoresizingMaskIntoConstraints="NO" id="2Wg-ix-gd0">
                                                                 <rect key="frame" x="35" y="12" width="159" height="17"/>
+                                                                <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
                                                                 <textFieldCell key="cell" lineBreakMode="truncatingTail" sendsActionOnEndEditing="YES" placeholderString="Name" id="pvl-9U-X4l">
                                                                     <font key="font" metaFont="system"/>
                                                                     <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
@@ -201,6 +214,7 @@
                                                             </textField>
                                                             <button fixedFrame="YES" tag="100" translatesAutoresizingMaskIntoConstraints="NO" id="bmj-hW-xma">
                                                                 <rect key="frame" x="1" y="5" width="30" height="30"/>
+                                                                <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
                                                                 <buttonCell key="cell" type="check" bezelStyle="regularSquare" imagePosition="overlaps" state="on" inset="2" id="HHE-ru-HhM">
                                                                     <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
                                                                     <font key="font" metaFont="system"/>
@@ -219,7 +233,6 @@
                                         </connections>
                                     </outlineView>
                                 </subviews>
-                                <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
                             </clipView>
                             <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="YES" id="IIE-4D-V6r">
                                 <rect key="frame" x="1" y="-15" width="0.0" height="16"/>
@@ -232,6 +245,7 @@
                         </scrollView>
                         <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="6XD-mL-R1J">
                             <rect key="frame" x="58" y="13" width="76" height="32"/>
+                            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
                             <buttonCell key="cell" type="push" title="Down" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="gza-RF-yKF">
                                 <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
                                 <font key="font" metaFont="system"/>
@@ -242,6 +256,7 @@
                         </button>
                         <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="d0K-3G-ydc">
                             <rect key="frame" x="7" y="13" width="58" height="32"/>
+                            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
                             <buttonCell key="cell" type="push" title="Up" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="CO7-VF-04Q">
                                 <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
                                 <font key="font" metaFont="system"/>
@@ -254,6 +269,7 @@
                 </customView>
                 <textField verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="oh2-sl-p3s">
                     <rect key="frame" x="30" y="319" width="485" height="34"/>
+                    <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
                     <textFieldCell key="cell" sendsActionOnEndEditing="YES" id="rRr-la-G9L">
                         <font key="font" metaFont="system"/>
                         <string key="title">Codecs are used when establishing a communication with someone. They are activable and reorderable (first enabled in list preferred)</string>
@@ -263,6 +279,7 @@
                 </textField>
                 <button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="yIN-c8-0R3">
                     <rect key="frame" x="341" y="295" width="71" height="18"/>
+                    <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
                     <buttonCell key="cell" type="check" title="Video" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="OSC-eG-2kt">
                         <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
                         <font key="font" metaFont="system"/>
@@ -271,18 +288,9 @@
                         <action selector="toggleVideoEnabled:" target="-2" id="Q4i-b7-zYa"/>
                     </connections>
                 </button>
-                <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="zaU-3l-OYA">
-                    <rect key="frame" x="26" y="33" width="58" height="32"/>
-                    <buttonCell key="cell" type="push" title="Up" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="MbZ-7X-K5I">
-                        <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
-                        <font key="font" metaFont="system"/>
-                    </buttonCell>
-                    <connections>
-                        <action selector="moveAudioCodecUp:" target="-2" id="Fxa-M6-ybo"/>
-                    </connections>
-                </button>
                 <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="xN7-EP-314">
                     <rect key="frame" x="77" y="33" width="76" height="32"/>
+                    <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
                     <buttonCell key="cell" type="push" title="Down" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="Bbz-hd-1CE">
                         <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
                         <font key="font" metaFont="system"/>
diff --git a/ui/Base.lproj/AccRing.xib b/ui/Base.lproj/AccRing.xib
deleted file mode 100644
index bdc49e5e97fc74a8740b0aaf25831e41d4841964..0000000000000000000000000000000000000000
--- a/ui/Base.lproj/AccRing.xib
+++ /dev/null
@@ -1,329 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="13196" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES">
-    <dependencies>
-        <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="13196"/>
-        <capability name="Alignment constraints to the first baseline" minToolsVersion="6.0"/>
-        <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
-    </dependencies>
-    <objects>
-        <customObject id="-2" userLabel="File's Owner" customClass="AccRingVC">
-            <connections>
-                <outlet property="aliasTextField" destination="D7f-4A-xXM" id="i9Y-jZ-iWM"/>
-                <outlet property="allowContacts" destination="Zpn-KI-Jfm" id="Kni-5a-nbF"/>
-                <outlet property="allowHistory" destination="c6K-nF-ezL" id="d4A-JI-MHb"/>
-                <outlet property="allowUnknown" destination="reK-M8-Eie" id="cVi-aY-v2K"/>
-                <outlet property="autoAnswerButton" destination="6uh-UC-6i9" id="6e1-1I-OY3"/>
-                <outlet property="blockchainField" destination="gCl-aM-td9" id="0yr-mK-DoC"/>
-                <outlet property="bootstrapField" destination="phb-wW-DQS" id="kcY-7z-bjM"/>
-                <outlet property="registerBlockchainNameButton" destination="Ddu-Gm-dVv" id="65l-z1-9ta"/>
-                <outlet property="registeredNameField" destination="MwI-Dp-6ii" id="zxN-3A-N0P"/>
-                <outlet property="ringIDField" destination="c6M-WV-uVk" id="mjI-fW-Ft2"/>
-                <outlet property="upnpButton" destination="eaR-8q-smW" id="8KN-3k-B3c"/>
-                <outlet property="userAgentButton" destination="e6G-kW-opo" id="HC1-QL-Z0U"/>
-                <outlet property="userAgentTextField" destination="fJM-4J-mvZ" id="2jX-ak-jgJ"/>
-                <outlet property="view" destination="Hz6-mo-xeY" id="SZA-8c-IZl"/>
-            </connections>
-        </customObject>
-        <customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/>
-        <customObject id="-3" userLabel="Application" customClass="NSObject"/>
-        <customView id="Hz6-mo-xeY">
-            <rect key="frame" x="0.0" y="0.0" width="629" height="445"/>
-            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
-            <subviews>
-                <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="iSd-2v-I3h">
-                    <rect key="frame" x="18" y="408" width="58" height="17"/>
-                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Account" id="1Sx-Et-CDM">
-                        <font key="font" metaFont="systemBold"/>
-                        <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
-                        <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                    </textFieldCell>
-                </textField>
-                <textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="D7f-4A-xXM">
-                    <rect key="frame" x="155" y="379" width="154" height="21"/>
-                    <constraints>
-                        <constraint firstAttribute="width" constant="154" id="OIw-ij-Jc7"/>
-                    </constraints>
-                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" placeholderString="Name or nickname..." bezelStyle="round" id="HN3-i9-zmw">
-                        <font key="font" metaFont="system"/>
-                        <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
-                        <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
-                    </textFieldCell>
-                    <connections>
-                        <outlet property="delegate" destination="-2" id="6da-DY-mtf"/>
-                    </connections>
-                </textField>
-                <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="idQ-yZ-XB3">
-                    <rect key="frame" x="18" y="381" width="131" height="17"/>
-                    <constraints>
-                        <constraint firstAttribute="width" constant="127" id="4zR-td-c0O"/>
-                    </constraints>
-                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Alias" id="Wzq-V2-YLU">
-                        <font key="font" metaFont="system"/>
-                        <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
-                        <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                    </textFieldCell>
-                </textField>
-                <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="FlW-Vd-Eem">
-                    <rect key="frame" x="38" y="292" width="112" height="17"/>
-                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Bootstrap server" id="B6b-iB-REZ">
-                        <font key="font" metaFont="system"/>
-                        <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
-                        <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                    </textFieldCell>
-                </textField>
-                <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="u7B-1Y-aZ4">
-                    <rect key="frame" x="40" y="356" width="112" height="17"/>
-                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="RingID" id="8WI-fC-Due">
-                        <font key="font" metaFont="system"/>
-                        <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
-                        <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                    </textFieldCell>
-                </textField>
-                <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="ACD-mw-NMI">
-                    <rect key="frame" x="40" y="329" width="112" height="17"/>
-                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Registered Name" id="sBB-y7-xhL">
-                        <font key="font" metaFont="system"/>
-                        <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
-                        <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                    </textFieldCell>
-                </textField>
-                <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="DUI-3g-gHb">
-                    <rect key="frame" x="18" y="105" width="85" height="17"/>
-                    <constraints>
-                        <constraint firstAttribute="width" constant="81" id="9yh-6o-5CF"/>
-                    </constraints>
-                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Permissions" id="EDd-FX-wcz">
-                        <font key="font" metaFont="systemBold"/>
-                        <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
-                        <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                    </textFieldCell>
-                </textField>
-                <textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="phb-wW-DQS">
-                    <rect key="frame" x="158" y="289" width="303" height="22"/>
-                    <constraints>
-                        <constraint firstAttribute="width" constant="303" id="jgH-aI-hLW"/>
-                    </constraints>
-                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" bezelStyle="round" id="WQz-3X-MeC">
-                        <font key="font" metaFont="system"/>
-                        <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
-                        <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
-                    </textFieldCell>
-                    <connections>
-                        <outlet property="delegate" destination="-2" id="2dc-GE-Fic"/>
-                    </connections>
-                </textField>
-                <button translatesAutoresizingMaskIntoConstraints="NO" id="6uh-UC-6i9">
-                    <rect key="frame" x="40" y="203" width="135" height="18"/>
-                    <constraints>
-                        <constraint firstAttribute="width" constant="131" id="ucC-Fg-wm2"/>
-                    </constraints>
-                    <buttonCell key="cell" type="check" title="Auto-answer calls" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="OeY-na-0YT">
-                        <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
-                        <font key="font" metaFont="system"/>
-                    </buttonCell>
-                    <connections>
-                        <action selector="toggleAutoAnswer:" target="-2" id="ir9-1A-f2c"/>
-                    </connections>
-                </button>
-                <button translatesAutoresizingMaskIntoConstraints="NO" id="e6G-kW-opo">
-                    <rect key="frame" x="40" y="173" width="168" height="18"/>
-                    <constraints>
-                        <constraint firstAttribute="width" constant="164" id="8KH-j1-D7I"/>
-                    </constraints>
-                    <buttonCell key="cell" type="check" title="Use custom user-agent" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="ddk-1G-0jU">
-                        <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
-                        <font key="font" metaFont="system"/>
-                    </buttonCell>
-                    <connections>
-                        <action selector="toggleCustomAgent:" target="-2" id="SZh-M9-dRS"/>
-                    </connections>
-                </button>
-                <textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="fJM-4J-mvZ">
-                    <rect key="frame" x="214" y="171" width="195" height="22"/>
-                    <constraints>
-                        <constraint firstAttribute="width" constant="195" id="pup-8Z-mAe"/>
-                    </constraints>
-                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" bezelStyle="round" id="Rs0-jZ-NYs">
-                        <font key="font" metaFont="system"/>
-                        <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
-                        <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
-                    </textFieldCell>
-                    <connections>
-                        <outlet property="delegate" destination="-2" id="fRb-fH-3R6"/>
-                    </connections>
-                </textField>
-                <button translatesAutoresizingMaskIntoConstraints="NO" id="eaR-8q-smW">
-                    <rect key="frame" x="40" y="233" width="110" height="18"/>
-                    <buttonCell key="cell" type="check" title="Upnp enabled" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="lHI-bz-ddQ">
-                        <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
-                        <font key="font" metaFont="system"/>
-                    </buttonCell>
-                    <connections>
-                        <action selector="toggleUpnp:" target="-2" id="Ptl-25-3Xz"/>
-                    </connections>
-                </button>
-                <button translatesAutoresizingMaskIntoConstraints="NO" id="c6K-nF-ezL">
-                    <rect key="frame" x="40" y="47" width="571" height="18"/>
-                    <buttonCell key="cell" type="check" title="Allow calls from peers in your call history" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="PaC-xE-SHA">
-                        <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
-                        <font key="font" metaFont="system"/>
-                    </buttonCell>
-                    <connections>
-                        <action selector="toggleAllowFromHistory:" target="-2" id="nl2-H4-ARL"/>
-                    </connections>
-                </button>
-                <button translatesAutoresizingMaskIntoConstraints="NO" id="reK-M8-Eie">
-                    <rect key="frame" x="40" y="74" width="571" height="18"/>
-                    <buttonCell key="cell" type="check" title="Allow calls from unknown peers" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="kmI-jb-aal">
-                        <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
-                        <font key="font" metaFont="system"/>
-                    </buttonCell>
-                    <connections>
-                        <action selector="toggleAllowFromUnknown:" target="-2" id="St8-jV-rUj"/>
-                    </connections>
-                </button>
-                <button translatesAutoresizingMaskIntoConstraints="NO" id="Zpn-KI-Jfm">
-                    <rect key="frame" x="40" y="21" width="571" height="18"/>
-                    <buttonCell key="cell" type="check" title="Allow calls from peers in your contact list" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="fX7-9W-XFl">
-                        <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
-                        <font key="font" metaFont="system"/>
-                    </buttonCell>
-                    <connections>
-                        <action selector="toggleAllowFromContacts:" target="-2" id="s1A-th-o6G"/>
-                    </connections>
-                </button>
-                <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="MwI-Dp-6ii">
-                    <rect key="frame" x="154" y="329" width="411" height="17"/>
-                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" sendsActionOnEndEditing="YES" alignment="left" placeholderString="" id="19d-qq-55F">
-                        <font key="font" metaFont="systemBold"/>
-                        <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
-                        <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                    </textFieldCell>
-                    <attributedString key="userComments">
-                        <fragment content="Display hash ring">
-                            <attributes>
-                                <font key="NSFont" metaFont="smallSystem"/>
-                                <paragraphStyle key="NSParagraphStyle" alignment="natural" lineBreakMode="wordWrapping" baseWritingDirection="natural"/>
-                            </attributes>
-                        </fragment>
-                    </attributedString>
-                </textField>
-                <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Mcy-ih-XuK">
-                    <rect key="frame" x="38" y="262" width="112" height="17"/>
-                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Blockchain server" id="fSU-Pc-Y5a">
-                        <font key="font" metaFont="system"/>
-                        <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
-                        <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                    </textFieldCell>
-                </textField>
-                <textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="gCl-aM-td9">
-                    <rect key="frame" x="157" y="257" width="303" height="22"/>
-                    <constraints>
-                        <constraint firstAttribute="width" constant="303" id="7hV-Jk-qZt"/>
-                    </constraints>
-                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" enabled="NO" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" bezelStyle="round" id="Dwo-oq-fKh">
-                        <font key="font" metaFont="system"/>
-                        <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
-                        <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
-                    </textFieldCell>
-                    <connections>
-                        <outlet property="delegate" destination="-2" id="4tC-UG-SoS"/>
-                    </connections>
-                </textField>
-                <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="c6M-WV-uVk">
-                    <rect key="frame" x="156" y="356" width="411" height="17"/>
-                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" sendsActionOnEndEditing="YES" alignment="left" placeholderString="" id="cf0-xD-2WZ">
-                        <font key="font" metaFont="systemBold"/>
-                        <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
-                        <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                    </textFieldCell>
-                    <attributedString key="userComments">
-                        <fragment content="Display hash ring">
-                            <attributes>
-                                <font key="NSFont" metaFont="smallSystem"/>
-                                <paragraphStyle key="NSParagraphStyle" alignment="natural" lineBreakMode="wordWrapping" baseWritingDirection="natural"/>
-                            </attributes>
-                        </fragment>
-                    </attributedString>
-                </textField>
-                <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Ddu-Gm-dVv">
-                    <rect key="frame" x="152" y="320" width="127" height="32"/>
-                    <buttonCell key="cell" type="push" title="Register name" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="G8M-go-xvD">
-                        <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
-                        <font key="font" metaFont="system"/>
-                    </buttonCell>
-                    <connections>
-                        <action selector="startNameRegistration:" target="-2" id="ASJ-KU-yTA"/>
-                    </connections>
-                </button>
-                <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="b5O-ep-JwZ">
-                    <rect key="frame" x="36" y="131" width="149" height="32"/>
-                    <buttonCell key="cell" type="push" title="Change password" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="UIB-sT-8jc">
-                        <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
-                        <font key="font" metaFont="system"/>
-                    </buttonCell>
-                    <connections>
-                        <action selector="changePassword:" target="-2" id="43h-0j-gON"/>
-                    </connections>
-                </button>
-            </subviews>
-            <constraints>
-                <constraint firstItem="Mcy-ih-XuK" firstAttribute="top" secondItem="gCl-aM-td9" secondAttribute="top" id="088-R8-A7x"/>
-                <constraint firstItem="u7B-1Y-aZ4" firstAttribute="baseline" secondItem="c6M-WV-uVk" secondAttribute="baseline" id="0Lq-Wb-NQd"/>
-                <constraint firstItem="gCl-aM-td9" firstAttribute="leading" secondItem="Mcy-ih-XuK" secondAttribute="trailing" constant="9" id="0T9-E2-CTQ"/>
-                <constraint firstItem="D7f-4A-xXM" firstAttribute="baseline" secondItem="idQ-yZ-XB3" secondAttribute="firstBaseline" id="0pf-Su-5OZ"/>
-                <constraint firstItem="c6M-WV-uVk" firstAttribute="top" secondItem="D7f-4A-xXM" secondAttribute="bottom" constant="6" id="2xe-gB-xBJ"/>
-                <constraint firstItem="FlW-Vd-Eem" firstAttribute="trailing" secondItem="Mcy-ih-XuK" secondAttribute="trailing" id="3Dw-ZK-jwp"/>
-                <constraint firstItem="ACD-mw-NMI" firstAttribute="baseline" secondItem="MwI-Dp-6ii" secondAttribute="baseline" id="8Z6-Su-7YZ"/>
-                <constraint firstItem="iSd-2v-I3h" firstAttribute="leading" secondItem="Hz6-mo-xeY" secondAttribute="leading" constant="20" symbolic="YES" id="9C2-zB-eSk"/>
-                <constraint firstItem="DUI-3g-gHb" firstAttribute="leading" secondItem="idQ-yZ-XB3" secondAttribute="leading" id="9fo-yX-dnP"/>
-                <constraint firstItem="gCl-aM-td9" firstAttribute="top" secondItem="phb-wW-DQS" secondAttribute="bottom" constant="10" id="AY5-6L-Kqx"/>
-                <constraint firstItem="u7B-1Y-aZ4" firstAttribute="leading" secondItem="ACD-mw-NMI" secondAttribute="leading" id="AaV-Gh-QE1"/>
-                <constraint firstItem="idQ-yZ-XB3" firstAttribute="top" secondItem="iSd-2v-I3h" secondAttribute="bottom" constant="10" id="CE9-x9-fe5"/>
-                <constraint firstItem="D7f-4A-xXM" firstAttribute="leading" secondItem="idQ-yZ-XB3" secondAttribute="trailing" constant="8" symbolic="YES" id="Cb6-Mc-o5P"/>
-                <constraint firstItem="ACD-mw-NMI" firstAttribute="leading" secondItem="eaR-8q-smW" secondAttribute="leading" id="Cpf-nt-I9h"/>
-                <constraint firstItem="Ddu-Gm-dVv" firstAttribute="leading" secondItem="ACD-mw-NMI" secondAttribute="trailing" constant="8" symbolic="YES" id="DyM-eD-6Fi"/>
-                <constraint firstItem="idQ-yZ-XB3" firstAttribute="baseline" secondItem="D7f-4A-xXM" secondAttribute="baseline" id="EOp-OD-A8f"/>
-                <constraint firstItem="FlW-Vd-Eem" firstAttribute="leading" secondItem="Hz6-mo-xeY" secondAttribute="leading" constant="40" id="Eed-m7-lZ3"/>
-                <constraint firstItem="e6G-kW-opo" firstAttribute="top" secondItem="6uh-UC-6i9" secondAttribute="bottom" constant="16" id="F1x-0c-Ger"/>
-                <constraint firstItem="c6K-nF-ezL" firstAttribute="top" secondItem="reK-M8-Eie" secondAttribute="bottom" constant="13" id="FBI-fX-Uj6"/>
-                <constraint firstItem="FlW-Vd-Eem" firstAttribute="centerY" secondItem="phb-wW-DQS" secondAttribute="centerY" id="HMW-aR-IfK"/>
-                <constraint firstItem="c6K-nF-ezL" firstAttribute="trailing" secondItem="Zpn-KI-Jfm" secondAttribute="trailing" id="HPc-Ww-Fs6"/>
-                <constraint firstItem="eaR-8q-smW" firstAttribute="leading" secondItem="6uh-UC-6i9" secondAttribute="leading" id="Jm2-Y9-vi6"/>
-                <constraint firstItem="idQ-yZ-XB3" firstAttribute="centerY" secondItem="D7f-4A-xXM" secondAttribute="centerY" id="Jul-sT-nCJ"/>
-                <constraint firstItem="e6G-kW-opo" firstAttribute="centerY" secondItem="fJM-4J-mvZ" secondAttribute="centerY" id="K6f-72-eFR"/>
-                <constraint firstItem="b5O-ep-JwZ" firstAttribute="top" secondItem="e6G-kW-opo" secondAttribute="bottom" constant="16" id="O0p-WC-jQx"/>
-                <constraint firstItem="reK-M8-Eie" firstAttribute="top" secondItem="DUI-3g-gHb" secondAttribute="bottom" constant="15" id="Pdl-rB-B7s"/>
-                <constraint firstItem="phb-wW-DQS" firstAttribute="top" secondItem="Ddu-Gm-dVv" secondAttribute="bottom" constant="16" id="QZg-59-HHA"/>
-                <constraint firstItem="iSd-2v-I3h" firstAttribute="top" secondItem="Hz6-mo-xeY" secondAttribute="top" constant="20" symbolic="YES" id="QmT-MQ-AUa"/>
-                <constraint firstItem="Zpn-KI-Jfm" firstAttribute="top" secondItem="c6K-nF-ezL" secondAttribute="bottom" constant="12" id="U30-P5-8cs"/>
-                <constraint firstItem="Mcy-ih-XuK" firstAttribute="trailing" secondItem="eaR-8q-smW" secondAttribute="trailing" id="VJb-1G-Eeb"/>
-                <constraint firstItem="c6M-WV-uVk" firstAttribute="leading" secondItem="Ddu-Gm-dVv" secondAttribute="leading" id="bhF-J6-14r"/>
-                <constraint firstItem="eaR-8q-smW" firstAttribute="top" secondItem="Mcy-ih-XuK" secondAttribute="bottom" constant="13" id="cbk-YJ-gyw"/>
-                <constraint firstItem="ACD-mw-NMI" firstAttribute="centerY" secondItem="Ddu-Gm-dVv" secondAttribute="centerY" id="fzo-Vk-RNV"/>
-                <constraint firstAttribute="trailing" secondItem="MwI-Dp-6ii" secondAttribute="trailing" constant="66" id="g8q-qo-81E"/>
-                <constraint firstItem="c6K-nF-ezL" firstAttribute="leading" secondItem="Zpn-KI-Jfm" secondAttribute="leading" id="imu-G3-5BC"/>
-                <constraint firstItem="iSd-2v-I3h" firstAttribute="leading" secondItem="idQ-yZ-XB3" secondAttribute="leading" id="jQT-cz-HzH"/>
-                <constraint firstAttribute="trailing" secondItem="c6M-WV-uVk" secondAttribute="trailing" constant="64" id="l6X-by-ylJ"/>
-                <constraint firstItem="reK-M8-Eie" firstAttribute="leading" secondItem="c6K-nF-ezL" secondAttribute="leading" id="o1h-vX-h9J"/>
-                <constraint firstItem="fJM-4J-mvZ" firstAttribute="leading" secondItem="e6G-kW-opo" secondAttribute="trailing" constant="8" symbolic="YES" id="pJ0-Er-GbJ"/>
-                <constraint firstItem="DUI-3g-gHb" firstAttribute="top" secondItem="b5O-ep-JwZ" secondAttribute="bottom" constant="16" id="qwW-Da-9eq"/>
-                <constraint firstItem="phb-wW-DQS" firstAttribute="leading" secondItem="FlW-Vd-Eem" secondAttribute="trailing" constant="10" id="rbD-in-h2a"/>
-                <constraint firstItem="Ddu-Gm-dVv" firstAttribute="top" secondItem="c6M-WV-uVk" secondAttribute="bottom" constant="8" id="s8c-MY-9QO"/>
-                <constraint firstItem="6uh-UC-6i9" firstAttribute="leading" secondItem="e6G-kW-opo" secondAttribute="leading" id="sKK-Sp-j9H"/>
-                <constraint firstItem="MwI-Dp-6ii" firstAttribute="leading" secondItem="ACD-mw-NMI" secondAttribute="trailing" constant="6" id="uD6-eE-7Cm"/>
-                <constraint firstItem="FlW-Vd-Eem" firstAttribute="leading" secondItem="Mcy-ih-XuK" secondAttribute="leading" id="uDa-13-qvQ"/>
-                <constraint firstItem="reK-M8-Eie" firstAttribute="trailing" secondItem="c6K-nF-ezL" secondAttribute="trailing" id="v1t-Gm-Bgr"/>
-                <constraint firstItem="Ddu-Gm-dVv" firstAttribute="leading" secondItem="phb-wW-DQS" secondAttribute="leading" id="vXt-cg-jHD"/>
-                <constraint firstItem="b5O-ep-JwZ" firstAttribute="leading" secondItem="e6G-kW-opo" secondAttribute="leading" id="wVp-Ed-agN"/>
-                <constraint firstItem="u7B-1Y-aZ4" firstAttribute="leading" secondItem="Hz6-mo-xeY" secondAttribute="leading" constant="42" id="wxa-gJ-bNx"/>
-                <constraint firstItem="6uh-UC-6i9" firstAttribute="top" secondItem="eaR-8q-smW" secondAttribute="bottom" constant="16" id="xE2-Hc-W8P"/>
-                <constraint firstItem="c6M-WV-uVk" firstAttribute="leading" secondItem="u7B-1Y-aZ4" secondAttribute="trailing" constant="8" symbolic="YES" id="xNm-4M-mkk"/>
-                <constraint firstAttribute="trailing" secondItem="reK-M8-Eie" secondAttribute="trailing" constant="20" symbolic="YES" id="zL7-hR-J7q"/>
-                <constraint firstItem="reK-M8-Eie" firstAttribute="leading" secondItem="e6G-kW-opo" secondAttribute="leading" id="zNM-4E-UIY"/>
-            </constraints>
-            <point key="canvasLocation" x="210.5" y="212.5"/>
-        </customView>
-        <userDefaultsController representsSharedInstance="YES" id="OEq-Ja-Vda"/>
-    </objects>
-</document>
diff --git a/ui/Base.lproj/AccRingGeneral.xib b/ui/Base.lproj/AccRingGeneral.xib
new file mode 100644
index 0000000000000000000000000000000000000000..2d131f3436faef6d0a5bed7c7c7c2c5d156f5b0b
--- /dev/null
+++ b/ui/Base.lproj/AccRingGeneral.xib
@@ -0,0 +1,540 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="14113" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES">
+    <dependencies>
+        <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="14113"/>
+        <capability name="box content view" minToolsVersion="7.0"/>
+        <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
+        <capability name="system font weights other than Regular or Bold" minToolsVersion="7.0"/>
+    </dependencies>
+    <objects>
+        <customObject id="-2" userLabel="File's Owner" customClass="AccRingGeneralVC">
+            <connections>
+                <outlet property="addProfilePhotoImage" destination="Lsc-U9-fTH" id="G9k-ly-ijQ"/>
+                <outlet property="advancedButtonMarginConstraint" destination="d6X-pJ-G6r" id="Nwf-LQ-nhc"/>
+                <outlet property="bannedContactHeightConstraint" destination="TeK-1Q-aAk" id="FyO-eM-cLc"/>
+                <outlet property="blockedContactsTableView" destination="aau-IO-oSs" id="Vek-r1-CDK"/>
+                <outlet property="devicesTableView" destination="Zw2-AJ-V23" id="fdL-VK-1ao"/>
+                <outlet property="displayNameField" destination="n2O-cF-oZh" id="EaH-qO-DhI"/>
+                <outlet property="passwordButton" destination="jn6-I2-q72" id="ElE-O6-kva"/>
+                <outlet property="photoView" destination="a04-w7-5Bn" id="cGK-Ao-FaB"/>
+                <outlet property="registerNameButton" destination="wRD-yN-Fq8" id="Nd0-BQ-cfn"/>
+                <outlet property="registeredNameField" destination="WON-75-xph" id="0Gt-gX-edt"/>
+                <outlet property="removeAccountButton" destination="aVu-fd-FGu" id="ibX-fi-3bm"/>
+                <outlet property="ringIDField" destination="esP-z9-gYy" id="JxR-aJ-Rwc"/>
+                <outlet property="view" destination="h5N-dv-68N" id="3rU-dU-Pmw"/>
+            </connections>
+        </customObject>
+        <customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/>
+        <customObject id="-3" userLabel="Application" customClass="NSObject"/>
+        <userDefaultsController representsSharedInstance="YES" id="OEq-Ja-Vda"/>
+        <customView id="h5N-dv-68N">
+            <rect key="frame" x="0.0" y="0.0" width="620" height="540"/>
+            <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+            <subviews>
+                <box boxType="custom" borderType="bezel" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="gTn-6p-Gtk">
+                    <rect key="frame" x="0.0" y="61" width="620" height="479"/>
+                    <view key="contentView" id="aIW-Qi-bDe">
+                        <rect key="frame" x="1" y="1" width="618" height="477"/>
+                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                    </view>
+                    <color key="borderColor" name="controlHighlightColor" catalog="System" colorSpace="catalog"/>
+                    <color key="fillColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                </box>
+                <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="xuK-C2-qCq">
+                    <rect key="frame" x="458" y="278" width="142" height="19"/>
+                    <buttonCell key="cell" type="roundRect" title="Link another device" bezelStyle="roundedRect" image="NSAddTemplate" imagePosition="leading" alignment="center" state="on" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="tWk-Od-BEQ">
+                        <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                        <font key="font" metaFont="cellTitle"/>
+                    </buttonCell>
+                    <connections>
+                        <action selector="startExportOnRing:" target="-2" id="3qR-8h-FTM"/>
+                    </connections>
+                </button>
+                <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="3g2-en-JS8">
+                    <rect key="frame" x="248" y="454" width="74" height="17"/>
+                    <constraints>
+                        <constraint firstAttribute="width" constant="70" id="8Gq-Q4-wXx"/>
+                    </constraints>
+                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Identifier" id="qx7-i1-3Na">
+                        <font key="font" metaFont="system"/>
+                        <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                        <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                    </textFieldCell>
+                </textField>
+                <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="G9D-BP-wC2">
+                    <rect key="frame" x="248" y="417" width="66" height="17"/>
+                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Username" id="fPK-Zv-Uom">
+                        <font key="font" metaFont="system"/>
+                        <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                        <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                    </textFieldCell>
+                </textField>
+                <textField verticalHuggingPriority="750" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="esP-z9-gYy">
+                    <rect key="frame" x="338" y="454" width="264" height="14"/>
+                    <constraints>
+                        <constraint firstAttribute="width" constant="260" id="L7d-vl-e80"/>
+                    </constraints>
+                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" sendsActionOnEndEditing="YES" id="4k1-oK-neO">
+                        <font key="font" metaFont="smallSystem"/>
+                        <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                        <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                    </textFieldCell>
+                </textField>
+                <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="WON-75-xph">
+                    <rect key="frame" x="338" y="417" width="4" height="17"/>
+                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" sendsActionOnEndEditing="YES" id="Bkr-Hq-SAD">
+                        <font key="font" metaFont="system"/>
+                        <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                        <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                    </textFieldCell>
+                </textField>
+                <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="wRD-yN-Fq8">
+                    <rect key="frame" x="340" y="416" width="61" height="19"/>
+                    <buttonCell key="cell" type="roundRect" title="Register" bezelStyle="roundedRect" alignment="center" state="on" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="gLp-qz-XYs">
+                        <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                        <font key="font" metaFont="cellTitle"/>
+                    </buttonCell>
+                    <connections>
+                        <action selector="startNameRegistration:" target="-2" id="Vyw-S7-pZU"/>
+                    </connections>
+                </button>
+                <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="wpZ-YP-iH0">
+                    <rect key="frame" x="248" y="380" width="63" height="17"/>
+                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Password" id="68u-Vd-f4d">
+                        <font key="font" metaFont="system"/>
+                        <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                        <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                    </textFieldCell>
+                </textField>
+                <stackView orientation="horizontal" alignment="bottom" horizontalStackHuggingPriority="249.99998474121094" verticalStackHuggingPriority="249.99998474121094" detachesHiddenViews="YES" translatesAutoresizingMaskIntoConstraints="NO" id="h3Q-Fn-uye">
+                    <rect key="frame" x="270" y="316" width="330" height="32"/>
+                    <middleViews>
+                        <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="vkG-1y-zOL">
+                            <rect key="frame" x="111" y="-1" width="102" height="19"/>
+                            <constraints>
+                                <constraint firstAttribute="width" constant="102" id="hdr-uD-w9a"/>
+                            </constraints>
+                            <buttonCell key="cell" type="roundRect" title="Export Account" bezelStyle="roundedRect" alignment="center" state="on" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="1aj-MG-mHp">
+                                <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                                <font key="font" metaFont="cellTitle"/>
+                            </buttonCell>
+                            <connections>
+                                <action selector="exportAccount:" target="-2" id="SmV-kT-c4R"/>
+                            </connections>
+                        </button>
+                    </middleViews>
+                    <endViews>
+                        <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="aVu-fd-FGu">
+                            <rect key="frame" x="221" y="-1" width="109" height="19"/>
+                            <constraints>
+                                <constraint firstAttribute="width" constant="109" id="WbE-P5-eWI"/>
+                            </constraints>
+                            <buttonCell key="cell" type="roundRect" title="Remove Account" bezelStyle="roundedRect" alignment="center" state="on" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="Yf6-8d-SNh">
+                                <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                                <font key="font" metaFont="cellTitle"/>
+                            </buttonCell>
+                            <connections>
+                                <action selector="removeAccount:" target="-2" id="dai-ii-iHD"/>
+                            </connections>
+                        </button>
+                    </endViews>
+                    <visibilityPriorities>
+                        <integer value="1000"/>
+                        <integer value="1000"/>
+                    </visibilityPriorities>
+                    <customSpacing>
+                        <real value="3.4028234663852886e+38"/>
+                        <real value="3.4028234663852886e+38"/>
+                    </customSpacing>
+                </stackView>
+                <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="oMU-r6-ptk">
+                    <rect key="frame" x="248" y="346" width="117" height="18"/>
+                    <buttonCell key="cell" type="check" title="Enable Account" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="Op4-XO-WsE">
+                        <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
+                        <font key="font" metaFont="system"/>
+                    </buttonCell>
+                    <connections>
+                        <action selector="enableAccount:" target="-2" id="1Ae-0Y-tbF"/>
+                        <binding destination="-2" name="value" keyPath="self.accountEnabled" id="vMm-1o-Yuc"/>
+                    </connections>
+                </button>
+                <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="hsy-0z-bp6">
+                    <rect key="frame" x="18" y="279" width="94" height="17"/>
+                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Linked devices" id="oga-WC-4gb">
+                        <font key="font" metaFont="system"/>
+                        <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                        <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                    </textFieldCell>
+                </textField>
+                <scrollView autohidesScrollers="YES" horizontalLineScroll="57" horizontalPageScroll="10" verticalLineScroll="57" verticalPageScroll="10" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="1uj-O6-qH5">
+                    <rect key="frame" x="20" y="120" width="580" height="150"/>
+                    <clipView key="contentView" drawsBackground="NO" id="wA7-kx-iIb">
+                        <rect key="frame" x="1" y="1" width="578" height="148"/>
+                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                        <subviews>
+                            <tableView verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" selectionHighlightStyle="none" columnSelection="YES" multipleSelection="NO" autosaveColumns="NO" rowHeight="55" rowSizeStyle="automatic" viewBased="YES" id="Zw2-AJ-V23">
+                                <rect key="frame" x="0.0" y="0.0" width="578" height="148"/>
+                                <autoresizingMask key="autoresizingMask"/>
+                                <size key="intercellSpacing" width="3" height="2"/>
+                                <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                <color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/>
+                                <tableColumns>
+                                    <tableColumn identifier="" width="575" minWidth="40" maxWidth="1000" id="Smk-YT-73t">
+                                        <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border">
+                                            <font key="font" metaFont="smallSystem"/>
+                                            <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
+                                            <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
+                                        </tableHeaderCell>
+                                        <textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" title="Text Cell" id="yYf-Ei-lMG">
+                                            <font key="font" metaFont="system"/>
+                                            <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                            <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                        </textFieldCell>
+                                        <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/>
+                                        <prototypeCellViews>
+                                            <tableCellView identifier="TableCellDeviceItem" id="Zdu-FI-UVL">
+                                                <rect key="frame" x="1" y="1" width="575" height="50"/>
+                                                <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                                                <subviews>
+                                                    <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" tag="200" translatesAutoresizingMaskIntoConstraints="NO" id="9mA-na-5lo">
+                                                        <rect key="frame" x="8" y="24" width="4" height="16"/>
+                                                        <constraints>
+                                                            <constraint firstAttribute="height" constant="16" id="DlG-hp-nhb"/>
+                                                        </constraints>
+                                                        <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" id="AWj-hh-tfI">
+                                                            <font key="font" metaFont="system"/>
+                                                            <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                                        </textFieldCell>
+                                                    </textField>
+                                                    <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" tag="300" translatesAutoresizingMaskIntoConstraints="NO" id="fVS-Vh-6Lp">
+                                                        <rect key="frame" x="8" y="10" width="4" height="14"/>
+                                                        <constraints>
+                                                            <constraint firstAttribute="height" constant="14" id="b5Z-j9-aoY"/>
+                                                        </constraints>
+                                                        <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" id="7kJ-4c-Kzw">
+                                                            <font key="font" metaFont="systemLight" size="12"/>
+                                                            <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                                        </textFieldCell>
+                                                    </textField>
+                                                    <button toolTip="Edit name" verticalHuggingPriority="750" tag="400" translatesAutoresizingMaskIntoConstraints="NO" id="WEo-a0-wVL">
+                                                        <rect key="frame" x="544" y="10" width="21" height="30"/>
+                                                        <buttonCell key="cell" type="square" bezelStyle="shadowlessSquare" image="NSTouchBarComposeTemplate" imagePosition="only" alignment="center" imageScaling="proportionallyDown" inset="2" id="9s6-G8-rME">
+                                                            <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                                                            <font key="font" metaFont="system"/>
+                                                        </buttonCell>
+                                                    </button>
+                                                    <button toolTip="Revoke" verticalHuggingPriority="750" tag="500" translatesAutoresizingMaskIntoConstraints="NO" id="lrB-j5-Mvy">
+                                                        <rect key="frame" x="550" y="10" width="15" height="30"/>
+                                                        <buttonCell key="cell" type="square" bezelStyle="shadowlessSquare" image="NSTouchBarDeleteTemplate" imagePosition="only" alignment="center" imageScaling="proportionallyDown" inset="2" id="RWW-Og-9Ua">
+                                                            <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                                                            <font key="font" metaFont="system"/>
+                                                        </buttonCell>
+                                                        <connections>
+                                                            <action selector="revokeDevice:" target="-2" id="0k3-TF-SMG"/>
+                                                        </connections>
+                                                    </button>
+                                                </subviews>
+                                                <constraints>
+                                                    <constraint firstAttribute="trailing" secondItem="lrB-j5-Mvy" secondAttribute="trailing" constant="10" id="0f4-4L-vPe"/>
+                                                    <constraint firstItem="fVS-Vh-6Lp" firstAttribute="leading" secondItem="Zdu-FI-UVL" secondAttribute="leading" constant="10" id="8Gc-s8-84g"/>
+                                                    <constraint firstItem="WEo-a0-wVL" firstAttribute="bottom" secondItem="fVS-Vh-6Lp" secondAttribute="bottom" id="E29-TO-Sgm"/>
+                                                    <constraint firstItem="lrB-j5-Mvy" firstAttribute="bottom" secondItem="fVS-Vh-6Lp" secondAttribute="bottom" id="HfC-0N-vdA"/>
+                                                    <constraint firstAttribute="bottom" secondItem="fVS-Vh-6Lp" secondAttribute="bottom" constant="10" id="OIT-Im-NYp"/>
+                                                    <constraint firstAttribute="trailing" secondItem="WEo-a0-wVL" secondAttribute="trailing" constant="10" id="P8g-lG-Rm0"/>
+                                                    <constraint firstItem="fVS-Vh-6Lp" firstAttribute="top" secondItem="9mA-na-5lo" secondAttribute="bottom" id="RCk-FF-m2I"/>
+                                                    <constraint firstItem="9mA-na-5lo" firstAttribute="top" secondItem="Zdu-FI-UVL" secondAttribute="top" constant="10" id="SGM-YE-MPb"/>
+                                                    <constraint firstItem="9mA-na-5lo" firstAttribute="leading" secondItem="Zdu-FI-UVL" secondAttribute="leading" constant="10" id="SfI-vb-cXg"/>
+                                                </constraints>
+                                            </tableCellView>
+                                            <customView identifier="HoverRowView" id="CPL-go-ebR" customClass="HoverTableRowView">
+                                                <rect key="frame" x="1" y="53" width="575" height="55"/>
+                                                <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
+                                            </customView>
+                                        </prototypeCellViews>
+                                    </tableColumn>
+                                </tableColumns>
+                            </tableView>
+                        </subviews>
+                        <nil key="backgroundColor"/>
+                    </clipView>
+                    <constraints>
+                        <constraint firstAttribute="height" constant="150" id="Sca-Sh-Zm3"/>
+                    </constraints>
+                    <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="YES" id="QUF-D7-MhJ">
+                        <rect key="frame" x="1" y="133" width="478" height="16"/>
+                        <autoresizingMask key="autoresizingMask"/>
+                    </scroller>
+                    <scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="NO" id="RnI-3s-sSx">
+                        <rect key="frame" x="224" y="17" width="15" height="102"/>
+                        <autoresizingMask key="autoresizingMask"/>
+                    </scroller>
+                </scrollView>
+                <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="2IE-yO-TDJ">
+                    <rect key="frame" x="248" y="491" width="63" height="17"/>
+                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Account:" id="uLQ-MS-pZ7">
+                        <font key="font" metaFont="systemBold"/>
+                        <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                        <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                    </textFieldCell>
+                </textField>
+                <box boxType="custom" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="oVO-wj-fwQ">
+                    <rect key="frame" x="20" y="316" width="210" height="204"/>
+                    <view key="contentView" id="edz-Bo-zxA">
+                        <rect key="frame" x="1" y="1" width="208" height="202"/>
+                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                        <subviews>
+                            <button focusRingType="none" horizontalHuggingPriority="750" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="a04-w7-5Bn">
+                                <rect key="frame" x="59" y="82" width="91" height="90"/>
+                                <constraints>
+                                    <constraint firstAttribute="width" constant="91" id="7Pb-VH-qUI"/>
+                                    <constraint firstAttribute="height" constant="90" id="m06-FK-Jir"/>
+                                </constraints>
+                                <buttonCell key="cell" type="inline" bezelStyle="inline" imagePosition="only" alignment="center" focusRingType="none" imageScaling="proportionallyUpOrDown" inset="2" id="4FV-kb-gHx">
+                                    <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                                    <font key="font" metaFont="smallSystemBold"/>
+                                </buttonCell>
+                                <connections>
+                                    <action selector="editPhoto:" target="-2" id="Gzf-Gz-u0U"/>
+                                </connections>
+                            </button>
+                            <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="Lsc-U9-fTH">
+                                <rect key="frame" x="89" y="112" width="30" height="30"/>
+                                <constraints>
+                                    <constraint firstAttribute="height" constant="30" id="hqc-aw-DDv"/>
+                                    <constraint firstAttribute="width" constant="30" id="kQq-3Y-cKy"/>
+                                </constraints>
+                                <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="ic_picture" id="kK2-OG-xcF"/>
+                            </imageView>
+                            <textField verticalHuggingPriority="750" tag="100" translatesAutoresizingMaskIntoConstraints="NO" id="n2O-cF-oZh">
+                                <rect key="frame" x="29" y="30" width="150" height="22"/>
+                                <constraints>
+                                    <constraint firstAttribute="width" constant="150" id="PwW-KL-JTC"/>
+                                    <constraint firstAttribute="height" constant="22" id="dnr-mP-aoq"/>
+                                </constraints>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" alignment="center" placeholderString="Enter name" bezelStyle="round" id="kt0-P6-fdQ">
+                                    <font key="font" metaFont="system"/>
+                                    <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
+                                    <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                </textFieldCell>
+                                <connections>
+                                    <outlet property="delegate" destination="-2" id="TDb-Lu-LKe"/>
+                                </connections>
+                            </textField>
+                        </subviews>
+                        <constraints>
+                            <constraint firstItem="a04-w7-5Bn" firstAttribute="centerX" secondItem="edz-Bo-zxA" secondAttribute="centerX" id="0mp-ac-frU"/>
+                            <constraint firstItem="n2O-cF-oZh" firstAttribute="top" secondItem="a04-w7-5Bn" secondAttribute="bottom" constant="30" id="KhI-6h-8XR"/>
+                            <constraint firstItem="Lsc-U9-fTH" firstAttribute="centerY" secondItem="a04-w7-5Bn" secondAttribute="centerY" id="iwV-Th-OV6"/>
+                            <constraint firstAttribute="bottom" secondItem="n2O-cF-oZh" secondAttribute="bottom" constant="30" id="uBU-6F-YaI"/>
+                            <constraint firstItem="Lsc-U9-fTH" firstAttribute="centerX" secondItem="a04-w7-5Bn" secondAttribute="centerX" id="uyy-Ng-jY4"/>
+                            <constraint firstItem="a04-w7-5Bn" firstAttribute="top" secondItem="edz-Bo-zxA" secondAttribute="top" constant="30" id="zLp-uv-J6b"/>
+                            <constraint firstItem="n2O-cF-oZh" firstAttribute="centerX" secondItem="edz-Bo-zxA" secondAttribute="centerX" id="zl3-Sp-GPH"/>
+                        </constraints>
+                    </view>
+                    <constraints>
+                        <constraint firstAttribute="height" constant="204" id="FcC-hB-dPN"/>
+                        <constraint firstAttribute="width" constant="210" id="ejp-uU-0rY"/>
+                    </constraints>
+                    <color key="borderColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                </box>
+                <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="dOT-gX-qDn">
+                    <rect key="frame" x="18" y="83" width="109" height="17"/>
+                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Banned Contacts" id="6fI-98-VvQ">
+                        <font key="font" metaFont="system"/>
+                        <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                        <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                    </textFieldCell>
+                </textField>
+                <button horizontalHuggingPriority="750" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="3QT-MY-qpW">
+                    <rect key="frame" x="130" y="82" width="20" height="20"/>
+                    <constraints>
+                        <constraint firstAttribute="width" constant="20" id="cvI-qL-MTv"/>
+                        <constraint firstAttribute="height" constant="20" id="vER-SW-oDv"/>
+                    </constraints>
+                    <buttonCell key="cell" type="disclosureTriangle" bezelStyle="disclosure" imagePosition="only" alignment="left" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="6fq-2Z-DGy">
+                        <behavior key="behavior" pushIn="YES" changeBackground="YES" changeGray="YES" lightByContents="YES"/>
+                        <font key="font" metaFont="system"/>
+                    </buttonCell>
+                    <connections>
+                        <action selector="showBanned:" target="-2" id="NGm-xz-gry"/>
+                    </connections>
+                </button>
+                <scrollView hidden="YES" autohidesScrollers="YES" horizontalLineScroll="1" horizontalPageScroll="10" verticalLineScroll="1" verticalPageScroll="10" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" horizontalScrollElasticity="none" translatesAutoresizingMaskIntoConstraints="NO" id="Y8L-GO-1Qy">
+                    <rect key="frame" x="20" y="71" width="580" height="2"/>
+                    <clipView key="contentView" copiesOnScroll="NO" id="VXO-tS-9it">
+                        <rect key="frame" x="1" y="1" width="578" height="0.0"/>
+                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                        <subviews>
+                            <tableView verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" columnSelection="YES" multipleSelection="NO" autosaveColumns="NO" rowHeight="1" viewBased="YES" id="aau-IO-oSs">
+                                <rect key="frame" x="0.0" y="0.0" width="578" height="107"/>
+                                <autoresizingMask key="autoresizingMask"/>
+                                <size key="intercellSpacing" width="3" height="0.0"/>
+                                <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                <color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/>
+                                <tableColumns>
+                                    <tableColumn identifier="" width="575" maxWidth="1000" id="Ow9-IO-1MA">
+                                        <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border">
+                                            <font key="font" metaFont="smallSystem"/>
+                                            <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
+                                            <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
+                                        </tableHeaderCell>
+                                        <textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" title="Text Cell" id="aQL-hX-CfA">
+                                            <font key="font" metaFont="system"/>
+                                            <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
+                                            <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                        </textFieldCell>
+                                        <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/>
+                                        <prototypeCellViews>
+                                            <tableCellView identifier="TableCellBannedContactItem" id="wsF-ON-kL6">
+                                                <rect key="frame" x="1" y="0.0" width="575" height="52"/>
+                                                <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                                                <subviews>
+                                                    <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" tag="600" translatesAutoresizingMaskIntoConstraints="NO" id="p7k-Ue-2dM">
+                                                        <rect key="frame" x="8" y="24" width="4" height="18"/>
+                                                        <constraints>
+                                                            <constraint firstAttribute="height" constant="18" id="9no-65-Pmw"/>
+                                                        </constraints>
+                                                        <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" id="XpV-WE-tFg">
+                                                            <font key="font" metaFont="system"/>
+                                                            <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                                        </textFieldCell>
+                                                    </textField>
+                                                    <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" tag="700" translatesAutoresizingMaskIntoConstraints="NO" id="g9g-T3-gcp">
+                                                        <rect key="frame" x="8" y="10" width="4" height="14"/>
+                                                        <constraints>
+                                                            <constraint firstAttribute="height" constant="14" id="zTg-bt-LgH"/>
+                                                        </constraints>
+                                                        <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" id="LJ5-qN-oNl">
+                                                            <font key="font" metaFont="systemLight" size="12"/>
+                                                            <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                                                        </textFieldCell>
+                                                    </textField>
+                                                    <button toolTip="Unblock" verticalHuggingPriority="750" tag="800" translatesAutoresizingMaskIntoConstraints="NO" id="bOY-mY-1Yo">
+                                                        <rect key="frame" x="544" y="10" width="21" height="30"/>
+                                                        <buttonCell key="cell" type="square" bezelStyle="shadowlessSquare" image="NSTouchBarUserAddTemplate" imagePosition="only" alignment="center" imageScaling="proportionallyDown" inset="2" id="TJO-D2-KbL">
+                                                            <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                                                            <font key="font" metaFont="system"/>
+                                                        </buttonCell>
+                                                    </button>
+                                                </subviews>
+                                                <constraints>
+                                                    <constraint firstItem="p7k-Ue-2dM" firstAttribute="leading" secondItem="wsF-ON-kL6" secondAttribute="leading" constant="10" id="0jp-G7-BfX"/>
+                                                    <constraint firstItem="p7k-Ue-2dM" firstAttribute="top" secondItem="wsF-ON-kL6" secondAttribute="top" constant="10" id="Cci-Mn-PyA"/>
+                                                    <constraint firstItem="bOY-mY-1Yo" firstAttribute="bottom" secondItem="g9g-T3-gcp" secondAttribute="bottom" id="YVq-GI-VwT"/>
+                                                    <constraint firstItem="g9g-T3-gcp" firstAttribute="top" secondItem="p7k-Ue-2dM" secondAttribute="bottom" id="Zx7-zi-rrK"/>
+                                                    <constraint firstItem="g9g-T3-gcp" firstAttribute="leading" secondItem="wsF-ON-kL6" secondAttribute="leading" constant="10" id="hMY-79-7tp"/>
+                                                    <constraint firstAttribute="bottom" secondItem="g9g-T3-gcp" secondAttribute="bottom" constant="10" id="qnX-uM-iG4"/>
+                                                    <constraint firstAttribute="trailing" secondItem="bOY-mY-1Yo" secondAttribute="trailing" constant="10" id="wJY-6Z-LE4"/>
+                                                </constraints>
+                                            </tableCellView>
+                                            <customView identifier="HoverRowView" id="UPU-qX-wdn" customClass="HoverTableRowView">
+                                                <rect key="frame" x="1" y="52" width="575" height="55"/>
+                                                <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
+                                            </customView>
+                                        </prototypeCellViews>
+                                    </tableColumn>
+                                </tableColumns>
+                            </tableView>
+                        </subviews>
+                    </clipView>
+                    <constraints>
+                        <constraint firstAttribute="height" constant="2" id="TeK-1Q-aAk"/>
+                    </constraints>
+                    <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" doubleValue="0.02" horizontal="YES" id="TaD-4q-JiG">
+                        <rect key="frame" x="-100" y="-100" width="578" height="15"/>
+                        <autoresizingMask key="autoresizingMask"/>
+                    </scroller>
+                    <scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="NO" id="cGM-Ld-1hV">
+                        <rect key="frame" x="563" y="1" width="16" height="0.0"/>
+                        <autoresizingMask key="autoresizingMask"/>
+                    </scroller>
+                </scrollView>
+                <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="jn6-I2-q72">
+                    <rect key="frame" x="340" y="379" width="18" height="19"/>
+                    <buttonCell key="cell" type="roundRect" bezelStyle="roundedRect" alignment="center" state="on" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="Sp2-I2-vjE">
+                        <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                        <font key="font" metaFont="cellTitle"/>
+                    </buttonCell>
+                    <connections>
+                        <action selector="changePassword:" target="-2" id="yq9-t5-sFg"/>
+                    </connections>
+                </button>
+                <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="ODP-YD-5vy">
+                    <rect key="frame" x="260" y="13" width="100" height="32"/>
+                    <constraints>
+                        <constraint firstAttribute="width" constant="88" id="hnD-LY-EPI"/>
+                    </constraints>
+                    <buttonCell key="cell" type="push" title="Advanced" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="Hbq-nL-BhK">
+                        <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                        <font key="font" metaFont="system"/>
+                    </buttonCell>
+                    <connections>
+                        <action selector="triggerAdwancedSettings:" target="-2" id="RJO-PQ-0hP"/>
+                    </connections>
+                </button>
+            </subviews>
+            <constraints>
+                <constraint firstItem="3QT-MY-qpW" firstAttribute="leading" secondItem="dOT-gX-qDn" secondAttribute="trailing" constant="5" id="1WT-2Q-md4"/>
+                <constraint firstItem="gTn-6p-Gtk" firstAttribute="top" secondItem="h5N-dv-68N" secondAttribute="top" id="2u7-do-p4V"/>
+                <constraint firstItem="1uj-O6-qH5" firstAttribute="leading" secondItem="hsy-0z-bp6" secondAttribute="leading" id="3Y3-DV-Oq6"/>
+                <constraint firstItem="G9D-BP-wC2" firstAttribute="top" secondItem="3g2-en-JS8" secondAttribute="bottom" constant="20" id="63I-71-ev1"/>
+                <constraint firstItem="hsy-0z-bp6" firstAttribute="top" secondItem="oVO-wj-fwQ" secondAttribute="bottom" constant="20" id="E8o-2g-dVT"/>
+                <constraint firstItem="Y8L-GO-1Qy" firstAttribute="top" secondItem="dOT-gX-qDn" secondAttribute="bottom" constant="10" id="FJ0-lS-dZE"/>
+                <constraint firstItem="3g2-en-JS8" firstAttribute="top" secondItem="2IE-yO-TDJ" secondAttribute="bottom" constant="20" id="Gj0-gx-u1J"/>
+                <constraint firstItem="oMU-r6-ptk" firstAttribute="top" secondItem="wpZ-YP-iH0" secondAttribute="bottom" constant="18" id="HG7-Z7-jfz"/>
+                <constraint firstItem="3QT-MY-qpW" firstAttribute="centerY" secondItem="dOT-gX-qDn" secondAttribute="centerY" id="Iso-9h-RHf"/>
+                <constraint firstAttribute="trailing" secondItem="1uj-O6-qH5" secondAttribute="trailing" constant="20" id="Kyy-A5-S8V"/>
+                <constraint firstItem="oMU-r6-ptk" firstAttribute="leading" secondItem="wpZ-YP-iH0" secondAttribute="leading" id="LYf-Q1-vlO"/>
+                <constraint firstItem="xuK-C2-qCq" firstAttribute="centerY" secondItem="hsy-0z-bp6" secondAttribute="centerY" id="Niw-h4-qw1"/>
+                <constraint firstItem="esP-z9-gYy" firstAttribute="bottom" secondItem="3g2-en-JS8" secondAttribute="bottom" id="QKm-6m-ZTg"/>
+                <constraint firstAttribute="trailing" secondItem="esP-z9-gYy" secondAttribute="trailing" constant="20" id="TR0-bi-O90"/>
+                <constraint firstItem="wRD-yN-Fq8" firstAttribute="leading" secondItem="WON-75-xph" secondAttribute="trailing" id="Ui1-xB-c5d"/>
+                <constraint firstItem="G9D-BP-wC2" firstAttribute="leading" secondItem="oVO-wj-fwQ" secondAttribute="trailing" constant="20" id="Vjm-e8-z3W"/>
+                <constraint firstItem="Y8L-GO-1Qy" firstAttribute="leading" secondItem="h5N-dv-68N" secondAttribute="leading" constant="20" id="Wgo-JG-hSY"/>
+                <constraint firstItem="G9D-BP-wC2" firstAttribute="leading" secondItem="3g2-en-JS8" secondAttribute="leading" id="Xxf-MS-Dfl"/>
+                <constraint firstItem="h3Q-Fn-uye" firstAttribute="leading" secondItem="oVO-wj-fwQ" secondAttribute="trailing" constant="40" id="ZRY-Rq-HKF"/>
+                <constraint firstItem="dOT-gX-qDn" firstAttribute="top" secondItem="1uj-O6-qH5" secondAttribute="bottom" constant="20" id="aOi-aK-Mqf"/>
+                <constraint firstItem="ODP-YD-5vy" firstAttribute="centerX" secondItem="h5N-dv-68N" secondAttribute="centerX" id="aP4-Wz-IvA"/>
+                <constraint firstItem="WON-75-xph" firstAttribute="leading" secondItem="esP-z9-gYy" secondAttribute="leading" id="bLo-T8-J2i"/>
+                <constraint firstItem="gTn-6p-Gtk" firstAttribute="leading" secondItem="h5N-dv-68N" secondAttribute="leading" id="cFJ-xn-e2j"/>
+                <constraint firstAttribute="trailing" secondItem="h3Q-Fn-uye" secondAttribute="trailing" constant="20" id="cl8-sP-FVa"/>
+                <constraint firstItem="3g2-en-JS8" firstAttribute="leading" secondItem="oVO-wj-fwQ" secondAttribute="trailing" constant="20" id="czY-KY-0ay"/>
+                <constraint firstItem="ODP-YD-5vy" firstAttribute="top" secondItem="Y8L-GO-1Qy" secondAttribute="bottom" constant="30" id="d6X-pJ-G6r"/>
+                <constraint firstItem="1uj-O6-qH5" firstAttribute="top" secondItem="hsy-0z-bp6" secondAttribute="bottom" constant="9" id="dK6-vn-2td"/>
+                <constraint firstItem="esP-z9-gYy" firstAttribute="leading" secondItem="3g2-en-JS8" secondAttribute="trailing" constant="20" id="dND-HY-Ky3"/>
+                <constraint firstItem="wpZ-YP-iH0" firstAttribute="top" secondItem="G9D-BP-wC2" secondAttribute="bottom" constant="20" id="e40-45-Wyp"/>
+                <constraint firstItem="wRD-yN-Fq8" firstAttribute="bottom" secondItem="G9D-BP-wC2" secondAttribute="bottom" id="gBl-Lu-E0F"/>
+                <constraint firstItem="Y8L-GO-1Qy" firstAttribute="trailing" secondItem="1uj-O6-qH5" secondAttribute="trailing" id="hvN-3D-qv3"/>
+                <constraint firstItem="2IE-yO-TDJ" firstAttribute="leading" secondItem="oVO-wj-fwQ" secondAttribute="trailing" constant="20" id="i8J-rD-ycJ"/>
+                <constraint firstItem="wpZ-YP-iH0" firstAttribute="leading" secondItem="3g2-en-JS8" secondAttribute="leading" id="lNA-1o-gnq"/>
+                <constraint firstAttribute="trailing" secondItem="gTn-6p-Gtk" secondAttribute="trailing" id="lWR-TJ-wsX"/>
+                <constraint firstItem="1uj-O6-qH5" firstAttribute="leading" secondItem="h5N-dv-68N" secondAttribute="leading" constant="20" id="nF0-Jg-WLW"/>
+                <constraint firstItem="oVO-wj-fwQ" firstAttribute="leading" secondItem="h5N-dv-68N" secondAttribute="leading" constant="20" id="nKb-sT-BeH"/>
+                <constraint firstItem="dOT-gX-qDn" firstAttribute="leading" secondItem="1uj-O6-qH5" secondAttribute="leading" id="o2J-8w-LOH"/>
+                <constraint firstItem="h3Q-Fn-uye" firstAttribute="top" secondItem="oMU-r6-ptk" secondAttribute="bottom" id="p9G-kc-MOb"/>
+                <constraint firstItem="oVO-wj-fwQ" firstAttribute="top" secondItem="h5N-dv-68N" secondAttribute="top" constant="20" id="pgz-cN-WoT"/>
+                <constraint firstItem="xuK-C2-qCq" firstAttribute="trailing" secondItem="h3Q-Fn-uye" secondAttribute="trailing" id="qLN-Xo-1H9"/>
+                <constraint firstItem="WON-75-xph" firstAttribute="bottom" secondItem="G9D-BP-wC2" secondAttribute="bottom" id="qPn-RU-dwn"/>
+                <constraint firstItem="jn6-I2-q72" firstAttribute="leading" secondItem="esP-z9-gYy" secondAttribute="leading" priority="250" id="sCf-Ew-9Fu"/>
+                <constraint firstAttribute="trailing" secondItem="Y8L-GO-1Qy" secondAttribute="trailing" constant="20" id="tyW-K4-dV4"/>
+                <constraint firstItem="ODP-YD-5vy" firstAttribute="top" secondItem="gTn-6p-Gtk" secondAttribute="bottom" constant="20" id="vdx-Gc-txw"/>
+                <constraint firstItem="jn6-I2-q72" firstAttribute="bottom" secondItem="wpZ-YP-iH0" secondAttribute="bottom" id="wxL-Cq-wc4"/>
+                <constraint firstItem="2IE-yO-TDJ" firstAttribute="top" secondItem="h5N-dv-68N" secondAttribute="top" constant="32" id="xOZ-wH-Sht"/>
+                <constraint firstItem="h3Q-Fn-uye" firstAttribute="bottom" secondItem="oVO-wj-fwQ" secondAttribute="bottom" id="xPA-ly-3SR"/>
+                <constraint firstItem="Y8L-GO-1Qy" firstAttribute="leading" secondItem="dOT-gX-qDn" secondAttribute="leading" id="ywi-UG-cco"/>
+            </constraints>
+            <point key="canvasLocation" x="470" y="924"/>
+        </customView>
+    </objects>
+    <resources>
+        <image name="NSAddTemplate" width="11" height="11"/>
+        <image name="NSTouchBarComposeTemplate" width="21" height="30"/>
+        <image name="NSTouchBarDeleteTemplate" width="15" height="30"/>
+        <image name="NSTouchBarUserAddTemplate" width="21" height="30"/>
+        <image name="ic_picture" width="72" height="72"/>
+    </resources>
+</document>
diff --git a/ui/Base.lproj/AccSecurity.xib b/ui/Base.lproj/AccSecurity.xib
deleted file mode 100644
index 9d3b1248fe9640e74d0cfb9185e90ad7b12909eb..0000000000000000000000000000000000000000
--- a/ui/Base.lproj/AccSecurity.xib
+++ /dev/null
@@ -1,398 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="11762" systemVersion="16D30a" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES">
-    <dependencies>
-        <development version="7000" identifier="xcode"/>
-        <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="11762"/>
-    </dependencies>
-    <objects>
-        <customObject id="-2" userLabel="File's Owner" customClass="AccSecurityVC">
-            <connections>
-                <outlet property="caListPathControl" destination="D3W-lQ-lnP" id="LS8-ny-clH"/>
-                <outlet property="certificatePathControl" destination="nm6-E0-NSH" id="fCd-di-v07"/>
-                <outlet property="cipherListView" destination="J53-ev-CMr" id="G0A-j6-uHa"/>
-                <outlet property="outgoingTlsServerName" destination="Zw6-Ys-Kie" id="JQC-aS-9eu"/>
-                <outlet property="pvkContainer" destination="x7E-hL-I22" id="nH2-8Y-eVl"/>
-                <outlet property="pvkPasswordField" destination="bZ4-7D-4l0" id="EEN-a1-4oT"/>
-                <outlet property="pvkPasswordValidation" destination="CA9-su-iR7" id="vue-8A-mQy"/>
-                <outlet property="pvkPathControl" destination="88W-qC-bQk" id="rWY-57-6pv"/>
-                <outlet property="requireCertButton" destination="oUu-x4-vV2" id="PNH-3v-phG"/>
-                <outlet property="showCAButton" destination="Bea-Hp-LP1" id="d2z-u1-G2A"/>
-                <outlet property="showUserCertButton" destination="aTq-AA-kGe" id="AKf-sq-H3U"/>
-                <outlet property="srtpRTPFallback" destination="uPY-dc-wnh" id="mqd-Uf-g1o"/>
-                <outlet property="tlsContainer" destination="Ubf-Oe-BbE" id="a5m-qR-9n2"/>
-                <outlet property="tlsContainerHeight" destination="UKk-m5-NpH" id="Ooe-gI-XzT"/>
-                <outlet property="tlsMethodList" destination="OzX-Lm-vTo" id="t16-Ed-be0"/>
-                <outlet property="tlsNegotiationTimeout" destination="Vei-qo-Elj" id="aHP-q0-cLi"/>
-                <outlet property="tlsNegotiationTimeoutStepper" destination="HTb-Hz-UsO" id="nAt-yM-bvQ"/>
-                <outlet property="useSRTP" destination="MDR-gI-NEM" id="cEh-uu-v1A"/>
-                <outlet property="useTLS" destination="KkG-2O-ExR" id="Ain-yM-iXd"/>
-                <outlet property="verifyCertAsClientButton" destination="IEc-xs-DVB" id="jxt-UK-0Pr"/>
-                <outlet property="verifyCertAsServerButton" destination="zc3-fU-bFt" id="DmT-0V-uWA"/>
-                <outlet property="view" destination="Hz6-mo-xeY" id="zzq-0g-nOy"/>
-            </connections>
-        </customObject>
-        <customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/>
-        <customObject id="-3" userLabel="Application" customClass="NSObject"/>
-        <customView id="Hz6-mo-xeY">
-            <rect key="frame" x="0.0" y="0.0" width="694" height="568"/>
-            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
-            <subviews>
-                <button translatesAutoresizingMaskIntoConstraints="NO" id="KkG-2O-ExR">
-                    <rect key="frame" x="18" y="472" width="133" height="18"/>
-                    <buttonCell key="cell" type="check" title="Use TLS transport" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="oTT-gO-fqM">
-                        <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
-                        <font key="font" metaFont="system"/>
-                    </buttonCell>
-                    <connections>
-                        <action selector="toggleUseTLS:" target="-2" id="ThA-al-8l0"/>
-                    </connections>
-                </button>
-                <customView translatesAutoresizingMaskIntoConstraints="NO" id="Ubf-Oe-BbE">
-                    <rect key="frame" x="27" y="270" width="640" height="196"/>
-                    <subviews>
-                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="JIN-cT-eC7">
-                            <rect key="frame" x="58" y="77" width="135" height="17"/>
-                            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
-                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="TLS protocol method" id="uOE-XA-5gW">
-                                <font key="font" metaFont="system"/>
-                                <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
-                                <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                            </textFieldCell>
-                        </textField>
-                        <pathControl verticalHuggingPriority="750" fixedFrame="YES" allowsExpansionToolTips="YES" translatesAutoresizingMaskIntoConstraints="NO" id="D3W-lQ-lnP">
-                            <rect key="frame" x="197" y="169" width="200" height="26"/>
-                            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
-                            <pathCell key="cell" selectable="YES" editable="YES" alignment="left" pathStyle="popUp" id="onD-BW-yiQ">
-                                <font key="font" metaFont="system"/>
-                            </pathCell>
-                            <connections>
-                                <action selector="caListPathControlSingleClick:" target="-2" id="q3F-hD-ivO"/>
-                                <outlet property="delegate" destination="-2" id="xmv-cI-kXi"/>
-                            </connections>
-                        </pathControl>
-                        <pathControl verticalHuggingPriority="750" fixedFrame="YES" allowsExpansionToolTips="YES" translatesAutoresizingMaskIntoConstraints="NO" id="nm6-E0-NSH">
-                            <rect key="frame" x="197" y="138" width="200" height="26"/>
-                            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
-                            <pathCell key="cell" selectable="YES" editable="YES" alignment="left" pathStyle="popUp" id="jgm-ZK-yDf">
-                                <font key="font" metaFont="system"/>
-                            </pathCell>
-                            <connections>
-                                <action selector="certificatePathControlSingleClick:" target="-2" id="QEp-Pf-AmX"/>
-                                <outlet property="delegate" destination="-2" id="7dO-SK-pkt"/>
-                            </connections>
-                        </pathControl>
-                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="oPj-Ol-4rt">
-                            <rect key="frame" x="96" y="142" width="101" height="17"/>
-                            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
-                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="User Certificate" id="Jqz-P0-zAz">
-                                <font key="font" metaFont="system"/>
-                                <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
-                                <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                            </textFieldCell>
-                        </textField>
-                        <popUpButton verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="OzX-Lm-vTo">
-                            <rect key="frame" x="198" y="72" width="204" height="26"/>
-                            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
-                            <popUpButtonCell key="cell" type="push" bezelStyle="rounded" alignment="left" lineBreakMode="truncatingTail" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" id="XAT-9Y-9e0">
-                                <behavior key="behavior" lightByBackground="YES" lightByGray="YES"/>
-                                <font key="font" metaFont="menu"/>
-                                <menu key="menu" id="hOG-SW-CBI">
-                                    <connections>
-                                        <outlet property="delegate" destination="-2" id="ri6-UD-0cj"/>
-                                    </connections>
-                                </menu>
-                            </popUpButtonCell>
-                            <connections>
-                                <action selector="chooseTlsMethod:" target="-2" id="Mas-vi-T6e"/>
-                            </connections>
-                        </popUpButton>
-                        <textField verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Vei-qo-Elj">
-                            <rect key="frame" x="350" y="9" width="96" height="22"/>
-                            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
-                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="wIn-YV-Pbm">
-                                <numberFormatter key="formatter" formatterBehavior="default10_4" usesGroupingSeparator="NO" groupingSize="0" minimumIntegerDigits="0" maximumIntegerDigits="42" id="Duh-um-Evj"/>
-                                <font key="font" metaFont="system"/>
-                                <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
-                                <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
-                            </textFieldCell>
-                            <connections>
-                                <outlet property="delegate" destination="-2" id="vaP-6X-fFT"/>
-                            </connections>
-                        </textField>
-                        <textField verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Zw6-Ys-Kie">
-                            <rect key="frame" x="350" y="38" width="244" height="22"/>
-                            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
-                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="CAB-Dc-UQr">
-                                <font key="font" metaFont="system"/>
-                                <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
-                                <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
-                            </textFieldCell>
-                            <connections>
-                                <outlet property="delegate" destination="-2" id="OPQ-A6-Llk"/>
-                            </connections>
-                        </textField>
-                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="TnB-RJ-T6u">
-                            <rect key="frame" x="27" y="41" width="317" height="17"/>
-                            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
-                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Server name instance for outgoing TLS connection" id="UxS-et-whJ">
-                                <font key="font" metaFont="system"/>
-                                <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
-                                <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                            </textFieldCell>
-                        </textField>
-                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="9Nq-Sf-LSO">
-                            <rect key="frame" x="215" y="12" width="129" height="17"/>
-                            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
-                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Negotiation timeout" id="9Q3-1W-Lh3">
-                                <font key="font" metaFont="system"/>
-                                <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
-                                <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                            </textFieldCell>
-                        </textField>
-                        <button horizontalHuggingPriority="750" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Bea-Hp-LP1">
-                            <rect key="frame" x="396" y="161" width="39" height="38"/>
-                            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
-                            <buttonCell key="cell" type="round" bezelStyle="circular" image="NSInfo" imagePosition="above" alignment="left" borderStyle="border" imageScaling="proportionallyDown" id="un1-35-2si">
-                                <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
-                                <font key="font" metaFont="label"/>
-                            </buttonCell>
-                            <connections>
-                                <action selector="showCA:" target="-2" id="tfO-R7-Odx"/>
-                            </connections>
-                        </button>
-                        <button horizontalHuggingPriority="750" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="aTq-AA-kGe">
-                            <rect key="frame" x="396" y="130" width="39" height="38"/>
-                            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
-                            <buttonCell key="cell" type="round" bezelStyle="circular" image="NSInfo" imagePosition="above" alignment="left" borderStyle="border" imageScaling="proportionallyDown" id="lFn-d8-HkS">
-                                <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
-                                <font key="font" metaFont="label"/>
-                            </buttonCell>
-                            <connections>
-                                <action selector="showEndpointCertificate:" target="-2" id="1dC-9g-Uax"/>
-                            </connections>
-                        </button>
-                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="J7P-Gf-Pq8">
-                            <rect key="frame" x="42" y="173" width="155" height="17"/>
-                            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
-                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Certificate Authority list" id="vPF-Rp-aR6">
-                                <font key="font" metaFont="system"/>
-                                <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
-                                <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                            </textFieldCell>
-                        </textField>
-                        <stepper horizontalHuggingPriority="750" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="HTb-Hz-UsO">
-                            <rect key="frame" x="451" y="6" width="19" height="27"/>
-                            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
-                            <stepperCell key="cell" continuous="YES" alignment="left" maxValue="100" id="NiO-pL-W7t"/>
-                            <connections>
-                                <action selector="valueDidChange:" target="-2" id="SZI-r3-CRu"/>
-                            </connections>
-                        </stepper>
-                        <customView hidden="YES" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="x7E-hL-I22">
-                            <rect key="frame" x="115" y="99" width="490" height="38"/>
-                            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
-                            <subviews>
-                                <pathControl verticalHuggingPriority="750" fixedFrame="YES" allowsExpansionToolTips="YES" translatesAutoresizingMaskIntoConstraints="NO" id="88W-qC-bQk">
-                                    <rect key="frame" x="82" y="6" width="200" height="26"/>
-                                    <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
-                                    <pathCell key="cell" selectable="YES" editable="YES" alignment="left" pathStyle="popUp" id="peP-JR-p0s">
-                                        <font key="font" metaFont="system"/>
-                                    </pathCell>
-                                    <connections>
-                                        <action selector="pvkFilePathControlSingleClick:" target="-2" id="zsf-fI-Wms"/>
-                                        <outlet property="delegate" destination="-2" id="Lg6-ti-eMl"/>
-                                    </connections>
-                                </pathControl>
-                                <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="1Si-LL-vAi">
-                                    <rect key="frame" x="10" y="12" width="72" height="17"/>
-                                    <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
-                                    <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Private key" id="JHb-iu-ZwI">
-                                        <font key="font" metaFont="system"/>
-                                        <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
-                                        <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                                    </textFieldCell>
-                                </textField>
-                                <secureTextField hidden="YES" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="bZ4-7D-4l0">
-                                    <rect key="frame" x="287" y="7" width="156" height="22"/>
-                                    <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
-                                    <secureTextFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" borderStyle="bezel" placeholderString="Password..." drawsBackground="YES" usesSingleLineMode="YES" id="7c2-kF-dcs">
-                                        <font key="font" metaFont="system"/>
-                                        <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
-                                        <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
-                                        <allowedInputSourceLocales>
-                                            <string>NSAllRomanInputSourcesLocaleIdentifier</string>
-                                        </allowedInputSourceLocales>
-                                    </secureTextFieldCell>
-                                    <connections>
-                                        <outlet property="delegate" destination="-2" id="xf5-zS-Th0"/>
-                                    </connections>
-                                </secureTextField>
-                                <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="CA9-su-iR7">
-                                    <rect key="frame" x="451" y="3" width="30" height="30"/>
-                                    <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
-                                    <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" id="lhg-Tn-cyY"/>
-                                </imageView>
-                            </subviews>
-                        </customView>
-                    </subviews>
-                    <constraints>
-                        <constraint firstAttribute="height" constant="196" id="UKk-m5-NpH"/>
-                    </constraints>
-                </customView>
-                <button translatesAutoresizingMaskIntoConstraints="NO" id="uPY-dc-wnh">
-                    <rect key="frame" x="38" y="504" width="119" height="18"/>
-                    <buttonCell key="cell" type="check" title="Fallback on RTP" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="Ig9-B1-7N3">
-                        <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
-                        <font key="font" metaFont="system"/>
-                    </buttonCell>
-                    <connections>
-                        <action selector="toggleRTPFallback:" target="-2" id="UOi-fW-eWB"/>
-                    </connections>
-                </button>
-                <button translatesAutoresizingMaskIntoConstraints="NO" id="MDR-gI-NEM">
-                    <rect key="frame" x="18" y="532" width="83" height="18"/>
-                    <buttonCell key="cell" type="check" title="Use SRTP" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="YtQ-hx-hih">
-                        <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
-                        <font key="font" metaFont="system"/>
-                    </buttonCell>
-                    <connections>
-                        <action selector="toggleUseSRTP:" target="-2" id="crs-ka-i2O"/>
-                    </connections>
-                </button>
-                <customView translatesAutoresizingMaskIntoConstraints="NO" id="Hb0-lT-WfA">
-                    <rect key="frame" x="27" y="8" width="640" height="254"/>
-                    <subviews>
-                        <button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="3df-06-qZy">
-                            <rect key="frame" x="44" y="170" width="160" height="18"/>
-                            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
-                            <buttonCell key="cell" type="check" title="Use custom cipher list" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="2e5-zS-ghg">
-                                <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
-                                <font key="font" metaFont="system"/>
-                            </buttonCell>
-                        </button>
-                        <button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="zc3-fU-bFt">
-                            <rect key="frame" x="44" y="55" width="290" height="18"/>
-                            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
-                            <buttonCell key="cell" type="check" title="Verify incoming certificates, as a server" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="x2s-ov-cVQ">
-                                <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
-                                <font key="font" metaFont="system"/>
-                            </buttonCell>
-                            <connections>
-                                <action selector="toggleVerifyCertServer:" target="-2" id="c4y-hN-v0d"/>
-                            </connections>
-                        </button>
-                        <button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="oUu-x4-vV2">
-                            <rect key="frame" x="44" y="34" width="333" height="18"/>
-                            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
-                            <buttonCell key="cell" type="check" title="Require certificates for incoming TLS connections" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="1f9-X5-ykb">
-                                <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
-                                <font key="font" metaFont="system"/>
-                            </buttonCell>
-                            <connections>
-                                <action selector="toggleRequireCert:" target="-2" id="4Vu-Hg-beA"/>
-                            </connections>
-                        </button>
-                        <scrollView fixedFrame="YES" autohidesScrollers="YES" horizontalLineScroll="19" horizontalPageScroll="10" verticalLineScroll="19" verticalPageScroll="10" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="rf5-DP-g8u">
-                            <rect key="frame" x="230" y="105" width="287" height="149"/>
-                            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
-                            <clipView key="contentView" ambiguous="YES" id="5qx-CS-RZZ">
-                                <rect key="frame" x="1" y="0.0" width="285" height="148"/>
-                                <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
-                                <subviews>
-                                    <outlineView verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" multipleSelection="NO" autosaveColumns="NO" headerView="d0e-h3-O5f" indentationPerLevel="16" outlineTableColumn="n3A-3A-ad2" id="J53-ev-CMr">
-                                        <rect key="frame" x="0.0" y="0.0" width="285" height="125"/>
-                                        <autoresizingMask key="autoresizingMask"/>
-                                        <size key="intercellSpacing" width="3" height="2"/>
-                                        <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
-                                        <color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/>
-                                        <tableColumns>
-                                            <tableColumn identifier="StateColumn" width="30.08984375" minWidth="10" maxWidth="3.4028234663852886e+38" id="Ctd-77-A6e" userLabel="State">
-                                                <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
-                                                    <font key="font" metaFont="smallSystem"/>
-                                                    <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
-                                                    <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
-                                                </tableHeaderCell>
-                                                <buttonCell key="dataCell" type="check" bezelStyle="regularSquare" imagePosition="overlaps" alignment="left" inset="2" id="lbr-Bo-TJZ">
-                                                    <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
-                                                    <font key="font" metaFont="system"/>
-                                                    <connections>
-                                                        <action selector="toggleCipher:" target="-2" id="IJu-SC-UzR"/>
-                                                    </connections>
-                                                </buttonCell>
-                                                <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/>
-                                            </tableColumn>
-                                            <tableColumn identifier="CipherNameColumn" width="249" minWidth="40" maxWidth="1000" id="n3A-3A-ad2">
-                                                <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
-                                                    <font key="font" metaFont="smallSystem"/>
-                                                    <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
-                                                    <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
-                                                </tableHeaderCell>
-                                                <textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" placeholderString="cipher cell" id="5LC-T6-hpk">
-                                                    <font key="font" metaFont="system"/>
-                                                    <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
-                                                    <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
-                                                </textFieldCell>
-                                                <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/>
-                                            </tableColumn>
-                                        </tableColumns>
-                                        <connections>
-                                            <outlet property="delegate" destination="-2" id="wwd-1j-4m9"/>
-                                        </connections>
-                                    </outlineView>
-                                </subviews>
-                            </clipView>
-                            <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="YES" id="IPW-7g-Ykq">
-                                <rect key="frame" x="1" y="7" width="0.0" height="16"/>
-                                <autoresizingMask key="autoresizingMask"/>
-                            </scroller>
-                            <scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="NO" id="P9Y-fn-MnT">
-                                <rect key="frame" x="-15" y="23" width="16" height="0.0"/>
-                                <autoresizingMask key="autoresizingMask"/>
-                            </scroller>
-                            <tableHeaderView key="headerView" id="d0e-h3-O5f">
-                                <rect key="frame" x="0.0" y="0.0" width="285" height="23"/>
-                                <autoresizingMask key="autoresizingMask"/>
-                            </tableHeaderView>
-                        </scrollView>
-                        <button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="IEc-xs-DVB">
-                            <rect key="frame" x="44" y="75" width="243" height="18"/>
-                            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
-                            <buttonCell key="cell" type="check" title="Verify certificates, as a client" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="1xi-9G-zOX">
-                                <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
-                                <font key="font" metaFont="system"/>
-                            </buttonCell>
-                            <connections>
-                                <action selector="toggleVerifyCertAsClient:" target="-2" id="fau-7t-gD2"/>
-                            </connections>
-                        </button>
-                    </subviews>
-                    <constraints>
-                        <constraint firstAttribute="height" constant="254" id="TGi-jE-lZ4"/>
-                    </constraints>
-                </customView>
-            </subviews>
-            <constraints>
-                <constraint firstItem="KkG-2O-ExR" firstAttribute="top" secondItem="uPY-dc-wnh" secondAttribute="bottom" constant="18" id="4wl-Nb-d2U"/>
-                <constraint firstAttribute="trailing" secondItem="Ubf-Oe-BbE" secondAttribute="trailing" constant="27" id="A1o-9n-CvN"/>
-                <constraint firstItem="KkG-2O-ExR" firstAttribute="leading" secondItem="Hz6-mo-xeY" secondAttribute="leading" constant="20" id="G71-qQ-vhg"/>
-                <constraint firstItem="MDR-gI-NEM" firstAttribute="leading" secondItem="Hz6-mo-xeY" secondAttribute="leading" constant="20" id="KaG-3P-BaO"/>
-                <constraint firstAttribute="bottom" relation="greaterThanOrEqual" secondItem="Hb0-lT-WfA" secondAttribute="bottom" constant="8" id="KlV-wR-GfU"/>
-                <constraint firstItem="Hb0-lT-WfA" firstAttribute="top" secondItem="Ubf-Oe-BbE" secondAttribute="bottom" constant="8" id="MfR-AK-5zJ"/>
-                <constraint firstItem="uPY-dc-wnh" firstAttribute="top" secondItem="MDR-gI-NEM" secondAttribute="bottom" constant="14" id="SXC-fJ-y8s"/>
-                <constraint firstItem="uPY-dc-wnh" firstAttribute="leading" secondItem="Hz6-mo-xeY" secondAttribute="leading" constant="40" id="U85-N5-wZm"/>
-                <constraint firstItem="Ubf-Oe-BbE" firstAttribute="top" secondItem="KkG-2O-ExR" secondAttribute="bottom" constant="8" id="Z8Z-56-0uO"/>
-                <constraint firstItem="MDR-gI-NEM" firstAttribute="top" secondItem="Hz6-mo-xeY" secondAttribute="top" constant="20" id="ZQK-mK-0eV"/>
-                <constraint firstItem="Hb0-lT-WfA" firstAttribute="leading" secondItem="Hz6-mo-xeY" secondAttribute="leading" constant="27" id="aor-1U-G2g"/>
-                <constraint firstItem="Ubf-Oe-BbE" firstAttribute="leading" secondItem="Hz6-mo-xeY" secondAttribute="leading" constant="27" id="eMc-FT-NOD"/>
-                <constraint firstAttribute="trailing" relation="greaterThanOrEqual" secondItem="KkG-2O-ExR" secondAttribute="trailing" constant="20" id="iGW-GD-YjN"/>
-                <constraint firstAttribute="trailing" secondItem="Hb0-lT-WfA" secondAttribute="trailing" constant="27" id="m19-Rq-xEJ"/>
-                <constraint firstAttribute="trailing" relation="greaterThanOrEqual" secondItem="MDR-gI-NEM" secondAttribute="trailing" constant="20" id="o8O-SH-Tha"/>
-                <constraint firstAttribute="trailing" relation="greaterThanOrEqual" secondItem="uPY-dc-wnh" secondAttribute="trailing" constant="20" id="q2w-zr-LlV"/>
-            </constraints>
-            <point key="canvasLocation" x="263" y="126"/>
-        </customView>
-    </objects>
-    <resources>
-        <image name="NSInfo" width="32" height="32"/>
-    </resources>
-</document>
diff --git a/ui/Base.lproj/AccSipGeneral.xib b/ui/Base.lproj/AccSipGeneral.xib
new file mode 100644
index 0000000000000000000000000000000000000000..87caad1c8c9e6234a6fd58291faa4a756b17d2de
--- /dev/null
+++ b/ui/Base.lproj/AccSipGeneral.xib
@@ -0,0 +1,300 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="14113" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" customObjectInstantitationMethod="direct">
+    <dependencies>
+        <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="14113"/>
+        <capability name="box content view" minToolsVersion="7.0"/>
+        <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
+        <capability name="system font weights other than Regular or Bold" minToolsVersion="7.0"/>
+    </dependencies>
+    <objects>
+        <customObject id="-2" userLabel="File's Owner" customClass="AccSipGeneralVC">
+            <connections>
+                <outlet property="addProfilePhotoImage" destination="vD2-5d-xYC" id="0qP-wK-TLt"/>
+                <outlet property="displayNameField" destination="CL9-nX-XME" id="3Px-zb-opY"/>
+                <outlet property="editAccountButton" destination="wa4-e6-vvz" id="X4u-md-x6l"/>
+                <outlet property="passwordField" destination="7SA-JB-crf" id="h5W-rm-a4X"/>
+                <outlet property="photoView" destination="J8z-Zq-1nD" id="UY3-Uu-SoO"/>
+                <outlet property="proxyField" destination="kve-vV-IWV" id="DiL-4T-7fO"/>
+                <outlet property="removeAccountButton" destination="Xyb-xK-fCS" id="9B4-s9-ED5"/>
+                <outlet property="serverField" destination="Nse-Qd-hDc" id="Mqw-PL-W5G"/>
+                <outlet property="userNameField" destination="ckx-3i-KaD" id="778-I8-evT"/>
+                <outlet property="view" destination="PiL-Un-fAk" id="TOc-uz-3G5"/>
+                <outlet property="voicemailField" destination="a8h-hk-xuC" id="qtL-Cw-daj"/>
+            </connections>
+        </customObject>
+        <customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/>
+        <customObject id="-3" userLabel="Application" customClass="NSObject"/>
+        <customView id="PiL-Un-fAk">
+            <rect key="frame" x="0.0" y="0.0" width="620" height="569"/>
+            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
+            <subviews>
+                <box boxType="custom" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="NlM-R9-ola">
+                    <rect key="frame" x="0.0" y="61" width="620" height="508"/>
+                    <view key="contentView" id="Zef-NJ-Zta">
+                        <rect key="frame" x="1" y="1" width="618" height="506"/>
+                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                    </view>
+                    <color key="borderColor" name="controlHighlightColor" catalog="System" colorSpace="catalog"/>
+                    <color key="fillColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                </box>
+                <view translatesAutoresizingMaskIntoConstraints="NO" id="pL7-7S-saC">
+                    <rect key="frame" x="110" y="0.0" width="400" height="569"/>
+                    <subviews>
+                        <button focusRingType="none" horizontalHuggingPriority="750" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="J8z-Zq-1nD">
+                            <rect key="frame" x="155" y="400" width="91" height="90"/>
+                            <constraints>
+                                <constraint firstAttribute="width" constant="91" id="fJW-Mk-uzu"/>
+                                <constraint firstAttribute="height" constant="90" id="vXw-oJ-nEs"/>
+                            </constraints>
+                            <buttonCell key="cell" type="inline" bezelStyle="inline" imagePosition="only" alignment="center" focusRingType="none" imageScaling="proportionallyUpOrDown" inset="2" id="SXq-He-YCN">
+                                <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                                <font key="font" metaFont="smallSystemBold"/>
+                            </buttonCell>
+                            <connections>
+                                <action selector="editPhoto:" target="-2" id="P4E-gl-kHr"/>
+                            </connections>
+                        </button>
+                        <textField verticalHuggingPriority="750" tag="100" translatesAutoresizingMaskIntoConstraints="NO" id="CL9-nX-XME">
+                            <rect key="frame" x="80" y="358" width="240" height="22"/>
+                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" alignment="center" placeholderString="Enter name" bezelStyle="round" id="YAG-qB-4wH">
+                                <font key="font" metaFont="system"/>
+                                <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
+                                <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                            </textFieldCell>
+                            <connections>
+                                <outlet property="delegate" destination="-2" id="jEV-mr-Qkg"/>
+                            </connections>
+                        </textField>
+                        <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="vD2-5d-xYC">
+                            <rect key="frame" x="185" y="430" width="30" height="30"/>
+                            <constraints>
+                                <constraint firstAttribute="width" constant="30" id="38i-A5-Ac5"/>
+                                <constraint firstAttribute="height" constant="30" id="D3W-oZ-iFF"/>
+                            </constraints>
+                            <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="ic_picture" id="MVT-bH-M5u"/>
+                        </imageView>
+                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="tdn-5e-eJN">
+                            <rect key="frame" x="18" y="531" width="364" height="18"/>
+                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Profile" id="oE8-tN-SfC">
+                                <font key="font" metaFont="systemSemibold" size="14"/>
+                                <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                            </textFieldCell>
+                        </textField>
+                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="cvm-qM-aoy">
+                            <rect key="frame" x="18" y="300" width="364" height="17"/>
+                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Account" id="eQt-bc-Eev">
+                                <font key="font" metaFont="systemSemibold" size="13"/>
+                                <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                            </textFieldCell>
+                        </textField>
+                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="WoC-F4-XLw">
+                            <rect key="frame" x="18" y="263" width="72" height="17"/>
+                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="User Name" id="Fj6-Q3-Gz3">
+                                <font key="font" metaFont="system"/>
+                                <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                            </textFieldCell>
+                        </textField>
+                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Yfd-0A-sB3">
+                            <rect key="frame" x="18" y="226" width="63" height="17"/>
+                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Password" id="Yof-e7-IBF">
+                                <font key="font" metaFont="system"/>
+                                <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                            </textFieldCell>
+                        </textField>
+                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="sfm-zu-uhe">
+                            <rect key="frame" x="18" y="189" width="67" height="17"/>
+                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="SIP Server" id="ZKc-70-TFH">
+                                <font key="font" metaFont="system"/>
+                                <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                            </textFieldCell>
+                        </textField>
+                        <textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="ckx-3i-KaD">
+                            <rect key="frame" x="150" y="263" width="230" height="20"/>
+                            <constraints>
+                                <constraint firstAttribute="height" constant="20" id="tSi-eE-dyL"/>
+                            </constraints>
+                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" drawsBackground="YES" id="zmU-E8-9jO">
+                                <font key="font" metaFont="system"/>
+                                <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
+                                <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                            </textFieldCell>
+                        </textField>
+                        <textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="7SA-JB-crf" customClass="NSSecureTextField">
+                            <rect key="frame" x="150" y="226" width="230" height="20"/>
+                            <constraints>
+                                <constraint firstAttribute="height" constant="20" id="p4d-F8-Ryg"/>
+                            </constraints>
+                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" drawsBackground="YES" id="CRt-f6-XCu">
+                                <font key="font" metaFont="system"/>
+                                <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
+                                <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                            </textFieldCell>
+                        </textField>
+                        <textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Nse-Qd-hDc">
+                            <rect key="frame" x="150" y="189" width="230" height="20"/>
+                            <constraints>
+                                <constraint firstAttribute="height" constant="20" id="Tvg-li-6Np"/>
+                            </constraints>
+                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" drawsBackground="YES" id="Agb-My-Tpl">
+                                <font key="font" metaFont="system"/>
+                                <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
+                                <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                            </textFieldCell>
+                        </textField>
+                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="qfH-eV-TPl">
+                            <rect key="frame" x="18" y="152" width="38" height="17"/>
+                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Proxy" id="688-Sx-Gvr">
+                                <font key="font" metaFont="system"/>
+                                <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                            </textFieldCell>
+                        </textField>
+                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="bZE-aV-Yc6">
+                            <rect key="frame" x="18" y="115" width="62" height="17"/>
+                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Voicemail" id="R7s-DE-PiP">
+                                <font key="font" metaFont="system"/>
+                                <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
+                            </textFieldCell>
+                        </textField>
+                        <textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="kve-vV-IWV">
+                            <rect key="frame" x="150" y="152" width="230" height="20"/>
+                            <constraints>
+                                <constraint firstAttribute="height" constant="20" id="XSd-x9-hEn"/>
+                            </constraints>
+                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" drawsBackground="YES" id="9q6-1c-CYo">
+                                <font key="font" metaFont="system"/>
+                                <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
+                                <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                            </textFieldCell>
+                        </textField>
+                        <textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="a8h-hk-xuC">
+                            <rect key="frame" x="150" y="115" width="230" height="20"/>
+                            <constraints>
+                                <constraint firstAttribute="height" constant="20" id="VWR-j9-d7f"/>
+                            </constraints>
+                            <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" drawsBackground="YES" id="eCQ-fg-fu6">
+                                <font key="font" metaFont="system"/>
+                                <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
+                                <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                            </textFieldCell>
+                        </textField>
+                        <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Ea1-ID-rxj">
+                            <rect key="frame" x="265" y="298" width="117" height="18"/>
+                            <buttonCell key="cell" type="check" title="Enable Account" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="nW8-pd-fNj">
+                                <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
+                                <font key="font" metaFont="system"/>
+                            </buttonCell>
+                            <connections>
+                                <action selector="enableAccount:" target="-2" id="1Tq-Ig-GZ6"/>
+                                <binding destination="-2" name="value" keyPath="self.accountEnabled" id="fOz-oY-EHB"/>
+                            </connections>
+                        </button>
+                        <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="z9N-MQ-FzB">
+                            <rect key="frame" x="150" y="13" width="100" height="32"/>
+                            <constraints>
+                                <constraint firstAttribute="width" constant="88" id="tow-r7-Hh6"/>
+                            </constraints>
+                            <buttonCell key="cell" type="push" title="Advanced" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="iEr-fN-5vD">
+                                <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                                <font key="font" metaFont="system"/>
+                            </buttonCell>
+                            <connections>
+                                <action selector="triggerAdwancedSettings:" target="-2" id="Zhf-Tv-2dE"/>
+                            </connections>
+                        </button>
+                        <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="wa4-e6-vvz">
+                            <rect key="frame" x="294" y="76" width="86" height="19"/>
+                            <buttonCell key="cell" type="roundRect" title="Edit Account" bezelStyle="roundedRect" alignment="center" state="on" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="jdU-uZ-Rfy">
+                                <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                                <font key="font" metaFont="cellTitle"/>
+                            </buttonCell>
+                            <connections>
+                                <action selector="changeEditingMode:" target="-2" id="bHd-Nl-rYQ"/>
+                            </connections>
+                        </button>
+                        <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Xyb-xK-fCS">
+                            <rect key="frame" x="165" y="76" width="109" height="19"/>
+                            <buttonCell key="cell" type="roundRect" title="Remove Account" bezelStyle="roundedRect" alignment="center" state="on" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="uFM-Am-0kz">
+                                <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                                <font key="font" metaFont="cellTitle"/>
+                            </buttonCell>
+                            <connections>
+                                <action selector="removeAccount:" target="-2" id="GMv-lR-RII"/>
+                            </connections>
+                        </button>
+                    </subviews>
+                    <constraints>
+                        <constraint firstItem="kve-vV-IWV" firstAttribute="leading" secondItem="Nse-Qd-hDc" secondAttribute="leading" id="1At-4p-GiD"/>
+                        <constraint firstItem="7SA-JB-crf" firstAttribute="leading" secondItem="ckx-3i-KaD" secondAttribute="leading" id="2mv-Uf-0iA"/>
+                        <constraint firstAttribute="trailing" secondItem="cvm-qM-aoy" secondAttribute="trailing" constant="20" id="4cd-yI-tWm"/>
+                        <constraint firstItem="wa4-e6-vvz" firstAttribute="bottom" secondItem="Xyb-xK-fCS" secondAttribute="bottom" id="4zv-BO-vUx"/>
+                        <constraint firstItem="Ea1-ID-rxj" firstAttribute="bottom" secondItem="cvm-qM-aoy" secondAttribute="bottom" id="75b-Qt-rqb"/>
+                        <constraint firstItem="sfm-zu-uhe" firstAttribute="leading" secondItem="pL7-7S-saC" secondAttribute="leading" constant="20" id="9sw-ff-Wm0"/>
+                        <constraint firstItem="qfH-eV-TPl" firstAttribute="top" secondItem="sfm-zu-uhe" secondAttribute="bottom" constant="20" id="9uW-jk-Cag"/>
+                        <constraint firstItem="tdn-5e-eJN" firstAttribute="leading" secondItem="pL7-7S-saC" secondAttribute="leading" constant="20" id="BdH-18-hj4"/>
+                        <constraint firstAttribute="bottom" secondItem="z9N-MQ-FzB" secondAttribute="bottom" constant="20" id="GDQ-g5-6om"/>
+                        <constraint firstItem="J8z-Zq-1nD" firstAttribute="top" secondItem="tdn-5e-eJN" secondAttribute="bottom" constant="41" id="IIE-QL-5wX"/>
+                        <constraint firstItem="Xyb-xK-fCS" firstAttribute="top" secondItem="bZE-aV-Yc6" secondAttribute="bottom" constant="20" id="IOj-Cr-bVJ"/>
+                        <constraint firstItem="a8h-hk-xuC" firstAttribute="bottom" secondItem="bZE-aV-Yc6" secondAttribute="bottom" id="IeN-9b-Zw4"/>
+                        <constraint firstItem="a8h-hk-xuC" firstAttribute="leading" secondItem="Nse-Qd-hDc" secondAttribute="leading" id="ImN-Dj-St2"/>
+                        <constraint firstItem="bZE-aV-Yc6" firstAttribute="leading" secondItem="sfm-zu-uhe" secondAttribute="leading" id="IyS-RN-BmA"/>
+                        <constraint firstAttribute="trailing" secondItem="Nse-Qd-hDc" secondAttribute="trailing" constant="20" id="J04-Rq-Z9c"/>
+                        <constraint firstItem="WoC-F4-XLw" firstAttribute="top" secondItem="cvm-qM-aoy" secondAttribute="bottom" constant="20" id="JrW-L5-xkr"/>
+                        <constraint firstItem="WoC-F4-XLw" firstAttribute="leading" secondItem="pL7-7S-saC" secondAttribute="leading" constant="20" id="K38-Ko-pN1"/>
+                        <constraint firstItem="CL9-nX-XME" firstAttribute="centerX" secondItem="pL7-7S-saC" secondAttribute="centerX" id="Kq5-xf-vn2"/>
+                        <constraint firstItem="kve-vV-IWV" firstAttribute="bottom" secondItem="qfH-eV-TPl" secondAttribute="bottom" id="Lzg-SW-wNV"/>
+                        <constraint firstItem="Ea1-ID-rxj" firstAttribute="trailing" secondItem="ckx-3i-KaD" secondAttribute="trailing" id="M0B-kn-dUT"/>
+                        <constraint firstAttribute="trailing" secondItem="CL9-nX-XME" secondAttribute="trailing" constant="80" id="MXq-S6-Hds"/>
+                        <constraint firstItem="Yfd-0A-sB3" firstAttribute="leading" secondItem="pL7-7S-saC" secondAttribute="leading" constant="20" id="NYC-yJ-Vxz"/>
+                        <constraint firstItem="z9N-MQ-FzB" firstAttribute="centerX" secondItem="pL7-7S-saC" secondAttribute="centerX" id="P7t-Xb-Ky2"/>
+                        <constraint firstItem="ckx-3i-KaD" firstAttribute="leading" secondItem="pL7-7S-saC" secondAttribute="leading" constant="150" id="RPP-OL-beG"/>
+                        <constraint firstItem="vD2-5d-xYC" firstAttribute="centerX" secondItem="J8z-Zq-1nD" secondAttribute="centerX" id="SB3-G2-tRI"/>
+                        <constraint firstItem="CL9-nX-XME" firstAttribute="leading" secondItem="pL7-7S-saC" secondAttribute="leading" constant="80" id="SzF-cB-Wqs"/>
+                        <constraint firstItem="vD2-5d-xYC" firstAttribute="centerY" secondItem="J8z-Zq-1nD" secondAttribute="centerY" id="TqN-Qi-MLV"/>
+                        <constraint firstItem="Yfd-0A-sB3" firstAttribute="top" secondItem="WoC-F4-XLw" secondAttribute="bottom" constant="20" id="UzE-aR-75E"/>
+                        <constraint firstAttribute="trailing" secondItem="7SA-JB-crf" secondAttribute="trailing" constant="20" id="b6b-AE-rUX"/>
+                        <constraint firstItem="a8h-hk-xuC" firstAttribute="trailing" secondItem="Nse-Qd-hDc" secondAttribute="trailing" id="clz-7o-u1V"/>
+                        <constraint firstItem="CL9-nX-XME" firstAttribute="top" secondItem="J8z-Zq-1nD" secondAttribute="bottom" constant="20" id="dXZ-Ca-XkN"/>
+                        <constraint firstItem="kve-vV-IWV" firstAttribute="trailing" secondItem="Nse-Qd-hDc" secondAttribute="trailing" id="dgk-Vm-gXV"/>
+                        <constraint firstItem="tdn-5e-eJN" firstAttribute="top" secondItem="pL7-7S-saC" secondAttribute="top" constant="20" id="fAh-9d-Mil"/>
+                        <constraint firstItem="Nse-Qd-hDc" firstAttribute="bottom" secondItem="sfm-zu-uhe" secondAttribute="bottom" id="irv-Id-1FM"/>
+                        <constraint firstItem="cvm-qM-aoy" firstAttribute="leading" secondItem="pL7-7S-saC" secondAttribute="leading" constant="20" id="lrB-by-BqC"/>
+                        <constraint firstItem="wa4-e6-vvz" firstAttribute="trailing" secondItem="a8h-hk-xuC" secondAttribute="trailing" id="n4r-pi-OXI"/>
+                        <constraint firstAttribute="width" constant="400" id="p43-v3-JmG"/>
+                        <constraint firstItem="sfm-zu-uhe" firstAttribute="top" secondItem="Yfd-0A-sB3" secondAttribute="bottom" constant="20" id="p4Y-Cu-eXE"/>
+                        <constraint firstItem="ckx-3i-KaD" firstAttribute="bottom" secondItem="WoC-F4-XLw" secondAttribute="bottom" id="qPj-Hk-TPY"/>
+                        <constraint firstAttribute="trailing" secondItem="ckx-3i-KaD" secondAttribute="trailing" constant="20" id="rve-n7-1b0"/>
+                        <constraint firstAttribute="trailing" secondItem="tdn-5e-eJN" secondAttribute="trailing" constant="20" id="t1p-aU-VhV"/>
+                        <constraint firstItem="wa4-e6-vvz" firstAttribute="leading" secondItem="Xyb-xK-fCS" secondAttribute="trailing" constant="20" id="tJA-W8-shZ"/>
+                        <constraint firstItem="qfH-eV-TPl" firstAttribute="leading" secondItem="sfm-zu-uhe" secondAttribute="leading" id="uq4-Vr-ZuV"/>
+                        <constraint firstItem="J8z-Zq-1nD" firstAttribute="centerX" secondItem="pL7-7S-saC" secondAttribute="centerX" id="vqN-4Z-7Uf"/>
+                        <constraint firstItem="7SA-JB-crf" firstAttribute="bottom" secondItem="Yfd-0A-sB3" secondAttribute="bottom" id="x1c-h3-Als"/>
+                        <constraint firstItem="cvm-qM-aoy" firstAttribute="top" secondItem="CL9-nX-XME" secondAttribute="bottom" constant="41" id="x5B-N0-VYC"/>
+                        <constraint firstItem="Nse-Qd-hDc" firstAttribute="leading" secondItem="ckx-3i-KaD" secondAttribute="leading" id="xgo-tB-aKT"/>
+                        <constraint firstItem="bZE-aV-Yc6" firstAttribute="top" secondItem="qfH-eV-TPl" secondAttribute="bottom" constant="20" id="y2y-lO-XuY"/>
+                    </constraints>
+                </view>
+            </subviews>
+            <constraints>
+                <constraint firstItem="pL7-7S-saC" firstAttribute="centerY" secondItem="PiL-Un-fAk" secondAttribute="centerY" id="91p-41-O3c"/>
+                <constraint firstItem="pL7-7S-saC" firstAttribute="centerX" secondItem="PiL-Un-fAk" secondAttribute="centerX" id="NyI-gT-xvI"/>
+                <constraint firstItem="NlM-R9-ola" firstAttribute="top" secondItem="PiL-Un-fAk" secondAttribute="top" id="RHp-dq-cAt"/>
+                <constraint firstItem="pL7-7S-saC" firstAttribute="top" secondItem="PiL-Un-fAk" secondAttribute="top" id="S1F-H0-Uww"/>
+                <constraint firstItem="z9N-MQ-FzB" firstAttribute="top" secondItem="NlM-R9-ola" secondAttribute="bottom" constant="20" id="e1z-un-VIR"/>
+                <constraint firstItem="NlM-R9-ola" firstAttribute="leading" secondItem="PiL-Un-fAk" secondAttribute="leading" id="rgH-IC-jDH"/>
+                <constraint firstAttribute="trailing" secondItem="NlM-R9-ola" secondAttribute="trailing" id="wuP-uJ-blx"/>
+            </constraints>
+            <point key="canvasLocation" x="-901" y="256.5"/>
+        </customView>
+        <userDefaultsController representsSharedInstance="YES" id="cPD-mY-HZF"/>
+    </objects>
+    <resources>
+        <image name="ic_picture" width="72" height="72"/>
+    </resources>
+</document>
diff --git a/ui/Base.lproj/AccountSettings.xib b/ui/Base.lproj/AccountSettings.xib
new file mode 100644
index 0000000000000000000000000000000000000000..d27f84cf383244ced9e7fa176e8628734076d217
--- /dev/null
+++ b/ui/Base.lproj/AccountSettings.xib
@@ -0,0 +1,54 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="14113" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" customObjectInstantitationMethod="direct">
+    <dependencies>
+        <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="14113"/>
+        <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
+    </dependencies>
+    <objects>
+        <customObject id="-2" userLabel="File's Owner" customClass="AccountSettingsVC">
+            <connections>
+                <outlet property="containerView" destination="FE5-WQ-UWb" id="otG-mf-CBG"/>
+                <outlet property="view" destination="Hz6-mo-xeY" id="0bl-1N-x8E"/>
+            </connections>
+        </customObject>
+        <customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/>
+        <customObject id="-3" userLabel="Application" customClass="NSObject"/>
+        <customView id="Hz6-mo-xeY">
+            <rect key="frame" x="0.0" y="0.0" width="820" height="828"/>
+            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
+            <subviews>
+                <scrollView borderType="none" autohidesScrollers="YES" horizontalLineScroll="10" horizontalPageScroll="10" verticalLineScroll="10" verticalPageScroll="10" hasHorizontalScroller="NO" hasVerticalScroller="NO" usesPredominantAxisScrolling="NO" horizontalScrollElasticity="none" translatesAutoresizingMaskIntoConstraints="NO" id="FE5-WQ-UWb">
+                    <rect key="frame" x="0.0" y="0.0" width="820" height="828"/>
+                    <clipView key="contentView" drawsBackground="NO" copiesOnScroll="NO" id="AS0-K7-DN3" customClass="CenteredClipView">
+                        <rect key="frame" x="0.0" y="0.0" width="820" height="828"/>
+                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                        <subviews>
+                            <view fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="kLY-tq-1VN">
+                                <rect key="frame" x="100" y="0.0" width="620" height="828"/>
+                                <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
+                            </view>
+                        </subviews>
+                        <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
+                    </clipView>
+                    <edgeInsets key="contentInsets" left="0.0" right="0.0" top="20" bottom="0.0"/>
+                    <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="YES" id="raF-h3-PC0">
+                        <rect key="frame" x="-100" y="-100" width="670" height="16"/>
+                        <autoresizingMask key="autoresizingMask"/>
+                    </scroller>
+                    <scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" doubleValue="1" horizontal="NO" id="Pt7-JA-8ml">
+                        <rect key="frame" x="-100" y="-100" width="16" height="768"/>
+                        <autoresizingMask key="autoresizingMask"/>
+                    </scroller>
+                </scrollView>
+            </subviews>
+            <constraints>
+                <constraint firstItem="FE5-WQ-UWb" firstAttribute="leading" secondItem="Hz6-mo-xeY" secondAttribute="leading" id="0TU-rV-Feb"/>
+                <constraint firstItem="FE5-WQ-UWb" firstAttribute="centerX" secondItem="Hz6-mo-xeY" secondAttribute="centerX" id="Eod-1m-b43"/>
+                <constraint firstAttribute="trailing" secondItem="FE5-WQ-UWb" secondAttribute="trailing" id="Eoo-Ln-11S"/>
+                <constraint firstItem="FE5-WQ-UWb" firstAttribute="top" secondItem="Hz6-mo-xeY" secondAttribute="top" id="K1o-6r-aG8"/>
+                <constraint firstAttribute="bottom" secondItem="FE5-WQ-UWb" secondAttribute="bottom" id="V1A-Qu-x4s"/>
+            </constraints>
+            <point key="canvasLocation" x="139" y="267.5"/>
+        </customView>
+    </objects>
+</document>
diff --git a/ui/Base.lproj/Accounts.xib b/ui/Base.lproj/Accounts.xib
deleted file mode 100644
index 42343553ade7a03c34b7b309a7e4a70005ce13d7..0000000000000000000000000000000000000000
--- a/ui/Base.lproj/Accounts.xib
+++ /dev/null
@@ -1,254 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="11762" systemVersion="16D30a" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES">
-    <dependencies>
-        <development version="7000" identifier="xcode"/>
-        <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="11762"/>
-    </dependencies>
-    <objects>
-        <customObject id="-2" userLabel="File's Owner" customClass="AccountsVC">
-            <connections>
-                <outlet property="accountDetailsView" destination="Jki-s4-F1W" id="8zf-XP-bql"/>
-                <outlet property="accountsListView" destination="jXv-6I-P9R" id="MzW-0C-PN1"/>
-                <outlet property="advancedTabItem" destination="RT7-u6-bhe" id="eAT-ce-MyD"/>
-                <outlet property="bannedListTabItem" destination="b7Z-2X-diH" id="Gvp-uP-Vgw"/>
-                <outlet property="configPanels" destination="Jki-s4-F1W" id="nY4-dc-CQg"/>
-                <outlet property="generalTabItem" destination="tPR-Ac-N5Y" id="39S-pz-1Xs"/>
-                <outlet property="mediaTabItem" destination="lxr-my-vH8" id="BhJ-cS-yVi"/>
-                <outlet property="ringDevicesTabItem" destination="cT1-A5-rbj" id="Sql-e4-mD8"/>
-                <outlet property="ringTabItem" destination="1HC-kF-Jun" id="FJZ-2g-Y1i"/>
-                <outlet property="securityTabItem" destination="Vp5-yV-ScC" id="FDx-0T-3t9"/>
-                <outlet property="view" destination="Hz6-mo-xeY" id="eBn-rZ-84z"/>
-            </connections>
-        </customObject>
-        <customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/>
-        <customObject id="-3" userLabel="Application" customClass="NSObject"/>
-        <customView id="Hz6-mo-xeY">
-            <rect key="frame" x="0.0" y="0.0" width="880" height="512"/>
-            <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
-            <subviews>
-                <tabView hidden="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Jki-s4-F1W">
-                    <rect key="frame" x="271" y="10" width="596" height="488"/>
-                    <font key="font" metaFont="system"/>
-                    <tabViewItems>
-                        <tabViewItem label="General" identifier="1" id="tPR-Ac-N5Y">
-                            <view key="view" id="8c3-Js-oxO">
-                                <rect key="frame" x="10" y="33" width="576" height="442"/>
-                                <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
-                            </view>
-                        </tabViewItem>
-                        <tabViewItem label="Media" identifier="2" id="lxr-my-vH8">
-                            <view key="view" id="p9F-kK-hRx">
-                                <rect key="frame" x="10" y="33" width="576" height="442"/>
-                                <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
-                            </view>
-                        </tabViewItem>
-                        <tabViewItem label="Advanced" identifier="" id="RT7-u6-bhe">
-                            <view key="view" id="Pp4-JG-r1v">
-                                <rect key="frame" x="10" y="33" width="576" height="442"/>
-                                <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
-                            </view>
-                        </tabViewItem>
-                        <tabViewItem label="Security" identifier="" id="Vp5-yV-ScC">
-                            <view key="view" id="p3d-5C-tAZ">
-                                <rect key="frame" x="10" y="33" width="576" height="442"/>
-                                <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
-                            </view>
-                        </tabViewItem>
-                        <tabViewItem label="Ring" identifier="" id="1HC-kF-Jun">
-                            <view key="view" id="asB-J0-2bi">
-                                <rect key="frame" x="10" y="33" width="576" height="442"/>
-                                <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
-                            </view>
-                        </tabViewItem>
-                        <tabViewItem label="Devices" identifier="" id="cT1-A5-rbj">
-                            <view key="view" id="Ey1-5D-Zou">
-                                <rect key="frame" x="10" y="33" width="576" height="442"/>
-                                <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
-                            </view>
-                        </tabViewItem>
-                        <tabViewItem label="Banned" identifier="" id="b7Z-2X-diH">
-                            <view key="view" id="tHP-tb-Jl4">
-                                <rect key="frame" x="10" y="33" width="576" height="442"/>
-                                <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
-                            </view>
-                        </tabViewItem>
-                    </tabViewItems>
-                    <connections>
-                        <outlet property="delegate" destination="-2" id="hfK-WK-DJT"/>
-                    </connections>
-                </tabView>
-                <scrollView borderType="none" autohidesScrollers="YES" horizontalLineScroll="57" horizontalPageScroll="10" verticalLineScroll="57" verticalPageScroll="10" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ZBN-hf-rGe">
-                    <rect key="frame" x="20" y="20" width="250" height="472"/>
-                    <clipView key="contentView" id="f8N-NI-2Mk">
-                        <rect key="frame" x="0.0" y="0.0" width="250" height="472"/>
-                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
-                        <subviews>
-                            <outlineView verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" autosaveColumns="NO" rowHeight="55" rowSizeStyle="automatic" viewBased="YES" outlineTableColumn="eOe-f3-q88" id="jXv-6I-P9R" customClass="RingOutlineView">
-                                <rect key="frame" x="0.0" y="0.0" width="250" height="472"/>
-                                <autoresizingMask key="autoresizingMask"/>
-                                <size key="intercellSpacing" width="3" height="2"/>
-                                <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
-                                <color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/>
-                                <tableColumns>
-                                    <tableColumn width="247" minWidth="40" maxWidth="1000" id="eOe-f3-q88">
-                                        <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border">
-                                            <font key="font" metaFont="smallSystem"/>
-                                            <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
-                                            <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
-                                        </tableHeaderCell>
-                                        <textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" id="cy4-WY-oWA">
-                                            <font key="font" metaFont="system"/>
-                                            <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
-                                            <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
-                                        </textFieldCell>
-                                        <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/>
-                                        <prototypeCellViews>
-                                            <tableCellView identifier="AccountView" id="ad8-7V-ppH">
-                                                <rect key="frame" x="1" y="1" width="247" height="50"/>
-                                                <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
-                                                <subviews>
-                                                    <textField verticalHuggingPriority="750" tag="300" translatesAutoresizingMaskIntoConstraints="NO" id="QiY-lg-2e7" userLabel="Status label">
-                                                        <rect key="frame" x="38" y="6" width="174" height="14"/>
-                                                        <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" placeholderString="Status" id="eEz-Lm-SOj">
-                                                            <font key="font" metaFont="smallSystem"/>
-                                                            <color key="textColor" name="secondaryLabelColor" catalog="System" colorSpace="catalog"/>
-                                                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                                                        </textFieldCell>
-                                                    </textField>
-                                                    <button tag="100" translatesAutoresizingMaskIntoConstraints="NO" id="4gW-o0-qBs">
-                                                        <rect key="frame" x="4" y="10" width="30" height="30"/>
-                                                        <constraints>
-                                                            <constraint firstAttribute="height" constant="26" id="dPg-jt-2bB"/>
-                                                            <constraint firstAttribute="width" constant="26" id="nd2-5p-LZP"/>
-                                                        </constraints>
-                                                        <buttonCell key="cell" type="check" bezelStyle="regularSquare" imagePosition="overlaps" state="on" inset="2" id="98N-mV-Lvs">
-                                                            <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
-                                                            <font key="font" metaFont="system"/>
-                                                        </buttonCell>
-                                                        <connections>
-                                                            <action selector="toggleAccount:" target="-2" id="kSH-L7-JBk"/>
-                                                        </connections>
-                                                    </button>
-                                                    <textField verticalHuggingPriority="750" tag="200" translatesAutoresizingMaskIntoConstraints="NO" id="6TV-dI-Snq" userLabel="Name label">
-                                                        <rect key="frame" x="38" y="26" width="208" height="21"/>
-                                                        <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" placeholderString="Name" id="ZDh-Jh-hfW">
-                                                            <font key="font" metaFont="system" size="17"/>
-                                                            <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
-                                                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                                                        </textFieldCell>
-                                                    </textField>
-                                                    <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" tag="400" translatesAutoresizingMaskIntoConstraints="NO" id="Xc2-3P-8bD" userLabel="Type label">
-                                                        <rect key="frame" x="216" y="6" width="30" height="14"/>
-                                                        <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" placeholderString="Type" id="KoR-IH-uuI">
-                                                            <font key="font" metaFont="smallSystem"/>
-                                                            <color key="textColor" name="secondaryLabelColor" catalog="System" colorSpace="catalog"/>
-                                                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                                                        </textFieldCell>
-                                                    </textField>
-                                                </subviews>
-                                                <constraints>
-                                                    <constraint firstItem="Xc2-3P-8bD" firstAttribute="leading" secondItem="QiY-lg-2e7" secondAttribute="trailing" constant="8" id="3v7-n0-iXY"/>
-                                                    <constraint firstAttribute="trailing" secondItem="6TV-dI-Snq" secondAttribute="trailing" constant="3" id="CTP-TN-Vbi"/>
-                                                    <constraint firstItem="6TV-dI-Snq" firstAttribute="leading" secondItem="4gW-o0-qBs" secondAttribute="trailing" constant="8" id="Hse-mO-dPa"/>
-                                                    <constraint firstItem="4gW-o0-qBs" firstAttribute="leading" secondItem="ad8-7V-ppH" secondAttribute="leading" constant="6" id="JY6-MP-VFh"/>
-                                                    <constraint firstAttribute="bottom" secondItem="Xc2-3P-8bD" secondAttribute="bottom" constant="6" id="L9T-l6-RwY"/>
-                                                    <constraint firstAttribute="trailing" secondItem="Xc2-3P-8bD" secondAttribute="trailing" constant="3" id="N3o-ax-ByI"/>
-                                                    <constraint firstItem="QiY-lg-2e7" firstAttribute="top" secondItem="6TV-dI-Snq" secondAttribute="bottom" constant="6" id="Xzf-V4-6yK"/>
-                                                    <constraint firstItem="QiY-lg-2e7" firstAttribute="leading" secondItem="4gW-o0-qBs" secondAttribute="trailing" constant="8" id="dNJ-97-LA6"/>
-                                                    <constraint firstItem="4gW-o0-qBs" firstAttribute="centerY" secondItem="ad8-7V-ppH" secondAttribute="centerY" id="iiW-GM-OrE"/>
-                                                    <constraint firstItem="6TV-dI-Snq" firstAttribute="top" secondItem="ad8-7V-ppH" secondAttribute="top" constant="3" id="kk5-KX-RD5"/>
-                                                </constraints>
-                                            </tableCellView>
-                                            <customView identifier="HoverRowView" id="m8X-vo-tKI" customClass="HoverTableRowView">
-                                                <rect key="frame" x="1" y="53" width="247" height="55"/>
-                                                <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
-                                            </customView>
-                                        </prototypeCellViews>
-                                    </tableColumn>
-                                </tableColumns>
-                                <connections>
-                                    <outlet property="delegate" destination="-2" id="nyk-3k-Pyh"/>
-                                </connections>
-                            </outlineView>
-                        </subviews>
-                    </clipView>
-                    <constraints>
-                        <constraint firstAttribute="width" constant="250" id="aC0-6T-CUo"/>
-                    </constraints>
-                    <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="YES" id="x1l-v5-r0B">
-                        <rect key="frame" x="1" y="119" width="223" height="15"/>
-                        <autoresizingMask key="autoresizingMask"/>
-                    </scroller>
-                    <scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="NO" id="nVp-Qk-GaJ">
-                        <rect key="frame" x="234" y="0.0" width="16" height="0.0"/>
-                        <autoresizingMask key="autoresizingMask"/>
-                    </scroller>
-                </scrollView>
-                <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Ob6-rc-0pc">
-                    <rect key="frame" x="29" y="30" width="25" height="19"/>
-                    <constraints>
-                        <constraint firstAttribute="width" constant="25" id="LD0-By-rSn"/>
-                        <constraint firstAttribute="height" constant="19" id="fq7-kf-WMZ"/>
-                    </constraints>
-                    <buttonCell key="cell" type="smallSquare" bezelStyle="smallSquare" image="NSRemoveTemplate" imagePosition="overlaps" alignment="center" lineBreakMode="truncatingTail" state="on" imageScaling="proportionallyDown" inset="2" id="jnk-VG-Do6">
-                        <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
-                        <font key="font" metaFont="system"/>
-                    </buttonCell>
-                    <connections>
-                        <action selector="removeAccount:" target="-2" id="nTB-Tc-25y"/>
-                    </connections>
-                </button>
-                <button hidden="YES" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="nRs-ZL-bau">
-                    <rect key="frame" x="95" y="30" width="25" height="19"/>
-                    <constraints>
-                        <constraint firstAttribute="height" constant="19" id="Cwe-N0-jdv"/>
-                        <constraint firstAttribute="width" constant="25" id="qWu-IV-gld"/>
-                    </constraints>
-                    <buttonCell key="cell" type="smallSquare" bezelStyle="smallSquare" image="NSActionTemplate" imagePosition="overlaps" alignment="center" lineBreakMode="truncatingTail" state="on" imageScaling="proportionallyDown" inset="2" id="q7p-0B-d1J">
-                        <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
-                        <font key="font" metaFont="system"/>
-                    </buttonCell>
-                    <connections>
-                        <action selector="advancedActionsClicked:" target="-2" id="8tJ-gr-g2S"/>
-                    </connections>
-                </button>
-                <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="vw8-CE-SI3">
-                    <rect key="frame" x="62" y="30" width="25" height="19"/>
-                    <constraints>
-                        <constraint firstAttribute="height" constant="19" id="tWv-1t-IJ0"/>
-                        <constraint firstAttribute="width" constant="25" id="uzs-E6-3dm"/>
-                    </constraints>
-                    <buttonCell key="cell" type="smallSquare" bezelStyle="smallSquare" image="NSAddTemplate" imagePosition="overlaps" alignment="center" lineBreakMode="truncatingTail" state="on" imageScaling="proportionallyDown" inset="2" id="t1U-xO-AUQ">
-                        <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
-                        <font key="font" metaFont="system"/>
-                    </buttonCell>
-                    <connections>
-                        <action selector="addAccountClicked:" target="-2" id="A43-rk-iZv"/>
-                    </connections>
-                </button>
-            </subviews>
-            <constraints>
-                <constraint firstAttribute="bottom" secondItem="Ob6-rc-0pc" secondAttribute="bottom" constant="30" id="0C2-Ld-T0y"/>
-                <constraint firstItem="nRs-ZL-bau" firstAttribute="leading" secondItem="vw8-CE-SI3" secondAttribute="trailing" constant="8" id="3gp-2f-wq3"/>
-                <constraint firstAttribute="bottom" secondItem="vw8-CE-SI3" secondAttribute="bottom" constant="30" id="ABm-As-hUM"/>
-                <constraint firstAttribute="bottom" secondItem="Jki-s4-F1W" secondAttribute="bottom" constant="20" id="C1O-rd-eUI"/>
-                <constraint firstItem="nRs-ZL-bau" firstAttribute="leading" secondItem="vw8-CE-SI3" secondAttribute="trailing" constant="8" id="Fby-1i-GjO"/>
-                <constraint firstAttribute="trailing" secondItem="Jki-s4-F1W" secondAttribute="trailing" constant="20" id="J96-3h-sxa"/>
-                <constraint firstItem="Ob6-rc-0pc" firstAttribute="leading" secondItem="Hz6-mo-xeY" secondAttribute="leading" constant="29" id="MvW-9N-mfB"/>
-                <constraint firstAttribute="bottom" secondItem="ZBN-hf-rGe" secondAttribute="bottom" constant="20" id="WFi-ip-hsu"/>
-                <constraint firstItem="Jki-s4-F1W" firstAttribute="leading" secondItem="ZBN-hf-rGe" secondAttribute="trailing" constant="8" id="Zzg-Tr-BVP"/>
-                <constraint firstItem="Jki-s4-F1W" firstAttribute="top" secondItem="Hz6-mo-xeY" secondAttribute="top" constant="20" id="fez-KJ-jhG"/>
-                <constraint firstAttribute="bottom" secondItem="nRs-ZL-bau" secondAttribute="bottom" constant="30" id="iaa-cK-FqF"/>
-                <constraint firstItem="ZBN-hf-rGe" firstAttribute="top" secondItem="Hz6-mo-xeY" secondAttribute="top" constant="20" id="jPM-jY-R59"/>
-                <constraint firstItem="ZBN-hf-rGe" firstAttribute="leading" secondItem="Hz6-mo-xeY" secondAttribute="leading" constant="20" id="u8B-Kk-OHn"/>
-                <constraint firstItem="vw8-CE-SI3" firstAttribute="leading" secondItem="Ob6-rc-0pc" secondAttribute="trailing" constant="8" id="yaX-kX-3fK"/>
-            </constraints>
-            <point key="canvasLocation" x="542" y="212"/>
-        </customView>
-    </objects>
-    <resources>
-        <image name="NSActionTemplate" width="14" height="14"/>
-        <image name="NSAddTemplate" width="11" height="11"/>
-        <image name="NSRemoveTemplate" width="11" height="11"/>
-    </resources>
-</document>
diff --git a/ui/Base.lproj/BackupAccountWindow.strings b/ui/Base.lproj/BackupAccountWindow.strings
index 752805609afc702a91c1c3595fddf281bd747dfe..e482121e3418493cec0778d8a576382787426ec5 100644
--- a/ui/Base.lproj/BackupAccountWindow.strings
+++ b/ui/Base.lproj/BackupAccountWindow.strings
@@ -17,8 +17,8 @@
 /* Class = "NSTextFieldCell"; title = "Where"; ObjectID = "9h8-GU-av4"; */
 "9h8-GU-av4.title" = "Where";
 
-/* Class = "NSTextFieldCell"; title = "Choose where to backup your account. It needs to be password protected."; ObjectID = "KYZ-TW-44Y"; */
-"KYZ-TW-44Y.title" = "Choose where to backup your account. It needs to be password protected.";
+/* Class = "NSTextFieldCell"; title = "Choose where to backup your account."; ObjectID = "KYZ-TW-44Y"; */
+"KYZ-TW-44Y.title" = "Choose where to backup your account.";
 
 /* Class = "NSWindow"; title = "Window"; ObjectID = "QvC-M9-y7g"; */
 "QvC-M9-y7g.title" = "Window";
diff --git a/ui/Base.lproj/BackupAccountWindow.xib b/ui/Base.lproj/BackupAccountWindow.xib
index ab6949ddf4fa1f36cd6054c1bdfab1c8de4f0aed..80109e23f364a45a337b26621970dc7e0a4549f8 100644
--- a/ui/Base.lproj/BackupAccountWindow.xib
+++ b/ui/Base.lproj/BackupAccountWindow.xib
@@ -1,7 +1,8 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="11201" systemVersion="16B2553a" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" customObjectInstantitationMethod="direct">
+<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="14113" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" customObjectInstantitationMethod="direct">
     <dependencies>
-        <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="11201"/>
+        <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="14113"/>
+        <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
     </dependencies>
     <objects>
         <customObject id="-2" userLabel="File's Owner" customClass="BackupAccountWC">
@@ -9,8 +10,6 @@
                 <outlet property="errorContainer" destination="ty1-sj-tT6" id="eEy-Cr-yiw"/>
                 <outlet property="finalContainer" destination="XMQ-jJ-yqG" id="tI5-N3-LpJ"/>
                 <outlet property="initialContainer" destination="xUT-yB-g8Q" id="nwe-zs-Gxs"/>
-                <outlet property="passwordConfirmationField" destination="Y7v-fZ-BaG" id="Hml-Mx-lM3"/>
-                <outlet property="passwordField" destination="vej-Z8-dOm" id="Ff0-Rb-Al6"/>
                 <outlet property="path" destination="ww6-ha-GhI" id="gdx-sh-x5J"/>
                 <outlet property="progressContainer" destination="3Jv-gr-8Hf" id="S5k-hc-NeK"/>
                 <outlet property="progressIndicator" destination="Ovf-4O-7LZ" id="mq3-1b-ts5"/>
@@ -22,20 +21,20 @@
         <window title="Window" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" oneShot="NO" releasedWhenClosed="NO" visibleAtLaunch="NO" animationBehavior="default" id="QvC-M9-y7g">
             <windowStyleMask key="styleMask" titled="YES" closable="YES" miniaturizable="YES" resizable="YES"/>
             <windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/>
-            <rect key="contentRect" x="196" y="240" width="380" height="205"/>
-            <rect key="screenRect" x="0.0" y="0.0" width="1440" height="900"/>
+            <rect key="contentRect" x="196" y="240" width="380" height="168"/>
+            <rect key="screenRect" x="0.0" y="0.0" width="1440" height="877"/>
             <view key="contentView" id="EiT-Mj-1SZ">
-                <rect key="frame" x="0.0" y="0.0" width="380" height="205"/>
+                <rect key="frame" x="0.0" y="0.0" width="380" height="168"/>
                 <autoresizingMask key="autoresizingMask"/>
                 <subviews>
                     <customView translatesAutoresizingMaskIntoConstraints="NO" id="XMQ-jJ-yqG">
-                        <rect key="frame" x="0.0" y="0.0" width="380" height="205"/>
+                        <rect key="frame" x="0.0" y="0.0" width="380" height="168"/>
                     </customView>
                     <customView translatesAutoresizingMaskIntoConstraints="NO" id="3Jv-gr-8Hf">
-                        <rect key="frame" x="0.0" y="0.0" width="380" height="205"/>
+                        <rect key="frame" x="0.0" y="0.0" width="380" height="168"/>
                         <subviews>
                             <customView hidden="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Ovf-4O-7LZ" customClass="ITProgressIndicator">
-                                <rect key="frame" x="155" y="68" width="70" height="70"/>
+                                <rect key="frame" x="155" y="49" width="70" height="70"/>
                                 <constraints>
                                     <constraint firstAttribute="width" constant="70" id="aK6-EW-mJE"/>
                                     <constraint firstAttribute="height" constant="70" id="xfx-Hb-kNz"/>
@@ -48,18 +47,18 @@
                         </constraints>
                     </customView>
                     <customView hidden="YES" translatesAutoresizingMaskIntoConstraints="NO" id="ty1-sj-tT6">
-                        <rect key="frame" x="0.0" y="0.0" width="380" height="205"/>
+                        <rect key="frame" x="0.0" y="0.0" width="380" height="168"/>
                         <subviews>
                             <textField verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" translatesAutoresizingMaskIntoConstraints="NO" id="G1N-th-ZtP">
-                                <rect key="frame" x="33" y="94" width="314" height="17"/>
+                                <rect key="frame" x="33" y="76" width="314" height="17"/>
                                 <textFieldCell key="cell" controlSize="mini" sendsActionOnEndEditing="YES" alignment="center" title="An error occured during the backup" placeholderString="" id="e7n-Ev-bK7">
                                     <font key="font" metaFont="system"/>
                                     <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
                                     <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
                                 </textFieldCell>
                             </textField>
-                            <button verticalHuggingPriority="750" misplaced="YES" translatesAutoresizingMaskIntoConstraints="NO" id="cxh-K7-1eh">
-                                <rect key="frame" x="307" y="7" width="59" height="32"/>
+                            <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="cxh-K7-1eh">
+                                <rect key="frame" x="307" y="13" width="59" height="32"/>
                                 <buttonCell key="cell" type="push" title="OK" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="VN1-A3-RIh">
                                     <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
                                     <font key="font" metaFont="system"/>
@@ -82,92 +81,29 @@ DQ
                         </constraints>
                     </customView>
                     <customView translatesAutoresizingMaskIntoConstraints="NO" id="xUT-yB-g8Q">
-                        <rect key="frame" x="0.0" y="0.0" width="380" height="205"/>
+                        <rect key="frame" x="0.0" y="0.0" width="380" height="168"/>
                         <subviews>
-                            <pathControl verticalHuggingPriority="750" misplaced="YES" allowsExpansionToolTips="YES" translatesAutoresizingMaskIntoConstraints="NO" id="ww6-ha-GhI">
-                                <rect key="frame" x="96" y="110" width="250" height="26"/>
+                            <pathControl verticalHuggingPriority="750" allowsExpansionToolTips="YES" translatesAutoresizingMaskIntoConstraints="NO" id="ww6-ha-GhI">
+                                <rect key="frame" x="47" y="74" width="286" height="26"/>
                                 <pathCell key="cell" selectable="YES" editable="YES" alignment="left" pathStyle="popUp" id="S8N-6a-Pll">
                                     <font key="font" metaFont="system"/>
                                     <url key="url" string="file:///Users/"/>
+                                    <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
                                 </pathCell>
                             </pathControl>
-                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" misplaced="YES" translatesAutoresizingMaskIntoConstraints="NO" id="vl7-sD-OLk">
-                                <rect key="frame" x="49" y="116" width="44" height="17"/>
-                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Where" id="9h8-GU-av4">
-                                    <font key="font" metaFont="system"/>
-                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
-                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                                </textFieldCell>
-                            </textField>
-                            <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" ambiguous="YES" misplaced="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Bcr-Pl-Fz9">
-                                <rect key="frame" x="30" y="87" width="63" height="17"/>
-                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Password" id="vwh-K9-3O9">
-                                    <font key="font" metaFont="system"/>
-                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
-                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                                </textFieldCell>
-                            </textField>
-                            <secureTextField verticalHuggingPriority="750" ambiguous="YES" misplaced="YES" translatesAutoresizingMaskIntoConstraints="NO" id="vej-Z8-dOm">
-                                <rect key="frame" x="99" y="84" width="244" height="22"/>
-                                <secureTextFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" borderStyle="bezel" placeholderString="Password..." usesSingleLineMode="YES" bezelStyle="round" id="xqz-Uz-hqU">
-                                    <font key="font" metaFont="system"/>
-                                    <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
-                                    <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
-                                    <allowedInputSourceLocales>
-                                        <string>NSAllRomanInputSourcesLocaleIdentifier</string>
-                                    </allowedInputSourceLocales>
-                                </secureTextFieldCell>
-                                <connections>
-                                    <binding destination="-2" name="value" keyPath="self.password" id="5cX-yS-4Sl">
-                                        <dictionary key="options">
-                                            <bool key="NSContinuouslyUpdatesValue" value="YES"/>
-                                            <string key="NSMultipleValuesPlaceholder">Password...</string>
-                                            <string key="NSNoSelectionPlaceholder">Password...</string>
-                                            <string key="NSNotApplicablePlaceholder">Password...</string>
-                                            <string key="NSNullPlaceholder">Password...</string>
-                                        </dictionary>
-                                    </binding>
-                                    <outlet property="delegate" destination="-2" id="UEj-AI-SPU"/>
-                                    <outlet property="nextKeyView" destination="Y7v-fZ-BaG" id="RpK-sy-SnU"/>
-                                </connections>
-                            </secureTextField>
-                            <textField verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" misplaced="YES" translatesAutoresizingMaskIntoConstraints="NO" id="CR7-hP-0ow">
-                                <rect key="frame" x="18" y="142" width="344" height="43"/>
+                            <textField verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" translatesAutoresizingMaskIntoConstraints="NO" id="CR7-hP-0ow">
+                                <rect key="frame" x="18" y="128" width="344" height="20"/>
                                 <constraints>
-                                    <constraint firstAttribute="height" constant="45" id="Nxf-vc-UNz"/>
+                                    <constraint firstAttribute="height" constant="20" id="Nxf-vc-UNz"/>
                                 </constraints>
-                                <textFieldCell key="cell" sendsActionOnEndEditing="YES" alignment="center" title="Choose where to backup your account. It needs to be password protected." placeholderString="" id="KYZ-TW-44Y">
+                                <textFieldCell key="cell" sendsActionOnEndEditing="YES" alignment="center" title="Choose where to backup your account. " placeholderString="" id="KYZ-TW-44Y">
                                     <font key="font" metaFont="system"/>
                                     <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
                                     <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
                                 </textFieldCell>
                             </textField>
-                            <secureTextField verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Y7v-fZ-BaG" userLabel="Password confirm">
-                                <rect key="frame" x="99" y="54" width="244" height="22"/>
-                                <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
-                                <secureTextFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" borderStyle="bezel" placeholderString="Confirm..." usesSingleLineMode="YES" bezelStyle="round" id="5Qf-em-tN4">
-                                    <font key="font" metaFont="system"/>
-                                    <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
-                                    <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
-                                    <allowedInputSourceLocales>
-                                        <string>NSAllRomanInputSourcesLocaleIdentifier</string>
-                                    </allowedInputSourceLocales>
-                                </secureTextFieldCell>
-                                <connections>
-                                    <binding destination="-2" name="value" keyPath="self.passwordConfirmation" id="ccf-Bx-Qq8">
-                                        <dictionary key="options">
-                                            <bool key="NSContinuouslyUpdatesValue" value="YES"/>
-                                            <string key="NSMultipleValuesPlaceholder">Password...</string>
-                                            <string key="NSNoSelectionPlaceholder">Password...</string>
-                                            <string key="NSNotApplicablePlaceholder">Password...</string>
-                                            <string key="NSNullPlaceholder">Password...</string>
-                                        </dictionary>
-                                    </binding>
-                                    <outlet property="delegate" destination="-2" id="PVz-Gc-4db"/>
-                                </connections>
-                            </secureTextField>
-                            <button verticalHuggingPriority="750" misplaced="YES" translatesAutoresizingMaskIntoConstraints="NO" id="oXB-Be-LaB">
-                                <rect key="frame" x="307" y="6" width="59" height="32"/>
+                            <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="oXB-Be-LaB">
+                                <rect key="frame" x="307" y="13" width="59" height="32"/>
                                 <buttonCell key="cell" type="push" title="OK" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="rW5-Il-5YD">
                                     <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
                                     <font key="font" metaFont="system"/>
@@ -177,11 +113,10 @@ DQ
                                 </buttonCell>
                                 <connections>
                                     <action selector="completeAction:" target="-2" id="4me-jZ-4mk"/>
-                                    <binding destination="-2" name="enabled" keyPath="self.validatePasswords" id="OMW-4G-Mzd"/>
                                 </connections>
                             </button>
-                            <button verticalHuggingPriority="750" misplaced="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Yf1-T3-fOf">
-                                <rect key="frame" x="225" y="6" width="82" height="32"/>
+                            <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Yf1-T3-fOf">
+                                <rect key="frame" x="217" y="13" width="82" height="32"/>
                                 <buttonCell key="cell" type="push" title="Cancel" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="cSU-aD-OwX">
                                     <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
                                     <font key="font" metaFont="system"/>
@@ -195,19 +130,15 @@ Gw
                             </button>
                         </subviews>
                         <constraints>
-                            <constraint firstItem="ww6-ha-GhI" firstAttribute="leading" secondItem="vl7-sD-OLk" secondAttribute="trailing" constant="8" id="0AQ-RP-E0C"/>
-                            <constraint firstItem="Bcr-Pl-Fz9" firstAttribute="top" secondItem="vl7-sD-OLk" secondAttribute="bottom" constant="12" id="252-O3-ry5"/>
+                            <constraint firstItem="ww6-ha-GhI" firstAttribute="leading" secondItem="xUT-yB-g8Q" secondAttribute="leading" constant="50" id="94f-3j-Ecs"/>
                             <constraint firstItem="CR7-hP-0ow" firstAttribute="top" secondItem="xUT-yB-g8Q" secondAttribute="top" constant="20" id="Gar-kL-wdU"/>
-                            <constraint firstItem="vl7-sD-OLk" firstAttribute="leading" secondItem="xUT-yB-g8Q" secondAttribute="leading" constant="51" id="Pu0-r6-jqQ"/>
-                            <constraint firstItem="ww6-ha-GhI" firstAttribute="top" secondItem="CR7-hP-0ow" secondAttribute="bottom" constant="7" id="QID-En-G8Q"/>
-                            <constraint firstItem="vl7-sD-OLk" firstAttribute="top" secondItem="CR7-hP-0ow" secondAttribute="bottom" constant="8" id="R2q-Tq-1Wj"/>
-                            <constraint firstItem="oXB-Be-LaB" firstAttribute="leading" secondItem="Yf1-T3-fOf" secondAttribute="trailing" constant="12" id="Tsc-ay-3Q9"/>
+                            <constraint firstItem="oXB-Be-LaB" firstAttribute="leading" secondItem="Yf1-T3-fOf" secondAttribute="trailing" constant="20" id="Tsc-ay-3Q9"/>
                             <constraint firstAttribute="trailing" secondItem="oXB-Be-LaB" secondAttribute="trailing" constant="20" id="aTI-SX-1jI"/>
                             <constraint firstItem="CR7-hP-0ow" firstAttribute="leading" secondItem="xUT-yB-g8Q" secondAttribute="leading" constant="20" id="at8-jS-cPG"/>
-                            <constraint firstItem="vej-Z8-dOm" firstAttribute="top" secondItem="ww6-ha-GhI" secondAttribute="bottom" constant="8" id="hos-bk-6ym"/>
-                            <constraint firstAttribute="trailing" secondItem="ww6-ha-GhI" secondAttribute="trailing" constant="37" id="jfu-vK-fXY"/>
+                            <constraint firstAttribute="trailing" secondItem="ww6-ha-GhI" secondAttribute="trailing" constant="50" id="jfu-vK-fXY"/>
                             <constraint firstAttribute="trailing" secondItem="CR7-hP-0ow" secondAttribute="trailing" constant="20" id="lu3-Jz-6TR"/>
                             <constraint firstAttribute="bottom" secondItem="Yf1-T3-fOf" secondAttribute="bottom" constant="20" id="oCq-S8-TrF"/>
+                            <constraint firstItem="ww6-ha-GhI" firstAttribute="top" secondItem="CR7-hP-0ow" secondAttribute="bottom" constant="30" id="tca-nk-lN4"/>
                             <constraint firstAttribute="bottom" secondItem="oXB-Be-LaB" secondAttribute="bottom" constant="20" id="ueM-rT-B60"/>
                         </constraints>
                     </customView>
@@ -235,7 +166,7 @@ Gw
                 <outlet property="delegate" destination="-2" id="3wn-SC-48D"/>
                 <outlet property="initialFirstResponder" destination="xUT-yB-g8Q" id="WGS-1O-JBF"/>
             </connections>
-            <point key="canvasLocation" x="-439" y="15.5"/>
+            <point key="canvasLocation" x="-439" y="-3"/>
         </window>
     </objects>
 </document>
diff --git a/ui/Base.lproj/CertificateWindow.xib b/ui/Base.lproj/CertificateWindow.xib
index 458dccebe78ccebe2a703de966a0db8da6b93e6c..f1c8fed8a203d6a1aeeac5109812705a1acf93ef 100644
--- a/ui/Base.lproj/CertificateWindow.xib
+++ b/ui/Base.lproj/CertificateWindow.xib
@@ -1,7 +1,8 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="9532" systemVersion="15D21" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" customObjectInstantitationMethod="direct">
+<?xml version="1.0" encoding="UTF-8"?>
+<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="14113" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" customObjectInstantitationMethod="direct">
     <dependencies>
-        <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="9532"/>
+        <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="14113"/>
+        <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
     </dependencies>
     <objects>
         <customObject id="-2" userLabel="File's Owner" customClass="CertificateWC">
@@ -15,13 +16,14 @@
             <windowStyleMask key="styleMask" titled="YES" closable="YES" miniaturizable="YES" resizable="YES"/>
             <windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/>
             <rect key="contentRect" x="196" y="240" width="601" height="388"/>
-            <rect key="screenRect" x="0.0" y="0.0" width="1680" height="1050"/>
+            <rect key="screenRect" x="0.0" y="0.0" width="1440" height="877"/>
             <view key="contentView" id="EiT-Mj-1SZ">
                 <rect key="frame" x="0.0" y="0.0" width="601" height="388"/>
                 <autoresizingMask key="autoresizingMask"/>
                 <subviews>
                     <scrollView fixedFrame="YES" autohidesScrollers="YES" horizontalLineScroll="19" horizontalPageScroll="10" verticalLineScroll="19" verticalPageScroll="10" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Oot-0X-jju">
                         <rect key="frame" x="20" y="54" width="561" height="135"/>
+                        <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
                         <clipView key="contentView" ambiguous="YES" id="rbk-gh-ueD">
                             <rect key="frame" x="1" y="0.0" width="559" height="134"/>
                             <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
@@ -33,7 +35,7 @@
                                     <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
                                     <color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/>
                                     <tableColumns>
-                                        <tableColumn width="116" minWidth="40" maxWidth="1000" id="UEk-iW-QGt">
+                                        <tableColumn identifier="" width="116" minWidth="40" maxWidth="1000" id="UEk-iW-QGt">
                                             <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
                                                 <font key="font" metaFont="smallSystem"/>
                                                 <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
@@ -52,6 +54,7 @@
                                                     <subviews>
                                                         <textField verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="qaS-Bh-sxP">
                                                             <rect key="frame" x="0.0" y="0.0" width="100" height="17"/>
+                                                            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
                                                             <textFieldCell key="cell" lineBreakMode="truncatingTail" sendsActionOnEndEditing="YES" title="Table View Cell" id="Od1-pH-TGO">
                                                                 <font key="font" metaFont="system"/>
                                                                 <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
@@ -65,7 +68,7 @@
                                                 </tableCellView>
                                             </prototypeCellViews>
                                         </tableColumn>
-                                        <tableColumn width="437" minWidth="40" maxWidth="1000" id="09Y-Vz-ax6">
+                                        <tableColumn identifier="" width="437" minWidth="40" maxWidth="1000" id="09Y-Vz-ax6">
                                             <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
                                                 <font key="font" metaFont="smallSystem"/>
                                                 <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
@@ -84,6 +87,7 @@
                                                     <subviews>
                                                         <textField verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="A3p-Z8-Fhy">
                                                             <rect key="frame" x="0.0" y="0.0" width="100" height="17"/>
+                                                            <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
                                                             <textFieldCell key="cell" lineBreakMode="truncatingTail" sendsActionOnEndEditing="YES" title="Table View Cell" id="khh-uZ-Keh">
                                                                 <font key="font" metaFont="system"/>
                                                                 <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
@@ -100,7 +104,6 @@
                                     </tableColumns>
                                 </outlineView>
                             </subviews>
-                            <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
                         </clipView>
                         <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="YES" id="Gim-9c-e4f">
                             <rect key="frame" x="1" y="7" width="0.0" height="16"/>
@@ -117,6 +120,7 @@
                     </scrollView>
                     <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="pXw-HJ-Apl">
                         <rect key="frame" x="505" y="13" width="82" height="32"/>
+                        <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
                         <buttonCell key="cell" type="push" title="OK" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="x6p-u4-4Ot">
                             <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
                             <font key="font" metaFont="system"/>
@@ -130,6 +134,7 @@ DQ
                     </button>
                     <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="yvG-8F-MvY">
                         <rect key="frame" x="18" y="351" width="177" height="17"/>
+                        <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
                         <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Certificate information" id="BrE-Hz-sVE">
                             <font key="font" metaFont="systemBold"/>
                             <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
diff --git a/ui/Base.lproj/ChooseAccount.xib b/ui/Base.lproj/ChooseAccount.xib
index 7ad0989d47bef25ab3e305b31db03c12fcfa7fae..342cd77a76310b82815de036e1b3373f9dd0b387 100644
--- a/ui/Base.lproj/ChooseAccount.xib
+++ b/ui/Base.lproj/ChooseAccount.xib
@@ -10,32 +10,32 @@
             <connections>
                 <outlet property="accountSelectionButton" destination="sMr-ym-Q7q" id="aWB-iE-k1f"/>
                 <outlet property="accountStatus" destination="3O0-W6-QCM" id="5i7-92-c94"/>
-                <outlet property="profileImage" destination="JSg-rZ-Xia" id="keh-R2-VI8"/>
+                <outlet property="profileImage" destination="hJM-cr-sZ1" id="dkR-YC-SFd"/>
                 <outlet property="view" destination="Hz6-mo-xeY" id="0bl-1N-x8E"/>
             </connections>
         </customObject>
         <customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/>
         <customObject id="-3" userLabel="Application" customClass="NSObject"/>
         <customView id="Hz6-mo-xeY">
-            <rect key="frame" x="0.0" y="0.0" width="200" height="30"/>
+            <rect key="frame" x="0.0" y="0.0" width="187" height="30"/>
             <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
             <subviews>
                 <box boxType="custom" borderType="none" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="Cvs-Qn-771">
-                    <rect key="frame" x="0.0" y="0.0" width="200" height="30"/>
+                    <rect key="frame" x="0.0" y="0.0" width="187" height="30"/>
                     <view key="contentView" id="HA7-fk-gse">
-                        <rect key="frame" x="0.0" y="0.0" width="200" height="30"/>
+                        <rect key="frame" x="0.0" y="0.0" width="187" height="30"/>
                         <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
                         <subviews>
-                            <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="JSg-rZ-Xia">
-                                <rect key="frame" x="13" y="0.0" width="30" height="30"/>
+                            <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="hJM-cr-sZ1">
+                                <rect key="frame" x="0.0" y="0.0" width="30" height="30"/>
                                 <constraints>
-                                    <constraint firstAttribute="height" constant="30" id="V0B-Kr-2Kw"/>
-                                    <constraint firstAttribute="width" constant="30" id="b29-LU-Chc"/>
+                                    <constraint firstAttribute="height" constant="30" id="icZ-2o-tSc"/>
+                                    <constraint firstAttribute="width" constant="30" id="tck-Dd-F7J"/>
                                 </constraints>
-                                <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" id="riX-D8-veh"/>
+                                <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" id="BCQ-IL-Z8Y"/>
                             </imageView>
                             <textField horizontalHuggingPriority="750" verticalHuggingPriority="750" tag="500" translatesAutoresizingMaskIntoConstraints="NO" id="3O0-W6-QCM" userLabel="AccountStatus" customClass="RoundedTextField">
-                                <rect key="frame" x="35" y="0.0" width="10" height="11"/>
+                                <rect key="frame" x="22" y="0.0" width="10" height="11"/>
                                 <constraints>
                                     <constraint firstAttribute="width" constant="6.5" id="4Ks-ia-6rg"/>
                                     <constraint firstAttribute="height" constant="10.5" id="GGv-tJ-9Ps"/>
@@ -58,7 +58,7 @@
                                 </userDefinedRuntimeAttributes>
                             </textField>
                             <popUpButton translatesAutoresizingMaskIntoConstraints="NO" id="sMr-ym-Q7q">
-                                <rect key="frame" x="38" y="6" width="159" height="19"/>
+                                <rect key="frame" x="25" y="-2" width="159" height="34"/>
                                 <constraints>
                                     <constraint firstAttribute="width" constant="155" id="RHk-BK-YeF"/>
                                 </constraints>
@@ -81,13 +81,14 @@
                             </popUpButton>
                         </subviews>
                         <constraints>
+                            <constraint firstItem="sMr-ym-Q7q" firstAttribute="centerY" secondItem="hJM-cr-sZ1" secondAttribute="centerY" id="4yN-6b-Ld4"/>
                             <constraint firstAttribute="trailing" secondItem="sMr-ym-Q7q" secondAttribute="trailing" constant="5" id="BD9-ZS-cZa"/>
-                            <constraint firstItem="sMr-ym-Q7q" firstAttribute="leading" secondItem="JSg-rZ-Xia" secondAttribute="trailing" constant="-3" id="L9t-7Q-Cw2"/>
-                            <constraint firstItem="JSg-rZ-Xia" firstAttribute="top" secondItem="HA7-fk-gse" secondAttribute="top" id="Rw2-Sd-7Hz"/>
-                            <constraint firstItem="sMr-ym-Q7q" firstAttribute="centerY" secondItem="JSg-rZ-Xia" secondAttribute="centerY" id="S2w-ph-Hue"/>
-                            <constraint firstAttribute="bottom" secondItem="JSg-rZ-Xia" secondAttribute="bottom" id="VyP-Jt-INt"/>
-                            <constraint firstItem="3O0-W6-QCM" firstAttribute="trailing" secondItem="JSg-rZ-Xia" secondAttribute="trailing" id="ogd-CG-BuC"/>
-                            <constraint firstItem="3O0-W6-QCM" firstAttribute="bottom" secondItem="JSg-rZ-Xia" secondAttribute="bottom" id="r5p-jD-VkY"/>
+                            <constraint firstItem="sMr-ym-Q7q" firstAttribute="height" secondItem="hJM-cr-sZ1" secondAttribute="height" id="GBP-lS-4lF"/>
+                            <constraint firstItem="hJM-cr-sZ1" firstAttribute="top" secondItem="HA7-fk-gse" secondAttribute="top" id="Kzn-vk-eB3"/>
+                            <constraint firstItem="hJM-cr-sZ1" firstAttribute="leading" secondItem="HA7-fk-gse" secondAttribute="leading" id="h7j-p5-yg5"/>
+                            <constraint firstItem="sMr-ym-Q7q" firstAttribute="leading" secondItem="hJM-cr-sZ1" secondAttribute="trailing" constant="-3" id="hX2-eN-HTr"/>
+                            <constraint firstItem="3O0-W6-QCM" firstAttribute="bottom" secondItem="hJM-cr-sZ1" secondAttribute="bottom" id="heW-Ck-JYo"/>
+                            <constraint firstItem="3O0-W6-QCM" firstAttribute="trailing" secondItem="hJM-cr-sZ1" secondAttribute="trailing" id="uia-pf-17R"/>
                         </constraints>
                     </view>
                 </box>
diff --git a/ui/Base.lproj/Localizable.strings b/ui/Base.lproj/Localizable.strings
index 2826925578eee6f5cac92ff87131fa27f5d61e8b..7525aa8762a55eb8497146c7605b523b13206966 100644
--- a/ui/Base.lproj/Localizable.strings
+++ b/ui/Base.lproj/Localizable.strings
@@ -163,3 +163,9 @@
 /* Error shown to user */
 "You have to migrate your account before exporting" = "You have to migrate your account before exporting";
 
+/* Remove account alert title */
+"Remove account" = "Remove account";
+
+/* Remove account alert message */
+"By clicking \"OK\" you will remove this account on this device! This action can not be undone. Also, your registered name can be lost." = "By clicking \"OK\" you will remove this account on this device! This action can not be undone. Also, your registered name can be lost.";
+
diff --git a/ui/Base.lproj/PasswordChange.xib b/ui/Base.lproj/PasswordChange.xib
index 17a9225423c665bc92169ca9c5b04787a66c1adc..4b642859a6c579fe5fbca789480175e657f30762 100644
--- a/ui/Base.lproj/PasswordChange.xib
+++ b/ui/Base.lproj/PasswordChange.xib
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="13196" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" customObjectInstantitationMethod="direct">
+<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="14113" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" customObjectInstantitationMethod="direct">
     <dependencies>
-        <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="13196"/>
+        <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="14113"/>
         <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
     </dependencies>
     <objects>
@@ -21,7 +21,7 @@
         <window allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" oneShot="NO" releasedWhenClosed="NO" visibleAtLaunch="NO" animationBehavior="default" id="QvC-M9-y7g">
             <windowStyleMask key="styleMask" titled="YES" closable="YES" miniaturizable="YES"/>
             <rect key="contentRect" x="196" y="240" width="360" height="270"/>
-            <rect key="screenRect" x="0.0" y="0.0" width="1920" height="1200"/>
+            <rect key="screenRect" x="0.0" y="0.0" width="1440" height="877"/>
             <view key="contentView" wantsLayer="YES" id="EiT-Mj-1SZ">
                 <rect key="frame" x="0.0" y="0.0" width="360" height="270"/>
                 <autoresizingMask key="autoresizingMask"/>
@@ -126,7 +126,7 @@ Gw
 </string>
                         </buttonCell>
                         <connections>
-                            <action selector="cancel:" target="-2" id="DeK-Yo-ovh"/>
+                            <action selector="cancel:" target="-2" id="50O-EW-Ccf"/>
                         </connections>
                     </button>
                     <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="MDW-YB-UdP" userLabel="Repeat Password Valid">
diff --git a/ui/Base.lproj/PreferencesWindow.xib b/ui/Base.lproj/PreferencesWindow.xib
index dbba283f85348a91d4a8e010408cd32de291a13e..dce592f2007dd8045b3e1352df1995c07ce289ba 100644
--- a/ui/Base.lproj/PreferencesWindow.xib
+++ b/ui/Base.lproj/PreferencesWindow.xib
@@ -1,7 +1,8 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="9532" systemVersion="15D21" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" customObjectInstantitationMethod="direct">
+<?xml version="1.0" encoding="UTF-8"?>
+<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="14113" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" customObjectInstantitationMethod="direct">
     <dependencies>
-        <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="9532"/>
+        <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="14113"/>
+        <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
     </dependencies>
     <objects>
         <customObject id="-2" userLabel="File's Owner" customClass="PreferencesWC">
@@ -15,9 +16,9 @@
         <window title="Ring Preferences" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" oneShot="NO" showsToolbarButton="NO" animationBehavior="default" id="C1T-wE-wxb">
             <windowStyleMask key="styleMask" titled="YES" closable="YES"/>
             <rect key="contentRect" x="469" y="334" width="653" height="383"/>
-            <rect key="screenRect" x="0.0" y="0.0" width="1680" height="1050"/>
+            <rect key="screenRect" x="0.0" y="0.0" width="1440" height="877"/>
             <view key="contentView" id="33Y-I6-Ofh">
-                <rect key="frame" x="0.0" y="-1" width="653" height="383"/>
+                <rect key="frame" x="0.0" y="0.0" width="653" height="383"/>
                 <autoresizingMask key="autoresizingMask"/>
                 <subviews>
                     <customView translatesAutoresizingMaskIntoConstraints="NO" id="pWP-Wb-B2n">
@@ -53,18 +54,12 @@
                         </connections>
                     </toolbarItem>
                     <toolbarItem implicitItemIdentifier="627205FE-1164-4992-8C29-54EB6409DF24" label="Advanced" paletteLabel="Advanced" tag="-1" image="NSAdvanced" id="Qza-fj-d45"/>
-                    <toolbarItem implicitItemIdentifier="29496C21-46DD-4A3D-903C-644AF346B69A" explicitItemIdentifier="AccountsPrefsIdentifier" label="Accounts" paletteLabel="Accounts" tag="-1" image="NSUserAccounts" selectable="YES" id="bRw-gW-tRJ">
-                        <connections>
-                            <action selector="displayAccounts:" target="-2" id="qE9-O3-Jio"/>
-                        </connections>
-                    </toolbarItem>
                     <toolbarItem implicitItemIdentifier="NSToolbarFlexibleSpaceItem" id="aIF-RX-dpX"/>
                 </allowedToolbarItems>
                 <defaultToolbarItems>
                     <toolbarItem reference="GQi-nL-0Ey"/>
                     <toolbarItem reference="iuJ-eu-b7f"/>
                     <toolbarItem reference="jLi-an-TR2"/>
-                    <toolbarItem reference="bRw-gW-tRJ"/>
                     <toolbarItem reference="aIF-RX-dpX"/>
                 </defaultToolbarItems>
             </toolbar>
@@ -76,7 +71,6 @@
     </objects>
     <resources>
         <image name="NSAdvanced" width="32" height="32"/>
-        <image name="NSUserAccounts" width="32" height="32"/>
         <image name="audio" width="36" height="36"/>
         <image name="general" width="36" height="36"/>
         <image name="video" width="36" height="36"/>
diff --git a/ui/Base.lproj/RegisterNameWindow.xib b/ui/Base.lproj/RegisterNameWindow.xib
index f8c844e6e776c06cb8739e188c5c60c21d6fa1e8..a4c9a5dded6894d512a2a9c1db8522ff52733f46 100644
--- a/ui/Base.lproj/RegisterNameWindow.xib
+++ b/ui/Base.lproj/RegisterNameWindow.xib
@@ -1,7 +1,8 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="11201" systemVersion="16B2553a" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" customObjectInstantitationMethod="direct">
+<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="14113" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" customObjectInstantitationMethod="direct">
     <dependencies>
-        <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="11201"/>
+        <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="14113"/>
+        <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
     </dependencies>
     <objects>
         <customObject id="-2" userLabel="File's Owner" customClass="RegisterNameWC">
@@ -22,17 +23,17 @@
         <window title="Window" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" oneShot="NO" releasedWhenClosed="NO" showsToolbarButton="NO" visibleAtLaunch="NO" frameAutosaveName="" animationBehavior="default" id="JWw-7m-ywL">
             <windowStyleMask key="styleMask" titled="YES" closable="YES"/>
             <windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/>
-            <rect key="contentRect" x="131" y="165" width="440" height="213"/>
-            <rect key="screenRect" x="0.0" y="0.0" width="1440" height="900"/>
+            <rect key="contentRect" x="131" y="165" width="380" height="213"/>
+            <rect key="screenRect" x="0.0" y="0.0" width="1440" height="877"/>
             <view key="contentView" id="fhx-qk-94n">
-                <rect key="frame" x="0.0" y="0.0" width="440" height="213"/>
+                <rect key="frame" x="0.0" y="0.0" width="380" height="213"/>
                 <autoresizingMask key="autoresizingMask"/>
                 <subviews>
                     <customView translatesAutoresizingMaskIntoConstraints="NO" id="szF-XD-rRG">
-                        <rect key="frame" x="0.0" y="0.0" width="440" height="213"/>
+                        <rect key="frame" x="0.0" y="0.0" width="380" height="213"/>
                         <subviews>
                             <textField verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" setsMaxLayoutWidthAtFirstLayout="YES" translatesAutoresizingMaskIntoConstraints="NO" id="YAP-cJ-hMx">
-                                <rect key="frame" x="48" y="98" width="344" height="17"/>
+                                <rect key="frame" x="18" y="98" width="344" height="17"/>
                                 <constraints>
                                     <constraint firstAttribute="width" constant="340" id="2Gn-1g-YtT"/>
                                     <constraint firstAttribute="width" relation="greaterThanOrEqual" constant="340" id="lK4-ZA-NTA"/>
@@ -44,7 +45,7 @@
                                 </textFieldCell>
                             </textField>
                             <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="OLz-JI-6Uy">
-                                <rect key="frame" x="369" y="13" width="57" height="32"/>
+                                <rect key="frame" x="309" y="13" width="57" height="32"/>
                                 <buttonCell key="cell" type="push" title="Ok" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="fOn-FV-2x8">
                                     <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
                                     <font key="font" metaFont="system"/>
@@ -65,33 +66,22 @@ DQ
                         </constraints>
                     </customView>
                     <view translatesAutoresizingMaskIntoConstraints="NO" id="gKX-gX-nko">
-                        <rect key="frame" x="0.0" y="0.0" width="440" height="213"/>
+                        <rect key="frame" x="0.0" y="0.0" width="380" height="213"/>
                         <subviews>
-                            <textField verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" setsMaxLayoutWidthAtFirstLayout="YES" translatesAutoresizingMaskIntoConstraints="NO" id="hwE-M9-zUH">
-                                <rect key="frame" x="113" y="91" width="215" height="17"/>
-                                <constraints>
-                                    <constraint firstAttribute="width" relation="greaterThanOrEqual" constant="200" id="nga-zR-QQ3"/>
-                                </constraints>
-                                <textFieldCell key="cell" controlSize="mini" sendsActionOnEndEditing="YES" alignment="center" title="Enter your Ring account password" id="B6x-jj-48R">
-                                    <font key="font" metaFont="system"/>
-                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
-                                    <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
-                                </textFieldCell>
-                            </textField>
                             <textField verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" setsMaxLayoutWidthAtFirstLayout="YES" translatesAutoresizingMaskIntoConstraints="NO" id="3cW-Kr-1oI">
-                                <rect key="frame" x="18" y="176" width="404" height="17"/>
-                                <textFieldCell key="cell" controlSize="mini" sendsActionOnEndEditing="YES" alignment="left" title="Register username on the blockchain" id="tje-EZ-ZPI">
+                                <rect key="frame" x="18" y="176" width="344" height="17"/>
+                                <textFieldCell key="cell" controlSize="mini" sendsActionOnEndEditing="YES" alignment="center" title="Register username " id="tje-EZ-ZPI">
                                     <font key="font" metaFont="systemBold"/>
                                     <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
                                     <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
                                 </textFieldCell>
                             </textField>
                             <textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="ie2-fK-FsB" customClass="NSSecureTextField">
-                                <rect key="frame" x="120" y="61" width="200" height="22"/>
+                                <rect key="frame" x="90" y="68" width="200" height="22"/>
                                 <constraints>
                                     <constraint firstAttribute="width" constant="200" id="nTg-zI-DZQ"/>
                                 </constraints>
-                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" placeholderString="Mandatory*" bezelStyle="round" id="1TO-Ov-S8j" customClass="NSSecureTextFieldCell">
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" placeholderString="Enter password" bezelStyle="round" id="1TO-Ov-S8j" customClass="NSSecureTextFieldCell">
                                     <font key="font" metaFont="system"/>
                                     <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
                                     <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
@@ -105,15 +95,15 @@ DQ
                                 </connections>
                             </textField>
                             <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="oFy-jN-crC">
-                                <rect key="frame" x="18" y="154" width="404" height="14"/>
-                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Other users can use it instead of your RingID" id="9gi-0u-67t">
+                                <rect key="frame" x="18" y="152" width="344" height="14"/>
+                                <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="center" title="Other users can use it instead of your RingID" id="9gi-0u-67t">
                                     <font key="font" metaFont="smallSystem"/>
                                     <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
                                     <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
                                 </textFieldCell>
                             </textField>
                             <textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="LVv-bg-Ols">
-                                <rect key="frame" x="120" y="124" width="200" height="22"/>
+                                <rect key="frame" x="90" y="110" width="200" height="22"/>
                                 <constraints>
                                     <constraint firstAttribute="width" constant="200" id="tbX-cT-w6C"/>
                                 </constraints>
@@ -134,7 +124,7 @@ DQ
                                 </connections>
                             </textField>
                             <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="GhT-2W-DrB">
-                                <rect key="frame" x="254" y="13" width="82" height="32"/>
+                                <rect key="frame" x="194" y="13" width="82" height="32"/>
                                 <buttonCell key="cell" type="push" title="Cancel" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="eoS-s7-b3w">
                                     <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
                                     <font key="font" metaFont="system"/>
@@ -147,7 +137,7 @@ Gw
                                 </connections>
                             </button>
                             <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="kxj-la-grj">
-                                <rect key="frame" x="336" y="13" width="90" height="32"/>
+                                <rect key="frame" x="276" y="13" width="90" height="32"/>
                                 <buttonCell key="cell" type="push" title="Register" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="lT3-Bh-MnL">
                                     <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
                                     <font key="font" metaFont="system"/>
@@ -157,25 +147,21 @@ DQ
                                 </buttonCell>
                                 <connections>
                                     <action selector="registerUsername:" target="-2" id="zAU-Ve-eYp"/>
-                                    <binding destination="-2" name="enabled2" keyPath="self.isPasswordValid" previousBinding="DJ0-jU-oIl" id="C15-Pk-yfw">
-                                        <dictionary key="options">
-                                            <integer key="NSMultipleValuesPlaceholder" value="-1"/>
-                                            <integer key="NSNoSelectionPlaceholder" value="-1"/>
-                                            <integer key="NSNotApplicablePlaceholder" value="-1"/>
-                                            <integer key="NSNullPlaceholder" value="-1"/>
-                                        </dictionary>
-                                    </binding>
                                     <binding destination="-2" name="enabled" keyPath="self.isUserNameAvailable" id="DJ0-jU-oIl"/>
                                 </connections>
                             </button>
                             <customView translatesAutoresizingMaskIntoConstraints="NO" id="JGA-h8-Nhd">
-                                <rect key="frame" x="320" y="124" width="36" height="22"/>
+                                <rect key="frame" x="298" y="111" width="20" height="20"/>
                                 <subviews>
                                     <progressIndicator wantsLayer="YES" horizontalHuggingPriority="750" verticalHuggingPriority="750" maxValue="100" bezeled="NO" indeterminate="YES" controlSize="small" style="spinning" translatesAutoresizingMaskIntoConstraints="NO" id="Osd-Vq-u7C">
-                                        <rect key="frame" x="10" y="4" width="16" height="16"/>
+                                        <rect key="frame" x="0.0" y="0.0" width="20" height="20"/>
+                                        <constraints>
+                                            <constraint firstAttribute="height" constant="20" id="HAJ-0a-gCH"/>
+                                            <constraint firstAttribute="width" constant="20" id="MBk-TM-Um8"/>
+                                        </constraints>
                                     </progressIndicator>
                                     <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="kfj-jZ-xal">
-                                        <rect key="frame" x="8" y="2" width="20" height="20"/>
+                                        <rect key="frame" x="0.0" y="0.0" width="20" height="20"/>
                                         <constraints>
                                             <constraint firstAttribute="height" constant="20" id="Ukr-7U-1Lh"/>
                                             <constraint firstAttribute="width" constant="20" id="XOS-nb-g7U"/>
@@ -184,42 +170,39 @@ DQ
                                     </imageView>
                                 </subviews>
                                 <constraints>
-                                    <constraint firstAttribute="width" constant="36" id="IVh-Ql-XWq"/>
-                                    <constraint firstItem="Osd-Vq-u7C" firstAttribute="top" secondItem="JGA-h8-Nhd" secondAttribute="top" constant="2" id="QCZ-3B-Liq"/>
-                                    <constraint firstItem="kfj-jZ-xal" firstAttribute="top" secondItem="JGA-h8-Nhd" secondAttribute="top" id="QMo-Hp-R0Z"/>
-                                    <constraint firstAttribute="width" relation="greaterThanOrEqual" constant="36" id="UZc-UT-SwO"/>
-                                    <constraint firstItem="Osd-Vq-u7C" firstAttribute="leading" secondItem="kfj-jZ-xal" secondAttribute="trailing" constant="-18" id="hYw-u6-0di"/>
-                                    <constraint firstItem="kfj-jZ-xal" firstAttribute="leading" secondItem="JGA-h8-Nhd" secondAttribute="leading" constant="8" id="meP-Fh-jjj"/>
+                                    <constraint firstAttribute="height" constant="20" id="5Yt-ni-yBx"/>
+                                    <constraint firstAttribute="width" constant="20" id="IVh-Ql-XWq"/>
+                                    <constraint firstItem="Osd-Vq-u7C" firstAttribute="centerY" secondItem="JGA-h8-Nhd" secondAttribute="centerY" id="OUj-Up-Ye6"/>
+                                    <constraint firstItem="kfj-jZ-xal" firstAttribute="centerY" secondItem="JGA-h8-Nhd" secondAttribute="centerY" id="Stf-O1-TjW"/>
+                                    <constraint firstItem="kfj-jZ-xal" firstAttribute="centerX" secondItem="JGA-h8-Nhd" secondAttribute="centerX" id="grL-3y-IBX"/>
+                                    <constraint firstItem="Osd-Vq-u7C" firstAttribute="centerX" secondItem="JGA-h8-Nhd" secondAttribute="centerX" id="jKJ-36-Gld"/>
                                 </constraints>
                             </customView>
                         </subviews>
                         <constraints>
-                            <constraint firstItem="ie2-fK-FsB" firstAttribute="top" secondItem="hwE-M9-zUH" secondAttribute="bottom" constant="8" id="4sp-IS-fb7"/>
                             <constraint firstAttribute="bottom" secondItem="GhT-2W-DrB" secondAttribute="bottom" constant="20" id="Fkg-bx-DFy"/>
-                            <constraint firstItem="oFy-jN-crC" firstAttribute="top" secondItem="3cW-Kr-1oI" secondAttribute="bottom" constant="8" id="HZx-66-fG3"/>
-                            <constraint firstItem="LVv-bg-Ols" firstAttribute="top" secondItem="oFy-jN-crC" secondAttribute="bottom" constant="8" id="I29-cu-eYL"/>
+                            <constraint firstItem="LVv-bg-Ols" firstAttribute="top" secondItem="oFy-jN-crC" secondAttribute="bottom" constant="20" id="I29-cu-eYL"/>
                             <constraint firstItem="3cW-Kr-1oI" firstAttribute="top" secondItem="gKX-gX-nko" secondAttribute="top" constant="20" id="Idb-Wu-QEH"/>
                             <constraint firstAttribute="trailing" secondItem="oFy-jN-crC" secondAttribute="trailing" constant="20" id="LRD-Au-XwG"/>
-                            <constraint firstItem="JGA-h8-Nhd" firstAttribute="top" secondItem="oFy-jN-crC" secondAttribute="bottom" constant="8" id="P1a-dv-SBs"/>
+                            <constraint firstItem="oFy-jN-crC" firstAttribute="top" secondItem="3cW-Kr-1oI" secondAttribute="bottom" constant="10" id="McA-nZ-5z9"/>
                             <constraint firstItem="LVv-bg-Ols" firstAttribute="centerX" secondItem="gKX-gX-nko" secondAttribute="centerX" id="P4A-jf-guk"/>
                             <constraint firstItem="ie2-fK-FsB" firstAttribute="centerX" secondItem="gKX-gX-nko" secondAttribute="centerX" id="QdK-Ie-iHr"/>
+                            <constraint firstItem="ie2-fK-FsB" firstAttribute="top" secondItem="LVv-bg-Ols" secondAttribute="bottom" constant="20" id="VaZ-aU-xXT"/>
                             <constraint firstAttribute="trailing" secondItem="kxj-la-grj" secondAttribute="trailing" constant="20" id="WS6-w2-SOa"/>
                             <constraint firstItem="oFy-jN-crC" firstAttribute="leading" secondItem="gKX-gX-nko" secondAttribute="leading" constant="20" id="X0d-vt-KnX"/>
                             <constraint firstItem="kxj-la-grj" firstAttribute="leading" secondItem="GhT-2W-DrB" secondAttribute="trailing" constant="12" id="bwP-n4-ByA"/>
-                            <constraint firstItem="JGA-h8-Nhd" firstAttribute="leading" secondItem="LVv-bg-Ols" secondAttribute="trailing" id="fLa-8w-Usq"/>
-                            <constraint firstItem="hwE-M9-zUH" firstAttribute="centerX" secondItem="gKX-gX-nko" secondAttribute="centerX" id="i59-fF-YT5"/>
+                            <constraint firstItem="JGA-h8-Nhd" firstAttribute="leading" secondItem="LVv-bg-Ols" secondAttribute="trailing" constant="8" id="fLa-8w-Usq"/>
                             <constraint firstItem="JGA-h8-Nhd" firstAttribute="centerY" secondItem="LVv-bg-Ols" secondAttribute="centerY" id="k40-hp-KCp"/>
-                            <constraint firstItem="hwE-M9-zUH" firstAttribute="top" secondItem="LVv-bg-Ols" secondAttribute="bottom" constant="16" id="pFN-VK-bHT"/>
                             <constraint firstAttribute="trailing" secondItem="3cW-Kr-1oI" secondAttribute="trailing" constant="20" id="ukZ-Cr-ZvP"/>
                             <constraint firstAttribute="bottom" secondItem="kxj-la-grj" secondAttribute="bottom" constant="20" id="w0D-Vo-Z48"/>
                             <constraint firstItem="3cW-Kr-1oI" firstAttribute="leading" secondItem="gKX-gX-nko" secondAttribute="leading" constant="20" id="y5J-9x-SsV"/>
                         </constraints>
                     </view>
                     <customView translatesAutoresizingMaskIntoConstraints="NO" id="WWd-Hs-Pwi">
-                        <rect key="frame" x="0.0" y="0.0" width="440" height="213"/>
+                        <rect key="frame" x="0.0" y="0.0" width="380" height="213"/>
                         <subviews>
                             <textField verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" setsMaxLayoutWidthAtFirstLayout="YES" translatesAutoresizingMaskIntoConstraints="NO" id="1hK-Hw-cJh">
-                                <rect key="frame" x="34" y="70" width="344" height="17"/>
+                                <rect key="frame" x="18" y="70" width="344" height="17"/>
                                 <constraints>
                                     <constraint firstAttribute="width" constant="340" id="tHE-Zh-IYn"/>
                                 </constraints>
@@ -230,13 +213,13 @@ DQ
                                 </textFieldCell>
                             </textField>
                             <progressIndicator wantsLayer="YES" maxValue="100" indeterminate="YES" style="spinning" translatesAutoresizingMaskIntoConstraints="NO" id="1rt-CR-Wpz">
-                                <rect key="frame" x="158" y="95" width="96" height="32"/>
+                                <rect key="frame" x="142" y="95" width="96" height="32"/>
                                 <constraints>
                                     <constraint firstAttribute="width" constant="96" id="g01-Ci-luV"/>
                                 </constraints>
                             </progressIndicator>
                             <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="nQA-Bl-kuO">
-                                <rect key="frame" x="14" y="13" width="82" height="32"/>
+                                <rect key="frame" x="284" y="13" width="82" height="32"/>
                                 <buttonCell key="cell" type="push" title="Cancel" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="cbA-c2-LlV">
                                     <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
                                     <font key="font" metaFont="system"/>
@@ -251,13 +234,13 @@ Gw
                         </subviews>
                         <constraints>
                             <constraint firstAttribute="bottom" secondItem="nQA-Bl-kuO" secondAttribute="bottom" constant="20" id="FCD-G1-gcU"/>
-                            <constraint firstItem="nQA-Bl-kuO" firstAttribute="leading" secondItem="WWd-Hs-Pwi" secondAttribute="leading" constant="20" id="N0f-mf-Av6"/>
                             <constraint firstAttribute="height" constant="213" id="em8-4v-FVz"/>
+                            <constraint firstAttribute="trailing" secondItem="nQA-Bl-kuO" secondAttribute="trailing" constant="20" id="fNZ-SD-vV0"/>
                             <constraint firstItem="1hK-Hw-cJh" firstAttribute="top" secondItem="1rt-CR-Wpz" secondAttribute="bottom" constant="8" id="kRx-lu-H03"/>
                             <constraint firstItem="1rt-CR-Wpz" firstAttribute="centerY" secondItem="WWd-Hs-Pwi" secondAttribute="centerY" constant="-4.5" id="tFP-f6-B38"/>
                             <constraint firstItem="1hK-Hw-cJh" firstAttribute="centerX" secondItem="1rt-CR-Wpz" secondAttribute="centerX" id="upr-bY-gXb"/>
-                            <constraint firstItem="1rt-CR-Wpz" firstAttribute="centerX" secondItem="WWd-Hs-Pwi" secondAttribute="centerX" constant="-14" id="vuy-f9-mI8"/>
-                            <constraint firstAttribute="width" constant="440" id="yos-v5-cU0"/>
+                            <constraint firstItem="1rt-CR-Wpz" firstAttribute="centerX" secondItem="WWd-Hs-Pwi" secondAttribute="centerX" id="vuy-f9-mI8"/>
+                            <constraint firstAttribute="width" constant="380" id="yos-v5-cU0"/>
                         </constraints>
                     </customView>
                 </subviews>